
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_65ebf5fafbf19e2e0561f316.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_4159e2884d11d6187eb7a590.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_25eef40b3c780beadb633bef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_4a32fa8b0b4f1325e696cf78.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_fde41e91ac0e9ee0e50955b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_fa48d6e5f4e01ac7fd7ee0c2.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b636cb5abb250c14dd64f0c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.124200px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls12{letter-spacing:-0.038880px;}
.ls13{letter-spacing:-0.018360px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.187520px;}
.wsa{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.102200px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._9{margin-left:-3.426840px;}
._c{margin-left:-2.188080px;}
._0{margin-left:-1.110000px;}
._2{width:1.061172px;}
._5{width:2.622000px;}
._3{width:3.787800px;}
._1{width:5.573880px;}
._6{width:7.248840px;}
._8{width:8.832599px;}
._7{width:9.859800px;}
._a{width:11.543040px;}
._4{width:15.248640px;}
._e{width:16.418160px;}
._d{width:18.697320px;}
._b{width:20.561040px;}
._f{width:22.244400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y62{bottom:4.500000px;}
.y61{bottom:6.750000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y57{bottom:119.100000px;}
.y6a{bottom:123.510000px;}
.yb5{bottom:127.290000px;}
.y42{bottom:135.660000px;}
.y56{bottom:136.740000px;}
.y87{bottom:138.900000px;}
.y69{bottom:141.960000px;}
.yd8{bottom:142.680000px;}
.y41{bottom:153.210000px;}
.y86{bottom:156.450000px;}
.y24{bottom:158.790000px;}
.yd7{bottom:160.320000px;}
.yb4{bottom:162.930000px;}
.y55{bottom:163.290000px;}
.y68{bottom:169.410000px;}
.y40{bottom:171.570000px;}
.y85{bottom:174.900000px;}
.y23{bottom:176.340000px;}
.yb3{bottom:180.480000px;}
.yd6{bottom:186.870000px;}
.y3f{bottom:190.020000px;}
.y22{bottom:193.980000px;}
.yb2{bottom:198.120000px;}
.y54{bottom:198.930000px;}
.y84{bottom:202.260000px;}
.yd5{bottom:204.420000px;}
.y67{bottom:204.960000px;}
.y3e{bottom:207.570000px;}
.y21{bottom:211.530000px;}
.yb1{bottom:215.670000px;}
.yd4{bottom:222.060000px;}
.y53{bottom:225.480000px;}
.yb0{bottom:233.220000px;}
.y83{bottom:234.930000px;}
.y3d{bottom:235.020000px;}
.y66{bottom:237.180000px;}
.y20{bottom:247.170000px;}
.yd3{bottom:248.610000px;}
.yaf{bottom:250.860000px;}
.y82{bottom:252.480000px;}
.y52{bottom:261.030000px;}
.y1f{bottom:264.720000px;}
.yd2{bottom:266.250000px;}
.yae{bottom:268.410000px;}
.y3c{bottom:270.660000px;}
.y81{bottom:270.930000px;}
.y1e{bottom:282.270000px;}
.yd1{bottom:283.800000px;}
.yad{bottom:286.050000px;}
.y80{bottom:288.480000px;}
.y51{bottom:296.580000px;}
.y3b{bottom:297.210000px;}
.y1d{bottom:299.910000px;}
.yac{bottom:303.600000px;}
.yd0{bottom:310.350000px;}
.y7f{bottom:315.840000px;}
.y1c{bottom:317.460000px;}
.ycf{bottom:327.990000px;}
.y50{bottom:329.160000px;}
.y3a{bottom:332.760000px;}
.yab{bottom:339.150000px;}
.y1b{bottom:344.370000px;}
.yce{bottom:345.540000px;}
.y4f{bottom:347.610000px;}
.y7e{bottom:348.510000px;}
.yaa{bottom:356.790000px;}
.y39{bottom:364.980000px;}
.ycd{bottom:372.090000px;}
.ya9{bottom:374.340000px;}
.y4e{bottom:384.060000px;}
.ycc{bottom:389.730000px;}
.ya8{bottom:391.980000px;}
.y1a{bottom:392.700000px;}
.y79{bottom:409.170000px;}
.ya7{bottom:409.530000px;}
.y19{bottom:410.610000px;}
.y7d{bottom:416.280000px;}
.y4d{bottom:419.610000px;}
.ycb{bottom:433.920000px;}
.y78{bottom:444.720000px;}
.ya6{bottom:445.080000px;}
.y18{bottom:447.600000px;}
.yca{bottom:451.470000px;}
.y4c{bottom:451.830000px;}
.y77{bottom:462.360000px;}
.ya5{bottom:462.720000px;}
.y17{bottom:465.150000px;}
.yc9{bottom:478.050000px;}
.ya4{bottom:480.300000px;}
.y16{bottom:482.820000px;}
.y76{bottom:494.520000px;}
.yc8{bottom:495.690000px;}
.y15{bottom:500.370000px;}
.ya3{bottom:515.940000px;}
.yc7{bottom:522.240000px;}
.ya2{bottom:533.490000px;}
.y14{bottom:535.920000px;}
.y65{bottom:537.630000px;}
.yc6{bottom:539.880000px;}
.ya1{bottom:551.040000px;}
.y13{bottom:553.560000px;}
.y64{bottom:564.180000px;}
.yc5{bottom:566.430000px;}
.ya0{bottom:568.680000px;}
.yc4{bottom:583.980000px;}
.y12{bottom:589.110000px;}
.y63{bottom:599.820000px;}
.y9f{bottom:604.230000px;}
.y11{bottom:606.750000px;}
.yc3{bottom:610.620000px;}
.y9e{bottom:621.870000px;}
.y60{bottom:623.040000px;}
.y10{bottom:624.300000px;}
.yc2{bottom:628.170000px;}
.y9d{bottom:639.420000px;}
.yf{bottom:641.850000px;}
.yc1{bottom:654.810000px;}
.y9c{bottom:656.970000px;}
.y38{bottom:667.680000px;}
.yc0{bottom:672.360000px;}
.ye{bottom:677.490000px;}
.y37{bottom:685.230000px;}
.y9b{bottom:692.610000px;}
.y7c{bottom:694.140000px;}
.yd{bottom:695.040000px;}
.ybf{bottom:699.270000px;}
.y9a{bottom:710.160000px;}
.yc{bottom:712.680000px;}
.y36{bottom:720.780000px;}
.y99{bottom:727.800000px;}
.yb{bottom:730.230000px;}
.y4b{bottom:738.780000px;}
.y98{bottom:745.350000px;}
.y35{bottom:747.420000px;}
.ybe{bottom:747.510000px;}
.y4a{bottom:756.330000px;}
.ya{bottom:757.140000px;}
.y97{bottom:762.900000px;}
.ybd{bottom:774.420000px;}
.y34{bottom:782.970000px;}
.y49{bottom:791.970000px;}
.y96{bottom:798.540000px;}
.y9{bottom:805.380000px;}
.y33{bottom:809.520000px;}
.ybc{bottom:811.500000px;}
.y95{bottom:816.090000px;}
.y7b{bottom:818.520000px;}
.y48{bottom:824.190000px;}
.y94{bottom:833.640000px;}
.ybb{bottom:838.410000px;}
.y8{bottom:841.200000px;}
.y32{bottom:842.100000px;}
.y7a{bottom:850.740000px;}
.y93{bottom:851.280000px;}
.y31{bottom:860.550000px;}
.yba{bottom:875.760000px;}
.y7{bottom:877.200000px;}
.y92{bottom:878.190000px;}
.y30{bottom:888.000000px;}
.y75{bottom:899.070000px;}
.y6{bottom:913.200000px;}
.y74{bottom:916.620000px;}
.y2f{bottom:923.550000px;}
.yb9{bottom:924.000000px;}
.y91{bottom:926.430000px;}
.y73{bottom:935.070000px;}
.y2e{bottom:941.190000px;}
.yb8{bottom:941.550000px;}
.y90{bottom:943.980000px;}
.y5{bottom:949.290000px;}
.y72{bottom:952.620000px;}
.yb7{bottom:959.190000px;}
.y8f{bottom:962.430000px;}
.y2d{bottom:967.740000px;}
.y5f{bottom:970.620000px;}
.y71{bottom:970.980000px;}
.yb6{bottom:976.740000px;}
.y8e{bottom:979.980000px;}
.y4{bottom:987.630000px;}
.y5e{bottom:988.170000px;}
.y70{bottom:989.430000px;}
.y8d{bottom:998.430000px;}
.y2c{bottom:1003.650000px;}
.y5d{bottom:1005.720000px;}
.y6f{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y8c{bottom:1016.820000px;}
.y5c{bottom:1024.200000px;}
.y6e{bottom:1035.270000px;}
.y5b{bottom:1042.650000px;}
.y8b{bottom:1044.270000px;}
.y2b{bottom:1051.920000px;}
.y6d{bottom:1067.850000px;}
.y47{bottom:1068.300000px;}
.y2a{bottom:1069.560000px;}
.y5a{bottom:1070.010000px;}
.y8a{bottom:1076.850000px;}
.y6c{bottom:1085.400000px;}
.y46{bottom:1085.850000px;}
.y89{bottom:1094.400000px;}
.y59{bottom:1102.590000px;}
.y45{bottom:1103.400000px;}
.y6b{bottom:1103.850000px;}
.y29{bottom:1105.110000px;}
.y88{bottom:1112.850000px;}
.y58{bottom:1121.040000px;}
.y44{bottom:1121.850000px;}
.y28{bottom:1122.750000px;}
.y43{bottom:1139.400000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.ha{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:326.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:290.730000px;}
.w4{width:297.480000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x15{left:107.189987px;}
.x1b{left:111.239987px;}
.x7{left:122.039987px;}
.x9{left:136.619987px;}
.xc{left:147.689987px;}
.xd{left:152.550000px;}
.x13{left:161.009987px;}
.x11{left:164.639987px;}
.x6{left:184.079987px;}
.x2{left:211.079987px;}
.x1a{left:213.509987px;}
.xe{left:282.630000px;}
.x10{left:289.380000px;}
.x16{left:376.319987px;}
.x18{left:383.519987px;}
.xf{left:443.280000px;}
.xa{left:473.609987px;}
.xb{left:618.809987px;}
.x5{left:626.639987px;}
.x14{left:640.139987px;}
.x17{left:658.139987px;}
.x19{left:663.989987px;}
.x8{left:752.639987px;}
.x3{left:800.339987px;}
.x12{left:802.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.110400pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls12{letter-spacing:-0.034560pt;}
.ls13{letter-spacing:-0.016320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.722240pt;}
.wsa{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.646400pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._9{margin-left:-3.046080pt;}
._c{margin-left:-1.944960pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.943264pt;}
._5{width:2.330667pt;}
._3{width:3.366934pt;}
._1{width:4.954560pt;}
._6{width:6.443413pt;}
._8{width:7.851199pt;}
._7{width:8.764267pt;}
._a{width:10.260480pt;}
._4{width:13.554347pt;}
._e{width:14.593920pt;}
._d{width:16.619840pt;}
._b{width:18.276480pt;}
._f{width:19.772800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:4.000000pt;}
.y61{bottom:6.000000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y57{bottom:105.866667pt;}
.y6a{bottom:109.786667pt;}
.yb5{bottom:113.146667pt;}
.y42{bottom:120.586667pt;}
.y56{bottom:121.546667pt;}
.y87{bottom:123.466667pt;}
.y69{bottom:126.186667pt;}
.yd8{bottom:126.826667pt;}
.y41{bottom:136.186667pt;}
.y86{bottom:139.066667pt;}
.y24{bottom:141.146667pt;}
.yd7{bottom:142.506667pt;}
.yb4{bottom:144.826667pt;}
.y55{bottom:145.146667pt;}
.y68{bottom:150.586667pt;}
.y40{bottom:152.506667pt;}
.y85{bottom:155.466667pt;}
.y23{bottom:156.746667pt;}
.yb3{bottom:160.426667pt;}
.yd6{bottom:166.106667pt;}
.y3f{bottom:168.906667pt;}
.y22{bottom:172.426667pt;}
.yb2{bottom:176.106667pt;}
.y54{bottom:176.826667pt;}
.y84{bottom:179.786667pt;}
.yd5{bottom:181.706667pt;}
.y67{bottom:182.186667pt;}
.y3e{bottom:184.506667pt;}
.y21{bottom:188.026667pt;}
.yb1{bottom:191.706667pt;}
.yd4{bottom:197.386667pt;}
.y53{bottom:200.426667pt;}
.yb0{bottom:207.306667pt;}
.y83{bottom:208.826667pt;}
.y3d{bottom:208.906667pt;}
.y66{bottom:210.826667pt;}
.y20{bottom:219.706667pt;}
.yd3{bottom:220.986667pt;}
.yaf{bottom:222.986667pt;}
.y82{bottom:224.426667pt;}
.y52{bottom:232.026667pt;}
.y1f{bottom:235.306667pt;}
.yd2{bottom:236.666667pt;}
.yae{bottom:238.586667pt;}
.y3c{bottom:240.586667pt;}
.y81{bottom:240.826667pt;}
.y1e{bottom:250.906667pt;}
.yd1{bottom:252.266667pt;}
.yad{bottom:254.266667pt;}
.y80{bottom:256.426667pt;}
.y51{bottom:263.626667pt;}
.y3b{bottom:264.186667pt;}
.y1d{bottom:266.586667pt;}
.yac{bottom:269.866667pt;}
.yd0{bottom:275.866667pt;}
.y7f{bottom:280.746667pt;}
.y1c{bottom:282.186667pt;}
.ycf{bottom:291.546667pt;}
.y50{bottom:292.586667pt;}
.y3a{bottom:295.786667pt;}
.yab{bottom:301.466667pt;}
.y1b{bottom:306.106667pt;}
.yce{bottom:307.146667pt;}
.y4f{bottom:308.986667pt;}
.y7e{bottom:309.786667pt;}
.yaa{bottom:317.146667pt;}
.y39{bottom:324.426667pt;}
.ycd{bottom:330.746667pt;}
.ya9{bottom:332.746667pt;}
.y4e{bottom:341.386667pt;}
.ycc{bottom:346.426667pt;}
.ya8{bottom:348.426667pt;}
.y1a{bottom:349.066667pt;}
.y79{bottom:363.706667pt;}
.ya7{bottom:364.026667pt;}
.y19{bottom:364.986667pt;}
.y7d{bottom:370.026667pt;}
.y4d{bottom:372.986667pt;}
.ycb{bottom:385.706667pt;}
.y78{bottom:395.306667pt;}
.ya6{bottom:395.626667pt;}
.y18{bottom:397.866667pt;}
.yca{bottom:401.306667pt;}
.y4c{bottom:401.626667pt;}
.y77{bottom:410.986667pt;}
.ya5{bottom:411.306667pt;}
.y17{bottom:413.466667pt;}
.yc9{bottom:424.933333pt;}
.ya4{bottom:426.933333pt;}
.y16{bottom:429.173333pt;}
.y76{bottom:439.573333pt;}
.yc8{bottom:440.613333pt;}
.y15{bottom:444.773333pt;}
.ya3{bottom:458.613333pt;}
.yc7{bottom:464.213333pt;}
.ya2{bottom:474.213333pt;}
.y14{bottom:476.373333pt;}
.y65{bottom:477.893333pt;}
.yc6{bottom:479.893333pt;}
.ya1{bottom:489.813333pt;}
.y13{bottom:492.053333pt;}
.y64{bottom:501.493333pt;}
.yc5{bottom:503.493333pt;}
.ya0{bottom:505.493333pt;}
.yc4{bottom:519.093333pt;}
.y12{bottom:523.653333pt;}
.y63{bottom:533.173333pt;}
.y9f{bottom:537.093333pt;}
.y11{bottom:539.333333pt;}
.yc3{bottom:542.773333pt;}
.y9e{bottom:552.773333pt;}
.y60{bottom:553.813333pt;}
.y10{bottom:554.933333pt;}
.yc2{bottom:558.373333pt;}
.y9d{bottom:568.373333pt;}
.yf{bottom:570.533333pt;}
.yc1{bottom:582.053333pt;}
.y9c{bottom:583.973333pt;}
.y38{bottom:593.493333pt;}
.yc0{bottom:597.653333pt;}
.ye{bottom:602.213333pt;}
.y37{bottom:609.093333pt;}
.y9b{bottom:615.653333pt;}
.y7c{bottom:617.013333pt;}
.yd{bottom:617.813333pt;}
.ybf{bottom:621.573333pt;}
.y9a{bottom:631.253333pt;}
.yc{bottom:633.493333pt;}
.y36{bottom:640.693333pt;}
.y99{bottom:646.933333pt;}
.yb{bottom:649.093333pt;}
.y4b{bottom:656.693333pt;}
.y98{bottom:662.533333pt;}
.y35{bottom:664.373333pt;}
.ybe{bottom:664.453333pt;}
.y4a{bottom:672.293333pt;}
.ya{bottom:673.013333pt;}
.y97{bottom:678.133333pt;}
.ybd{bottom:688.373333pt;}
.y34{bottom:695.973333pt;}
.y49{bottom:703.973333pt;}
.y96{bottom:709.813333pt;}
.y9{bottom:715.893333pt;}
.y33{bottom:719.573333pt;}
.ybc{bottom:721.333333pt;}
.y95{bottom:725.413333pt;}
.y7b{bottom:727.573333pt;}
.y48{bottom:732.613333pt;}
.y94{bottom:741.013333pt;}
.ybb{bottom:745.253333pt;}
.y8{bottom:747.733333pt;}
.y32{bottom:748.533333pt;}
.y7a{bottom:756.213333pt;}
.y93{bottom:756.693333pt;}
.y31{bottom:764.933333pt;}
.yba{bottom:778.453333pt;}
.y7{bottom:779.733333pt;}
.y92{bottom:780.613333pt;}
.y30{bottom:789.333333pt;}
.y75{bottom:799.173333pt;}
.y6{bottom:811.733333pt;}
.y74{bottom:814.773333pt;}
.y2f{bottom:820.933333pt;}
.yb9{bottom:821.333333pt;}
.y91{bottom:823.493333pt;}
.y73{bottom:831.173333pt;}
.y2e{bottom:836.613333pt;}
.yb8{bottom:836.933333pt;}
.y90{bottom:839.093333pt;}
.y5{bottom:843.813333pt;}
.y72{bottom:846.773333pt;}
.yb7{bottom:852.613333pt;}
.y8f{bottom:855.493333pt;}
.y2d{bottom:860.213333pt;}
.y5f{bottom:862.773333pt;}
.y71{bottom:863.093333pt;}
.yb6{bottom:868.213333pt;}
.y8e{bottom:871.093333pt;}
.y4{bottom:877.893333pt;}
.y5e{bottom:878.373333pt;}
.y70{bottom:879.493333pt;}
.y8d{bottom:887.493333pt;}
.y2c{bottom:892.133333pt;}
.y5d{bottom:893.973333pt;}
.y6f{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y8c{bottom:903.840000pt;}
.y5c{bottom:910.400000pt;}
.y6e{bottom:920.240000pt;}
.y5b{bottom:926.800000pt;}
.y8b{bottom:928.240000pt;}
.y2b{bottom:935.040000pt;}
.y6d{bottom:949.200000pt;}
.y47{bottom:949.600000pt;}
.y2a{bottom:950.720000pt;}
.y5a{bottom:951.120000pt;}
.y8a{bottom:957.200000pt;}
.y6c{bottom:964.800000pt;}
.y46{bottom:965.200000pt;}
.y89{bottom:972.800000pt;}
.y59{bottom:980.080000pt;}
.y45{bottom:980.800000pt;}
.y6b{bottom:981.200000pt;}
.y29{bottom:982.320000pt;}
.y88{bottom:989.200000pt;}
.y58{bottom:996.480000pt;}
.y44{bottom:997.200000pt;}
.y28{bottom:998.000000pt;}
.y43{bottom:1012.800000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.ha{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:290.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:258.426667pt;}
.w4{width:264.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x15{left:95.279988pt;}
.x1b{left:98.879988pt;}
.x7{left:108.479988pt;}
.x9{left:121.439988pt;}
.xc{left:131.279988pt;}
.xd{left:135.600000pt;}
.x13{left:143.119988pt;}
.x11{left:146.346655pt;}
.x6{left:163.626655pt;}
.x2{left:187.626655pt;}
.x1a{left:189.786655pt;}
.xe{left:251.226667pt;}
.x10{left:257.226667pt;}
.x16{left:334.506655pt;}
.x18{left:340.906655pt;}
.xf{left:394.026667pt;}
.xa{left:420.986655pt;}
.xb{left:550.053322pt;}
.x5{left:557.013322pt;}
.x14{left:569.013322pt;}
.x17{left:585.013322pt;}
.x19{left:590.213322pt;}
.x8{left:669.013322pt;}
.x3{left:711.413322pt;}
.x12{left:713.013322pt;}
}




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