
    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_961a127439e06c24f4f4a4ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_afb98800ecc59f8bcf69785d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_d97cce18154cf02c3e4f4d41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_e5b63b4223b021689ee2a446.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_b938b6ae78394256da3ad6e4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4272de2fb0983b2d461061c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_6af8d2c08b1d0c8bcaaa847b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_e2deea9757168f415173e794.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.085938;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_7cd5647ec8747a67c10b677c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_ccd2cfcf6756eae1211a9770.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ad3f0892f82beeecaf855e24.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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_4f5ca765d602bb298452ef5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.600000px;}
.v2{vertical-align:91.140000px;}
.ls9{letter-spacing:-10.380000px;}
.ls17{letter-spacing:-1.734000px;}
.lsf{letter-spacing:-1.644000px;}
.lsc{letter-spacing:-1.566000px;}
.ls10{letter-spacing:-0.846000px;}
.ls19{letter-spacing:-0.678000px;}
.ls2c{letter-spacing:-0.666000px;}
.ls1{letter-spacing:-0.376200px;}
.ls2{letter-spacing:-0.364800px;}
.ls24{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.346800px;}
.ls16{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.211800px;}
.lsa{letter-spacing:-0.124800px;}
.ls1d{letter-spacing:-0.122400px;}
.ls2f{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.091200px;}
.ls1e{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.054720px;}
.ls18{letter-spacing:-0.012240px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.027480px;}
.ls4{letter-spacing:0.028224px;}
.ls2e{letter-spacing:0.034560px;}
.ls26{letter-spacing:0.054720px;}
.ls21{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.123000px;}
.ls3{letter-spacing:0.142560px;}
.lsb{letter-spacing:0.189600px;}
.lsd{letter-spacing:0.200400px;}
.ls1a{letter-spacing:0.232800px;}
.ls13{letter-spacing:0.274200px;}
.ls12{letter-spacing:0.402600px;}
.ls5{letter-spacing:0.475200px;}
.ls1f{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.504600px;}
.ls11{letter-spacing:0.708000px;}
.ls20{letter-spacing:4.392000px;}
.ls27{letter-spacing:6.120000px;}
.ls7{letter-spacing:9.972720px;}
.ls15{letter-spacing:13.020000px;}
.ls29{letter-spacing:13.522176px;}
.ls25{letter-spacing:18.728640px;}
.ls28{letter-spacing:30.600000px;}
.ls2a{letter-spacing:37.080000px;}
.ls8{letter-spacing:47.412720px;}
.ls1c{letter-spacing:97.560000px;}
.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:-167.760000px;}
.wsd{word-spacing:-131.760000px;}
.ws21{word-spacing:-108.000000px;}
.ws23{word-spacing:-79.200000px;}
.ws8{word-spacing:-50.998320px;}
.ws2{word-spacing:-32.022144px;}
.ws1{word-spacing:-31.645944px;}
.ws3{word-spacing:-30.060000px;}
.ws2c{word-spacing:-29.749200px;}
.ws2d{word-spacing:-28.549200px;}
.ws27{word-spacing:-28.494720px;}
.ws2a{word-spacing:-28.474560px;}
.ws28{word-spacing:-28.404000px;}
.ws29{word-spacing:-28.385280px;}
.ws2b{word-spacing:-28.330800px;}
.ws25{word-spacing:-27.792000px;}
.ws26{word-spacing:-27.774000px;}
.ws14{word-spacing:-27.455280px;}
.ws15{word-spacing:-27.149880px;}
.ws16{word-spacing:-27.021480px;}
.wse{word-spacing:-26.947680px;}
.wsb{word-spacing:-26.936880px;}
.ws17{word-spacing:-26.899512px;}
.wsf{word-spacing:-26.776512px;}
.ws12{word-spacing:-26.747280px;}
.ws10{word-spacing:-26.685312px;}
.wsa{word-spacing:-26.622480px;}
.ws13{word-spacing:-25.901280px;}
.wsc{word-spacing:-25.181280px;}
.ws11{word-spacing:-25.132512px;}
.ws1c{word-spacing:-24.641520px;}
.ws1a{word-spacing:-24.396480px;}
.ws1d{word-spacing:-24.226152px;}
.ws18{word-spacing:-24.106320px;}
.ws1f{word-spacing:-23.976000px;}
.ws1e{word-spacing:-23.940000px;}
.ws1b{word-spacing:-23.730720px;}
.ws19{word-spacing:-22.674720px;}
.ws22{word-spacing:-21.980712px;}
.ws20{word-spacing:-21.852000px;}
.ws9{word-spacing:-16.367280px;}
.ws5{word-spacing:-14.645232px;}
.ws4{word-spacing:-14.280432px;}
.ws7{word-spacing:0.000000px;}
.ws24{word-spacing:4441.679184px;}
.ws6{word-spacing:4479.839184px;}
._14{margin-left:-12.683520px;}
._1b{margin-left:-11.309280px;}
._8{margin-left:-8.458080px;}
._6{margin-left:-6.362304px;}
._4{margin-left:-5.038080px;}
._1{margin-left:-3.460320px;}
._2{margin-left:-1.583040px;}
._0{width:1.614240px;}
._3{width:2.928720px;}
._7{width:3.990720px;}
._12{width:5.515200px;}
._18{width:7.110240px;}
._b{width:10.375440px;}
._c{width:11.425680px;}
._10{width:12.563760px;}
._11{width:13.964640px;}
._a{width:18.915840px;}
._9{width:20.169840px;}
._17{width:21.402000px;}
._15{width:23.767680px;}
._16{width:24.972960px;}
._5{width:26.984064px;}
._1a{width:29.712000px;}
._19{width:30.740160px;}
._1c{width:37.062240px;}
._1d{width:38.331360px;}
._d{width:47.085600px;}
._e{width:52.015008px;}
._f{width:53.332896px;}
._13{width:1350.600240px;}
.fc9{color:rgb(14,40,65);}
.fc6{color:rgb(8,79,106);}
.fc3{color:rgb(33,95,154);}
.fc7{color:rgb(38,38,38);}
.fc5{color:rgb(116,116,116);}
.fc4{color:rgb(118,118,118);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(125,52,13);}
.fc8{color:rgb(192,0,0);}
.fc0{color:rgb(128,53,14);}
.fs4{font-size:72.144000px;}
.fs10{font-size:79.200000px;}
.fs5{font-size:84.240000px;}
.fsc{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fse{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fs13{font-size:113.760000px;}
.fs14{font-size:113.904000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:120.384000px;}
.fs9{font-size:131.760000px;}
.fsa{font-size:131.904000px;}
.fs11{font-size:144.000000px;}
.fs0{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs1{font-size:192.240000px;}
.fs8{font-size:216.000000px;}
.fs12{font-size:216.144000px;}
.fs6{font-size:264.240000px;}
.fsb{font-size:264.384000px;}
.fs15{font-size:360.144000px;}
.y46{bottom:-799.950000px;}
.y4c{bottom:-741.450000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.708000px;}
.yd{bottom:30.852000px;}
.yc{bottom:31.788000px;}
.y4a{bottom:68.508000px;}
.y2e{bottom:91.770000px;}
.y24{bottom:91.830000px;}
.y26{bottom:91.875000px;}
.y2a{bottom:91.905000px;}
.yb{bottom:95.976000px;}
.y67{bottom:119.736000px;}
.y20{bottom:124.884000px;}
.y39{bottom:124.920000px;}
.ya{bottom:131.976000px;}
.y45{bottom:139.284000px;}
.y50{bottom:140.796000px;}
.y66{bottom:149.616000px;}
.y38{bottom:157.320000px;}
.y1f{bottom:160.890000px;}
.y9{bottom:164.490000px;}
.y7{bottom:166.110000px;}
.y4f{bottom:173.190000px;}
.y44{bottom:174.570000px;}
.y65{bottom:180.390000px;}
.y37{bottom:189.720000px;}
.y15{bottom:192.675000px;}
.y1e{bottom:196.890000px;}
.y8{bottom:200.490000px;}
.y6{bottom:202.110000px;}
.y36{bottom:222.120000px;}
.y5{bottom:238.110000px;}
.y14{bottom:252.975000px;}
.y35{bottom:254.520000px;}
.y64{bottom:273.135000px;}
.y4{bottom:274.110000px;}
.y34{bottom:286.950000px;}
.y1d{bottom:299.370000px;}
.y56{bottom:303.690000px;}
.y49{bottom:307.410000px;}
.y3{bottom:309.960000px;}
.y59{bottom:313.410000px;}
.y13{bottom:313.485000px;}
.y33{bottom:319.350000px;}
.y1c{bottom:335.055000px;}
.y63{bottom:335.955000px;}
.y43{bottom:337.860000px;}
.y48{bottom:339.840000px;}
.y31{bottom:341.460000px;}
.y55{bottom:342.570000px;}
.y32{bottom:351.750000px;}
.y22{bottom:357.270000px;}
.y62{bottom:366.735000px;}
.y42{bottom:370.260000px;}
.y1b{bottom:370.695000px;}
.y47{bottom:372.240000px;}
.y12{bottom:373.785000px;}
.y30{bottom:378.000000px;}
.y54{bottom:381.450000px;}
.y1a{bottom:406.335000px;}
.y2d{bottom:414.540000px;}
.y58{bottom:415.515000px;}
.y61{bottom:428.295000px;}
.y21{bottom:428.580000px;}
.y5a{bottom:431.250000px;}
.y11{bottom:434.085000px;}
.y68{bottom:438.990000px;}
.y2b{bottom:450.900000px;}
.y60{bottom:459.105000px;}
.y57{bottom:473.835000px;}
.y53{bottom:483.555000px;}
.y29{bottom:487.440000px;}
.y5f{bottom:489.885000px;}
.y10{bottom:494.610000px;}
.y4d{bottom:503.130000px;}
.y2f{bottom:506.310000px;}
.y19{bottom:507.705000px;}
.y28{bottom:523.980000px;}
.y2c{bottom:542.805000px;}
.y5e{bottom:551.445000px;}
.yf{bottom:554.910000px;}
.y27{bottom:560.520000px;}
.y52{bottom:561.885000px;}
.y51{bottom:575.100000px;}
.y5d{bottom:578.805000px;}
.y25{bottom:597.060000px;}
.y3f{bottom:597.600000px;}
.y5c{bottom:606.165000px;}
.y18{bottom:608.865000px;}
.y3e{bottom:630.000000px;}
.y23{bottom:633.600000px;}
.y2{bottom:640.950000px;}
.y17{bottom:644.505000px;}
.y3d{bottom:662.400000px;}
.ye{bottom:670.965000px;}
.y41{bottom:678.600000px;}
.y3a{bottom:683.355000px;}
.y3c{bottom:694.830000px;}
.y1{bottom:698.550000px;}
.y4e{bottom:703.950000px;}
.y40{bottom:711.030000px;}
.y5b{bottom:712.980000px;}
.y16{bottom:717.300000px;}
.y3b{bottom:727.230000px;}
.h6{height:62.527148px;}
.h15{height:66.863672px;}
.h18{height:66.964219px;}
.h17{height:67.565039px;}
.h7{height:73.010742px;}
.h20{height:75.410156px;}
.h1c{height:76.201172px;}
.h26{height:79.432031px;}
.h27{height:79.532578px;}
.h2{height:81.529594px;}
.h3{height:81.901758px;}
.h5{height:81.999844px;}
.h4{height:83.956641px;}
.h1d{height:84.057187px;}
.h25{height:87.097500px;}
.h28{height:92.169000px;}
.h19{height:93.603516px;}
.h1b{height:93.728320px;}
.h1a{height:93.761719px;}
.h1e{height:93.886734px;}
.h11{height:104.211914px;}
.h12{height:104.336719px;}
.h10{height:104.388047px;}
.h1f{height:106.347656px;}
.hd{height:114.196289px;}
.hf{height:114.321094px;}
.hc{height:114.389297px;}
.he{height:114.514313px;}
.h22{height:121.710938px;}
.h9{height:145.397461px;}
.ha{height:145.522266px;}
.h24{height:150.820312px;}
.h1{height:166.614258px;}
.h14{height:176.400000px;}
.hb{height:187.207031px;}
.h23{height:187.331836px;}
.h21{height:195.528047px;}
.h16{height:201.780000px;}
.h8{height:229.016602px;}
.h13{height:229.141406px;}
.h29{height:304.399055px;}
.h0{height:810.000000px;}
.w2{width:237.600000px;}
.w3{width:248.400000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xe{left:2.445000px;}
.x15{left:64.619979px;}
.x1{left:79.235979px;}
.x23{left:84.635979px;}
.x1d{left:93.743979px;}
.x7{left:109.799979px;}
.x9{left:120.275979px;}
.x2d{left:121.427979px;}
.xa{left:127.187979px;}
.x2e{left:136.835979px;}
.x3{left:144.647979px;}
.x27{left:200.804979px;}
.x13{left:205.124979px;}
.x26{left:219.704979px;}
.x28{left:234.464979px;}
.x24{left:247.319979px;}
.x2a{left:249.224979px;}
.xb{left:280.724979px;}
.x2b{left:301.424979px;}
.x14{left:306.104979px;}
.x16{left:339.404979px;}
.x19{left:340.664979px;}
.x17{left:343.184979px;}
.x18{left:351.644979px;}
.x1e{left:366.119979px;}
.x6{left:414.074979px;}
.x8{left:474.509979px;}
.x1a{left:486.104979px;}
.x22{left:487.229979px;}
.x2{left:535.244979px;}
.x2c{left:536.729979px;}
.x5{left:599.684979px;}
.xc{left:604.229979px;}
.x29{left:642.239979px;}
.x1f{left:800.969979px;}
.x2f{left:804.059979px;}
.x25{left:809.969979px;}
.xd{left:825.300000px;}
.x12{left:836.279979px;}
.x11{left:851.684979px;}
.x10{left:861.044979px;}
.x1b{left:887.789979px;}
.x1c{left:939.089979px;}
.x4{left:983.849979px;}
.x20{left:1012.109979px;}
.x21{left:1061.459979px;}
.xf{left:1062.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.v2{vertical-align:81.013333pt;}
.ls9{letter-spacing:-9.226667pt;}
.ls17{letter-spacing:-1.541333pt;}
.lsf{letter-spacing:-1.461333pt;}
.lsc{letter-spacing:-1.392000pt;}
.ls10{letter-spacing:-0.752000pt;}
.ls19{letter-spacing:-0.602667pt;}
.ls2c{letter-spacing:-0.592000pt;}
.ls1{letter-spacing:-0.334400pt;}
.ls2{letter-spacing:-0.324267pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.308267pt;}
.ls16{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.188267pt;}
.lsa{letter-spacing:-0.110933pt;}
.ls1d{letter-spacing:-0.108800pt;}
.ls2f{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.081067pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.048640pt;}
.ls18{letter-spacing:-0.010880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.024427pt;}
.ls4{letter-spacing:0.025088pt;}
.ls2e{letter-spacing:0.030720pt;}
.ls26{letter-spacing:0.048640pt;}
.ls21{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.109333pt;}
.ls3{letter-spacing:0.126720pt;}
.lsb{letter-spacing:0.168533pt;}
.lsd{letter-spacing:0.178133pt;}
.ls1a{letter-spacing:0.206933pt;}
.ls13{letter-spacing:0.243733pt;}
.ls12{letter-spacing:0.357867pt;}
.ls5{letter-spacing:0.422400pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.448533pt;}
.ls11{letter-spacing:0.629333pt;}
.ls20{letter-spacing:3.904000pt;}
.ls27{letter-spacing:5.440000pt;}
.ls7{letter-spacing:8.864640pt;}
.ls15{letter-spacing:11.573333pt;}
.ls29{letter-spacing:12.019712pt;}
.ls25{letter-spacing:16.647680pt;}
.ls28{letter-spacing:27.200000pt;}
.ls2a{letter-spacing:32.960000pt;}
.ls8{letter-spacing:42.144640pt;}
.ls1c{letter-spacing:86.720000pt;}
.ws0{word-spacing:-149.120000pt;}
.wsd{word-spacing:-117.120000pt;}
.ws21{word-spacing:-96.000000pt;}
.ws23{word-spacing:-70.400000pt;}
.ws8{word-spacing:-45.331840pt;}
.ws2{word-spacing:-28.464128pt;}
.ws1{word-spacing:-28.129728pt;}
.ws3{word-spacing:-26.720000pt;}
.ws2c{word-spacing:-26.443733pt;}
.ws2d{word-spacing:-25.377067pt;}
.ws27{word-spacing:-25.328640pt;}
.ws2a{word-spacing:-25.310720pt;}
.ws28{word-spacing:-25.248000pt;}
.ws29{word-spacing:-25.231360pt;}
.ws2b{word-spacing:-25.182933pt;}
.ws25{word-spacing:-24.704000pt;}
.ws26{word-spacing:-24.688000pt;}
.ws14{word-spacing:-24.404693pt;}
.ws15{word-spacing:-24.133227pt;}
.ws16{word-spacing:-24.019093pt;}
.wse{word-spacing:-23.953493pt;}
.wsb{word-spacing:-23.943893pt;}
.ws17{word-spacing:-23.910677pt;}
.wsf{word-spacing:-23.801344pt;}
.ws12{word-spacing:-23.775360pt;}
.ws10{word-spacing:-23.720277pt;}
.wsa{word-spacing:-23.664427pt;}
.ws13{word-spacing:-23.023360pt;}
.wsc{word-spacing:-22.383360pt;}
.ws11{word-spacing:-22.340011pt;}
.ws1c{word-spacing:-21.903573pt;}
.ws1a{word-spacing:-21.685760pt;}
.ws1d{word-spacing:-21.534357pt;}
.ws18{word-spacing:-21.427840pt;}
.ws1f{word-spacing:-21.312000pt;}
.ws1e{word-spacing:-21.280000pt;}
.ws1b{word-spacing:-21.093973pt;}
.ws19{word-spacing:-20.155307pt;}
.ws22{word-spacing:-19.538411pt;}
.ws20{word-spacing:-19.424000pt;}
.ws9{word-spacing:-14.548693pt;}
.ws5{word-spacing:-13.017984pt;}
.ws4{word-spacing:-12.693717pt;}
.ws7{word-spacing:0.000000pt;}
.ws24{word-spacing:3948.159275pt;}
.ws6{word-spacing:3982.079275pt;}
._14{margin-left:-11.274240pt;}
._1b{margin-left:-10.052693pt;}
._8{margin-left:-7.518293pt;}
._6{margin-left:-5.655381pt;}
._4{margin-left:-4.478293pt;}
._1{margin-left:-3.075840pt;}
._2{margin-left:-1.407147pt;}
._0{width:1.434880pt;}
._3{width:2.603307pt;}
._7{width:3.547307pt;}
._12{width:4.902400pt;}
._18{width:6.320213pt;}
._b{width:9.222613pt;}
._c{width:10.156160pt;}
._10{width:11.167787pt;}
._11{width:12.413013pt;}
._a{width:16.814080pt;}
._9{width:17.928747pt;}
._17{width:19.024000pt;}
._15{width:21.126827pt;}
._16{width:22.198187pt;}
._5{width:23.985835pt;}
._1a{width:26.410667pt;}
._19{width:27.324587pt;}
._1c{width:32.944213pt;}
._1d{width:34.072320pt;}
._d{width:41.853867pt;}
._e{width:46.235563pt;}
._f{width:47.407019pt;}
._13{width:1200.533547pt;}
.fs4{font-size:64.128000pt;}
.fs10{font-size:70.400000pt;}
.fs5{font-size:74.880000pt;}
.fsc{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fse{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fs13{font-size:101.120000pt;}
.fs14{font-size:101.248000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:107.008000pt;}
.fs9{font-size:117.120000pt;}
.fsa{font-size:117.248000pt;}
.fs11{font-size:128.000000pt;}
.fs0{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs1{font-size:170.880000pt;}
.fs8{font-size:192.000000pt;}
.fs12{font-size:192.128000pt;}
.fs6{font-size:234.880000pt;}
.fsb{font-size:235.008000pt;}
.fs15{font-size:320.128000pt;}
.y46{bottom:-711.066667pt;}
.y4c{bottom:-659.066667pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.296000pt;}
.yd{bottom:27.424000pt;}
.yc{bottom:28.256000pt;}
.y4a{bottom:60.896000pt;}
.y2e{bottom:81.573333pt;}
.y24{bottom:81.626667pt;}
.y26{bottom:81.666667pt;}
.y2a{bottom:81.693333pt;}
.yb{bottom:85.312000pt;}
.y67{bottom:106.432000pt;}
.y20{bottom:111.008000pt;}
.y39{bottom:111.040000pt;}
.ya{bottom:117.312000pt;}
.y45{bottom:123.808000pt;}
.y50{bottom:125.152000pt;}
.y66{bottom:132.992000pt;}
.y38{bottom:139.840000pt;}
.y1f{bottom:143.013333pt;}
.y9{bottom:146.213333pt;}
.y7{bottom:147.653333pt;}
.y4f{bottom:153.946667pt;}
.y44{bottom:155.173333pt;}
.y65{bottom:160.346667pt;}
.y37{bottom:168.640000pt;}
.y15{bottom:171.266667pt;}
.y1e{bottom:175.013333pt;}
.y8{bottom:178.213333pt;}
.y6{bottom:179.653333pt;}
.y36{bottom:197.440000pt;}
.y5{bottom:211.653333pt;}
.y14{bottom:224.866667pt;}
.y35{bottom:226.240000pt;}
.y64{bottom:242.786667pt;}
.y4{bottom:243.653333pt;}
.y34{bottom:255.066667pt;}
.y1d{bottom:266.106667pt;}
.y56{bottom:269.946667pt;}
.y49{bottom:273.253333pt;}
.y3{bottom:275.520000pt;}
.y59{bottom:278.586667pt;}
.y13{bottom:278.653333pt;}
.y33{bottom:283.866667pt;}
.y1c{bottom:297.826667pt;}
.y63{bottom:298.626667pt;}
.y43{bottom:300.320000pt;}
.y48{bottom:302.080000pt;}
.y31{bottom:303.520000pt;}
.y55{bottom:304.506667pt;}
.y32{bottom:312.666667pt;}
.y22{bottom:317.573333pt;}
.y62{bottom:325.986667pt;}
.y42{bottom:329.120000pt;}
.y1b{bottom:329.506667pt;}
.y47{bottom:330.880000pt;}
.y12{bottom:332.253333pt;}
.y30{bottom:336.000000pt;}
.y54{bottom:339.066667pt;}
.y1a{bottom:361.186667pt;}
.y2d{bottom:368.480000pt;}
.y58{bottom:369.346667pt;}
.y61{bottom:380.706667pt;}
.y21{bottom:380.960000pt;}
.y5a{bottom:383.333333pt;}
.y11{bottom:385.853333pt;}
.y68{bottom:390.213333pt;}
.y2b{bottom:400.800000pt;}
.y60{bottom:408.093333pt;}
.y57{bottom:421.186667pt;}
.y53{bottom:429.826667pt;}
.y29{bottom:433.280000pt;}
.y5f{bottom:435.453333pt;}
.y10{bottom:439.653333pt;}
.y4d{bottom:447.226667pt;}
.y2f{bottom:450.053333pt;}
.y19{bottom:451.293333pt;}
.y28{bottom:465.760000pt;}
.y2c{bottom:482.493333pt;}
.y5e{bottom:490.173333pt;}
.yf{bottom:493.253333pt;}
.y27{bottom:498.240000pt;}
.y52{bottom:499.453333pt;}
.y51{bottom:511.200000pt;}
.y5d{bottom:514.493333pt;}
.y25{bottom:530.720000pt;}
.y3f{bottom:531.200000pt;}
.y5c{bottom:538.813333pt;}
.y18{bottom:541.213333pt;}
.y3e{bottom:560.000000pt;}
.y23{bottom:563.200000pt;}
.y2{bottom:569.733333pt;}
.y17{bottom:572.893333pt;}
.y3d{bottom:588.800000pt;}
.ye{bottom:596.413333pt;}
.y41{bottom:603.200000pt;}
.y3a{bottom:607.426667pt;}
.y3c{bottom:617.626667pt;}
.y1{bottom:620.933333pt;}
.y4e{bottom:625.733333pt;}
.y40{bottom:632.026667pt;}
.y5b{bottom:633.760000pt;}
.y16{bottom:637.600000pt;}
.y3b{bottom:646.426667pt;}
.h6{height:55.579687pt;}
.h15{height:59.434375pt;}
.h18{height:59.523750pt;}
.h17{height:60.057813pt;}
.h7{height:64.898438pt;}
.h20{height:67.031250pt;}
.h1c{height:67.734375pt;}
.h26{height:70.606250pt;}
.h27{height:70.695625pt;}
.h2{height:72.470750pt;}
.h3{height:72.801562pt;}
.h5{height:72.888750pt;}
.h4{height:74.628125pt;}
.h1d{height:74.717500pt;}
.h25{height:77.420000pt;}
.h28{height:81.928000pt;}
.h19{height:83.203125pt;}
.h1b{height:83.314062pt;}
.h1a{height:83.343750pt;}
.h1e{height:83.454875pt;}
.h11{height:92.632812pt;}
.h12{height:92.743750pt;}
.h10{height:92.789375pt;}
.h1f{height:94.531250pt;}
.hd{height:101.507812pt;}
.hf{height:101.618750pt;}
.hc{height:101.679375pt;}
.he{height:101.790500pt;}
.h22{height:108.187500pt;}
.h9{height:129.242188pt;}
.ha{height:129.353125pt;}
.h24{height:134.062500pt;}
.h1{height:148.101562pt;}
.h14{height:156.800000pt;}
.hb{height:166.406250pt;}
.h23{height:166.517188pt;}
.h21{height:173.802708pt;}
.h16{height:179.360000pt;}
.h8{height:203.570312pt;}
.h13{height:203.681250pt;}
.h29{height:270.576937pt;}
.h0{height:720.000000pt;}
.w2{width:211.200000pt;}
.w3{width:220.800000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xe{left:2.173333pt;}
.x15{left:57.439981pt;}
.x1{left:70.431981pt;}
.x23{left:75.231981pt;}
.x1d{left:83.327981pt;}
.x7{left:97.599981pt;}
.x9{left:106.911981pt;}
.x2d{left:107.935981pt;}
.xa{left:113.055981pt;}
.x2e{left:121.631981pt;}
.x3{left:128.575981pt;}
.x27{left:178.493314pt;}
.x13{left:182.333314pt;}
.x26{left:195.293314pt;}
.x28{left:208.413314pt;}
.x24{left:219.839981pt;}
.x2a{left:221.533314pt;}
.xb{left:249.533314pt;}
.x2b{left:267.933314pt;}
.x14{left:272.093314pt;}
.x16{left:301.693314pt;}
.x19{left:302.813314pt;}
.x17{left:305.053314pt;}
.x18{left:312.573314pt;}
.x1e{left:325.439981pt;}
.x6{left:368.066648pt;}
.x8{left:421.786648pt;}
.x1a{left:432.093314pt;}
.x22{left:433.093314pt;}
.x2{left:475.773314pt;}
.x2c{left:477.093314pt;}
.x5{left:533.053314pt;}
.xc{left:537.093314pt;}
.x29{left:570.879981pt;}
.x1f{left:711.973314pt;}
.x2f{left:714.719981pt;}
.x25{left:719.973314pt;}
.xd{left:733.600000pt;}
.x12{left:743.359981pt;}
.x11{left:757.053314pt;}
.x10{left:765.373314pt;}
.x1b{left:789.146648pt;}
.x1c{left:834.746648pt;}
.x4{left:874.533314pt;}
.x20{left:899.653314pt;}
.x21{left:943.519981pt;}
.xf{left:944.640000pt;}
}




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