
    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_b06180cbe206a1b1f9508171.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_32d5058af625f5f0f290b699.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_07fd2b43b58ceee87bc6ccda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_a5ec86b2078f371d6f61920e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_6b9004cd9c05e6f0acedfb91.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_5f3e334f9845d8c6016394fd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_7386e83d4189c333606e323b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738770;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_ff7dd22c3526041223fedf81.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_cebd8ee2f39afb47d0dac1e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_bc8202b54d145910a67c1dce.woff2')format("woff");}.fff{font-family:fff;line-height:0.892578;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_9d7842c572d8bcb45ae616e3.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-11.160000px;}
.lsb{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.015120px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.153360px;}
.ls3{letter-spacing:0.156000px;}
.ls9{letter-spacing:0.178800px;}
.lsc{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.lse{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:71.280000px;}
.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;}
}
.wsa{word-spacing:-60.120000px;}
.wsd{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws7{word-spacing:-11.324880px;}
.ws8{word-spacing:-10.980000px;}
.ws6{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
.ws3{word-spacing:61.560000px;}
._1e{margin-left:-2635.776000px;}
._1f{margin-left:-2578.816560px;}
._19{margin-left:-6.021600px;}
._3{margin-left:-4.229760px;}
._15{margin-left:-2.413440px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._10{width:2.251680px;}
._2{width:3.332640px;}
._14{width:4.721040px;}
._c{width:5.731440px;}
._d{width:6.872400px;}
._9{width:8.241360px;}
._8{width:9.501840px;}
._7{width:11.028960px;}
._6{width:12.191040px;}
._16{width:13.619760px;}
._18{width:16.069920px;}
._12{width:17.270640px;}
._13{width:18.671760px;}
._b{width:19.813680px;}
._11{width:21.453840px;}
._a{width:22.768560px;}
._1b{width:24.854640px;}
._17{width:26.197920px;}
._1a{width:28.565280px;}
._23{width:29.581200px;}
._e{width:31.314240px;}
._20{width:35.252880px;}
._22{width:37.880640px;}
._21{width:38.963520px;}
._25{width:44.341920px;}
._24{width:45.596880px;}
._f{width:59.515440px;}
._1c{width:67.344000px;}
._4{width:85.659120px;}
._27{width:87.130080px;}
._28{width:92.562720px;}
._29{width:94.046880px;}
._5{width:199.620000px;}
._2b{width:272.997600px;}
._2a{width:274.477680px;}
._1d{width:285.870000px;}
._26{width:892.773120px;}
.fc9{color:transparent;}
.fc8{color:rgb(238,0,0);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fsf{font-size:6.000000px;}
.fse{font-size:9.360000px;}
.fsd{font-size:31.875440px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.y66{bottom:-249.150000px;}
.y65{bottom:-215.310000px;}
.y4a{bottom:-187.230000px;}
.y64{bottom:-181.650000px;}
.y59{bottom:-162.750000px;}
.y49{bottom:-153.570000px;}
.y63{bottom:-147.990000px;}
.y58{bottom:-129.090000px;}
.y48{bottom:-119.880000px;}
.y62{bottom:-114.120000px;}
.y57{bottom:-95.400000px;}
.y47{bottom:-86.040000px;}
.y61{bottom:-80.460000px;}
.y56{bottom:-61.560000px;}
.y46{bottom:-52.380000px;}
.y60{bottom:-46.620000px;}
.y55{bottom:-27.900000px;}
.y45{bottom:-21.960000px;}
.y68{bottom:-17.922750px;}
.y5f{bottom:-12.960000px;}
.y44{bottom:-9.360000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:1.837500px;}
.y54{bottom:2.160000px;}
.y6{bottom:3.780000px;}
.y43{bottom:4.500000px;}
.y5e{bottom:5.220000px;}
.y4c{bottom:5.370000px;}
.y9{bottom:12.600000px;}
.y53{bottom:14.220000px;}
.y42{bottom:18.360000px;}
.y5d{bottom:19.260000px;}
.y8{bottom:24.660000px;}
.ya{bottom:25.920000px;}
.y52{bottom:26.280000px;}
.y41{bottom:32.400000px;}
.y5c{bottom:33.120000px;}
.yc{bottom:35.100000px;}
.y51{bottom:38.340000px;}
.y7{bottom:41.580000px;}
.y40{bottom:46.260000px;}
.y5b{bottom:47.160000px;}
.y50{bottom:50.400000px;}
.y6a{bottom:58.320000px;}
.y3f{bottom:60.120000px;}
.y4f{bottom:62.460000px;}
.y67{bottom:63.780000px;}
.y4e{bottom:74.700000px;}
.y5{bottom:75.960000px;}
.y3e{bottom:77.220000px;}
.y9a{bottom:114.300000px;}
.y3c{bottom:122.400000px;}
.y99{bottom:134.100000px;}
.y3b{bottom:142.200000px;}
.y98{bottom:153.900000px;}
.y3a{bottom:162.000000px;}
.y97{bottom:173.730000px;}
.y39{bottom:182.010000px;}
.y96{bottom:193.530000px;}
.y38{bottom:201.810000px;}
.y95{bottom:213.510000px;}
.y37{bottom:221.610000px;}
.y94{bottom:233.310000px;}
.y36{bottom:241.410000px;}
.y93{bottom:253.110000px;}
.y35{bottom:261.210000px;}
.y92{bottom:272.910000px;}
.y34{bottom:281.190000px;}
.y91{bottom:292.710000px;}
.y33{bottom:300.990000px;}
.y90{bottom:312.690000px;}
.y32{bottom:320.790000px;}
.y8f{bottom:332.490000px;}
.y31{bottom:340.590000px;}
.y8e{bottom:352.290000px;}
.y30{bottom:360.390000px;}
.y8d{bottom:372.090000px;}
.y2f{bottom:380.370000px;}
.y8c{bottom:391.890000px;}
.y2e{bottom:400.215000px;}
.y8b{bottom:411.915000px;}
.y2d{bottom:420.015000px;}
.y8a{bottom:431.715000px;}
.y2c{bottom:439.815000px;}
.y89{bottom:451.515000px;}
.y2b{bottom:459.615000px;}
.y88{bottom:471.315000px;}
.y2a{bottom:479.595000px;}
.y87{bottom:491.115000px;}
.y29{bottom:499.395000px;}
.y86{bottom:511.095000px;}
.y28{bottom:519.195000px;}
.y85{bottom:530.895000px;}
.y27{bottom:538.995000px;}
.y84{bottom:550.695000px;}
.y26{bottom:558.795000px;}
.y83{bottom:570.495000px;}
.y25{bottom:578.775000px;}
.y82{bottom:590.295000px;}
.y24{bottom:598.575000px;}
.y81{bottom:610.275000px;}
.y23{bottom:618.375000px;}
.y80{bottom:630.105000px;}
.y22{bottom:638.205000px;}
.y7f{bottom:649.905000px;}
.ya5{bottom:652.065000px;}
.y21{bottom:658.005000px;}
.y7e{bottom:669.705000px;}
.ya4{bottom:671.865000px;}
.y20{bottom:677.985000px;}
.y7d{bottom:689.505000px;}
.ya3{bottom:691.665000px;}
.y1f{bottom:697.785000px;}
.y7c{bottom:709.485000px;}
.ya2{bottom:711.465000px;}
.y1e{bottom:717.045000px;}
.y7b{bottom:729.285000px;}
.y1d{bottom:731.085000px;}
.ya1{bottom:731.445000px;}
.y1c{bottom:745.125000px;}
.y7a{bottom:749.085000px;}
.y4d{bottom:749.445000px;}
.y3d{bottom:750.165000px;}
.ya0{bottom:751.245000px;}
.y5a{bottom:751.965000px;}
.y1b{bottom:759.705000px;}
.y79{bottom:768.885000px;}
.y9f{bottom:771.045000px;}
.y1a{bottom:773.565000px;}
.y19{bottom:787.425000px;}
.y78{bottom:788.685000px;}
.y9e{bottom:790.845000px;}
.y18{bottom:801.105000px;}
.y77{bottom:808.665000px;}
.y9d{bottom:810.645000px;}
.y17{bottom:814.965000px;}
.y16{bottom:828.105000px;}
.y76{bottom:829.725000px;}
.y9c{bottom:830.625000px;}
.y15{bottom:836.025000px;}
.y14{bottom:847.005000px;}
.y9b{bottom:850.425000px;}
.y75{bottom:870.270000px;}
.y13{bottom:881.070000px;}
.y74{bottom:890.070000px;}
.y12{bottom:903.750000px;}
.y73{bottom:909.870000px;}
.y72{bottom:929.850000px;}
.y11{bottom:930.390000px;}
.y71{bottom:949.650000px;}
.y70{bottom:969.450000px;}
.y10{bottom:969.990000px;}
.y6f{bottom:989.250000px;}
.yf{bottom:997.530000px;}
.y6e{bottom:1009.050000px;}
.y4b{bottom:1023.300000px;}
.ye{bottom:1025.250000px;}
.y6d{bottom:1029.030000px;}
.y6c{bottom:1048.830000px;}
.yd{bottom:1050.810000px;}
.y6b{bottom:1068.630000px;}
.y4{bottom:1069.350000px;}
.y3{bottom:1087.560000px;}
.yb{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y1{bottom:1117.080000px;}
.y69{bottom:1122.660000px;}
.h8{height:2.010938px;}
.h26{height:6.257812px;}
.h17{height:6.604102px;}
.h5{height:13.500000px;}
.h13{height:21.961058px;}
.h1b{height:22.140000px;}
.h10{height:25.136719px;}
.h19{height:25.400391px;}
.h1a{height:26.208984px;}
.h9{height:29.158594px;}
.h1f{height:29.464453px;}
.h22{height:31.672266px;}
.h21{height:32.004492px;}
.h15{height:33.683203px;}
.h1d{height:34.036523px;}
.h7{height:34.380000px;}
.h1e{height:34.419375px;}
.h3{height:35.694141px;}
.h11{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:41.726953px;}
.hc{height:42.164648px;}
.hb{height:48.224531px;}
.h25{height:49.255313px;}
.h12{height:50.800781px;}
.hf{height:52.918594px;}
.h23{height:52.998047px;}
.h14{height:55.291992px;}
.h2{height:59.436914px;}
.h4{height:65.884219px;}
.he{height:65.975273px;}
.hd{height:67.565039px;}
.ha{height:68.400000px;}
.h20{height:70.560000px;}
.h24{height:75.093750px;}
.h18{height:85.320000px;}
.h1c{height:86.040000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w4{width:82.080000px;}
.w6{width:101.160000px;}
.wa{width:154.650000px;}
.w9{width:186.870000px;}
.w7{width:270.795000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.w8{width:743.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:4.252500px;}
.x8{left:8.100000px;}
.x12{left:10.800000px;}
.x17{left:21.255000px;}
.xa{left:50.580000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x13{left:86.400000px;}
.x5{left:87.834000px;}
.x16{left:106.956000px;}
.x4{left:108.035987px;}
.xc{left:112.535987px;}
.xe{left:114.695987px;}
.x7{left:190.110000px;}
.x1{left:239.969987px;}
.xd{left:258.914987px;}
.x14{left:310.755000px;}
.xf{left:323.714987px;}
.x11{left:341.175000px;}
.x3{left:354.494987px;}
.x2{left:401.654987px;}
.xb{left:442.184987px;}
.x1a{left:445.604987px;}
.x10{left:473.144987px;}
.x18{left:620.253000px;}
.x15{left:645.630000px;}
.x19{left:762.659987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-9.920000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.013440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.136320pt;}
.ls3{letter-spacing:0.138667pt;}
.ls9{letter-spacing:0.158933pt;}
.lsc{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:63.360000pt;}
.wsa{word-spacing:-53.440000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws7{word-spacing:-10.066560pt;}
.ws8{word-spacing:-9.760000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
.ws3{word-spacing:54.720000pt;}
._1e{margin-left:-2342.912000pt;}
._1f{margin-left:-2292.281387pt;}
._19{margin-left:-5.352533pt;}
._3{margin-left:-3.759787pt;}
._15{margin-left:-2.145280pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._10{width:2.001493pt;}
._2{width:2.962347pt;}
._14{width:4.196480pt;}
._c{width:5.094613pt;}
._d{width:6.108800pt;}
._9{width:7.325653pt;}
._8{width:8.446080pt;}
._7{width:9.803520pt;}
._6{width:10.836480pt;}
._16{width:12.106453pt;}
._18{width:14.284373pt;}
._12{width:15.351680pt;}
._13{width:16.597120pt;}
._b{width:17.612160pt;}
._11{width:19.070080pt;}
._a{width:20.238720pt;}
._1b{width:22.093013pt;}
._17{width:23.287040pt;}
._1a{width:25.391360pt;}
._23{width:26.294400pt;}
._e{width:27.834880pt;}
._20{width:31.335893pt;}
._22{width:33.671680pt;}
._21{width:34.634240pt;}
._25{width:39.415040pt;}
._24{width:40.530560pt;}
._f{width:52.902613pt;}
._1c{width:59.861333pt;}
._4{width:76.141440pt;}
._27{width:77.448960pt;}
._28{width:82.277973pt;}
._29{width:83.597227pt;}
._5{width:177.440000pt;}
._2b{width:242.664533pt;}
._2a{width:243.980160pt;}
._1d{width:254.106667pt;}
._26{width:793.576107pt;}
.fs8{font-size:2.560000pt;}
.fsf{font-size:5.333333pt;}
.fse{font-size:8.320000pt;}
.fsd{font-size:28.333725pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.y66{bottom:-221.466667pt;}
.y65{bottom:-191.386667pt;}
.y4a{bottom:-166.426667pt;}
.y64{bottom:-161.466667pt;}
.y59{bottom:-144.666667pt;}
.y49{bottom:-136.506667pt;}
.y63{bottom:-131.546667pt;}
.y58{bottom:-114.746667pt;}
.y48{bottom:-106.560000pt;}
.y62{bottom:-101.440000pt;}
.y57{bottom:-84.800000pt;}
.y47{bottom:-76.480000pt;}
.y61{bottom:-71.520000pt;}
.y56{bottom:-54.720000pt;}
.y46{bottom:-46.560000pt;}
.y60{bottom:-41.440000pt;}
.y55{bottom:-24.800000pt;}
.y45{bottom:-19.520000pt;}
.y68{bottom:-15.931333pt;}
.y5f{bottom:-11.520000pt;}
.y44{bottom:-8.320000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:1.633333pt;}
.y54{bottom:1.920000pt;}
.y6{bottom:3.360000pt;}
.y43{bottom:4.000000pt;}
.y5e{bottom:4.640000pt;}
.y4c{bottom:4.773333pt;}
.y9{bottom:11.200000pt;}
.y53{bottom:12.640000pt;}
.y42{bottom:16.320000pt;}
.y5d{bottom:17.120000pt;}
.y8{bottom:21.920000pt;}
.ya{bottom:23.040000pt;}
.y52{bottom:23.360000pt;}
.y41{bottom:28.800000pt;}
.y5c{bottom:29.440000pt;}
.yc{bottom:31.200000pt;}
.y51{bottom:34.080000pt;}
.y7{bottom:36.960000pt;}
.y40{bottom:41.120000pt;}
.y5b{bottom:41.920000pt;}
.y50{bottom:44.800000pt;}
.y6a{bottom:51.840000pt;}
.y3f{bottom:53.440000pt;}
.y4f{bottom:55.520000pt;}
.y67{bottom:56.693333pt;}
.y4e{bottom:66.400000pt;}
.y5{bottom:67.520000pt;}
.y3e{bottom:68.640000pt;}
.y9a{bottom:101.600000pt;}
.y3c{bottom:108.800000pt;}
.y99{bottom:119.200000pt;}
.y3b{bottom:126.400000pt;}
.y98{bottom:136.800000pt;}
.y3a{bottom:144.000000pt;}
.y97{bottom:154.426667pt;}
.y39{bottom:161.786667pt;}
.y96{bottom:172.026667pt;}
.y38{bottom:179.386667pt;}
.y95{bottom:189.786667pt;}
.y37{bottom:196.986667pt;}
.y94{bottom:207.386667pt;}
.y36{bottom:214.586667pt;}
.y93{bottom:224.986667pt;}
.y35{bottom:232.186667pt;}
.y92{bottom:242.586667pt;}
.y34{bottom:249.946667pt;}
.y91{bottom:260.186667pt;}
.y33{bottom:267.546667pt;}
.y90{bottom:277.946667pt;}
.y32{bottom:285.146667pt;}
.y8f{bottom:295.546667pt;}
.y31{bottom:302.746667pt;}
.y8e{bottom:313.146667pt;}
.y30{bottom:320.346667pt;}
.y8d{bottom:330.746667pt;}
.y2f{bottom:338.106667pt;}
.y8c{bottom:348.346667pt;}
.y2e{bottom:355.746667pt;}
.y8b{bottom:366.146667pt;}
.y2d{bottom:373.346667pt;}
.y8a{bottom:383.746667pt;}
.y2c{bottom:390.946667pt;}
.y89{bottom:401.346667pt;}
.y2b{bottom:408.546667pt;}
.y88{bottom:418.946667pt;}
.y2a{bottom:426.306667pt;}
.y87{bottom:436.546667pt;}
.y29{bottom:443.906667pt;}
.y86{bottom:454.306667pt;}
.y28{bottom:461.506667pt;}
.y85{bottom:471.906667pt;}
.y27{bottom:479.106667pt;}
.y84{bottom:489.506667pt;}
.y26{bottom:496.706667pt;}
.y83{bottom:507.106667pt;}
.y25{bottom:514.466667pt;}
.y82{bottom:524.706667pt;}
.y24{bottom:532.066667pt;}
.y81{bottom:542.466667pt;}
.y23{bottom:549.666667pt;}
.y80{bottom:560.093333pt;}
.y22{bottom:567.293333pt;}
.y7f{bottom:577.693333pt;}
.ya5{bottom:579.613333pt;}
.y21{bottom:584.893333pt;}
.y7e{bottom:595.293333pt;}
.ya4{bottom:597.213333pt;}
.y20{bottom:602.653333pt;}
.y7d{bottom:612.893333pt;}
.ya3{bottom:614.813333pt;}
.y1f{bottom:620.253333pt;}
.y7c{bottom:630.653333pt;}
.ya2{bottom:632.413333pt;}
.y1e{bottom:637.373333pt;}
.y7b{bottom:648.253333pt;}
.y1d{bottom:649.853333pt;}
.ya1{bottom:650.173333pt;}
.y1c{bottom:662.333333pt;}
.y7a{bottom:665.853333pt;}
.y4d{bottom:666.173333pt;}
.y3d{bottom:666.813333pt;}
.ya0{bottom:667.773333pt;}
.y5a{bottom:668.413333pt;}
.y1b{bottom:675.293333pt;}
.y79{bottom:683.453333pt;}
.y9f{bottom:685.373333pt;}
.y1a{bottom:687.613333pt;}
.y19{bottom:699.933333pt;}
.y78{bottom:701.053333pt;}
.y9e{bottom:702.973333pt;}
.y18{bottom:712.093333pt;}
.y77{bottom:718.813333pt;}
.y9d{bottom:720.573333pt;}
.y17{bottom:724.413333pt;}
.y16{bottom:736.093333pt;}
.y76{bottom:737.533333pt;}
.y9c{bottom:738.333333pt;}
.y15{bottom:743.133333pt;}
.y14{bottom:752.893333pt;}
.y9b{bottom:755.933333pt;}
.y75{bottom:773.573333pt;}
.y13{bottom:783.173333pt;}
.y74{bottom:791.173333pt;}
.y12{bottom:803.333333pt;}
.y73{bottom:808.773333pt;}
.y72{bottom:826.533333pt;}
.y11{bottom:827.013333pt;}
.y71{bottom:844.133333pt;}
.y70{bottom:861.733333pt;}
.y10{bottom:862.213333pt;}
.y6f{bottom:879.333333pt;}
.yf{bottom:886.693333pt;}
.y6e{bottom:896.933333pt;}
.y4b{bottom:909.600000pt;}
.ye{bottom:911.333333pt;}
.y6d{bottom:914.693333pt;}
.y6c{bottom:932.293333pt;}
.yd{bottom:934.053333pt;}
.y6b{bottom:949.893333pt;}
.y4{bottom:950.533333pt;}
.y3{bottom:966.720000pt;}
.yb{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y1{bottom:992.960000pt;}
.y69{bottom:997.920000pt;}
.h8{height:1.787500pt;}
.h26{height:5.562500pt;}
.h17{height:5.870312pt;}
.h5{height:12.000000pt;}
.h13{height:19.520940pt;}
.h1b{height:19.680000pt;}
.h10{height:22.343750pt;}
.h19{height:22.578125pt;}
.h1a{height:23.296875pt;}
.h9{height:25.918750pt;}
.h1f{height:26.190625pt;}
.h22{height:28.153125pt;}
.h21{height:28.448437pt;}
.h15{height:29.940625pt;}
.h1d{height:30.254687pt;}
.h7{height:30.560000pt;}
.h1e{height:30.595000pt;}
.h3{height:31.728125pt;}
.h11{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:37.090625pt;}
.hc{height:37.479688pt;}
.hb{height:42.866250pt;}
.h25{height:43.782500pt;}
.h12{height:45.156250pt;}
.hf{height:47.038750pt;}
.h23{height:47.109375pt;}
.h14{height:49.148438pt;}
.h2{height:52.832812pt;}
.h4{height:58.563750pt;}
.he{height:58.644688pt;}
.hd{height:60.057813pt;}
.ha{height:60.800000pt;}
.h20{height:62.720000pt;}
.h24{height:66.750000pt;}
.h18{height:75.840000pt;}
.h1c{height:76.480000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w4{width:72.960000pt;}
.w6{width:89.920000pt;}
.wa{width:137.466667pt;}
.w9{width:166.106667pt;}
.w7{width:240.706667pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.w8{width:660.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.780000pt;}
.x8{left:7.200000pt;}
.x12{left:9.600000pt;}
.x17{left:18.893333pt;}
.xa{left:44.960000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x13{left:76.800000pt;}
.x5{left:78.074667pt;}
.x16{left:95.072000pt;}
.x4{left:96.031988pt;}
.xc{left:100.031988pt;}
.xe{left:101.951988pt;}
.x7{left:168.986667pt;}
.x1{left:213.306655pt;}
.xd{left:230.146655pt;}
.x14{left:276.226667pt;}
.xf{left:287.746655pt;}
.x11{left:303.266667pt;}
.x3{left:315.106655pt;}
.x2{left:357.026655pt;}
.xb{left:393.053322pt;}
.x1a{left:396.093322pt;}
.x10{left:420.573322pt;}
.x18{left:551.336000pt;}
.x15{left:573.893333pt;}
.x19{left:677.919988pt;}
}




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