
    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_2707f4b5a1989c922c7e7f59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_4c4211dc0b91ff889dd25248.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_fcf37295957f0e40f19db5bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721191;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_934862ec286217fe42e2a67c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.840000;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_4c4211dc0b91ff889dd25248.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_8a10a480d0f8763ca18d137a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.721191;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_c755d1f76dc77cadfd18a472.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715000;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_7a4adad5fd9149b970ad4483.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_23a402e0972bf06a8f73e967.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.067000;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_f33041d90ffbf28f141c8e37.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.731445;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_8a10a480d0f8763ca18d137a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.721191;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_4d29f3bcae5086bc114995bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.858000;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_14856e46836c4196e4d27612.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_95f57dd79d0a5ede84a4662b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878000;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_ee2411247dc6211286f30482.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;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);}
.m2{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.lsb{letter-spacing:-2.109000px;}
.ls5{letter-spacing:-0.228000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000120px;}
.ls2{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.857385px;}
.ls1{letter-spacing:1.362630px;}
.ls9{letter-spacing:2.850090px;}
.ls7{letter-spacing:3.990000px;}
.ls6{letter-spacing:4.620000px;}
.ls4{letter-spacing:7.200000px;}
.lsa{letter-spacing:63.504000px;}
.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:-54.000000px;}
.ws23{word-spacing:-10.944000px;}
.ws2{word-spacing:-10.215000px;}
.ws14{word-spacing:-3.990000px;}
.wsa{word-spacing:-3.591000px;}
.ws4e{word-spacing:-3.420000px;}
.ws37{word-spacing:-2.736000px;}
.wsc{word-spacing:-2.508000px;}
.wsb{word-spacing:-2.280000px;}
.ws36{word-spacing:-2.166000px;}
.ws9{word-spacing:-2.052000px;}
.ws49{word-spacing:-1.995000px;}
.ws2b{word-spacing:-1.539000px;}
.ws1{word-spacing:-1.417135px;}
.ws3e{word-spacing:-1.368000px;}
.ws21{word-spacing:-1.362630px;}
.ws2d{word-spacing:-1.197000px;}
.wsd{word-spacing:-1.140000px;}
.ws0{word-spacing:-0.891680px;}
.ws4{word-spacing:-0.857385px;}
.ws4c{word-spacing:-0.855000px;}
.ws4f{word-spacing:-0.624000px;}
.ws19{word-spacing:-0.570000px;}
.ws22{word-spacing:-0.288000px;}
.ws41{word-spacing:-0.228000px;}
.ws25{word-spacing:-0.210000px;}
.ws43{word-spacing:-0.114000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.228000px;}
.ws20{word-spacing:0.399000px;}
.ws40{word-spacing:0.456000px;}
.ws3b{word-spacing:0.741000px;}
.ws3a{word-spacing:0.855000px;}
.ws33{word-spacing:0.912000px;}
.wsf{word-spacing:1.083000px;}
.ws39{word-spacing:1.140000px;}
.ws3c{word-spacing:1.197000px;}
.ws31{word-spacing:1.254000px;}
.ws13{word-spacing:1.425000px;}
.ws4d{word-spacing:1.539000px;}
.ws3d{word-spacing:1.596000px;}
.ws16{word-spacing:1.710000px;}
.ws4b{word-spacing:1.824000px;}
.ws27{word-spacing:1.881000px;}
.wse{word-spacing:2.280000px;}
.ws1f{word-spacing:2.451000px;}
.ws1e{word-spacing:2.565000px;}
.ws44{word-spacing:2.793000px;}
.ws18{word-spacing:2.850000px;}
.ws11{word-spacing:2.964000px;}
.ws1d{word-spacing:3.135000px;}
.ws2c{word-spacing:3.192000px;}
.ws2e{word-spacing:3.420000px;}
.ws35{word-spacing:3.876000px;}
.ws1a{word-spacing:3.990000px;}
.ws3f{word-spacing:4.104000px;}
.ws10{word-spacing:4.332000px;}
.ws28{word-spacing:4.446000px;}
.ws8{word-spacing:4.503000px;}
.ws26{word-spacing:4.560000px;}
.ws5{word-spacing:4.674000px;}
.ws50{word-spacing:4.704000px;}
.ws34{word-spacing:4.731000px;}
.ws48{word-spacing:4.959000px;}
.ws17{word-spacing:5.130000px;}
.ws15{word-spacing:5.301000px;}
.ws47{word-spacing:6.042000px;}
.ws29{word-spacing:6.441000px;}
.ws45{word-spacing:6.897000px;}
.ws46{word-spacing:7.068000px;}
.ws7{word-spacing:7.125000px;}
.ws2a{word-spacing:7.467000px;}
.ws42{word-spacing:7.638000px;}
.ws6{word-spacing:7.695000px;}
.ws1c{word-spacing:8.037000px;}
.ws1b{word-spacing:8.265000px;}
.ws2f{word-spacing:8.322000px;}
.ws30{word-spacing:8.607000px;}
.ws4a{word-spacing:9.861000px;}
.ws32{word-spacing:10.716000px;}
.ws38{word-spacing:13.281000px;}
._7{margin-left:-10.847100px;}
._4{margin-left:-6.270000px;}
._5{margin-left:-5.244000px;}
._2{margin-left:-3.950100px;}
._3{margin-left:-2.684700px;}
._1{margin-left:-1.083000px;}
._0{width:1.476300px;}
._6{width:2.650500px;}
.fc5{color:rgb(119,124,122);}
.fc4{color:rgb(102,109,107);}
.fc3{color:transparent;}
.fc6{color:rgb(235,153,153);}
.fc2{color:rgb(59,72,71);}
.fc1{color:rgb(50,50,56);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:33.231000px;}
.fs1{font-size:34.295400px;}
.fs7{font-size:39.900000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs8{font-size:45.600000px;}
.fsa{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs4{font-size:54.505200px;}
.fs3{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:4.928550px;}
.y5b{bottom:45.928950px;}
.y23{bottom:102.047250px;}
.y5a{bottom:102.147300px;}
.y59{bottom:116.547300px;}
.y22{bottom:119.147250px;}
.y58{bottom:130.947300px;}
.y21{bottom:136.247250px;}
.y20{bottom:153.347250px;}
.y1f{bottom:170.447250px;}
.y53{bottom:182.098650px;}
.y1e{bottom:187.547250px;}
.y52{bottom:199.198650px;}
.y1d{bottom:204.647250px;}
.y51{bottom:216.298650px;}
.y1c{bottom:221.747250px;}
.y50{bottom:233.398650px;}
.y1b{bottom:238.847250px;}
.y4f{bottom:250.498650px;}
.y1a{bottom:255.947250px;}
.y57{bottom:263.223000px;}
.y19{bottom:273.047250px;}
.y56{bottom:281.136000px;}
.y4e{bottom:284.698650px;}
.y4d{bottom:301.798650px;}
.y18{bottom:307.247250px;}
.y4c{bottom:318.898650px;}
.y17{bottom:324.347250px;}
.y4b{bottom:335.998650px;}
.y16{bottom:341.447250px;}
.y4a{bottom:353.098650px;}
.y15{bottom:358.547250px;}
.y49{bottom:370.198650px;}
.y14{bottom:375.647250px;}
.y48{bottom:387.298650px;}
.y47{bottom:404.398650px;}
.y13{bottom:409.847250px;}
.y46{bottom:421.498650px;}
.y12{bottom:426.947250px;}
.y45{bottom:438.598650px;}
.y11{bottom:444.047250px;}
.y55{bottom:455.698650px;}
.y10{bottom:461.147250px;}
.y44{bottom:472.798650px;}
.yf{bottom:478.247250px;}
.y43{bottom:489.898650px;}
.ye{bottom:495.347250px;}
.y42{bottom:506.998650px;}
.yd{bottom:512.447250px;}
.y41{bottom:524.098650px;}
.yc{bottom:529.547250px;}
.y40{bottom:541.198650px;}
.yb{bottom:546.647250px;}
.y3f{bottom:558.298650px;}
.y3e{bottom:575.398650px;}
.ya{bottom:580.847250px;}
.y3d{bottom:592.498650px;}
.y30{bottom:596.786100px;}
.y9{bottom:597.947250px;}
.y54{bottom:609.598650px;}
.y8{bottom:615.047250px;}
.y3c{bottom:626.698650px;}
.y2f{bottom:630.986100px;}
.y7{bottom:632.147250px;}
.y3b{bottom:643.798650px;}
.y2e{bottom:648.086100px;}
.y6{bottom:649.247250px;}
.y3a{bottom:660.898650px;}
.y2d{bottom:665.150100px;}
.y5{bottom:666.347250px;}
.y39{bottom:677.998650px;}
.y2c{bottom:682.285500px;}
.y4{bottom:683.447250px;}
.y38{bottom:695.098650px;}
.y37{bottom:712.198650px;}
.y36{bottom:729.298650px;}
.y3{bottom:737.647650px;}
.y35{bottom:746.398650px;}
.y34{bottom:763.498650px;}
.y27{bottom:775.565400px;}
.y26{bottom:789.065400px;}
.y24{bottom:807.873000px;}
.y2b{bottom:813.185400px;}
.y33{bottom:821.409450px;}
.y2a{bottom:826.685400px;}
.y2{bottom:839.762250px;}
.y31{bottom:839.850900px;}
.y32{bottom:839.976450px;}
.y29{bottom:840.185400px;}
.y1{bottom:851.181750px;}
.y28{bottom:855.181650px;}
.h3{height:24.733548px;}
.h9{height:31.500000px;}
.h8{height:32.040000px;}
.hc{height:34.020000px;}
.h11{height:34.176000px;}
.h12{height:37.800000px;}
.hf{height:37.848000px;}
.hd{height:38.577600px;}
.h10{height:38.880000px;}
.h7{height:39.308682px;}
.h5{height:40.584000px;}
.ha{height:40.586400px;}
.he{height:42.641472px;}
.h2{height:42.720000px;}
.hb{height:46.170000px;}
.h4{height:59.400000px;}
.h6{height:62.715000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:88.548000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:25.873350px;}
.x2{left:84.876600px;}
.x7{left:94.727100px;}
.x6{left:98.873100px;}
.xc{left:100.984350px;}
.xf{left:106.675350px;}
.x4{left:182.133450px;}
.x8{left:220.973100px;}
.x5{left:241.068000px;}
.x9{left:267.020100px;}
.x3{left:667.559100px;}
.xe{left:950.982000px;}
.xd{left:1005.138000px;}
.xb{left:1122.314550px;}
.x1{left:1215.361500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.lsb{letter-spacing:-1.874667pt;}
.ls5{letter-spacing:-0.202667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000107pt;}
.ls2{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.762120pt;}
.ls1{letter-spacing:1.211227pt;}
.ls9{letter-spacing:2.533413pt;}
.ls7{letter-spacing:3.546667pt;}
.ls6{letter-spacing:4.106667pt;}
.ls4{letter-spacing:6.400000pt;}
.lsa{letter-spacing:56.448000pt;}
.ws24{word-spacing:-48.000000pt;}
.ws23{word-spacing:-9.728000pt;}
.ws2{word-spacing:-9.080000pt;}
.ws14{word-spacing:-3.546667pt;}
.wsa{word-spacing:-3.192000pt;}
.ws4e{word-spacing:-3.040000pt;}
.ws37{word-spacing:-2.432000pt;}
.wsc{word-spacing:-2.229333pt;}
.wsb{word-spacing:-2.026667pt;}
.ws36{word-spacing:-1.925333pt;}
.ws9{word-spacing:-1.824000pt;}
.ws49{word-spacing:-1.773333pt;}
.ws2b{word-spacing:-1.368000pt;}
.ws1{word-spacing:-1.259676pt;}
.ws3e{word-spacing:-1.216000pt;}
.ws21{word-spacing:-1.211227pt;}
.ws2d{word-spacing:-1.064000pt;}
.wsd{word-spacing:-1.013333pt;}
.ws0{word-spacing:-0.792605pt;}
.ws4{word-spacing:-0.762120pt;}
.ws4c{word-spacing:-0.760000pt;}
.ws4f{word-spacing:-0.554667pt;}
.ws19{word-spacing:-0.506667pt;}
.ws22{word-spacing:-0.256000pt;}
.ws41{word-spacing:-0.202667pt;}
.ws25{word-spacing:-0.186667pt;}
.ws43{word-spacing:-0.101333pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.202667pt;}
.ws20{word-spacing:0.354667pt;}
.ws40{word-spacing:0.405333pt;}
.ws3b{word-spacing:0.658667pt;}
.ws3a{word-spacing:0.760000pt;}
.ws33{word-spacing:0.810667pt;}
.wsf{word-spacing:0.962667pt;}
.ws39{word-spacing:1.013333pt;}
.ws3c{word-spacing:1.064000pt;}
.ws31{word-spacing:1.114667pt;}
.ws13{word-spacing:1.266667pt;}
.ws4d{word-spacing:1.368000pt;}
.ws3d{word-spacing:1.418667pt;}
.ws16{word-spacing:1.520000pt;}
.ws4b{word-spacing:1.621333pt;}
.ws27{word-spacing:1.672000pt;}
.wse{word-spacing:2.026667pt;}
.ws1f{word-spacing:2.178667pt;}
.ws1e{word-spacing:2.280000pt;}
.ws44{word-spacing:2.482667pt;}
.ws18{word-spacing:2.533333pt;}
.ws11{word-spacing:2.634667pt;}
.ws1d{word-spacing:2.786667pt;}
.ws2c{word-spacing:2.837333pt;}
.ws2e{word-spacing:3.040000pt;}
.ws35{word-spacing:3.445333pt;}
.ws1a{word-spacing:3.546667pt;}
.ws3f{word-spacing:3.648000pt;}
.ws10{word-spacing:3.850667pt;}
.ws28{word-spacing:3.952000pt;}
.ws8{word-spacing:4.002667pt;}
.ws26{word-spacing:4.053333pt;}
.ws5{word-spacing:4.154667pt;}
.ws50{word-spacing:4.181333pt;}
.ws34{word-spacing:4.205333pt;}
.ws48{word-spacing:4.408000pt;}
.ws17{word-spacing:4.560000pt;}
.ws15{word-spacing:4.712000pt;}
.ws47{word-spacing:5.370667pt;}
.ws29{word-spacing:5.725333pt;}
.ws45{word-spacing:6.130667pt;}
.ws46{word-spacing:6.282667pt;}
.ws7{word-spacing:6.333333pt;}
.ws2a{word-spacing:6.637333pt;}
.ws42{word-spacing:6.789333pt;}
.ws6{word-spacing:6.840000pt;}
.ws1c{word-spacing:7.144000pt;}
.ws1b{word-spacing:7.346667pt;}
.ws2f{word-spacing:7.397333pt;}
.ws30{word-spacing:7.650667pt;}
.ws4a{word-spacing:8.765333pt;}
.ws32{word-spacing:9.525333pt;}
.ws38{word-spacing:11.805333pt;}
._7{margin-left:-9.641867pt;}
._4{margin-left:-5.573333pt;}
._5{margin-left:-4.661333pt;}
._2{margin-left:-3.511200pt;}
._3{margin-left:-2.386400pt;}
._1{margin-left:-0.962667pt;}
._0{width:1.312267pt;}
._6{width:2.356000pt;}
.fs9{font-size:29.538667pt;}
.fs1{font-size:30.484800pt;}
.fs7{font-size:35.466667pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs8{font-size:40.533333pt;}
.fsa{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs4{font-size:48.449067pt;}
.fs3{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:4.380933pt;}
.y5b{bottom:40.825733pt;}
.y23{bottom:90.708667pt;}
.y5a{bottom:90.797600pt;}
.y59{bottom:103.597600pt;}
.y22{bottom:105.908667pt;}
.y58{bottom:116.397600pt;}
.y21{bottom:121.108667pt;}
.y20{bottom:136.308667pt;}
.y1f{bottom:151.508667pt;}
.y53{bottom:161.865467pt;}
.y1e{bottom:166.708667pt;}
.y52{bottom:177.065467pt;}
.y1d{bottom:181.908667pt;}
.y51{bottom:192.265467pt;}
.y1c{bottom:197.108667pt;}
.y50{bottom:207.465467pt;}
.y1b{bottom:212.308667pt;}
.y4f{bottom:222.665467pt;}
.y1a{bottom:227.508667pt;}
.y57{bottom:233.976000pt;}
.y19{bottom:242.708667pt;}
.y56{bottom:249.898667pt;}
.y4e{bottom:253.065467pt;}
.y4d{bottom:268.265467pt;}
.y18{bottom:273.108667pt;}
.y4c{bottom:283.465467pt;}
.y17{bottom:288.308667pt;}
.y4b{bottom:298.665467pt;}
.y16{bottom:303.508667pt;}
.y4a{bottom:313.865467pt;}
.y15{bottom:318.708667pt;}
.y49{bottom:329.065467pt;}
.y14{bottom:333.908667pt;}
.y48{bottom:344.265467pt;}
.y47{bottom:359.465467pt;}
.y13{bottom:364.308667pt;}
.y46{bottom:374.665467pt;}
.y12{bottom:379.508667pt;}
.y45{bottom:389.865467pt;}
.y11{bottom:394.708667pt;}
.y55{bottom:405.065467pt;}
.y10{bottom:409.908667pt;}
.y44{bottom:420.265467pt;}
.yf{bottom:425.108667pt;}
.y43{bottom:435.465467pt;}
.ye{bottom:440.308667pt;}
.y42{bottom:450.665467pt;}
.yd{bottom:455.508667pt;}
.y41{bottom:465.865467pt;}
.yc{bottom:470.708667pt;}
.y40{bottom:481.065467pt;}
.yb{bottom:485.908667pt;}
.y3f{bottom:496.265467pt;}
.y3e{bottom:511.465467pt;}
.ya{bottom:516.308667pt;}
.y3d{bottom:526.665467pt;}
.y30{bottom:530.476533pt;}
.y9{bottom:531.508667pt;}
.y54{bottom:541.865467pt;}
.y8{bottom:546.708667pt;}
.y3c{bottom:557.065467pt;}
.y2f{bottom:560.876533pt;}
.y7{bottom:561.908667pt;}
.y3b{bottom:572.265467pt;}
.y2e{bottom:576.076533pt;}
.y6{bottom:577.108667pt;}
.y3a{bottom:587.465467pt;}
.y2d{bottom:591.244533pt;}
.y5{bottom:592.308667pt;}
.y39{bottom:602.665467pt;}
.y2c{bottom:606.476000pt;}
.y4{bottom:607.508667pt;}
.y38{bottom:617.865467pt;}
.y37{bottom:633.065467pt;}
.y36{bottom:648.265467pt;}
.y3{bottom:655.686800pt;}
.y35{bottom:663.465467pt;}
.y34{bottom:678.665467pt;}
.y27{bottom:689.391467pt;}
.y26{bottom:701.391467pt;}
.y24{bottom:718.109333pt;}
.y2b{bottom:722.831467pt;}
.y33{bottom:730.141733pt;}
.y2a{bottom:734.831467pt;}
.y2{bottom:746.455333pt;}
.y31{bottom:746.534133pt;}
.y32{bottom:746.645733pt;}
.y29{bottom:746.831467pt;}
.y1{bottom:756.606000pt;}
.y28{bottom:760.161467pt;}
.h3{height:21.985376pt;}
.h9{height:28.000000pt;}
.h8{height:28.480000pt;}
.hc{height:30.240000pt;}
.h11{height:30.378667pt;}
.h12{height:33.600000pt;}
.hf{height:33.642667pt;}
.hd{height:34.291200pt;}
.h10{height:34.560000pt;}
.h7{height:34.941051pt;}
.h5{height:36.074667pt;}
.ha{height:36.076800pt;}
.he{height:37.903531pt;}
.h2{height:37.973333pt;}
.hb{height:41.040000pt;}
.h4{height:52.800000pt;}
.h6{height:55.746667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:78.709333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:22.998533pt;}
.x2{left:75.445867pt;}
.x7{left:84.201867pt;}
.x6{left:87.887200pt;}
.xc{left:89.763867pt;}
.xf{left:94.822533pt;}
.x4{left:161.896400pt;}
.x8{left:196.420533pt;}
.x5{left:214.282667pt;}
.x9{left:237.351200pt;}
.x3{left:593.385867pt;}
.xe{left:845.317333pt;}
.xd{left:893.456000pt;}
.xb{left:997.612933pt;}
.x1{left:1080.321333pt;}
}




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