
    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_b273f60dd9900815e792165c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_1751b93095b0a73283db2fe4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_a2058bf5ae8fb34f07baea98.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_3548248fa3ca905af61fadd7.woff')format("woff");}.ff4{font-family:ff4;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;}
.m9{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);}
.m11{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);}
.m17{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);}
.m1{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m7{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);}
.m3{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);}
.m6{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mc{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);}
.m10{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);}
.mb{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.mf{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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000800px;}
.ls9{letter-spacing:0.004800px;}
.ls0{letter-spacing:10.461300px;}
.ls2{letter-spacing:11.954850px;}
.lsa{letter-spacing:13.351587px;}
.ls4{letter-spacing:13.448400px;}
.ls6{letter-spacing:13.454400px;}
.ls5{letter-spacing:13.604835px;}
.ls7{letter-spacing:15.209224px;}
.lsb{letter-spacing:16.468047px;}
.ls1{letter-spacing:28.453654px;}
.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;}
}
.ws3b{word-spacing:-13.449600px;}
.ws1a{word-spacing:-11.955150px;}
.ws2{word-spacing:-10.460700px;}
.ws40{word-spacing:-2.582323px;}
.ws35{word-spacing:-2.259533px;}
.ws28{word-spacing:-2.032370px;}
.ws2a{word-spacing:-1.972595px;}
.ws1c{word-spacing:-1.733492px;}
.ws38{word-spacing:-1.344960px;}
.ws2b{word-spacing:-1.135736px;}
.ws2d{word-spacing:-0.537980px;}
.ws33{word-spacing:-0.478205px;}
.ws20{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.239102px;}
.ws4a{word-spacing:-0.215194px;}
.ws13{word-spacing:-0.179327px;}
.ws26{word-spacing:-0.172269px;}
.wsa{word-spacing:-0.119551px;}
.ws48{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws3c{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws3f{word-spacing:0.053798px;}
.wsf{word-spacing:0.059776px;}
.ws39{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.ws23{word-spacing:0.144042px;}
.ws36{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws7{word-spacing:0.239102px;}
.ws4f{word-spacing:0.268992px;}
.wsb{word-spacing:0.358654px;}
.ws16{word-spacing:0.956410px;}
.ws30{word-spacing:1.135736px;}
.ws43{word-spacing:1.344960px;}
.ws14{word-spacing:1.613941px;}
.ws2f{word-spacing:1.912819px;}
.ws8{word-spacing:2.092146px;}
.ws17{word-spacing:2.151922px;}
.ws47{word-spacing:2.205734px;}
.ws4b{word-spacing:2.367130px;}
.ws4{word-spacing:2.510252px;}
.ws1e{word-spacing:2.689902px;}
.ws37{word-spacing:2.753719px;}
.ws5{word-spacing:2.869236px;}
.ws12{word-spacing:2.988780px;}
.ws4d{word-spacing:3.012710px;}
.ws45{word-spacing:3.227904px;}
.ws1f{word-spacing:3.466985px;}
.ws4e{word-spacing:3.496896px;}
.ws34{word-spacing:3.526760px;}
.ws6{word-spacing:4.303872px;}
.ws9{word-spacing:4.483170px;}
.wsd{word-spacing:5.200477px;}
.ws11{word-spacing:5.260253px;}
.ws1d{word-spacing:6.336214px;}
.ws32{word-spacing:6.754643px;}
.ws19{word-spacing:11.910212px;}
.ws29{word-spacing:12.878145px;}
.ws46{word-spacing:13.386557px;}
.ws3e{word-spacing:13.557197px;}
.ws2c{word-spacing:13.688612px;}
.ws31{word-spacing:14.525471px;}
.ws27{word-spacing:14.704798px;}
.ws25{word-spacing:14.764573px;}
.ws22{word-spacing:15.000924px;}
.ws24{word-spacing:15.003676px;}
.ws21{word-spacing:15.063451px;}
.ws49{word-spacing:16.569907px;}
.ws3a{word-spacing:16.613837px;}
.ws41{word-spacing:16.617341px;}
.ws3d{word-spacing:16.620230px;}
.ws42{word-spacing:16.623706px;}
.ws2e{word-spacing:16.791164px;}
.ws44{word-spacing:21.177353px;}
.ws4c{word-spacing:24.155482px;}
.ws1{word-spacing:28.455541px;}
._11{margin-left:-7.280653px;}
._4{margin-left:-6.168857px;}
._10{margin-left:-5.035531px;}
._13{margin-left:-4.002601px;}
._14{margin-left:-2.958912px;}
._2{margin-left:-1.506341px;}
._16{width:2.905114px;}
._0{width:12.971268px;}
._a{width:13.999441px;}
._f{width:15.434056px;}
._12{width:16.666397px;}
._5{width:18.231558px;}
._6{width:19.606397px;}
._7{width:21.519216px;}
._d{width:23.384210px;}
._1{width:25.946136px;}
._9{width:28.034756px;}
._e{width:30.138853px;}
._8{width:33.713438px;}
._3{width:69.371276px;}
._15{width:88.767360px;}
._b{width:1879.274700px;}
._c{width:2565.692700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3d{bottom:45.921000px;}
.y3c{bottom:99.720000px;}
.y10{bottom:100.260000px;}
.yf{bottom:118.147500px;}
.y3b{bottom:120.610500px;}
.y6d{bottom:124.674000px;}
.ye{bottom:136.035000px;}
.y3a{bottom:141.502500px;}
.y6c{bottom:153.139500px;}
.yd{bottom:153.924000px;}
.y39{bottom:162.394500px;}
.yc{bottom:171.811500px;}
.y6b{bottom:172.638000px;}
.y38{bottom:183.285000px;}
.yb{bottom:189.699000px;}
.y6a{bottom:201.102000px;}
.y37{bottom:204.177000px;}
.ya{bottom:207.586500px;}
.y69{bottom:220.602000px;}
.y36{bottom:225.069000px;}
.y9{bottom:225.475500px;}
.y68{bottom:240.100500px;}
.y35{bottom:245.961000px;}
.y8{bottom:252.330000px;}
.y34{bottom:266.851500px;}
.y7{bottom:270.217500px;}
.y67{bottom:277.531500px;}
.y33{bottom:287.743500px;}
.y6{bottom:288.105000px;}
.y66{bottom:298.423500px;}
.y5{bottom:305.994000px;}
.y32{bottom:308.635500px;}
.y65{bottom:319.315500px;}
.y4{bottom:323.881500px;}
.y31{bottom:329.526000px;}
.y64{bottom:340.206000px;}
.y3{bottom:347.746500px;}
.y30{bottom:350.418000px;}
.y63{bottom:361.098000px;}
.y2{bottom:365.635500px;}
.y2f{bottom:371.310000px;}
.y62{bottom:381.990000px;}
.y1{bottom:383.523000px;}
.y2e{bottom:392.200500px;}
.y61{bottom:407.364000px;}
.y2d{bottom:413.092500px;}
.y2c{bottom:433.984500px;}
.y60{bottom:446.188500px;}
.y2b{bottom:454.875000px;}
.y5f{bottom:467.080500px;}
.y2a{bottom:475.767000px;}
.y5e{bottom:487.971000px;}
.y29{bottom:496.659000px;}
.y5d{bottom:508.863000px;}
.y28{bottom:517.551000px;}
.y5c{bottom:529.755000px;}
.y27{bottom:538.441500px;}
.y5b{bottom:550.645500px;}
.y26{bottom:559.333500px;}
.y5a{bottom:571.537500px;}
.y25{bottom:580.225500px;}
.y59{bottom:592.429500px;}
.y24{bottom:601.116000px;}
.y58{bottom:613.320000px;}
.y86{bottom:613.813500px;}
.y23{bottom:622.008000px;}
.y85{bottom:632.964000px;}
.y57{bottom:634.212000px;}
.y22{bottom:642.900000px;}
.y84{bottom:652.114500px;}
.y56{bottom:655.104000px;}
.y21{bottom:663.790500px;}
.y55{bottom:675.996000px;}
.y20{bottom:684.682500px;}
.y83{bottom:695.146500px;}
.y54{bottom:696.886500px;}
.y1f{bottom:705.574500px;}
.y82{bottom:714.297000px;}
.y53{bottom:717.778500px;}
.y1e{bottom:726.465000px;}
.y81{bottom:733.447500px;}
.y52{bottom:738.670500px;}
.y1d{bottom:747.357000px;}
.y80{bottom:752.598000px;}
.y51{bottom:759.561000px;}
.y1c{bottom:768.249000px;}
.y7f{bottom:771.748500px;}
.y50{bottom:780.453000px;}
.y1b{bottom:789.141000px;}
.y7e{bottom:790.899000px;}
.y4f{bottom:801.345000px;}
.y1a{bottom:810.031500px;}
.y7d{bottom:810.049500px;}
.y4e{bottom:822.235500px;}
.y7c{bottom:829.200000px;}
.y19{bottom:830.923500px;}
.y4d{bottom:843.127500px;}
.y7b{bottom:848.350500px;}
.y18{bottom:851.815500px;}
.y4c{bottom:864.019500px;}
.y7a{bottom:867.501000px;}
.y17{bottom:877.189500px;}
.y4b{bottom:884.910000px;}
.y79{bottom:886.651500px;}
.y4a{bottom:905.802000px;}
.y78{bottom:924.952500px;}
.y49{bottom:926.694000px;}
.y77{bottom:944.103000px;}
.y48{bottom:947.584500px;}
.y16{bottom:954.277500px;}
.y76{bottom:963.253500px;}
.y47{bottom:968.476500px;}
.y15{bottom:970.416000px;}
.y75{bottom:982.404000px;}
.y14{bottom:986.556000px;}
.y46{bottom:989.368500px;}
.y74{bottom:1001.554500px;}
.y45{bottom:1010.260500px;}
.y73{bottom:1020.705000px;}
.y44{bottom:1031.151000px;}
.y13{bottom:1033.095000px;}
.y72{bottom:1039.855500px;}
.y43{bottom:1052.043000px;}
.y71{bottom:1059.007500px;}
.y12{bottom:1071.919500px;}
.y42{bottom:1072.935000px;}
.y70{bottom:1078.158000px;}
.y41{bottom:1093.825500px;}
.y6f{bottom:1097.308500px;}
.y11{bottom:1103.256000px;}
.y40{bottom:1114.717500px;}
.y6e{bottom:1116.459000px;}
.y3f{bottom:1140.091500px;}
.y3e{bottom:1200.196500px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h7{height:34.813397px;}
.ha{height:35.052500px;}
.hc{height:39.165235px;}
.hd{height:39.434227px;}
.hb{height:41.723369px;}
.h6{height:43.038432px;}
.h9{height:43.516637px;}
.h4{height:43.815515px;}
.h8{height:51.646464px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x11{left:85.848000px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x4{left:281.479500px;}
.xb{left:398.853000px;}
.xc{left:406.324500px;}
.xd{left:410.035500px;}
.xe{left:424.978500px;}
.x9{left:567.787500px;}
.xa{left:575.260500px;}
.xf{left:586.908000px;}
.x10{left:596.809500px;}
.x5{left:647.815500px;}
.x6{left:655.287000px;}
.x7{left:662.788500px;}
.x8{left:670.261500px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000711pt;}
.ls9{letter-spacing:0.004267pt;}
.ls0{letter-spacing:9.298933pt;}
.ls2{letter-spacing:10.626533pt;}
.lsa{letter-spacing:11.868077pt;}
.ls4{letter-spacing:11.954133pt;}
.ls6{letter-spacing:11.959467pt;}
.ls5{letter-spacing:12.093187pt;}
.ls7{letter-spacing:13.519310pt;}
.lsb{letter-spacing:14.638264pt;}
.ls1{letter-spacing:25.292137pt;}
.ws3b{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws2{word-spacing:-9.298400pt;}
.ws40{word-spacing:-2.295398pt;}
.ws35{word-spacing:-2.008474pt;}
.ws28{word-spacing:-1.806551pt;}
.ws2a{word-spacing:-1.753418pt;}
.ws1c{word-spacing:-1.540882pt;}
.ws38{word-spacing:-1.195520pt;}
.ws2b{word-spacing:-1.009543pt;}
.ws2d{word-spacing:-0.478205pt;}
.ws33{word-spacing:-0.425071pt;}
.ws20{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.212535pt;}
.ws4a{word-spacing:-0.191283pt;}
.ws13{word-spacing:-0.159402pt;}
.ws26{word-spacing:-0.153128pt;}
.wsa{word-spacing:-0.106268pt;}
.ws48{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws3c{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.047821pt;}
.wsf{word-spacing:0.053134pt;}
.ws39{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.ws23{word-spacing:0.128037pt;}
.ws36{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws7{word-spacing:0.212535pt;}
.ws4f{word-spacing:0.239104pt;}
.wsb{word-spacing:0.318803pt;}
.ws16{word-spacing:0.850142pt;}
.ws30{word-spacing:1.009543pt;}
.ws43{word-spacing:1.195520pt;}
.ws14{word-spacing:1.434614pt;}
.ws2f{word-spacing:1.700284pt;}
.ws8{word-spacing:1.859685pt;}
.ws17{word-spacing:1.912819pt;}
.ws47{word-spacing:1.960653pt;}
.ws4b{word-spacing:2.104115pt;}
.ws4{word-spacing:2.231335pt;}
.ws1e{word-spacing:2.391024pt;}
.ws37{word-spacing:2.447750pt;}
.ws5{word-spacing:2.550432pt;}
.ws12{word-spacing:2.656693pt;}
.ws4d{word-spacing:2.677965pt;}
.ws45{word-spacing:2.869248pt;}
.ws1f{word-spacing:3.081764pt;}
.ws4e{word-spacing:3.108352pt;}
.ws34{word-spacing:3.134898pt;}
.ws6{word-spacing:3.825664pt;}
.ws9{word-spacing:3.985040pt;}
.wsd{word-spacing:4.622646pt;}
.ws11{word-spacing:4.675780pt;}
.ws1d{word-spacing:5.632190pt;}
.ws32{word-spacing:6.004127pt;}
.ws19{word-spacing:10.586855pt;}
.ws29{word-spacing:11.447240pt;}
.ws46{word-spacing:11.899162pt;}
.ws3e{word-spacing:12.050842pt;}
.ws2c{word-spacing:12.167655pt;}
.ws31{word-spacing:12.911530pt;}
.ws27{word-spacing:13.070931pt;}
.ws25{word-spacing:13.124065pt;}
.ws22{word-spacing:13.334155pt;}
.ws24{word-spacing:13.336601pt;}
.ws21{word-spacing:13.389734pt;}
.ws49{word-spacing:14.728806pt;}
.ws3a{word-spacing:14.767855pt;}
.ws41{word-spacing:14.770970pt;}
.ws3d{word-spacing:14.773538pt;}
.ws42{word-spacing:14.776627pt;}
.ws2e{word-spacing:14.925479pt;}
.ws44{word-spacing:18.824314pt;}
.ws4c{word-spacing:21.471539pt;}
.ws1{word-spacing:25.293814pt;}
._11{margin-left:-6.471691pt;}
._4{margin-left:-5.483429pt;}
._10{margin-left:-4.476027pt;}
._13{margin-left:-3.557867pt;}
._14{margin-left:-2.630144pt;}
._2{margin-left:-1.338970pt;}
._16{width:2.582323pt;}
._0{width:11.530016pt;}
._a{width:12.443948pt;}
._f{width:13.719161pt;}
._12{width:14.814575pt;}
._5{width:16.205829pt;}
._6{width:17.427908pt;}
._7{width:19.128192pt;}
._d{width:20.785965pt;}
._1{width:23.063232pt;}
._9{width:24.919783pt;}
._e{width:26.790092pt;}
._8{width:29.967501pt;}
._3{width:61.663357pt;}
._15{width:78.904320pt;}
._b{width:1670.466400pt;}
._c{width:2280.615733pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:40.818667pt;}
.y3c{bottom:88.640000pt;}
.y10{bottom:89.120000pt;}
.yf{bottom:105.020000pt;}
.y3b{bottom:107.209333pt;}
.y6d{bottom:110.821333pt;}
.ye{bottom:120.920000pt;}
.y3a{bottom:125.780000pt;}
.y6c{bottom:136.124000pt;}
.yd{bottom:136.821333pt;}
.y39{bottom:144.350667pt;}
.yc{bottom:152.721333pt;}
.y6b{bottom:153.456000pt;}
.y38{bottom:162.920000pt;}
.yb{bottom:168.621333pt;}
.y6a{bottom:178.757333pt;}
.y37{bottom:181.490667pt;}
.ya{bottom:184.521333pt;}
.y69{bottom:196.090667pt;}
.y36{bottom:200.061333pt;}
.y9{bottom:200.422667pt;}
.y68{bottom:213.422667pt;}
.y35{bottom:218.632000pt;}
.y8{bottom:224.293333pt;}
.y34{bottom:237.201333pt;}
.y7{bottom:240.193333pt;}
.y67{bottom:246.694667pt;}
.y33{bottom:255.772000pt;}
.y6{bottom:256.093333pt;}
.y66{bottom:265.265333pt;}
.y5{bottom:271.994667pt;}
.y32{bottom:274.342667pt;}
.y65{bottom:283.836000pt;}
.y4{bottom:287.894667pt;}
.y31{bottom:292.912000pt;}
.y64{bottom:302.405333pt;}
.y3{bottom:309.108000pt;}
.y30{bottom:311.482667pt;}
.y63{bottom:320.976000pt;}
.y2{bottom:325.009333pt;}
.y2f{bottom:330.053333pt;}
.y62{bottom:339.546667pt;}
.y1{bottom:340.909333pt;}
.y2e{bottom:348.622667pt;}
.y61{bottom:362.101333pt;}
.y2d{bottom:367.193333pt;}
.y2c{bottom:385.764000pt;}
.y60{bottom:396.612000pt;}
.y2b{bottom:404.333333pt;}
.y5f{bottom:415.182667pt;}
.y2a{bottom:422.904000pt;}
.y5e{bottom:433.752000pt;}
.y29{bottom:441.474667pt;}
.y5d{bottom:452.322667pt;}
.y28{bottom:460.045333pt;}
.y5c{bottom:470.893333pt;}
.y27{bottom:478.614667pt;}
.y5b{bottom:489.462667pt;}
.y26{bottom:497.185333pt;}
.y5a{bottom:508.033333pt;}
.y25{bottom:515.756000pt;}
.y59{bottom:526.604000pt;}
.y24{bottom:534.325333pt;}
.y58{bottom:545.173333pt;}
.y86{bottom:545.612000pt;}
.y23{bottom:552.896000pt;}
.y85{bottom:562.634667pt;}
.y57{bottom:563.744000pt;}
.y22{bottom:571.466667pt;}
.y84{bottom:579.657333pt;}
.y56{bottom:582.314667pt;}
.y21{bottom:590.036000pt;}
.y55{bottom:600.885333pt;}
.y20{bottom:608.606667pt;}
.y83{bottom:617.908000pt;}
.y54{bottom:619.454667pt;}
.y1f{bottom:627.177333pt;}
.y82{bottom:634.930667pt;}
.y53{bottom:638.025333pt;}
.y1e{bottom:645.746667pt;}
.y81{bottom:651.953333pt;}
.y52{bottom:656.596000pt;}
.y1d{bottom:664.317333pt;}
.y80{bottom:668.976000pt;}
.y51{bottom:675.165333pt;}
.y1c{bottom:682.888000pt;}
.y7f{bottom:685.998667pt;}
.y50{bottom:693.736000pt;}
.y1b{bottom:701.458667pt;}
.y7e{bottom:703.021333pt;}
.y4f{bottom:712.306667pt;}
.y1a{bottom:720.028000pt;}
.y7d{bottom:720.044000pt;}
.y4e{bottom:730.876000pt;}
.y7c{bottom:737.066667pt;}
.y19{bottom:738.598667pt;}
.y4d{bottom:749.446667pt;}
.y7b{bottom:754.089333pt;}
.y18{bottom:757.169333pt;}
.y4c{bottom:768.017333pt;}
.y7a{bottom:771.112000pt;}
.y17{bottom:779.724000pt;}
.y4b{bottom:786.586667pt;}
.y79{bottom:788.134667pt;}
.y4a{bottom:805.157333pt;}
.y78{bottom:822.180000pt;}
.y49{bottom:823.728000pt;}
.y77{bottom:839.202667pt;}
.y48{bottom:842.297333pt;}
.y16{bottom:848.246667pt;}
.y76{bottom:856.225333pt;}
.y47{bottom:860.868000pt;}
.y15{bottom:862.592000pt;}
.y75{bottom:873.248000pt;}
.y14{bottom:876.938667pt;}
.y46{bottom:879.438667pt;}
.y74{bottom:890.270667pt;}
.y45{bottom:898.009333pt;}
.y73{bottom:907.293333pt;}
.y44{bottom:916.578667pt;}
.y13{bottom:918.306667pt;}
.y72{bottom:924.316000pt;}
.y43{bottom:935.149333pt;}
.y71{bottom:941.340000pt;}
.y12{bottom:952.817333pt;}
.y42{bottom:953.720000pt;}
.y70{bottom:958.362667pt;}
.y41{bottom:972.289333pt;}
.y6f{bottom:975.385333pt;}
.y11{bottom:980.672000pt;}
.y40{bottom:990.860000pt;}
.y6e{bottom:992.408000pt;}
.y3f{bottom:1013.414667pt;}
.y3e{bottom:1066.841333pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h7{height:30.945242pt;}
.ha{height:31.157778pt;}
.hc{height:34.813542pt;}
.hd{height:35.052646pt;}
.hb{height:37.087439pt;}
.h6{height:38.256384pt;}
.h9{height:38.681455pt;}
.h4{height:38.947124pt;}
.h8{height:45.907968pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x11{left:76.309333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x4{left:250.204000pt;}
.xb{left:354.536000pt;}
.xc{left:361.177333pt;}
.xd{left:364.476000pt;}
.xe{left:377.758667pt;}
.x9{left:504.700000pt;}
.xa{left:511.342667pt;}
.xf{left:521.696000pt;}
.x10{left:530.497333pt;}
.x5{left:575.836000pt;}
.x6{left:582.477333pt;}
.x7{left:589.145333pt;}
.x8{left:595.788000pt;}
}




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