
    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_5c42a195e2966d419c5aca9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_9095dc2d9a025a0453088364.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_32380e750e9dbfacde04234a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_cf6e5a4dace874ad14e2b512.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_a4733345f7d5617e8e956eb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_48e8544b74fbbb514140ffce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.372000;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_312226f749fd1ebccb0b679d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_86488924fe50e0931951eaa7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.mf{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);}
.m15{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);}
.m9{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);}
.ma{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);}
.mb{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);}
.m7{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);}
.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);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mc{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);}
.m3{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);}
.m14{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);}
.m6{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);}
.m11{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);}
.m5{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);}
.m13{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;}
.v2{vertical-align:5.475284px;}
.v1{vertical-align:17.813811px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:10.459254px;}
.ls0{letter-spacing:23.914195px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(33,37,41),0 0.015em rgb(33,37,41),0.015em 0 rgb(33,37,41),0 -0.015em  rgb(33,37,41);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(33,37,41);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-14.943900px;}
.ws28{word-spacing:-13.449600px;}
.ws22{word-spacing:-7.858926px;}
.ws23{word-spacing:-7.848462px;}
.ws26{word-spacing:-6.958969px;}
.ws35{word-spacing:-3.658291px;}
.ws33{word-spacing:-3.120307px;}
.ws2e{word-spacing:-2.151936px;}
.ws1d{word-spacing:-1.882926px;}
.wsa{word-spacing:-1.506355px;}
.ws20{word-spacing:-1.213441px;}
.ws1b{word-spacing:-1.129756px;}
.ws1f{word-spacing:-1.087913px;}
.ws37{word-spacing:-0.914573px;}
.ws36{word-spacing:-0.806976px;}
.ws13{word-spacing:-0.376589px;}
.ws2a{word-spacing:-0.322790px;}
.wsd{word-spacing:-0.268992px;}
.ws11{word-spacing:-0.215194px;}
.ws9{word-spacing:-0.161395px;}
.wsf{word-spacing:-0.107597px;}
.ws5{word-spacing:-0.095641px;}
.ws17{word-spacing:-0.083686px;}
.wsb{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.053798px;}
.ws12{word-spacing:0.107597px;}
.ws1e{word-spacing:0.167371px;}
.ws1c{word-spacing:0.209214px;}
.ws2c{word-spacing:0.215194px;}
.ws18{word-spacing:0.251057px;}
.ws10{word-spacing:0.268992px;}
.ws30{word-spacing:0.376589px;}
.ws25{word-spacing:0.435360px;}
.ws32{word-spacing:0.753178px;}
.ws15{word-spacing:1.129766px;}
.ws1a{word-spacing:1.757398px;}
.ws19{word-spacing:1.966612px;}
.ws31{word-spacing:2.098138px;}
.ws34{word-spacing:2.474726px;}
.ws16{word-spacing:2.528525px;}
.wsc{word-spacing:3.335501px;}
.ws29{word-spacing:3.443098px;}
.ws14{word-spacing:4.196275px;}
.ws2b{word-spacing:4.465267px;}
.ws39{word-spacing:4.949453px;}
.ws2f{word-spacing:5.541235px;}
.ws2d{word-spacing:5.702630px;}
.ws38{word-spacing:6.186816px;}
.ws21{word-spacing:10.418857px;}
.ws6{word-spacing:11.859509px;}
.ws4{word-spacing:11.907329px;}
.ws27{word-spacing:13.395802px;}
.ws8{word-spacing:16.298195px;}
.ws1{word-spacing:17.861069px;}
.ws0{word-spacing:25.719808px;}
.ws24{word-spacing:1047.286989px;}
._1{margin-left:-6.507421px;}
._0{margin-left:-4.131696px;}
._4{margin-left:-3.012698px;}
._3{margin-left:-1.239509px;}
._2{width:1.446094px;}
._8{width:2.677939px;}
._6{width:3.873485px;}
._7{width:11.412343px;}
._5{width:65.454600px;}
._9{width:177.723119px;}
._a{width:2010.661532px;}
.fc2{color:transparent;}
.fc1{color:rgb(33,37,41);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:26.560951px;}
.fs9{font-size:26.600892px;}
.fs8{font-size:29.955960px;}
.fs7{font-size:29.995901px;}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3b{bottom:21.777983px;}
.y39{bottom:21.927763px;}
.y3a{bottom:30.774756px;}
.y38{bottom:30.924536px;}
.y40{bottom:72.913639px;}
.y3d{bottom:76.866161px;}
.y3f{bottom:80.901895px;}
.y3c{bottom:84.866899px;}
.y3e{bottom:88.898472px;}
.y36{bottom:126.979500px;}
.y35{bottom:138.934500px;}
.y62{bottom:143.416500px;}
.y34{bottom:150.889500px;}
.y61{bottom:159.855000px;}
.y33{bottom:164.040000px;}
.y60{bottom:176.293500px;}
.y32{bottom:177.190500px;}
.y31{bottom:189.145500px;}
.y5f{bottom:192.732000px;}
.y30{bottom:201.100500px;}
.y5e{bottom:209.170500px;}
.y2f{bottom:213.055500px;}
.y2e{bottom:225.012000px;}
.y5d{bottom:228.916500px;}
.y5c{bottom:245.355000px;}
.y2d{bottom:248.962500px;}
.y2c{bottom:260.917500px;}
.y5b{bottom:261.793500px;}
.y2b{bottom:272.872500px;}
.y5a{bottom:278.232000px;}
.y2a{bottom:284.827500px;}
.y59{bottom:294.669000px;}
.y29{bottom:296.782500px;}
.y28{bottom:308.737500px;}
.y58{bottom:311.107500px;}
.y27{bottom:320.692500px;}
.y57{bottom:327.546000px;}
.y26{bottom:332.647500px;}
.y56{bottom:343.984500px;}
.y25{bottom:356.187000px;}
.y55{bottom:360.423000px;}
.y24{bottom:375.655500px;}
.y54{bottom:380.169000px;}
.y23{bottom:392.094000px;}
.y53{bottom:396.607500px;}
.y22{bottom:408.532500px;}
.y52{bottom:413.046000px;}
.y21{bottom:424.971000px;}
.y51{bottom:429.484500px;}
.y20{bottom:441.409500px;}
.y50{bottom:445.921500px;}
.y1f{bottom:457.848000px;}
.y4f{bottom:462.360000px;}
.y1e{bottom:478.396500px;}
.y4e{bottom:478.798500px;}
.y4d{bottom:495.237000px;}
.y1d{bottom:510.312000px;}
.y4c{bottom:514.983000px;}
.y1c{bottom:526.750500px;}
.y4b{bottom:531.421500px;}
.y1b{bottom:543.189000px;}
.y4a{bottom:551.970000px;}
.y1a{bottom:559.627500px;}
.y19{bottom:576.066000px;}
.y49{bottom:584.172000px;}
.y18{bottom:592.504500px;}
.y48{bottom:600.610500px;}
.y17{bottom:608.943000px;}
.y47{bottom:617.049000px;}
.y16{bottom:625.381500px;}
.y46{bottom:633.487500px;}
.y15{bottom:641.820000px;}
.y45{bottom:653.233500px;}
.y14{bottom:658.258500px;}
.y44{bottom:669.672000px;}
.y13{bottom:674.695500px;}
.y43{bottom:686.110500px;}
.y12{bottom:691.134000px;}
.y42{bottom:702.549000px;}
.y11{bottom:707.572500px;}
.y10{bottom:724.011000px;}
.yf{bottom:740.449500px;}
.y41{bottom:746.629500px;}
.ye{bottom:760.998000px;}
.y37{bottom:776.068500px;}
.yd{bottom:792.550500px;}
.yc{bottom:807.495000px;}
.yb{bottom:822.438000px;}
.ya{bottom:837.382500px;}
.y9{bottom:852.327000px;}
.y8{bottom:867.270000px;}
.y7{bottom:897.247500px;}
.y6{bottom:915.180000px;}
.y6c{bottom:916.020000px;}
.y71{bottom:929.581500px;}
.y6b{bottom:932.458500px;}
.y5{bottom:933.114000px;}
.y70{bottom:946.020000px;}
.y6a{bottom:948.897000px;}
.y4{bottom:951.046500px;}
.y6f{bottom:962.458500px;}
.y69{bottom:965.335500px;}
.y6e{bottom:978.897000px;}
.y68{bottom:981.774000px;}
.y3{bottom:984.786000px;}
.y6d{bottom:995.335500px;}
.y67{bottom:998.211000px;}
.y66{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y65{bottom:1031.088000px;}
.y1{bottom:1044.562500px;}
.y64{bottom:1047.526500px;}
.y63{bottom:1086.979500px;}
.hf{height:19.920713px;}
.he{height:19.950669px;}
.hc{height:22.466970px;}
.hb{height:22.496926px;}
.h12{height:23.832691px;}
.h10{height:25.395997px;}
.h13{height:29.499174px;}
.h9{height:29.624702px;}
.h5{height:33.474420px;}
.h6{height:33.856985px;}
.h11{height:37.658880px;}
.h8{height:38.089267px;}
.hd{height:40.280781px;}
.h4{height:42.321125px;}
.h7{height:45.818220px;}
.h2{height:50.570496px;}
.h3{height:50.785690px;}
.h1{height:72.098095px;}
.ha{height:106.143952px;}
.h0{height:1188.000000px;}
.w1{width:324.323189px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.538912px;}
.x12{left:10.085168px;}
.x15{left:25.103090px;}
.x14{left:38.932758px;}
.xf{left:60.939571px;}
.xb{left:80.254500px;}
.xc{left:95.641500px;}
.xd{left:104.647500px;}
.x1c{left:117.310500px;}
.x17{left:125.473862px;}
.x16{left:130.666228px;}
.x18{left:144.745530px;}
.x10{left:161.104812px;}
.x2{left:162.615000px;}
.x5{left:189.838500px;}
.x6{left:211.612500px;}
.x4{left:232.848000px;}
.x11{left:261.357425px;}
.x1{left:267.559500px;}
.x3{left:409.729500px;}
.x1a{left:476.932500px;}
.x1d{left:491.877000px;}
.xe{left:494.952005px;}
.x19{left:500.883000px;}
.x1b{left:513.546000px;}
.xa{left:560.998500px;}
.x7{left:581.157000px;}
.x8{left:598.186500px;}
.x9{left:602.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.866919pt;}
.v1{vertical-align:15.834499pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:9.297115pt;}
.ls0{letter-spacing:21.257062pt;}
.ws3{word-spacing:-13.283467pt;}
.ws28{word-spacing:-11.955200pt;}
.ws22{word-spacing:-6.985712pt;}
.ws23{word-spacing:-6.976410pt;}
.ws26{word-spacing:-6.185750pt;}
.ws35{word-spacing:-3.251814pt;}
.ws33{word-spacing:-2.773606pt;}
.ws2e{word-spacing:-1.912832pt;}
.ws1d{word-spacing:-1.673712pt;}
.wsa{word-spacing:-1.338982pt;}
.ws20{word-spacing:-1.078614pt;}
.ws1b{word-spacing:-1.004227pt;}
.ws1f{word-spacing:-0.967034pt;}
.ws37{word-spacing:-0.812954pt;}
.ws36{word-spacing:-0.717312pt;}
.ws13{word-spacing:-0.334746pt;}
.ws2a{word-spacing:-0.286925pt;}
.wsd{word-spacing:-0.239104pt;}
.ws11{word-spacing:-0.191283pt;}
.ws9{word-spacing:-0.143462pt;}
.wsf{word-spacing:-0.095642pt;}
.ws5{word-spacing:-0.085014pt;}
.ws17{word-spacing:-0.074387pt;}
.wsb{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.047821pt;}
.ws12{word-spacing:0.095642pt;}
.ws1e{word-spacing:0.148774pt;}
.ws1c{word-spacing:0.185968pt;}
.ws2c{word-spacing:0.191283pt;}
.ws18{word-spacing:0.223162pt;}
.ws10{word-spacing:0.239104pt;}
.ws30{word-spacing:0.334746pt;}
.ws25{word-spacing:0.386987pt;}
.ws32{word-spacing:0.669491pt;}
.ws15{word-spacing:1.004237pt;}
.ws1a{word-spacing:1.562131pt;}
.ws19{word-spacing:1.748099pt;}
.ws31{word-spacing:1.865011pt;}
.ws34{word-spacing:2.199757pt;}
.ws16{word-spacing:2.247578pt;}
.wsc{word-spacing:2.964890pt;}
.ws29{word-spacing:3.060531pt;}
.ws14{word-spacing:3.730022pt;}
.ws2b{word-spacing:3.969126pt;}
.ws39{word-spacing:4.399514pt;}
.ws2f{word-spacing:4.925542pt;}
.ws2d{word-spacing:5.069005pt;}
.ws38{word-spacing:5.499392pt;}
.ws21{word-spacing:9.261206pt;}
.ws6{word-spacing:10.541786pt;}
.ws4{word-spacing:10.584293pt;}
.ws27{word-spacing:11.907379pt;}
.ws8{word-spacing:14.487285pt;}
.ws1{word-spacing:15.876506pt;}
.ws0{word-spacing:22.862051pt;}
.ws24{word-spacing:930.921768pt;}
._1{margin-left:-5.784374pt;}
._0{margin-left:-3.672619pt;}
._4{margin-left:-2.677954pt;}
._3{margin-left:-1.101786pt;}
._2{width:1.285417pt;}
._8{width:2.380390pt;}
._6{width:3.443098pt;}
._7{width:10.144305pt;}
._5{width:58.181867pt;}
._9{width:157.976106pt;}
._a{width:1787.254695pt;}
.fsa{font-size:23.609734pt;}
.fs9{font-size:23.645238pt;}
.fs8{font-size:26.627520pt;}
.fs7{font-size:26.663023pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:19.358207pt;}
.y39{bottom:19.491345pt;}
.y3a{bottom:27.355339pt;}
.y38{bottom:27.488476pt;}
.y40{bottom:64.812123pt;}
.y3d{bottom:68.325477pt;}
.y3f{bottom:71.912795pt;}
.y3c{bottom:75.437243pt;}
.y3e{bottom:79.020864pt;}
.y36{bottom:112.870667pt;}
.y35{bottom:123.497333pt;}
.y62{bottom:127.481333pt;}
.y34{bottom:134.124000pt;}
.y61{bottom:142.093333pt;}
.y33{bottom:145.813333pt;}
.y60{bottom:156.705333pt;}
.y32{bottom:157.502667pt;}
.y31{bottom:168.129333pt;}
.y5f{bottom:171.317333pt;}
.y30{bottom:178.756000pt;}
.y5e{bottom:185.929333pt;}
.y2f{bottom:189.382667pt;}
.y2e{bottom:200.010667pt;}
.y5d{bottom:203.481333pt;}
.y5c{bottom:218.093333pt;}
.y2d{bottom:221.300000pt;}
.y2c{bottom:231.926667pt;}
.y5b{bottom:232.705333pt;}
.y2b{bottom:242.553333pt;}
.y5a{bottom:247.317333pt;}
.y2a{bottom:253.180000pt;}
.y59{bottom:261.928000pt;}
.y29{bottom:263.806667pt;}
.y28{bottom:274.433333pt;}
.y58{bottom:276.540000pt;}
.y27{bottom:285.060000pt;}
.y57{bottom:291.152000pt;}
.y26{bottom:295.686667pt;}
.y56{bottom:305.764000pt;}
.y25{bottom:316.610667pt;}
.y55{bottom:320.376000pt;}
.y24{bottom:333.916000pt;}
.y54{bottom:337.928000pt;}
.y23{bottom:348.528000pt;}
.y53{bottom:352.540000pt;}
.y22{bottom:363.140000pt;}
.y52{bottom:367.152000pt;}
.y21{bottom:377.752000pt;}
.y51{bottom:381.764000pt;}
.y20{bottom:392.364000pt;}
.y50{bottom:396.374667pt;}
.y1f{bottom:406.976000pt;}
.y4f{bottom:410.986667pt;}
.y1e{bottom:425.241333pt;}
.y4e{bottom:425.598667pt;}
.y4d{bottom:440.210667pt;}
.y1d{bottom:453.610667pt;}
.y4c{bottom:457.762667pt;}
.y1c{bottom:468.222667pt;}
.y4b{bottom:472.374667pt;}
.y1b{bottom:482.834667pt;}
.y4a{bottom:490.640000pt;}
.y1a{bottom:497.446667pt;}
.y19{bottom:512.058667pt;}
.y49{bottom:519.264000pt;}
.y18{bottom:526.670667pt;}
.y48{bottom:533.876000pt;}
.y17{bottom:541.282667pt;}
.y47{bottom:548.488000pt;}
.y16{bottom:555.894667pt;}
.y46{bottom:563.100000pt;}
.y15{bottom:570.506667pt;}
.y45{bottom:580.652000pt;}
.y14{bottom:585.118667pt;}
.y44{bottom:595.264000pt;}
.y13{bottom:599.729333pt;}
.y43{bottom:609.876000pt;}
.y12{bottom:614.341333pt;}
.y42{bottom:624.488000pt;}
.y11{bottom:628.953333pt;}
.y10{bottom:643.565333pt;}
.yf{bottom:658.177333pt;}
.y41{bottom:663.670667pt;}
.ye{bottom:676.442667pt;}
.y37{bottom:689.838667pt;}
.yd{bottom:704.489333pt;}
.yc{bottom:717.773333pt;}
.yb{bottom:731.056000pt;}
.ya{bottom:744.340000pt;}
.y9{bottom:757.624000pt;}
.y8{bottom:770.906667pt;}
.y7{bottom:797.553333pt;}
.y6{bottom:813.493333pt;}
.y6c{bottom:814.240000pt;}
.y71{bottom:826.294667pt;}
.y6b{bottom:828.852000pt;}
.y5{bottom:829.434667pt;}
.y70{bottom:840.906667pt;}
.y6a{bottom:843.464000pt;}
.y4{bottom:845.374667pt;}
.y6f{bottom:855.518667pt;}
.y69{bottom:858.076000pt;}
.y6e{bottom:870.130667pt;}
.y68{bottom:872.688000pt;}
.y3{bottom:875.365333pt;}
.y6d{bottom:884.742667pt;}
.y67{bottom:887.298667pt;}
.y66{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y65{bottom:916.522667pt;}
.y1{bottom:928.500000pt;}
.y64{bottom:931.134667pt;}
.y63{bottom:966.204000pt;}
.hf{height:17.707301pt;}
.he{height:17.733928pt;}
.hc{height:19.970640pt;}
.hb{height:19.997268pt;}
.h12{height:21.184614pt;}
.h10{height:22.574220pt;}
.h13{height:26.221488pt;}
.h9{height:26.333069pt;}
.h5{height:29.755040pt;}
.h6{height:30.095098pt;}
.h11{height:33.474560pt;}
.h8{height:33.857126pt;}
.hd{height:35.805139pt;}
.h4{height:37.618778pt;}
.h7{height:40.727307pt;}
.h2{height:44.951552pt;}
.h3{height:45.142835pt;}
.h1{height:64.087196pt;}
.ha{height:94.350179pt;}
.h0{height:1056.000000pt;}
.w1{width:288.287279pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.701255pt;}
.x12{left:8.964594pt;}
.x15{left:22.313857pt;}
.x14{left:34.606896pt;}
.xf{left:54.168508pt;}
.xb{left:71.337333pt;}
.xc{left:85.014667pt;}
.xd{left:93.020000pt;}
.x1c{left:104.276000pt;}
.x17{left:111.532322pt;}
.x16{left:116.147759pt;}
.x18{left:128.662693pt;}
.x10{left:143.204278pt;}
.x2{left:144.546667pt;}
.x5{left:168.745333pt;}
.x6{left:188.100000pt;}
.x4{left:206.976000pt;}
.x11{left:232.317711pt;}
.x1{left:237.830667pt;}
.x3{left:364.204000pt;}
.x1a{left:423.940000pt;}
.x1d{left:437.224000pt;}
.xe{left:439.957338pt;}
.x19{left:445.229333pt;}
.x1b{left:456.485333pt;}
.xa{left:498.665333pt;}
.x7{left:516.584000pt;}
.x8{left:531.721333pt;}
.x9{left:535.533333pt;}
}




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