
    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_efd15e79e98dc5f7ff13e59f.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4fd1ace44a7a0da15a53a36b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773000;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_98551e799d11acd3c6d16c90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_e811e4a09d5e9a73eefd3fc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_28af34666bee6aaeedc4d93d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.709000;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_8f05c8137e95f6ac0634228c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62844f4188f0670939a6fc48.woff2')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_47d297ce8af9682c0580197f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a0ba1b386b7f945a0f50993.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_926706c0f77626391f346de4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_da6242cb8fb2f9cf9c89f012.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9fcac36aadcb22481fb99a8d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9a5e88cc749fc184d2e1086f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e5b165b2f470b41355c788a9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_96c478205a1f88f012946ed5.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;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:ff10;src:url('chunks/assets/font_bca187bf94334d9698cc6aa3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.844000;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:ff11;src:url('chunks/assets/font_725aa56431ccd39328b99e76.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;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:ff12;src:url('chunks/assets/font_2a49be9b804b7ea0b0068eac.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v8{vertical-align:-22.854000px;}
.v6{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:21.696000px;}
.v9{vertical-align:22.854000px;}
.v2{vertical-align:26.028000px;}
.v1{vertical-align:37.488000px;}
.v3{vertical-align:41.004000px;}
.v4{vertical-align:81.444000px;}
.v5{vertical-align:125.286000px;}
.ls21{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000062px;}
.ls15{letter-spacing:0.000767px;}
.lsd{letter-spacing:0.001698px;}
.ls3{letter-spacing:0.003181px;}
.ls9{letter-spacing:0.006062px;}
.ls4{letter-spacing:2.888420px;}
.lse{letter-spacing:2.984525px;}
.ls1e{letter-spacing:2.988532px;}
.ls1f{letter-spacing:2.989559px;}
.ls11{letter-spacing:2.990525px;}
.ls1d{letter-spacing:2.993468px;}
.ls20{letter-spacing:2.994532px;}
.ls5{letter-spacing:3.317134px;}
.ls0{letter-spacing:3.323134px;}
.ls14{letter-spacing:5.408908px;}
.ls1a{letter-spacing:6.510305px;}
.ls2{letter-spacing:6.595482px;}
.lsf{letter-spacing:7.472450px;}
.ls12{letter-spacing:7.478450px;}
.ls18{letter-spacing:13.278538px;}
.lsb{letter-spacing:13.287031px;}
.ls6{letter-spacing:16.601607px;}
.ls7{letter-spacing:16.602062px;}
.ls8{letter-spacing:16.602538px;}
.lsc{letter-spacing:16.610245px;}
.ls13{letter-spacing:20.615197px;}
.ls22{letter-spacing:21.817605px;}
.ls19{letter-spacing:22.707030px;}
.ls1b{letter-spacing:24.092420px;}
.ls10{letter-spacing:24.144305px;}
.ls16{letter-spacing:26.042420px;}
.ls1c{letter-spacing:26.480420px;}
.ls1{letter-spacing:37.536538px;}
.lsa{letter-spacing:325.316338px;}
.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;}
}
.ws5{word-spacing:-38.937826px;}
.wsd{word-spacing:-28.955301px;}
.ws8{word-spacing:-27.283881px;}
.ws15{word-spacing:-25.677681px;}
.wsa{word-spacing:-22.356582px;}
.ws16{word-spacing:-22.353681px;}
.ws9{word-spacing:-22.351368px;}
.ws7{word-spacing:-16.605662px;}
.ws31{word-spacing:-15.359443px;}
.ws4{word-spacing:-7.711095px;}
.wsc{word-spacing:-3.335478px;}
.wsb{word-spacing:-3.323579px;}
.wse{word-spacing:-0.884679px;}
.ws23{word-spacing:-0.645576px;}
.ws20{word-spacing:-0.346698px;}
.ws43{word-spacing:-0.065455px;}
.ws17{word-spacing:-0.059776px;}
.ws33{word-spacing:0.000000px;}
.ws6{word-spacing:0.011955px;}
.ws2a{word-spacing:0.071731px;}
.ws4b{word-spacing:0.733092px;}
.wsf{word-spacing:1.016982px;}
.ws10{word-spacing:1.028140px;}
.ws3a{word-spacing:1.584001px;}
.ws25{word-spacing:2.223652px;}
.ws26{word-spacing:2.462755px;}
.ws22{word-spacing:2.701857px;}
.ws2b{word-spacing:2.761633px;}
.ws30{word-spacing:3.039610px;}
.ws2f{word-spacing:3.093408px;}
.ws49{word-spacing:3.154912px;}
.ws19{word-spacing:3.180062px;}
.ws1c{word-spacing:3.239838px;}
.ws3{word-spacing:3.299613px;}
.ws27{word-spacing:3.419164px;}
.ws4a{word-spacing:3.482185px;}
.ws39{word-spacing:3.613094px;}
.ws40{word-spacing:3.633129px;}
.ws2e{word-spacing:3.792787px;}
.ws32{word-spacing:3.900384px;}
.ws21{word-spacing:4.016920px;}
.ws46{word-spacing:4.398549px;}
.ws1f{word-spacing:4.554901px;}
.ws1e{word-spacing:4.614676px;}
.ws24{word-spacing:4.913554px;}
.ws12{word-spacing:5.366056px;}
.ws0{word-spacing:5.412522px;}
.ws45{word-spacing:5.445823px;}
.ws1d{word-spacing:6.109066px;}
.ws11{word-spacing:6.524457px;}
.ws13{word-spacing:6.527496px;}
.ws14{word-spacing:6.534814px;}
.ws29{word-spacing:6.945925px;}
.ws28{word-spacing:6.981477px;}
.ws4d{word-spacing:7.147642px;}
.ws1b{word-spacing:7.842559px;}
.ws3b{word-spacing:8.064007px;}
.ws2{word-spacing:8.260988px;}
.ws18{word-spacing:8.559866px;}
.ws2d{word-spacing:9.441619px;}
.ws1a{word-spacing:9.456500px;}
.ws35{word-spacing:9.765826px;}
.ws3e{word-spacing:9.896736px;}
.ws2c{word-spacing:11.010666px;}
.ws3f{word-spacing:11.074918px;}
.ws4c{word-spacing:11.991283px;}
.ws42{word-spacing:12.907647px;}
.ws34{word-spacing:13.431284px;}
.ws37{word-spacing:21.726805px;}
.ws48{word-spacing:21.744342px;}
.ws3d{word-spacing:21.747755px;}
.ws38{word-spacing:21.753755px;}
.ws44{word-spacing:21.767554px;}
.ws3c{word-spacing:21.774168px;}
.ws1{word-spacing:23.312640px;}
.ws41{word-spacing:23.367292px;}
.ws47{word-spacing:24.021838px;}
.ws36{word-spacing:28.996388px;}
._2{margin-left:-37.085030px;}
._1c{margin-left:-34.401017px;}
._1f{margin-left:-32.229802px;}
._17{margin-left:-29.947576px;}
._14{margin-left:-28.273859px;}
._19{margin-left:-27.031603px;}
._1e{margin-left:-25.890166px;}
._16{margin-left:-23.252708px;}
._18{margin-left:-21.902171px;}
._15{margin-left:-6.575316px;}
._f{margin-left:-5.021150px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.613941px;}
._4{width:1.673717px;}
._1{width:2.685602px;}
._a{width:4.133071px;}
._5{width:7.809776px;}
._8{width:14.625320px;}
._9{width:17.330624px;}
._12{width:19.960751px;}
._10{width:20.981236px;}
._d{width:24.332007px;}
._11{width:25.341517px;}
._b{width:26.480591px;}
._c{width:27.496776px;}
._1d{width:29.135448px;}
._e{width:30.564099px;}
._1a{width:32.727300px;}
._1b{width:34.036392px;}
._13{width:37.539077px;}
._6{width:40.845522px;}
._7{width:70.419956px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs8{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:94.272000px;}
.y27{bottom:162.937500px;}
.y26{bottom:185.089500px;}
.y25{bottom:196.246500px;}
.y24{bottom:212.685000px;}
.y23{bottom:234.837000px;}
.y22{bottom:255.574500px;}
.y21{bottom:273.507000px;}
.y20{bottom:291.439500px;}
.y1f{bottom:309.372000px;}
.y1e{bottom:327.306000px;}
.y1d{bottom:345.238500px;}
.y1c{bottom:363.171000px;}
.y1b{bottom:381.103500px;}
.y1a{bottom:399.036000px;}
.y19{bottom:416.970000px;}
.y18{bottom:434.902500px;}
.y17{bottom:452.835000px;}
.y40{bottom:462.867000px;}
.y16{bottom:470.767500px;}
.y3f{bottom:483.192000px;}
.y15{bottom:488.700000px;}
.y3e{bottom:503.515500px;}
.y14{bottom:506.632500px;}
.y13{bottom:524.566500px;}
.y3d{bottom:537.288000px;}
.y12{bottom:542.499000px;}
.y3c{bottom:557.611500px;}
.y11{bottom:560.431500px;}
.y10{bottom:578.364000px;}
.y3b{bottom:591.385500px;}
.yf{bottom:596.296500px;}
.y3a{bottom:611.709000px;}
.ye{bottom:614.229000px;}
.y39{bottom:632.032500px;}
.yd{bottom:632.163000px;}
.yc{bottom:650.095500px;}
.y38{bottom:665.806500px;}
.yb{bottom:668.028000px;}
.ya{bottom:685.960500px;}
.y37{bottom:686.130000px;}
.y9{bottom:703.893000px;}
.y36{bottom:706.453500px;}
.y8{bottom:721.825500px;}
.y35{bottom:740.227500px;}
.y7{bottom:754.782000px;}
.y34{bottom:760.551000px;}
.y6{bottom:775.143000px;}
.y33{bottom:780.874500px;}
.y5{bottom:806.046000px;}
.y32{bottom:814.648500px;}
.y4{bottom:823.978500px;}
.y31{bottom:834.972000px;}
.y3{bottom:851.251500px;}
.y30{bottom:855.295500px;}
.y2f{bottom:889.069500px;}
.y2e{bottom:909.393000px;}
.y2{bottom:929.595000px;}
.y2d{bottom:929.716500px;}
.y2c{bottom:963.490500px;}
.y1{bottom:975.061500px;}
.y2b{bottom:983.814000px;}
.y2a{bottom:1004.137500px;}
.y29{bottom:1040.665500px;}
.h9{height:25.249382px;}
.ha{height:40.348800px;}
.h3{height:41.723369px;}
.h4{height:44.831700px;}
.hb{height:46.704624px;}
.hc{height:49.090950px;}
.h8{height:49.975733px;}
.h7{height:49.981733px;}
.h2{height:59.693702px;}
.hd{height:60.254040px;}
.h1{height:83.109043px;}
.h5{height:126.275700px;}
.h6{height:127.677024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:146.178000px;}
.x1{left:162.699000px;}
.xb{left:164.583000px;}
.xe{left:171.633000px;}
.x5{left:187.087500px;}
.x4{left:209.503500px;}
.x6{left:289.303500px;}
.x7{left:292.002000px;}
.x8{left:330.712500px;}
.x9{left:404.083500px;}
.x2{left:406.042500px;}
.x3{left:437.299500px;}
.xd{left:466.087500px;}
.xa{left:473.187000px;}
@media print{
.v8{vertical-align:-20.314667pt;}
.v6{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:19.285333pt;}
.v9{vertical-align:20.314667pt;}
.v2{vertical-align:23.136000pt;}
.v1{vertical-align:33.322667pt;}
.v3{vertical-align:36.448000pt;}
.v4{vertical-align:72.394667pt;}
.v5{vertical-align:111.365333pt;}
.ls21{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000055pt;}
.ls15{letter-spacing:0.000681pt;}
.lsd{letter-spacing:0.001509pt;}
.ls3{letter-spacing:0.002827pt;}
.ls9{letter-spacing:0.005388pt;}
.ls4{letter-spacing:2.567485pt;}
.lse{letter-spacing:2.652911pt;}
.ls1e{letter-spacing:2.656473pt;}
.ls1f{letter-spacing:2.657386pt;}
.ls11{letter-spacing:2.658245pt;}
.ls1d{letter-spacing:2.660861pt;}
.ls20{letter-spacing:2.661806pt;}
.ls5{letter-spacing:2.948564pt;}
.ls0{letter-spacing:2.953897pt;}
.ls14{letter-spacing:4.807919pt;}
.ls1a{letter-spacing:5.786938pt;}
.ls2{letter-spacing:5.862650pt;}
.lsf{letter-spacing:6.642178pt;}
.ls12{letter-spacing:6.647511pt;}
.ls18{letter-spacing:11.803145pt;}
.lsb{letter-spacing:11.810694pt;}
.ls6{letter-spacing:14.756984pt;}
.ls7{letter-spacing:14.757388pt;}
.ls8{letter-spacing:14.757812pt;}
.lsc{letter-spacing:14.764662pt;}
.ls13{letter-spacing:18.324619pt;}
.ls22{letter-spacing:19.393427pt;}
.ls19{letter-spacing:20.184027pt;}
.ls1b{letter-spacing:21.415485pt;}
.ls10{letter-spacing:21.461605pt;}
.ls16{letter-spacing:23.148818pt;}
.ls1c{letter-spacing:23.538151pt;}
.ls1{letter-spacing:33.365812pt;}
.lsa{letter-spacing:289.170079pt;}
.ws5{word-spacing:-34.611401pt;}
.wsd{word-spacing:-25.738045pt;}
.ws8{word-spacing:-24.252339pt;}
.ws15{word-spacing:-22.824605pt;}
.wsa{word-spacing:-19.872517pt;}
.ws16{word-spacing:-19.869939pt;}
.ws9{word-spacing:-19.867883pt;}
.ws7{word-spacing:-14.760588pt;}
.ws31{word-spacing:-13.652838pt;}
.ws4{word-spacing:-6.854306pt;}
.wsc{word-spacing:-2.964870pt;}
.wsb{word-spacing:-2.954293pt;}
.wse{word-spacing:-0.786381pt;}
.ws23{word-spacing:-0.573846pt;}
.ws20{word-spacing:-0.308176pt;}
.ws43{word-spacing:-0.058182pt;}
.ws17{word-spacing:-0.053134pt;}
.ws33{word-spacing:0.000000pt;}
.ws6{word-spacing:0.010627pt;}
.ws2a{word-spacing:0.063761pt;}
.ws4b{word-spacing:0.651637pt;}
.wsf{word-spacing:0.903984pt;}
.ws10{word-spacing:0.913903pt;}
.ws3a{word-spacing:1.408001pt;}
.ws25{word-spacing:1.976580pt;}
.ws26{word-spacing:2.189115pt;}
.ws22{word-spacing:2.401651pt;}
.ws2b{word-spacing:2.454785pt;}
.ws30{word-spacing:2.701875pt;}
.ws2f{word-spacing:2.749696pt;}
.ws49{word-spacing:2.804366pt;}
.ws19{word-spacing:2.826722pt;}
.ws1c{word-spacing:2.879856pt;}
.ws3{word-spacing:2.932989pt;}
.ws27{word-spacing:3.039257pt;}
.ws4a{word-spacing:3.095275pt;}
.ws39{word-spacing:3.211639pt;}
.ws40{word-spacing:3.229448pt;}
.ws2e{word-spacing:3.371366pt;}
.ws32{word-spacing:3.467008pt;}
.ws21{word-spacing:3.570596pt;}
.ws46{word-spacing:3.909821pt;}
.ws1f{word-spacing:4.048801pt;}
.ws1e{word-spacing:4.101935pt;}
.ws24{word-spacing:4.367604pt;}
.ws12{word-spacing:4.769827pt;}
.ws0{word-spacing:4.811130pt;}
.ws45{word-spacing:4.840731pt;}
.ws1d{word-spacing:5.430281pt;}
.ws11{word-spacing:5.799517pt;}
.ws13{word-spacing:5.802218pt;}
.ws14{word-spacing:5.808724pt;}
.ws29{word-spacing:6.174155pt;}
.ws28{word-spacing:6.205757pt;}
.ws4d{word-spacing:6.353460pt;}
.ws1b{word-spacing:6.971163pt;}
.ws3b{word-spacing:7.168006pt;}
.ws2{word-spacing:7.343100pt;}
.ws18{word-spacing:7.608770pt;}
.ws2d{word-spacing:8.392550pt;}
.ws1a{word-spacing:8.405778pt;}
.ws35{word-spacing:8.680735pt;}
.ws3e{word-spacing:8.797098pt;}
.ws2c{word-spacing:9.787258pt;}
.ws3f{word-spacing:9.844372pt;}
.ws4c{word-spacing:10.658918pt;}
.ws42{word-spacing:11.473464pt;}
.ws34{word-spacing:11.938919pt;}
.ws37{word-spacing:19.312715pt;}
.ws48{word-spacing:19.328304pt;}
.ws3d{word-spacing:19.331338pt;}
.ws38{word-spacing:19.336671pt;}
.ws44{word-spacing:19.348936pt;}
.ws3c{word-spacing:19.354816pt;}
.ws1{word-spacing:20.722347pt;}
.ws41{word-spacing:20.770926pt;}
.ws47{word-spacing:21.352745pt;}
.ws36{word-spacing:25.774567pt;}
._2{margin-left:-32.964471pt;}
._1c{margin-left:-30.578682pt;}
._1f{margin-left:-28.648713pt;}
._17{margin-left:-26.620067pt;}
._14{margin-left:-25.132319pt;}
._19{margin-left:-24.028092pt;}
._1e{margin-left:-23.013481pt;}
._16{margin-left:-20.669074pt;}
._18{margin-left:-19.468596pt;}
._15{margin-left:-5.844725pt;}
._f{margin-left:-4.463245pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.434614pt;}
._4{width:1.487748pt;}
._1{width:2.387202pt;}
._a{width:3.673841pt;}
._5{width:6.942023pt;}
._8{width:13.000285pt;}
._9{width:15.404999pt;}
._12{width:17.742890pt;}
._10{width:18.649987pt;}
._d{width:21.628451pt;}
._11{width:22.525793pt;}
._b{width:23.538303pt;}
._c{width:24.441579pt;}
._1d{width:25.898176pt;}
._e{width:27.168088pt;}
._1a{width:29.090933pt;}
._1b{width:30.254571pt;}
._13{width:33.368068pt;}
._6{width:36.307130pt;}
._7{width:62.595517pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs8{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:83.797333pt;}
.y27{bottom:144.833333pt;}
.y26{bottom:164.524000pt;}
.y25{bottom:174.441333pt;}
.y24{bottom:189.053333pt;}
.y23{bottom:208.744000pt;}
.y22{bottom:227.177333pt;}
.y21{bottom:243.117333pt;}
.y20{bottom:259.057333pt;}
.y1f{bottom:274.997333pt;}
.y1e{bottom:290.938667pt;}
.y1d{bottom:306.878667pt;}
.y1c{bottom:322.818667pt;}
.y1b{bottom:338.758667pt;}
.y1a{bottom:354.698667pt;}
.y19{bottom:370.640000pt;}
.y18{bottom:386.580000pt;}
.y17{bottom:402.520000pt;}
.y40{bottom:411.437333pt;}
.y16{bottom:418.460000pt;}
.y3f{bottom:429.504000pt;}
.y15{bottom:434.400000pt;}
.y3e{bottom:447.569333pt;}
.y14{bottom:450.340000pt;}
.y13{bottom:466.281333pt;}
.y3d{bottom:477.589333pt;}
.y12{bottom:482.221333pt;}
.y3c{bottom:495.654667pt;}
.y11{bottom:498.161333pt;}
.y10{bottom:514.101333pt;}
.y3b{bottom:525.676000pt;}
.yf{bottom:530.041333pt;}
.y3a{bottom:543.741333pt;}
.ye{bottom:545.981333pt;}
.y39{bottom:561.806667pt;}
.yd{bottom:561.922667pt;}
.yc{bottom:577.862667pt;}
.y38{bottom:591.828000pt;}
.yb{bottom:593.802667pt;}
.ya{bottom:609.742667pt;}
.y37{bottom:609.893333pt;}
.y9{bottom:625.682667pt;}
.y36{bottom:627.958667pt;}
.y8{bottom:641.622667pt;}
.y35{bottom:657.980000pt;}
.y7{bottom:670.917333pt;}
.y34{bottom:676.045333pt;}
.y6{bottom:689.016000pt;}
.y33{bottom:694.110667pt;}
.y5{bottom:716.485333pt;}
.y32{bottom:724.132000pt;}
.y4{bottom:732.425333pt;}
.y31{bottom:742.197333pt;}
.y3{bottom:756.668000pt;}
.y30{bottom:760.262667pt;}
.y2f{bottom:790.284000pt;}
.y2e{bottom:808.349333pt;}
.y2{bottom:826.306667pt;}
.y2d{bottom:826.414667pt;}
.y2c{bottom:856.436000pt;}
.y1{bottom:866.721333pt;}
.y2b{bottom:874.501333pt;}
.y2a{bottom:892.566667pt;}
.y29{bottom:925.036000pt;}
.h9{height:22.443895pt;}
.ha{height:35.865600pt;}
.h3{height:37.087439pt;}
.h4{height:39.850400pt;}
.hb{height:41.515221pt;}
.hc{height:43.636400pt;}
.h8{height:44.422874pt;}
.h7{height:44.428207pt;}
.h2{height:53.061069pt;}
.hd{height:53.559147pt;}
.h1{height:73.874705pt;}
.h5{height:112.245067pt;}
.h6{height:113.490688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:129.936000pt;}
.x1{left:144.621333pt;}
.xb{left:146.296000pt;}
.xe{left:152.562667pt;}
.x5{left:166.300000pt;}
.x4{left:186.225333pt;}
.x6{left:257.158667pt;}
.x7{left:259.557333pt;}
.x8{left:293.966667pt;}
.x9{left:359.185333pt;}
.x2{left:360.926667pt;}
.x3{left:388.710667pt;}
.xd{left:414.300000pt;}
.xa{left:420.610667pt;}
}




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