
    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_b9af4d25c83c84791cc15fa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a68b0afa6bbaa9c2045fb734.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_986ac13a35da6b41ec9359df.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_de070f8ef009cf278f6a2913.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_5bc43a24bdc37b98d5a80011.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_b830c8f1890860a91262508c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b45088200ce3b4d0eabc638f.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:188.597700px;}
.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;}
}
.ws18{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws1f{word-spacing:-39.085200px;}
.ws3c{word-spacing:-39.020100px;}
.ws54{word-spacing:-38.869200px;}
.ws46{word-spacing:-38.792700px;}
.ws76{word-spacing:-38.661000px;}
.ws47{word-spacing:-38.660400px;}
.ws5{word-spacing:-38.660100px;}
.ws2f{word-spacing:-38.654100px;}
.ws4f{word-spacing:-38.652000px;}
.ws59{word-spacing:-38.646900px;}
.ws28{word-spacing:-38.589300px;}
.ws34{word-spacing:-38.577600px;}
.ws77{word-spacing:-38.448000px;}
.ws72{word-spacing:-38.445300px;}
.ws3{word-spacing:-38.440800px;}
.ws14{word-spacing:-38.439600px;}
.ws6{word-spacing:-38.438700px;}
.ws67{word-spacing:-38.434200px;}
.ws6d{word-spacing:-38.430000px;}
.ws9{word-spacing:-38.378400px;}
.ws29{word-spacing:-38.372400px;}
.ws68{word-spacing:-38.372100px;}
.ws4d{word-spacing:-38.306400px;}
.ws74{word-spacing:-38.145600px;}
.ws4{word-spacing:-38.084400px;}
.ws5e{word-spacing:-38.073900px;}
.ws52{word-spacing:-38.009700px;}
.ws6a{word-spacing:-37.948200px;}
.ws17{word-spacing:-37.944000px;}
.ws3d{word-spacing:-37.934100px;}
.ws6f{word-spacing:-37.925400px;}
.ws6b{word-spacing:-37.730400px;}
.ws75{word-spacing:-37.721700px;}
.ws7{word-spacing:-37.710000px;}
.ws39{word-spacing:-37.642500px;}
.ws8{word-spacing:-37.574100px;}
.ws70{word-spacing:-37.426500px;}
.ws26{word-spacing:-37.421400px;}
.ws3f{word-spacing:-37.215000px;}
.ws48{word-spacing:-36.635400px;}
.ws71{word-spacing:-35.996100px;}
.ws60{word-spacing:-35.424000px;}
.ws24{word-spacing:-35.422200px;}
.ws45{word-spacing:-33.624000px;}
.ws2{word-spacing:-33.547800px;}
.ws5d{word-spacing:-33.243600px;}
.ws3a{word-spacing:-33.111900px;}
.ws2a{word-spacing:-32.380200px;}
.ws5a{word-spacing:-32.176200px;}
.ws13{word-spacing:-31.671000px;}
.ws66{word-spacing:-31.456800px;}
.ws3b{word-spacing:-29.287800px;}
.ws23{word-spacing:-29.008800px;}
.ws44{word-spacing:-28.934400px;}
.ws6c{word-spacing:-28.800000px;}
.ws3e{word-spacing:-27.788400px;}
.ws49{word-spacing:-27.352500px;}
.ws11{word-spacing:-26.062200px;}
.ws22{word-spacing:-25.684500px;}
.ws2e{word-spacing:-25.204200px;}
.ws4b{word-spacing:-24.033000px;}
.ws61{word-spacing:-23.679000px;}
.ws2b{word-spacing:-23.167800px;}
.wsc{word-spacing:-22.735800px;}
.ws1b{word-spacing:-21.583800px;}
.ws38{word-spacing:-21.372300px;}
.ws4c{word-spacing:-20.436300px;}
.ws1a{word-spacing:-20.158200px;}
.ws58{word-spacing:-19.430700px;}
.ws42{word-spacing:-19.355400px;}
.ws55{word-spacing:-18.855000px;}
.ws6e{word-spacing:-18.427500px;}
.ws21{word-spacing:-18.419400px;}
.ws2c{word-spacing:-18.002400px;}
.ws15{word-spacing:-15.120000px;}
.ws16{word-spacing:-15.105600px;}
.ws30{word-spacing:-14.184000px;}
.ws25{word-spacing:-13.383900px;}
.ws5f{word-spacing:-13.167000px;}
.ws51{word-spacing:-12.742200px;}
.ws1d{word-spacing:-12.657600px;}
.wse{word-spacing:-11.300100px;}
.wsd{word-spacing:-10.944000px;}
.ws73{word-spacing:-10.785600px;}
.ws1e{word-spacing:-10.784100px;}
.ws2d{word-spacing:-10.080000px;}
.ws43{word-spacing:-9.993600px;}
.ws56{word-spacing:-9.144000px;}
.ws1c{word-spacing:-9.056700px;}
.ws69{word-spacing:-8.618400px;}
.ws20{word-spacing:-7.920000px;}
.ws57{word-spacing:-5.889600px;}
.ws41{word-spacing:-5.025600px;}
.ws37{word-spacing:-4.322400px;}
.ws5b{word-spacing:-4.240800px;}
.ws4a{word-spacing:-1.944000px;}
.ws50{word-spacing:-1.431900px;}
.ws36{word-spacing:-1.353600px;}
.ws62{word-spacing:-1.135800px;}
.ws65{word-spacing:-0.630900px;}
.ws32{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:2.959200px;}
.ws33{word-spacing:6.350400px;}
.ws10{word-spacing:6.702000px;}
.ws63{word-spacing:8.149800px;}
.ws64{word-spacing:8.726700px;}
.ws27{word-spacing:8.857800px;}
.ws5c{word-spacing:14.265000px;}
.wsf{word-spacing:18.015300px;}
.ws40{word-spacing:29.370000px;}
.ws31{word-spacing:31.920000px;}
.ws53{word-spacing:33.347700px;}
.ws19{word-spacing:33.697800px;}
.ws35{word-spacing:40.192200px;}
.wsa{word-spacing:41.034000px;}
.wsb{word-spacing:41.056200px;}
.ws4e{word-spacing:52.574400px;}
._6{margin-left:-2.202000px;}
._3{margin-left:-1.115700px;}
._1{width:1.894200px;}
._c{width:16.963800px;}
._2{width:18.720000px;}
._20{width:19.882800px;}
._29{width:21.012300px;}
._0{width:22.505400px;}
._1e{width:24.399900px;}
._b{width:25.507800px;}
._1f{width:27.045300px;}
._12{width:28.763700px;}
._23{width:29.775000px;}
._9{width:31.099800px;}
._16{width:32.502000px;}
._24{width:33.591000px;}
._5{width:34.681800px;}
._f{width:35.790000px;}
._e{width:37.152000px;}
._11{width:38.939400px;}
._13{width:43.695900px;}
._7{width:46.323000px;}
._22{width:47.438100px;}
._10{width:48.440700px;}
._26{width:51.293700px;}
._1d{width:52.691400px;}
._18{width:54.769800px;}
._1c{width:55.848900px;}
._19{width:57.024000px;}
._a{width:60.147300px;}
._1a{width:63.561600px;}
._15{width:65.865900px;}
._14{width:66.978000px;}
._27{width:68.911800px;}
._8{width:75.532500px;}
._21{width:86.641800px;}
._17{width:89.154000px;}
._d{width:91.222200px;}
._1b{width:97.471800px;}
._4{width:98.629800px;}
._25{width:109.604400px;}
._28{width:162.000000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs3{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:32.475000px;}
.y48{bottom:94.036500px;}
.y27{bottom:135.436500px;}
.y6a{bottom:136.336500px;}
.y26{bottom:156.136500px;}
.y69{bottom:157.036500px;}
.y25{bottom:176.836500px;}
.y47{bottom:177.375000px;}
.y68{bottom:177.736500px;}
.y24{bottom:197.536500px;}
.y46{bottom:198.075000px;}
.y67{bottom:198.436500px;}
.y23{bottom:218.236500px;}
.y45{bottom:218.775000px;}
.y66{bottom:219.136500px;}
.y22{bottom:238.936500px;}
.y65{bottom:239.836500px;}
.y21{bottom:259.636500px;}
.y44{bottom:260.536500px;}
.y43{bottom:281.236500px;}
.y20{bottom:301.215000px;}
.y42{bottom:301.936500px;}
.y64{bottom:302.115000px;}
.y1f{bottom:321.915000px;}
.y41{bottom:322.636500px;}
.y1e{bottom:342.615000px;}
.y40{bottom:343.336500px;}
.y1d{bottom:363.315000px;}
.y3f{bottom:364.036500px;}
.y1c{bottom:384.015000px;}
.y3e{bottom:384.736500px;}
.y63{bottom:385.636500px;}
.y1b{bottom:404.715000px;}
.y62{bottom:406.336500px;}
.y1a{bottom:425.415000px;}
.y3d{bottom:426.315000px;}
.y61{bottom:427.036500px;}
.y19{bottom:467.175000px;}
.y60{bottom:468.615000px;}
.y5f{bottom:489.315000px;}
.y3c{bottom:509.836500px;}
.y5e{bottom:510.015000px;}
.y3b{bottom:530.536500px;}
.y5d{bottom:530.715000px;}
.y18{bottom:550.515000px;}
.y3a{bottom:551.236500px;}
.y5c{bottom:551.415000px;}
.y17{bottom:571.215000px;}
.y39{bottom:592.815000px;}
.y5b{bottom:593.175000px;}
.y16{bottom:612.975000px;}
.y38{bottom:613.515000px;}
.y5a{bottom:613.875000px;}
.y15{bottom:633.675000px;}
.y37{bottom:634.215000px;}
.y59{bottom:634.575000px;}
.y14{bottom:654.375000px;}
.y36{bottom:654.915000px;}
.y58{bottom:655.275000px;}
.y13{bottom:675.075000px;}
.y35{bottom:675.615000px;}
.y57{bottom:675.975000px;}
.y12{bottom:695.775000px;}
.y11{bottom:716.475000px;}
.y34{bottom:717.375000px;}
.y56{bottom:717.736500px;}
.y10{bottom:737.175000px;}
.y33{bottom:738.075000px;}
.yf{bottom:757.875000px;}
.y32{bottom:758.775000px;}
.ye{bottom:778.575000px;}
.y31{bottom:779.475000px;}
.yd{bottom:799.275000px;}
.y30{bottom:800.175000px;}
.y55{bottom:801.075000px;}
.y54{bottom:821.775000px;}
.y2f{bottom:841.936500px;}
.y53{bottom:842.475000px;}
.y2e{bottom:862.636500px;}
.y52{bottom:863.175000px;}
.yc{bottom:882.615000px;}
.y2d{bottom:883.336500px;}
.y51{bottom:883.875000px;}
.y2c{bottom:904.036500px;}
.y50{bottom:904.575000px;}
.yb{bottom:924.375000px;}
.y2b{bottom:924.736500px;}
.y4f{bottom:925.275000px;}
.y2a{bottom:945.436500px;}
.y4e{bottom:945.975000px;}
.ya{bottom:966.136500px;}
.y4d{bottom:966.675000px;}
.y29{bottom:987.015000px;}
.y4c{bottom:987.375000px;}
.y9{bottom:1007.715000px;}
.y4b{bottom:1008.075000px;}
.y4a{bottom:1028.775000px;}
.y8{bottom:1049.475000px;}
.y49{bottom:1070.175000px;}
.y28{bottom:1070.536500px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:44.480566px;}
.h7{height:49.992188px;}
.h6{height:62.261719px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x5{left:138.600000px;}
.x6{left:271.260000px;}
.x8{left:272.880000px;}
.x3{left:515.880000px;}
.xb{left:535.500000px;}
.x7{left:588.600000px;}
.x2{left:604.620000px;}
.xa{left:635.580000px;}
.x9{left:677.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:167.642400pt;}
.ws18{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws1f{word-spacing:-34.742400pt;}
.ws3c{word-spacing:-34.684533pt;}
.ws54{word-spacing:-34.550400pt;}
.ws46{word-spacing:-34.482400pt;}
.ws76{word-spacing:-34.365333pt;}
.ws47{word-spacing:-34.364800pt;}
.ws5{word-spacing:-34.364533pt;}
.ws2f{word-spacing:-34.359200pt;}
.ws4f{word-spacing:-34.357333pt;}
.ws59{word-spacing:-34.352800pt;}
.ws28{word-spacing:-34.301600pt;}
.ws34{word-spacing:-34.291200pt;}
.ws77{word-spacing:-34.176000pt;}
.ws72{word-spacing:-34.173600pt;}
.ws3{word-spacing:-34.169600pt;}
.ws14{word-spacing:-34.168533pt;}
.ws6{word-spacing:-34.167733pt;}
.ws67{word-spacing:-34.163733pt;}
.ws6d{word-spacing:-34.160000pt;}
.ws9{word-spacing:-34.114133pt;}
.ws29{word-spacing:-34.108800pt;}
.ws68{word-spacing:-34.108533pt;}
.ws4d{word-spacing:-34.050133pt;}
.ws74{word-spacing:-33.907200pt;}
.ws4{word-spacing:-33.852800pt;}
.ws5e{word-spacing:-33.843467pt;}
.ws52{word-spacing:-33.786400pt;}
.ws6a{word-spacing:-33.731733pt;}
.ws17{word-spacing:-33.728000pt;}
.ws3d{word-spacing:-33.719200pt;}
.ws6f{word-spacing:-33.711467pt;}
.ws6b{word-spacing:-33.538133pt;}
.ws75{word-spacing:-33.530400pt;}
.ws7{word-spacing:-33.520000pt;}
.ws39{word-spacing:-33.460000pt;}
.ws8{word-spacing:-33.399200pt;}
.ws70{word-spacing:-33.268000pt;}
.ws26{word-spacing:-33.263467pt;}
.ws3f{word-spacing:-33.080000pt;}
.ws48{word-spacing:-32.564800pt;}
.ws71{word-spacing:-31.996533pt;}
.ws60{word-spacing:-31.488000pt;}
.ws24{word-spacing:-31.486400pt;}
.ws45{word-spacing:-29.888000pt;}
.ws2{word-spacing:-29.820267pt;}
.ws5d{word-spacing:-29.549867pt;}
.ws3a{word-spacing:-29.432800pt;}
.ws2a{word-spacing:-28.782400pt;}
.ws5a{word-spacing:-28.601067pt;}
.ws13{word-spacing:-28.152000pt;}
.ws66{word-spacing:-27.961600pt;}
.ws3b{word-spacing:-26.033600pt;}
.ws23{word-spacing:-25.785600pt;}
.ws44{word-spacing:-25.719467pt;}
.ws6c{word-spacing:-25.600000pt;}
.ws3e{word-spacing:-24.700800pt;}
.ws49{word-spacing:-24.313333pt;}
.ws11{word-spacing:-23.166400pt;}
.ws22{word-spacing:-22.830667pt;}
.ws2e{word-spacing:-22.403733pt;}
.ws4b{word-spacing:-21.362667pt;}
.ws61{word-spacing:-21.048000pt;}
.ws2b{word-spacing:-20.593600pt;}
.wsc{word-spacing:-20.209600pt;}
.ws1b{word-spacing:-19.185600pt;}
.ws38{word-spacing:-18.997600pt;}
.ws4c{word-spacing:-18.165600pt;}
.ws1a{word-spacing:-17.918400pt;}
.ws58{word-spacing:-17.271733pt;}
.ws42{word-spacing:-17.204800pt;}
.ws55{word-spacing:-16.760000pt;}
.ws6e{word-spacing:-16.380000pt;}
.ws21{word-spacing:-16.372800pt;}
.ws2c{word-spacing:-16.002133pt;}
.ws15{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.427200pt;}
.ws30{word-spacing:-12.608000pt;}
.ws25{word-spacing:-11.896800pt;}
.ws5f{word-spacing:-11.704000pt;}
.ws51{word-spacing:-11.326400pt;}
.ws1d{word-spacing:-11.251200pt;}
.wse{word-spacing:-10.044533pt;}
.wsd{word-spacing:-9.728000pt;}
.ws73{word-spacing:-9.587200pt;}
.ws1e{word-spacing:-9.585867pt;}
.ws2d{word-spacing:-8.960000pt;}
.ws43{word-spacing:-8.883200pt;}
.ws56{word-spacing:-8.128000pt;}
.ws1c{word-spacing:-8.050400pt;}
.ws69{word-spacing:-7.660800pt;}
.ws20{word-spacing:-7.040000pt;}
.ws57{word-spacing:-5.235200pt;}
.ws41{word-spacing:-4.467200pt;}
.ws37{word-spacing:-3.842133pt;}
.ws5b{word-spacing:-3.769600pt;}
.ws4a{word-spacing:-1.728000pt;}
.ws50{word-spacing:-1.272800pt;}
.ws36{word-spacing:-1.203200pt;}
.ws62{word-spacing:-1.009600pt;}
.ws65{word-spacing:-0.560800pt;}
.ws32{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:2.630400pt;}
.ws33{word-spacing:5.644800pt;}
.ws10{word-spacing:5.957333pt;}
.ws63{word-spacing:7.244267pt;}
.ws64{word-spacing:7.757067pt;}
.ws27{word-spacing:7.873600pt;}
.ws5c{word-spacing:12.680000pt;}
.wsf{word-spacing:16.013600pt;}
.ws40{word-spacing:26.106667pt;}
.ws31{word-spacing:28.373333pt;}
.ws53{word-spacing:29.642400pt;}
.ws19{word-spacing:29.953600pt;}
.ws35{word-spacing:35.726400pt;}
.wsa{word-spacing:36.474667pt;}
.wsb{word-spacing:36.494400pt;}
.ws4e{word-spacing:46.732800pt;}
._6{margin-left:-1.957333pt;}
._3{margin-left:-0.991733pt;}
._1{width:1.683733pt;}
._c{width:15.078933pt;}
._2{width:16.640000pt;}
._20{width:17.673600pt;}
._29{width:18.677600pt;}
._0{width:20.004800pt;}
._1e{width:21.688800pt;}
._b{width:22.673600pt;}
._1f{width:24.040267pt;}
._12{width:25.567733pt;}
._23{width:26.466667pt;}
._9{width:27.644267pt;}
._16{width:28.890667pt;}
._24{width:29.858667pt;}
._5{width:30.828267pt;}
._f{width:31.813333pt;}
._e{width:33.024000pt;}
._11{width:34.612800pt;}
._13{width:38.840800pt;}
._7{width:41.176000pt;}
._22{width:42.167200pt;}
._10{width:43.058400pt;}
._26{width:45.594400pt;}
._1d{width:46.836800pt;}
._18{width:48.684267pt;}
._1c{width:49.643467pt;}
._19{width:50.688000pt;}
._a{width:53.464267pt;}
._1a{width:56.499200pt;}
._15{width:58.547467pt;}
._14{width:59.536000pt;}
._27{width:61.254933pt;}
._8{width:67.140000pt;}
._21{width:77.014933pt;}
._17{width:79.248000pt;}
._d{width:81.086400pt;}
._1b{width:86.641600pt;}
._4{width:87.670933pt;}
._25{width:97.426133pt;}
._28{width:144.000000pt;}
.fs3{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:28.866667pt;}
.y48{bottom:83.588000pt;}
.y27{bottom:120.388000pt;}
.y6a{bottom:121.188000pt;}
.y26{bottom:138.788000pt;}
.y69{bottom:139.588000pt;}
.y25{bottom:157.188000pt;}
.y47{bottom:157.666667pt;}
.y68{bottom:157.988000pt;}
.y24{bottom:175.588000pt;}
.y46{bottom:176.066667pt;}
.y67{bottom:176.388000pt;}
.y23{bottom:193.988000pt;}
.y45{bottom:194.466667pt;}
.y66{bottom:194.788000pt;}
.y22{bottom:212.388000pt;}
.y65{bottom:213.188000pt;}
.y21{bottom:230.788000pt;}
.y44{bottom:231.588000pt;}
.y43{bottom:249.988000pt;}
.y20{bottom:267.746667pt;}
.y42{bottom:268.388000pt;}
.y64{bottom:268.546667pt;}
.y1f{bottom:286.146667pt;}
.y41{bottom:286.788000pt;}
.y1e{bottom:304.546667pt;}
.y40{bottom:305.188000pt;}
.y1d{bottom:322.946667pt;}
.y3f{bottom:323.588000pt;}
.y1c{bottom:341.346667pt;}
.y3e{bottom:341.988000pt;}
.y63{bottom:342.788000pt;}
.y1b{bottom:359.746667pt;}
.y62{bottom:361.188000pt;}
.y1a{bottom:378.146667pt;}
.y3d{bottom:378.946667pt;}
.y61{bottom:379.588000pt;}
.y19{bottom:415.266667pt;}
.y60{bottom:416.546667pt;}
.y5f{bottom:434.946667pt;}
.y3c{bottom:453.188000pt;}
.y5e{bottom:453.346667pt;}
.y3b{bottom:471.588000pt;}
.y5d{bottom:471.746667pt;}
.y18{bottom:489.346667pt;}
.y3a{bottom:489.988000pt;}
.y5c{bottom:490.146667pt;}
.y17{bottom:507.746667pt;}
.y39{bottom:526.946667pt;}
.y5b{bottom:527.266667pt;}
.y16{bottom:544.866667pt;}
.y38{bottom:545.346667pt;}
.y5a{bottom:545.666667pt;}
.y15{bottom:563.266667pt;}
.y37{bottom:563.746667pt;}
.y59{bottom:564.066667pt;}
.y14{bottom:581.666667pt;}
.y36{bottom:582.146667pt;}
.y58{bottom:582.466667pt;}
.y13{bottom:600.066667pt;}
.y35{bottom:600.546667pt;}
.y57{bottom:600.866667pt;}
.y12{bottom:618.466667pt;}
.y11{bottom:636.866667pt;}
.y34{bottom:637.666667pt;}
.y56{bottom:637.988000pt;}
.y10{bottom:655.266667pt;}
.y33{bottom:656.066667pt;}
.yf{bottom:673.666667pt;}
.y32{bottom:674.466667pt;}
.ye{bottom:692.066667pt;}
.y31{bottom:692.866667pt;}
.yd{bottom:710.466667pt;}
.y30{bottom:711.266667pt;}
.y55{bottom:712.066667pt;}
.y54{bottom:730.466667pt;}
.y2f{bottom:748.388000pt;}
.y53{bottom:748.866667pt;}
.y2e{bottom:766.788000pt;}
.y52{bottom:767.266667pt;}
.yc{bottom:784.546667pt;}
.y2d{bottom:785.188000pt;}
.y51{bottom:785.666667pt;}
.y2c{bottom:803.588000pt;}
.y50{bottom:804.066667pt;}
.yb{bottom:821.666667pt;}
.y2b{bottom:821.988000pt;}
.y4f{bottom:822.466667pt;}
.y2a{bottom:840.388000pt;}
.y4e{bottom:840.866667pt;}
.ya{bottom:858.788000pt;}
.y4d{bottom:859.266667pt;}
.y29{bottom:877.346667pt;}
.y4c{bottom:877.666667pt;}
.y9{bottom:895.746667pt;}
.y4b{bottom:896.066667pt;}
.y4a{bottom:914.466667pt;}
.y8{bottom:932.866667pt;}
.y49{bottom:951.266667pt;}
.y28{bottom:951.588000pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:39.538281pt;}
.h7{height:44.437500pt;}
.h6{height:55.343750pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x5{left:123.200000pt;}
.x6{left:241.120000pt;}
.x8{left:242.560000pt;}
.x3{left:458.560000pt;}
.xb{left:476.000000pt;}
.x7{left:523.200000pt;}
.x2{left:537.440000pt;}
.xa{left:564.960000pt;}
.x9{left:601.920000pt;}
}




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