
    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_a27885cbe435f2416fe49ab3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e39e00c336ece63233b4b4c6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_872e44b0f1a6de3c4136f440.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c5d58c81a696a956ada8e71f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0390e49be911779bd1a4254.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_1de18710b32ba7af717ead85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.098633;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_494a0ca42eaad75160eb13c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.676270;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_19034d9c5e8d4946fd96e7de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.676270;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_b3fde63bb0ebfcec83686793.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.852539;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_f3e1738d1d786507b2c3941c.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01837907b37da4b544154040.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.944336;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_e85dac8fe5f052c8aa430eb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932129;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_d6cf7ecca86b1d824768591f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_721852b652fa8531921bb695.woff2')format("woff");}.ffe{font-family:ffe;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);}
.m2{transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.600000px;}
.v1{vertical-align:-8.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:44.400000px;}
.lsf{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.456000px;}
.lsd{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.768000px;}
.lsb{letter-spacing:5.755880px;}
.ls7{letter-spacing:5.829990px;}
.lsa{letter-spacing:9.435531px;}
.ls9{letter-spacing:13.149709px;}
.lsc{letter-spacing:14.571479px;}
.ls8{letter-spacing:14.609736px;}
.ls0{letter-spacing:47.400000px;}
.ls3{letter-spacing:54.048000px;}
.lse{letter-spacing:149.340000px;}
.ls6{letter-spacing:255.456000px;}
.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;}
}
.ws0{word-spacing:-66.480000px;}
.ws2{word-spacing:-43.368000px;}
.ws1{word-spacing:-39.888000px;}
.ws4{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws7{word-spacing:-0.168000px;}
.ws5{word-spacing:-0.151800px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:1732.512000px;}
._9{margin-left:-20.088000px;}
._b{margin-left:-12.792000px;}
._5{margin-left:-11.424000px;}
._c{margin-left:-10.176000px;}
._2{margin-left:-8.856000px;}
._8{margin-left:-7.728000px;}
._4{margin-left:-5.712000px;}
._3{margin-left:-4.056000px;}
._7{margin-left:-2.016000px;}
._6{margin-left:-1.008000px;}
._1{width:1.152000px;}
._16{width:3.024000px;}
._a{width:4.296000px;}
._1e{width:5.340000px;}
._26{width:6.624000px;}
._10{width:7.632000px;}
._13{width:8.916000px;}
._24{width:10.512000px;}
._1d{width:12.300000px;}
._1c{width:15.228000px;}
._1b{width:16.848000px;}
._25{width:18.192000px;}
._1f{width:19.776000px;}
._12{width:20.940000px;}
._f{width:22.992000px;}
._e{width:24.648000px;}
._22{width:26.064000px;}
._14{width:35.664000px;}
._15{width:36.816000px;}
._23{width:38.016000px;}
._11{width:41.904000px;}
._1a{width:44.808000px;}
._d{width:60.192000px;}
._18{width:65.280000px;}
._20{width:68.256000px;}
._21{width:69.696000px;}
._0{width:170.520000px;}
._19{width:247.152000px;}
._17{width:670.800000px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(255,51,51);}
.fc2{color:rgb(186,0,78);}
.fc5{color:rgb(0,128,0);}
.fc3{color:rgb(0,102,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:72.000000px;}
.fsb{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fs8{font-size:151.200000px;}
.fs9{font-size:151.800000px;}
.fs6{font-size:156.000000px;}
.fs1{font-size:168.000000px;}
.fs4{font-size:192.000000px;}
.fs5{font-size:240.000000px;}
.fs3{font-size:324.000000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:10.050000px;}
.y35{bottom:10.200000px;}
.y4{bottom:61.650000px;}
.y3{bottom:112.050000px;}
.y2{bottom:162.450000px;}
.y31{bottom:297.750000px;}
.y30{bottom:344.550000px;}
.y2f{bottom:391.200000px;}
.y2e{bottom:438.000000px;}
.y5d{bottom:448.500000px;}
.y50{bottom:463.950000px;}
.y51{bottom:465.750000px;}
.y2d{bottom:498.900000px;}
.y52{bottom:601.800000px;}
.y1c{bottom:624.300000px;}
.y5c{bottom:635.850000px;}
.y53{bottom:646.500000px;}
.y1b{bottom:668.100000px;}
.y1a{bottom:714.900000px;}
.y19{bottom:763.650000px;}
.y18{bottom:855.150000px;}
.y17{bottom:904.050000px;}
.y16{bottom:995.550000px;}
.y15{bottom:1042.350000px;}
.y14{bottom:1091.100000px;}
.y1d{bottom:1142.850000px;}
.y4f{bottom:1265.700000px;}
.y2b{bottom:1434.900000px;}
.y2a{bottom:1456.500000px;}
.y29{bottom:1478.100000px;}
.y12{bottom:1490.400000px;}
.y11{bottom:1533.600000px;}
.y4c{bottom:1538.400000px;}
.y61{bottom:1544.850000px;}
.y10{bottom:1576.800000px;}
.y4b{bottom:1578.900000px;}
.y60{bottom:1585.500000px;}
.y4a{bottom:1619.400000px;}
.yf{bottom:1620.000000px;}
.y5f{bottom:1626.000000px;}
.y4d{bottom:1698.750000px;}
.y1{bottom:1712.250000px;}
.yd{bottom:1793.100000px;}
.yc{bottom:1836.300000px;}
.y62{bottom:1877.400000px;}
.yb{bottom:1928.100000px;}
.ya{bottom:1971.300000px;}
.y9{bottom:2039.700000px;}
.y65{bottom:2063.700000px;}
.y64{bottom:2104.200000px;}
.y21{bottom:2129.550000px;}
.y63{bottom:2144.700000px;}
.y20{bottom:2172.750000px;}
.y1f{bottom:2215.950000px;}
.y1e{bottom:2261.400000px;}
.y34{bottom:2341.500000px;}
.y27{bottom:2351.100000px;}
.y26{bottom:2426.550000px;}
.y25{bottom:2469.750000px;}
.y24{bottom:2512.950000px;}
.y23{bottom:2556.150000px;}
.y22{bottom:2601.600000px;}
.y54{bottom:2652.000000px;}
.y32{bottom:2690.250000px;}
.y28{bottom:2694.450000px;}
.y3c{bottom:2784.750000px;}
.y5e{bottom:2974.350000px;}
.y5b{bottom:3223.650000px;}
.y4e{bottom:3238.800000px;}
.y49{bottom:3252.450000px;}
.y5a{bottom:3266.850000px;}
.y48{bottom:3328.050000px;}
.y59{bottom:3353.250000px;}
.y58{bottom:3396.450000px;}
.y57{bottom:3439.650000px;}
.y3b{bottom:3451.650000px;}
.y3a{bottom:3492.150000px;}
.y39{bottom:3532.650000px;}
.y38{bottom:3613.800000px;}
.y37{bottom:3654.300000px;}
.y36{bottom:3694.800000px;}
.y13{bottom:3756.000000px;}
.y47{bottom:3910.950000px;}
.y46{bottom:3951.450000px;}
.y45{bottom:3991.950000px;}
.y44{bottom:4032.450000px;}
.y43{bottom:4072.950000px;}
.y42{bottom:4113.450000px;}
.y41{bottom:4153.950000px;}
.y40{bottom:4194.600000px;}
.y3f{bottom:4235.100000px;}
.y2c{bottom:4267.050000px;}
.y55{bottom:4270.200000px;}
.y3e{bottom:4275.600000px;}
.y3d{bottom:4316.100000px;}
.y56{bottom:4333.950000px;}
.ye{bottom:4385.250000px;}
.y8{bottom:4387.500000px;}
.y7{bottom:4565.400000px;}
.y6{bottom:4658.400000px;}
.y5{bottom:4806.000000px;}
.hb{height:45.600000px;}
.ha{height:52.453125px;}
.h12{height:73.687500px;}
.h10{height:82.898438px;}
.h8{height:95.976562px;}
.he{height:104.343750px;}
.h9{height:104.835938px;}
.h1{height:104.906250px;}
.h7{height:113.648438px;}
.hf{height:113.777344px;}
.h13{height:121.734375px;}
.h2{height:122.390625px;}
.h11{height:127.298437px;}
.hc{height:130.454297px;}
.hd{height:130.971973px;}
.h5{height:139.875000px;}
.h6{height:174.726562px;}
.h4{height:235.880859px;}
.h3{height:262.089844px;}
.h0{height:5352.000000px;}
.w2{width:114.150000px;}
.w3{width:123.300000px;}
.w1{width:3784.200000px;}
.w0{width:3784.500000px;}
.x0{left:0.000000px;}
.x1c{left:9.600000px;}
.x14{left:172.200000px;}
.x17{left:175.200000px;}
.x13{left:180.750000px;}
.x1e{left:184.950000px;}
.x1f{left:190.650000px;}
.x18{left:202.800000px;}
.x9{left:206.250000px;}
.xd{left:216.450000px;}
.x1{left:217.800000px;}
.x16{left:225.300000px;}
.x15{left:274.200000px;}
.x20{left:369.300000px;}
.xa{left:429.150000px;}
.xb{left:435.900000px;}
.x6{left:492.900000px;}
.x28{left:500.550000px;}
.x24{left:504.750000px;}
.x27{left:514.800000px;}
.x7{left:658.500000px;}
.x5{left:685.350000px;}
.x1b{left:688.800000px;}
.x1d{left:709.950000px;}
.x2{left:782.400000px;}
.xe{left:826.800000px;}
.x8{left:861.600000px;}
.x2d{left:1054.650000px;}
.x26{left:1065.750000px;}
.x25{left:1152.000000px;}
.x29{left:1213.950000px;}
.x21{left:1260.750000px;}
.x2e{left:1271.550000px;}
.x3{left:1281.900000px;}
.x22{left:1425.900000px;}
.x23{left:1481.850000px;}
.x4{left:1622.550000px;}
.xf{left:1941.000000px;}
.x31{left:1958.250000px;}
.x10{left:1966.500000px;}
.x11{left:1992.000000px;}
.x2f{left:2011.500000px;}
.x2b{left:2040.150000px;}
.x2c{left:2057.400000px;}
.x32{left:2068.650000px;}
.x19{left:2195.250000px;}
.x12{left:2335.500000px;}
.x1a{left:2478.000000px;}
.xc{left:2660.250000px;}
.x30{left:2914.650000px;}
.x2a{left:2960.400000px;}
@media print{
.v2{vertical-align:-29.866667pt;}
.v1{vertical-align:-7.466667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:39.466667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.405333pt;}
.lsd{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.682667pt;}
.lsb{letter-spacing:5.116338pt;}
.ls7{letter-spacing:5.182213pt;}
.lsa{letter-spacing:8.387138pt;}
.ls9{letter-spacing:11.688631pt;}
.lsc{letter-spacing:12.952426pt;}
.ls8{letter-spacing:12.986432pt;}
.ls0{letter-spacing:42.133333pt;}
.ls3{letter-spacing:48.042667pt;}
.lse{letter-spacing:132.746667pt;}
.ls6{letter-spacing:227.072000pt;}
.ws0{word-spacing:-59.093333pt;}
.ws2{word-spacing:-38.549333pt;}
.ws1{word-spacing:-35.456000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws7{word-spacing:-0.149333pt;}
.ws5{word-spacing:-0.134933pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:1540.010667pt;}
._9{margin-left:-17.856000pt;}
._b{margin-left:-11.370667pt;}
._5{margin-left:-10.154667pt;}
._c{margin-left:-9.045333pt;}
._2{margin-left:-7.872000pt;}
._8{margin-left:-6.869333pt;}
._4{margin-left:-5.077333pt;}
._3{margin-left:-3.605333pt;}
._7{margin-left:-1.792000pt;}
._6{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
._16{width:2.688000pt;}
._a{width:3.818667pt;}
._1e{width:4.746667pt;}
._26{width:5.888000pt;}
._10{width:6.784000pt;}
._13{width:7.925333pt;}
._24{width:9.344000pt;}
._1d{width:10.933333pt;}
._1c{width:13.536000pt;}
._1b{width:14.976000pt;}
._25{width:16.170667pt;}
._1f{width:17.578667pt;}
._12{width:18.613333pt;}
._f{width:20.437333pt;}
._e{width:21.909333pt;}
._22{width:23.168000pt;}
._14{width:31.701333pt;}
._15{width:32.725333pt;}
._23{width:33.792000pt;}
._11{width:37.248000pt;}
._1a{width:39.829333pt;}
._d{width:53.504000pt;}
._18{width:58.026667pt;}
._20{width:60.672000pt;}
._21{width:61.952000pt;}
._0{width:151.573333pt;}
._19{width:219.690667pt;}
._17{width:596.266667pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fs8{font-size:134.400000pt;}
.fs9{font-size:134.933333pt;}
.fs6{font-size:138.666667pt;}
.fs1{font-size:149.333333pt;}
.fs4{font-size:170.666667pt;}
.fs5{font-size:213.333333pt;}
.fs3{font-size:288.000000pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:8.933333pt;}
.y35{bottom:9.066667pt;}
.y4{bottom:54.800000pt;}
.y3{bottom:99.600000pt;}
.y2{bottom:144.400000pt;}
.y31{bottom:264.666667pt;}
.y30{bottom:306.266667pt;}
.y2f{bottom:347.733333pt;}
.y2e{bottom:389.333333pt;}
.y5d{bottom:398.666667pt;}
.y50{bottom:412.400000pt;}
.y51{bottom:414.000000pt;}
.y2d{bottom:443.466667pt;}
.y52{bottom:534.933333pt;}
.y1c{bottom:554.933333pt;}
.y5c{bottom:565.200000pt;}
.y53{bottom:574.666667pt;}
.y1b{bottom:593.866667pt;}
.y1a{bottom:635.466667pt;}
.y19{bottom:678.800000pt;}
.y18{bottom:760.133333pt;}
.y17{bottom:803.600000pt;}
.y16{bottom:884.933333pt;}
.y15{bottom:926.533333pt;}
.y14{bottom:969.866667pt;}
.y1d{bottom:1015.866667pt;}
.y4f{bottom:1125.066667pt;}
.y2b{bottom:1275.466667pt;}
.y2a{bottom:1294.666667pt;}
.y29{bottom:1313.866667pt;}
.y12{bottom:1324.800000pt;}
.y11{bottom:1363.200000pt;}
.y4c{bottom:1367.466667pt;}
.y61{bottom:1373.200000pt;}
.y10{bottom:1401.600000pt;}
.y4b{bottom:1403.466667pt;}
.y60{bottom:1409.333333pt;}
.y4a{bottom:1439.466667pt;}
.yf{bottom:1440.000000pt;}
.y5f{bottom:1445.333333pt;}
.y4d{bottom:1510.000000pt;}
.y1{bottom:1522.000000pt;}
.yd{bottom:1593.866667pt;}
.yc{bottom:1632.266667pt;}
.y62{bottom:1668.800000pt;}
.yb{bottom:1713.866667pt;}
.ya{bottom:1752.266667pt;}
.y9{bottom:1813.066667pt;}
.y65{bottom:1834.400000pt;}
.y64{bottom:1870.400000pt;}
.y21{bottom:1892.933333pt;}
.y63{bottom:1906.400000pt;}
.y20{bottom:1931.333333pt;}
.y1f{bottom:1969.733333pt;}
.y1e{bottom:2010.133333pt;}
.y34{bottom:2081.333333pt;}
.y27{bottom:2089.866667pt;}
.y26{bottom:2156.933333pt;}
.y25{bottom:2195.333333pt;}
.y24{bottom:2233.733333pt;}
.y23{bottom:2272.133333pt;}
.y22{bottom:2312.533333pt;}
.y54{bottom:2357.333333pt;}
.y32{bottom:2391.333333pt;}
.y28{bottom:2395.066667pt;}
.y3c{bottom:2475.333333pt;}
.y5e{bottom:2643.866667pt;}
.y5b{bottom:2865.466667pt;}
.y4e{bottom:2878.933333pt;}
.y49{bottom:2891.066667pt;}
.y5a{bottom:2903.866667pt;}
.y48{bottom:2958.266667pt;}
.y59{bottom:2980.666667pt;}
.y58{bottom:3019.066667pt;}
.y57{bottom:3057.466667pt;}
.y3b{bottom:3068.133333pt;}
.y3a{bottom:3104.133333pt;}
.y39{bottom:3140.133333pt;}
.y38{bottom:3212.266667pt;}
.y37{bottom:3248.266667pt;}
.y36{bottom:3284.266667pt;}
.y13{bottom:3338.666667pt;}
.y47{bottom:3476.400000pt;}
.y46{bottom:3512.400000pt;}
.y45{bottom:3548.400000pt;}
.y44{bottom:3584.400000pt;}
.y43{bottom:3620.400000pt;}
.y42{bottom:3656.400000pt;}
.y41{bottom:3692.400000pt;}
.y40{bottom:3728.533333pt;}
.y3f{bottom:3764.533333pt;}
.y2c{bottom:3792.933333pt;}
.y55{bottom:3795.733333pt;}
.y3e{bottom:3800.533333pt;}
.y3d{bottom:3836.533333pt;}
.y56{bottom:3852.400000pt;}
.ye{bottom:3898.000000pt;}
.y8{bottom:3900.000000pt;}
.y7{bottom:4058.133333pt;}
.y6{bottom:4140.800000pt;}
.y5{bottom:4272.000000pt;}
.hb{height:40.533333pt;}
.ha{height:46.625000pt;}
.h12{height:65.500000pt;}
.h10{height:73.687500pt;}
.h8{height:85.312500pt;}
.he{height:92.750000pt;}
.h9{height:93.187500pt;}
.h1{height:93.250000pt;}
.h7{height:101.020833pt;}
.hf{height:101.135417pt;}
.h13{height:108.208333pt;}
.h2{height:108.791667pt;}
.h11{height:113.154167pt;}
.hc{height:115.959375pt;}
.hd{height:116.419531pt;}
.h5{height:124.333333pt;}
.h6{height:155.312500pt;}
.h4{height:209.671875pt;}
.h3{height:232.968750pt;}
.h0{height:4757.333333pt;}
.w2{width:101.466667pt;}
.w3{width:109.600000pt;}
.w1{width:3363.733333pt;}
.w0{width:3364.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:8.533333pt;}
.x14{left:153.066667pt;}
.x17{left:155.733333pt;}
.x13{left:160.666667pt;}
.x1e{left:164.400000pt;}
.x1f{left:169.466667pt;}
.x18{left:180.266667pt;}
.x9{left:183.333333pt;}
.xd{left:192.400000pt;}
.x1{left:193.600000pt;}
.x16{left:200.266667pt;}
.x15{left:243.733333pt;}
.x20{left:328.266667pt;}
.xa{left:381.466667pt;}
.xb{left:387.466667pt;}
.x6{left:438.133333pt;}
.x28{left:444.933333pt;}
.x24{left:448.666667pt;}
.x27{left:457.600000pt;}
.x7{left:585.333333pt;}
.x5{left:609.200000pt;}
.x1b{left:612.266667pt;}
.x1d{left:631.066667pt;}
.x2{left:695.466667pt;}
.xe{left:734.933333pt;}
.x8{left:765.866667pt;}
.x2d{left:937.466667pt;}
.x26{left:947.333333pt;}
.x25{left:1024.000000pt;}
.x29{left:1079.066667pt;}
.x21{left:1120.666667pt;}
.x2e{left:1130.266667pt;}
.x3{left:1139.466667pt;}
.x22{left:1267.466667pt;}
.x23{left:1317.200000pt;}
.x4{left:1442.266667pt;}
.xf{left:1725.333333pt;}
.x31{left:1740.666667pt;}
.x10{left:1748.000000pt;}
.x11{left:1770.666667pt;}
.x2f{left:1788.000000pt;}
.x2b{left:1813.466667pt;}
.x2c{left:1828.800000pt;}
.x32{left:1838.800000pt;}
.x19{left:1951.333333pt;}
.x12{left:2076.000000pt;}
.x1a{left:2202.666667pt;}
.xc{left:2364.666667pt;}
.x30{left:2590.800000pt;}
.x2a{left:2631.466667pt;}
}




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