
    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_739ea4341da02a939a6a33e8.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_b6261abaebebed050921c238.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_e34d31abfe7adcda1c6d3a2c.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_21168fba045f02d457ecd1c9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2297520a7b025fb157fa17ce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_840c6662abd6e77e1cbb48f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692383;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;}
.ls3{letter-spacing:0.287100px;}
.ls2{letter-spacing:18.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;}
}
.ws70{word-spacing:-56.231100px;}
.ws13{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws1a{word-spacing:-40.536000px;}
.ws79{word-spacing:-38.648700px;}
.ws4{word-spacing:-38.645400px;}
.ws3{word-spacing:-38.438100px;}
.ws56{word-spacing:-38.151900px;}
.ws51{word-spacing:-38.143800px;}
.ws50{word-spacing:-37.946400px;}
.ws73{word-spacing:-37.943700px;}
.ws8f{word-spacing:-37.943100px;}
.ws58{word-spacing:-37.716300px;}
.ws57{word-spacing:-37.648800px;}
.ws75{word-spacing:-37.431600px;}
.ws72{word-spacing:-35.052300px;}
.ws2{word-spacing:-33.547800px;}
.ws86{word-spacing:-30.733800px;}
.ws7c{word-spacing:-29.508300px;}
.ws10{word-spacing:-27.857700px;}
.ws8e{word-spacing:-25.405200px;}
.ws8a{word-spacing:-24.252300px;}
.ws6{word-spacing:-23.462100px;}
.ws30{word-spacing:-23.461800px;}
.ws6f{word-spacing:-23.258400px;}
.ws5f{word-spacing:-23.253900px;}
.ws5a{word-spacing:-23.253300px;}
.ws4c{word-spacing:-23.252400px;}
.ws61{word-spacing:-23.246100px;}
.ws1d{word-spacing:-23.245200px;}
.ws69{word-spacing:-23.241600px;}
.ws16{word-spacing:-23.239800px;}
.ws48{word-spacing:-23.032800px;}
.ws3c{word-spacing:-23.025600px;}
.ws42{word-spacing:-23.024700px;}
.ws46{word-spacing:-23.023800px;}
.ws52{word-spacing:-23.022900px;}
.ws34{word-spacing:-22.956600px;}
.ws25{word-spacing:-22.872600px;}
.ws66{word-spacing:-22.824600px;}
.ws68{word-spacing:-22.818300px;}
.ws81{word-spacing:-22.746000px;}
.ws5{word-spacing:-22.743900px;}
.ws5e{word-spacing:-22.742100px;}
.ws59{word-spacing:-22.741500px;}
.ws4e{word-spacing:-22.540200px;}
.ws28{word-spacing:-22.536000px;}
.ws6d{word-spacing:-22.534200px;}
.ws4a{word-spacing:-22.532400px;}
.ws84{word-spacing:-22.531200px;}
.ws54{word-spacing:-22.528800px;}
.ws38{word-spacing:-22.524300px;}
.ws12{word-spacing:-22.521600px;}
.ws5c{word-spacing:-22.520100px;}
.ws5d{word-spacing:-22.517100px;}
.wsf{word-spacing:-22.515300px;}
.ws76{word-spacing:-22.511100px;}
.ws7e{word-spacing:-22.452000px;}
.ws40{word-spacing:-22.444200px;}
.ws17{word-spacing:-22.032000px;}
.ws7a{word-spacing:-22.031100px;}
.ws74{word-spacing:-22.010700px;}
.ws55{word-spacing:-21.814200px;}
.ws60{word-spacing:-21.809700px;}
.ws90{word-spacing:-21.808800px;}
.ws14{word-spacing:-21.308400px;}
.ws21{word-spacing:-21.096000px;}
.ws83{word-spacing:-20.661300px;}
.ws2a{word-spacing:-20.360700px;}
.ws4d{word-spacing:-20.354400px;}
.ws71{word-spacing:-19.653300px;}
.ws1b{word-spacing:-19.431900px;}
.ws2d{word-spacing:-19.135800px;}
.wsa{word-spacing:-18.940200px;}
.ws22{word-spacing:-18.936000px;}
.wse{word-spacing:-18.131400px;}
.ws3f{word-spacing:-16.965600px;}
.ws47{word-spacing:-16.263900px;}
.ws6b{word-spacing:-16.052400px;}
.ws36{word-spacing:-16.040700px;}
.ws4f{word-spacing:-15.544800px;}
.wsb{word-spacing:-15.542400px;}
.ws6c{word-spacing:-15.320700px;}
.ws80{word-spacing:-15.101100px;}
.ws85{word-spacing:-14.755500px;}
.ws8c{word-spacing:-14.612400px;}
.ws44{word-spacing:-14.611500px;}
.ws87{word-spacing:-14.384700px;}
.ws41{word-spacing:-14.108400px;}
.ws9{word-spacing:-13.808700px;}
.ws7d{word-spacing:-13.314600px;}
.ws7b{word-spacing:-13.176000px;}
.ws3d{word-spacing:-12.672000px;}
.ws11{word-spacing:-12.432600px;}
.ws4b{word-spacing:-11.514600px;}
.ws43{word-spacing:-11.016000px;}
.ws7{word-spacing:-10.806000px;}
.ws6e{word-spacing:-10.281600px;}
.ws37{word-spacing:-9.770400px;}
.ws8d{word-spacing:-9.572400px;}
.ws2e{word-spacing:-8.858400px;}
.ws6a{word-spacing:-8.334600px;}
.ws45{word-spacing:-8.127900px;}
.ws89{word-spacing:-8.122500px;}
.ws67{word-spacing:-7.414200px;}
.ws65{word-spacing:-7.412400px;}
.ws3e{word-spacing:-7.401600px;}
.ws3b{word-spacing:-6.696600px;}
.ws2c{word-spacing:-5.978400px;}
.ws23{word-spacing:-5.600100px;}
.ws82{word-spacing:-5.246100px;}
.ws29{word-spacing:-4.746000px;}
.ws1c{word-spacing:-4.531200px;}
.ws2f{word-spacing:-3.813900px;}
.ws91{word-spacing:-3.096000px;}
.ws8b{word-spacing:-2.807100px;}
.ws3a{word-spacing:-1.859400px;}
.ws39{word-spacing:-0.864600px;}
.ws49{word-spacing:-0.852300px;}
.ws2b{word-spacing:-0.201600px;}
.ws0{word-spacing:0.000000px;}
.ws7f{word-spacing:0.498900px;}
.ws35{word-spacing:0.507900px;}
.ws5b{word-spacing:1.945800px;}
.wsc{word-spacing:1.962900px;}
.ws8{word-spacing:3.891600px;}
.ws18{word-spacing:4.829400px;}
.ws53{word-spacing:4.835700px;}
.wsd{word-spacing:7.007400px;}
.ws15{word-spacing:7.725600px;}
.ws78{word-spacing:13.896000px;}
.ws24{word-spacing:22.329900px;}
.ws1f{word-spacing:23.201100px;}
.ws26{word-spacing:25.200000px;}
.ws1e{word-spacing:26.508600px;}
.ws32{word-spacing:29.319000px;}
.ws77{word-spacing:30.024000px;}
.ws19{word-spacing:31.687200px;}
.ws88{word-spacing:32.768100px;}
.ws20{word-spacing:39.750300px;}
.ws27{word-spacing:40.824000px;}
.ws33{word-spacing:54.288000px;}
.ws62{word-spacing:58.331700px;}
.ws64{word-spacing:89.787600px;}
.ws63{word-spacing:126.741300px;}
.ws31{word-spacing:689.622300px;}
._3{margin-left:-1.029900px;}
._1{width:1.894200px;}
._2{width:18.776100px;}
._c{width:19.938000px;}
._b{width:21.020400px;}
._0{width:22.505400px;}
._9{width:23.819400px;}
._1e{width:24.906300px;}
._6{width:26.054400px;}
._5{width:27.920700px;}
._a{width:29.652600px;}
._1d{width:30.854400px;}
._1b{width:31.990800px;}
._15{width:33.482400px;}
._14{width:35.725500px;}
._e{width:37.058700px;}
._16{width:38.359800px;}
._1c{width:40.684200px;}
._13{width:41.745600px;}
._1a{width:42.774600px;}
._7{width:43.920600px;}
._4{width:45.434400px;}
._d{width:46.717200px;}
._8{width:49.008600px;}
._12{width:64.002300px;}
._10{width:65.095500px;}
._f{width:68.662500px;}
._18{width:71.316000px;}
._1f{width:73.440000px;}
._11{width:81.713700px;}
._19{width:95.903700px;}
._17{width:731.225700px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y5a{bottom:20.715000px;}
.y60{bottom:20.775000px;}
.y5e{bottom:20.836500px;}
.y64{bottom:21.661500px;}
.y5c{bottom:31.095000px;}
.y58{bottom:31.155000px;}
.y4{bottom:32.475000px;}
.y5d{bottom:41.355000px;}
.y59{bottom:41.415000px;}
.y63{bottom:42.180000px;}
.y77{bottom:89.715000px;}
.y76{bottom:110.415000px;}
.y51{bottom:114.915000px;}
.y2b{bottom:121.036500px;}
.y75{bottom:131.115000px;}
.y50{bottom:135.615000px;}
.y2a{bottom:141.736500px;}
.y74{bottom:151.815000px;}
.y29{bottom:162.436500px;}
.y73{bottom:172.515000px;}
.y4f{bottom:177.375000px;}
.y72{bottom:193.215000px;}
.y4e{bottom:198.075000px;}
.y28{bottom:204.015000px;}
.y71{bottom:213.915000px;}
.y27{bottom:224.715000px;}
.y70{bottom:234.615000px;}
.y4d{bottom:239.836500px;}
.y6f{bottom:255.315000px;}
.y4c{bottom:260.536500px;}
.y26{bottom:266.475000px;}
.y6e{bottom:276.015000px;}
.y25{bottom:287.175000px;}
.y4b{bottom:302.115000px;}
.y24{bottom:307.875000px;}
.y6d{bottom:317.596500px;}
.y4a{bottom:322.815000px;}
.y23{bottom:328.575000px;}
.y22{bottom:349.275000px;}
.y6c{bottom:359.355000px;}
.y49{bottom:364.575000px;}
.y21{bottom:369.975000px;}
.y6b{bottom:380.055000px;}
.y48{bottom:385.275000px;}
.y20{bottom:390.675000px;}
.y47{bottom:405.975000px;}
.y1f{bottom:411.375000px;}
.y6a{bottom:421.815000px;}
.y46{bottom:426.675000px;}
.y69{bottom:442.515000px;}
.y1e{bottom:453.136500px;}
.y68{bottom:463.215000px;}
.y45{bottom:468.436500px;}
.y67{bottom:483.915000px;}
.y44{bottom:489.136500px;}
.y1d{bottom:494.715000px;}
.y1c{bottom:515.415000px;}
.y66{bottom:525.496500px;}
.y43{bottom:530.715000px;}
.y65{bottom:546.195000px;}
.y42{bottom:551.415000px;}
.y1b{bottom:557.175000px;}
.y41{bottom:572.115000px;}
.y1a{bottom:577.875000px;}
.y62{bottom:586.275000px;}
.y40{bottom:592.815000px;}
.y19{bottom:598.575000px;}
.y3f{bottom:613.515000px;}
.y18{bottom:619.275000px;}
.y17{bottom:639.975000px;}
.y61{bottom:649.500000px;}
.y3e{bottom:655.275000px;}
.y16{bottom:660.675000px;}
.y3d{bottom:675.975000px;}
.y15{bottom:681.375000px;}
.y3c{bottom:696.675000px;}
.y5f{bottom:711.900000px;}
.y3b{bottom:717.375000px;}
.y14{bottom:723.136500px;}
.y5b{bottom:753.600000px;}
.y3a{bottom:759.136500px;}
.y13{bottom:764.715000px;}
.y39{bottom:779.836500px;}
.y12{bottom:785.415000px;}
.y38{bottom:800.536500px;}
.y57{bottom:816.000000px;}
.y37{bottom:821.236500px;}
.y84{bottom:822.136500px;}
.y11{bottom:827.175000px;}
.y83{bottom:842.836500px;}
.y10{bottom:847.875000px;}
.y36{bottom:862.815000px;}
.y82{bottom:863.536500px;}
.yf{bottom:868.575000px;}
.y56{bottom:882.975000px;}
.y35{bottom:883.515000px;}
.y81{bottom:884.236500px;}
.ye{bottom:889.275000px;}
.y34{bottom:904.215000px;}
.y80{bottom:904.936500px;}
.yd{bottom:909.975000px;}
.y55{bottom:924.736500px;}
.y33{bottom:924.915000px;}
.y7f{bottom:925.636500px;}
.yc{bottom:930.675000px;}
.y54{bottom:945.436500px;}
.y7e{bottom:946.336500px;}
.yb{bottom:951.375000px;}
.y32{bottom:966.675000px;}
.y7d{bottom:967.036500px;}
.ya{bottom:972.075000px;}
.y53{bottom:987.015000px;}
.y31{bottom:987.375000px;}
.y7c{bottom:987.736500px;}
.y52{bottom:1007.715000px;}
.y30{bottom:1008.075000px;}
.y7b{bottom:1008.436500px;}
.y9{bottom:1013.836500px;}
.y2f{bottom:1028.775000px;}
.y7a{bottom:1029.136500px;}
.y8{bottom:1034.536500px;}
.y2e{bottom:1049.475000px;}
.y79{bottom:1049.836500px;}
.y7{bottom:1055.236500px;}
.y78{bottom:1070.536500px;}
.y2d{bottom:1091.236500px;}
.y6{bottom:1096.815000px;}
.y2c{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.ha{height:39.375000px;}
.h5{height:44.480566px;}
.hc{height:48.761719px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h9{height:60.075000px;}
.h8{height:60.825000px;}
.hb{height:60.900000px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w4{width:138.450000px;}
.w5{width:139.200000px;}
.w3{width:181.575000px;}
.w6{width:231.075000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.920000px;}
.x9{left:125.700000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x5{left:132.480000px;}
.xb{left:309.450000px;}
.x7{left:414.720000px;}
.xc{left:450.075000px;}
.x3{left:515.880000px;}
.x8{left:520.200000px;}
.x6{left:551.520000px;}
.xd{left:591.450000px;}
.x2{left:604.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.255200pt;}
.ls2{letter-spacing:16.000000pt;}
.ws70{word-spacing:-49.983200pt;}
.ws13{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws1a{word-spacing:-36.032000pt;}
.ws79{word-spacing:-34.354400pt;}
.ws4{word-spacing:-34.351467pt;}
.ws3{word-spacing:-34.167200pt;}
.ws56{word-spacing:-33.912800pt;}
.ws51{word-spacing:-33.905600pt;}
.ws50{word-spacing:-33.730133pt;}
.ws73{word-spacing:-33.727733pt;}
.ws8f{word-spacing:-33.727200pt;}
.ws58{word-spacing:-33.525600pt;}
.ws57{word-spacing:-33.465600pt;}
.ws75{word-spacing:-33.272533pt;}
.ws72{word-spacing:-31.157600pt;}
.ws2{word-spacing:-29.820267pt;}
.ws86{word-spacing:-27.318933pt;}
.ws7c{word-spacing:-26.229600pt;}
.ws10{word-spacing:-24.762400pt;}
.ws8e{word-spacing:-22.582400pt;}
.ws8a{word-spacing:-21.557600pt;}
.ws6{word-spacing:-20.855200pt;}
.ws30{word-spacing:-20.854933pt;}
.ws6f{word-spacing:-20.674133pt;}
.ws5f{word-spacing:-20.670133pt;}
.ws5a{word-spacing:-20.669600pt;}
.ws4c{word-spacing:-20.668800pt;}
.ws61{word-spacing:-20.663200pt;}
.ws1d{word-spacing:-20.662400pt;}
.ws69{word-spacing:-20.659200pt;}
.ws16{word-spacing:-20.657600pt;}
.ws48{word-spacing:-20.473600pt;}
.ws3c{word-spacing:-20.467200pt;}
.ws42{word-spacing:-20.466400pt;}
.ws46{word-spacing:-20.465600pt;}
.ws52{word-spacing:-20.464800pt;}
.ws34{word-spacing:-20.405867pt;}
.ws25{word-spacing:-20.331200pt;}
.ws66{word-spacing:-20.288533pt;}
.ws68{word-spacing:-20.282933pt;}
.ws81{word-spacing:-20.218667pt;}
.ws5{word-spacing:-20.216800pt;}
.ws5e{word-spacing:-20.215200pt;}
.ws59{word-spacing:-20.214667pt;}
.ws4e{word-spacing:-20.035733pt;}
.ws28{word-spacing:-20.032000pt;}
.ws6d{word-spacing:-20.030400pt;}
.ws4a{word-spacing:-20.028800pt;}
.ws84{word-spacing:-20.027733pt;}
.ws54{word-spacing:-20.025600pt;}
.ws38{word-spacing:-20.021600pt;}
.ws12{word-spacing:-20.019200pt;}
.ws5c{word-spacing:-20.017867pt;}
.ws5d{word-spacing:-20.015200pt;}
.wsf{word-spacing:-20.013600pt;}
.ws76{word-spacing:-20.009867pt;}
.ws7e{word-spacing:-19.957333pt;}
.ws40{word-spacing:-19.950400pt;}
.ws17{word-spacing:-19.584000pt;}
.ws7a{word-spacing:-19.583200pt;}
.ws74{word-spacing:-19.565067pt;}
.ws55{word-spacing:-19.390400pt;}
.ws60{word-spacing:-19.386400pt;}
.ws90{word-spacing:-19.385600pt;}
.ws14{word-spacing:-18.940800pt;}
.ws21{word-spacing:-18.752000pt;}
.ws83{word-spacing:-18.365600pt;}
.ws2a{word-spacing:-18.098400pt;}
.ws4d{word-spacing:-18.092800pt;}
.ws71{word-spacing:-17.469600pt;}
.ws1b{word-spacing:-17.272800pt;}
.ws2d{word-spacing:-17.009600pt;}
.wsa{word-spacing:-16.835733pt;}
.ws22{word-spacing:-16.832000pt;}
.wse{word-spacing:-16.116800pt;}
.ws3f{word-spacing:-15.080533pt;}
.ws47{word-spacing:-14.456800pt;}
.ws6b{word-spacing:-14.268800pt;}
.ws36{word-spacing:-14.258400pt;}
.ws4f{word-spacing:-13.817600pt;}
.wsb{word-spacing:-13.815467pt;}
.ws6c{word-spacing:-13.618400pt;}
.ws80{word-spacing:-13.423200pt;}
.ws85{word-spacing:-13.116000pt;}
.ws8c{word-spacing:-12.988800pt;}
.ws44{word-spacing:-12.988000pt;}
.ws87{word-spacing:-12.786400pt;}
.ws41{word-spacing:-12.540800pt;}
.ws9{word-spacing:-12.274400pt;}
.ws7d{word-spacing:-11.835200pt;}
.ws7b{word-spacing:-11.712000pt;}
.ws3d{word-spacing:-11.264000pt;}
.ws11{word-spacing:-11.051200pt;}
.ws4b{word-spacing:-10.235200pt;}
.ws43{word-spacing:-9.792000pt;}
.ws7{word-spacing:-9.605333pt;}
.ws6e{word-spacing:-9.139200pt;}
.ws37{word-spacing:-8.684800pt;}
.ws8d{word-spacing:-8.508800pt;}
.ws2e{word-spacing:-7.874133pt;}
.ws6a{word-spacing:-7.408533pt;}
.ws45{word-spacing:-7.224800pt;}
.ws89{word-spacing:-7.220000pt;}
.ws67{word-spacing:-6.590400pt;}
.ws65{word-spacing:-6.588800pt;}
.ws3e{word-spacing:-6.579200pt;}
.ws3b{word-spacing:-5.952533pt;}
.ws2c{word-spacing:-5.314133pt;}
.ws23{word-spacing:-4.977867pt;}
.ws82{word-spacing:-4.663200pt;}
.ws29{word-spacing:-4.218667pt;}
.ws1c{word-spacing:-4.027733pt;}
.ws2f{word-spacing:-3.390133pt;}
.ws91{word-spacing:-2.752000pt;}
.ws8b{word-spacing:-2.495200pt;}
.ws3a{word-spacing:-1.652800pt;}
.ws39{word-spacing:-0.768533pt;}
.ws49{word-spacing:-0.757600pt;}
.ws2b{word-spacing:-0.179200pt;}
.ws0{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.443467pt;}
.ws35{word-spacing:0.451467pt;}
.ws5b{word-spacing:1.729600pt;}
.wsc{word-spacing:1.744800pt;}
.ws8{word-spacing:3.459200pt;}
.ws18{word-spacing:4.292800pt;}
.ws53{word-spacing:4.298400pt;}
.wsd{word-spacing:6.228800pt;}
.ws15{word-spacing:6.867200pt;}
.ws78{word-spacing:12.352000pt;}
.ws24{word-spacing:19.848800pt;}
.ws1f{word-spacing:20.623200pt;}
.ws26{word-spacing:22.400000pt;}
.ws1e{word-spacing:23.563200pt;}
.ws32{word-spacing:26.061333pt;}
.ws77{word-spacing:26.688000pt;}
.ws19{word-spacing:28.166400pt;}
.ws88{word-spacing:29.127200pt;}
.ws20{word-spacing:35.333600pt;}
.ws27{word-spacing:36.288000pt;}
.ws33{word-spacing:48.256000pt;}
.ws62{word-spacing:51.850400pt;}
.ws64{word-spacing:79.811200pt;}
.ws63{word-spacing:112.658933pt;}
.ws31{word-spacing:612.997600pt;}
._3{margin-left:-0.915467pt;}
._1{width:1.683733pt;}
._2{width:16.689867pt;}
._c{width:17.722667pt;}
._b{width:18.684800pt;}
._0{width:20.004800pt;}
._9{width:21.172800pt;}
._1e{width:22.138933pt;}
._6{width:23.159467pt;}
._5{width:24.818400pt;}
._a{width:26.357867pt;}
._1d{width:27.426133pt;}
._1b{width:28.436267pt;}
._15{width:29.762133pt;}
._14{width:31.756000pt;}
._e{width:32.941067pt;}
._16{width:34.097600pt;}
._1c{width:36.163733pt;}
._13{width:37.107200pt;}
._1a{width:38.021867pt;}
._7{width:39.040533pt;}
._4{width:40.386133pt;}
._d{width:41.526400pt;}
._8{width:43.563200pt;}
._12{width:56.890933pt;}
._10{width:57.862667pt;}
._f{width:61.033333pt;}
._18{width:63.392000pt;}
._1f{width:65.280000pt;}
._11{width:72.634400pt;}
._19{width:85.247733pt;}
._17{width:649.978400pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y5a{bottom:18.413333pt;}
.y60{bottom:18.466667pt;}
.y5e{bottom:18.521333pt;}
.y64{bottom:19.254667pt;}
.y5c{bottom:27.640000pt;}
.y58{bottom:27.693333pt;}
.y4{bottom:28.866667pt;}
.y5d{bottom:36.760000pt;}
.y59{bottom:36.813333pt;}
.y63{bottom:37.493333pt;}
.y77{bottom:79.746667pt;}
.y76{bottom:98.146667pt;}
.y51{bottom:102.146667pt;}
.y2b{bottom:107.588000pt;}
.y75{bottom:116.546667pt;}
.y50{bottom:120.546667pt;}
.y2a{bottom:125.988000pt;}
.y74{bottom:134.946667pt;}
.y29{bottom:144.388000pt;}
.y73{bottom:153.346667pt;}
.y4f{bottom:157.666667pt;}
.y72{bottom:171.746667pt;}
.y4e{bottom:176.066667pt;}
.y28{bottom:181.346667pt;}
.y71{bottom:190.146667pt;}
.y27{bottom:199.746667pt;}
.y70{bottom:208.546667pt;}
.y4d{bottom:213.188000pt;}
.y6f{bottom:226.946667pt;}
.y4c{bottom:231.588000pt;}
.y26{bottom:236.866667pt;}
.y6e{bottom:245.346667pt;}
.y25{bottom:255.266667pt;}
.y4b{bottom:268.546667pt;}
.y24{bottom:273.666667pt;}
.y6d{bottom:282.308000pt;}
.y4a{bottom:286.946667pt;}
.y23{bottom:292.066667pt;}
.y22{bottom:310.466667pt;}
.y6c{bottom:319.426667pt;}
.y49{bottom:324.066667pt;}
.y21{bottom:328.866667pt;}
.y6b{bottom:337.826667pt;}
.y48{bottom:342.466667pt;}
.y20{bottom:347.266667pt;}
.y47{bottom:360.866667pt;}
.y1f{bottom:365.666667pt;}
.y6a{bottom:374.946667pt;}
.y46{bottom:379.266667pt;}
.y69{bottom:393.346667pt;}
.y1e{bottom:402.788000pt;}
.y68{bottom:411.746667pt;}
.y45{bottom:416.388000pt;}
.y67{bottom:430.146667pt;}
.y44{bottom:434.788000pt;}
.y1d{bottom:439.746667pt;}
.y1c{bottom:458.146667pt;}
.y66{bottom:467.108000pt;}
.y43{bottom:471.746667pt;}
.y65{bottom:485.506667pt;}
.y42{bottom:490.146667pt;}
.y1b{bottom:495.266667pt;}
.y41{bottom:508.546667pt;}
.y1a{bottom:513.666667pt;}
.y62{bottom:521.133333pt;}
.y40{bottom:526.946667pt;}
.y19{bottom:532.066667pt;}
.y3f{bottom:545.346667pt;}
.y18{bottom:550.466667pt;}
.y17{bottom:568.866667pt;}
.y61{bottom:577.333333pt;}
.y3e{bottom:582.466667pt;}
.y16{bottom:587.266667pt;}
.y3d{bottom:600.866667pt;}
.y15{bottom:605.666667pt;}
.y3c{bottom:619.266667pt;}
.y5f{bottom:632.800000pt;}
.y3b{bottom:637.666667pt;}
.y14{bottom:642.788000pt;}
.y5b{bottom:669.866667pt;}
.y3a{bottom:674.788000pt;}
.y13{bottom:679.746667pt;}
.y39{bottom:693.188000pt;}
.y12{bottom:698.146667pt;}
.y38{bottom:711.588000pt;}
.y57{bottom:725.333333pt;}
.y37{bottom:729.988000pt;}
.y84{bottom:730.788000pt;}
.y11{bottom:735.266667pt;}
.y83{bottom:749.188000pt;}
.y10{bottom:753.666667pt;}
.y36{bottom:766.946667pt;}
.y82{bottom:767.588000pt;}
.yf{bottom:772.066667pt;}
.y56{bottom:784.866667pt;}
.y35{bottom:785.346667pt;}
.y81{bottom:785.988000pt;}
.ye{bottom:790.466667pt;}
.y34{bottom:803.746667pt;}
.y80{bottom:804.388000pt;}
.yd{bottom:808.866667pt;}
.y55{bottom:821.988000pt;}
.y33{bottom:822.146667pt;}
.y7f{bottom:822.788000pt;}
.yc{bottom:827.266667pt;}
.y54{bottom:840.388000pt;}
.y7e{bottom:841.188000pt;}
.yb{bottom:845.666667pt;}
.y32{bottom:859.266667pt;}
.y7d{bottom:859.588000pt;}
.ya{bottom:864.066667pt;}
.y53{bottom:877.346667pt;}
.y31{bottom:877.666667pt;}
.y7c{bottom:877.988000pt;}
.y52{bottom:895.746667pt;}
.y30{bottom:896.066667pt;}
.y7b{bottom:896.388000pt;}
.y9{bottom:901.188000pt;}
.y2f{bottom:914.466667pt;}
.y7a{bottom:914.788000pt;}
.y8{bottom:919.588000pt;}
.y2e{bottom:932.866667pt;}
.y79{bottom:933.188000pt;}
.y7{bottom:937.988000pt;}
.y78{bottom:951.588000pt;}
.y2d{bottom:969.988000pt;}
.y6{bottom:974.946667pt;}
.y2c{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.ha{height:35.000000pt;}
.h5{height:39.538281pt;}
.hc{height:43.343750pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h9{height:53.400000pt;}
.h8{height:54.066667pt;}
.hb{height:54.133333pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w4{width:123.066667pt;}
.w5{width:123.733333pt;}
.w3{width:161.400000pt;}
.w6{width:205.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.706667pt;}
.x9{left:111.733333pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x5{left:117.760000pt;}
.xb{left:275.066667pt;}
.x7{left:368.640000pt;}
.xc{left:400.066667pt;}
.x3{left:458.560000pt;}
.x8{left:462.400000pt;}
.x6{left:490.240000pt;}
.xd{left:525.733333pt;}
.x2{left:537.440000pt;}
}




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