
    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_edefe715daca72c5badfc8a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_06663ccbe9da7863b0cf78ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_75f381e5fee9804dc66038c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_8ebf7a4f50f13729e136c7f4.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_dca7bf2c9314453433fdef67.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7707b9fa4be9b4c3b332376d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_63cf5b5e6abc34031a5fa3c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_a8c2fe39bb333abe12ceff59.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.v5{vertical-align:57.420000px;}
.ls3{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.lsd{letter-spacing:7.344000px;}
.lsc{letter-spacing:54.840000px;}
.lsb{letter-spacing:54.864000px;}
.ls7{letter-spacing:55.386720px;}
.ls5{letter-spacing:64.026720px;}
.ls4{letter-spacing:118.026720px;}
.ls9{letter-spacing:141.960000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws5{word-spacing:-21.060000px;}
.wsf{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-13.500000px;}
.wsc{word-spacing:-10.962000px;}
.ws3{word-spacing:-10.440000px;}
.wsd{word-spacing:-8.477280px;}
.ws0{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:245.634000px;}
._4{margin-left:-7.816320px;}
._0{margin-left:-6.156000px;}
._b{margin-left:-4.608000px;}
._3{margin-left:-3.245760px;}
._1{margin-left:-2.052000px;}
._5{margin-left:-1.033920px;}
._2{width:1.009440px;}
._6{width:2.223360px;}
._a{width:3.464640px;}
._c{width:4.478400px;}
._7{width:6.336000px;}
._8{width:7.464000px;}
._9{width:8.496000px;}
._11{width:10.177920px;}
._15{width:11.998080px;}
._12{width:13.320000px;}
._10{width:15.264000px;}
._13{width:16.416000px;}
._16{width:19.776000px;}
._17{width:21.264000px;}
._14{width:22.417920px;}
._24{width:24.456000px;}
._25{width:25.464000px;}
._f{width:27.000000px;}
._d{width:31.824000px;}
._e{width:32.904000px;}
._28{width:35.400000px;}
._1d{width:36.648000px;}
._22{width:38.304000px;}
._26{width:41.688000px;}
._27{width:42.694560px;}
._1c{width:61.776000px;}
._1f{width:63.144000px;}
._2a{width:71.184000px;}
._21{width:83.880000px;}
._23{width:89.098560px;}
._19{width:101.448000px;}
._1a{width:102.960000px;}
._20{width:106.596000px;}
._18{width:108.612000px;}
._1b{width:110.880000px;}
._1e{width:136.224000px;}
._29{width:165.288000px;}
._2b{width:224.760000px;}
._2c{width:225.864000px;}
._2d{width:324.792000px;}
._2e{width:326.110560px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:14.220000px;}
.y5b{bottom:14.400000px;}
.y95{bottom:18.720000px;}
.y51{bottom:18.900000px;}
.y97{bottom:22.035000px;}
.y98{bottom:23.250000px;}
.y94{bottom:30.240000px;}
.y96{bottom:36.795000px;}
.y93{bottom:41.760000px;}
.y90{bottom:44.175000px;}
.y55{bottom:45.360000px;}
.y6{bottom:47.340000px;}
.y50{bottom:50.040000px;}
.y8f{bottom:55.695000px;}
.y92{bottom:63.825000px;}
.y5{bottom:68.220000px;}
.y91{bottom:75.345000px;}
.y54{bottom:76.320000px;}
.y5a{bottom:76.500000px;}
.y8e{bottom:77.760000px;}
.y4{bottom:88.956000px;}
.y8d{bottom:89.280000px;}
.y8c{bottom:100.800000px;}
.y59{bottom:107.460000px;}
.y53{bottom:107.490000px;}
.y8b{bottom:122.865000px;}
.y8a{bottom:134.385000px;}
.y6c{bottom:137.376000px;}
.y58{bottom:138.600000px;}
.y24{bottom:142.596000px;}
.y7d{bottom:142.956000px;}
.y7f{bottom:147.450000px;}
.yc1{bottom:155.550000px;}
.y5e{bottom:160.050000px;}
.y42{bottom:160.770000px;}
.ya8{bottom:161.850000px;}
.y89{bottom:162.255000px;}
.yd7{bottom:163.290000px;}
.y6b{bottom:168.510000px;}
.y5d{bottom:169.605000px;}
.y23{bottom:173.730000px;}
.y88{bottom:173.775000px;}
.y7c{bottom:173.910000px;}
.y5c{bottom:177.510000px;}
.yc0{bottom:186.690000px;}
.y41{bottom:191.730000px;}
.ya7{bottom:194.250000px;}
.yd6{bottom:194.430000px;}
.y85{bottom:195.840000px;}
.y6a{bottom:199.470000px;}
.y87{bottom:201.600000px;}
.y22{bottom:204.690000px;}
.y7b{bottom:204.870000px;}
.y84{bottom:207.360000px;}
.y86{bottom:213.120000px;}
.ybf{bottom:217.650000px;}
.y83{bottom:218.880000px;}
.y40{bottom:225.030000px;}
.yd5{bottom:225.390000px;}
.ya6{bottom:226.650000px;}
.y69{bottom:230.610000px;}
.y82{bottom:235.230000px;}
.y21{bottom:235.830000px;}
.y7a{bottom:237.270000px;}
.y81{bottom:246.750000px;}
.y3f{bottom:248.250000px;}
.ybe{bottom:248.610000px;}
.ye1{bottom:256.350000px;}
.yd4{bottom:256.530000px;}
.ya5{bottom:257.790000px;}
.y80{bottom:258.270000px;}
.y68{bottom:261.570000px;}
.y20{bottom:266.790000px;}
.y79{bottom:269.490000px;}
.ybd{bottom:280.830000px;}
.yd3{bottom:287.490000px;}
.ya4{bottom:288.750000px;}
.y67{bottom:292.710000px;}
.y3e{bottom:297.750000px;}
.y1f{bottom:300.090000px;}
.y78{bottom:301.890000px;}
.ybc{bottom:313.230000px;}
.ye0{bottom:318.450000px;}
.yd2{bottom:318.630000px;}
.ya3{bottom:319.890000px;}
.y66{bottom:323.670000px;}
.y1e{bottom:328.170000px;}
.y3d{bottom:328.890000px;}
.y77{bottom:334.290000px;}
.ybb{bottom:345.675000px;}
.yd1{bottom:349.635000px;}
.ya2{bottom:350.715000px;}
.ydf{bottom:351.975000px;}
.y1d{bottom:352.155000px;}
.y65{bottom:354.855000px;}
.y3c{bottom:359.895000px;}
.y57{bottom:364.575000px;}
.y76{bottom:366.555000px;}
.yba{bottom:378.075000px;}
.ye4{bottom:380.595000px;}
.yd0{bottom:380.775000px;}
.ya1{bottom:383.115000px;}
.y1c{bottom:385.635000px;}
.y64{bottom:385.815000px;}
.y3b{bottom:391.035000px;}
.y75{bottom:399.135000px;}
.yb9{bottom:409.215000px;}
.ycf{bottom:411.735000px;}
.ya0{bottom:415.515000px;}
.y63{bottom:416.955000px;}
.y1b{bottom:419.475000px;}
.y3a{bottom:421.995000px;}
.y74{bottom:430.095000px;}
.yb8{bottom:440.175000px;}
.yce{bottom:442.695000px;}
.y9f{bottom:447.735000px;}
.y62{bottom:447.915000px;}
.y1a{bottom:450.615000px;}
.y39{bottom:453.135000px;}
.y73{bottom:461.235000px;}
.yb7{bottom:471.315000px;}
.ycd{bottom:473.835000px;}
.y61{bottom:479.055000px;}
.y9e{bottom:480.315000px;}
.y19{bottom:481.575000px;}
.y38{bottom:484.095000px;}
.y72{bottom:492.195000px;}
.yb6{bottom:502.095000px;}
.ycc{bottom:504.795000px;}
.ye3{bottom:507.135000px;}
.y60{bottom:510.015000px;}
.y9d{bottom:511.275000px;}
.y18{bottom:512.535000px;}
.y37{bottom:515.235000px;}
.y52{bottom:520.635000px;}
.y71{bottom:523.335000px;}
.yb5{bottom:534.495000px;}
.ycb{bottom:535.935000px;}
.yde{bottom:541.155000px;}
.y9c{bottom:542.415000px;}
.y5f{bottom:543.315000px;}
.y17{bottom:543.675000px;}
.y36{bottom:546.195000px;}
.y70{bottom:554.295000px;}
.yb4{bottom:566.895000px;}
.ydd{bottom:572.115000px;}
.y9b{bottom:573.375000px;}
.y16{bottom:574.635000px;}
.y35{bottom:577.335000px;}
.y6f{bottom:585.435000px;}
.yca{bottom:598.035000px;}
.yb3{bottom:599.115000px;}
.ydc{bottom:603.255000px;}
.y9a{bottom:604.365000px;}
.y15{bottom:605.805000px;}
.y34{bottom:608.325000px;}
.y6e{bottom:616.425000px;}
.yc9{bottom:629.025000px;}
.yb2{bottom:631.545000px;}
.y7e{bottom:633.240000px;}
.ydb{bottom:634.245000px;}
.y14{bottom:636.765000px;}
.y33{bottom:639.465000px;}
.y6d{bottom:643.605000px;}
.y4f{bottom:645.585000px;}
.yc8{bottom:661.245000px;}
.yb1{bottom:663.945000px;}
.yda{bottom:665.385000px;}
.y13{bottom:667.905000px;}
.y99{bottom:668.985000px;}
.y32{bottom:670.425000px;}
.yc7{bottom:693.645000px;}
.yb0{bottom:695.085000px;}
.yd9{bottom:696.345000px;}
.y12{bottom:698.865000px;}
.y31{bottom:701.565000px;}
.yaf{bottom:726.045000px;}
.y4e{bottom:727.485000px;}
.y11{bottom:730.005000px;}
.y30{bottom:732.525000px;}
.yae{bottom:757.185000px;}
.y4d{bottom:758.445000px;}
.y10{bottom:760.965000px;}
.y2f{bottom:763.665000px;}
.yad{bottom:788.145000px;}
.y4c{bottom:789.405000px;}
.yc6{bottom:789.585000px;}
.yf{bottom:792.105000px;}
.y2e{bottom:794.625000px;}
.yac{bottom:819.105000px;}
.y4b{bottom:820.545000px;}
.ye{bottom:823.065000px;}
.y2d{bottom:825.765000px;}
.y4a{bottom:851.505000px;}
.yc5{bottom:851.685000px;}
.ye2{bottom:853.845000px;}
.yd{bottom:856.545000px;}
.y2c{bottom:856.725000px;}
.y49{bottom:882.690000px;}
.yab{bottom:883.770000px;}
.yd8{bottom:885.030000px;}
.y2b{bottom:887.910000px;}
.yc{bottom:889.170000px;}
.y48{bottom:913.650000px;}
.yaa{bottom:916.170000px;}
.yb{bottom:917.610000px;}
.y2a{bottom:918.870000px;}
.y47{bottom:944.790000px;}
.yc4{bottom:945.870000px;}
.ya9{bottom:948.570000px;}
.y29{bottom:950.010000px;}
.ya{bottom:952.890000px;}
.y46{bottom:975.750000px;}
.y9{bottom:978.090000px;}
.yc3{bottom:978.270000px;}
.y28{bottom:980.970000px;}
.y45{bottom:1006.890000px;}
.yc2{bottom:1010.670000px;}
.y27{bottom:1012.110000px;}
.y8{bottom:1018.950000px;}
.y44{bottom:1037.850000px;}
.y26{bottom:1043.070000px;}
.y7{bottom:1065.570000px;}
.y43{bottom:1071.330000px;}
.y25{bottom:1074.210000px;}
.y3{bottom:1095.990000px;}
.y2{bottom:1112.910000px;}
.y1{bottom:1203.480000px;}
.hc{height:13.016602px;}
.h6{height:31.768594px;}
.h15{height:36.193359px;}
.h17{height:41.809570px;}
.h14{height:46.801758px;}
.h7{height:50.391562px;}
.hd{height:50.800781px;}
.h3{height:52.066406px;}
.h12{height:52.417969px;}
.ha{height:54.773438px;}
.h9{height:57.051211px;}
.h8{height:59.436914px;}
.hb{height:60.917695px;}
.h2{height:62.402344px;}
.he{height:66.780000px;}
.h5{height:68.340586px;}
.h4{height:76.201172px;}
.h16{height:99.229570px;}
.hf{height:124.236000px;}
.h10{height:155.340000px;}
.h11{height:186.330000px;}
.h13{height:271.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:93.060000px;}
.w4{width:180.030000px;}
.w5{width:190.650000px;}
.w6{width:239.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.xb{left:93.816000px;}
.x28{left:101.195987px;}
.x1{left:108.035987px;}
.x26{left:114.875987px;}
.x27{left:128.375987px;}
.x11{left:135.035987px;}
.x10{left:148.535987px;}
.x13{left:156.089987px;}
.x4{left:159.509987px;}
.x7{left:178.589987px;}
.x14{left:179.789987px;}
.xd{left:187.590000px;}
.x8{left:238.169987px;}
.xa{left:241.409987px;}
.x5{left:254.729987px;}
.x16{left:257.834987px;}
.x1d{left:259.454987px;}
.x1b{left:263.594987px;}
.x15{left:266.294987px;}
.x18{left:268.994987px;}
.x1c{left:271.514987px;}
.x9{left:277.634987px;}
.x1e{left:282.494987px;}
.x17{left:285.914987px;}
.x1f{left:287.534987px;}
.x6{left:291.674987px;}
.xe{left:368.355000px;}
.x19{left:382.169987px;}
.x23{left:389.129987px;}
.x1a{left:390.449987px;}
.x22{left:393.269987px;}
.x20{left:396.869987px;}
.x21{left:414.509987px;}
.x24{left:535.064987px;}
.xf{left:559.905000px;}
.x25{left:645.014987px;}
.x3{left:692.609987px;}
.x12{left:769.829987px;}
.x2{left:785.309987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.v5{vertical-align:51.040000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.lsd{letter-spacing:6.528000pt;}
.lsc{letter-spacing:48.746667pt;}
.lsb{letter-spacing:48.768000pt;}
.ls7{letter-spacing:49.232640pt;}
.ls5{letter-spacing:56.912640pt;}
.ls4{letter-spacing:104.912640pt;}
.ls9{letter-spacing:126.186667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsc{word-spacing:-9.744000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsd{word-spacing:-7.535360pt;}
.ws0{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:218.341333pt;}
._4{margin-left:-6.947840pt;}
._0{margin-left:-5.472000pt;}
._b{margin-left:-4.096000pt;}
._3{margin-left:-2.885120pt;}
._1{margin-left:-1.824000pt;}
._5{margin-left:-0.919040pt;}
._2{width:0.897280pt;}
._6{width:1.976320pt;}
._a{width:3.079680pt;}
._c{width:3.980800pt;}
._7{width:5.632000pt;}
._8{width:6.634667pt;}
._9{width:7.552000pt;}
._11{width:9.047040pt;}
._15{width:10.664960pt;}
._12{width:11.840000pt;}
._10{width:13.568000pt;}
._13{width:14.592000pt;}
._16{width:17.578667pt;}
._17{width:18.901333pt;}
._14{width:19.927040pt;}
._24{width:21.738667pt;}
._25{width:22.634667pt;}
._f{width:24.000000pt;}
._d{width:28.288000pt;}
._e{width:29.248000pt;}
._28{width:31.466667pt;}
._1d{width:32.576000pt;}
._22{width:34.048000pt;}
._26{width:37.056000pt;}
._27{width:37.950720pt;}
._1c{width:54.912000pt;}
._1f{width:56.128000pt;}
._2a{width:63.274667pt;}
._21{width:74.560000pt;}
._23{width:79.198720pt;}
._19{width:90.176000pt;}
._1a{width:91.520000pt;}
._20{width:94.752000pt;}
._18{width:96.544000pt;}
._1b{width:98.560000pt;}
._1e{width:121.088000pt;}
._29{width:146.922667pt;}
._2b{width:199.786667pt;}
._2c{width:200.768000pt;}
._2d{width:288.704000pt;}
._2e{width:289.876053pt;}
.fs6{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:12.640000pt;}
.y5b{bottom:12.800000pt;}
.y95{bottom:16.640000pt;}
.y51{bottom:16.800000pt;}
.y97{bottom:19.586667pt;}
.y98{bottom:20.666667pt;}
.y94{bottom:26.880000pt;}
.y96{bottom:32.706667pt;}
.y93{bottom:37.120000pt;}
.y90{bottom:39.266667pt;}
.y55{bottom:40.320000pt;}
.y6{bottom:42.080000pt;}
.y50{bottom:44.480000pt;}
.y8f{bottom:49.506667pt;}
.y92{bottom:56.733333pt;}
.y5{bottom:60.640000pt;}
.y91{bottom:66.973333pt;}
.y54{bottom:67.840000pt;}
.y5a{bottom:68.000000pt;}
.y8e{bottom:69.120000pt;}
.y4{bottom:79.072000pt;}
.y8d{bottom:79.360000pt;}
.y8c{bottom:89.600000pt;}
.y59{bottom:95.520000pt;}
.y53{bottom:95.546667pt;}
.y8b{bottom:109.213333pt;}
.y8a{bottom:119.453333pt;}
.y6c{bottom:122.112000pt;}
.y58{bottom:123.200000pt;}
.y24{bottom:126.752000pt;}
.y7d{bottom:127.072000pt;}
.y7f{bottom:131.066667pt;}
.yc1{bottom:138.266667pt;}
.y5e{bottom:142.266667pt;}
.y42{bottom:142.906667pt;}
.ya8{bottom:143.866667pt;}
.y89{bottom:144.226667pt;}
.yd7{bottom:145.146667pt;}
.y6b{bottom:149.786667pt;}
.y5d{bottom:150.760000pt;}
.y23{bottom:154.426667pt;}
.y88{bottom:154.466667pt;}
.y7c{bottom:154.586667pt;}
.y5c{bottom:157.786667pt;}
.yc0{bottom:165.946667pt;}
.y41{bottom:170.426667pt;}
.ya7{bottom:172.666667pt;}
.yd6{bottom:172.826667pt;}
.y85{bottom:174.080000pt;}
.y6a{bottom:177.306667pt;}
.y87{bottom:179.200000pt;}
.y22{bottom:181.946667pt;}
.y7b{bottom:182.106667pt;}
.y84{bottom:184.320000pt;}
.y86{bottom:189.440000pt;}
.ybf{bottom:193.466667pt;}
.y83{bottom:194.560000pt;}
.y40{bottom:200.026667pt;}
.yd5{bottom:200.346667pt;}
.ya6{bottom:201.466667pt;}
.y69{bottom:204.986667pt;}
.y82{bottom:209.093333pt;}
.y21{bottom:209.626667pt;}
.y7a{bottom:210.906667pt;}
.y81{bottom:219.333333pt;}
.y3f{bottom:220.666667pt;}
.ybe{bottom:220.986667pt;}
.ye1{bottom:227.866667pt;}
.yd4{bottom:228.026667pt;}
.ya5{bottom:229.146667pt;}
.y80{bottom:229.573333pt;}
.y68{bottom:232.506667pt;}
.y20{bottom:237.146667pt;}
.y79{bottom:239.546667pt;}
.ybd{bottom:249.626667pt;}
.yd3{bottom:255.546667pt;}
.ya4{bottom:256.666667pt;}
.y67{bottom:260.186667pt;}
.y3e{bottom:264.666667pt;}
.y1f{bottom:266.746667pt;}
.y78{bottom:268.346667pt;}
.ybc{bottom:278.426667pt;}
.ye0{bottom:283.066667pt;}
.yd2{bottom:283.226667pt;}
.ya3{bottom:284.346667pt;}
.y66{bottom:287.706667pt;}
.y1e{bottom:291.706667pt;}
.y3d{bottom:292.346667pt;}
.y77{bottom:297.146667pt;}
.ybb{bottom:307.266667pt;}
.yd1{bottom:310.786667pt;}
.ya2{bottom:311.746667pt;}
.ydf{bottom:312.866667pt;}
.y1d{bottom:313.026667pt;}
.y65{bottom:315.426667pt;}
.y3c{bottom:319.906667pt;}
.y57{bottom:324.066667pt;}
.y76{bottom:325.826667pt;}
.yba{bottom:336.066667pt;}
.ye4{bottom:338.306667pt;}
.yd0{bottom:338.466667pt;}
.ya1{bottom:340.546667pt;}
.y1c{bottom:342.786667pt;}
.y64{bottom:342.946667pt;}
.y3b{bottom:347.586667pt;}
.y75{bottom:354.786667pt;}
.yb9{bottom:363.746667pt;}
.ycf{bottom:365.986667pt;}
.ya0{bottom:369.346667pt;}
.y63{bottom:370.626667pt;}
.y1b{bottom:372.866667pt;}
.y3a{bottom:375.106667pt;}
.y74{bottom:382.306667pt;}
.yb8{bottom:391.266667pt;}
.yce{bottom:393.506667pt;}
.y9f{bottom:397.986667pt;}
.y62{bottom:398.146667pt;}
.y1a{bottom:400.546667pt;}
.y39{bottom:402.786667pt;}
.y73{bottom:409.986667pt;}
.yb7{bottom:418.946667pt;}
.ycd{bottom:421.186667pt;}
.y61{bottom:425.826667pt;}
.y9e{bottom:426.946667pt;}
.y19{bottom:428.066667pt;}
.y38{bottom:430.306667pt;}
.y72{bottom:437.506667pt;}
.yb6{bottom:446.306667pt;}
.ycc{bottom:448.706667pt;}
.ye3{bottom:450.786667pt;}
.y60{bottom:453.346667pt;}
.y9d{bottom:454.466667pt;}
.y18{bottom:455.586667pt;}
.y37{bottom:457.986667pt;}
.y52{bottom:462.786667pt;}
.y71{bottom:465.186667pt;}
.yb5{bottom:475.106667pt;}
.ycb{bottom:476.386667pt;}
.yde{bottom:481.026667pt;}
.y9c{bottom:482.146667pt;}
.y5f{bottom:482.946667pt;}
.y17{bottom:483.266667pt;}
.y36{bottom:485.506667pt;}
.y70{bottom:492.706667pt;}
.yb4{bottom:503.906667pt;}
.ydd{bottom:508.546667pt;}
.y9b{bottom:509.666667pt;}
.y16{bottom:510.786667pt;}
.y35{bottom:513.186667pt;}
.y6f{bottom:520.386667pt;}
.yca{bottom:531.586667pt;}
.yb3{bottom:532.546667pt;}
.ydc{bottom:536.226667pt;}
.y9a{bottom:537.213333pt;}
.y15{bottom:538.493333pt;}
.y34{bottom:540.733333pt;}
.y6e{bottom:547.933333pt;}
.yc9{bottom:559.133333pt;}
.yb2{bottom:561.373333pt;}
.y7e{bottom:562.880000pt;}
.ydb{bottom:563.773333pt;}
.y14{bottom:566.013333pt;}
.y33{bottom:568.413333pt;}
.y6d{bottom:572.093333pt;}
.y4f{bottom:573.853333pt;}
.yc8{bottom:587.773333pt;}
.yb1{bottom:590.173333pt;}
.yda{bottom:591.453333pt;}
.y13{bottom:593.693333pt;}
.y99{bottom:594.653333pt;}
.y32{bottom:595.933333pt;}
.yc7{bottom:616.573333pt;}
.yb0{bottom:617.853333pt;}
.yd9{bottom:618.973333pt;}
.y12{bottom:621.213333pt;}
.y31{bottom:623.613333pt;}
.yaf{bottom:645.373333pt;}
.y4e{bottom:646.653333pt;}
.y11{bottom:648.893333pt;}
.y30{bottom:651.133333pt;}
.yae{bottom:673.053333pt;}
.y4d{bottom:674.173333pt;}
.y10{bottom:676.413333pt;}
.y2f{bottom:678.813333pt;}
.yad{bottom:700.573333pt;}
.y4c{bottom:701.693333pt;}
.yc6{bottom:701.853333pt;}
.yf{bottom:704.093333pt;}
.y2e{bottom:706.333333pt;}
.yac{bottom:728.093333pt;}
.y4b{bottom:729.373333pt;}
.ye{bottom:731.613333pt;}
.y2d{bottom:734.013333pt;}
.y4a{bottom:756.893333pt;}
.yc5{bottom:757.053333pt;}
.ye2{bottom:758.973333pt;}
.yd{bottom:761.373333pt;}
.y2c{bottom:761.533333pt;}
.y49{bottom:784.613333pt;}
.yab{bottom:785.573333pt;}
.yd8{bottom:786.693333pt;}
.y2b{bottom:789.253333pt;}
.yc{bottom:790.373333pt;}
.y48{bottom:812.133333pt;}
.yaa{bottom:814.373333pt;}
.yb{bottom:815.653333pt;}
.y2a{bottom:816.773333pt;}
.y47{bottom:839.813333pt;}
.yc4{bottom:840.773333pt;}
.ya9{bottom:843.173333pt;}
.y29{bottom:844.453333pt;}
.ya{bottom:847.013333pt;}
.y46{bottom:867.333333pt;}
.y9{bottom:869.413333pt;}
.yc3{bottom:869.573333pt;}
.y28{bottom:871.973333pt;}
.y45{bottom:895.013333pt;}
.yc2{bottom:898.373333pt;}
.y27{bottom:899.653333pt;}
.y8{bottom:905.733333pt;}
.y44{bottom:922.533333pt;}
.y26{bottom:927.173333pt;}
.y7{bottom:947.173333pt;}
.y43{bottom:952.293333pt;}
.y25{bottom:954.853333pt;}
.y3{bottom:974.213333pt;}
.y2{bottom:989.253333pt;}
.y1{bottom:1069.760000pt;}
.hc{height:11.570312pt;}
.h6{height:28.238750pt;}
.h15{height:32.171875pt;}
.h17{height:37.164062pt;}
.h14{height:41.601562pt;}
.h7{height:44.792500pt;}
.hd{height:45.156250pt;}
.h3{height:46.281250pt;}
.h12{height:46.593750pt;}
.ha{height:48.687500pt;}
.h9{height:50.712187pt;}
.h8{height:52.832812pt;}
.hb{height:54.149062pt;}
.h2{height:55.468750pt;}
.he{height:59.360000pt;}
.h5{height:60.747188pt;}
.h4{height:67.734375pt;}
.h16{height:88.204062pt;}
.hf{height:110.432000pt;}
.h10{height:138.080000pt;}
.h11{height:165.626667pt;}
.h13{height:241.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:82.720000pt;}
.w4{width:160.026667pt;}
.w5{width:169.466667pt;}
.w6{width:212.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.xb{left:83.392000pt;}
.x28{left:89.951988pt;}
.x1{left:96.031988pt;}
.x26{left:102.111988pt;}
.x27{left:114.111988pt;}
.x11{left:120.031988pt;}
.x10{left:132.031988pt;}
.x13{left:138.746655pt;}
.x4{left:141.786655pt;}
.x7{left:158.746655pt;}
.x14{left:159.813322pt;}
.xd{left:166.746667pt;}
.x8{left:211.706655pt;}
.xa{left:214.586655pt;}
.x5{left:226.426655pt;}
.x16{left:229.186655pt;}
.x1d{left:230.626655pt;}
.x1b{left:234.306655pt;}
.x15{left:236.706655pt;}
.x18{left:239.106655pt;}
.x1c{left:241.346655pt;}
.x9{left:246.786655pt;}
.x1e{left:251.106655pt;}
.x17{left:254.146655pt;}
.x1f{left:255.586655pt;}
.x6{left:259.266655pt;}
.xe{left:327.426667pt;}
.x19{left:339.706655pt;}
.x23{left:345.893322pt;}
.x1a{left:347.066655pt;}
.x22{left:349.573322pt;}
.x20{left:352.773322pt;}
.x21{left:368.453322pt;}
.x24{left:475.613322pt;}
.xf{left:497.693333pt;}
.x25{left:573.346655pt;}
.x3{left:615.653322pt;}
.x12{left:684.293322pt;}
.x2{left:698.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; }
  