
    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_97e7bdc21a310f808f9aaba8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.882324;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_26704da7fad05e3859159b1c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6715bcb621c4bf3b2d15064f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0cc3f89d38b7f042fbe506dd.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_a26e176001279a10299313ca.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_76360ce408a1672d629333c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.877930;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_1102b38b39aa98c94f6df7b5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_366da4b296fd50615243ed80.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_efe70168cc15c8d0ceb7544f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891602;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_f2de34fbf9ea4cd7e90a8f20.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a4067a7b1585970ecb58022.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_343d0ce7879c9e64f2af062f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.872070;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_260a7e0894c1e4e16765265c.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_68bc049375a8c3b769016445.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_d89fb9acc107308fe971d189.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_840bc00ad76a8c3becfe8043.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893066;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);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-0.776736px;}
.ls27{letter-spacing:-0.659808px;}
.ls25{letter-spacing:-0.576288px;}
.ls1c{letter-spacing:-0.417312px;}
.ls23{letter-spacing:-0.381024px;}
.ls19{letter-spacing:-0.338688px;}
.ls1e{letter-spacing:-0.320544px;}
.lsf{letter-spacing:-0.318384px;}
.ls21{letter-spacing:-0.302400px;}
.ls1a{letter-spacing:-0.241920px;}
.ls12{letter-spacing:-0.241200px;}
.ls20{letter-spacing:-0.223776px;}
.ls22{letter-spacing:-0.175392px;}
.ls1d{letter-spacing:-0.157248px;}
.ls13{letter-spacing:-0.154368px;}
.ls1f{letter-spacing:-0.145152px;}
.ls1b{letter-spacing:-0.120960px;}
.ls10{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.018720px;}
.ls14{letter-spacing:0.116928px;}
.ls2{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.119952px;}
.ls3{letter-spacing:0.131472px;}
.ls17{letter-spacing:0.155376px;}
.ls8{letter-spacing:0.159840px;}
.lsb{letter-spacing:0.161280px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.242208px;}
.ls16{letter-spacing:0.286848px;}
.ls15{letter-spacing:0.322704px;}
.ls7{letter-spacing:0.359136px;}
.ls18{letter-spacing:0.397440px;}
.ls5{letter-spacing:0.423360px;}
.ls4{letter-spacing:0.449280px;}
.lsc{letter-spacing:2.007360px;}
.lse{letter-spacing:6.978240px;}
.lsa{letter-spacing:12.781440px;}
.lsd{letter-spacing:16.769664px;}
.ls24{letter-spacing:765.691776px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-30.166848px;}
.ws6{word-spacing:-27.000000px;}
.ws2{word-spacing:-24.120000px;}
.ws3{word-spacing:-23.878800px;}
.ws0{word-spacing:-23.801616px;}
.ws7{word-spacing:-21.997440px;}
.ws8{word-spacing:-21.239136px;}
.ws4{word-spacing:-21.122208px;}
.wsf{word-spacing:-20.220192px;}
.ws1{word-spacing:-18.014400px;}
.wsc{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.962752px;}
.wsa{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.781312px;}
.ws9{word-spacing:-14.702688px;}
.wse{word-spacing:0.000000px;}
._10{margin-left:-5.284800px;}
._f{margin-left:-3.715200px;}
._a{margin-left:-2.482560px;}
._3{margin-left:-1.085760px;}
._4{width:1.195200px;}
._2{width:3.189600px;}
._9{width:4.249440px;}
._1{width:6.043680px;}
._6{width:7.560000px;}
._e{width:9.011520px;}
._c{width:10.100160px;}
._7{width:11.975040px;}
._8{width:13.245120px;}
._13{width:14.466240px;}
._12{width:16.228800px;}
._5{width:17.483184px;}
._b{width:19.111680px;}
._11{width:20.671200px;}
._d{width:22.680000px;}
._0{width:688.081680px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs7{font-size:86.400000px;}
.fs0{font-size:96.480000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:119.520000px;}
.y33{bottom:-26.285250px;}
.y0{bottom:0.000000px;}
.y38{bottom:4.314750px;}
.y32{bottom:5.034750px;}
.y1f{bottom:11.454750px;}
.y31{bottom:33.834750px;}
.y37{bottom:52.500000px;}
.y30{bottom:53.634750px;}
.y9{bottom:62.214750px;}
.y2f{bottom:73.794750px;}
.y8{bottom:77.694750px;}
.y2e{bottom:93.594750px;}
.y60{bottom:94.974750px;}
.y7{bottom:110.094750px;}
.y8a{bottom:111.534750px;}
.y2d{bottom:113.394750px;}
.y5f{bottom:118.734750px;}
.y2c{bottom:133.194750px;}
.y6{bottom:133.854750px;}
.y89{bottom:135.294750px;}
.y5e{bottom:142.494750px;}
.y2b{bottom:152.994750px;}
.y5{bottom:157.614750px;}
.y88{bottom:159.054750px;}
.y5d{bottom:166.254750px;}
.y2a{bottom:172.794750px;}
.y87{bottom:183.174750px;}
.y5c{bottom:190.374750px;}
.y29{bottom:192.594750px;}
.y4{bottom:193.254750px;}
.y86{bottom:206.934750px;}
.y28{bottom:212.394750px;}
.y5b{bottom:214.134750px;}
.y20{bottom:214.500000px;}
.y8d{bottom:230.694750px;}
.y27{bottom:232.194750px;}
.y5a{bottom:237.894750px;}
.y85{bottom:239.694750px;}
.y26{bottom:251.994750px;}
.y59{bottom:261.654750px;}
.y84{bottom:263.454750px;}
.y25{bottom:272.154750px;}
.y58{bottom:285.414750px;}
.y83{bottom:287.214750px;}
.y24{bottom:291.954750px;}
.y57{bottom:309.174750px;}
.y82{bottom:310.974750px;}
.y23{bottom:311.754750px;}
.y22{bottom:331.554750px;}
.y56{bottom:332.934750px;}
.y81{bottom:334.734750px;}
.y21{bottom:351.354750px;}
.y55{bottom:356.694750px;}
.y80{bottom:358.494750px;}
.y54{bottom:380.454750px;}
.y7f{bottom:382.254750px;}
.y7e{bottom:406.374750px;}
.y53{bottom:413.574750px;}
.y7d{bottom:430.134750px;}
.y52{bottom:437.334750px;}
.y7c{bottom:453.894750px;}
.y51{bottom:461.094750px;}
.y7b{bottom:477.654750px;}
.y50{bottom:484.854750px;}
.y4f{bottom:508.614750px;}
.y7a{bottom:510.414750px;}
.y4e{bottom:532.374750px;}
.y79{bottom:534.174750px;}
.y4d{bottom:556.134750px;}
.y78{bottom:557.934750px;}
.y1d{bottom:575.214750px;}
.y4c{bottom:579.894750px;}
.y77{bottom:581.694750px;}
.y4b{bottom:604.014750px;}
.y76{bottom:605.814750px;}
.y1c{bottom:606.894750px;}
.y4a{bottom:627.774750px;}
.y75{bottom:629.574750px;}
.y1b{bottom:636.054750px;}
.y49{bottom:651.534750px;}
.y74{bottom:653.334750px;}
.y1a{bottom:655.854750px;}
.y48{bottom:675.294750px;}
.y73{bottom:677.094750px;}
.y19{bottom:687.894750px;}
.y93{bottom:691.854750px;}
.y47{bottom:699.054750px;}
.y72{bottom:700.854750px;}
.y1e{bottom:711.000000px;}
.y18{bottom:718.854750px;}
.y46{bottom:722.814750px;}
.y71{bottom:724.614750px;}
.y17{bottom:746.574750px;}
.y70{bottom:748.374750px;}
.y45{bottom:770.334750px;}
.y6f{bottom:772.134750px;}
.y16{bottom:774.294750px;}
.y44{bottom:794.454750px;}
.y6e{bottom:795.894750px;}
.y15{bottom:799.494750px;}
.y43{bottom:818.214750px;}
.y6d{bottom:820.014750px;}
.y14{bottom:831.174750px;}
.y42{bottom:841.974750px;}
.y6c{bottom:843.774750px;}
.y13{bottom:865.734750px;}
.y6b{bottom:867.534750px;}
.y41{bottom:889.494750px;}
.y6a{bottom:891.294750px;}
.y12{bottom:900.294750px;}
.y69{bottom:915.054750px;}
.y40{bottom:922.254750px;}
.y8c{bottom:924.054750px;}
.y11{bottom:934.854750px;}
.y68{bottom:938.814750px;}
.y3f{bottom:946.014750px;}
.y8b{bottom:947.814750px;}
.y92{bottom:962.574750px;}
.y10{bottom:967.614750px;}
.y3e{bottom:969.774750px;}
.y67{bottom:971.574750px;}
.y91{bottom:986.334750px;}
.yf{bottom:987.054750px;}
.y3d{bottom:993.534750px;}
.y66{bottom:995.334750px;}
.y90{bottom:1010.454750px;}
.y3c{bottom:1017.654750px;}
.y65{bottom:1019.454750px;}
.ye{bottom:1025.574750px;}
.y8f{bottom:1034.214750px;}
.yd{bottom:1041.414750px;}
.y64{bottom:1043.214750px;}
.y8e{bottom:1057.974750px;}
.y3b{bottom:1065.174750px;}
.yc{bottom:1065.534750px;}
.y63{bottom:1066.974750px;}
.y3a{bottom:1088.934750px;}
.yb{bottom:1089.654750px;}
.y62{bottom:1090.734750px;}
.y39{bottom:1112.694750px;}
.ya{bottom:1114.134750px;}
.y61{bottom:1114.494750px;}
.y36{bottom:1143.654750px;}
.y3{bottom:1150.854750px;}
.y35{bottom:1164.894750px;}
.y2{bottom:1172.094750px;}
.y34{bottom:1189.734750px;}
.y1{bottom:1197.294750px;}
.h11{height:21.000000px;}
.he{height:28.500000px;}
.h6{height:31.672266px;}
.h5{height:41.993438px;}
.hd{height:42.022969px;}
.h3{height:49.992188px;}
.h4{height:50.027344px;}
.h9{height:55.666406px;}
.h10{height:56.563594px;}
.h8{height:58.031719px;}
.h2{height:64.304297px;}
.h7{height:65.387813px;}
.hc{height:73.996875px;}
.hb{height:79.660547px;}
.ha{height:81.002813px;}
.hf{height:366.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:10.500000px;}
.w2{width:52.500000px;}
.w3{width:618.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:11.696556px;}
.x1{left:96.536664px;}
.x9{left:139.066200px;}
.x10{left:141.000000px;}
.x13{left:149.636520px;}
.x2{left:201.273336px;}
.xc{left:263.394828px;}
.xf{left:279.386496px;}
.xa{left:307.354752px;}
.xe{left:315.866628px;}
.x4{left:324.919692px;}
.x5{left:357.792300px;}
.xd{left:361.096560px;}
.x12{left:436.500000px;}
.x14{left:437.561460px;}
.xb{left:447.386580px;}
.x3{left:509.653620px;}
.x6{left:672.857100px;}
.x7{left:674.040060px;}
.x8{left:677.125620px;}
.x15{left:787.586580px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-0.690432pt;}
.ls27{letter-spacing:-0.586496pt;}
.ls25{letter-spacing:-0.512256pt;}
.ls1c{letter-spacing:-0.370944pt;}
.ls23{letter-spacing:-0.338688pt;}
.ls19{letter-spacing:-0.301056pt;}
.ls1e{letter-spacing:-0.284928pt;}
.lsf{letter-spacing:-0.283008pt;}
.ls21{letter-spacing:-0.268800pt;}
.ls1a{letter-spacing:-0.215040pt;}
.ls12{letter-spacing:-0.214400pt;}
.ls20{letter-spacing:-0.198912pt;}
.ls22{letter-spacing:-0.155904pt;}
.ls1d{letter-spacing:-0.139776pt;}
.ls13{letter-spacing:-0.137216pt;}
.ls1f{letter-spacing:-0.129024pt;}
.ls1b{letter-spacing:-0.107520pt;}
.ls10{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.016640pt;}
.ls14{letter-spacing:0.103936pt;}
.ls2{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.106624pt;}
.ls3{letter-spacing:0.116864pt;}
.ls17{letter-spacing:0.138112pt;}
.ls8{letter-spacing:0.142080pt;}
.lsb{letter-spacing:0.143360pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.215296pt;}
.ls16{letter-spacing:0.254976pt;}
.ls15{letter-spacing:0.286848pt;}
.ls7{letter-spacing:0.319232pt;}
.ls18{letter-spacing:0.353280pt;}
.ls5{letter-spacing:0.376320pt;}
.ls4{letter-spacing:0.399360pt;}
.lsc{letter-spacing:1.784320pt;}
.lse{letter-spacing:6.202880pt;}
.lsa{letter-spacing:11.361280pt;}
.lsd{letter-spacing:14.906368pt;}
.ls24{letter-spacing:680.614912pt;}
.ws5{word-spacing:-26.814976pt;}
.ws6{word-spacing:-24.000000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws3{word-spacing:-21.225600pt;}
.ws0{word-spacing:-21.156992pt;}
.ws7{word-spacing:-19.553280pt;}
.ws8{word-spacing:-18.879232pt;}
.ws4{word-spacing:-18.775296pt;}
.wsf{word-spacing:-17.973504pt;}
.ws1{word-spacing:-16.012800pt;}
.wsc{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.300224pt;}
.wsa{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.138944pt;}
.ws9{word-spacing:-13.069056pt;}
.wse{word-spacing:0.000000pt;}
._10{margin-left:-4.697600pt;}
._f{margin-left:-3.302400pt;}
._a{margin-left:-2.206720pt;}
._3{margin-left:-0.965120pt;}
._4{width:1.062400pt;}
._2{width:2.835200pt;}
._9{width:3.777280pt;}
._1{width:5.372160pt;}
._6{width:6.720000pt;}
._e{width:8.010240pt;}
._c{width:8.977920pt;}
._7{width:10.644480pt;}
._8{width:11.773440pt;}
._13{width:12.858880pt;}
._12{width:14.425600pt;}
._5{width:15.540608pt;}
._b{width:16.988160pt;}
._11{width:18.374400pt;}
._d{width:20.160000pt;}
._0{width:611.628160pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs7{font-size:76.800000pt;}
.fs0{font-size:85.760000pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.240000pt;}
.y33{bottom:-23.364667pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.835333pt;}
.y32{bottom:4.475333pt;}
.y1f{bottom:10.182000pt;}
.y31{bottom:30.075333pt;}
.y37{bottom:46.666667pt;}
.y30{bottom:47.675333pt;}
.y9{bottom:55.302000pt;}
.y2f{bottom:65.595333pt;}
.y8{bottom:69.062000pt;}
.y2e{bottom:83.195333pt;}
.y60{bottom:84.422000pt;}
.y7{bottom:97.862000pt;}
.y8a{bottom:99.142000pt;}
.y2d{bottom:100.795333pt;}
.y5f{bottom:105.542000pt;}
.y2c{bottom:118.395333pt;}
.y6{bottom:118.982000pt;}
.y89{bottom:120.262000pt;}
.y5e{bottom:126.662000pt;}
.y2b{bottom:135.995333pt;}
.y5{bottom:140.102000pt;}
.y88{bottom:141.382000pt;}
.y5d{bottom:147.782000pt;}
.y2a{bottom:153.595333pt;}
.y87{bottom:162.822000pt;}
.y5c{bottom:169.222000pt;}
.y29{bottom:171.195333pt;}
.y4{bottom:171.782000pt;}
.y86{bottom:183.942000pt;}
.y28{bottom:188.795333pt;}
.y5b{bottom:190.342000pt;}
.y20{bottom:190.666667pt;}
.y8d{bottom:205.062000pt;}
.y27{bottom:206.395333pt;}
.y5a{bottom:211.462000pt;}
.y85{bottom:213.062000pt;}
.y26{bottom:223.995333pt;}
.y59{bottom:232.582000pt;}
.y84{bottom:234.182000pt;}
.y25{bottom:241.915333pt;}
.y58{bottom:253.702000pt;}
.y83{bottom:255.302000pt;}
.y24{bottom:259.515333pt;}
.y57{bottom:274.822000pt;}
.y82{bottom:276.422000pt;}
.y23{bottom:277.115333pt;}
.y22{bottom:294.715333pt;}
.y56{bottom:295.942000pt;}
.y81{bottom:297.542000pt;}
.y21{bottom:312.315333pt;}
.y55{bottom:317.062000pt;}
.y80{bottom:318.662000pt;}
.y54{bottom:338.182000pt;}
.y7f{bottom:339.782000pt;}
.y7e{bottom:361.222000pt;}
.y53{bottom:367.622000pt;}
.y7d{bottom:382.342000pt;}
.y52{bottom:388.742000pt;}
.y7c{bottom:403.462000pt;}
.y51{bottom:409.862000pt;}
.y7b{bottom:424.582000pt;}
.y50{bottom:430.982000pt;}
.y4f{bottom:452.102000pt;}
.y7a{bottom:453.702000pt;}
.y4e{bottom:473.222000pt;}
.y79{bottom:474.822000pt;}
.y4d{bottom:494.342000pt;}
.y78{bottom:495.942000pt;}
.y1d{bottom:511.302000pt;}
.y4c{bottom:515.462000pt;}
.y77{bottom:517.062000pt;}
.y4b{bottom:536.902000pt;}
.y76{bottom:538.502000pt;}
.y1c{bottom:539.462000pt;}
.y4a{bottom:558.022000pt;}
.y75{bottom:559.622000pt;}
.y1b{bottom:565.382000pt;}
.y49{bottom:579.142000pt;}
.y74{bottom:580.742000pt;}
.y1a{bottom:582.982000pt;}
.y48{bottom:600.262000pt;}
.y73{bottom:601.862000pt;}
.y19{bottom:611.462000pt;}
.y93{bottom:614.982000pt;}
.y47{bottom:621.382000pt;}
.y72{bottom:622.982000pt;}
.y1e{bottom:632.000000pt;}
.y18{bottom:638.982000pt;}
.y46{bottom:642.502000pt;}
.y71{bottom:644.102000pt;}
.y17{bottom:663.622000pt;}
.y70{bottom:665.222000pt;}
.y45{bottom:684.742000pt;}
.y6f{bottom:686.342000pt;}
.y16{bottom:688.262000pt;}
.y44{bottom:706.182000pt;}
.y6e{bottom:707.462000pt;}
.y15{bottom:710.662000pt;}
.y43{bottom:727.302000pt;}
.y6d{bottom:728.902000pt;}
.y14{bottom:738.822000pt;}
.y42{bottom:748.422000pt;}
.y6c{bottom:750.022000pt;}
.y13{bottom:769.542000pt;}
.y6b{bottom:771.142000pt;}
.y41{bottom:790.662000pt;}
.y6a{bottom:792.262000pt;}
.y12{bottom:800.262000pt;}
.y69{bottom:813.382000pt;}
.y40{bottom:819.782000pt;}
.y8c{bottom:821.382000pt;}
.y11{bottom:830.982000pt;}
.y68{bottom:834.502000pt;}
.y3f{bottom:840.902000pt;}
.y8b{bottom:842.502000pt;}
.y92{bottom:855.622000pt;}
.y10{bottom:860.102000pt;}
.y3e{bottom:862.022000pt;}
.y67{bottom:863.622000pt;}
.y91{bottom:876.742000pt;}
.yf{bottom:877.382000pt;}
.y3d{bottom:883.142000pt;}
.y66{bottom:884.742000pt;}
.y90{bottom:898.182000pt;}
.y3c{bottom:904.582000pt;}
.y65{bottom:906.182000pt;}
.ye{bottom:911.622000pt;}
.y8f{bottom:919.302000pt;}
.yd{bottom:925.702000pt;}
.y64{bottom:927.302000pt;}
.y8e{bottom:940.422000pt;}
.y3b{bottom:946.822000pt;}
.yc{bottom:947.142000pt;}
.y63{bottom:948.422000pt;}
.y3a{bottom:967.942000pt;}
.yb{bottom:968.582000pt;}
.y62{bottom:969.542000pt;}
.y39{bottom:989.062000pt;}
.ya{bottom:990.342000pt;}
.y61{bottom:990.662000pt;}
.y36{bottom:1016.582000pt;}
.y3{bottom:1022.982000pt;}
.y35{bottom:1035.462000pt;}
.y2{bottom:1041.862000pt;}
.y34{bottom:1057.542000pt;}
.y1{bottom:1064.262000pt;}
.h11{height:18.666667pt;}
.he{height:25.333333pt;}
.h6{height:28.153125pt;}
.h5{height:37.327500pt;}
.hd{height:37.353750pt;}
.h3{height:44.437500pt;}
.h4{height:44.468750pt;}
.h9{height:49.481250pt;}
.h10{height:50.278750pt;}
.h8{height:51.583750pt;}
.h2{height:57.159375pt;}
.h7{height:58.122500pt;}
.hc{height:65.775000pt;}
.hb{height:70.809375pt;}
.ha{height:72.002500pt;}
.hf{height:325.333333pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:9.333333pt;}
.w2{width:46.666667pt;}
.w3{width:549.333333pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:10.396939pt;}
.x1{left:85.810368pt;}
.x9{left:123.614400pt;}
.x10{left:125.333333pt;}
.x13{left:133.010240pt;}
.x2{left:178.909632pt;}
.xc{left:234.128736pt;}
.xf{left:248.343552pt;}
.xa{left:273.204224pt;}
.xe{left:280.770336pt;}
.x4{left:288.817504pt;}
.x5{left:318.037600pt;}
.xd{left:320.974720pt;}
.x12{left:388.000000pt;}
.x14{left:388.943520pt;}
.xb{left:397.676960pt;}
.x3{left:453.025440pt;}
.x6{left:598.095200pt;}
.x7{left:599.146720pt;}
.x8{left:601.889440pt;}
.x15{left:700.076960pt;}
}




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