
    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_6f5fa6868303a46a0ac74b09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_390d2f014431fd9949c84ec4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_8526edc4c5adac254224b870.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7cfe5464477f7607de740985.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_e7323a216a34744858967cef.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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_c305422da53292fb38508e7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766113;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_c76a708c20e3a2cf1819b7e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_6d9990ad050d3547c420f851.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_33b666b7340b317683b88a80.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_05cf3ef14922671a73e03d9e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.m9{transform:matrix(0.232904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232904,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232916,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238822,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.239187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239187,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240916,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.019699px;}
.lse{letter-spacing:0.021238px;}
.ls9{letter-spacing:0.021240px;}
.ls6{letter-spacing:0.189300px;}
.lsb{letter-spacing:1.596779px;}
.lsa{letter-spacing:2.317199px;}
.lsc{letter-spacing:3.037619px;}
.lsd{letter-spacing:14.564394px;}
.ls2{letter-spacing:34.015846px;}
.ls8{letter-spacing:104.617758px;}
.ls5{letter-spacing:118.341553px;}
.ls4{letter-spacing:118.341788px;}
.ls3{letter-spacing:190.385994px;}
.ls0{letter-spacing:1687.978639px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.399987px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.579693px;}
.ws3{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws5{word-spacing:-12.203995px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-14.973018px;}
._17{margin-left:-7.006472px;}
._18{margin-left:-5.360251px;}
._f{margin-left:-4.223840px;}
._1a{margin-left:-3.180670px;}
._8{margin-left:-2.131797px;}
._1{margin-left:-1.020301px;}
._0{width:1.003097px;}
._4{width:2.061126px;}
._5{width:3.700862px;}
._2{width:5.472746px;}
._3{width:6.613204px;}
._9{width:7.915141px;}
._6{width:9.649250px;}
._7{width:10.969912px;}
._10{width:11.977015px;}
._11{width:13.491171px;}
._a{width:14.591612px;}
._d{width:15.629790px;}
._e{width:16.793672px;}
._20{width:19.232055px;}
._b{width:20.318318px;}
._c{width:21.507016px;}
._12{width:22.528251px;}
._1c{width:24.570032px;}
._19{width:25.828946px;}
._13{width:27.834303px;}
._14{width:29.556971px;}
._1b{width:30.625708px;}
._1f{width:31.696652px;}
._15{width:32.903316px;}
._16{width:34.023886px;}
._1e{width:35.303978px;}
.fcc{color:transparent;}
.fcb{color:rgb(0,0,255);}
.fc8{color:rgb(0,32,96);}
.fc7{color:rgb(227,108,10);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fc9{color:rgb(44,62,80);}
.fc3{color:rgb(31,73,124);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs5{font-size:95.759962px;}
.y6{bottom:-11.519990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y28{bottom:3.239056px;}
.ya{bottom:3.960039px;}
.yb{bottom:30.900288px;}
.y9{bottom:48.900240px;}
.y7{bottom:52.860279px;}
.y8{bottom:54.480278px;}
.y7d{bottom:107.219957px;}
.y80{bottom:107.220257px;}
.y1f{bottom:112.979955px;}
.y7c{bottom:127.919949px;}
.y7f{bottom:127.920249px;}
.y1e{bottom:133.679947px;}
.y7b{bottom:148.619941px;}
.y7e{bottom:148.620241px;}
.y1d{bottom:154.379938px;}
.y7a{bottom:169.319932px;}
.y1c{bottom:175.079930px;}
.y79{bottom:190.019924px;}
.y1b{bottom:195.779922px;}
.y78{bottom:210.719916px;}
.y1a{bottom:216.479913px;}
.y77{bottom:231.419907px;}
.y19{bottom:237.179905px;}
.y76{bottom:252.119899px;}
.y18{bottom:257.879897px;}
.y75{bottom:272.819891px;}
.y17{bottom:278.579889px;}
.y74{bottom:293.519883px;}
.y16{bottom:299.279880px;}
.y73{bottom:314.219874px;}
.y15{bottom:319.979872px;}
.y72{bottom:334.919866px;}
.y14{bottom:340.679864px;}
.y71{bottom:355.619858px;}
.y13{bottom:361.379855px;}
.y70{bottom:376.319849px;}
.y12{bottom:382.079847px;}
.y6f{bottom:397.019841px;}
.y33{bottom:412.499835px;}
.y6e{bottom:417.719833px;}
.y4c{bottom:428.879828px;}
.y6d{bottom:438.419825px;}
.y4b{bottom:445.439822px;}
.y6c{bottom:459.119816px;}
.y4a{bottom:461.999815px;}
.y49{bottom:478.379809px;}
.y6b{bottom:479.819808px;}
.y6a{bottom:500.519800px;}
.y69{bottom:521.219792px;}
.y32{bottom:524.999790px;}
.y47{bottom:530.939788px;}
.y68{bottom:541.919783px;}
.y46{bottom:550.919780px;}
.y67{bottom:562.619775px;}
.y45{bottom:568.019773px;}
.y66{bottom:583.319767px;}
.y44{bottom:585.299766px;}
.y31{bottom:594.299762px;}
.y43{bottom:602.579759px;}
.y65{bottom:604.019758px;}
.y42{bottom:619.859752px;}
.y64{bottom:624.719750px;}
.y41{bottom:637.139745px;}
.y30{bottom:638.219745px;}
.y63{bottom:645.419742px;}
.y40{bottom:654.419738px;}
.y62{bottom:666.119734px;}
.y3f{bottom:671.519731px;}
.y2f{bottom:681.959727px;}
.y61{bottom:686.819725px;}
.y3e{bottom:688.799724px;}
.y2e{bottom:697.259721px;}
.y3d{bottom:706.079718px;}
.y60{bottom:707.519717px;}
.y2d{bottom:712.559715px;}
.y3c{bottom:723.359711px;}
.y2c{bottom:726.599709px;}
.y5f{bottom:728.219709px;}
.y3b{bottom:740.639704px;}
.y5e{bottom:748.919700px;}
.y3a{bottom:757.739697px;}
.y2b{bottom:769.079692px;}
.y5d{bottom:769.619692px;}
.y39{bottom:775.019690px;}
.y5c{bottom:790.319684px;}
.y38{bottom:792.299683px;}
.y37{bottom:809.579676px;}
.y5b{bottom:811.019676px;}
.y2a{bottom:811.559675px;}
.y36{bottom:826.859669px;}
.y29{bottom:827.219669px;}
.y5a{bottom:831.719667px;}
.y35{bottom:844.139662px;}
.y59{bottom:852.419659px;}
.y27{bottom:858.000600px;}
.y34{bottom:861.239656px;}
.y58{bottom:873.119651px;}
.y26{bottom:879.059648px;}
.y57{bottom:893.819642px;}
.y56{bottom:914.519634px;}
.y11{bottom:923.339631px;}
.y55{bottom:935.219626px;}
.y10{bottom:940.619624px;}
.y54{bottom:955.919618px;}
.yf{bottom:957.899617px;}
.ye{bottom:975.179610px;}
.y53{bottom:976.619609px;}
.y52{bottom:997.319601px;}
.yd{bottom:1002.179599px;}
.y51{bottom:1018.019593px;}
.y20{bottom:1033.499587px;}
.y50{bottom:1038.719585px;}
.y24{bottom:1046.099582px;}
.y4f{bottom:1059.419576px;}
.y23{bottom:1063.379575px;}
.y4e{bottom:1080.119568px;}
.y22{bottom:1082.639567px;}
.y4d{bottom:1100.819560px;}
.y21{bottom:1110.179556px;}
.y25{bottom:1118.459553px;}
.y4{bottom:1149.239540px;}
.y48{bottom:1156.079538px;}
.yc{bottom:1177.319529px;}
.y3{bottom:1180.379528px;}
.y2{bottom:1197.659521px;}
.y1{bottom:1214.939514px;}
.h3{height:3.240000px;}
.hd{height:17.280000px;}
.h5{height:18.720000px;}
.h4{height:33.518307px;}
.h7{height:36.597642px;}
.h10{height:36.624009px;}
.h11{height:38.759750px;}
.hf{height:39.313461px;}
.h14{height:39.830258px;}
.ha{height:40.501390px;}
.h15{height:40.530570px;}
.h1{height:41.522679px;}
.he{height:41.756116px;}
.h6{height:42.894123px;}
.h13{height:43.506897px;}
.hc{height:43.682678px;}
.h2{height:46.025138px;}
.h12{height:48.796855px;}
.h8{height:50.027324px;}
.h9{height:52.417948px;}
.hb{height:64.899818px;}
.h0{height:1263.000000px;}
.w3{width:6.300000px;}
.w2{width:7.560000px;}
.w5{width:8.820000px;}
.w4{width:142.200000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x24{left:70.559972px;}
.x23{left:75.059970px;}
.x26{left:77.219969px;}
.x28{left:79.559968px;}
.x25{left:81.359967px;}
.x3{left:82.799967px;}
.x2b{left:87.299965px;}
.x27{left:93.059963px;}
.x1{left:97.559961px;}
.x8{left:105.119958px;}
.x22{left:106.199957px;}
.x1a{left:107.639957px;}
.x4{left:108.719957px;}
.x15{left:113.580000px;}
.x29{left:115.559954px;}
.x2c{left:116.999953px;}
.x2a{left:120.059952px;}
.x2d{left:121.139952px;}
.xd{left:124.559950px;}
.x2e{left:127.439949px;}
.x1c{left:128.699949px;}
.x18{left:132.839945px;}
.x2f{left:134.819946px;}
.x17{left:138.059945px;}
.x14{left:141.299943px;}
.x9{left:154.979938px;}
.x1b{left:168.479933px;}
.x19{left:170.459932px;}
.x1d{left:184.679926px;}
.xe{left:227.159909px;}
.x1e{left:254.340001px;}
.x16{left:255.780000px;}
.xb{left:268.192474px;}
.xf{left:273.959890px;}
.x1f{left:279.359880px;}
.xa{left:285.659886px;}
.x2{left:292.139883px;}
.x20{left:312.660633px;}
.x11{left:318.959872px;}
.x21{left:321.119872px;}
.xc{left:363.951534px;}
.x5{left:375.839850px;}
.x12{left:391.679866px;}
.x10{left:393.479963px;}
.x13{left:655.560388px;}
.x7{left:682.199727px;}
.x6{left:826.560000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017510pt;}
.lse{letter-spacing:0.018878pt;}
.ls9{letter-spacing:0.018880pt;}
.ls6{letter-spacing:0.168267pt;}
.lsb{letter-spacing:1.419359pt;}
.lsa{letter-spacing:2.059733pt;}
.lsc{letter-spacing:2.700106pt;}
.lsd{letter-spacing:12.946128pt;}
.ls2{letter-spacing:30.236308pt;}
.ls8{letter-spacing:92.993563pt;}
.ls5{letter-spacing:105.192491pt;}
.ls4{letter-spacing:105.192700pt;}
.ls3{letter-spacing:169.231995pt;}
.ls0{letter-spacing:1500.425457pt;}
.ws4{word-spacing:-28.799988pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.737505pt;}
.ws3{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws5{word-spacing:-10.847996pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-13.309349pt;}
._17{margin-left:-6.227975pt;}
._18{margin-left:-4.764668pt;}
._f{margin-left:-3.754525pt;}
._1a{margin-left:-2.827262pt;}
._8{margin-left:-1.894930pt;}
._1{margin-left:-0.906934pt;}
._0{width:0.891642pt;}
._4{width:1.832112pt;}
._5{width:3.289656pt;}
._2{width:4.864664pt;}
._3{width:5.878403pt;}
._9{width:7.035681pt;}
._6{width:8.577111pt;}
._7{width:9.751033pt;}
._10{width:10.646235pt;}
._11{width:11.992152pt;}
._a{width:12.970322pt;}
._d{width:13.893147pt;}
._e{width:14.927709pt;}
._20{width:17.095160pt;}
._b{width:18.060727pt;}
._c{width:19.117347pt;}
._12{width:20.025112pt;}
._1c{width:21.840029pt;}
._19{width:22.959063pt;}
._13{width:24.741603pt;}
._14{width:26.272863pt;}
._1b{width:27.222852pt;}
._1f{width:28.174802pt;}
._15{width:29.247392pt;}
._16{width:30.243454pt;}
._1e{width:31.381313pt;}
.fs2{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs5{font-size:85.119966pt;}
.y6{bottom:-10.239991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y28{bottom:2.879160pt;}
.ya{bottom:3.520035pt;}
.yb{bottom:27.466922pt;}
.y9{bottom:43.466880pt;}
.y7{bottom:46.986915pt;}
.y8{bottom:48.426914pt;}
.y7d{bottom:95.306629pt;}
.y80{bottom:95.306895pt;}
.y1f{bottom:100.426626pt;}
.y7c{bottom:113.706621pt;}
.y7f{bottom:113.706888pt;}
.y1e{bottom:118.826619pt;}
.y7b{bottom:132.106614pt;}
.y7e{bottom:132.106880pt;}
.y1d{bottom:137.226612pt;}
.y7a{bottom:150.506606pt;}
.y1c{bottom:155.626604pt;}
.y79{bottom:168.906599pt;}
.y1b{bottom:174.026597pt;}
.y78{bottom:187.306592pt;}
.y1a{bottom:192.426590pt;}
.y77{bottom:205.706584pt;}
.y19{bottom:210.826582pt;}
.y76{bottom:224.106577pt;}
.y18{bottom:229.226575pt;}
.y75{bottom:242.506570pt;}
.y17{bottom:247.626568pt;}
.y74{bottom:260.906562pt;}
.y16{bottom:266.026560pt;}
.y73{bottom:279.306555pt;}
.y15{bottom:284.426553pt;}
.y72{bottom:297.706548pt;}
.y14{bottom:302.826546pt;}
.y71{bottom:316.106540pt;}
.y13{bottom:321.226538pt;}
.y70{bottom:334.506533pt;}
.y12{bottom:339.626531pt;}
.y6f{bottom:352.906526pt;}
.y33{bottom:366.666520pt;}
.y6e{bottom:371.306518pt;}
.y4c{bottom:381.226514pt;}
.y6d{bottom:389.706511pt;}
.y4b{bottom:395.946508pt;}
.y6c{bottom:408.106503pt;}
.y4a{bottom:410.666502pt;}
.y49{bottom:425.226497pt;}
.y6b{bottom:426.506496pt;}
.y6a{bottom:444.906489pt;}
.y69{bottom:463.306481pt;}
.y32{bottom:466.666480pt;}
.y47{bottom:471.946478pt;}
.y68{bottom:481.706474pt;}
.y46{bottom:489.706471pt;}
.y67{bottom:500.106467pt;}
.y45{bottom:504.906465pt;}
.y66{bottom:518.506459pt;}
.y44{bottom:520.266459pt;}
.y31{bottom:528.266455pt;}
.y43{bottom:535.626452pt;}
.y65{bottom:536.906452pt;}
.y42{bottom:550.986446pt;}
.y64{bottom:555.306445pt;}
.y41{bottom:566.346440pt;}
.y30{bottom:567.306440pt;}
.y63{bottom:573.706437pt;}
.y40{bottom:581.706434pt;}
.y62{bottom:592.106430pt;}
.y3f{bottom:596.906428pt;}
.y2f{bottom:606.186424pt;}
.y61{bottom:610.506422pt;}
.y3e{bottom:612.266422pt;}
.y2e{bottom:619.786419pt;}
.y3d{bottom:627.626416pt;}
.y60{bottom:628.906415pt;}
.y2d{bottom:633.386413pt;}
.y3c{bottom:642.986409pt;}
.y2c{bottom:645.866408pt;}
.y5f{bottom:647.306408pt;}
.y3b{bottom:658.346403pt;}
.y5e{bottom:665.706400pt;}
.y3a{bottom:673.546397pt;}
.y2b{bottom:683.626393pt;}
.y5d{bottom:684.106393pt;}
.y39{bottom:688.906391pt;}
.y5c{bottom:702.506386pt;}
.y38{bottom:704.266385pt;}
.y37{bottom:719.626379pt;}
.y5b{bottom:720.906378pt;}
.y2a{bottom:721.386378pt;}
.y36{bottom:734.986373pt;}
.y29{bottom:735.306373pt;}
.y5a{bottom:739.306371pt;}
.y35{bottom:750.346367pt;}
.y59{bottom:757.706364pt;}
.y27{bottom:762.667200pt;}
.y34{bottom:765.546360pt;}
.y58{bottom:776.106356pt;}
.y26{bottom:781.386354pt;}
.y57{bottom:794.506349pt;}
.y56{bottom:812.906342pt;}
.y11{bottom:820.746338pt;}
.y55{bottom:831.306334pt;}
.y10{bottom:836.106332pt;}
.y54{bottom:849.706327pt;}
.yf{bottom:851.466326pt;}
.ye{bottom:866.826320pt;}
.y53{bottom:868.106319pt;}
.y52{bottom:886.506312pt;}
.yd{bottom:890.826310pt;}
.y51{bottom:904.906305pt;}
.y20{bottom:918.666299pt;}
.y50{bottom:923.306297pt;}
.y24{bottom:929.866295pt;}
.y4f{bottom:941.706290pt;}
.y23{bottom:945.226289pt;}
.y4e{bottom:960.106283pt;}
.y22{bottom:962.346282pt;}
.y4d{bottom:978.506275pt;}
.y21{bottom:986.826272pt;}
.y25{bottom:994.186269pt;}
.y4{bottom:1021.546258pt;}
.y48{bottom:1027.626256pt;}
.yc{bottom:1046.506248pt;}
.y3{bottom:1049.226247pt;}
.y2{bottom:1064.586241pt;}
.y1{bottom:1079.946235pt;}
.h3{height:2.880000pt;}
.hd{height:15.360000pt;}
.h5{height:16.640000pt;}
.h4{height:29.794051pt;}
.h7{height:32.531237pt;}
.h10{height:32.554674pt;}
.h11{height:34.453111pt;}
.hf{height:34.945299pt;}
.h14{height:35.404673pt;}
.ha{height:36.001236pt;}
.h15{height:36.027173pt;}
.h1{height:36.909048pt;}
.he{height:37.116548pt;}
.h6{height:38.128110pt;}
.h13{height:38.672797pt;}
.hc{height:38.829047pt;}
.h2{height:40.911234pt;}
.h12{height:43.374983pt;}
.h8{height:44.468732pt;}
.h9{height:46.593731pt;}
.hb{height:57.688727pt;}
.h0{height:1122.666667pt;}
.w3{width:5.600000pt;}
.w2{width:6.720000pt;}
.w5{width:7.840000pt;}
.w4{width:126.400000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x24{left:62.719975pt;}
.x23{left:66.719973pt;}
.x26{left:68.639973pt;}
.x28{left:70.719972pt;}
.x25{left:72.319971pt;}
.x3{left:73.599971pt;}
.x2b{left:77.599969pt;}
.x27{left:82.719967pt;}
.x1{left:86.719965pt;}
.x8{left:93.439963pt;}
.x22{left:94.399962pt;}
.x1a{left:95.679962pt;}
.x4{left:96.639961pt;}
.x15{left:100.960000pt;}
.x29{left:102.719959pt;}
.x2c{left:103.999958pt;}
.x2a{left:106.719957pt;}
.x2d{left:107.679957pt;}
.xd{left:110.719956pt;}
.x2e{left:113.279955pt;}
.x1c{left:114.399954pt;}
.x18{left:118.079951pt;}
.x2f{left:119.839952pt;}
.x17{left:122.719951pt;}
.x14{left:125.599950pt;}
.x9{left:137.759945pt;}
.x1b{left:149.759940pt;}
.x19{left:151.519939pt;}
.x1d{left:164.159934pt;}
.xe{left:201.919919pt;}
.x1e{left:226.080001pt;}
.x16{left:227.360000pt;}
.xb{left:238.393310pt;}
.xf{left:243.519903pt;}
.x1f{left:248.319893pt;}
.xa{left:253.919898pt;}
.x2{left:259.679896pt;}
.x20{left:277.920562pt;}
.x11{left:283.519887pt;}
.x21{left:285.439886pt;}
.xc{left:323.512474pt;}
.x5{left:334.079866pt;}
.x12{left:348.159881pt;}
.x10{left:349.759967pt;}
.x13{left:582.720345pt;}
.x7{left:606.399757pt;}
.x6{left:734.720000pt;}
}




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