
    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_8df6392ecd03cba5e4bed04a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_750702174cd7352416859099.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_43aacf623ca0db8c6ee24de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_f06212c5782bdbd3d87f8ecd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a3b572a793aca570be03bfc3.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_bfebc26c77608f0af432564d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765625;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_a7c3a5c3ee1776c85d9e0582.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_05758652fa257096721e6513.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992188;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:80.280000px;}
.ls1{letter-spacing:109.397700px;}
.ls3{letter-spacing:112.824000px;}
.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;}
}
.ws5{word-spacing:-55.944000px;}
.ws16{word-spacing:-39.008100px;}
.ws1c{word-spacing:-39.002700px;}
.ws67{word-spacing:-38.949300px;}
.ws6d{word-spacing:-38.862900px;}
.ws27{word-spacing:-38.862300px;}
.ws8{word-spacing:-38.807100px;}
.ws5b{word-spacing:-38.800800px;}
.ws6e{word-spacing:-38.662200px;}
.ws71{word-spacing:-38.661300px;}
.ws80{word-spacing:-38.659500px;}
.ws4e{word-spacing:-38.658600px;}
.ws4a{word-spacing:-38.656800px;}
.ws56{word-spacing:-38.655900px;}
.ws3f{word-spacing:-38.652300px;}
.ws8a{word-spacing:-38.650800px;}
.ws87{word-spacing:-38.650500px;}
.ws24{word-spacing:-38.596200px;}
.ws4b{word-spacing:-38.574000px;}
.ws47{word-spacing:-38.448000px;}
.ws2c{word-spacing:-38.438100px;}
.ws7{word-spacing:-38.430000px;}
.ws7a{word-spacing:-38.374200px;}
.ws66{word-spacing:-38.369700px;}
.ws53{word-spacing:-38.364300px;}
.ws4f{word-spacing:-38.359800px;}
.ws5f{word-spacing:-38.306400px;}
.ws45{word-spacing:-38.301000px;}
.ws63{word-spacing:-38.299200px;}
.ws64{word-spacing:-38.296800px;}
.ws91{word-spacing:-38.293200px;}
.ws32{word-spacing:-38.289600px;}
.ws83{word-spacing:-38.284200px;}
.ws6a{word-spacing:-38.229300px;}
.ws8b{word-spacing:-38.222400px;}
.ws19{word-spacing:-38.155200px;}
.ws3b{word-spacing:-38.151000px;}
.ws3{word-spacing:-38.150100px;}
.ws2{word-spacing:-38.081700px;}
.ws15{word-spacing:-38.077200px;}
.ws4{word-spacing:-38.012400px;}
.ws90{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws46{word-spacing:-37.942200px;}
.ws52{word-spacing:-37.941900px;}
.ws7d{word-spacing:-37.940400px;}
.ws77{word-spacing:-37.938600px;}
.ws57{word-spacing:-37.935000px;}
.ws3d{word-spacing:-37.933200px;}
.ws8f{word-spacing:-37.860300px;}
.ws10{word-spacing:-37.795500px;}
.ws6{word-spacing:-37.722600px;}
.ws88{word-spacing:-37.637100px;}
.ws2f{word-spacing:-37.579200px;}
.ws1f{word-spacing:-37.224000px;}
.ws62{word-spacing:-37.222200px;}
.wsf{word-spacing:-37.000800px;}
.ws3c{word-spacing:-36.496800px;}
.ws4c{word-spacing:-35.781000px;}
.ws21{word-spacing:-35.062800px;}
.ws18{word-spacing:-34.696800px;}
.ws2e{word-spacing:-34.116300px;}
.ws2d{word-spacing:-33.681600px;}
.ws76{word-spacing:-33.185700px;}
.ws70{word-spacing:-32.900400px;}
.ws86{word-spacing:-32.884200px;}
.ws50{word-spacing:-32.184000px;}
.ws58{word-spacing:-31.660200px;}
.ws35{word-spacing:-31.464000px;}
.ws28{word-spacing:-31.174800px;}
.ws29{word-spacing:-30.945600px;}
.ws11{word-spacing:-30.806100px;}
.ws12{word-spacing:-30.744000px;}
.ws13{word-spacing:-30.740400px;}
.ws1d{word-spacing:-30.740100px;}
.ws51{word-spacing:-30.018000px;}
.ws6c{word-spacing:-29.508300px;}
.ws23{word-spacing:-29.304000px;}
.ws2b{word-spacing:-28.929000px;}
.ws48{word-spacing:-28.576800px;}
.ws81{word-spacing:-28.573200px;}
.ws25{word-spacing:-27.864000px;}
.ws74{word-spacing:-27.858600px;}
.ws36{word-spacing:-27.136800px;}
.ws22{word-spacing:-25.704000px;}
.ws1e{word-spacing:-24.615900px;}
.ws89{word-spacing:-24.235200px;}
.ws38{word-spacing:-23.955600px;}
.ws40{word-spacing:-23.890500px;}
.ws61{word-spacing:-23.548200px;}
.ws37{word-spacing:-23.515200px;}
.ws60{word-spacing:-23.253000px;}
.ws41{word-spacing:-22.830000px;}
.ws43{word-spacing:-22.828200px;}
.ws6b{word-spacing:-22.815600px;}
.ws78{word-spacing:-22.530600px;}
.ws42{word-spacing:-22.522500px;}
.ws8e{word-spacing:-22.104000px;}
.ws4d{word-spacing:-22.096800px;}
.ws8d{word-spacing:-22.095000px;}
.ws8c{word-spacing:-21.591900px;}
.ws85{word-spacing:-21.017700px;}
.ws55{word-spacing:-20.654400px;}
.ws5d{word-spacing:-19.417500px;}
.wse{word-spacing:-19.224000px;}
.ws5c{word-spacing:-18.572100px;}
.ws59{word-spacing:-18.504000px;}
.ws20{word-spacing:-17.790000px;}
.ws7f{word-spacing:-17.352000px;}
.ws1a{word-spacing:-15.624000px;}
.ws68{word-spacing:-14.827200px;}
.ws69{word-spacing:-14.190000px;}
.ws3e{word-spacing:-11.589300px;}
.ws2a{word-spacing:-11.304000px;}
.ws5e{word-spacing:-9.499500px;}
.ws26{word-spacing:-8.626500px;}
.ws1b{word-spacing:-8.430000px;}
.ws31{word-spacing:-7.835700px;}
.ws30{word-spacing:-7.397100px;}
.ws34{word-spacing:-6.270000px;}
.wsc{word-spacing:-6.186600px;}
.ws33{word-spacing:-5.966100px;}
.ws44{word-spacing:-3.595500px;}
.ws17{word-spacing:-3.376200px;}
.ws3a{word-spacing:-1.936800px;}
.ws39{word-spacing:-1.644300px;}
.ws54{word-spacing:0.000000px;}
.ws14{word-spacing:1.305900px;}
.wsa{word-spacing:1.651800px;}
.ws9{word-spacing:2.160000px;}
.ws82{word-spacing:4.186800px;}
.ws84{word-spacing:7.929000px;}
.ws79{word-spacing:13.896000px;}
.ws73{word-spacing:13.896300px;}
.wsb{word-spacing:14.259000px;}
.wsd{word-spacing:17.149500px;}
.ws7c{word-spacing:21.100500px;}
.ws49{word-spacing:23.253600px;}
.ws65{word-spacing:26.856000px;}
.ws5a{word-spacing:36.216000px;}
.ws7e{word-spacing:42.278400px;}
.ws7b{word-spacing:86.616000px;}
.ws6f{word-spacing:221.976000px;}
.ws75{word-spacing:237.398700px;}
.ws72{word-spacing:292.833900px;}
.ws1{word-spacing:1037.484900px;}
._12{margin-left:-2.329200px;}
._2{margin-left:-1.314000px;}
._0{width:1.076400px;}
._1c{width:2.079000px;}
._1{width:18.968400px;}
._9{width:20.012400px;}
._d{width:22.384800px;}
._15{width:23.443200px;}
._1b{width:25.047000px;}
._a{width:26.289000px;}
._b{width:27.741600px;}
._13{width:28.789200px;}
._17{width:29.937600px;}
._f{width:32.637600px;}
._10{width:33.917400px;}
._3{width:35.799300px;}
._8{width:37.806300px;}
._1d{width:38.860500px;}
._11{width:39.944400px;}
._e{width:41.446800px;}
._19{width:45.859500px;}
._1f{width:47.682000px;}
._14{width:48.720600px;}
._16{width:49.953600px;}
._6{width:51.192000px;}
._c{width:54.225600px;}
._18{width:55.406700px;}
._4{width:59.110200px;}
._24{width:61.758000px;}
._25{width:64.873800px;}
._5{width:71.349000px;}
._7{width:74.475300px;}
._23{width:78.192000px;}
._1a{width:81.013200px;}
._26{width:82.800000px;}
._1e{width:94.104000px;}
._22{width:143.647200px;}
._21{width:294.552000px;}
._20{width:349.920000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y50{bottom:101.236500px;}
.y4f{bottom:121.936500px;}
.y27{bottom:141.015000px;}
.y71{bottom:141.736500px;}
.y4e{bottom:142.636500px;}
.y26{bottom:161.715000px;}
.y70{bottom:162.436500px;}
.y4d{bottom:163.336500px;}
.y25{bottom:182.415000px;}
.y6f{bottom:183.136500px;}
.y4c{bottom:184.036500px;}
.y24{bottom:203.115000px;}
.y6e{bottom:203.836500px;}
.y4b{bottom:204.736500px;}
.y6d{bottom:224.536500px;}
.y4a{bottom:225.436500px;}
.y23{bottom:244.875000px;}
.y6c{bottom:245.236500px;}
.y49{bottom:246.136500px;}
.y22{bottom:265.575000px;}
.y6b{bottom:266.115000px;}
.y48{bottom:266.836500px;}
.y21{bottom:286.275000px;}
.y6a{bottom:286.815000px;}
.y47{bottom:287.536500px;}
.y20{bottom:306.975000px;}
.y69{bottom:307.515000px;}
.y46{bottom:308.236500px;}
.y1f{bottom:327.675000px;}
.y68{bottom:328.215000px;}
.y45{bottom:328.936500px;}
.y67{bottom:348.915000px;}
.y44{bottom:349.636500px;}
.y1e{bottom:369.436500px;}
.y66{bottom:369.615000px;}
.y1d{bottom:390.136500px;}
.y65{bottom:390.315000px;}
.y43{bottom:391.396500px;}
.y1c{bottom:410.836500px;}
.y64{bottom:411.015000px;}
.y63{bottom:431.715000px;}
.y1b{bottom:452.415000px;}
.y1a{bottom:473.115000px;}
.y42{bottom:474.736500px;}
.y19{bottom:493.815000px;}
.y62{bottom:494.175000px;}
.y41{bottom:495.436500px;}
.y40{bottom:516.136500px;}
.y18{bottom:535.575000px;}
.y3f{bottom:557.896500px;}
.y17{bottom:577.336500px;}
.y61{bottom:577.695000px;}
.y7f{bottom:578.236500px;}
.y3e{bottom:578.596500px;}
.y16{bottom:598.036500px;}
.y60{bottom:598.396500px;}
.y7e{bottom:598.936500px;}
.y15{bottom:618.736500px;}
.y5f{bottom:619.096500px;}
.y7d{bottom:619.636500px;}
.y3d{bottom:620.175000px;}
.y7c{bottom:640.336500px;}
.y3c{bottom:640.875000px;}
.y14{bottom:660.315000px;}
.y5e{bottom:660.675000px;}
.y7b{bottom:661.036500px;}
.y3b{bottom:661.575000px;}
.y5d{bottom:681.375000px;}
.y7a{bottom:681.736500px;}
.y3a{bottom:682.275000px;}
.y13{bottom:702.075000px;}
.y79{bottom:702.436500px;}
.y12{bottom:722.775000px;}
.y78{bottom:723.136500px;}
.y39{bottom:724.036500px;}
.y5c{bottom:743.836500px;}
.y38{bottom:744.736500px;}
.y11{bottom:764.536500px;}
.y37{bottom:765.436500px;}
.y10{bottom:785.236500px;}
.y5b{bottom:785.596500px;}
.y36{bottom:786.136500px;}
.yf{bottom:805.936500px;}
.y77{bottom:806.115000px;}
.y5a{bottom:806.295000px;}
.ye{bottom:826.636500px;}
.y59{bottom:826.996500px;}
.y35{bottom:827.895000px;}
.yd{bottom:847.336500px;}
.y76{bottom:847.875000px;}
.y34{bottom:848.596500px;}
.yc{bottom:868.036500px;}
.y58{bottom:868.575000px;}
.y33{bottom:869.295000px;}
.yb{bottom:888.736500px;}
.y57{bottom:889.275000px;}
.y32{bottom:889.995000px;}
.y56{bottom:909.975000px;}
.y31{bottom:910.695000px;}
.ya{bottom:930.315000px;}
.y30{bottom:931.395000px;}
.y9{bottom:951.015000px;}
.y55{bottom:951.736500px;}
.y2f{bottom:952.095000px;}
.y8{bottom:971.715000px;}
.y54{bottom:972.436500px;}
.y53{bottom:993.136500px;}
.y2e{bottom:993.675000px;}
.y52{bottom:1013.836500px;}
.y2d{bottom:1014.375000px;}
.y75{bottom:1034.715000px;}
.y2c{bottom:1035.075000px;}
.y51{bottom:1055.595000px;}
.y2b{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y2a{bottom:1076.475000px;}
.y6{bottom:1117.875000px;}
.y74{bottom:1118.055000px;}
.y29{bottom:1118.236500px;}
.y73{bottom:1138.755000px;}
.y28{bottom:1138.936500px;}
.y72{bottom:1159.455000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h5{height:49.992188px;}
.h6{height:55.125000px;}
.h7{height:56.285156px;}
.h2{height:62.261719px;}
.h4{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:129.600000px;}
.x8{left:148.680000px;}
.x2{left:160.560000px;}
.x5{left:174.600000px;}
.x9{left:242.820000px;}
.x6{left:369.000000px;}
.x7{left:405.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:71.360000pt;}
.ls1{letter-spacing:97.242400pt;}
.ls3{letter-spacing:100.288000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws16{word-spacing:-34.673867pt;}
.ws1c{word-spacing:-34.669067pt;}
.ws67{word-spacing:-34.621600pt;}
.ws6d{word-spacing:-34.544800pt;}
.ws27{word-spacing:-34.544267pt;}
.ws8{word-spacing:-34.495200pt;}
.ws5b{word-spacing:-34.489600pt;}
.ws6e{word-spacing:-34.366400pt;}
.ws71{word-spacing:-34.365600pt;}
.ws80{word-spacing:-34.364000pt;}
.ws4e{word-spacing:-34.363200pt;}
.ws4a{word-spacing:-34.361600pt;}
.ws56{word-spacing:-34.360800pt;}
.ws3f{word-spacing:-34.357600pt;}
.ws8a{word-spacing:-34.356267pt;}
.ws87{word-spacing:-34.356000pt;}
.ws24{word-spacing:-34.307733pt;}
.ws4b{word-spacing:-34.288000pt;}
.ws47{word-spacing:-34.176000pt;}
.ws2c{word-spacing:-34.167200pt;}
.ws7{word-spacing:-34.160000pt;}
.ws7a{word-spacing:-34.110400pt;}
.ws66{word-spacing:-34.106400pt;}
.ws53{word-spacing:-34.101600pt;}
.ws4f{word-spacing:-34.097600pt;}
.ws5f{word-spacing:-34.050133pt;}
.ws45{word-spacing:-34.045333pt;}
.ws63{word-spacing:-34.043733pt;}
.ws64{word-spacing:-34.041600pt;}
.ws91{word-spacing:-34.038400pt;}
.ws32{word-spacing:-34.035200pt;}
.ws83{word-spacing:-34.030400pt;}
.ws6a{word-spacing:-33.981600pt;}
.ws8b{word-spacing:-33.975467pt;}
.ws19{word-spacing:-33.915733pt;}
.ws3b{word-spacing:-33.912000pt;}
.ws3{word-spacing:-33.911200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws15{word-spacing:-33.846400pt;}
.ws4{word-spacing:-33.788800pt;}
.ws90{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws46{word-spacing:-33.726400pt;}
.ws52{word-spacing:-33.726133pt;}
.ws7d{word-spacing:-33.724800pt;}
.ws77{word-spacing:-33.723200pt;}
.ws57{word-spacing:-33.720000pt;}
.ws3d{word-spacing:-33.718400pt;}
.ws8f{word-spacing:-33.653600pt;}
.ws10{word-spacing:-33.596000pt;}
.ws6{word-spacing:-33.531200pt;}
.ws88{word-spacing:-33.455200pt;}
.ws2f{word-spacing:-33.403733pt;}
.ws1f{word-spacing:-33.088000pt;}
.ws62{word-spacing:-33.086400pt;}
.wsf{word-spacing:-32.889600pt;}
.ws3c{word-spacing:-32.441600pt;}
.ws4c{word-spacing:-31.805333pt;}
.ws21{word-spacing:-31.166933pt;}
.ws18{word-spacing:-30.841600pt;}
.ws2e{word-spacing:-30.325600pt;}
.ws2d{word-spacing:-29.939200pt;}
.ws76{word-spacing:-29.498400pt;}
.ws70{word-spacing:-29.244800pt;}
.ws86{word-spacing:-29.230400pt;}
.ws50{word-spacing:-28.608000pt;}
.ws58{word-spacing:-28.142400pt;}
.ws35{word-spacing:-27.968000pt;}
.ws28{word-spacing:-27.710933pt;}
.ws29{word-spacing:-27.507200pt;}
.ws11{word-spacing:-27.383200pt;}
.ws12{word-spacing:-27.328000pt;}
.ws13{word-spacing:-27.324800pt;}
.ws1d{word-spacing:-27.324533pt;}
.ws51{word-spacing:-26.682667pt;}
.ws6c{word-spacing:-26.229600pt;}
.ws23{word-spacing:-26.048000pt;}
.ws2b{word-spacing:-25.714667pt;}
.ws48{word-spacing:-25.401600pt;}
.ws81{word-spacing:-25.398400pt;}
.ws25{word-spacing:-24.768000pt;}
.ws74{word-spacing:-24.763200pt;}
.ws36{word-spacing:-24.121600pt;}
.ws22{word-spacing:-22.848000pt;}
.ws1e{word-spacing:-21.880800pt;}
.ws89{word-spacing:-21.542400pt;}
.ws38{word-spacing:-21.293867pt;}
.ws40{word-spacing:-21.236000pt;}
.ws61{word-spacing:-20.931733pt;}
.ws37{word-spacing:-20.902400pt;}
.ws60{word-spacing:-20.669333pt;}
.ws41{word-spacing:-20.293333pt;}
.ws43{word-spacing:-20.291733pt;}
.ws6b{word-spacing:-20.280533pt;}
.ws78{word-spacing:-20.027200pt;}
.ws42{word-spacing:-20.020000pt;}
.ws8e{word-spacing:-19.648000pt;}
.ws4d{word-spacing:-19.641600pt;}
.ws8d{word-spacing:-19.640000pt;}
.ws8c{word-spacing:-19.192800pt;}
.ws85{word-spacing:-18.682400pt;}
.ws55{word-spacing:-18.359467pt;}
.ws5d{word-spacing:-17.260000pt;}
.wse{word-spacing:-17.088000pt;}
.ws5c{word-spacing:-16.508533pt;}
.ws59{word-spacing:-16.448000pt;}
.ws20{word-spacing:-15.813333pt;}
.ws7f{word-spacing:-15.424000pt;}
.ws1a{word-spacing:-13.888000pt;}
.ws68{word-spacing:-13.179733pt;}
.ws69{word-spacing:-12.613333pt;}
.ws3e{word-spacing:-10.301600pt;}
.ws2a{word-spacing:-10.048000pt;}
.ws5e{word-spacing:-8.444000pt;}
.ws26{word-spacing:-7.668000pt;}
.ws1b{word-spacing:-7.493333pt;}
.ws31{word-spacing:-6.965067pt;}
.ws30{word-spacing:-6.575200pt;}
.ws34{word-spacing:-5.573333pt;}
.wsc{word-spacing:-5.499200pt;}
.ws33{word-spacing:-5.303200pt;}
.ws44{word-spacing:-3.196000pt;}
.ws17{word-spacing:-3.001067pt;}
.ws3a{word-spacing:-1.721600pt;}
.ws39{word-spacing:-1.461600pt;}
.ws54{word-spacing:0.000000pt;}
.ws14{word-spacing:1.160800pt;}
.wsa{word-spacing:1.468267pt;}
.ws9{word-spacing:1.920000pt;}
.ws82{word-spacing:3.721600pt;}
.ws84{word-spacing:7.048000pt;}
.ws79{word-spacing:12.352000pt;}
.ws73{word-spacing:12.352267pt;}
.wsb{word-spacing:12.674667pt;}
.wsd{word-spacing:15.244000pt;}
.ws7c{word-spacing:18.756000pt;}
.ws49{word-spacing:20.669867pt;}
.ws65{word-spacing:23.872000pt;}
.ws5a{word-spacing:32.192000pt;}
.ws7e{word-spacing:37.580800pt;}
.ws7b{word-spacing:76.992000pt;}
.ws6f{word-spacing:197.312000pt;}
.ws75{word-spacing:211.021067pt;}
.ws72{word-spacing:260.296800pt;}
.ws1{word-spacing:922.208800pt;}
._12{margin-left:-2.070400pt;}
._2{margin-left:-1.168000pt;}
._0{width:0.956800pt;}
._1c{width:1.848000pt;}
._1{width:16.860800pt;}
._9{width:17.788800pt;}
._d{width:19.897600pt;}
._15{width:20.838400pt;}
._1b{width:22.264000pt;}
._a{width:23.368000pt;}
._b{width:24.659200pt;}
._13{width:25.590400pt;}
._17{width:26.611200pt;}
._f{width:29.011200pt;}
._10{width:30.148800pt;}
._3{width:31.821600pt;}
._8{width:33.605600pt;}
._1d{width:34.542667pt;}
._11{width:35.506133pt;}
._e{width:36.841600pt;}
._19{width:40.764000pt;}
._1f{width:42.384000pt;}
._14{width:43.307200pt;}
._16{width:44.403200pt;}
._6{width:45.504000pt;}
._c{width:48.200533pt;}
._18{width:49.250400pt;}
._4{width:52.542400pt;}
._24{width:54.896000pt;}
._25{width:57.665600pt;}
._5{width:63.421333pt;}
._7{width:66.200267pt;}
._23{width:69.504000pt;}
._1a{width:72.011733pt;}
._26{width:73.600000pt;}
._1e{width:83.648000pt;}
._22{width:127.686400pt;}
._21{width:261.824000pt;}
._20{width:311.040000pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y50{bottom:89.988000pt;}
.y4f{bottom:108.388000pt;}
.y27{bottom:125.346667pt;}
.y71{bottom:125.988000pt;}
.y4e{bottom:126.788000pt;}
.y26{bottom:143.746667pt;}
.y70{bottom:144.388000pt;}
.y4d{bottom:145.188000pt;}
.y25{bottom:162.146667pt;}
.y6f{bottom:162.788000pt;}
.y4c{bottom:163.588000pt;}
.y24{bottom:180.546667pt;}
.y6e{bottom:181.188000pt;}
.y4b{bottom:181.988000pt;}
.y6d{bottom:199.588000pt;}
.y4a{bottom:200.388000pt;}
.y23{bottom:217.666667pt;}
.y6c{bottom:217.988000pt;}
.y49{bottom:218.788000pt;}
.y22{bottom:236.066667pt;}
.y6b{bottom:236.546667pt;}
.y48{bottom:237.188000pt;}
.y21{bottom:254.466667pt;}
.y6a{bottom:254.946667pt;}
.y47{bottom:255.588000pt;}
.y20{bottom:272.866667pt;}
.y69{bottom:273.346667pt;}
.y46{bottom:273.988000pt;}
.y1f{bottom:291.266667pt;}
.y68{bottom:291.746667pt;}
.y45{bottom:292.388000pt;}
.y67{bottom:310.146667pt;}
.y44{bottom:310.788000pt;}
.y1e{bottom:328.388000pt;}
.y66{bottom:328.546667pt;}
.y1d{bottom:346.788000pt;}
.y65{bottom:346.946667pt;}
.y43{bottom:347.908000pt;}
.y1c{bottom:365.188000pt;}
.y64{bottom:365.346667pt;}
.y63{bottom:383.746667pt;}
.y1b{bottom:402.146667pt;}
.y1a{bottom:420.546667pt;}
.y42{bottom:421.988000pt;}
.y19{bottom:438.946667pt;}
.y62{bottom:439.266667pt;}
.y41{bottom:440.388000pt;}
.y40{bottom:458.788000pt;}
.y18{bottom:476.066667pt;}
.y3f{bottom:495.908000pt;}
.y17{bottom:513.188000pt;}
.y61{bottom:513.506667pt;}
.y7f{bottom:513.988000pt;}
.y3e{bottom:514.308000pt;}
.y16{bottom:531.588000pt;}
.y60{bottom:531.908000pt;}
.y7e{bottom:532.388000pt;}
.y15{bottom:549.988000pt;}
.y5f{bottom:550.308000pt;}
.y7d{bottom:550.788000pt;}
.y3d{bottom:551.266667pt;}
.y7c{bottom:569.188000pt;}
.y3c{bottom:569.666667pt;}
.y14{bottom:586.946667pt;}
.y5e{bottom:587.266667pt;}
.y7b{bottom:587.588000pt;}
.y3b{bottom:588.066667pt;}
.y5d{bottom:605.666667pt;}
.y7a{bottom:605.988000pt;}
.y3a{bottom:606.466667pt;}
.y13{bottom:624.066667pt;}
.y79{bottom:624.388000pt;}
.y12{bottom:642.466667pt;}
.y78{bottom:642.788000pt;}
.y39{bottom:643.588000pt;}
.y5c{bottom:661.188000pt;}
.y38{bottom:661.988000pt;}
.y11{bottom:679.588000pt;}
.y37{bottom:680.388000pt;}
.y10{bottom:697.988000pt;}
.y5b{bottom:698.308000pt;}
.y36{bottom:698.788000pt;}
.yf{bottom:716.388000pt;}
.y77{bottom:716.546667pt;}
.y5a{bottom:716.706667pt;}
.ye{bottom:734.788000pt;}
.y59{bottom:735.108000pt;}
.y35{bottom:735.906667pt;}
.yd{bottom:753.188000pt;}
.y76{bottom:753.666667pt;}
.y34{bottom:754.308000pt;}
.yc{bottom:771.588000pt;}
.y58{bottom:772.066667pt;}
.y33{bottom:772.706667pt;}
.yb{bottom:789.988000pt;}
.y57{bottom:790.466667pt;}
.y32{bottom:791.106667pt;}
.y56{bottom:808.866667pt;}
.y31{bottom:809.506667pt;}
.ya{bottom:826.946667pt;}
.y30{bottom:827.906667pt;}
.y9{bottom:845.346667pt;}
.y55{bottom:845.988000pt;}
.y2f{bottom:846.306667pt;}
.y8{bottom:863.746667pt;}
.y54{bottom:864.388000pt;}
.y53{bottom:882.788000pt;}
.y2e{bottom:883.266667pt;}
.y52{bottom:901.188000pt;}
.y2d{bottom:901.666667pt;}
.y75{bottom:919.746667pt;}
.y2c{bottom:920.066667pt;}
.y51{bottom:938.306667pt;}
.y2b{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y2a{bottom:956.866667pt;}
.y6{bottom:993.666667pt;}
.y74{bottom:993.826667pt;}
.y29{bottom:993.988000pt;}
.y73{bottom:1012.226667pt;}
.y28{bottom:1012.388000pt;}
.y72{bottom:1030.626667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h5{height:44.437500pt;}
.h6{height:49.000000pt;}
.h7{height:50.031250pt;}
.h2{height:55.343750pt;}
.h4{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:115.200000pt;}
.x8{left:132.160000pt;}
.x2{left:142.720000pt;}
.x5{left:155.200000pt;}
.x9{left:215.840000pt;}
.x6{left:328.000000pt;}
.x7{left:360.320000pt;}
}




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