
    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_db1f89c754899899decb4a30.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_f4cc193f6b4cdd8ab058375b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_998e4e1f4960335d48a0ec3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_d060e30ebe9aa405c07dab7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_4502145bfc089df1d0d322a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c988e64c1bc293078712f466.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cb1d36fb2adcc601d999a94a.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_e2501c5572b5f0edbde9204b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689941;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_481385dd7d4f198c4f3b08b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.625000;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_e41ce613cdadcfb7be8db039.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.625000;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_e41ce613cdadcfb7be8db039.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.625000;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_e41ce613cdadcfb7be8db039.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.625000;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_e41ce613cdadcfb7be8db039.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.625000;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_0e0fedbe3e9e61724e9ae742.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e77429cf4eca56ca18bd9bca.woff2')format("woff");}.fff{font-family:fff;line-height:1.070312;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_65e90a5e9079e7396b42294d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8a95128287de4c6c38605534.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.924000px;}
.ls8{letter-spacing:0.990000px;}
.ls4{letter-spacing:1.254000px;}
.ls6{letter-spacing:1.386000px;}
.ls7{letter-spacing:2.706000px;}
.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;}
}
.ws1{word-spacing:-26.688000px;}
.ws4{word-spacing:-17.424000px;}
.ws2{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.500000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:180.468000px;}
._a{margin-left:-18.326400px;}
._15{margin-left:-16.854000px;}
._21{margin-left:-15.762000px;}
._b{margin-left:-14.654400px;}
._8{margin-left:-8.490000px;}
._4{margin-left:-7.104000px;}
._2{margin-left:-5.994000px;}
._0{margin-left:-4.914000px;}
._1{margin-left:-3.024000px;}
._3{margin-left:-1.998000px;}
._e{width:1.584000px;}
._12{width:2.706000px;}
._f{width:4.092000px;}
._10{width:5.676000px;}
._14{width:6.696000px;}
._11{width:7.722000px;}
._6{width:8.785800px;}
._7{width:10.717800px;}
._c{width:14.520600px;}
._13{width:45.439800px;}
._9{width:75.900000px;}
._19{width:81.972000px;}
._5{width:88.968000px;}
._16{width:95.904000px;}
._1a{width:131.112000px;}
._d{width:135.936000px;}
._1d{width:343.062000px;}
._17{width:362.124000px;}
._1b{width:403.002000px;}
._18{width:458.136000px;}
._1e{width:688.068000px;}
._1c{width:796.068000px;}
._1f{width:818.370000px;}
._20{width:1124.388000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:54.000000px;}
.fs7{font-size:65.880000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:95.699250px;}
.yab{bottom:99.206250px;}
.yaa{bottom:123.206250px;}
.y16{bottom:139.615350px;}
.y96{bottom:144.334650px;}
.y68{bottom:145.277850px;}
.ya9{bottom:147.206250px;}
.y81{bottom:159.138300px;}
.y15{bottom:160.615350px;}
.y94{bottom:164.237850px;}
.y67{bottom:167.777850px;}
.ya8{bottom:171.206250px;}
.y80{bottom:181.638300px;}
.ya6{bottom:184.192050px;}
.y93{bottom:186.737850px;}
.y66{bottom:190.277850px;}
.y14{bottom:194.371350px;}
.ya7{bottom:195.206250px;}
.y7f{bottom:204.138300px;}
.ya5{bottom:206.692050px;}
.y92{bottom:209.237850px;}
.y65{bottom:212.777850px;}
.y7e{bottom:226.638300px;}
.y91{bottom:231.737850px;}
.y64{bottom:235.277850px;}
.y47{bottom:235.302000px;}
.y13{bottom:239.371350px;}
.ya4{bottom:257.553900px;}
.y46{bottom:259.302000px;}
.y12{bottom:260.371350px;}
.y7d{bottom:271.898100px;}
.y63{bottom:276.331650px;}
.y90{bottom:276.997800px;}
.y11{bottom:281.371350px;}
.y45{bottom:283.302000px;}
.y7c{bottom:294.398100px;}
.y8f{bottom:299.497800px;}
.y10{bottom:302.371350px;}
.y44{bottom:307.302000px;}
.y7b{bottom:316.898100px;}
.y8e{bottom:321.997800px;}
.yf{bottom:323.371350px;}
.y43{bottom:331.302000px;}
.ye{bottom:344.371350px;}
.y42{bottom:355.302000px;}
.yd{bottom:365.371350px;}
.y7a{bottom:369.784350px;}
.y8d{bottom:371.284350px;}
.ybd{bottom:372.619050px;}
.y41{bottom:379.302000px;}
.yc{bottom:386.371350px;}
.y3{bottom:386.960850px;}
.y6{bottom:393.356850px;}
.ybc{bottom:397.369050px;}
.y40{bottom:403.302000px;}
.yb{bottom:407.371350px;}
.y2{bottom:410.960850px;}
.y5{bottom:417.356850px;}
.ybb{bottom:422.119050px;}
.y3f{bottom:427.302000px;}
.ya{bottom:428.371350px;}
.yba{bottom:446.869050px;}
.y9{bottom:449.371350px;}
.y3e{bottom:451.302000px;}
.yb9{bottom:471.619050px;}
.y3b{bottom:475.302000px;}
.yb8{bottom:496.369050px;}
.y3a{bottom:499.302000px;}
.y39{bottom:523.302000px;}
.yb7{bottom:545.869050px;}
.y38{bottom:547.302000px;}
.y62{bottom:564.286350px;}
.yb6{bottom:570.619050px;}
.y37{bottom:571.302000px;}
.y36{bottom:595.302000px;}
.yb5{bottom:595.369050px;}
.y61{bottom:603.546150px;}
.y35{bottom:619.302000px;}
.yb4{bottom:620.119050px;}
.y7{bottom:626.476050px;}
.y1{bottom:626.923650px;}
.y60{bottom:627.546150px;}
.y34{bottom:643.302000px;}
.yb3{bottom:644.869050px;}
.ya3{bottom:651.318450px;}
.y5f{bottom:651.546150px;}
.y33{bottom:667.302000px;}
.yb2{bottom:669.619050px;}
.y79{bottom:672.318450px;}
.y5e{bottom:675.546150px;}
.ya2{bottom:690.578400px;}
.y32{bottom:691.302000px;}
.yb1{bottom:694.369050px;}
.y5d{bottom:699.546150px;}
.y78{bottom:711.578400px;}
.ya1{bottom:714.578400px;}
.y31{bottom:715.302000px;}
.y5c{bottom:723.546150px;}
.y77{bottom:735.578400px;}
.ya0{bottom:738.578400px;}
.y30{bottom:739.302000px;}
.y8c{bottom:741.318450px;}
.yb0{bottom:743.869050px;}
.y5b{bottom:747.546150px;}
.y76{bottom:759.578400px;}
.y9f{bottom:762.578400px;}
.y2f{bottom:763.302000px;}
.yaf{bottom:768.619050px;}
.y5a{bottom:771.546150px;}
.y8b{bottom:780.578400px;}
.y75{bottom:783.578400px;}
.y9e{bottom:786.578400px;}
.y2e{bottom:787.302000px;}
.y21{bottom:787.707750px;}
.yae{bottom:793.369050px;}
.y59{bottom:795.546150px;}
.y4{bottom:796.044000px;}
.y8{bottom:796.525500px;}
.y8a{bottom:804.578400px;}
.y74{bottom:807.578400px;}
.y9d{bottom:810.578400px;}
.y2d{bottom:811.302000px;}
.yad{bottom:818.119050px;}
.y58{bottom:819.546150px;}
.y89{bottom:828.578400px;}
.y20{bottom:828.767700px;}
.y73{bottom:831.578400px;}
.y9c{bottom:834.578400px;}
.y2c{bottom:835.302000px;}
.y95{bottom:837.318450px;}
.yac{bottom:842.869050px;}
.y57{bottom:843.546150px;}
.y1f{bottom:848.567700px;}
.y88{bottom:852.578400px;}
.y72{bottom:855.578400px;}
.y9b{bottom:858.578400px;}
.y2b{bottom:859.302000px;}
.y56{bottom:867.546150px;}
.y1e{bottom:868.367700px;}
.y87{bottom:876.578400px;}
.y71{bottom:879.578400px;}
.y9a{bottom:882.578400px;}
.y2a{bottom:883.302000px;}
.y1d{bottom:888.167700px;}
.y55{bottom:891.546150px;}
.y86{bottom:900.578400px;}
.y70{bottom:903.578400px;}
.y29{bottom:907.302000px;}
.y1c{bottom:907.967700px;}
.y54{bottom:915.546150px;}
.y99{bottom:919.334250px;}
.y85{bottom:924.578400px;}
.y6f{bottom:927.578400px;}
.y1b{bottom:927.767700px;}
.y28{bottom:931.302000px;}
.y53{bottom:939.546150px;}
.y84{bottom:948.578400px;}
.y27{bottom:955.302000px;}
.y52{bottom:963.546150px;}
.y6e{bottom:964.334250px;}
.y98{bottom:967.594050px;}
.y1a{bottom:968.827650px;}
.y83{bottom:972.578400px;}
.y26{bottom:979.302000px;}
.y51{bottom:987.546150px;}
.y4e{bottom:990.084750px;}
.y97{bottom:990.094050px;}
.y25{bottom:1003.302000px;}
.y82{bottom:1009.334250px;}
.y19{bottom:1009.887450px;}
.y50{bottom:1011.546150px;}
.y4d{bottom:1012.584750px;}
.y6d{bottom:1012.594050px;}
.y24{bottom:1027.302000px;}
.y4c{bottom:1035.084750px;}
.y6c{bottom:1035.094050px;}
.y4f{bottom:1048.302000px;}
.y18{bottom:1050.947250px;}
.y23{bottom:1051.302000px;}
.y4b{bottom:1057.584750px;}
.y6b{bottom:1057.594050px;}
.y4a{bottom:1080.084750px;}
.y6a{bottom:1080.094050px;}
.y22{bottom:1096.561950px;}
.y17{bottom:1096.562100px;}
.y49{bottom:1102.584750px;}
.y69{bottom:1102.594050px;}
.y48{bottom:1191.820650px;}
.y3c{bottom:1191.899250px;}
.h11{height:39.313477px;}
.h7{height:39.339844px;}
.h10{height:41.175000px;}
.hc{height:45.035156px;}
.hf{height:45.826172px;}
.hd{height:45.858398px;}
.h6{height:46.432617px;}
.h5{height:47.223633px;}
.hb{height:55.042969px;}
.ha{height:56.750977px;}
.h9{height:57.717773px;}
.he{height:62.964844px;}
.h3{height:70.054688px;}
.h4{height:75.058594px;}
.h8{height:83.953125px;}
.h2{height:120.093750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:42.525000px;}
.x5{left:141.150000px;}
.x6{left:142.425000px;}
.xb{left:162.409800px;}
.x8{left:163.684800px;}
.x7{left:178.425000px;}
.xe{left:183.669600px;}
.xd{left:184.944750px;}
.x1{left:221.098500px;}
.x15{left:255.225000px;}
.x2{left:309.755250px;}
.x4{left:377.457000px;}
.x3{left:417.344400px;}
.x11{left:447.038550px;}
.xa{left:453.287550px;}
.x9{left:582.776850px;}
.x12{left:678.191550px;}
.x13{left:687.835950px;}
.xf{left:732.685950px;}
.x10{left:745.210950px;}
.xc{left:755.883600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.821333pt;}
.ls8{letter-spacing:0.880000pt;}
.ls4{letter-spacing:1.114667pt;}
.ls6{letter-spacing:1.232000pt;}
.ls7{letter-spacing:2.405333pt;}
.ws1{word-spacing:-23.722667pt;}
.ws4{word-spacing:-15.488000pt;}
.ws2{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:160.416000pt;}
._a{margin-left:-16.290133pt;}
._15{margin-left:-14.981333pt;}
._21{margin-left:-14.010667pt;}
._b{margin-left:-13.026133pt;}
._8{margin-left:-7.546667pt;}
._4{margin-left:-6.314667pt;}
._2{margin-left:-5.328000pt;}
._0{margin-left:-4.368000pt;}
._1{margin-left:-2.688000pt;}
._3{margin-left:-1.776000pt;}
._e{width:1.408000pt;}
._12{width:2.405333pt;}
._f{width:3.637333pt;}
._10{width:5.045333pt;}
._14{width:5.952000pt;}
._11{width:6.864000pt;}
._6{width:7.809600pt;}
._7{width:9.526933pt;}
._c{width:12.907200pt;}
._13{width:40.390933pt;}
._9{width:67.466667pt;}
._19{width:72.864000pt;}
._5{width:79.082667pt;}
._16{width:85.248000pt;}
._1a{width:116.544000pt;}
._d{width:120.832000pt;}
._1d{width:304.944000pt;}
._17{width:321.888000pt;}
._1b{width:358.224000pt;}
._18{width:407.232000pt;}
._1e{width:611.616000pt;}
._1c{width:707.616000pt;}
._1f{width:727.440000pt;}
._20{width:999.456000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:58.560000pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:85.066000pt;}
.yab{bottom:88.183333pt;}
.yaa{bottom:109.516667pt;}
.y16{bottom:124.102533pt;}
.y96{bottom:128.297467pt;}
.y68{bottom:129.135867pt;}
.ya9{bottom:130.850000pt;}
.y81{bottom:141.456267pt;}
.y15{bottom:142.769200pt;}
.y94{bottom:145.989200pt;}
.y67{bottom:149.135867pt;}
.ya8{bottom:152.183333pt;}
.y80{bottom:161.456267pt;}
.ya6{bottom:163.726267pt;}
.y93{bottom:165.989200pt;}
.y66{bottom:169.135867pt;}
.y14{bottom:172.774533pt;}
.ya7{bottom:173.516667pt;}
.y7f{bottom:181.456267pt;}
.ya5{bottom:183.726267pt;}
.y92{bottom:185.989200pt;}
.y65{bottom:189.135867pt;}
.y7e{bottom:201.456267pt;}
.y91{bottom:205.989200pt;}
.y64{bottom:209.135867pt;}
.y47{bottom:209.157333pt;}
.y13{bottom:212.774533pt;}
.ya4{bottom:228.936800pt;}
.y46{bottom:230.490667pt;}
.y12{bottom:231.441200pt;}
.y7d{bottom:241.687200pt;}
.y63{bottom:245.628133pt;}
.y90{bottom:246.220267pt;}
.y11{bottom:250.107867pt;}
.y45{bottom:251.824000pt;}
.y7c{bottom:261.687200pt;}
.y8f{bottom:266.220267pt;}
.y10{bottom:268.774533pt;}
.y44{bottom:273.157333pt;}
.y7b{bottom:281.687200pt;}
.y8e{bottom:286.220267pt;}
.yf{bottom:287.441200pt;}
.y43{bottom:294.490667pt;}
.ye{bottom:306.107867pt;}
.y42{bottom:315.824000pt;}
.yd{bottom:324.774533pt;}
.y7a{bottom:328.697200pt;}
.y8d{bottom:330.030533pt;}
.ybd{bottom:331.216933pt;}
.y41{bottom:337.157333pt;}
.yc{bottom:343.441200pt;}
.y3{bottom:343.965200pt;}
.y6{bottom:349.650533pt;}
.ybc{bottom:353.216933pt;}
.y40{bottom:358.490667pt;}
.yb{bottom:362.107867pt;}
.y2{bottom:365.298533pt;}
.y5{bottom:370.983867pt;}
.ybb{bottom:375.216933pt;}
.y3f{bottom:379.824000pt;}
.ya{bottom:380.774533pt;}
.yba{bottom:397.216933pt;}
.y9{bottom:399.441200pt;}
.y3e{bottom:401.157333pt;}
.yb9{bottom:419.216933pt;}
.y3b{bottom:422.490667pt;}
.yb8{bottom:441.216933pt;}
.y3a{bottom:443.824000pt;}
.y39{bottom:465.157333pt;}
.yb7{bottom:485.216933pt;}
.y38{bottom:486.490667pt;}
.y62{bottom:501.587867pt;}
.yb6{bottom:507.216933pt;}
.y37{bottom:507.824000pt;}
.y36{bottom:529.157333pt;}
.yb5{bottom:529.216933pt;}
.y61{bottom:536.485467pt;}
.y35{bottom:550.490667pt;}
.yb4{bottom:551.216933pt;}
.y7{bottom:556.867600pt;}
.y1{bottom:557.265467pt;}
.y60{bottom:557.818800pt;}
.y34{bottom:571.824000pt;}
.yb3{bottom:573.216933pt;}
.ya3{bottom:578.949733pt;}
.y5f{bottom:579.152133pt;}
.y33{bottom:593.157333pt;}
.yb2{bottom:595.216933pt;}
.y79{bottom:597.616400pt;}
.y5e{bottom:600.485467pt;}
.ya2{bottom:613.847467pt;}
.y32{bottom:614.490667pt;}
.yb1{bottom:617.216933pt;}
.y5d{bottom:621.818800pt;}
.y78{bottom:632.514133pt;}
.ya1{bottom:635.180800pt;}
.y31{bottom:635.824000pt;}
.y5c{bottom:643.152133pt;}
.y77{bottom:653.847467pt;}
.ya0{bottom:656.514133pt;}
.y30{bottom:657.157333pt;}
.y8c{bottom:658.949733pt;}
.yb0{bottom:661.216933pt;}
.y5b{bottom:664.485467pt;}
.y76{bottom:675.180800pt;}
.y9f{bottom:677.847467pt;}
.y2f{bottom:678.490667pt;}
.yaf{bottom:683.216933pt;}
.y5a{bottom:685.818800pt;}
.y8b{bottom:693.847467pt;}
.y75{bottom:696.514133pt;}
.y9e{bottom:699.180800pt;}
.y2e{bottom:699.824000pt;}
.y21{bottom:700.184667pt;}
.yae{bottom:705.216933pt;}
.y59{bottom:707.152133pt;}
.y4{bottom:707.594667pt;}
.y8{bottom:708.022667pt;}
.y8a{bottom:715.180800pt;}
.y74{bottom:717.847467pt;}
.y9d{bottom:720.514133pt;}
.y2d{bottom:721.157333pt;}
.yad{bottom:727.216933pt;}
.y58{bottom:728.485467pt;}
.y89{bottom:736.514133pt;}
.y20{bottom:736.682400pt;}
.y73{bottom:739.180800pt;}
.y9c{bottom:741.847467pt;}
.y2c{bottom:742.490667pt;}
.y95{bottom:744.283067pt;}
.yac{bottom:749.216933pt;}
.y57{bottom:749.818800pt;}
.y1f{bottom:754.282400pt;}
.y88{bottom:757.847467pt;}
.y72{bottom:760.514133pt;}
.y9b{bottom:763.180800pt;}
.y2b{bottom:763.824000pt;}
.y56{bottom:771.152133pt;}
.y1e{bottom:771.882400pt;}
.y87{bottom:779.180800pt;}
.y71{bottom:781.847467pt;}
.y9a{bottom:784.514133pt;}
.y2a{bottom:785.157333pt;}
.y1d{bottom:789.482400pt;}
.y55{bottom:792.485467pt;}
.y86{bottom:800.514133pt;}
.y70{bottom:803.180800pt;}
.y29{bottom:806.490667pt;}
.y1c{bottom:807.082400pt;}
.y54{bottom:813.818800pt;}
.y99{bottom:817.186000pt;}
.y85{bottom:821.847467pt;}
.y6f{bottom:824.514133pt;}
.y1b{bottom:824.682400pt;}
.y28{bottom:827.824000pt;}
.y53{bottom:835.152133pt;}
.y84{bottom:843.180800pt;}
.y27{bottom:849.157333pt;}
.y52{bottom:856.485467pt;}
.y6e{bottom:857.186000pt;}
.y98{bottom:860.083600pt;}
.y1a{bottom:861.180133pt;}
.y83{bottom:864.514133pt;}
.y26{bottom:870.490667pt;}
.y51{bottom:877.818800pt;}
.y4e{bottom:880.075333pt;}
.y97{bottom:880.083600pt;}
.y25{bottom:891.824000pt;}
.y82{bottom:897.186000pt;}
.y19{bottom:897.677733pt;}
.y50{bottom:899.152133pt;}
.y4d{bottom:900.075333pt;}
.y6d{bottom:900.083600pt;}
.y24{bottom:913.157333pt;}
.y4c{bottom:920.075333pt;}
.y6c{bottom:920.083600pt;}
.y4f{bottom:931.824000pt;}
.y18{bottom:934.175333pt;}
.y23{bottom:934.490667pt;}
.y4b{bottom:940.075333pt;}
.y6b{bottom:940.083600pt;}
.y4a{bottom:960.075333pt;}
.y6a{bottom:960.083600pt;}
.y22{bottom:974.721733pt;}
.y17{bottom:974.721867pt;}
.y49{bottom:980.075333pt;}
.y69{bottom:980.083600pt;}
.y48{bottom:1059.396133pt;}
.y3c{bottom:1059.466000pt;}
.h11{height:34.945312pt;}
.h7{height:34.968750pt;}
.h10{height:36.600000pt;}
.hc{height:40.031250pt;}
.hf{height:40.734375pt;}
.hd{height:40.763021pt;}
.h6{height:41.273438pt;}
.h5{height:41.976562pt;}
.hb{height:48.927083pt;}
.ha{height:50.445312pt;}
.h9{height:51.304688pt;}
.he{height:55.968750pt;}
.h3{height:62.270833pt;}
.h4{height:66.718750pt;}
.h8{height:74.625000pt;}
.h2{height:106.750000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:37.800000pt;}
.x5{left:125.466667pt;}
.x6{left:126.600000pt;}
.xb{left:144.364267pt;}
.x8{left:145.497600pt;}
.x7{left:158.600000pt;}
.xe{left:163.261867pt;}
.xd{left:164.395333pt;}
.x1{left:196.532000pt;}
.x15{left:226.866667pt;}
.x2{left:275.338000pt;}
.x4{left:335.517333pt;}
.x3{left:370.972800pt;}
.x11{left:397.367600pt;}
.xa{left:402.922267pt;}
.x9{left:518.023867pt;}
.x12{left:602.836933pt;}
.x13{left:611.409733pt;}
.xf{left:651.276400pt;}
.x10{left:662.409733pt;}
.xc{left:671.896533pt;}
}




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