
    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_63bb1b73b32944daef47c663.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_ac8c5256397b7c59ff03567b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_fe03a4d2efb4497987aa3b95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_2dd81d3aa84a33f0e250185b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_bf607ab32415a3def34b1fb6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_100763b24eadf1bb6d6449b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.m14{transform:matrix(0.236228,0.000000,-0.078735,0.237278,0,0);-ms-transform:matrix(0.236228,0.000000,-0.078735,0.237278,0,0);-webkit-transform:matrix(0.236228,0.000000,-0.078735,0.237278,0,0);}
.m18{transform:matrix(0.236228,0.000000,-0.078734,0.237278,0,0);-ms-transform:matrix(0.236228,0.000000,-0.078734,0.237278,0,0);-webkit-transform:matrix(0.236228,0.000000,-0.078734,0.237278,0,0);}
.mf{transform:matrix(0.236694,0.000000,-0.078890,0.237226,0,0);-ms-transform:matrix(0.236694,0.000000,-0.078890,0.237226,0,0);-webkit-transform:matrix(0.236694,0.000000,-0.078890,0.237226,0,0);}
.m10{transform:matrix(0.236694,0.000000,-0.078890,0.237226,0,0);-ms-transform:matrix(0.236694,0.000000,-0.078890,0.237226,0,0);-webkit-transform:matrix(0.236694,0.000000,-0.078890,0.237226,0,0);}
.m6{transform:matrix(0.240342,0.000000,-0.080106,0.236819,0,0);-ms-transform:matrix(0.240342,0.000000,-0.080106,0.236819,0,0);-webkit-transform:matrix(0.240342,0.000000,-0.080106,0.236819,0,0);}
.m8{transform:matrix(0.240397,0.000000,-0.080124,0.236813,0,0);-ms-transform:matrix(0.240397,0.000000,-0.080124,0.236813,0,0);-webkit-transform:matrix(0.240397,0.000000,-0.080124,0.236813,0,0);}
.m2{transform:matrix(0.240475,0.000000,-0.080150,0.236804,0,0);-ms-transform:matrix(0.240475,0.000000,-0.080150,0.236804,0,0);-webkit-transform:matrix(0.240475,0.000000,-0.080150,0.236804,0,0);}
.m4{transform:matrix(0.240574,0.000000,-0.080183,0.236793,0,0);-ms-transform:matrix(0.240574,0.000000,-0.080183,0.236793,0,0);-webkit-transform:matrix(0.240574,0.000000,-0.080183,0.236793,0,0);}
.m9{transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247906,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249439,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);}
.mc{transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252112,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253784,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.306000px;}
.lsb{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.216000px;}
.ls5{letter-spacing:7.824899px;}
.ls6{letter-spacing:21.197312px;}
.ls8{letter-spacing:28.366047px;}
.ls4{letter-spacing:30.168874px;}
.ls7{letter-spacing:47.752027px;}
.ls17{letter-spacing:61.016904px;}
.ls16{letter-spacing:65.022066px;}
.ls15{letter-spacing:75.455264px;}
.ls11{letter-spacing:112.936392px;}
.ls12{letter-spacing:122.720239px;}
.ls13{letter-spacing:125.004792px;}
.ls14{letter-spacing:126.196733px;}
.ls0{letter-spacing:128.542473px;}
.lsd{letter-spacing:132.802072px;}
.ls1{letter-spacing:140.111748px;}
.ls2{letter-spacing:140.474297px;}
.lse{letter-spacing:142.486591px;}
.lsf{letter-spacing:144.373830px;}
.ls10{letter-spacing:145.565771px;}
.ls3{letter-spacing:152.900280px;}
.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;}
}
.ws4{word-spacing:-75.588774px;}
.ws5{word-spacing:-65.155576px;}
.ws6{word-spacing:-61.150415px;}
.ws0{word-spacing:-54.000000px;}
.ws3{word-spacing:-0.324000px;}
.ws2{word-spacing:-0.133510px;}
.ws1{word-spacing:-0.108000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-191.443583px;}
._6{margin-left:-176.398515px;}
._7{margin-left:-166.324792px;}
._1{margin-left:-2.271024px;}
._3{margin-left:-1.076976px;}
._0{width:1.044000px;}
._2{width:874.504128px;}
._4{width:1962.552000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(45,14,228);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,38,229);}
.fs0{font-size:54.000000px;}
.fs4{font-size:76.368641px;}
.fsa{font-size:78.244247px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs3{font-size:131.908116px;}
.fs9{font-size:133.510327px;}
.fse{font-size:138.980458px;}
.fsd{font-size:138.980500px;}
.fs7{font-size:139.250133px;}
.fs8{font-size:139.253694px;}
.fs5{font-size:139.258986px;}
.fs6{font-size:139.265505px;}
.fsc{font-size:142.275555px;}
.fsb{font-size:142.275594px;}
.y5{bottom:-263.502450px;}
.y4{bottom:-247.482450px;}
.y3{bottom:-231.462450px;}
.y2{bottom:-215.082450px;}
.y1{bottom:-199.026450px;}
.y0{bottom:0.000000px;}
.y1a{bottom:2.161648px;}
.y13{bottom:3.155758px;}
.ye{bottom:3.155772px;}
.y24{bottom:3.155775px;}
.yb{bottom:3.155787px;}
.y29{bottom:9.985705px;}
.y2c{bottom:9.985707px;}
.y16{bottom:9.985708px;}
.y1b{bottom:10.910145px;}
.yf{bottom:11.702601px;}
.y10{bottom:11.702619px;}
.y1f{bottom:11.702621px;}
.ya{bottom:11.702624px;}
.y26{bottom:17.477550px;}
.y32{bottom:25.793550px;}
.y1c{bottom:26.060235px;}
.y2f{bottom:55.817550px;}
.y25{bottom:61.112550px;}
.y21{bottom:91.142550px;}
.y31{bottom:126.752550px;}
.y2d{bottom:146.372550px;}
.y23{bottom:162.077550px;}
.y2e{bottom:176.537550px;}
.y30{bottom:199.727550px;}
.y22{bottom:235.052550px;}
.y2b{bottom:244.487550px;}
.y2a{bottom:246.752550px;}
.y33{bottom:260.552550px;}
.y27{bottom:261.167550px;}
.yd{bottom:339.872550px;}
.y11{bottom:340.892550px;}
.y6{bottom:350.867550px;}
.y15{bottom:388.787550px;}
.y8{bottom:391.487550px;}
.y19{bottom:435.692550px;}
.y1d{bottom:436.367550px;}
.y14{bottom:463.382550px;}
.y12{bottom:463.547550px;}
.y1e{bottom:501.347550px;}
.yc{bottom:507.557550px;}
.y9{bottom:510.167550px;}
.y17{bottom:546.092550px;}
.y7{bottom:555.752550px;}
.y20{bottom:561.602550px;}
.y28{bottom:598.367550px;}
.y18{bottom:600.797550px;}
.hd{height:36.936489px;}
.h6{height:39.562500px;}
.hf{height:44.623361px;}
.h8{height:53.025492px;}
.h3{height:53.709961px;}
.h2{height:54.000000px;}
.h10{height:54.327792px;}
.h7{height:91.588545px;}
.he{height:92.701018px;}
.h14{height:96.499126px;}
.h13{height:96.499156px;}
.hb{height:96.686372px;}
.hc{height:96.688844px;}
.h9{height:96.692519px;}
.ha{height:96.697045px;}
.h12{height:98.787031px;}
.h11{height:98.787058px;}
.h4{height:107.419922px;}
.h5{height:107.563148px;}
.h1{height:642.750000px;}
.h0{height:642.946050px;}
.w6{width:29.249778px;}
.wc{width:31.874508px;}
.w7{width:33.187500px;}
.wd{width:34.312471px;}
.we{width:36.936192px;}
.wb{width:39.562500px;}
.w9{width:40.687500px;}
.w10{width:42.000000px;}
.wf{width:44.624605px;}
.w8{width:47.062325px;}
.wa{width:49.687500px;}
.w4{width:99.374675px;}
.w2{width:100.686994px;}
.w5{width:104.437500px;}
.w3{width:107.061762px;}
.w1{width:918.000000px;}
.w0{width:918.366000px;}
.x0{left:0.000000px;}
.x6{left:1.484269px;}
.x11{left:3.575832px;}
.x22{left:9.873000px;}
.x8{left:13.327246px;}
.x10{left:20.914225px;}
.x17{left:22.470813px;}
.x26{left:24.463843px;}
.x18{left:25.515072px;}
.x7{left:35.715031px;}
.xd{left:38.720890px;}
.x4{left:51.003000px;}
.x9{left:55.040177px;}
.xb{left:58.097882px;}
.x21{left:76.173000px;}
.x20{left:92.013000px;}
.xc{left:103.563000px;}
.x1{left:141.078000px;}
.x3{left:211.203000px;}
.x5{left:231.783000px;}
.x25{left:233.913000px;}
.x1f{left:300.528000px;}
.x1d{left:322.713000px;}
.x1c{left:331.953000px;}
.xf{left:344.508000px;}
.x1e{left:366.843000px;}
.x14{left:385.653000px;}
.x16{left:396.348000px;}
.x2{left:437.223000px;}
.x1a{left:443.898000px;}
.x1b{left:468.798000px;}
.x15{left:510.753000px;}
.x19{left:513.348000px;}
.x23{left:519.708000px;}
.x13{left:538.173000px;}
.x2b{left:555.618000px;}
.x2c{left:570.813000px;}
.x12{left:571.878000px;}
.xa{left:610.128000px;}
.x24{left:742.533000px;}
.xe{left:763.488000px;}
.x2a{left:798.798000px;}
.x28{left:820.953000px;}
.x27{left:830.178000px;}
.x29{left:865.068000px;}
@media print{
.v1{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.272000pt;}
.lsb{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls5{letter-spacing:6.955466pt;}
.ls6{letter-spacing:18.842055pt;}
.ls8{letter-spacing:25.214264pt;}
.ls4{letter-spacing:26.816777pt;}
.ls7{letter-spacing:42.446246pt;}
.ls17{letter-spacing:54.237248pt;}
.ls16{letter-spacing:57.797392pt;}
.ls15{letter-spacing:67.071346pt;}
.ls11{letter-spacing:100.387904pt;}
.ls12{letter-spacing:109.084657pt;}
.ls13{letter-spacing:111.115371pt;}
.ls14{letter-spacing:112.174874pt;}
.ls0{letter-spacing:114.259976pt;}
.lsd{letter-spacing:118.046286pt;}
.ls1{letter-spacing:124.543776pt;}
.ls2{letter-spacing:124.866041pt;}
.lse{letter-spacing:126.654747pt;}
.lsf{letter-spacing:128.332294pt;}
.ls10{letter-spacing:129.391797pt;}
.ls3{letter-spacing:135.911360pt;}
.ws4{word-spacing:-67.190022pt;}
.ws5{word-spacing:-57.916068pt;}
.ws6{word-spacing:-54.355924pt;}
.ws0{word-spacing:-48.000000pt;}
.ws3{word-spacing:-0.288000pt;}
.ws2{word-spacing:-0.118676pt;}
.ws1{word-spacing:-0.096000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-170.172074pt;}
._6{margin-left:-156.798680pt;}
._7{margin-left:-147.844260pt;}
._1{margin-left:-2.018688pt;}
._3{margin-left:-0.957312pt;}
._0{width:0.928000pt;}
._2{width:777.337003pt;}
._4{width:1744.490667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:67.883236pt;}
.fsa{font-size:69.550441pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs3{font-size:117.251659pt;}
.fs9{font-size:118.675846pt;}
.fse{font-size:123.538185pt;}
.fsd{font-size:123.538223pt;}
.fs7{font-size:123.777896pt;}
.fs8{font-size:123.781061pt;}
.fs5{font-size:123.785766pt;}
.fs6{font-size:123.791560pt;}
.fsc{font-size:126.467160pt;}
.fsb{font-size:126.467195pt;}
.y5{bottom:-234.224400pt;}
.y4{bottom:-219.984400pt;}
.y3{bottom:-205.744400pt;}
.y2{bottom:-191.184400pt;}
.y1{bottom:-176.912400pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.921465pt;}
.y13{bottom:2.805119pt;}
.ye{bottom:2.805130pt;}
.y24{bottom:2.805133pt;}
.yb{bottom:2.805144pt;}
.y29{bottom:8.876182pt;}
.y2c{bottom:8.876184pt;}
.y16{bottom:8.876185pt;}
.y1b{bottom:9.697907pt;}
.yf{bottom:10.402312pt;}
.y10{bottom:10.402328pt;}
.y1f{bottom:10.402330pt;}
.ya{bottom:10.402332pt;}
.y26{bottom:15.535600pt;}
.y32{bottom:22.927600pt;}
.y1c{bottom:23.164654pt;}
.y2f{bottom:49.615600pt;}
.y25{bottom:54.322267pt;}
.y21{bottom:81.015600pt;}
.y31{bottom:112.668933pt;}
.y2d{bottom:130.108933pt;}
.y23{bottom:144.068933pt;}
.y2e{bottom:156.922267pt;}
.y30{bottom:177.535600pt;}
.y22{bottom:208.935600pt;}
.y2b{bottom:217.322267pt;}
.y2a{bottom:219.335600pt;}
.y33{bottom:231.602267pt;}
.y27{bottom:232.148933pt;}
.yd{bottom:302.108933pt;}
.y11{bottom:303.015600pt;}
.y6{bottom:311.882267pt;}
.y15{bottom:345.588933pt;}
.y8{bottom:347.988933pt;}
.y19{bottom:387.282267pt;}
.y1d{bottom:387.882267pt;}
.y14{bottom:411.895600pt;}
.y12{bottom:412.042267pt;}
.y1e{bottom:445.642267pt;}
.yc{bottom:451.162267pt;}
.y9{bottom:453.482267pt;}
.y17{bottom:485.415600pt;}
.y7{bottom:494.002267pt;}
.y20{bottom:499.202267pt;}
.y28{bottom:531.882267pt;}
.y18{bottom:534.042267pt;}
.hd{height:32.832435pt;}
.h6{height:35.166667pt;}
.hf{height:39.665210pt;}
.h8{height:47.133771pt;}
.h3{height:47.742188pt;}
.h2{height:48.000000pt;}
.h10{height:48.291371pt;}
.h7{height:81.412040pt;}
.he{height:82.400905pt;}
.h14{height:85.777001pt;}
.h13{height:85.777028pt;}
.hb{height:85.943442pt;}
.hc{height:85.945639pt;}
.h9{height:85.948906pt;}
.ha{height:85.952929pt;}
.h12{height:87.810694pt;}
.h11{height:87.810718pt;}
.h4{height:95.484375pt;}
.h5{height:95.611688pt;}
.h1{height:571.333333pt;}
.h0{height:571.507600pt;}
.w6{width:25.999802pt;}
.wc{width:28.332896pt;}
.w7{width:29.500000pt;}
.wd{width:30.499974pt;}
.we{width:32.832171pt;}
.wb{width:35.166667pt;}
.w9{width:36.166667pt;}
.w10{width:37.333333pt;}
.wf{width:39.666316pt;}
.w8{width:41.833178pt;}
.wa{width:44.166667pt;}
.w4{width:88.333044pt;}
.w2{width:89.499550pt;}
.w5{width:92.833333pt;}
.w3{width:95.166011pt;}
.w1{width:816.000000pt;}
.w0{width:816.325333pt;}
.x0{left:0.000000pt;}
.x6{left:1.319350pt;}
.x11{left:3.178517pt;}
.x22{left:8.776000pt;}
.x8{left:11.846441pt;}
.x10{left:18.590422pt;}
.x17{left:19.974056pt;}
.x26{left:21.745638pt;}
.x18{left:22.680064pt;}
.x7{left:31.746694pt;}
.xd{left:34.418569pt;}
.x4{left:45.336000pt;}
.x9{left:48.924602pt;}
.xb{left:51.642562pt;}
.x21{left:67.709333pt;}
.x20{left:81.789333pt;}
.xc{left:92.056000pt;}
.x1{left:125.402667pt;}
.x3{left:187.736000pt;}
.x5{left:206.029333pt;}
.x25{left:207.922667pt;}
.x1f{left:267.136000pt;}
.x1d{left:286.856000pt;}
.x1c{left:295.069333pt;}
.xf{left:306.229333pt;}
.x1e{left:326.082667pt;}
.x14{left:342.802667pt;}
.x16{left:352.309333pt;}
.x2{left:388.642667pt;}
.x1a{left:394.576000pt;}
.x1b{left:416.709333pt;}
.x15{left:454.002667pt;}
.x19{left:456.309333pt;}
.x23{left:461.962667pt;}
.x13{left:478.376000pt;}
.x2b{left:493.882667pt;}
.x2c{left:507.389333pt;}
.x12{left:508.336000pt;}
.xa{left:542.336000pt;}
.x24{left:660.029333pt;}
.xe{left:678.656000pt;}
.x2a{left:710.042667pt;}
.x28{left:729.736000pt;}
.x27{left:737.936000pt;}
.x29{left:768.949333pt;}
}




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