
    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_310b78c3a2ff040afa9a445f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_1be863ac16c298d23e4f9885.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_2297b2a9dd90d4001ba5bf52.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.883301;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_56456ad363f1b7a262766cc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_d381bb770c3b6d8aa9e735f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_48e9dd5f2e8fb141ea488724.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_77adb357bb6bcd20d7ba3254.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eb7b2a49ab808619d1d8b900.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7143538b11e7b98aaa49072b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.ls2{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.880000px;}
.lsc{letter-spacing:30.960000px;}
.ls9{letter-spacing:53.424000px;}
.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;}
}
.ws7{word-spacing:-41.616000px;}
.ws8{word-spacing:-41.040000px;}
.wsa{word-spacing:-20.880000px;}
.ws9{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.352000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-5.883840px;}
._14{margin-left:-4.533120px;}
._6{margin-left:-3.528000px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.393280px;}
._4{width:4.272960px;}
._7{width:5.531040px;}
._8{width:6.636960px;}
._9{width:8.059680px;}
._12{width:9.416160px;}
._13{width:10.853280px;}
._20{width:12.133440px;}
._5{width:13.548000px;}
._1e{width:14.568960px;}
._a{width:15.718560px;}
._b{width:16.733280px;}
._16{width:19.152000px;}
._15{width:20.321280px;}
._11{width:24.125760px;}
._f{width:25.217280px;}
._10{width:27.031680px;}
._2a{width:31.547040px;}
._23{width:32.990400px;}
._24{width:33.992640px;}
._25{width:35.017920px;}
._1d{width:36.466560px;}
._1b{width:38.177280px;}
._1c{width:40.288320px;}
._d{width:41.803680px;}
._c{width:42.882720px;}
._e{width:44.219520px;}
._26{width:58.078560px;}
._2c{width:63.374400px;}
._2b{width:64.494720px;}
._1a{width:77.904000px;}
._22{width:116.041440px;}
._21{width:144.474720px;}
._27{width:146.367840px;}
._17{width:149.146560px;}
._29{width:162.438720px;}
._28{width:163.998720px;}
._19{width:181.704000px;}
._18{width:189.394560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:7.200000px;}
.y66{bottom:7.554000px;}
.y5f{bottom:7.560000px;}
.y74{bottom:7.590000px;}
.y64{bottom:7.605000px;}
.y78{bottom:7.920000px;}
.y79{bottom:8.280000px;}
.y6e{bottom:8.640000px;}
.y7d{bottom:8.685000px;}
.y76{bottom:9.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y59{bottom:19.080000px;}
.y57{bottom:30.990000px;}
.y69{bottom:31.680000px;}
.y5d{bottom:32.040000px;}
.y62{bottom:32.085000px;}
.y71{bottom:33.120000px;}
.y6c{bottom:33.165000px;}
.y58{bottom:42.870000px;}
.y5a{bottom:55.110000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y9b{bottom:114.516000px;}
.y67{bottom:118.116000px;}
.y33{bottom:123.516000px;}
.y9a{bottom:138.276000px;}
.y65{bottom:142.596000px;}
.y32{bottom:147.636000px;}
.y99{bottom:162.030000px;}
.y61{bottom:167.070000px;}
.y31{bottom:171.390000px;}
.y98{bottom:185.790000px;}
.y63{bottom:191.550000px;}
.y30{bottom:195.195000px;}
.y97{bottom:209.595000px;}
.y60{bottom:216.435000px;}
.y2f{bottom:218.955000px;}
.y96{bottom:233.355000px;}
.y5c{bottom:240.915000px;}
.y2e{bottom:242.715000px;}
.y95{bottom:257.115000px;}
.y5e{bottom:265.395000px;}
.y2d{bottom:266.475000px;}
.y94{bottom:280.875000px;}
.y56{bottom:289.875000px;}
.y2c{bottom:290.235000px;}
.y93{bottom:304.635000px;}
.y2b{bottom:313.995000px;}
.y92{bottom:328.785000px;}
.y2a{bottom:338.145000px;}
.y91{bottom:352.545000px;}
.y29{bottom:361.905000px;}
.y55{bottom:369.465000px;}
.y90{bottom:376.305000px;}
.y28{bottom:385.665000px;}
.y54{bottom:393.225000px;}
.y8f{bottom:400.065000px;}
.y27{bottom:409.425000px;}
.y53{bottom:417.345000px;}
.y8e{bottom:423.825000px;}
.y26{bottom:433.185000px;}
.y52{bottom:441.105000px;}
.y8d{bottom:447.630000px;}
.y25{bottom:456.990000px;}
.y51{bottom:464.910000px;}
.y8c{bottom:471.390000px;}
.y24{bottom:480.750000px;}
.y50{bottom:488.670000px;}
.y8b{bottom:495.150000px;}
.y23{bottom:504.510000px;}
.y4f{bottom:512.430000px;}
.y8a{bottom:519.270000px;}
.y22{bottom:528.270000px;}
.y4e{bottom:536.550000px;}
.y89{bottom:543.030000px;}
.y21{bottom:552.390000px;}
.y4d{bottom:560.310000px;}
.y88{bottom:566.790000px;}
.y20{bottom:576.180000px;}
.ya8{bottom:583.740000px;}
.y4c{bottom:584.100000px;}
.y87{bottom:590.580000px;}
.y1f{bottom:599.940000px;}
.ya7{bottom:607.500000px;}
.y4b{bottom:607.860000px;}
.y86{bottom:614.340000px;}
.y1e{bottom:623.700000px;}
.y4a{bottom:631.620000px;}
.y85{bottom:638.100000px;}
.y1d{bottom:647.460000px;}
.y49{bottom:655.380000px;}
.y84{bottom:661.860000px;}
.y1c{bottom:671.220000px;}
.y48{bottom:679.140000px;}
.y83{bottom:685.620000px;}
.y1b{bottom:694.980000px;}
.y47{bottom:702.930000px;}
.y82{bottom:709.410000px;}
.y1a{bottom:718.770000px;}
.y81{bottom:726.690000px;}
.y46{bottom:727.050000px;}
.y19{bottom:742.890000px;}
.y45{bottom:750.810000px;}
.y80{bottom:751.170000px;}
.y18{bottom:766.650000px;}
.y44{bottom:774.570000px;}
.y7f{bottom:775.650000px;}
.y17{bottom:790.410000px;}
.y43{bottom:798.330000px;}
.y7e{bottom:800.130000px;}
.y16{bottom:814.170000px;}
.y42{bottom:822.090000px;}
.y7b{bottom:824.610000px;}
.ya6{bottom:831.495000px;}
.y15{bottom:837.975000px;}
.y41{bottom:845.895000px;}
.y7c{bottom:850.215000px;}
.ya5{bottom:855.975000px;}
.y14{bottom:861.735000px;}
.y40{bottom:869.655000px;}
.y7a{bottom:874.695000px;}
.ya4{bottom:880.815000px;}
.y13{bottom:885.495000px;}
.y3f{bottom:893.415000px;}
.y75{bottom:899.535000px;}
.ya3{bottom:905.295000px;}
.y12{bottom:908.895000px;}
.y3e{bottom:917.175000px;}
.y77{bottom:924.735000px;}
.ya2{bottom:929.775000px;}
.y11{bottom:933.015000px;}
.y3d{bottom:941.295000px;}
.y73{bottom:949.575000px;}
.ya1{bottom:954.285000px;}
.y10{bottom:957.165000px;}
.y3c{bottom:965.085000px;}
.y70{bottom:974.085000px;}
.ya0{bottom:978.765000px;}
.yf{bottom:980.925000px;}
.y3b{bottom:988.845000px;}
.y72{bottom:999.645000px;}
.y9f{bottom:1003.605000px;}
.ye{bottom:1004.325000px;}
.y3a{bottom:1012.605000px;}
.y6f{bottom:1024.125000px;}
.yd{bottom:1028.085000px;}
.y39{bottom:1036.365000px;}
.y6b{bottom:1048.605000px;}
.yc{bottom:1054.005000px;}
.y9e{bottom:1059.765000px;}
.y38{bottom:1060.125000px;}
.y6d{bottom:1074.165000px;}
.y9d{bottom:1083.570000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y6a{bottom:1098.690000px;}
.y9c{bottom:1107.330000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y68{bottom:1123.170000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hd{height:23.760000px;}
.hf{height:23.796000px;}
.h14{height:24.120000px;}
.h15{height:24.480000px;}
.h12{height:24.840000px;}
.h16{height:24.876000px;}
.h5{height:27.000000px;}
.h10{height:47.880000px;}
.hc{height:48.240000px;}
.he{height:48.276000px;}
.h13{height:49.320000px;}
.h11{height:49.356000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.ha{height:59.343750px;}
.h17{height:63.457031px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:71.676000px;}
.h2{height:72.562500px;}
.h18{height:74.004654px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.wc{width:162.390000px;}
.wb{width:162.435000px;}
.w7{width:165.270000px;}
.w5{width:165.675000px;}
.w6{width:186.555000px;}
.w3{width:298.905000px;}
.w9{width:325.545000px;}
.w8{width:325.590000px;}
.wa{width:651.855000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.920000px;}
.x15{left:9.720000px;}
.x8{left:43.590000px;}
.x5{left:95.796000px;}
.xc{left:98.675987px;}
.x1b{left:100.835987px;}
.xa{left:102.275987px;}
.x14{left:103.716000px;}
.x1d{left:120.636000px;}
.x21{left:127.835987px;}
.xb{left:129.995987px;}
.xe{left:149.111987px;}
.x13{left:158.474987px;}
.x11{left:162.794987px;}
.x3{left:190.874987px;}
.xf{left:206.714987px;}
.x1c{left:224.714987px;}
.x1a{left:247.064987px;}
.x16{left:270.105000px;}
.x1f{left:283.785000px;}
.x6{left:290.634000px;}
.x10{left:313.664987px;}
.x12{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.xd{left:347.189987px;}
.x7{left:394.710000px;}
.x1e{left:446.940000px;}
.x18{left:457.740000px;}
.x9{left:498.780000px;}
.x20{left:610.050000px;}
.x19{left:624.135000px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:2.560000pt;}
.lsc{letter-spacing:27.520000pt;}
.ls9{letter-spacing:47.488000pt;}
.ws7{word-spacing:-36.992000pt;}
.ws8{word-spacing:-36.480000pt;}
.wsa{word-spacing:-18.560000pt;}
.ws9{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.424000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-5.230080pt;}
._14{margin-left:-4.029440pt;}
._6{margin-left:-3.136000pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.127360pt;}
._4{width:3.798187pt;}
._7{width:4.916480pt;}
._8{width:5.899520pt;}
._9{width:7.164160pt;}
._12{width:8.369920pt;}
._13{width:9.647360pt;}
._20{width:10.785280pt;}
._5{width:12.042667pt;}
._1e{width:12.950187pt;}
._a{width:13.972053pt;}
._b{width:14.874027pt;}
._16{width:17.024000pt;}
._15{width:18.063360pt;}
._11{width:21.445120pt;}
._f{width:22.415360pt;}
._10{width:24.028160pt;}
._2a{width:28.041813pt;}
._23{width:29.324800pt;}
._24{width:30.215680pt;}
._25{width:31.127040pt;}
._1d{width:32.414720pt;}
._1b{width:33.935360pt;}
._1c{width:35.811840pt;}
._d{width:37.158827pt;}
._c{width:38.117973pt;}
._e{width:39.306240pt;}
._26{width:51.625387pt;}
._2c{width:56.332800pt;}
._2b{width:57.328640pt;}
._1a{width:69.248000pt;}
._22{width:103.147947pt;}
._21{width:128.421973pt;}
._27{width:130.104747pt;}
._17{width:132.574720pt;}
._29{width:144.389973pt;}
._28{width:145.776640pt;}
._19{width:161.514667pt;}
._18{width:168.350720pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:6.400000pt;}
.y66{bottom:6.714667pt;}
.y5f{bottom:6.720000pt;}
.y74{bottom:6.746667pt;}
.y64{bottom:6.760000pt;}
.y78{bottom:7.040000pt;}
.y79{bottom:7.360000pt;}
.y6e{bottom:7.680000pt;}
.y7d{bottom:7.720000pt;}
.y76{bottom:8.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y59{bottom:16.960000pt;}
.y57{bottom:27.546667pt;}
.y69{bottom:28.160000pt;}
.y5d{bottom:28.480000pt;}
.y62{bottom:28.520000pt;}
.y71{bottom:29.440000pt;}
.y6c{bottom:29.480000pt;}
.y58{bottom:38.106667pt;}
.y5a{bottom:48.986667pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y9b{bottom:101.792000pt;}
.y67{bottom:104.992000pt;}
.y33{bottom:109.792000pt;}
.y9a{bottom:122.912000pt;}
.y65{bottom:126.752000pt;}
.y32{bottom:131.232000pt;}
.y99{bottom:144.026667pt;}
.y61{bottom:148.506667pt;}
.y31{bottom:152.346667pt;}
.y98{bottom:165.146667pt;}
.y63{bottom:170.266667pt;}
.y30{bottom:173.506667pt;}
.y97{bottom:186.306667pt;}
.y60{bottom:192.386667pt;}
.y2f{bottom:194.626667pt;}
.y96{bottom:207.426667pt;}
.y5c{bottom:214.146667pt;}
.y2e{bottom:215.746667pt;}
.y95{bottom:228.546667pt;}
.y5e{bottom:235.906667pt;}
.y2d{bottom:236.866667pt;}
.y94{bottom:249.666667pt;}
.y56{bottom:257.666667pt;}
.y2c{bottom:257.986667pt;}
.y93{bottom:270.786667pt;}
.y2b{bottom:279.106667pt;}
.y92{bottom:292.253333pt;}
.y2a{bottom:300.573333pt;}
.y91{bottom:313.373333pt;}
.y29{bottom:321.693333pt;}
.y55{bottom:328.413333pt;}
.y90{bottom:334.493333pt;}
.y28{bottom:342.813333pt;}
.y54{bottom:349.533333pt;}
.y8f{bottom:355.613333pt;}
.y27{bottom:363.933333pt;}
.y53{bottom:370.973333pt;}
.y8e{bottom:376.733333pt;}
.y26{bottom:385.053333pt;}
.y52{bottom:392.093333pt;}
.y8d{bottom:397.893333pt;}
.y25{bottom:406.213333pt;}
.y51{bottom:413.253333pt;}
.y8c{bottom:419.013333pt;}
.y24{bottom:427.333333pt;}
.y50{bottom:434.373333pt;}
.y8b{bottom:440.133333pt;}
.y23{bottom:448.453333pt;}
.y4f{bottom:455.493333pt;}
.y8a{bottom:461.573333pt;}
.y22{bottom:469.573333pt;}
.y4e{bottom:476.933333pt;}
.y89{bottom:482.693333pt;}
.y21{bottom:491.013333pt;}
.y4d{bottom:498.053333pt;}
.y88{bottom:503.813333pt;}
.y20{bottom:512.160000pt;}
.ya8{bottom:518.880000pt;}
.y4c{bottom:519.200000pt;}
.y87{bottom:524.960000pt;}
.y1f{bottom:533.280000pt;}
.ya7{bottom:540.000000pt;}
.y4b{bottom:540.320000pt;}
.y86{bottom:546.080000pt;}
.y1e{bottom:554.400000pt;}
.y4a{bottom:561.440000pt;}
.y85{bottom:567.200000pt;}
.y1d{bottom:575.520000pt;}
.y49{bottom:582.560000pt;}
.y84{bottom:588.320000pt;}
.y1c{bottom:596.640000pt;}
.y48{bottom:603.680000pt;}
.y83{bottom:609.440000pt;}
.y1b{bottom:617.760000pt;}
.y47{bottom:624.826667pt;}
.y82{bottom:630.586667pt;}
.y1a{bottom:638.906667pt;}
.y81{bottom:645.946667pt;}
.y46{bottom:646.266667pt;}
.y19{bottom:660.346667pt;}
.y45{bottom:667.386667pt;}
.y80{bottom:667.706667pt;}
.y18{bottom:681.466667pt;}
.y44{bottom:688.506667pt;}
.y7f{bottom:689.466667pt;}
.y17{bottom:702.586667pt;}
.y43{bottom:709.626667pt;}
.y7e{bottom:711.226667pt;}
.y16{bottom:723.706667pt;}
.y42{bottom:730.746667pt;}
.y7b{bottom:732.986667pt;}
.ya6{bottom:739.106667pt;}
.y15{bottom:744.866667pt;}
.y41{bottom:751.906667pt;}
.y7c{bottom:755.746667pt;}
.ya5{bottom:760.866667pt;}
.y14{bottom:765.986667pt;}
.y40{bottom:773.026667pt;}
.y7a{bottom:777.506667pt;}
.ya4{bottom:782.946667pt;}
.y13{bottom:787.106667pt;}
.y3f{bottom:794.146667pt;}
.y75{bottom:799.586667pt;}
.ya3{bottom:804.706667pt;}
.y12{bottom:807.906667pt;}
.y3e{bottom:815.266667pt;}
.y77{bottom:821.986667pt;}
.ya2{bottom:826.466667pt;}
.y11{bottom:829.346667pt;}
.y3d{bottom:836.706667pt;}
.y73{bottom:844.066667pt;}
.ya1{bottom:848.253333pt;}
.y10{bottom:850.813333pt;}
.y3c{bottom:857.853333pt;}
.y70{bottom:865.853333pt;}
.ya0{bottom:870.013333pt;}
.yf{bottom:871.933333pt;}
.y3b{bottom:878.973333pt;}
.y72{bottom:888.573333pt;}
.y9f{bottom:892.093333pt;}
.ye{bottom:892.733333pt;}
.y3a{bottom:900.093333pt;}
.y6f{bottom:910.333333pt;}
.yd{bottom:913.853333pt;}
.y39{bottom:921.213333pt;}
.y6b{bottom:932.093333pt;}
.yc{bottom:936.893333pt;}
.y9e{bottom:942.013333pt;}
.y38{bottom:942.333333pt;}
.y6d{bottom:954.813333pt;}
.y9d{bottom:963.173333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y6a{bottom:976.613333pt;}
.y9c{bottom:984.293333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y68{bottom:998.373333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hd{height:21.120000pt;}
.hf{height:21.152000pt;}
.h14{height:21.440000pt;}
.h15{height:21.760000pt;}
.h12{height:22.080000pt;}
.h16{height:22.112000pt;}
.h5{height:24.000000pt;}
.h10{height:42.560000pt;}
.hc{height:42.880000pt;}
.he{height:42.912000pt;}
.h13{height:43.840000pt;}
.h11{height:43.872000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.ha{height:52.750000pt;}
.h17{height:56.406250pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:63.712000pt;}
.h2{height:64.500000pt;}
.h18{height:65.781915pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.wc{width:144.346667pt;}
.wb{width:144.386667pt;}
.w7{width:146.906667pt;}
.w5{width:147.266667pt;}
.w6{width:165.826667pt;}
.w3{width:265.693333pt;}
.w9{width:289.373333pt;}
.w8{width:289.413333pt;}
.wa{width:579.426667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.040000pt;}
.x15{left:8.640000pt;}
.x8{left:38.746667pt;}
.x5{left:85.152000pt;}
.xc{left:87.711988pt;}
.x1b{left:89.631988pt;}
.xa{left:90.911988pt;}
.x14{left:92.192000pt;}
.x1d{left:107.232000pt;}
.x21{left:113.631988pt;}
.xb{left:115.551988pt;}
.xe{left:132.543988pt;}
.x13{left:140.866655pt;}
.x11{left:144.706655pt;}
.x3{left:169.666655pt;}
.xf{left:183.746655pt;}
.x1c{left:199.746655pt;}
.x1a{left:219.613322pt;}
.x16{left:240.093333pt;}
.x1f{left:252.253333pt;}
.x6{left:258.341333pt;}
.x10{left:278.813322pt;}
.x12{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.xd{left:308.613322pt;}
.x7{left:350.853333pt;}
.x1e{left:397.280000pt;}
.x18{left:406.880000pt;}
.x9{left:443.360000pt;}
.x20{left:542.266667pt;}
.x19{left:554.786667pt;}
.x1{left:709.053322pt;}
}




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