
    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_9a2203ef4f383338895f619a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_462515ca215e5ff3233c8110.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.735000;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_f461bf2b3127a32800056177.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_56d3c59534170772be9fe1ac.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d098293730b86bdcf9b931e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_57472768717350779125028e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.684000;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_0bea7c6b2fbeb7f8030058bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_bff6ca47107f2adfd2ecf3e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_e7d7092515ee7b865fc178dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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_613c51c213ad989b8de2fd33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.702000;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_001e2fde8bfb5d94affbd613.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.820000;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_7d48993cb07aa70048f01d47.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_3435c10715ed9382275b4c23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_47c135c71f461207a5295791.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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);}
.m1{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:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:44.898000px;}
.v4{vertical-align:111.930000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002706px;}
.lsb{letter-spacing:0.002712px;}
.lsa{letter-spacing:0.003239px;}
.ls13{letter-spacing:0.004335px;}
.ls3{letter-spacing:0.004344px;}
.lsf{letter-spacing:1.816322px;}
.ls12{letter-spacing:1.822322px;}
.ls18{letter-spacing:2.342156px;}
.ls16{letter-spacing:2.348156px;}
.lse{letter-spacing:3.638154px;}
.ls2{letter-spacing:3.771239px;}
.ls10{letter-spacing:3.777239px;}
.ls19{letter-spacing:4.687597px;}
.ls17{letter-spacing:10.910712px;}
.lsc{letter-spacing:14.540712px;}
.lsd{letter-spacing:14.543412px;}
.ls14{letter-spacing:16.252571px;}
.ls8{letter-spacing:18.176706px;}
.ls9{letter-spacing:18.179412px;}
.ls11{letter-spacing:18.182706px;}
.ls7{letter-spacing:26.991801px;}
.ls1{letter-spacing:32.723973px;}
.ls0{letter-spacing:32.727300px;}
.ls15{letter-spacing:32.729973px;}
.ls6{letter-spacing:33.471801px;}
.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;}
}
.ws2b{word-spacing:-65.454600px;}
.ws1d{word-spacing:-42.637126px;}
.ws7{word-spacing:-38.937826px;}
.ws2c{word-spacing:-31.771663px;}
.ws31{word-spacing:-24.440748px;}
.ws11{word-spacing:-21.979655px;}
.ws1c{word-spacing:-18.183288px;}
.ws12{word-spacing:-16.743287px;}
.ws1e{word-spacing:-14.111859px;}
.ws2a{word-spacing:-12.183902px;}
.ws37{word-spacing:-7.252370px;}
.ws46{word-spacing:-3.652367px;}
.ws42{word-spacing:-2.212365px;}
.ws39{word-spacing:-1.754183px;}
.ws1a{word-spacing:-0.706910px;}
.ws27{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.086077px;}
.ws2f{word-spacing:-0.065455px;}
.ws26{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws2e{word-spacing:-0.017549px;}
.ws1f{word-spacing:0.000000px;}
.ws49{word-spacing:0.078546px;}
.ws3{word-spacing:0.789038px;}
.ws14{word-spacing:0.929455px;}
.wsa{word-spacing:1.267243px;}
.ws6{word-spacing:1.376300px;}
.ws9{word-spacing:1.386794px;}
.ws41{word-spacing:1.976729px;}
.ws5{word-spacing:2.104101px;}
.ws44{word-spacing:2.696730px;}
.wsc{word-spacing:3.299613px;}
.ws15{word-spacing:3.613094px;}
.ws32{word-spacing:3.626605px;}
.ws3f{word-spacing:3.628261px;}
.ws3b{word-spacing:3.632493px;}
.ws2d{word-spacing:3.634209px;}
.ws30{word-spacing:3.635765px;}
.ws3e{word-spacing:3.638448px;}
.ws52{word-spacing:3.640200px;}
.ws40{word-spacing:3.678549px;}
.ws4{word-spacing:4.076696px;}
.wsb{word-spacing:4.554901px;}
.ws43{word-spacing:4.660368px;}
.ws3c{word-spacing:4.856731px;}
.ws1b{word-spacing:5.707641px;}
.ws24{word-spacing:5.838550px;}
.ws19{word-spacing:6.165823px;}
.ws34{word-spacing:6.231278px;}
.ws17{word-spacing:6.493096px;}
.ws33{word-spacing:6.875859px;}
.ws36{word-spacing:7.061412px;}
.ws51{word-spacing:7.213097px;}
.ws29{word-spacing:7.605825px;}
.ws45{word-spacing:8.522189px;}
.ws3a{word-spacing:8.914917px;}
.ws4b{word-spacing:9.569463px;}
.ws35{word-spacing:10.697412px;}
.ws38{word-spacing:10.702046px;}
.ws3d{word-spacing:11.860374px;}
.ws4f{word-spacing:12.580374px;}
.ws4d{word-spacing:13.104011px;}
.ws10{word-spacing:14.544012px;}
.ws22{word-spacing:14.546124px;}
.ws47{word-spacing:16.690923px;}
.ws4a{word-spacing:20.094562px;}
.ws25{word-spacing:20.173137px;}
.ws2{word-spacing:23.312640px;}
.ws48{word-spacing:23.367292px;}
.ws1{word-spacing:23.384371px;}
.wsf{word-spacing:25.003657px;}
.ws21{word-spacing:26.827469px;}
.ws23{word-spacing:27.545000px;}
.ws18{word-spacing:27.949114px;}
.ws16{word-spacing:28.276387px;}
.ws4c{word-spacing:28.865479px;}
.ws28{word-spacing:29.585479px;}
.ws0{word-spacing:31.091012px;}
.ws50{word-spacing:31.614572px;}
.ws4e{word-spacing:32.072754px;}
.ws20{word-spacing:32.192873px;}
.wse{word-spacing:60.480050px;}
.ws13{word-spacing:96.750773px;}
._18{margin-left:-38.160032px;}
._16{margin-left:-34.560029px;}
._13{margin-left:-32.727300px;}
._15{margin-left:-30.894571px;}
._17{margin-left:-10.930918px;}
._1{margin-left:-8.056807px;}
._2{margin-left:-5.881958px;}
._a{margin-left:-4.223483px;}
._0{margin-left:-2.788895px;}
._3{margin-left:-1.156321px;}
._6{width:1.673717px;}
._4{width:2.788895px;}
._23{width:4.013932px;}
._25{width:14.517157px;}
._28{width:16.036377px;}
._9{width:18.889116px;}
._7{width:21.802879px;}
._20{width:22.818002px;}
._8{width:26.150146px;}
._5{width:29.409622px;}
._11{width:31.701669px;}
._27{width:32.727300px;}
._14{width:34.167301px;}
._1d{width:35.508308px;}
._21{width:36.560768px;}
._1b{width:37.826261px;}
._26{width:43.067655px;}
._f{width:54.132108px;}
._c{width:60.545505px;}
._19{width:62.181870px;}
._24{width:65.451306px;}
._e{width:66.894601px;}
._1f{width:80.697600px;}
._10{width:94.909170px;}
._1e{width:96.836850px;}
._22{width:193.314191px;}
._12{width:963.210482px;}
._1c{width:1459.563170px;}
._1a{width:1585.506776px;}
._d{width:1807.559625px;}
._b{width:2156.840845px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.168000px;}
.y22{bottom:114.517500px;}
.y63{bottom:123.088500px;}
.y21{bottom:134.841000px;}
.y20{bottom:155.164500px;}
.y62{bottom:155.913000px;}
.y61{bottom:176.236500px;}
.y43{bottom:186.039000px;}
.y1f{bottom:188.938500px;}
.y60{bottom:209.062500px;}
.y1e{bottom:209.262000px;}
.y42{bottom:219.813000px;}
.y5f{bottom:229.386000px;}
.y1d{bottom:243.034500px;}
.y41{bottom:253.587000px;}
.y5e{bottom:262.210500px;}
.y1c{bottom:263.359500px;}
.y40{bottom:273.910500px;}
.y5d{bottom:282.534000px;}
.y1b{bottom:297.132000px;}
.y3f{bottom:304.801500px;}
.y5c{bottom:315.360000px;}
.y1a{bottom:317.455500px;}
.y5b{bottom:335.683500px;}
.y3e{bottom:348.621000px;}
.y19{bottom:353.985000px;}
.y5a{bottom:368.508000px;}
.y3d{bottom:368.944500px;}
.y59{bottom:388.833000px;}
.y3c{bottom:402.718500px;}
.y18{bottom:405.543000px;}
.y58{bottom:421.657500px;}
.y3b{bottom:423.042000px;}
.y57{bottom:441.981000px;}
.y17{bottom:442.230000px;}
.y3a{bottom:456.816000px;}
.y16{bottom:462.553500px;}
.y56{bottom:474.807000px;}
.y15{bottom:482.877000px;}
.y39{bottom:487.707000px;}
.y55{bottom:495.130500px;}
.y14{bottom:519.565500px;}
.y38{bottom:524.833500px;}
.y54{bottom:531.658500px;}
.y13{bottom:539.889000px;}
.y12{bottom:560.212500px;}
.y37{bottom:576.391500px;}
.y53{bottom:582.769500px;}
.y11{bottom:596.899500px;}
.y36{bottom:606.429000px;}
.y52{bottom:614.172000px;}
.y10{bottom:617.223000px;}
.y35{bottom:626.752500px;}
.yf{bottom:637.548000px;}
.y51{bottom:646.998000px;}
.y34{bottom:647.077500px;}
.ye{bottom:674.235000px;}
.y50{bottom:678.400500px;}
.y33{bottom:684.756000px;}
.y32{bottom:697.737000px;}
.y4f{bottom:698.724000px;}
.yd{bottom:710.922000px;}
.y4e{bottom:719.047500px;}
.y31{bottom:748.398000px;}
.y4d{bottom:755.575500px;}
.yc{bottom:762.480000px;}
.y30{bottom:778.603500px;}
.yb{bottom:780.414000px;}
.ya{bottom:798.346500px;}
.y2f{bottom:800.898000px;}
.y4c{bottom:806.686500px;}
.y9{bottom:816.279000px;}
.y4b{bottom:827.011500px;}
.y2e{bottom:833.376000px;}
.y8{bottom:834.211500px;}
.y7{bottom:852.144000px;}
.y4a{bottom:859.836000px;}
.y2d{bottom:864.267000px;}
.y6{bottom:870.076500px;}
.y49{bottom:880.159500px;}
.y5{bottom:897.349500px;}
.y2c{bottom:908.086500px;}
.y48{bottom:911.562000px;}
.y2b{bottom:928.410000px;}
.y47{bottom:942.454500px;}
.y4{bottom:957.760500px;}
.y2a{bottom:962.184000px;}
.y29{bottom:982.507500px;}
.y46{bottom:985.827000px;}
.y3{bottom:994.449000px;}
.y28{bottom:1016.281500px;}
.y45{bottom:1018.651500px;}
.y27{bottom:1036.605000px;}
.y44{bottom:1038.975000px;}
.y2{bottom:1039.915500px;}
.y26{bottom:1070.379000px;}
.y1{bottom:1072.792500px;}
.y25{bottom:1101.270000px;}
.y24{bottom:1138.396500px;}
.h4{height:41.723369px;}
.h5{height:44.831700px;}
.h7{height:45.687311px;}
.ha{height:46.145493px;}
.h8{height:49.090950px;}
.h9{height:50.211840px;}
.h3{height:51.216077px;}
.h6{height:60.254040px;}
.h2{height:72.511265px;}
.hb{height:93.988950px;}
.hc{height:114.548184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x11{left:116.182500px;}
.xb{left:127.999500px;}
.x9{left:132.546000px;}
.x12{left:141.636000px;}
.x1{left:147.808500px;}
.x7{left:148.909500px;}
.x6{left:171.325500px;}
.xe{left:335.386500px;}
.xc{left:356.857500px;}
.xd{left:358.134000px;}
.x3{left:371.611500px;}
.x10{left:375.613500px;}
.x4{left:388.050000px;}
.xf{left:398.404500px;}
.x2{left:403.065000px;}
.x5{left:413.578500px;}
.xa{left:442.366500px;}
@media print{
.v2{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:39.909333pt;}
.v4{vertical-align:99.493333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002405pt;}
.lsb{letter-spacing:0.002411pt;}
.lsa{letter-spacing:0.002879pt;}
.ls13{letter-spacing:0.003854pt;}
.ls3{letter-spacing:0.003861pt;}
.lsf{letter-spacing:1.614508pt;}
.ls12{letter-spacing:1.619841pt;}
.ls18{letter-spacing:2.081916pt;}
.ls16{letter-spacing:2.087250pt;}
.lse{letter-spacing:3.233914pt;}
.ls2{letter-spacing:3.352213pt;}
.ls10{letter-spacing:3.357546pt;}
.ls19{letter-spacing:4.166753pt;}
.ls17{letter-spacing:9.698411pt;}
.lsc{letter-spacing:12.925077pt;}
.lsd{letter-spacing:12.927477pt;}
.ls14{letter-spacing:14.446730pt;}
.ls8{letter-spacing:16.157072pt;}
.ls9{letter-spacing:16.159477pt;}
.ls11{letter-spacing:16.162405pt;}
.ls7{letter-spacing:23.992712pt;}
.ls1{letter-spacing:29.087976pt;}
.ls0{letter-spacing:29.090933pt;}
.ls15{letter-spacing:29.093309pt;}
.ls6{letter-spacing:29.752712pt;}
.ws2b{word-spacing:-58.181867pt;}
.ws1d{word-spacing:-37.899668pt;}
.ws7{word-spacing:-34.611401pt;}
.ws2c{word-spacing:-28.241478pt;}
.ws31{word-spacing:-21.725109pt;}
.ws11{word-spacing:-19.537471pt;}
.ws1c{word-spacing:-16.162923pt;}
.ws12{word-spacing:-14.882921pt;}
.ws1e{word-spacing:-12.543875pt;}
.ws2a{word-spacing:-10.830135pt;}
.ws37{word-spacing:-6.446551pt;}
.ws46{word-spacing:-3.246548pt;}
.ws42{word-spacing:-1.966547pt;}
.ws39{word-spacing:-1.559274pt;}
.ws1a{word-spacing:-0.628364pt;}
.ws27{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.076513pt;}
.ws2f{word-spacing:-0.058182pt;}
.ws26{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws2e{word-spacing:-0.015599pt;}
.ws1f{word-spacing:0.000000pt;}
.ws49{word-spacing:0.069818pt;}
.ws3{word-spacing:0.701367pt;}
.ws14{word-spacing:0.826183pt;}
.wsa{word-spacing:1.126438pt;}
.ws6{word-spacing:1.223378pt;}
.ws9{word-spacing:1.232706pt;}
.ws41{word-spacing:1.757092pt;}
.ws5{word-spacing:1.870312pt;}
.ws44{word-spacing:2.397093pt;}
.wsc{word-spacing:2.932989pt;}
.ws15{word-spacing:3.211639pt;}
.ws32{word-spacing:3.223648pt;}
.ws3f{word-spacing:3.225121pt;}
.ws3b{word-spacing:3.228883pt;}
.ws2d{word-spacing:3.230408pt;}
.ws30{word-spacing:3.231791pt;}
.ws3e{word-spacing:3.234176pt;}
.ws52{word-spacing:3.235733pt;}
.ws40{word-spacing:3.269821pt;}
.ws4{word-spacing:3.623730pt;}
.wsb{word-spacing:4.048801pt;}
.ws43{word-spacing:4.142549pt;}
.ws3c{word-spacing:4.317095pt;}
.ws1b{word-spacing:5.073459pt;}
.ws24{word-spacing:5.189823pt;}
.ws19{word-spacing:5.480732pt;}
.ws34{word-spacing:5.538914pt;}
.ws17{word-spacing:5.771641pt;}
.ws33{word-spacing:6.111875pt;}
.ws36{word-spacing:6.276811pt;}
.ws51{word-spacing:6.411642pt;}
.ws29{word-spacing:6.760733pt;}
.ws45{word-spacing:7.575279pt;}
.ws3a{word-spacing:7.924370pt;}
.ws4b{word-spacing:8.506189pt;}
.ws35{word-spacing:9.508811pt;}
.ws38{word-spacing:9.512930pt;}
.ws3d{word-spacing:10.542554pt;}
.ws4f{word-spacing:11.182555pt;}
.ws4d{word-spacing:11.648010pt;}
.ws10{word-spacing:12.928011pt;}
.ws22{word-spacing:12.929888pt;}
.ws47{word-spacing:14.836376pt;}
.ws4a{word-spacing:17.861833pt;}
.ws25{word-spacing:17.931677pt;}
.ws2{word-spacing:20.722347pt;}
.ws48{word-spacing:20.770926pt;}
.ws1{word-spacing:20.786108pt;}
.wsf{word-spacing:22.225473pt;}
.ws21{word-spacing:23.846639pt;}
.ws23{word-spacing:24.484444pt;}
.ws18{word-spacing:24.843657pt;}
.ws16{word-spacing:25.134566pt;}
.ws4c{word-spacing:25.658203pt;}
.ws28{word-spacing:26.298204pt;}
.ws0{word-spacing:27.636455pt;}
.ws50{word-spacing:28.101842pt;}
.ws4e{word-spacing:28.509115pt;}
.ws20{word-spacing:28.615887pt;}
.wse{word-spacing:53.760045pt;}
.ws13{word-spacing:86.000687pt;}
._18{margin-left:-33.920028pt;}
._16{margin-left:-30.720026pt;}
._13{margin-left:-29.090933pt;}
._15{margin-left:-27.461841pt;}
._17{margin-left:-9.716372pt;}
._1{margin-left:-7.161606pt;}
._2{margin-left:-5.228407pt;}
._a{margin-left:-3.754207pt;}
._0{margin-left:-2.479018pt;}
._3{margin-left:-1.027841pt;}
._6{width:1.487748pt;}
._4{width:2.479018pt;}
._23{width:3.567939pt;}
._25{width:12.904140pt;}
._28{width:14.254557pt;}
._9{width:16.790325pt;}
._7{width:19.380337pt;}
._20{width:20.282669pt;}
._8{width:23.244574pt;}
._5{width:26.141886pt;}
._11{width:28.179261pt;}
._27{width:29.090933pt;}
._14{width:30.370934pt;}
._1d{width:31.562940pt;}
._21{width:32.498460pt;}
._1b{width:33.623343pt;}
._26{width:38.282360pt;}
._f{width:48.117429pt;}
._c{width:53.818227pt;}
._19{width:55.272773pt;}
._24{width:58.178939pt;}
._e{width:59.461868pt;}
._1f{width:71.731200pt;}
._10{width:84.363707pt;}
._1e{width:86.077200pt;}
._22{width:171.834837pt;}
._12{width:856.187095pt;}
._1c{width:1297.389484pt;}
._1a{width:1409.339356pt;}
._d{width:1606.719667pt;}
._b{width:1917.191862pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.149333pt;}
.y22{bottom:101.793333pt;}
.y63{bottom:109.412000pt;}
.y21{bottom:119.858667pt;}
.y20{bottom:137.924000pt;}
.y62{bottom:138.589333pt;}
.y61{bottom:156.654667pt;}
.y43{bottom:165.368000pt;}
.y1f{bottom:167.945333pt;}
.y60{bottom:185.833333pt;}
.y1e{bottom:186.010667pt;}
.y42{bottom:195.389333pt;}
.y5f{bottom:203.898667pt;}
.y1d{bottom:216.030667pt;}
.y41{bottom:225.410667pt;}
.y5e{bottom:233.076000pt;}
.y1c{bottom:234.097333pt;}
.y40{bottom:243.476000pt;}
.y5d{bottom:251.141333pt;}
.y1b{bottom:264.117333pt;}
.y3f{bottom:270.934667pt;}
.y5c{bottom:280.320000pt;}
.y1a{bottom:282.182667pt;}
.y5b{bottom:298.385333pt;}
.y3e{bottom:309.885333pt;}
.y19{bottom:314.653333pt;}
.y5a{bottom:327.562667pt;}
.y3d{bottom:327.950667pt;}
.y59{bottom:345.629333pt;}
.y3c{bottom:357.972000pt;}
.y18{bottom:360.482667pt;}
.y58{bottom:374.806667pt;}
.y3b{bottom:376.037333pt;}
.y57{bottom:392.872000pt;}
.y17{bottom:393.093333pt;}
.y3a{bottom:406.058667pt;}
.y16{bottom:411.158667pt;}
.y56{bottom:422.050667pt;}
.y15{bottom:429.224000pt;}
.y39{bottom:433.517333pt;}
.y55{bottom:440.116000pt;}
.y14{bottom:461.836000pt;}
.y38{bottom:466.518667pt;}
.y54{bottom:472.585333pt;}
.y13{bottom:479.901333pt;}
.y12{bottom:497.966667pt;}
.y37{bottom:512.348000pt;}
.y53{bottom:518.017333pt;}
.y11{bottom:530.577333pt;}
.y36{bottom:539.048000pt;}
.y52{bottom:545.930667pt;}
.y10{bottom:548.642667pt;}
.y35{bottom:557.113333pt;}
.yf{bottom:566.709333pt;}
.y51{bottom:575.109333pt;}
.y34{bottom:575.180000pt;}
.ye{bottom:599.320000pt;}
.y50{bottom:603.022667pt;}
.y33{bottom:608.672000pt;}
.y32{bottom:620.210667pt;}
.y4f{bottom:621.088000pt;}
.yd{bottom:631.930667pt;}
.y4e{bottom:639.153333pt;}
.y31{bottom:665.242667pt;}
.y4d{bottom:671.622667pt;}
.yc{bottom:677.760000pt;}
.y30{bottom:692.092000pt;}
.yb{bottom:693.701333pt;}
.ya{bottom:709.641333pt;}
.y2f{bottom:711.909333pt;}
.y4c{bottom:717.054667pt;}
.y9{bottom:725.581333pt;}
.y4b{bottom:735.121333pt;}
.y2e{bottom:740.778667pt;}
.y8{bottom:741.521333pt;}
.y7{bottom:757.461333pt;}
.y4a{bottom:764.298667pt;}
.y2d{bottom:768.237333pt;}
.y6{bottom:773.401333pt;}
.y49{bottom:782.364000pt;}
.y5{bottom:797.644000pt;}
.y2c{bottom:807.188000pt;}
.y48{bottom:810.277333pt;}
.y2b{bottom:825.253333pt;}
.y47{bottom:837.737333pt;}
.y4{bottom:851.342667pt;}
.y2a{bottom:855.274667pt;}
.y29{bottom:873.340000pt;}
.y46{bottom:876.290667pt;}
.y3{bottom:883.954667pt;}
.y28{bottom:903.361333pt;}
.y45{bottom:905.468000pt;}
.y27{bottom:921.426667pt;}
.y44{bottom:923.533333pt;}
.y2{bottom:924.369333pt;}
.y26{bottom:951.448000pt;}
.y1{bottom:953.593333pt;}
.y25{bottom:978.906667pt;}
.y24{bottom:1011.908000pt;}
.h4{height:37.087439pt;}
.h5{height:39.850400pt;}
.h7{height:40.610943pt;}
.ha{height:41.018216pt;}
.h8{height:43.636400pt;}
.h9{height:44.632747pt;}
.h3{height:45.525402pt;}
.h6{height:53.559147pt;}
.h2{height:64.454458pt;}
.hb{height:83.545733pt;}
.hc{height:101.820608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x11{left:103.273333pt;}
.xb{left:113.777333pt;}
.x9{left:117.818667pt;}
.x12{left:125.898667pt;}
.x1{left:131.385333pt;}
.x7{left:132.364000pt;}
.x6{left:152.289333pt;}
.xe{left:298.121333pt;}
.xc{left:317.206667pt;}
.xd{left:318.341333pt;}
.x3{left:330.321333pt;}
.x10{left:333.878667pt;}
.x4{left:344.933333pt;}
.xf{left:354.137333pt;}
.x2{left:358.280000pt;}
.x5{left:367.625333pt;}
.xa{left:393.214667pt;}
}




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