
    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_73906429ac0f4c099ca54aeb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_588f7e11ee23957a226e8749.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_6f239dffc8004b557fbdfd8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_eb8f5b2f2eb0372794d07595.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_669db3ce320e29e61de92bad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_174f5552ca7d36db7ddca576.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8bb865c499676560ba5f7caf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_99009ed2b6b32fbe59708221.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_99d8495df98287326580db08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_73906429ac0f4c099ca54aeb.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_588f7e11ee23957a226e8749.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;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_686d05348a6573a43e933fcc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_dba0314579f789398b761145.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws12{word-spacing:-4.740000px;}
.ws46{word-spacing:-4.320000px;}
.ws6{word-spacing:-2.220000px;}
.ws44{word-spacing:-2.040000px;}
.ws34{word-spacing:-1.740000px;}
.ws14{word-spacing:-1.680000px;}
.ws5{word-spacing:-1.560000px;}
.ws1d{word-spacing:-1.380000px;}
.ws2a{word-spacing:-1.260000px;}
.ws35{word-spacing:-1.200000px;}
.wsa{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.360000px;}
.ws3{word-spacing:0.000000px;}
.ws39{word-spacing:0.180000px;}
.ws2c{word-spacing:0.660000px;}
.ws11{word-spacing:0.720000px;}
.ws9{word-spacing:0.960000px;}
.ws1b{word-spacing:1.140000px;}
.ws3b{word-spacing:1.260000px;}
.ws7{word-spacing:2.040000px;}
.ws49{word-spacing:2.280000px;}
.wsd{word-spacing:2.520000px;}
.ws16{word-spacing:3.060000px;}
.ws4{word-spacing:3.240000px;}
.wsc{word-spacing:3.420000px;}
.ws48{word-spacing:5.160000px;}
.wsb{word-spacing:6.120000px;}
.wsf{word-spacing:6.360000px;}
.wse{word-spacing:6.540000px;}
.ws21{word-spacing:6.600000px;}
.ws31{word-spacing:6.900000px;}
.ws17{word-spacing:8.460000px;}
.ws8{word-spacing:8.580000px;}
.ws1a{word-spacing:8.760000px;}
.ws2f{word-spacing:10.320000px;}
.ws26{word-spacing:10.680000px;}
.ws1c{word-spacing:10.800000px;}
.ws42{word-spacing:11.520000px;}
.ws4d{word-spacing:11.580000px;}
.ws2b{word-spacing:11.640000px;}
.ws15{word-spacing:12.420000px;}
.ws41{word-spacing:12.960000px;}
.ws1e{word-spacing:13.260000px;}
.ws43{word-spacing:13.500000px;}
.ws45{word-spacing:13.620000px;}
.ws4e{word-spacing:15.240000px;}
.ws3a{word-spacing:15.300000px;}
.ws47{word-spacing:15.900000px;}
.ws2d{word-spacing:16.140000px;}
.ws36{word-spacing:17.880000px;}
.ws1f{word-spacing:18.240000px;}
.ws3f{word-spacing:20.700000px;}
.ws40{word-spacing:21.060000px;}
.ws4a{word-spacing:21.540000px;}
.ws30{word-spacing:22.080000px;}
.ws3d{word-spacing:22.920000px;}
.ws27{word-spacing:23.220000px;}
.ws3e{word-spacing:23.580000px;}
.ws18{word-spacing:24.660000px;}
.ws19{word-spacing:24.900000px;}
.ws24{word-spacing:26.160000px;}
.ws4b{word-spacing:27.540000px;}
.ws33{word-spacing:28.260000px;}
.ws13{word-spacing:30.480000px;}
.ws29{word-spacing:31.260000px;}
.ws28{word-spacing:32.460000px;}
.ws37{word-spacing:33.621000px;}
.ws32{word-spacing:34.860000px;}
.ws25{word-spacing:37.920000px;}
.ws4c{word-spacing:38.760000px;}
.ws2e{word-spacing:42.240000px;}
.ws3c{word-spacing:43.800000px;}
.ws0{word-spacing:48.021000px;}
.ws23{word-spacing:58.260000px;}
.ws22{word-spacing:64.920000px;}
.ws38{word-spacing:74.820000px;}
.ws1{word-spacing:386.314800px;}
.ws10{word-spacing:1714.377600px;}
._20{margin-left:-7.266000px;}
._1{margin-left:-5.508000px;}
._5{margin-left:-4.104000px;}
._2{margin-left:-2.854800px;}
._0{margin-left:-1.665000px;}
._17{width:1.194000px;}
._7{width:2.280000px;}
._a{width:3.438000px;}
._9{width:4.650000px;}
._4{width:5.658000px;}
._6{width:6.880800px;}
._10{width:7.980000px;}
._15{width:9.066000px;}
._1c{width:10.224000px;}
._12{width:11.502000px;}
._11{width:12.576000px;}
._22{width:13.884000px;}
._1a{width:16.542000px;}
._26{width:18.318000px;}
._f{width:19.344000px;}
._e{width:20.346000px;}
._16{width:21.750000px;}
._21{width:23.718000px;}
._13{width:25.620000px;}
._14{width:27.558000px;}
._1e{width:30.234000px;}
._1d{width:31.332000px;}
._1f{width:32.496000px;}
._24{width:33.858000px;}
._25{width:35.778000px;}
._23{width:40.740000px;}
._28{width:41.809200px;}
._27{width:43.584000px;}
._1b{width:46.800000px;}
._19{width:55.296000px;}
._18{width:57.762000px;}
._b{width:62.640000px;}
._3{width:65.760000px;}
._8{width:69.000000px;}
._c{width:70.020000px;}
._d{width:84.204000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y34{bottom:64.760550px;}
.y33{bottom:65.586600px;}
.y63{bottom:99.924900px;}
.y62{bottom:119.424900px;}
.y61{bottom:138.924900px;}
.y65{bottom:158.424900px;}
.y29{bottom:172.642650px;}
.y60{bottom:177.924900px;}
.y28{bottom:192.142650px;}
.y5f{bottom:197.424900px;}
.y27{bottom:211.642650px;}
.y5e{bottom:216.924900px;}
.y26{bottom:231.142650px;}
.y5d{bottom:236.424900px;}
.y25{bottom:250.642650px;}
.y5c{bottom:255.924900px;}
.y24{bottom:270.142650px;}
.y5b{bottom:275.424900px;}
.y23{bottom:289.642650px;}
.y5a{bottom:294.924900px;}
.y22{bottom:309.142650px;}
.y87{bottom:313.353450px;}
.y59{bottom:314.424900px;}
.y21{bottom:328.642650px;}
.y86{bottom:332.853450px;}
.y58{bottom:333.924900px;}
.y20{bottom:348.142650px;}
.y85{bottom:352.353450px;}
.y57{bottom:353.424900px;}
.y1f{bottom:367.642650px;}
.y89{bottom:371.853450px;}
.y56{bottom:372.924900px;}
.y1e{bottom:387.142650px;}
.y84{bottom:391.353450px;}
.y55{bottom:392.424900px;}
.y1d{bottom:406.642650px;}
.y83{bottom:410.853450px;}
.y54{bottom:411.924900px;}
.y1c{bottom:426.142650px;}
.y82{bottom:430.353450px;}
.y53{bottom:431.424900px;}
.y1b{bottom:445.642650px;}
.y81{bottom:449.853450px;}
.y52{bottom:450.924900px;}
.y32{bottom:456.139950px;}
.y1a{bottom:465.142650px;}
.y80{bottom:469.353450px;}
.y51{bottom:470.424900px;}
.y31{bottom:478.639950px;}
.y7f{bottom:488.853450px;}
.y50{bottom:489.924900px;}
.y30{bottom:501.139950px;}
.y19{bottom:504.142650px;}
.y7e{bottom:508.353450px;}
.y4f{bottom:509.424900px;}
.y18{bottom:523.642650px;}
.y7d{bottom:527.853450px;}
.y4e{bottom:528.924900px;}
.y2f{bottom:541.639950px;}
.y17{bottom:543.142650px;}
.y7c{bottom:547.353450px;}
.y64{bottom:548.424900px;}
.y16{bottom:562.642650px;}
.y7b{bottom:566.853450px;}
.y4d{bottom:567.924900px;}
.y15{bottom:582.142650px;}
.y7a{bottom:586.353450px;}
.y2e{bottom:586.639950px;}
.y4c{bottom:587.424900px;}
.y14{bottom:601.642650px;}
.y79{bottom:605.853450px;}
.y4b{bottom:606.924900px;}
.y13{bottom:621.142650px;}
.y78{bottom:625.353450px;}
.y4a{bottom:626.424900px;}
.y2d{bottom:627.139950px;}
.y12{bottom:640.642650px;}
.y77{bottom:644.853450px;}
.y49{bottom:645.924900px;}
.y11{bottom:660.142650px;}
.y2c{bottom:663.139950px;}
.y88{bottom:664.353450px;}
.y48{bottom:665.424900px;}
.y10{bottom:679.642650px;}
.y76{bottom:683.853450px;}
.y47{bottom:684.924900px;}
.y2b{bottom:699.139950px;}
.yf{bottom:699.142650px;}
.y75{bottom:703.353450px;}
.y46{bottom:704.424900px;}
.ye{bottom:718.642650px;}
.y74{bottom:722.853450px;}
.y45{bottom:723.924900px;}
.y2a{bottom:735.139950px;}
.yd{bottom:738.142650px;}
.y73{bottom:742.353450px;}
.y44{bottom:743.424900px;}
.yc{bottom:757.642650px;}
.y72{bottom:761.853450px;}
.y43{bottom:762.924900px;}
.yb{bottom:777.142650px;}
.y71{bottom:781.353450px;}
.y42{bottom:782.424900px;}
.ya{bottom:796.642650px;}
.y70{bottom:800.853450px;}
.y41{bottom:801.924900px;}
.y9{bottom:816.142650px;}
.y6f{bottom:820.353450px;}
.y40{bottom:821.424900px;}
.y8{bottom:835.642650px;}
.y6e{bottom:839.853450px;}
.y3f{bottom:840.924900px;}
.y7{bottom:855.142650px;}
.y6d{bottom:859.353450px;}
.y3e{bottom:860.424900px;}
.y6c{bottom:878.853450px;}
.y3d{bottom:879.924900px;}
.y6{bottom:894.147150px;}
.y6b{bottom:898.353450px;}
.y3c{bottom:899.424900px;}
.y5{bottom:912.142650px;}
.y6a{bottom:917.853450px;}
.y3b{bottom:918.924900px;}
.y4{bottom:930.142650px;}
.y69{bottom:937.353450px;}
.y3a{bottom:938.424900px;}
.y68{bottom:956.853450px;}
.y39{bottom:957.924900px;}
.y3{bottom:969.142650px;}
.y67{bottom:976.353450px;}
.y38{bottom:977.424900px;}
.y66{bottom:995.853450px;}
.y37{bottom:996.924900px;}
.y36{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y35{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h7{height:41.689453px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h9{height:46.200000px;}
.h8{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x2{left:65.202600px;}
.xe{left:71.253150px;}
.x8{left:73.559100px;}
.x1{left:74.853150px;}
.x7{left:224.187900px;}
.x3{left:298.513500px;}
.x5{left:387.545400px;}
.xd{left:400.180350px;}
.xc{left:412.272150px;}
.xf{left:426.929550px;}
.x6{left:456.651900px;}
.x4{left:611.055750px;}
.xb{left:614.196150px;}
.xa{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws12{word-spacing:-4.213333pt;}
.ws46{word-spacing:-3.840000pt;}
.ws6{word-spacing:-1.973333pt;}
.ws44{word-spacing:-1.813333pt;}
.ws34{word-spacing:-1.546667pt;}
.ws14{word-spacing:-1.493333pt;}
.ws5{word-spacing:-1.386667pt;}
.ws1d{word-spacing:-1.226667pt;}
.ws2a{word-spacing:-1.120000pt;}
.ws35{word-spacing:-1.066667pt;}
.wsa{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.320000pt;}
.ws3{word-spacing:0.000000pt;}
.ws39{word-spacing:0.160000pt;}
.ws2c{word-spacing:0.586667pt;}
.ws11{word-spacing:0.640000pt;}
.ws9{word-spacing:0.853333pt;}
.ws1b{word-spacing:1.013333pt;}
.ws3b{word-spacing:1.120000pt;}
.ws7{word-spacing:1.813333pt;}
.ws49{word-spacing:2.026667pt;}
.wsd{word-spacing:2.240000pt;}
.ws16{word-spacing:2.720000pt;}
.ws4{word-spacing:2.880000pt;}
.wsc{word-spacing:3.040000pt;}
.ws48{word-spacing:4.586667pt;}
.wsb{word-spacing:5.440000pt;}
.wsf{word-spacing:5.653333pt;}
.wse{word-spacing:5.813333pt;}
.ws21{word-spacing:5.866667pt;}
.ws31{word-spacing:6.133333pt;}
.ws17{word-spacing:7.520000pt;}
.ws8{word-spacing:7.626667pt;}
.ws1a{word-spacing:7.786667pt;}
.ws2f{word-spacing:9.173333pt;}
.ws26{word-spacing:9.493333pt;}
.ws1c{word-spacing:9.600000pt;}
.ws42{word-spacing:10.240000pt;}
.ws4d{word-spacing:10.293333pt;}
.ws2b{word-spacing:10.346667pt;}
.ws15{word-spacing:11.040000pt;}
.ws41{word-spacing:11.520000pt;}
.ws1e{word-spacing:11.786667pt;}
.ws43{word-spacing:12.000000pt;}
.ws45{word-spacing:12.106667pt;}
.ws4e{word-spacing:13.546667pt;}
.ws3a{word-spacing:13.600000pt;}
.ws47{word-spacing:14.133333pt;}
.ws2d{word-spacing:14.346667pt;}
.ws36{word-spacing:15.893333pt;}
.ws1f{word-spacing:16.213333pt;}
.ws3f{word-spacing:18.400000pt;}
.ws40{word-spacing:18.720000pt;}
.ws4a{word-spacing:19.146667pt;}
.ws30{word-spacing:19.626667pt;}
.ws3d{word-spacing:20.373333pt;}
.ws27{word-spacing:20.640000pt;}
.ws3e{word-spacing:20.960000pt;}
.ws18{word-spacing:21.920000pt;}
.ws19{word-spacing:22.133333pt;}
.ws24{word-spacing:23.253333pt;}
.ws4b{word-spacing:24.480000pt;}
.ws33{word-spacing:25.120000pt;}
.ws13{word-spacing:27.093333pt;}
.ws29{word-spacing:27.786667pt;}
.ws28{word-spacing:28.853333pt;}
.ws37{word-spacing:29.885333pt;}
.ws32{word-spacing:30.986667pt;}
.ws25{word-spacing:33.706667pt;}
.ws4c{word-spacing:34.453333pt;}
.ws2e{word-spacing:37.546667pt;}
.ws3c{word-spacing:38.933333pt;}
.ws0{word-spacing:42.685333pt;}
.ws23{word-spacing:51.786667pt;}
.ws22{word-spacing:57.706667pt;}
.ws38{word-spacing:66.506667pt;}
.ws1{word-spacing:343.390933pt;}
.ws10{word-spacing:1523.891200pt;}
._20{margin-left:-6.458667pt;}
._1{margin-left:-4.896000pt;}
._5{margin-left:-3.648000pt;}
._2{margin-left:-2.537600pt;}
._0{margin-left:-1.480000pt;}
._17{width:1.061333pt;}
._7{width:2.026667pt;}
._a{width:3.056000pt;}
._9{width:4.133333pt;}
._4{width:5.029333pt;}
._6{width:6.116267pt;}
._10{width:7.093333pt;}
._15{width:8.058667pt;}
._1c{width:9.088000pt;}
._12{width:10.224000pt;}
._11{width:11.178667pt;}
._22{width:12.341333pt;}
._1a{width:14.704000pt;}
._26{width:16.282667pt;}
._f{width:17.194667pt;}
._e{width:18.085333pt;}
._16{width:19.333333pt;}
._21{width:21.082667pt;}
._13{width:22.773333pt;}
._14{width:24.496000pt;}
._1e{width:26.874667pt;}
._1d{width:27.850667pt;}
._1f{width:28.885333pt;}
._24{width:30.096000pt;}
._25{width:31.802667pt;}
._23{width:36.213333pt;}
._28{width:37.163733pt;}
._27{width:38.741333pt;}
._1b{width:41.600000pt;}
._19{width:49.152000pt;}
._18{width:51.344000pt;}
._b{width:55.680000pt;}
._3{width:58.453333pt;}
._8{width:61.333333pt;}
._c{width:62.240000pt;}
._d{width:74.848000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y34{bottom:57.564933pt;}
.y33{bottom:58.299200pt;}
.y63{bottom:88.822133pt;}
.y62{bottom:106.155467pt;}
.y61{bottom:123.488800pt;}
.y65{bottom:140.822133pt;}
.y29{bottom:153.460133pt;}
.y60{bottom:158.155467pt;}
.y28{bottom:170.793467pt;}
.y5f{bottom:175.488800pt;}
.y27{bottom:188.126800pt;}
.y5e{bottom:192.822133pt;}
.y26{bottom:205.460133pt;}
.y5d{bottom:210.155467pt;}
.y25{bottom:222.793467pt;}
.y5c{bottom:227.488800pt;}
.y24{bottom:240.126800pt;}
.y5b{bottom:244.822133pt;}
.y23{bottom:257.460133pt;}
.y5a{bottom:262.155467pt;}
.y22{bottom:274.793467pt;}
.y87{bottom:278.536400pt;}
.y59{bottom:279.488800pt;}
.y21{bottom:292.126800pt;}
.y86{bottom:295.869733pt;}
.y58{bottom:296.822133pt;}
.y20{bottom:309.460133pt;}
.y85{bottom:313.203067pt;}
.y57{bottom:314.155467pt;}
.y1f{bottom:326.793467pt;}
.y89{bottom:330.536400pt;}
.y56{bottom:331.488800pt;}
.y1e{bottom:344.126800pt;}
.y84{bottom:347.869733pt;}
.y55{bottom:348.822133pt;}
.y1d{bottom:361.460133pt;}
.y83{bottom:365.203067pt;}
.y54{bottom:366.155467pt;}
.y1c{bottom:378.793467pt;}
.y82{bottom:382.536400pt;}
.y53{bottom:383.488800pt;}
.y1b{bottom:396.126800pt;}
.y81{bottom:399.869733pt;}
.y52{bottom:400.822133pt;}
.y32{bottom:405.457733pt;}
.y1a{bottom:413.460133pt;}
.y80{bottom:417.203067pt;}
.y51{bottom:418.155467pt;}
.y31{bottom:425.457733pt;}
.y7f{bottom:434.536400pt;}
.y50{bottom:435.488800pt;}
.y30{bottom:445.457733pt;}
.y19{bottom:448.126800pt;}
.y7e{bottom:451.869733pt;}
.y4f{bottom:452.822133pt;}
.y18{bottom:465.460133pt;}
.y7d{bottom:469.203067pt;}
.y4e{bottom:470.155467pt;}
.y2f{bottom:481.457733pt;}
.y17{bottom:482.793467pt;}
.y7c{bottom:486.536400pt;}
.y64{bottom:487.488800pt;}
.y16{bottom:500.126800pt;}
.y7b{bottom:503.869733pt;}
.y4d{bottom:504.822133pt;}
.y15{bottom:517.460133pt;}
.y7a{bottom:521.203067pt;}
.y2e{bottom:521.457733pt;}
.y4c{bottom:522.155467pt;}
.y14{bottom:534.793467pt;}
.y79{bottom:538.536400pt;}
.y4b{bottom:539.488800pt;}
.y13{bottom:552.126800pt;}
.y78{bottom:555.869733pt;}
.y4a{bottom:556.822133pt;}
.y2d{bottom:557.457733pt;}
.y12{bottom:569.460133pt;}
.y77{bottom:573.203067pt;}
.y49{bottom:574.155467pt;}
.y11{bottom:586.793467pt;}
.y2c{bottom:589.457733pt;}
.y88{bottom:590.536400pt;}
.y48{bottom:591.488800pt;}
.y10{bottom:604.126800pt;}
.y76{bottom:607.869733pt;}
.y47{bottom:608.822133pt;}
.y2b{bottom:621.457733pt;}
.yf{bottom:621.460133pt;}
.y75{bottom:625.203067pt;}
.y46{bottom:626.155467pt;}
.ye{bottom:638.793467pt;}
.y74{bottom:642.536400pt;}
.y45{bottom:643.488800pt;}
.y2a{bottom:653.457733pt;}
.yd{bottom:656.126800pt;}
.y73{bottom:659.869733pt;}
.y44{bottom:660.822133pt;}
.yc{bottom:673.460133pt;}
.y72{bottom:677.203067pt;}
.y43{bottom:678.155467pt;}
.yb{bottom:690.793467pt;}
.y71{bottom:694.536400pt;}
.y42{bottom:695.488800pt;}
.ya{bottom:708.126800pt;}
.y70{bottom:711.869733pt;}
.y41{bottom:712.822133pt;}
.y9{bottom:725.460133pt;}
.y6f{bottom:729.203067pt;}
.y40{bottom:730.155467pt;}
.y8{bottom:742.793467pt;}
.y6e{bottom:746.536400pt;}
.y3f{bottom:747.488800pt;}
.y7{bottom:760.126800pt;}
.y6d{bottom:763.869733pt;}
.y3e{bottom:764.822133pt;}
.y6c{bottom:781.203067pt;}
.y3d{bottom:782.155467pt;}
.y6{bottom:794.797467pt;}
.y6b{bottom:798.536400pt;}
.y3c{bottom:799.488800pt;}
.y5{bottom:810.793467pt;}
.y6a{bottom:815.869733pt;}
.y3b{bottom:816.822133pt;}
.y4{bottom:826.793467pt;}
.y69{bottom:833.203067pt;}
.y3a{bottom:834.155467pt;}
.y68{bottom:850.536400pt;}
.y39{bottom:851.488800pt;}
.y3{bottom:861.460133pt;}
.y67{bottom:867.869733pt;}
.y38{bottom:868.822133pt;}
.y66{bottom:885.203067pt;}
.y37{bottom:886.155467pt;}
.y36{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y35{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h7{height:37.057292pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h9{height:41.066667pt;}
.h8{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x2{left:57.957867pt;}
.xe{left:63.336133pt;}
.x8{left:65.385867pt;}
.x1{left:66.536133pt;}
.x7{left:199.278133pt;}
.x3{left:265.345333pt;}
.x5{left:344.484800pt;}
.xd{left:355.715867pt;}
.xc{left:366.464133pt;}
.xf{left:379.492933pt;}
.x6{left:405.912800pt;}
.x4{left:543.160667pt;}
.xb{left:545.952133pt;}
.xa{left:562.556267pt;}
}




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