
    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_301809317d4aea25b3cb79ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_90e3d08f41460dbdf2f7e79c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_3d12235630c40aac51145651.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f8f6838b449505f07cbebf3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_2b80b16086671a9e531df501.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_4ee332725a2f44b3cd7a1911.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_f702f75f63a273dbf78f00df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897461;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_c6d0122f1bb6c186537ba378.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f8248880f60aa260ce890046.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_86df62fc9c26ddeabe624f91.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.152400px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.032400px;}
.ls4{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.360720px;}
.ls8{letter-spacing:0.502800px;}
.lsb{letter-spacing:2.160000px;}
.ls3{letter-spacing:5.940000px;}
.ls6{letter-spacing:6.660000px;}
.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;}
}
.ws0{word-spacing:-18.251520px;}
.wsa{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.407600px;}
.wsc{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.146400px;}
.ws5{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.505760px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-5.100480px;}
._b{margin-left:-3.944160px;}
._9{margin-left:-2.569680px;}
._1{margin-left:-1.028000px;}
._0{width:1.015920px;}
._8{width:2.035200px;}
._e{width:3.427200px;}
._a{width:4.501440px;}
._6{width:5.584320px;}
._5{width:6.752880px;}
._7{width:8.127360px;}
._4{width:9.901440px;}
._11{width:11.062080px;}
._f{width:12.131280px;}
._c{width:13.206960px;}
._1f{width:14.563440px;}
._d{width:16.299120px;}
._1d{width:17.654240px;}
._10{width:18.679680px;}
._1e{width:20.075440px;}
._16{width:21.461760px;}
._15{width:22.919040px;}
._12{width:24.376320px;}
._1b{width:29.079360px;}
._1c{width:31.105760px;}
._21{width:41.598720px;}
._20{width:42.825440px;}
._2{width:64.800000px;}
._13{width:122.551680px;}
._14{width:140.561280px;}
._19{width:141.586720px;}
._17{width:142.847840px;}
._18{width:144.847920px;}
._3{width:197.604000px;}
.fc5{color:rgb(73,74,76);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs1{font-size:5.760000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.360000px;}
.y4a{bottom:4.860000px;}
.y8f{bottom:5.760000px;}
.y8d{bottom:6.120000px;}
.y8c{bottom:6.300000px;}
.y92{bottom:6.345000px;}
.ya0{bottom:7.560000px;}
.y30{bottom:7.740000px;}
.y1b{bottom:12.240000px;}
.y8a{bottom:16.560000px;}
.y39{bottom:19.620000px;}
.y49{bottom:22.140000px;}
.y2f{bottom:25.020000px;}
.ya{bottom:30.420000px;}
.y8{bottom:33.330000px;}
.y48{bottom:39.420000px;}
.y2e{bottom:42.300000px;}
.y38{bottom:45.900000px;}
.y47{bottom:56.700000px;}
.y4{bottom:57.636000px;}
.y2d{bottom:59.400000px;}
.y37{bottom:72.180000px;}
.y2c{bottom:76.680000px;}
.y3{bottom:77.796000px;}
.y2b{bottom:93.960000px;}
.y45{bottom:96.876000px;}
.yb1{bottom:97.056000px;}
.y36{bottom:98.460000px;}
.y86{bottom:104.076000px;}
.y2a{bottom:111.240000px;}
.ybf{bottom:114.516000px;}
.y44{bottom:115.236000px;}
.ye1{bottom:117.036000px;}
.y6f{bottom:121.176000px;}
.y35{bottom:124.740000px;}
.yb0{bottom:125.676000px;}
.y29{bottom:128.520000px;}
.y6{bottom:132.510000px;}
.y85{bottom:132.516000px;}
.y43{bottom:133.056000px;}
.y42{bottom:138.276000px;}
.ybe{bottom:142.956000px;}
.ye0{bottom:145.656000px;}
.y28{bottom:145.800000px;}
.y6e{bottom:148.176000px;}
.y34{bottom:151.020000px;}
.y41{bottom:152.130000px;}
.yaf{bottom:154.110000px;}
.yee{bottom:159.690000px;}
.y84{bottom:160.950000px;}
.y27{bottom:162.900000px;}
.ybd{bottom:171.390000px;}
.ydf{bottom:174.090000px;}
.y6d{bottom:176.610000px;}
.y33{bottom:177.150000px;}
.y26{bottom:180.210000px;}
.y40{bottom:180.930000px;}
.yae{bottom:182.550000px;}
.yed{bottom:188.130000px;}
.y83{bottom:189.390000px;}
.y25{bottom:197.490000px;}
.ybc{bottom:199.830000px;}
.yde{bottom:202.530000px;}
.y6c{bottom:205.050000px;}
.y3f{bottom:209.370000px;}
.yad{bottom:210.990000px;}
.y24{bottom:214.770000px;}
.yec{bottom:216.570000px;}
.y82{bottom:228.270000px;}
.ybb{bottom:229.710000px;}
.ydd{bottom:230.970000px;}
.y23{bottom:232.050000px;}
.y6b{bottom:233.490000px;}
.yac{bottom:239.430000px;}
.yeb{bottom:245.190000px;}
.y3e{bottom:248.070000px;}
.y22{bottom:249.330000px;}
.y81{bottom:257.970000px;}
.yba{bottom:259.410000px;}
.y6a{bottom:261.930000px;}
.y21{bottom:266.430000px;}
.yab{bottom:267.870000px;}
.yea{bottom:273.675000px;}
.y3d{bottom:277.815000px;}
.y20{bottom:283.710000px;}
.y80{bottom:286.455000px;}
.yb9{bottom:287.895000px;}
.y69{bottom:290.415000px;}
.yaa{bottom:296.355000px;}
.y1e{bottom:296.490000px;}
.y1f{bottom:300.990000px;}
.y46{bottom:301.935000px;}
.ye9{bottom:302.115000px;}
.y3c{bottom:305.175000px;}
.y7f{bottom:314.895000px;}
.yb8{bottom:316.335000px;}
.y68{bottom:319.035000px;}
.ya9{bottom:324.795000px;}
.y3b{bottom:324.975000px;}
.ye8{bottom:330.555000px;}
.y3a{bottom:341.535000px;}
.y7e{bottom:343.335000px;}
.ydc{bottom:344.775000px;}
.yb7{bottom:346.215000px;}
.y67{bottom:347.475000px;}
.ya8{bottom:353.235000px;}
.ye7{bottom:358.995000px;}
.y7d{bottom:371.775000px;}
.ydb{bottom:373.215000px;}
.y66{bottom:375.915000px;}
.y1d{bottom:379.875000px;}
.ya7{bottom:381.855000px;}
.ye6{bottom:387.435000px;}
.y7c{bottom:400.215000px;}
.yda{bottom:401.835000px;}
.y65{bottom:404.355000px;}
.ya6{bottom:410.295000px;}
.ye5{bottom:415.875000px;}
.y7b{bottom:428.835000px;}
.yd9{bottom:430.275000px;}
.y64{bottom:432.795000px;}
.ya5{bottom:438.735000px;}
.ye4{bottom:444.315000px;}
.y7a{bottom:457.275000px;}
.yd8{bottom:458.715000px;}
.y63{bottom:461.235000px;}
.ya4{bottom:467.175000px;}
.ye3{bottom:472.755000px;}
.y79{bottom:485.715000px;}
.yd7{bottom:487.155000px;}
.y62{bottom:489.675000px;}
.ya3{bottom:495.615000px;}
.yb6{bottom:500.115000px;}
.ye2{bottom:501.375000px;}
.y78{bottom:514.155000px;}
.yd6{bottom:515.595000px;}
.y61{bottom:518.115000px;}
.ya2{bottom:524.055000px;}
.yb5{bottom:529.815000px;}
.y77{bottom:542.595000px;}
.yd5{bottom:544.035000px;}
.y60{bottom:546.555000px;}
.ya1{bottom:552.495000px;}
.yb4{bottom:558.285000px;}
.y9f{bottom:568.725000px;}
.y76{bottom:571.065000px;}
.yd4{bottom:572.505000px;}
.y5f{bottom:575.205000px;}
.y32{bottom:584.565000px;}
.yb3{bottom:586.725000px;}
.y9e{bottom:590.325000px;}
.y75{bottom:599.505000px;}
.yd3{bottom:600.945000px;}
.y9d{bottom:610.665000px;}
.y5e{bottom:613.905000px;}
.yb2{bottom:615.165000px;}
.y31{bottom:624.345000px;}
.y74{bottom:627.945000px;}
.yd2{bottom:629.385000px;}
.y9c{bottom:631.005000px;}
.y5d{bottom:643.605000px;}
.y9b{bottom:651.345000px;}
.y73{bottom:656.385000px;}
.yd1{bottom:658.005000px;}
.y1c{bottom:664.125000px;}
.y9a{bottom:671.685000px;}
.y5c{bottom:672.045000px;}
.y72{bottom:685.005000px;}
.yd0{bottom:686.445000px;}
.y99{bottom:692.025000px;}
.y5b{bottom:700.485000px;}
.y1a{bottom:703.905000px;}
.y71{bottom:712.185000px;}
.y98{bottom:712.365000px;}
.ycf{bottom:714.885000px;}
.y5a{bottom:728.925000px;}
.y97{bottom:732.705000px;}
.yce{bottom:743.325000px;}
.y70{bottom:743.865000px;}
.y19{bottom:746.925000px;}
.y96{bottom:753.045000px;}
.y59{bottom:757.545000px;}
.y18{bottom:769.245000px;}
.ycd{bottom:771.765000px;}
.y95{bottom:773.385000px;}
.y58{bottom:785.985000px;}
.y17{bottom:786.525000px;}
.y94{bottom:793.725000px;}
.y16{bottom:799.305000px;}
.ycc{bottom:800.205000px;}
.y93{bottom:813.885000px;}
.y57{bottom:814.425000px;}
.y14{bottom:820.005000px;}
.y15{bottom:826.845000px;}
.ycb{bottom:828.645000px;}
.y91{bottom:834.225000px;}
.y13{bottom:840.390000px;}
.y56{bottom:842.910000px;}
.y90{bottom:854.610000px;}
.yca{bottom:857.130000px;}
.y12{bottom:859.470000px;}
.y55{bottom:871.350000px;}
.y8e{bottom:874.950000px;}
.y11{bottom:878.370000px;}
.yc9{bottom:885.570000px;}
.y89{bottom:895.650000px;}
.y10{bottom:898.170000px;}
.y54{bottom:899.790000px;}
.yc8{bottom:914.190000px;}
.y8b{bottom:916.710000px;}
.yf{bottom:922.470000px;}
.y53{bottom:928.230000px;}
.y88{bottom:941.010000px;}
.yc7{bottom:942.630000px;}
.ye{bottom:946.590000px;}
.y52{bottom:956.670000px;}
.y87{bottom:958.290000px;}
.yd{bottom:970.170000px;}
.yc6{bottom:971.070000px;}
.y51{bottom:985.110000px;}
.yc{bottom:990.870000px;}
.yc5{bottom:999.510000px;}
.yb{bottom:1011.570000px;}
.y50{bottom:1013.730000px;}
.y5{bottom:1032.810000px;}
.yc4{bottom:1038.210000px;}
.y4f{bottom:1042.170000px;}
.yc3{bottom:1067.910000px;}
.y4e{bottom:1070.610000px;}
.y7{bottom:1095.990000px;}
.yc2{bottom:1096.530000px;}
.y4d{bottom:1099.050000px;}
.yc1{bottom:1125.000000px;}
.y4c{bottom:1127.520000px;}
.yc0{bottom:1154.700000px;}
.y4b{bottom:1155.960000px;}
.y2{bottom:1176.120000px;}
.y1{bottom:1195.380000px;}
.h5{height:4.165313px;}
.h1d{height:19.800000px;}
.h1c{height:20.160000px;}
.h1b{height:20.340000px;}
.h1e{height:20.376000px;}
.h1f{height:21.600000px;}
.h17{height:27.147656px;}
.hf{height:32.045625px;}
.h11{height:35.280000px;}
.he{height:39.760312px;}
.h1a{height:41.400000px;}
.h12{height:41.726953px;}
.h10{height:42.164648px;}
.h2{height:43.146720px;}
.h3{height:43.215117px;}
.hc{height:46.251562px;}
.h16{height:46.736719px;}
.h15{height:49.255313px;}
.ha{height:50.273438px;}
.h9{height:50.800781px;}
.h19{height:54.596250px;}
.hd{height:59.343750px;}
.hb{height:59.436914px;}
.h8{height:63.180000px;}
.h7{height:70.510781px;}
.h18{height:70.740000px;}
.h6{height:70.956000px;}
.h4{height:134.136000px;}
.h14{height:200.190000px;}
.h13{height:319.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:23.040000px;}
.w10{width:56.160000px;}
.we{width:56.340000px;}
.wf{width:63.756000px;}
.w11{width:71.280000px;}
.w12{width:71.316000px;}
.wd{width:74.880000px;}
.w5{width:108.540000px;}
.wb{width:139.896000px;}
.w7{width:261.435000px;}
.w3{width:308.775000px;}
.w4{width:348.015000px;}
.w9{width:481.035000px;}
.wa{width:486.255000px;}
.wc{width:502.665000px;}
.w13{width:717.450000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.020000px;}
.x5{left:8.100000px;}
.x14{left:10.800000px;}
.x7{left:26.460000px;}
.x2{left:63.899987px;}
.x12{left:68.759987px;}
.xa{left:76.679987px;}
.x17{left:85.499987px;}
.x19{left:87.840000px;}
.x22{left:106.415987px;}
.x18{left:156.089987px;}
.x1a{left:213.525000px;}
.x10{left:214.769987px;}
.x16{left:228.449987px;}
.xc{left:232.409973px;}
.xd{left:238.529987px;}
.x11{left:279.929987px;}
.x1c{left:284.070000px;}
.xb{left:298.469987px;}
.xe{left:325.335000px;}
.x1{left:338.834987px;}
.x13{left:345.675000px;}
.xf{left:348.375000px;}
.x6{left:372.675000px;}
.x1d{left:403.995000px;}
.x3{left:439.094987px;}
.x4{left:446.654987px;}
.x1e{left:475.275000px;}
.x1f{left:546.585000px;}
.x20{left:602.745000px;}
.x21{left:659.085000px;}
.x15{left:717.809987px;}
.x8{left:720.690000px;}
.x1b{left:730.410000px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.028800pt;}
.ls4{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.320640pt;}
.ls8{letter-spacing:0.446933pt;}
.lsb{letter-spacing:1.920000pt;}
.ls3{letter-spacing:5.280000pt;}
.ls6{letter-spacing:5.920000pt;}
.ws0{word-spacing:-16.223573pt;}
.wsa{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-4.533760pt;}
._b{margin-left:-3.505920pt;}
._9{margin-left:-2.284160pt;}
._1{margin-left:-0.913778pt;}
._0{width:0.903040pt;}
._8{width:1.809067pt;}
._e{width:3.046400pt;}
._a{width:4.001280pt;}
._6{width:4.963840pt;}
._5{width:6.002560pt;}
._7{width:7.224320pt;}
._4{width:8.801280pt;}
._11{width:9.832960pt;}
._f{width:10.783360pt;}
._c{width:11.739520pt;}
._1f{width:12.945280pt;}
._d{width:14.488107pt;}
._1d{width:15.692658pt;}
._10{width:16.604160pt;}
._1e{width:17.844836pt;}
._16{width:19.077120pt;}
._15{width:20.372480pt;}
._12{width:21.667840pt;}
._1b{width:25.848320pt;}
._1c{width:27.649564pt;}
._21{width:36.976640pt;}
._20{width:38.067058pt;}
._2{width:57.600000pt;}
._13{width:108.934827pt;}
._14{width:124.943360pt;}
._19{width:125.854862pt;}
._17{width:126.975858pt;}
._18{width:128.753707pt;}
._3{width:175.648000pt;}
.fs1{font-size:5.120000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.320000pt;}
.y4a{bottom:4.320000pt;}
.y8f{bottom:5.120000pt;}
.y8d{bottom:5.440000pt;}
.y8c{bottom:5.600000pt;}
.y92{bottom:5.640000pt;}
.ya0{bottom:6.720000pt;}
.y30{bottom:6.880000pt;}
.y1b{bottom:10.880000pt;}
.y8a{bottom:14.720000pt;}
.y39{bottom:17.440000pt;}
.y49{bottom:19.680000pt;}
.y2f{bottom:22.240000pt;}
.ya{bottom:27.040000pt;}
.y8{bottom:29.626667pt;}
.y48{bottom:35.040000pt;}
.y2e{bottom:37.600000pt;}
.y38{bottom:40.800000pt;}
.y47{bottom:50.400000pt;}
.y4{bottom:51.232000pt;}
.y2d{bottom:52.800000pt;}
.y37{bottom:64.160000pt;}
.y2c{bottom:68.160000pt;}
.y3{bottom:69.152000pt;}
.y2b{bottom:83.520000pt;}
.y45{bottom:86.112000pt;}
.yb1{bottom:86.272000pt;}
.y36{bottom:87.520000pt;}
.y86{bottom:92.512000pt;}
.y2a{bottom:98.880000pt;}
.ybf{bottom:101.792000pt;}
.y44{bottom:102.432000pt;}
.ye1{bottom:104.032000pt;}
.y6f{bottom:107.712000pt;}
.y35{bottom:110.880000pt;}
.yb0{bottom:111.712000pt;}
.y29{bottom:114.240000pt;}
.y6{bottom:117.786667pt;}
.y85{bottom:117.792000pt;}
.y43{bottom:118.272000pt;}
.y42{bottom:122.912000pt;}
.ybe{bottom:127.072000pt;}
.ye0{bottom:129.472000pt;}
.y28{bottom:129.600000pt;}
.y6e{bottom:131.712000pt;}
.y34{bottom:134.240000pt;}
.y41{bottom:135.226667pt;}
.yaf{bottom:136.986667pt;}
.yee{bottom:141.946667pt;}
.y84{bottom:143.066667pt;}
.y27{bottom:144.800000pt;}
.ybd{bottom:152.346667pt;}
.ydf{bottom:154.746667pt;}
.y6d{bottom:156.986667pt;}
.y33{bottom:157.466667pt;}
.y26{bottom:160.186667pt;}
.y40{bottom:160.826667pt;}
.yae{bottom:162.266667pt;}
.yed{bottom:167.226667pt;}
.y83{bottom:168.346667pt;}
.y25{bottom:175.546667pt;}
.ybc{bottom:177.626667pt;}
.yde{bottom:180.026667pt;}
.y6c{bottom:182.266667pt;}
.y3f{bottom:186.106667pt;}
.yad{bottom:187.546667pt;}
.y24{bottom:190.906667pt;}
.yec{bottom:192.506667pt;}
.y82{bottom:202.906667pt;}
.ybb{bottom:204.186667pt;}
.ydd{bottom:205.306667pt;}
.y23{bottom:206.266667pt;}
.y6b{bottom:207.546667pt;}
.yac{bottom:212.826667pt;}
.yeb{bottom:217.946667pt;}
.y3e{bottom:220.506667pt;}
.y22{bottom:221.626667pt;}
.y81{bottom:229.306667pt;}
.yba{bottom:230.586667pt;}
.y6a{bottom:232.826667pt;}
.y21{bottom:236.826667pt;}
.yab{bottom:238.106667pt;}
.yea{bottom:243.266667pt;}
.y3d{bottom:246.946667pt;}
.y20{bottom:252.186667pt;}
.y80{bottom:254.626667pt;}
.yb9{bottom:255.906667pt;}
.y69{bottom:258.146667pt;}
.yaa{bottom:263.426667pt;}
.y1e{bottom:263.546667pt;}
.y1f{bottom:267.546667pt;}
.y46{bottom:268.386667pt;}
.ye9{bottom:268.546667pt;}
.y3c{bottom:271.266667pt;}
.y7f{bottom:279.906667pt;}
.yb8{bottom:281.186667pt;}
.y68{bottom:283.586667pt;}
.ya9{bottom:288.706667pt;}
.y3b{bottom:288.866667pt;}
.ye8{bottom:293.826667pt;}
.y3a{bottom:303.586667pt;}
.y7e{bottom:305.186667pt;}
.ydc{bottom:306.466667pt;}
.yb7{bottom:307.746667pt;}
.y67{bottom:308.866667pt;}
.ya8{bottom:313.986667pt;}
.ye7{bottom:319.106667pt;}
.y7d{bottom:330.466667pt;}
.ydb{bottom:331.746667pt;}
.y66{bottom:334.146667pt;}
.y1d{bottom:337.666667pt;}
.ya7{bottom:339.426667pt;}
.ye6{bottom:344.386667pt;}
.y7c{bottom:355.746667pt;}
.yda{bottom:357.186667pt;}
.y65{bottom:359.426667pt;}
.ya6{bottom:364.706667pt;}
.ye5{bottom:369.666667pt;}
.y7b{bottom:381.186667pt;}
.yd9{bottom:382.466667pt;}
.y64{bottom:384.706667pt;}
.ya5{bottom:389.986667pt;}
.ye4{bottom:394.946667pt;}
.y7a{bottom:406.466667pt;}
.yd8{bottom:407.746667pt;}
.y63{bottom:409.986667pt;}
.ya4{bottom:415.266667pt;}
.ye3{bottom:420.226667pt;}
.y79{bottom:431.746667pt;}
.yd7{bottom:433.026667pt;}
.y62{bottom:435.266667pt;}
.ya3{bottom:440.546667pt;}
.yb6{bottom:444.546667pt;}
.ye2{bottom:445.666667pt;}
.y78{bottom:457.026667pt;}
.yd6{bottom:458.306667pt;}
.y61{bottom:460.546667pt;}
.ya2{bottom:465.826667pt;}
.yb5{bottom:470.946667pt;}
.y77{bottom:482.306667pt;}
.yd5{bottom:483.586667pt;}
.y60{bottom:485.826667pt;}
.ya1{bottom:491.106667pt;}
.yb4{bottom:496.253333pt;}
.y9f{bottom:505.533333pt;}
.y76{bottom:507.613333pt;}
.yd4{bottom:508.893333pt;}
.y5f{bottom:511.293333pt;}
.y32{bottom:519.613333pt;}
.yb3{bottom:521.533333pt;}
.y9e{bottom:524.733333pt;}
.y75{bottom:532.893333pt;}
.yd3{bottom:534.173333pt;}
.y9d{bottom:542.813333pt;}
.y5e{bottom:545.693333pt;}
.yb2{bottom:546.813333pt;}
.y31{bottom:554.973333pt;}
.y74{bottom:558.173333pt;}
.yd2{bottom:559.453333pt;}
.y9c{bottom:560.893333pt;}
.y5d{bottom:572.093333pt;}
.y9b{bottom:578.973333pt;}
.y73{bottom:583.453333pt;}
.yd1{bottom:584.893333pt;}
.y1c{bottom:590.333333pt;}
.y9a{bottom:597.053333pt;}
.y5c{bottom:597.373333pt;}
.y72{bottom:608.893333pt;}
.yd0{bottom:610.173333pt;}
.y99{bottom:615.133333pt;}
.y5b{bottom:622.653333pt;}
.y1a{bottom:625.693333pt;}
.y71{bottom:633.053333pt;}
.y98{bottom:633.213333pt;}
.ycf{bottom:635.453333pt;}
.y5a{bottom:647.933333pt;}
.y97{bottom:651.293333pt;}
.yce{bottom:660.733333pt;}
.y70{bottom:661.213333pt;}
.y19{bottom:663.933333pt;}
.y96{bottom:669.373333pt;}
.y59{bottom:673.373333pt;}
.y18{bottom:683.773333pt;}
.ycd{bottom:686.013333pt;}
.y95{bottom:687.453333pt;}
.y58{bottom:698.653333pt;}
.y17{bottom:699.133333pt;}
.y94{bottom:705.533333pt;}
.y16{bottom:710.493333pt;}
.ycc{bottom:711.293333pt;}
.y93{bottom:723.453333pt;}
.y57{bottom:723.933333pt;}
.y14{bottom:728.893333pt;}
.y15{bottom:734.973333pt;}
.ycb{bottom:736.573333pt;}
.y91{bottom:741.533333pt;}
.y13{bottom:747.013333pt;}
.y56{bottom:749.253333pt;}
.y90{bottom:759.653333pt;}
.yca{bottom:761.893333pt;}
.y12{bottom:763.973333pt;}
.y55{bottom:774.533333pt;}
.y8e{bottom:777.733333pt;}
.y11{bottom:780.773333pt;}
.yc9{bottom:787.173333pt;}
.y89{bottom:796.133333pt;}
.y10{bottom:798.373333pt;}
.y54{bottom:799.813333pt;}
.yc8{bottom:812.613333pt;}
.y8b{bottom:814.853333pt;}
.yf{bottom:819.973333pt;}
.y53{bottom:825.093333pt;}
.y88{bottom:836.453333pt;}
.yc7{bottom:837.893333pt;}
.ye{bottom:841.413333pt;}
.y52{bottom:850.373333pt;}
.y87{bottom:851.813333pt;}
.yd{bottom:862.373333pt;}
.yc6{bottom:863.173333pt;}
.y51{bottom:875.653333pt;}
.yc{bottom:880.773333pt;}
.yc5{bottom:888.453333pt;}
.yb{bottom:899.173333pt;}
.y50{bottom:901.093333pt;}
.y5{bottom:918.053333pt;}
.yc4{bottom:922.853333pt;}
.y4f{bottom:926.373333pt;}
.yc3{bottom:949.253333pt;}
.y4e{bottom:951.653333pt;}
.y7{bottom:974.213333pt;}
.yc2{bottom:974.693333pt;}
.y4d{bottom:976.933333pt;}
.yc1{bottom:1000.000000pt;}
.y4c{bottom:1002.240000pt;}
.yc0{bottom:1026.400000pt;}
.y4b{bottom:1027.520000pt;}
.y2{bottom:1045.440000pt;}
.y1{bottom:1062.560000pt;}
.h5{height:3.702500pt;}
.h1d{height:17.600000pt;}
.h1c{height:17.920000pt;}
.h1b{height:18.080000pt;}
.h1e{height:18.112000pt;}
.h1f{height:19.200000pt;}
.h17{height:24.131250pt;}
.hf{height:28.485000pt;}
.h11{height:31.360000pt;}
.he{height:35.342500pt;}
.h1a{height:36.800000pt;}
.h12{height:37.090625pt;}
.h10{height:37.479688pt;}
.h2{height:38.352640pt;}
.h3{height:38.413438pt;}
.hc{height:41.112500pt;}
.h16{height:41.543750pt;}
.h15{height:43.782500pt;}
.ha{height:44.687500pt;}
.h9{height:45.156250pt;}
.h19{height:48.530000pt;}
.hd{height:52.750000pt;}
.hb{height:52.832812pt;}
.h8{height:56.160000pt;}
.h7{height:62.676250pt;}
.h18{height:62.880000pt;}
.h6{height:63.072000pt;}
.h4{height:119.232000pt;}
.h14{height:177.946667pt;}
.h13{height:284.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:20.480000pt;}
.w10{width:49.920000pt;}
.we{width:50.080000pt;}
.wf{width:56.672000pt;}
.w11{width:63.360000pt;}
.w12{width:63.392000pt;}
.wd{width:66.560000pt;}
.w5{width:96.480000pt;}
.wb{width:124.352000pt;}
.w7{width:232.386667pt;}
.w3{width:274.466667pt;}
.w4{width:309.346667pt;}
.w9{width:427.586667pt;}
.wa{width:432.226667pt;}
.wc{width:446.813333pt;}
.w13{width:637.733333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.240000pt;}
.x5{left:7.200000pt;}
.x14{left:9.600000pt;}
.x7{left:23.520000pt;}
.x2{left:56.799988pt;}
.x12{left:61.119988pt;}
.xa{left:68.159988pt;}
.x17{left:75.999988pt;}
.x19{left:78.080000pt;}
.x22{left:94.591988pt;}
.x18{left:138.746655pt;}
.x1a{left:189.800000pt;}
.x10{left:190.906655pt;}
.x16{left:203.066655pt;}
.xc{left:206.586643pt;}
.xd{left:212.026655pt;}
.x11{left:248.826655pt;}
.x1c{left:252.506667pt;}
.xb{left:265.306655pt;}
.xe{left:289.186667pt;}
.x1{left:301.186655pt;}
.x13{left:307.266667pt;}
.xf{left:309.666667pt;}
.x6{left:331.266667pt;}
.x1d{left:359.106667pt;}
.x3{left:390.306655pt;}
.x4{left:397.026655pt;}
.x1e{left:422.466667pt;}
.x1f{left:485.853333pt;}
.x20{left:535.773333pt;}
.x21{left:585.853333pt;}
.x15{left:638.053322pt;}
.x8{left:640.613333pt;}
.x1b{left:649.253333pt;}
}




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