
    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_d9c6791186e3611f582cbf3b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9572bd7cde71d9854626a4fd.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_86cf89f77eac5bbceac8e697.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_f7aaaea765d95e3256cdf24d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_aa3a8c46376419be2f3ad140.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ccb2e7719951a9667555691.woff')format("woff");}.ff6{font-family:ff6;line-height:0.299000;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_c0722213e4d9647737b6fa50.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b19d9df2cf85ac3f1dc2980.woff')format("woff");}.ff8{font-family:ff8;line-height:0.905000;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;}
.m1{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);}
.mb{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);}
.m7{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);}
.me{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);}
.ma{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);}
.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);}
.md{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.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);}
.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);}
.mf{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);}
.m9{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);}
.m2{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);}
.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);}
.m6{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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.816000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:26.040000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.002153px;}
.ls3{letter-spacing:0.002158px;}
.ls13{letter-spacing:0.002161px;}
.ls19{letter-spacing:0.327273px;}
.ls18{letter-spacing:0.850910px;}
.ls4{letter-spacing:2.987700px;}
.ls12{letter-spacing:2.993700px;}
.lsa{letter-spacing:3.584153px;}
.lsb{letter-spacing:3.585242px;}
.lse{letter-spacing:3.585779px;}
.ls8{letter-spacing:5.221621px;}
.ls2{letter-spacing:7.214712px;}
.ls15{letter-spacing:16.277412px;}
.ls14{letter-spacing:16.304706px;}
.ls16{letter-spacing:16.313412px;}
.ls17{letter-spacing:16.887287px;}
.ls0{letter-spacing:19.349700px;}
.ls7{letter-spacing:19.353527px;}
.ls6{letter-spacing:19.353787px;}
.ls1{letter-spacing:19.355700px;}
.ls11{letter-spacing:21.141239px;}
.lsf{letter-spacing:21.800159px;}
.ls10{letter-spacing:22.843613px;}
.lsd{letter-spacing:24.412318px;}
.ls9{letter-spacing:24.849467px;}
.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;}
}
.ws24{word-spacing:-65.454600px;}
.ws14{word-spacing:-47.820600px;}
.ws11{word-spacing:-16.363650px;}
.ws1{word-spacing:-13.449600px;}
.ws12{word-spacing:-11.955150px;}
.ws27{word-spacing:-3.665458px;}
.ws23{word-spacing:-3.278441px;}
.ws7{word-spacing:-2.225456px;}
.ws8{word-spacing:-2.160002px;}
.ws25{word-spacing:-1.898183px;}
.ws31{word-spacing:-0.916364px;}
.wse{word-spacing:-0.523637px;}
.ws32{word-spacing:-0.392728px;}
.ws28{word-spacing:-0.196364px;}
.ws9{word-spacing:-0.130909px;}
.wsb{word-spacing:-0.065455px;}
.ws1a{word-spacing:-0.047821px;}
.ws1f{word-spacing:-0.009067px;}
.ws1c{word-spacing:-0.008109px;}
.ws4{word-spacing:-0.007306px;}
.ws16{word-spacing:-0.006818px;}
.ws1d{word-spacing:-0.004688px;}
.ws10{word-spacing:-0.004624px;}
.ws19{word-spacing:-0.003552px;}
.ws2e{word-spacing:-0.002942px;}
.ws17{word-spacing:-0.002274px;}
.ws2{word-spacing:-0.001910px;}
.ws21{word-spacing:-0.001203px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.065455px;}
.ws2a{word-spacing:0.130909px;}
.ws26{word-spacing:0.196364px;}
.wsa{word-spacing:0.261818px;}
.wsd{word-spacing:0.327273px;}
.ws2f{word-spacing:0.589091px;}
.ws2d{word-spacing:1.243637px;}
.ws15{word-spacing:1.507526px;}
.ws34{word-spacing:4.647277px;}
.ws33{word-spacing:4.974550px;}
.ws29{word-spacing:5.760005px;}
.ws13{word-spacing:7.394250px;}
.ws2c{word-spacing:8.770916px;}
.ws2b{word-spacing:8.836371px;}
.ws30{word-spacing:16.363650px;}
.ws6{word-spacing:17.857142px;}
.ws3{word-spacing:17.868250px;}
.ws5{word-spacing:17.873654px;}
.ws20{word-spacing:109.439803px;}
.ws22{word-spacing:143.260194px;}
.ws1e{word-spacing:177.080586px;}
.ws1b{word-spacing:210.900978px;}
.wsf{word-spacing:244.721370px;}
.ws18{word-spacing:278.541762px;}
._4{margin-left:-9.253325px;}
._c{margin-left:-7.854552px;}
._1{margin-left:-6.198750px;}
._7{margin-left:-3.778086px;}
._0{margin-left:-2.231550px;}
._3{margin-left:-1.073078px;}
._d{width:1.047274px;}
._2{width:2.984947px;}
._b{width:12.688156px;}
._6{width:15.244802px;}
._9{width:16.867850px;}
._e{width:19.963653px;}
._a{width:25.192574px;}
._8{width:71.731200px;}
._5{width:86.077200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:95.467500px;}
.y1c{bottom:135.081000px;}
.y1b{bottom:168.435000px;}
.y43{bottom:171.990000px;}
.y59{bottom:183.231000px;}
.y1a{bottom:192.823500px;}
.y42{bottom:196.378500px;}
.y19{bottom:217.212000px;}
.y41{bottom:220.767000px;}
.y18{bottom:241.600500px;}
.y40{bottom:245.155500px;}
.y17{bottom:266.587500px;}
.y3f{bottom:269.544000px;}
.y4f{bottom:302.856000px;}
.y3e{bottom:302.898000px;}
.y16{bottom:312.187500px;}
.y4e{bottom:323.179500px;}
.y3d{bottom:327.286500px;}
.y3c{bottom:351.675000px;}
.y15{bottom:365.289000px;}
.y3b{bottom:385.030500px;}
.y14{bottom:389.677500px;}
.y3a{bottom:409.419000px;}
.y13{bottom:414.066000px;}
.y39{bottom:442.773000px;}
.y12{bottom:449.499000px;}
.y38{bottom:467.161500px;}
.y37{bottom:491.550000px;}
.y68{bottom:494.194500px;}
.y11{bottom:498.537000px;}
.y36{bottom:515.938500px;}
.y67{bottom:518.583000px;}
.y10{bottom:522.925500px;}
.y35{bottom:540.327000px;}
.y66{bottom:542.971500px;}
.yf{bottom:547.314000px;}
.y58{bottom:559.801500px;}
.y34{bottom:564.715500px;}
.y65{bottom:567.360000px;}
.ye{bottom:571.702500px;}
.y33{bottom:589.104000px;}
.yd{bottom:596.091000px;}
.y64{bottom:608.685000px;}
.y32{bottom:613.492500px;}
.yc{bottom:620.479500px;}
.y31{bottom:637.881000px;}
.yb{bottom:644.868000px;}
.y30{bottom:662.269500px;}
.y63{bottom:666.736500px;}
.ya{bottom:686.193000px;}
.y2f{bottom:686.658000px;}
.y62{bottom:691.125000px;}
.y2e{bottom:711.046500px;}
.y61{bottom:715.513500px;}
.y2d{bottom:735.435000px;}
.y60{bottom:739.902000px;}
.y2c{bottom:759.960000px;}
.y5f{bottom:764.290500px;}
.y2b{bottom:778.251000px;}
.y5e{bottom:788.679000px;}
.y2a{bottom:802.639500px;}
.y9{bottom:810.954000px;}
.y4d{bottom:826.516500px;}
.y29{bottom:835.993500px;}
.y4c{bottom:850.905000px;}
.y28{bottom:860.382000px;}
.y8{bottom:871.926000px;}
.y4b{bottom:875.293500px;}
.y27{bottom:884.770500px;}
.y7{bottom:897.031500px;}
.y4a{bottom:899.682000px;}
.y26{bottom:909.159000px;}
.y57{bottom:918.441000px;}
.y49{bottom:924.070500px;}
.y6{bottom:928.077000px;}
.y25{bottom:933.547500px;}
.y56{bottom:942.829500px;}
.y48{bottom:948.459000px;}
.y5{bottom:952.465500px;}
.y24{bottom:957.936000px;}
.y55{bottom:967.218000px;}
.y4{bottom:970.914000px;}
.y47{bottom:972.847500px;}
.y23{bottom:982.324500px;}
.y5d{bottom:983.893500px;}
.y54{bottom:991.606500px;}
.y46{bottom:997.236000px;}
.y22{bottom:1006.713000px;}
.y3{bottom:1011.516000px;}
.y53{bottom:1015.995000px;}
.y45{bottom:1021.624500px;}
.y21{bottom:1031.101500px;}
.y5c{bottom:1032.931500px;}
.y52{bottom:1040.383500px;}
.y20{bottom:1055.490000px;}
.y2{bottom:1056.348000px;}
.y44{bottom:1057.059000px;}
.y5b{bottom:1057.320000px;}
.y51{bottom:1064.772000px;}
.y1f{bottom:1080.477000px;}
.y5a{bottom:1081.708500px;}
.y1{bottom:1101.180000px;}
.y1e{bottom:1105.462500px;}
.y50{bottom:1106.097000px;}
.h4{height:32.900573px;}
.ha{height:44.901856px;}
.h7{height:45.032765px;}
.h9{height:45.425492px;}
.hc{height:45.490947px;}
.he{height:49.090950px;}
.h5{height:49.351066px;}
.h8{height:49.781453px;}
.hd{height:56.660573px;}
.hb{height:59.625450px;}
.h6{height:59.737577px;}
.h3{height:63.053299px;}
.h2{height:86.038650px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:147.528000px;}
.xa{left:148.755000px;}
.x7{left:158.589000px;}
.x1{left:168.895500px;}
.x5{left:173.377500px;}
.x10{left:176.350500px;}
.xd{left:178.527000px;}
.x6{left:185.754000px;}
.x16{left:189.664500px;}
.x2{left:198.462000px;}
.x4{left:229.150500px;}
.x15{left:255.324000px;}
.xc{left:259.978500px;}
.x8{left:287.295000px;}
.x3{left:338.631000px;}
.x14{left:358.993500px;}
.x9{left:400.881000px;}
.xf{left:442.366500px;}
.x12{left:481.254000px;}
.x13{left:498.070500px;}
.x11{left:542.713500px;}
.xe{left:559.146000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.725333pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:23.146667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001914pt;}
.ls3{letter-spacing:0.001918pt;}
.ls13{letter-spacing:0.001921pt;}
.ls19{letter-spacing:0.290909pt;}
.ls18{letter-spacing:0.756364pt;}
.ls4{letter-spacing:2.655733pt;}
.ls12{letter-spacing:2.661067pt;}
.lsa{letter-spacing:3.185914pt;}
.lsb{letter-spacing:3.186882pt;}
.lse{letter-spacing:3.187359pt;}
.ls8{letter-spacing:4.641441pt;}
.ls2{letter-spacing:6.413077pt;}
.ls15{letter-spacing:14.468811pt;}
.ls14{letter-spacing:14.493072pt;}
.ls16{letter-spacing:14.500811pt;}
.ls17{letter-spacing:15.010922pt;}
.ls0{letter-spacing:17.199733pt;}
.ls7{letter-spacing:17.203135pt;}
.ls6{letter-spacing:17.203366pt;}
.ls1{letter-spacing:17.205067pt;}
.ls11{letter-spacing:18.792213pt;}
.lsf{letter-spacing:19.377919pt;}
.ls10{letter-spacing:20.305434pt;}
.lsd{letter-spacing:21.699838pt;}
.ls9{letter-spacing:22.088415pt;}
.ws24{word-spacing:-58.181867pt;}
.ws14{word-spacing:-42.507200pt;}
.ws11{word-spacing:-14.545467pt;}
.ws1{word-spacing:-11.955200pt;}
.ws12{word-spacing:-10.626800pt;}
.ws27{word-spacing:-3.258185pt;}
.ws23{word-spacing:-2.914170pt;}
.ws7{word-spacing:-1.978183pt;}
.ws8{word-spacing:-1.920002pt;}
.ws25{word-spacing:-1.687274pt;}
.ws31{word-spacing:-0.814546pt;}
.wse{word-spacing:-0.465455pt;}
.ws32{word-spacing:-0.349091pt;}
.ws28{word-spacing:-0.174546pt;}
.ws9{word-spacing:-0.116364pt;}
.wsb{word-spacing:-0.058182pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws1f{word-spacing:-0.008059pt;}
.ws1c{word-spacing:-0.007208pt;}
.ws4{word-spacing:-0.006494pt;}
.ws16{word-spacing:-0.006061pt;}
.ws1d{word-spacing:-0.004167pt;}
.ws10{word-spacing:-0.004110pt;}
.ws19{word-spacing:-0.003157pt;}
.ws2e{word-spacing:-0.002615pt;}
.ws17{word-spacing:-0.002021pt;}
.ws2{word-spacing:-0.001698pt;}
.ws21{word-spacing:-0.001069pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058182pt;}
.ws2a{word-spacing:0.116364pt;}
.ws26{word-spacing:0.174546pt;}
.wsa{word-spacing:0.232727pt;}
.wsd{word-spacing:0.290909pt;}
.ws2f{word-spacing:0.523637pt;}
.ws2d{word-spacing:1.105455pt;}
.ws15{word-spacing:1.340023pt;}
.ws34{word-spacing:4.130913pt;}
.ws33{word-spacing:4.421822pt;}
.ws29{word-spacing:5.120004pt;}
.ws13{word-spacing:6.572667pt;}
.ws2c{word-spacing:7.796370pt;}
.ws2b{word-spacing:7.854552pt;}
.ws30{word-spacing:14.545467pt;}
.ws6{word-spacing:15.873015pt;}
.ws3{word-spacing:15.882889pt;}
.ws5{word-spacing:15.887693pt;}
.ws20{word-spacing:97.279825pt;}
.ws22{word-spacing:127.342395pt;}
.ws1e{word-spacing:157.404966pt;}
.ws1b{word-spacing:187.467536pt;}
.wsf{word-spacing:217.530107pt;}
.ws18{word-spacing:247.592677pt;}
._4{margin-left:-8.225178pt;}
._c{margin-left:-6.981824pt;}
._1{margin-left:-5.510000pt;}
._7{margin-left:-3.358299pt;}
._0{margin-left:-1.983600pt;}
._3{margin-left:-0.953847pt;}
._d{width:0.930910pt;}
._2{width:2.653286pt;}
._b{width:11.278361pt;}
._6{width:13.550935pt;}
._9{width:14.993644pt;}
._e{width:17.745469pt;}
._a{width:22.393399pt;}
._8{width:63.761067pt;}
._5{width:76.513067pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:84.860000pt;}
.y1c{bottom:120.072000pt;}
.y1b{bottom:149.720000pt;}
.y43{bottom:152.880000pt;}
.y59{bottom:162.872000pt;}
.y1a{bottom:171.398667pt;}
.y42{bottom:174.558667pt;}
.y19{bottom:193.077333pt;}
.y41{bottom:196.237333pt;}
.y18{bottom:214.756000pt;}
.y40{bottom:217.916000pt;}
.y17{bottom:236.966667pt;}
.y3f{bottom:239.594667pt;}
.y4f{bottom:269.205333pt;}
.y3e{bottom:269.242667pt;}
.y16{bottom:277.500000pt;}
.y4e{bottom:287.270667pt;}
.y3d{bottom:290.921333pt;}
.y3c{bottom:312.600000pt;}
.y15{bottom:324.701333pt;}
.y3b{bottom:342.249333pt;}
.y14{bottom:346.380000pt;}
.y3a{bottom:363.928000pt;}
.y13{bottom:368.058667pt;}
.y39{bottom:393.576000pt;}
.y12{bottom:399.554667pt;}
.y38{bottom:415.254667pt;}
.y37{bottom:436.933333pt;}
.y68{bottom:439.284000pt;}
.y11{bottom:443.144000pt;}
.y36{bottom:458.612000pt;}
.y67{bottom:460.962667pt;}
.y10{bottom:464.822667pt;}
.y35{bottom:480.290667pt;}
.y66{bottom:482.641333pt;}
.yf{bottom:486.501333pt;}
.y58{bottom:497.601333pt;}
.y34{bottom:501.969333pt;}
.y65{bottom:504.320000pt;}
.ye{bottom:508.180000pt;}
.y33{bottom:523.648000pt;}
.yd{bottom:529.858667pt;}
.y64{bottom:541.053333pt;}
.y32{bottom:545.326667pt;}
.yc{bottom:551.537333pt;}
.y31{bottom:567.005333pt;}
.yb{bottom:573.216000pt;}
.y30{bottom:588.684000pt;}
.y63{bottom:592.654667pt;}
.ya{bottom:609.949333pt;}
.y2f{bottom:610.362667pt;}
.y62{bottom:614.333333pt;}
.y2e{bottom:632.041333pt;}
.y61{bottom:636.012000pt;}
.y2d{bottom:653.720000pt;}
.y60{bottom:657.690667pt;}
.y2c{bottom:675.520000pt;}
.y5f{bottom:679.369333pt;}
.y2b{bottom:691.778667pt;}
.y5e{bottom:701.048000pt;}
.y2a{bottom:713.457333pt;}
.y9{bottom:720.848000pt;}
.y4d{bottom:734.681333pt;}
.y29{bottom:743.105333pt;}
.y4c{bottom:756.360000pt;}
.y28{bottom:764.784000pt;}
.y8{bottom:775.045333pt;}
.y4b{bottom:778.038667pt;}
.y27{bottom:786.462667pt;}
.y7{bottom:797.361333pt;}
.y4a{bottom:799.717333pt;}
.y26{bottom:808.141333pt;}
.y57{bottom:816.392000pt;}
.y49{bottom:821.396000pt;}
.y6{bottom:824.957333pt;}
.y25{bottom:829.820000pt;}
.y56{bottom:838.070667pt;}
.y48{bottom:843.074667pt;}
.y5{bottom:846.636000pt;}
.y24{bottom:851.498667pt;}
.y55{bottom:859.749333pt;}
.y4{bottom:863.034667pt;}
.y47{bottom:864.753333pt;}
.y23{bottom:873.177333pt;}
.y5d{bottom:874.572000pt;}
.y54{bottom:881.428000pt;}
.y46{bottom:886.432000pt;}
.y22{bottom:894.856000pt;}
.y3{bottom:899.125333pt;}
.y53{bottom:903.106667pt;}
.y45{bottom:908.110667pt;}
.y21{bottom:916.534667pt;}
.y5c{bottom:918.161333pt;}
.y52{bottom:924.785333pt;}
.y20{bottom:938.213333pt;}
.y2{bottom:938.976000pt;}
.y44{bottom:939.608000pt;}
.y5b{bottom:939.840000pt;}
.y51{bottom:946.464000pt;}
.y1f{bottom:960.424000pt;}
.y5a{bottom:961.518667pt;}
.y1{bottom:978.826667pt;}
.y1e{bottom:982.633333pt;}
.y50{bottom:983.197333pt;}
.h4{height:29.244954pt;}
.ha{height:39.912761pt;}
.h7{height:40.029124pt;}
.h9{height:40.378215pt;}
.hc{height:40.436397pt;}
.he{height:43.636400pt;}
.h5{height:43.867614pt;}
.h8{height:44.250180pt;}
.hd{height:50.364954pt;}
.hb{height:53.000400pt;}
.h6{height:53.100068pt;}
.h3{height:56.047377pt;}
.h2{height:76.478800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:131.136000pt;}
.xa{left:132.226667pt;}
.x7{left:140.968000pt;}
.x1{left:150.129333pt;}
.x5{left:154.113333pt;}
.x10{left:156.756000pt;}
.xd{left:158.690667pt;}
.x6{left:165.114667pt;}
.x16{left:168.590667pt;}
.x2{left:176.410667pt;}
.x4{left:203.689333pt;}
.x15{left:226.954667pt;}
.xc{left:231.092000pt;}
.x8{left:255.373333pt;}
.x3{left:301.005333pt;}
.x14{left:319.105333pt;}
.x9{left:356.338667pt;}
.xf{left:393.214667pt;}
.x12{left:427.781333pt;}
.x13{left:442.729333pt;}
.x11{left:482.412000pt;}
.xe{left:497.018667pt;}
}




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