
    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_7f03d383577f003e85a180f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.953000;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_5f5d390eddaa5e4a1d046c5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_81865ecff67685252e0205d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_c814f5ecfd0598bda2cc3c93.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_8b9aea7334a3c643177dcb83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c6a27532e07c0ec0f284b026.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.043000;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_19ca4ff8d6c171ed7e92968d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_9b1065c79f5b4cf2ea8eec3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_799be8b61a7fc50135495bbd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.716000;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_43282d71d9a5282cba45ab17.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_4da66c90915376c40d616e78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967000;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_fc78e76b9f2cee7d4bdfbabb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967000;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_834eb0d11eb5d83c4f87b9c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.713867;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);}
.v1{vertical-align:-374.985000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-4.320000px;}
.ls5{letter-spacing:-2.160000px;}
.ls2{letter-spacing:-1.326000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.234000px;}
.ls3{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.340000px;}
.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;}
}
.ws6{word-spacing:-71.808000px;}
.ws0{word-spacing:-43.176000px;}
.ws2b{word-spacing:-28.866000px;}
.ws3d{word-spacing:-24.414000px;}
.ws2{word-spacing:-22.074000px;}
.ws1{word-spacing:-19.812000px;}
.ws3{word-spacing:-18.720000px;}
.ws5{word-spacing:-14.904000px;}
.ws29{word-spacing:-6.480000px;}
.ws28{word-spacing:-6.048000px;}
.ws10{word-spacing:-2.160000px;}
.wsc{word-spacing:-1.998000px;}
.ws12{word-spacing:-1.188000px;}
.wsd{word-spacing:-1.134000px;}
.ws11{word-spacing:-1.080000px;}
.ws2a{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.216000px;}
.ws4{word-spacing:0.000000px;}
.ws25{word-spacing:0.486000px;}
.ws3c{word-spacing:0.504000px;}
.ws1b{word-spacing:0.720000px;}
.ws1a{word-spacing:0.918000px;}
.ws26{word-spacing:1.080000px;}
.ws27{word-spacing:1.134000px;}
.ws39{word-spacing:1.728000px;}
.ws44{word-spacing:2.106000px;}
.ws31{word-spacing:2.160000px;}
.wsf{word-spacing:2.538000px;}
.wse{word-spacing:2.700000px;}
.ws38{word-spacing:4.320000px;}
.ws42{word-spacing:5.382000px;}
.ws2e{word-spacing:5.454000px;}
.ws46{word-spacing:6.084000px;}
.ws40{word-spacing:6.162000px;}
.ws21{word-spacing:6.210000px;}
.ws47{word-spacing:6.750000px;}
.ws13{word-spacing:7.614000px;}
.ws2d{word-spacing:7.992000px;}
.ws24{word-spacing:8.046000px;}
.ws4c{word-spacing:9.504000px;}
.ws3b{word-spacing:9.936000px;}
.ws4f{word-spacing:10.746000px;}
.ws48{word-spacing:12.042000px;}
.ws33{word-spacing:12.120000px;}
.ws49{word-spacing:12.906000px;}
.ws1f{word-spacing:14.094000px;}
.ws4b{word-spacing:14.688000px;}
.ws22{word-spacing:14.850000px;}
.ws20{word-spacing:15.120000px;}
.ws4d{word-spacing:15.714000px;}
.ws4a{word-spacing:15.768000px;}
.ws23{word-spacing:15.930000px;}
.ws4e{word-spacing:17.172000px;}
.ws3f{word-spacing:17.628000px;}
.ws14{word-spacing:19.386000px;}
.ws3e{word-spacing:19.422000px;}
.ws15{word-spacing:19.980000px;}
.wsa{word-spacing:20.790000px;}
.ws37{word-spacing:22.920000px;}
.ws18{word-spacing:24.786000px;}
.ws16{word-spacing:25.704000px;}
.ws17{word-spacing:27.594000px;}
.ws1e{word-spacing:27.756000px;}
.ws19{word-spacing:28.404000px;}
.ws45{word-spacing:28.860000px;}
.ws1d{word-spacing:29.808000px;}
.ws30{word-spacing:30.396000px;}
.ws35{word-spacing:30.840000px;}
.ws2f{word-spacing:31.314000px;}
.ws34{word-spacing:33.780000px;}
.ws32{word-spacing:36.060000px;}
.ws43{word-spacing:38.142000px;}
.ws41{word-spacing:39.858000px;}
.wsb{word-spacing:42.498000px;}
.ws36{word-spacing:44.520000px;}
.ws9{word-spacing:52.434000px;}
.ws8{word-spacing:56.322000px;}
.ws1c{word-spacing:4958.494800px;}
.ws2c{word-spacing:4959.753600px;}
.ws7{word-spacing:4962.886800px;}
._e{margin-left:-39.904800px;}
._8{margin-left:-19.800000px;}
._4{margin-left:-18.160800px;}
._0{margin-left:-14.280000px;}
._3{margin-left:-5.712000px;}
._5{margin-left:-4.569600px;}
._1{margin-left:-3.192000px;}
._2{margin-left:-2.184000px;}
._7{margin-left:-1.021800px;}
._6{width:1.015200px;}
._a{width:2.167200px;}
._9{width:4.203600px;}
._d{width:6.363600px;}
._c{width:7.477800px;}
._b{width:33.109200px;}
.fc4{color:transparent;}
.fc2{color:rgb(49,157,114);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(42,38,39);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs8{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.fs5{font-size:264.000000px;}
.fsa{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:58.067550px;}
.y4{bottom:76.264800px;}
.y47{bottom:106.803900px;}
.y43{bottom:111.018450px;}
.y75{bottom:136.561950px;}
.y42{bottom:138.018450px;}
.y74{bottom:159.061950px;}
.y41{bottom:165.018450px;}
.y61{bottom:172.656600px;}
.y73{bottom:181.561950px;}
.y40{bottom:192.018450px;}
.y60{bottom:193.656600px;}
.y50{bottom:200.550150px;}
.y72{bottom:204.061950px;}
.y5f{bottom:214.656600px;}
.y3f{bottom:219.018450px;}
.y4f{bottom:223.050150px;}
.y4b{bottom:229.640400px;}
.y1f{bottom:242.865300px;}
.y14{bottom:243.150900px;}
.y4e{bottom:245.550150px;}
.y71{bottom:249.061950px;}
.y4a{bottom:252.140400px;}
.y34{bottom:256.270800px;}
.y1e{bottom:265.365300px;}
.y13{bottom:265.650900px;}
.y4d{bottom:268.050150px;}
.y70{bottom:271.561950px;}
.y2f{bottom:272.085750px;}
.y46{bottom:273.264300px;}
.y49{bottom:274.640400px;}
.y55{bottom:275.535150px;}
.y33{bottom:278.770800px;}
.y5e{bottom:280.923450px;}
.y1d{bottom:287.865300px;}
.y12{bottom:288.150900px;}
.y4c{bottom:290.550150px;}
.y6f{bottom:294.061950px;}
.y2e{bottom:294.585750px;}
.y54{bottom:298.035150px;}
.y32{bottom:301.270800px;}
.y5d{bottom:301.923450px;}
.y3{bottom:307.959000px;}
.y48{bottom:310.176000px;}
.y1c{bottom:310.365300px;}
.y11{bottom:310.650900px;}
.y6e{bottom:316.561950px;}
.y5c{bottom:322.923450px;}
.y59{bottom:329.582250px;}
.y1b{bottom:332.865300px;}
.y10{bottom:333.150900px;}
.y24{bottom:334.457550px;}
.y45{bottom:338.676000px;}
.y6d{bottom:339.061950px;}
.y5b{bottom:343.923450px;}
.y3a{bottom:353.391900px;}
.y1a{bottom:355.365300px;}
.yf{bottom:355.650900px;}
.y6c{bottom:361.561950px;}
.y5a{bottom:364.923450px;}
.y44{bottom:367.176000px;}
.y2{bottom:375.459000px;}
.y19{bottom:377.865300px;}
.ye{bottom:378.150900px;}
.y6b{bottom:384.061950px;}
.y39{bottom:385.791900px;}
.y53{bottom:386.535600px;}
.y18{bottom:400.365300px;}
.y23{bottom:400.457550px;}
.y6a{bottom:409.561950px;}
.y58{bottom:416.371950px;}
.y38{bottom:418.191900px;}
.y17{bottom:422.865300px;}
.yd{bottom:429.276000px;}
.y2c{bottom:434.451900px;}
.y69{bottom:435.061950px;}
.y1{bottom:442.959000px;}
.y16{bottom:445.365300px;}
.y37{bottom:449.691900px;}
.y2b{bottom:456.951900px;}
.y68{bottom:460.561950px;}
.yc{bottom:461.676000px;}
.y22{bottom:466.457550px;}
.y15{bottom:467.865300px;}
.y52{bottom:469.544700px;}
.y2a{bottom:479.451900px;}
.y36{bottom:485.691900px;}
.y67{bottom:486.061950px;}
.y51{bottom:492.044700px;}
.yb{bottom:494.076000px;}
.y29{bottom:501.951900px;}
.y57{bottom:518.520150px;}
.y35{bottom:521.691900px;}
.y28{bottom:524.451900px;}
.ya{bottom:526.476000px;}
.y21{bottom:532.457550px;}
.y66{bottom:537.061950px;}
.y27{bottom:546.951900px;}
.y9{bottom:558.876000px;}
.y3e{bottom:559.566000px;}
.y65{bottom:562.561950px;}
.y26{bottom:569.451900px;}
.y3d{bottom:582.066000px;}
.y64{bottom:588.061950px;}
.y8{bottom:591.276000px;}
.y20{bottom:598.457550px;}
.y2d{bottom:599.938650px;}
.y3c{bottom:604.566000px;}
.y76{bottom:605.056350px;}
.y63{bottom:613.561950px;}
.y3b{bottom:627.066000px;}
.y62{bottom:639.061950px;}
.y56{bottom:687.098850px;}
.y7{bottom:687.834300px;}
.y31{bottom:694.814700px;}
.y6{bottom:737.334300px;}
.y30{bottom:744.314700px;}
.y5{bottom:786.834450px;}
.h11{height:42.498000px;}
.h8{height:45.468000px;}
.hf{height:50.520000px;}
.hb{height:50.976000px;}
.h4{height:65.676000px;}
.hc{height:66.108000px;}
.hd{height:75.480000px;}
.he{height:80.274000px;}
.h7{height:84.996000px;}
.h2{height:122.640000px;}
.h3{height:124.320000px;}
.h5{height:131.400000px;}
.h6{height:133.200000px;}
.h9{height:185.592000px;}
.ha{height:190.344000px;}
.h10{height:363.744000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.w2{width:2525.670000px;}
.w3{width:2526.000000px;}
.x0{left:0.000000px;}
.x3{left:63.779550px;}
.x19{left:74.734200px;}
.x1{left:288.295350px;}
.x1a{left:354.053100px;}
.x4{left:457.204800px;}
.xd{left:529.219200px;}
.xc{left:535.311000px;}
.xa{left:620.275350px;}
.x17{left:622.417350px;}
.x15{left:627.549150px;}
.xf{left:631.417350px;}
.xe{left:640.417350px;}
.x2{left:905.298900px;}
.xb{left:1317.614250px;}
.x16{left:1326.614250px;}
.x10{left:1360.696500px;}
.x11{left:1552.280100px;}
.x1b{left:1637.027400px;}
.x18{left:1646.128050px;}
.x12{left:1745.121600px;}
.x7{left:1895.485950px;}
.x6{left:1909.610400px;}
.x13{left:1936.705200px;}
.x8{left:1941.949800px;}
.x5{left:1956.997500px;}
.x9{left:2048.601600px;}
.x14{left:2129.546850px;}
@media print{
.v1{vertical-align:-333.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls5{letter-spacing:-1.920000pt;}
.ls2{letter-spacing:-1.178667pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.208000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.080000pt;}
.ws6{word-spacing:-63.829333pt;}
.ws0{word-spacing:-38.378667pt;}
.ws2b{word-spacing:-25.658667pt;}
.ws3d{word-spacing:-21.701333pt;}
.ws2{word-spacing:-19.621333pt;}
.ws1{word-spacing:-17.610667pt;}
.ws3{word-spacing:-16.640000pt;}
.ws5{word-spacing:-13.248000pt;}
.ws29{word-spacing:-5.760000pt;}
.ws28{word-spacing:-5.376000pt;}
.ws10{word-spacing:-1.920000pt;}
.wsc{word-spacing:-1.776000pt;}
.ws12{word-spacing:-1.056000pt;}
.wsd{word-spacing:-1.008000pt;}
.ws11{word-spacing:-0.960000pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.192000pt;}
.ws4{word-spacing:0.000000pt;}
.ws25{word-spacing:0.432000pt;}
.ws3c{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.816000pt;}
.ws26{word-spacing:0.960000pt;}
.ws27{word-spacing:1.008000pt;}
.ws39{word-spacing:1.536000pt;}
.ws44{word-spacing:1.872000pt;}
.ws31{word-spacing:1.920000pt;}
.wsf{word-spacing:2.256000pt;}
.wse{word-spacing:2.400000pt;}
.ws38{word-spacing:3.840000pt;}
.ws42{word-spacing:4.784000pt;}
.ws2e{word-spacing:4.848000pt;}
.ws46{word-spacing:5.408000pt;}
.ws40{word-spacing:5.477333pt;}
.ws21{word-spacing:5.520000pt;}
.ws47{word-spacing:6.000000pt;}
.ws13{word-spacing:6.768000pt;}
.ws2d{word-spacing:7.104000pt;}
.ws24{word-spacing:7.152000pt;}
.ws4c{word-spacing:8.448000pt;}
.ws3b{word-spacing:8.832000pt;}
.ws4f{word-spacing:9.552000pt;}
.ws48{word-spacing:10.704000pt;}
.ws33{word-spacing:10.773333pt;}
.ws49{word-spacing:11.472000pt;}
.ws1f{word-spacing:12.528000pt;}
.ws4b{word-spacing:13.056000pt;}
.ws22{word-spacing:13.200000pt;}
.ws20{word-spacing:13.440000pt;}
.ws4d{word-spacing:13.968000pt;}
.ws4a{word-spacing:14.016000pt;}
.ws23{word-spacing:14.160000pt;}
.ws4e{word-spacing:15.264000pt;}
.ws3f{word-spacing:15.669333pt;}
.ws14{word-spacing:17.232000pt;}
.ws3e{word-spacing:17.264000pt;}
.ws15{word-spacing:17.760000pt;}
.wsa{word-spacing:18.480000pt;}
.ws37{word-spacing:20.373333pt;}
.ws18{word-spacing:22.032000pt;}
.ws16{word-spacing:22.848000pt;}
.ws17{word-spacing:24.528000pt;}
.ws1e{word-spacing:24.672000pt;}
.ws19{word-spacing:25.248000pt;}
.ws45{word-spacing:25.653333pt;}
.ws1d{word-spacing:26.496000pt;}
.ws30{word-spacing:27.018667pt;}
.ws35{word-spacing:27.413333pt;}
.ws2f{word-spacing:27.834667pt;}
.ws34{word-spacing:30.026667pt;}
.ws32{word-spacing:32.053333pt;}
.ws43{word-spacing:33.904000pt;}
.ws41{word-spacing:35.429333pt;}
.wsb{word-spacing:37.776000pt;}
.ws36{word-spacing:39.573333pt;}
.ws9{word-spacing:46.608000pt;}
.ws8{word-spacing:50.064000pt;}
.ws1c{word-spacing:4407.550933pt;}
.ws2c{word-spacing:4408.669867pt;}
.ws7{word-spacing:4411.454933pt;}
._e{margin-left:-35.470933pt;}
._8{margin-left:-17.600000pt;}
._4{margin-left:-16.142933pt;}
._0{margin-left:-12.693333pt;}
._3{margin-left:-5.077333pt;}
._5{margin-left:-4.061867pt;}
._1{margin-left:-2.837333pt;}
._2{margin-left:-1.941333pt;}
._7{margin-left:-0.908267pt;}
._6{width:0.902400pt;}
._a{width:1.926400pt;}
._9{width:3.736533pt;}
._d{width:5.656533pt;}
._c{width:6.646933pt;}
._b{width:29.430400pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs8{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.fs5{font-size:234.666667pt;}
.fsa{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:51.615600pt;}
.y4{bottom:67.790933pt;}
.y47{bottom:94.936800pt;}
.y43{bottom:98.683067pt;}
.y75{bottom:121.388400pt;}
.y42{bottom:122.683067pt;}
.y74{bottom:141.388400pt;}
.y41{bottom:146.683067pt;}
.y61{bottom:153.472533pt;}
.y73{bottom:161.388400pt;}
.y40{bottom:170.683067pt;}
.y60{bottom:172.139200pt;}
.y50{bottom:178.266800pt;}
.y72{bottom:181.388400pt;}
.y5f{bottom:190.805867pt;}
.y3f{bottom:194.683067pt;}
.y4f{bottom:198.266800pt;}
.y4b{bottom:204.124800pt;}
.y1f{bottom:215.880267pt;}
.y14{bottom:216.134133pt;}
.y4e{bottom:218.266800pt;}
.y71{bottom:221.388400pt;}
.y4a{bottom:224.124800pt;}
.y34{bottom:227.796267pt;}
.y1e{bottom:235.880267pt;}
.y13{bottom:236.134133pt;}
.y4d{bottom:238.266800pt;}
.y70{bottom:241.388400pt;}
.y2f{bottom:241.854000pt;}
.y46{bottom:242.901600pt;}
.y49{bottom:244.124800pt;}
.y55{bottom:244.920133pt;}
.y33{bottom:247.796267pt;}
.y5e{bottom:249.709733pt;}
.y1d{bottom:255.880267pt;}
.y12{bottom:256.134133pt;}
.y4c{bottom:258.266800pt;}
.y6f{bottom:261.388400pt;}
.y2e{bottom:261.854000pt;}
.y54{bottom:264.920133pt;}
.y32{bottom:267.796267pt;}
.y5d{bottom:268.376400pt;}
.y3{bottom:273.741333pt;}
.y48{bottom:275.712000pt;}
.y1c{bottom:275.880267pt;}
.y11{bottom:276.134133pt;}
.y6e{bottom:281.388400pt;}
.y5c{bottom:287.043067pt;}
.y59{bottom:292.962000pt;}
.y1b{bottom:295.880267pt;}
.y10{bottom:296.134133pt;}
.y24{bottom:297.295600pt;}
.y45{bottom:301.045333pt;}
.y6d{bottom:301.388400pt;}
.y5b{bottom:305.709733pt;}
.y3a{bottom:314.126133pt;}
.y1a{bottom:315.880267pt;}
.yf{bottom:316.134133pt;}
.y6c{bottom:321.388400pt;}
.y5a{bottom:324.376400pt;}
.y44{bottom:326.378667pt;}
.y2{bottom:333.741333pt;}
.y19{bottom:335.880267pt;}
.ye{bottom:336.134133pt;}
.y6b{bottom:341.388400pt;}
.y39{bottom:342.926133pt;}
.y53{bottom:343.587200pt;}
.y18{bottom:355.880267pt;}
.y23{bottom:355.962267pt;}
.y6a{bottom:364.055067pt;}
.y58{bottom:370.108400pt;}
.y38{bottom:371.726133pt;}
.y17{bottom:375.880267pt;}
.yd{bottom:381.578667pt;}
.y2c{bottom:386.179467pt;}
.y69{bottom:386.721733pt;}
.y1{bottom:393.741333pt;}
.y16{bottom:395.880267pt;}
.y37{bottom:399.726133pt;}
.y2b{bottom:406.179467pt;}
.y68{bottom:409.388400pt;}
.yc{bottom:410.378667pt;}
.y22{bottom:414.628933pt;}
.y15{bottom:415.880267pt;}
.y52{bottom:417.373067pt;}
.y2a{bottom:426.179467pt;}
.y36{bottom:431.726133pt;}
.y67{bottom:432.055067pt;}
.y51{bottom:437.373067pt;}
.yb{bottom:439.178667pt;}
.y29{bottom:446.179467pt;}
.y57{bottom:460.906800pt;}
.y35{bottom:463.726133pt;}
.y28{bottom:466.179467pt;}
.ya{bottom:467.978667pt;}
.y21{bottom:473.295600pt;}
.y66{bottom:477.388400pt;}
.y27{bottom:486.179467pt;}
.y9{bottom:496.778667pt;}
.y3e{bottom:497.392000pt;}
.y65{bottom:500.055067pt;}
.y26{bottom:506.179467pt;}
.y3d{bottom:517.392000pt;}
.y64{bottom:522.721733pt;}
.y8{bottom:525.578667pt;}
.y20{bottom:531.962267pt;}
.y2d{bottom:533.278800pt;}
.y3c{bottom:537.392000pt;}
.y76{bottom:537.827867pt;}
.y63{bottom:545.388400pt;}
.y3b{bottom:557.392000pt;}
.y62{bottom:568.055067pt;}
.y56{bottom:610.754533pt;}
.y7{bottom:611.408267pt;}
.y31{bottom:617.613067pt;}
.y6{bottom:655.408267pt;}
.y30{bottom:661.613067pt;}
.y5{bottom:699.408400pt;}
.h11{height:37.776000pt;}
.h8{height:40.416000pt;}
.hf{height:44.906667pt;}
.hb{height:45.312000pt;}
.h4{height:58.378667pt;}
.hc{height:58.762667pt;}
.hd{height:67.093333pt;}
.he{height:71.354667pt;}
.h7{height:75.552000pt;}
.h2{height:109.013333pt;}
.h3{height:110.506667pt;}
.h5{height:116.800000pt;}
.h6{height:118.400000pt;}
.h9{height:164.970667pt;}
.ha{height:169.194667pt;}
.h10{height:323.328000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.w2{width:2245.040000pt;}
.w3{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x3{left:56.692933pt;}
.x19{left:66.430400pt;}
.x1{left:256.262533pt;}
.x1a{left:314.713867pt;}
.x4{left:406.404267pt;}
.xd{left:470.417067pt;}
.xc{left:475.832000pt;}
.xa{left:551.355867pt;}
.x17{left:553.259867pt;}
.x15{left:557.821467pt;}
.xf{left:561.259867pt;}
.xe{left:569.259867pt;}
.x2{left:804.710133pt;}
.xb{left:1171.212667pt;}
.x16{left:1179.212667pt;}
.x10{left:1209.508000pt;}
.x11{left:1379.804533pt;}
.x1b{left:1455.135467pt;}
.x18{left:1463.224933pt;}
.x12{left:1551.219200pt;}
.x7{left:1684.876400pt;}
.x6{left:1697.431467pt;}
.x13{left:1721.515733pt;}
.x8{left:1726.177600pt;}
.x5{left:1739.553333pt;}
.x9{left:1820.979200pt;}
.x14{left:1892.930533pt;}
}




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