
    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_2cb4fb01443250497493383d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071000;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_6e9841578c543b151f7c0461.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070000;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_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_9568808d969f523918c630ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070000;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.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);}
.v2{vertical-align:-26.640000px;}
.v1{vertical-align:-9.792000px;}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.309600px;}
.ls23{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.172800px;}
.ls1a{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.075600px;}
.ls19{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.070800px;}
.ls1d{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.047940px;}
.ls18{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.250800px;}
.ls11{letter-spacing:0.289200px;}
.lse{letter-spacing:0.547200px;}
.ls20{letter-spacing:1.440000px;}
.ls21{letter-spacing:2.189520px;}
.ls14{letter-spacing:53.265600px;}
.ls15{letter-spacing:53.316000px;}
.ls6{letter-spacing:55.533600px;}
.lsa{letter-spacing:55.584000px;}
.ls2{letter-spacing:57.549600px;}
.ls3{letter-spacing:57.600000px;}
.lsb{letter-spacing:61.833600px;}
.lsd{letter-spacing:61.884000px;}
.ls9{letter-spacing:63.849600px;}
.ls8{letter-spacing:63.900000px;}
.ls5{letter-spacing:65.865600px;}
.ls4{letter-spacing:65.916000px;}
.lsf{letter-spacing:68.133600px;}
.lsc{letter-spacing:68.184000px;}
.ls17{letter-spacing:70.149600px;}
.ls16{letter-spacing:70.200000px;}
.ls1c{letter-spacing:72.165600px;}
.ls1b{letter-spacing:72.216000px;}
.ls13{letter-spacing:74.484000px;}
.ls22{letter-spacing:133.524000px;}
.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;}
}
.ws16{word-spacing:-90.760320px;}
.ws3{word-spacing:-66.693312px;}
.ws5{word-spacing:-60.048000px;}
.wsd{word-spacing:-43.787520px;}
.ws1b{word-spacing:-43.747200px;}
.wse{word-spacing:-42.692832px;}
.wsf{word-spacing:-42.653520px;}
.ws8{word-spacing:-40.923792px;}
.ws18{word-spacing:-40.360320px;}
.ws6{word-spacing:-40.320000px;}
.ws4{word-spacing:-39.312000px;}
.ws19{word-spacing:-36.892800px;}
.ws1c{word-spacing:-36.009792px;}
.wsa{word-spacing:-35.934192px;}
.ws9{word-spacing:-34.398000px;}
.ws13{word-spacing:-33.667200px;}
.ws1d{word-spacing:-33.466752px;}
.ws1e{word-spacing:-33.426720px;}
.ws1{word-spacing:-32.864832px;}
.ws17{word-spacing:-32.825520px;}
.ws0{word-spacing:-32.652720px;}
.ws10{word-spacing:-30.240000px;}
.ws12{word-spacing:-29.523312px;}
.ws7{word-spacing:-29.484000px;}
.ws14{word-spacing:-27.840720px;}
.ws15{word-spacing:-27.601920px;}
.ws1a{word-spacing:-22.997520px;}
.wsc{word-spacing:-19.656000px;}
.ws11{word-spacing:-0.828000px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:1.426560px;}
._5{margin-left:-2.859203px;}
._0{margin-left:-1.775917px;}
._1{width:1.054477px;}
._2{width:2.654400px;}
._4{width:32.402400px;}
._3{width:59.040720px;}
._8{width:338.275200px;}
._7{width:983.321869px;}
._6{width:1025.201685px;}
.fc7{color:rgb(141,39,87);}
.fc5{color:rgb(232,28,39);}
.fc2{color:rgb(49,49,145);}
.fc1{color:transparent;}
.fc8{color:rgb(63,63,63);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(165,165,165);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(255,255,255);}
.fs1d{font-size:59.760000px;}
.fs1e{font-size:59.904000px;}
.fs8{font-size:72.000000px;}
.fs21{font-size:84.240000px;}
.fs0{font-size:88.795869px;}
.fs17{font-size:95.760000px;}
.fs1b{font-size:102.240000px;}
.fs1c{font-size:102.384000px;}
.fsa{font-size:108.000000px;}
.fs1a{font-size:108.144000px;}
.fs14{font-size:113.760000px;}
.fs16{font-size:113.904000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fs10{font-size:126.000000px;}
.fs11{font-size:126.144000px;}
.fs15{font-size:131.760000px;}
.fs13{font-size:131.904000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs12{font-size:149.760000px;}
.fsf{font-size:149.904000px;}
.fs19{font-size:156.240000px;}
.fs18{font-size:156.384000px;}
.fs20{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fs9{font-size:216.000000px;}
.fse{font-size:216.144000px;}
.fs22{font-size:239.760000px;}
.fs5{font-size:239.904000px;}
.fsd{font-size:288.000000px;}
.fsc{font-size:288.144000px;}
.fs1f{font-size:324.144000px;}
.fsb{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:21.276000px;}
.y8e{bottom:47.808000px;}
.y98{bottom:48.060000px;}
.y50{bottom:59.364000px;}
.ycb{bottom:70.524000px;}
.y21{bottom:78.300000px;}
.y39{bottom:94.968000px;}
.ya4{bottom:108.468000px;}
.y71{bottom:113.976000px;}
.y38{bottom:134.028000px;}
.yc1{bottom:136.764000px;}
.y70{bottom:137.556000px;}
.yb6{bottom:139.860000px;}
.y20{bottom:140.976000px;}
.y47{bottom:143.064000px;}
.yca{bottom:154.950000px;}
.yad{bottom:160.770000px;}
.y6f{bottom:161.310000px;}
.yb5{bottom:171.720000px;}
.y37{bottom:173.130000px;}
.y1f{bottom:175.530000px;}
.y46{bottom:175.650000px;}
.yc9{bottom:180.150000px;}
.yc0{bottom:184.470000px;}
.y6e{bottom:184.890000px;}
.yac{bottom:188.490000px;}
.y7c{bottom:197.070000px;}
.ya3{bottom:199.050000px;}
.y59{bottom:201.210000px;}
.y6d{bottom:208.470000px;}
.y45{bottom:208.950000px;}
.y1e{bottom:210.135000px;}
.y36{bottom:212.010000px;}
.yc8{bottom:212.730000px;}
.y2c{bottom:214.350000px;}
.yab{bottom:216.210000px;}
.yb4{bottom:228.030000px;}
.y6c{bottom:232.050000px;}
.ybf{bottom:232.350000px;}
.y7b{bottom:235.230000px;}
.y1d{bottom:244.695000px;}
.y58{bottom:245.130000px;}
.yc7{bottom:245.490000px;}
.yb0{bottom:247.425000px;}
.y44{bottom:251.790000px;}
.y35{bottom:252.510000px;}
.yb3{bottom:253.230000px;}
.yaa{bottom:258.870000px;}
.y2b{bottom:261.690000px;}
.y6b{bottom:270.795000px;}
.y7a{bottom:270.870000px;}
.yaf{bottom:272.625000px;}
.y61{bottom:274.110000px;}
.y43{bottom:276.810000px;}
.yc6{bottom:279.510000px;}
.y57{bottom:289.050000px;}
.ya2{bottom:289.590000px;}
.y12{bottom:293.040000px;}
.y6a{bottom:294.375000px;}
.ya9{bottom:301.530000px;}
.y2a{bottom:309.240000px;}
.ybe{bottom:314.100000px;}
.y60{bottom:316.260000px;}
.ya1{bottom:319.860000px;}
.y79{bottom:320.040000px;}
.yb2{bottom:326.160000px;}
.y1c{bottom:329.115000px;}
.y4f{bottom:331.020000px;}
.y56{bottom:333.000000px;}
.y69{bottom:333.075000px;}
.y8d{bottom:333.900000px;}
.y8c{bottom:336.750000px;}
.y99{bottom:339.870000px;}
.y42{bottom:342.720000px;}
.ya8{bottom:344.415000px;}
.ybd{bottom:349.200000px;}
.yb1{bottom:351.360000px;}
.yc5{bottom:356.220000px;}
.y29{bottom:356.580000px;}
.y68{bottom:356.655000px;}
.y78{bottom:356.760000px;}
.y34{bottom:357.660000px;}
.y1b{bottom:357.915000px;}
.y5f{bottom:358.380000px;}
.y97{bottom:359.820000px;}
.y10{bottom:362.160000px;}
.y4e{bottom:363.420000px;}
.y82{bottom:371.160000px;}
.ya7{bottom:372.135000px;}
.y8b{bottom:376.020000px;}
.ybc{bottom:384.480000px;}
.y41{bottom:385.560000px;}
.yc4{bottom:388.800000px;}
.y1a{bottom:394.305000px;}
.y77{bottom:394.740000px;}
.y67{bottom:395.355000px;}
.y96{bottom:396.180000px;}
.y8a{bottom:397.440000px;}
.y28{bottom:403.920000px;}
.y33{bottom:410.040000px;}
.ya0{bottom:410.220000px;}
.y4d{bottom:410.760000px;}
.ya6{bottom:414.795000px;}
.y5e{bottom:415.440000px;}
.yf{bottom:415.980000px;}
.yae{bottom:417.600000px;}
.y40{bottom:417.960000px;}
.y81{bottom:420.300000px;}
.y55{bottom:420.660000px;}
.ybb{bottom:421.020000px;}
.yc3{bottom:421.560000px;}
.y89{bottom:426.420000px;}
.yd0{bottom:430.200000px;}
.y19{bottom:430.485000px;}
.y95{bottom:432.540000px;}
.y9{bottom:435.315000px;}
.y4c{bottom:443.160000px;}
.y76{bottom:445.500000px;}
.y3f{bottom:450.540000px;}
.y27{bottom:451.440000px;}
.y66{bottom:454.290000px;}
.y88{bottom:455.400000px;}
.yc2{bottom:455.610000px;}
.y80{bottom:457.050000px;}
.y5d{bottom:457.590000px;}
.y18{bottom:459.285000px;}
.y32{bottom:461.190000px;}
.y54{bottom:464.610000px;}
.ycf{bottom:466.230000px;}
.y94{bottom:469.080000px;}
.ye{bottom:469.830000px;}
.y8{bottom:471.315000px;}
.y3e{bottom:483.870000px;}
.y87{bottom:485.280000px;}
.y17{bottom:488.085000px;}
.y93{bottom:490.500000px;}
.y4b{bottom:490.710000px;}
.y75{bottom:494.670000px;}
.y7f{bottom:495.030000px;}
.y9f{bottom:499.530000px;}
.y65{bottom:499.650000px;}
.y31{bottom:500.070000px;}
.yce{bottom:502.230000px;}
.yba{bottom:502.770000px;}
.y24{bottom:505.005000px;}
.y7{bottom:507.315000px;}
.y53{bottom:508.530000px;}
.yd{bottom:508.710000px;}
.y5c{bottom:514.830000px;}
.y86{bottom:525.450000px;}
.y16{bottom:525.930000px;}
.y3d{bottom:526.890000px;}
.y9e{bottom:532.290000px;}
.y74{bottom:532.830000px;}
.y26{bottom:536.430000px;}
.y4a{bottom:536.610000px;}
.yb9{bottom:537.870000px;}
.y30{bottom:539.130000px;}
.y7e{bottom:544.350000px;}
.y64{bottom:545.190000px;}
.y92{bottom:548.310000px;}
.y52{bottom:552.270000px;}
.ya5{bottom:556.950000px;}
.y9d{bottom:557.490000px;}
.y3c{bottom:559.290000px;}
.y15{bottom:560.490000px;}
.yc{bottom:562.710000px;}
.y85{bottom:565.590000px;}
.y49{bottom:571.530000px;}
.y5b{bottom:571.890000px;}
.yb8{bottom:574.410000px;}
.y2f{bottom:578.190000px;}
.y7d{bottom:580.890000px;}
.y9a{bottom:582.810000px;}
.y73{bottom:583.410000px;}
.y91{bottom:584.670000px;}
.y9c{bottom:590.070000px;}
.y63{bottom:590.550000px;}
.y23{bottom:591.450000px;}
.y3b{bottom:591.690000px;}
.y3{bottom:592.275000px;}
.y14{bottom:595.050000px;}
.y51{bottom:596.190000px;}
.y6{bottom:601.485000px;}
.y84{bottom:605.910000px;}
.y90{bottom:607.710000px;}
.ycd{bottom:612.030000px;}
.y5a{bottom:614.055000px;}
.yb{bottom:616.575000px;}
.y2{bottom:617.475000px;}
.y2e{bottom:618.735000px;}
.y48{bottom:618.915000px;}
.y72{bottom:619.095000px;}
.y25{bottom:621.615000px;}
.yb7{bottom:622.155000px;}
.y9b{bottom:624.135000px;}
.y3a{bottom:625.215000px;}
.y62{bottom:635.940000px;}
.y1{bottom:642.705000px;}
.y83{bottom:646.050000px;}
.y8f{bottom:648.930000px;}
.y5{bottom:659.085000px;}
.y22{bottom:682.170000px;}
.ycc{bottom:684.030000px;}
.y4{bottom:716.730000px;}
.ya{bottom:731.340000px;}
.y2d{bottom:732.390000px;}
.y13{bottom:733.140000px;}
.h1e{height:51.393600px;}
.h1f{height:51.517440px;}
.h9{height:61.920000px;}
.h22{height:72.446400px;}
.h1{height:76.364447px;}
.h18{height:82.353600px;}
.h1c{height:87.926400px;}
.h1d{height:88.050240px;}
.hb{height:92.880000px;}
.h1b{height:93.003840px;}
.h15{height:97.833600px;}
.h17{height:97.957440px;}
.h4{height:103.406400px;}
.h5{height:103.530240px;}
.h11{height:108.360000px;}
.h12{height:108.483840px;}
.h16{height:113.313600px;}
.h14{height:113.437440px;}
.h21{height:122.133867px;}
.h8{height:123.840000px;}
.h7{height:123.963840px;}
.h13{height:128.793600px;}
.h10{height:128.917440px;}
.h1a{height:134.366400px;}
.h19{height:134.490240px;}
.h3{height:165.326400px;}
.h2{height:165.450240px;}
.ha{height:185.760000px;}
.hf{height:185.883840px;}
.h23{height:206.193600px;}
.h6{height:206.317440px;}
.he{height:247.680000px;}
.hd{height:247.803840px;}
.h20{height:278.763840px;}
.hc{height:309.600000px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x28{left:34.667979px;}
.x2{left:39.347979px;}
.x13{left:40.931979px;}
.x8{left:51.947979px;}
.xb{left:53.423979px;}
.x4{left:61.811979px;}
.x3{left:65.771979px;}
.x1a{left:67.751979px;}
.x5{left:88.811979px;}
.xf{left:92.771979px;}
.x9{left:105.947979px;}
.xc{left:115.811979px;}
.xe{left:119.771979px;}
.xa{left:132.947979px;}
.xd{left:142.811979px;}
.x27{left:169.379979px;}
.x26{left:206.279979px;}
.x19{left:225.794979px;}
.x16{left:405.974979px;}
.x17{left:679.679979px;}
.x1b{left:732.884979px;}
.x1d{left:741.809979px;}
.x1c{left:786.989979px;}
.x1{left:799.169979px;}
.x22{left:803.519979px;}
.x25{left:848.369979px;}
.x1e{left:916.529979px;}
.x15{left:949.064979px;}
.x1f{left:965.849979px;}
.x10{left:981.929979px;}
.x23{left:1039.754979px;}
.x21{left:1113.119979px;}
.x18{left:1121.069979px;}
.x20{left:1134.719979px;}
.x7{left:1217.594979px;}
.x24{left:1394.459979px;}
.x11{left:1397.699979px;}
.x14{left:1399.139979px;}
.x12{left:1401.839979px;}
.x6{left:1405.259979px;}
@media print{
.v2{vertical-align:-23.680000pt;}
.v1{vertical-align:-8.704000pt;}
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.275200pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.153600pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.067200pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.062933pt;}
.ls1d{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.042613pt;}
.ls18{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.222933pt;}
.ls11{letter-spacing:0.257067pt;}
.lse{letter-spacing:0.486400pt;}
.ls20{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.946240pt;}
.ls14{letter-spacing:47.347200pt;}
.ls15{letter-spacing:47.392000pt;}
.ls6{letter-spacing:49.363200pt;}
.lsa{letter-spacing:49.408000pt;}
.ls2{letter-spacing:51.155200pt;}
.ls3{letter-spacing:51.200000pt;}
.lsb{letter-spacing:54.963200pt;}
.lsd{letter-spacing:55.008000pt;}
.ls9{letter-spacing:56.755200pt;}
.ls8{letter-spacing:56.800000pt;}
.ls5{letter-spacing:58.547200pt;}
.ls4{letter-spacing:58.592000pt;}
.lsf{letter-spacing:60.563200pt;}
.lsc{letter-spacing:60.608000pt;}
.ls17{letter-spacing:62.355200pt;}
.ls16{letter-spacing:62.400000pt;}
.ls1c{letter-spacing:64.147200pt;}
.ls1b{letter-spacing:64.192000pt;}
.ls13{letter-spacing:66.208000pt;}
.ls22{letter-spacing:118.688000pt;}
.ws16{word-spacing:-80.675840pt;}
.ws3{word-spacing:-59.282944pt;}
.ws5{word-spacing:-53.376000pt;}
.wsd{word-spacing:-38.922240pt;}
.ws1b{word-spacing:-38.886400pt;}
.wse{word-spacing:-37.949184pt;}
.wsf{word-spacing:-37.914240pt;}
.ws8{word-spacing:-36.376704pt;}
.ws18{word-spacing:-35.875840pt;}
.ws6{word-spacing:-35.840000pt;}
.ws4{word-spacing:-34.944000pt;}
.ws19{word-spacing:-32.793600pt;}
.ws1c{word-spacing:-32.008704pt;}
.wsa{word-spacing:-31.941504pt;}
.ws9{word-spacing:-30.576000pt;}
.ws13{word-spacing:-29.926400pt;}
.ws1d{word-spacing:-29.748224pt;}
.ws1e{word-spacing:-29.712640pt;}
.ws1{word-spacing:-29.213184pt;}
.ws17{word-spacing:-29.178240pt;}
.ws0{word-spacing:-29.024640pt;}
.ws10{word-spacing:-26.880000pt;}
.ws12{word-spacing:-26.242944pt;}
.ws7{word-spacing:-26.208000pt;}
.ws14{word-spacing:-24.747307pt;}
.ws15{word-spacing:-24.535040pt;}
.ws1a{word-spacing:-20.442240pt;}
.wsc{word-spacing:-17.472000pt;}
.ws11{word-spacing:-0.736000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:1.268053pt;}
._5{margin-left:-2.541513pt;}
._0{margin-left:-1.578593pt;}
._1{width:0.937313pt;}
._2{width:2.359467pt;}
._4{width:28.802133pt;}
._3{width:52.480640pt;}
._8{width:300.689067pt;}
._7{width:874.063884pt;}
._6{width:911.290387pt;}
.fs1d{font-size:53.120000pt;}
.fs1e{font-size:53.248000pt;}
.fs8{font-size:64.000000pt;}
.fs21{font-size:74.880000pt;}
.fs0{font-size:78.929661pt;}
.fs17{font-size:85.120000pt;}
.fs1b{font-size:90.880000pt;}
.fs1c{font-size:91.008000pt;}
.fsa{font-size:96.000000pt;}
.fs1a{font-size:96.128000pt;}
.fs14{font-size:101.120000pt;}
.fs16{font-size:101.248000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fs10{font-size:112.000000pt;}
.fs11{font-size:112.128000pt;}
.fs15{font-size:117.120000pt;}
.fs13{font-size:117.248000pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs12{font-size:133.120000pt;}
.fsf{font-size:133.248000pt;}
.fs19{font-size:138.880000pt;}
.fs18{font-size:139.008000pt;}
.fs20{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fs9{font-size:192.000000pt;}
.fse{font-size:192.128000pt;}
.fs22{font-size:213.120000pt;}
.fs5{font-size:213.248000pt;}
.fsd{font-size:256.000000pt;}
.fsc{font-size:256.128000pt;}
.fs1f{font-size:288.128000pt;}
.fsb{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:18.912000pt;}
.y8e{bottom:42.496000pt;}
.y98{bottom:42.720000pt;}
.y50{bottom:52.768000pt;}
.ycb{bottom:62.688000pt;}
.y21{bottom:69.600000pt;}
.y39{bottom:84.416000pt;}
.ya4{bottom:96.416000pt;}
.y71{bottom:101.312000pt;}
.y38{bottom:119.136000pt;}
.yc1{bottom:121.568000pt;}
.y70{bottom:122.272000pt;}
.yb6{bottom:124.320000pt;}
.y20{bottom:125.312000pt;}
.y47{bottom:127.168000pt;}
.yca{bottom:137.733333pt;}
.yad{bottom:142.906667pt;}
.y6f{bottom:143.386667pt;}
.yb5{bottom:152.640000pt;}
.y37{bottom:153.893333pt;}
.y1f{bottom:156.026667pt;}
.y46{bottom:156.133333pt;}
.yc9{bottom:160.133333pt;}
.yc0{bottom:163.973333pt;}
.y6e{bottom:164.346667pt;}
.yac{bottom:167.546667pt;}
.y7c{bottom:175.173333pt;}
.ya3{bottom:176.933333pt;}
.y59{bottom:178.853333pt;}
.y6d{bottom:185.306667pt;}
.y45{bottom:185.733333pt;}
.y1e{bottom:186.786667pt;}
.y36{bottom:188.453333pt;}
.yc8{bottom:189.093333pt;}
.y2c{bottom:190.533333pt;}
.yab{bottom:192.186667pt;}
.yb4{bottom:202.693333pt;}
.y6c{bottom:206.266667pt;}
.ybf{bottom:206.533333pt;}
.y7b{bottom:209.093333pt;}
.y1d{bottom:217.506667pt;}
.y58{bottom:217.893333pt;}
.yc7{bottom:218.213333pt;}
.yb0{bottom:219.933333pt;}
.y44{bottom:223.813333pt;}
.y35{bottom:224.453333pt;}
.yb3{bottom:225.093333pt;}
.yaa{bottom:230.106667pt;}
.y2b{bottom:232.613333pt;}
.y6b{bottom:240.706667pt;}
.y7a{bottom:240.773333pt;}
.yaf{bottom:242.333333pt;}
.y61{bottom:243.653333pt;}
.y43{bottom:246.053333pt;}
.yc6{bottom:248.453333pt;}
.y57{bottom:256.933333pt;}
.ya2{bottom:257.413333pt;}
.y12{bottom:260.480000pt;}
.y6a{bottom:261.666667pt;}
.ya9{bottom:268.026667pt;}
.y2a{bottom:274.880000pt;}
.ybe{bottom:279.200000pt;}
.y60{bottom:281.120000pt;}
.ya1{bottom:284.320000pt;}
.y79{bottom:284.480000pt;}
.yb2{bottom:289.920000pt;}
.y1c{bottom:292.546667pt;}
.y4f{bottom:294.240000pt;}
.y56{bottom:296.000000pt;}
.y69{bottom:296.066667pt;}
.y8d{bottom:296.800000pt;}
.y8c{bottom:299.333333pt;}
.y99{bottom:302.106667pt;}
.y42{bottom:304.640000pt;}
.ya8{bottom:306.146667pt;}
.ybd{bottom:310.400000pt;}
.yb1{bottom:312.320000pt;}
.yc5{bottom:316.640000pt;}
.y29{bottom:316.960000pt;}
.y68{bottom:317.026667pt;}
.y78{bottom:317.120000pt;}
.y34{bottom:317.920000pt;}
.y1b{bottom:318.146667pt;}
.y5f{bottom:318.560000pt;}
.y97{bottom:319.840000pt;}
.y10{bottom:321.920000pt;}
.y4e{bottom:323.040000pt;}
.y82{bottom:329.920000pt;}
.ya7{bottom:330.786667pt;}
.y8b{bottom:334.240000pt;}
.ybc{bottom:341.760000pt;}
.y41{bottom:342.720000pt;}
.yc4{bottom:345.600000pt;}
.y1a{bottom:350.493333pt;}
.y77{bottom:350.880000pt;}
.y67{bottom:351.426667pt;}
.y96{bottom:352.160000pt;}
.y8a{bottom:353.280000pt;}
.y28{bottom:359.040000pt;}
.y33{bottom:364.480000pt;}
.ya0{bottom:364.640000pt;}
.y4d{bottom:365.120000pt;}
.ya6{bottom:368.706667pt;}
.y5e{bottom:369.280000pt;}
.yf{bottom:369.760000pt;}
.yae{bottom:371.200000pt;}
.y40{bottom:371.520000pt;}
.y81{bottom:373.600000pt;}
.y55{bottom:373.920000pt;}
.ybb{bottom:374.240000pt;}
.yc3{bottom:374.720000pt;}
.y89{bottom:379.040000pt;}
.yd0{bottom:382.400000pt;}
.y19{bottom:382.653333pt;}
.y95{bottom:384.480000pt;}
.y9{bottom:386.946667pt;}
.y4c{bottom:393.920000pt;}
.y76{bottom:396.000000pt;}
.y3f{bottom:400.480000pt;}
.y27{bottom:401.280000pt;}
.y66{bottom:403.813333pt;}
.y88{bottom:404.800000pt;}
.yc2{bottom:404.986667pt;}
.y80{bottom:406.266667pt;}
.y5d{bottom:406.746667pt;}
.y18{bottom:408.253333pt;}
.y32{bottom:409.946667pt;}
.y54{bottom:412.986667pt;}
.ycf{bottom:414.426667pt;}
.y94{bottom:416.960000pt;}
.ye{bottom:417.626667pt;}
.y8{bottom:418.946667pt;}
.y3e{bottom:430.106667pt;}
.y87{bottom:431.360000pt;}
.y17{bottom:433.853333pt;}
.y93{bottom:436.000000pt;}
.y4b{bottom:436.186667pt;}
.y75{bottom:439.706667pt;}
.y7f{bottom:440.026667pt;}
.y9f{bottom:444.026667pt;}
.y65{bottom:444.133333pt;}
.y31{bottom:444.506667pt;}
.yce{bottom:446.426667pt;}
.yba{bottom:446.906667pt;}
.y24{bottom:448.893333pt;}
.y7{bottom:450.946667pt;}
.y53{bottom:452.026667pt;}
.yd{bottom:452.186667pt;}
.y5c{bottom:457.626667pt;}
.y86{bottom:467.066667pt;}
.y16{bottom:467.493333pt;}
.y3d{bottom:468.346667pt;}
.y9e{bottom:473.146667pt;}
.y74{bottom:473.626667pt;}
.y26{bottom:476.826667pt;}
.y4a{bottom:476.986667pt;}
.yb9{bottom:478.106667pt;}
.y30{bottom:479.226667pt;}
.y7e{bottom:483.866667pt;}
.y64{bottom:484.613333pt;}
.y92{bottom:487.386667pt;}
.y52{bottom:490.906667pt;}
.ya5{bottom:495.066667pt;}
.y9d{bottom:495.546667pt;}
.y3c{bottom:497.146667pt;}
.y15{bottom:498.213333pt;}
.yc{bottom:500.186667pt;}
.y85{bottom:502.746667pt;}
.y49{bottom:508.026667pt;}
.y5b{bottom:508.346667pt;}
.yb8{bottom:510.586667pt;}
.y2f{bottom:513.946667pt;}
.y7d{bottom:516.346667pt;}
.y9a{bottom:518.053333pt;}
.y73{bottom:518.586667pt;}
.y91{bottom:519.706667pt;}
.y9c{bottom:524.506667pt;}
.y63{bottom:524.933333pt;}
.y23{bottom:525.733333pt;}
.y3b{bottom:525.946667pt;}
.y3{bottom:526.466667pt;}
.y14{bottom:528.933333pt;}
.y51{bottom:529.946667pt;}
.y6{bottom:534.653333pt;}
.y84{bottom:538.586667pt;}
.y90{bottom:540.186667pt;}
.ycd{bottom:544.026667pt;}
.y5a{bottom:545.826667pt;}
.yb{bottom:548.066667pt;}
.y2{bottom:548.866667pt;}
.y2e{bottom:549.986667pt;}
.y48{bottom:550.146667pt;}
.y72{bottom:550.306667pt;}
.y25{bottom:552.546667pt;}
.yb7{bottom:553.026667pt;}
.y9b{bottom:554.786667pt;}
.y3a{bottom:555.746667pt;}
.y62{bottom:565.280000pt;}
.y1{bottom:571.293333pt;}
.y83{bottom:574.266667pt;}
.y8f{bottom:576.826667pt;}
.y5{bottom:585.853333pt;}
.y22{bottom:606.373333pt;}
.ycc{bottom:608.026667pt;}
.y4{bottom:637.093333pt;}
.ya{bottom:650.080000pt;}
.y2d{bottom:651.013333pt;}
.y13{bottom:651.680000pt;}
.h1e{height:45.683200pt;}
.h1f{height:45.793280pt;}
.h9{height:55.040000pt;}
.h22{height:64.396800pt;}
.h1{height:67.879509pt;}
.h18{height:73.203200pt;}
.h1c{height:78.156800pt;}
.h1d{height:78.266880pt;}
.hb{height:82.560000pt;}
.h1b{height:82.670080pt;}
.h15{height:86.963200pt;}
.h17{height:87.073280pt;}
.h4{height:91.916800pt;}
.h5{height:92.026880pt;}
.h11{height:96.320000pt;}
.h12{height:96.430080pt;}
.h16{height:100.723200pt;}
.h14{height:100.833280pt;}
.h21{height:108.563437pt;}
.h8{height:110.080000pt;}
.h7{height:110.190080pt;}
.h13{height:114.483200pt;}
.h10{height:114.593280pt;}
.h1a{height:119.436800pt;}
.h19{height:119.546880pt;}
.h3{height:146.956800pt;}
.h2{height:147.066880pt;}
.ha{height:165.120000pt;}
.hf{height:165.230080pt;}
.h23{height:183.283200pt;}
.h6{height:183.393280pt;}
.he{height:220.160000pt;}
.hd{height:220.270080pt;}
.h20{height:247.790080pt;}
.hc{height:275.200000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x28{left:30.815981pt;}
.x2{left:34.975981pt;}
.x13{left:36.383981pt;}
.x8{left:46.175981pt;}
.xb{left:47.487981pt;}
.x4{left:54.943981pt;}
.x3{left:58.463981pt;}
.x1a{left:60.223981pt;}
.x5{left:78.943981pt;}
.xf{left:82.463981pt;}
.x9{left:94.175981pt;}
.xc{left:102.943981pt;}
.xe{left:106.463981pt;}
.xa{left:118.175981pt;}
.xd{left:126.943981pt;}
.x27{left:150.559981pt;}
.x26{left:183.359981pt;}
.x19{left:200.706648pt;}
.x16{left:360.866648pt;}
.x17{left:604.159981pt;}
.x1b{left:651.453314pt;}
.x1d{left:659.386648pt;}
.x1c{left:699.546648pt;}
.x1{left:710.373314pt;}
.x22{left:714.239981pt;}
.x25{left:754.106648pt;}
.x1e{left:814.693314pt;}
.x15{left:843.613314pt;}
.x1f{left:858.533314pt;}
.x10{left:872.826648pt;}
.x23{left:924.226648pt;}
.x21{left:989.439981pt;}
.x18{left:996.506648pt;}
.x20{left:1008.639981pt;}
.x7{left:1082.306648pt;}
.x24{left:1239.519981pt;}
.x11{left:1242.399981pt;}
.x14{left:1243.679981pt;}
.x12{left:1246.079981pt;}
.x6{left:1249.119981pt;}
}




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