
    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_8574feec34f846ec52d2f202.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf3dd417f588455256c3774f.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_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ddd45a81c0d1296201b3af9.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_7dd5371ed0d660f617515046.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_014bbf4d4a082eb0a9be85e2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.494000px;}
.lsd{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.513600px;}
.ls13{letter-spacing:6.660000px;}
.ls12{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-4.682400px;}
._b{margin-left:-3.507360px;}
._14{margin-left:-2.262240px;}
._1{margin-left:-1.260000px;}
._0{width:1.020000px;}
._18{width:2.105760px;}
._10{width:3.107760px;}
._16{width:4.130640px;}
._17{width:5.156400px;}
._12{width:6.293760px;}
._11{width:7.311120px;}
._1b{width:8.594640px;}
._15{width:9.680880px;}
._6{width:10.800000px;}
._19{width:12.618240px;}
._1c{width:13.804560px;}
._1d{width:16.314480px;}
._1e{width:17.565360px;}
._13{width:20.019600px;}
._1f{width:21.110880px;}
._21{width:22.206960px;}
._29{width:26.115120px;}
._2a{width:28.558560px;}
._28{width:30.973680px;}
._26{width:32.231520px;}
._27{width:33.258480px;}
._22{width:44.158560px;}
._20{width:51.333840px;}
._24{width:54.736080px;}
._23{width:55.756080px;}
._7{width:77.004960px;}
._25{width:114.376560px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._2{width:255.692640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.526240px;}
._9{width:604.544160px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.ye9{bottom:105.480000px;}
.y6a{bottom:108.540000px;}
.y3b{bottom:113.400000px;}
.yec{bottom:115.380000px;}
.yc1{bottom:117.540000px;}
.y8d{bottom:119.340000px;}
.yae{bottom:121.320000px;}
.ye8{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.y69{bottom:128.340000px;}
.y3a{bottom:133.380000px;}
.yeb{bottom:135.180000px;}
.yc0{bottom:137.340000px;}
.y8c{bottom:139.320000px;}
.yad{bottom:141.120000px;}
.ye7{bottom:145.260000px;}
.y68{bottom:148.320000px;}
.y39{bottom:153.210000px;}
.yea{bottom:155.010000px;}
.ybf{bottom:157.350000px;}
.y8b{bottom:159.150000px;}
.yac{bottom:160.950000px;}
.ye6{bottom:165.090000px;}
.y67{bottom:168.150000px;}
.y38{bottom:173.010000px;}
.ybe{bottom:177.150000px;}
.y8a{bottom:178.950000px;}
.yab{bottom:180.750000px;}
.ye5{bottom:184.890000px;}
.y66{bottom:187.950000px;}
.y37{bottom:192.810000px;}
.ybd{bottom:196.950000px;}
.y89{bottom:198.750000px;}
.yaa{bottom:200.550000px;}
.ye4{bottom:204.690000px;}
.y65{bottom:207.750000px;}
.y36{bottom:212.610000px;}
.ybc{bottom:216.750000px;}
.y88{bottom:218.550000px;}
.ya9{bottom:220.530000px;}
.ye3{bottom:224.490000px;}
.y64{bottom:227.550000px;}
.y35{bottom:232.590000px;}
.ybb{bottom:236.550000px;}
.y87{bottom:238.530000px;}
.ya8{bottom:240.330000px;}
.ye2{bottom:244.470000px;}
.y63{bottom:247.530000px;}
.y34{bottom:252.390000px;}
.yba{bottom:256.530000px;}
.y86{bottom:258.330000px;}
.ya7{bottom:260.130000px;}
.ye1{bottom:264.270000px;}
.y62{bottom:267.330000px;}
.y33{bottom:272.190000px;}
.yb9{bottom:276.330000px;}
.y85{bottom:278.130000px;}
.ya6{bottom:279.930000px;}
.ye0{bottom:284.070000px;}
.y61{bottom:287.130000px;}
.y32{bottom:291.990000px;}
.yb8{bottom:296.130000px;}
.y84{bottom:297.930000px;}
.ya5{bottom:299.730000px;}
.ydf{bottom:303.870000px;}
.y60{bottom:306.930000px;}
.y31{bottom:311.790000px;}
.yb7{bottom:315.930000px;}
.y83{bottom:317.730000px;}
.ya4{bottom:319.710000px;}
.yde{bottom:323.670000px;}
.y5f{bottom:326.730000px;}
.y30{bottom:331.770000px;}
.yb6{bottom:335.730000px;}
.y82{bottom:337.710000px;}
.ya3{bottom:339.510000px;}
.ydd{bottom:343.650000px;}
.y5e{bottom:346.710000px;}
.y2f{bottom:351.570000px;}
.yb5{bottom:355.710000px;}
.y81{bottom:357.510000px;}
.ya2{bottom:359.310000px;}
.ydc{bottom:363.450000px;}
.y5d{bottom:366.510000px;}
.y2e{bottom:371.370000px;}
.yb4{bottom:375.510000px;}
.y80{bottom:377.310000px;}
.ya1{bottom:379.110000px;}
.ydb{bottom:380.730000px;}
.y5c{bottom:386.310000px;}
.y2d{bottom:391.170000px;}
.yb3{bottom:395.310000px;}
.y7f{bottom:397.110000px;}
.yda{bottom:398.010000px;}
.y5b{bottom:406.155000px;}
.ya0{bottom:407.955000px;}
.y2c{bottom:411.015000px;}
.yb2{bottom:415.155000px;}
.y7e{bottom:416.955000px;}
.yd9{bottom:417.855000px;}
.y5a{bottom:425.955000px;}
.y9f{bottom:427.935000px;}
.y2b{bottom:430.995000px;}
.yb1{bottom:434.955000px;}
.y7d{bottom:436.935000px;}
.yd8{bottom:437.655000px;}
.y59{bottom:445.935000px;}
.y9e{bottom:447.735000px;}
.y2a{bottom:450.795000px;}
.yb0{bottom:454.935000px;}
.y7c{bottom:456.735000px;}
.yd7{bottom:457.455000px;}
.y58{bottom:465.735000px;}
.y9d{bottom:467.535000px;}
.y29{bottom:470.595000px;}
.yaf{bottom:474.735000px;}
.y7b{bottom:476.535000px;}
.yd6{bottom:477.255000px;}
.y57{bottom:485.535000px;}
.y9c{bottom:487.335000px;}
.y28{bottom:490.395000px;}
.y6e{bottom:494.535000px;}
.y7a{bottom:496.335000px;}
.yd5{bottom:497.055000px;}
.y56{bottom:505.335000px;}
.y9b{bottom:507.135000px;}
.y27{bottom:510.195000px;}
.y6d{bottom:514.335000px;}
.y79{bottom:516.135000px;}
.yd4{bottom:517.035000px;}
.y55{bottom:525.135000px;}
.y9a{bottom:527.115000px;}
.y26{bottom:530.175000px;}
.y6c{bottom:534.135000px;}
.y78{bottom:536.115000px;}
.yd3{bottom:536.835000px;}
.y54{bottom:545.115000px;}
.y99{bottom:546.915000px;}
.y25{bottom:549.975000px;}
.y6b{bottom:554.115000px;}
.y77{bottom:555.915000px;}
.yd2{bottom:556.635000px;}
.yc5{bottom:564.915000px;}
.y24{bottom:569.775000px;}
.y53{bottom:573.915000px;}
.y98{bottom:575.715000px;}
.yd1{bottom:576.435000px;}
.y76{bottom:584.715000px;}
.y23{bottom:589.575000px;}
.y52{bottom:593.715000px;}
.y97{bottom:595.515000px;}
.yd0{bottom:596.235000px;}
.y75{bottom:604.515000px;}
.y22{bottom:609.375000px;}
.y51{bottom:613.515000px;}
.y96{bottom:615.315000px;}
.ycf{bottom:616.215000px;}
.y74{bottom:624.315000px;}
.y21{bottom:629.355000px;}
.y50{bottom:633.315000px;}
.y95{bottom:635.295000px;}
.yce{bottom:636.015000px;}
.y73{bottom:644.295000px;}
.y20{bottom:649.185000px;}
.y4f{bottom:653.325000px;}
.y94{bottom:655.125000px;}
.ycd{bottom:655.845000px;}
.y72{bottom:664.125000px;}
.y1f{bottom:668.985000px;}
.y4e{bottom:673.125000px;}
.y93{bottom:674.925000px;}
.ycc{bottom:675.645000px;}
.y71{bottom:683.925000px;}
.y1e{bottom:688.785000px;}
.y4d{bottom:692.925000px;}
.ycb{bottom:695.445000px;}
.y70{bottom:703.725000px;}
.y1d{bottom:708.585000px;}
.y4c{bottom:712.725000px;}
.yca{bottom:715.425000px;}
.y6f{bottom:723.525000px;}
.y1c{bottom:728.565000px;}
.y4b{bottom:732.525000px;}
.yc9{bottom:735.225000px;}
.y92{bottom:743.505000px;}
.y1b{bottom:748.365000px;}
.y4a{bottom:752.505000px;}
.yc8{bottom:755.025000px;}
.y91{bottom:763.305000px;}
.y1a{bottom:768.165000px;}
.y49{bottom:772.305000px;}
.yc7{bottom:774.825000px;}
.y90{bottom:783.105000px;}
.y19{bottom:787.965000px;}
.y48{bottom:792.105000px;}
.yc6{bottom:794.625000px;}
.y8f{bottom:802.905000px;}
.y18{bottom:807.765000px;}
.y47{bottom:811.905000px;}
.y8e{bottom:822.705000px;}
.y17{bottom:827.745000px;}
.y46{bottom:831.705000px;}
.yc4{bottom:842.685000px;}
.y16{bottom:847.545000px;}
.y45{bottom:851.685000px;}
.yc3{bottom:862.485000px;}
.y15{bottom:867.345000px;}
.y44{bottom:871.485000px;}
.yc2{bottom:882.285000px;}
.y14{bottom:887.145000px;}
.y43{bottom:891.285000px;}
.y42{bottom:911.130000px;}
.y13{bottom:912.210000px;}
.y12{bottom:927.510000px;}
.y41{bottom:930.930000px;}
.y11{bottom:948.750000px;}
.y40{bottom:950.910000px;}
.y3f{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y3e{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y3d{bottom:1010.310000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.hb{height:21.780000px;}
.he{height:28.115859px;}
.h7{height:33.480000px;}
.hf{height:42.164648px;}
.hd{height:43.215117px;}
.h11{height:43.506914px;}
.h10{height:45.024258px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w3{width:131.976000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.460000px;}
.x6{left:55.799987px;}
.xc{left:57.419987px;}
.xd{left:70.199987px;}
.xe{left:80.999987px;}
.xa{left:104.975987px;}
.xf{left:108.035987px;}
.x4{left:118.290000px;}
.x9{left:326.594987px;}
.xb{left:338.114987px;}
.x7{left:343.514987px;}
.x8{left:446.504987px;}
.x3{left:707.910000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-1.328000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.456533pt;}
.ls13{letter-spacing:5.920000pt;}
.ls12{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-4.162133pt;}
._b{margin-left:-3.117653pt;}
._14{margin-left:-2.010880pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.906667pt;}
._18{width:1.871787pt;}
._10{width:2.762453pt;}
._16{width:3.671680pt;}
._17{width:4.583467pt;}
._12{width:5.594453pt;}
._11{width:6.498773pt;}
._1b{width:7.639680pt;}
._15{width:8.605227pt;}
._6{width:9.600000pt;}
._19{width:11.216213pt;}
._1c{width:12.270720pt;}
._1d{width:14.501760pt;}
._1e{width:15.613653pt;}
._13{width:17.795200pt;}
._1f{width:18.765227pt;}
._21{width:19.739520pt;}
._29{width:23.213440pt;}
._2a{width:25.385387pt;}
._28{width:27.532160pt;}
._26{width:28.650240pt;}
._27{width:29.563093pt;}
._22{width:39.252053pt;}
._20{width:45.630080pt;}
._24{width:48.654293pt;}
._23{width:49.560960pt;}
._7{width:68.448853pt;}
._25{width:101.668053pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._2{width:227.282347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:394.245547pt;}
._9{width:537.372587pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.ye9{bottom:93.760000pt;}
.y6a{bottom:96.480000pt;}
.y3b{bottom:100.800000pt;}
.yec{bottom:102.560000pt;}
.yc1{bottom:104.480000pt;}
.y8d{bottom:106.080000pt;}
.yae{bottom:107.840000pt;}
.ye8{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.y69{bottom:114.080000pt;}
.y3a{bottom:118.560000pt;}
.yeb{bottom:120.160000pt;}
.yc0{bottom:122.080000pt;}
.y8c{bottom:123.840000pt;}
.yad{bottom:125.440000pt;}
.ye7{bottom:129.120000pt;}
.y68{bottom:131.840000pt;}
.y39{bottom:136.186667pt;}
.yea{bottom:137.786667pt;}
.ybf{bottom:139.866667pt;}
.y8b{bottom:141.466667pt;}
.yac{bottom:143.066667pt;}
.ye6{bottom:146.746667pt;}
.y67{bottom:149.466667pt;}
.y38{bottom:153.786667pt;}
.ybe{bottom:157.466667pt;}
.y8a{bottom:159.066667pt;}
.yab{bottom:160.666667pt;}
.ye5{bottom:164.346667pt;}
.y66{bottom:167.066667pt;}
.y37{bottom:171.386667pt;}
.ybd{bottom:175.066667pt;}
.y89{bottom:176.666667pt;}
.yaa{bottom:178.266667pt;}
.ye4{bottom:181.946667pt;}
.y65{bottom:184.666667pt;}
.y36{bottom:188.986667pt;}
.ybc{bottom:192.666667pt;}
.y88{bottom:194.266667pt;}
.ya9{bottom:196.026667pt;}
.ye3{bottom:199.546667pt;}
.y64{bottom:202.266667pt;}
.y35{bottom:206.746667pt;}
.ybb{bottom:210.266667pt;}
.y87{bottom:212.026667pt;}
.ya8{bottom:213.626667pt;}
.ye2{bottom:217.306667pt;}
.y63{bottom:220.026667pt;}
.y34{bottom:224.346667pt;}
.yba{bottom:228.026667pt;}
.y86{bottom:229.626667pt;}
.ya7{bottom:231.226667pt;}
.ye1{bottom:234.906667pt;}
.y62{bottom:237.626667pt;}
.y33{bottom:241.946667pt;}
.yb9{bottom:245.626667pt;}
.y85{bottom:247.226667pt;}
.ya6{bottom:248.826667pt;}
.ye0{bottom:252.506667pt;}
.y61{bottom:255.226667pt;}
.y32{bottom:259.546667pt;}
.yb8{bottom:263.226667pt;}
.y84{bottom:264.826667pt;}
.ya5{bottom:266.426667pt;}
.ydf{bottom:270.106667pt;}
.y60{bottom:272.826667pt;}
.y31{bottom:277.146667pt;}
.yb7{bottom:280.826667pt;}
.y83{bottom:282.426667pt;}
.ya4{bottom:284.186667pt;}
.yde{bottom:287.706667pt;}
.y5f{bottom:290.426667pt;}
.y30{bottom:294.906667pt;}
.yb6{bottom:298.426667pt;}
.y82{bottom:300.186667pt;}
.ya3{bottom:301.786667pt;}
.ydd{bottom:305.466667pt;}
.y5e{bottom:308.186667pt;}
.y2f{bottom:312.506667pt;}
.yb5{bottom:316.186667pt;}
.y81{bottom:317.786667pt;}
.ya2{bottom:319.386667pt;}
.ydc{bottom:323.066667pt;}
.y5d{bottom:325.786667pt;}
.y2e{bottom:330.106667pt;}
.yb4{bottom:333.786667pt;}
.y80{bottom:335.386667pt;}
.ya1{bottom:336.986667pt;}
.ydb{bottom:338.426667pt;}
.y5c{bottom:343.386667pt;}
.y2d{bottom:347.706667pt;}
.yb3{bottom:351.386667pt;}
.y7f{bottom:352.986667pt;}
.yda{bottom:353.786667pt;}
.y5b{bottom:361.026667pt;}
.ya0{bottom:362.626667pt;}
.y2c{bottom:365.346667pt;}
.yb2{bottom:369.026667pt;}
.y7e{bottom:370.626667pt;}
.yd9{bottom:371.426667pt;}
.y5a{bottom:378.626667pt;}
.y9f{bottom:380.386667pt;}
.y2b{bottom:383.106667pt;}
.yb1{bottom:386.626667pt;}
.y7d{bottom:388.386667pt;}
.yd8{bottom:389.026667pt;}
.y59{bottom:396.386667pt;}
.y9e{bottom:397.986667pt;}
.y2a{bottom:400.706667pt;}
.yb0{bottom:404.386667pt;}
.y7c{bottom:405.986667pt;}
.yd7{bottom:406.626667pt;}
.y58{bottom:413.986667pt;}
.y9d{bottom:415.586667pt;}
.y29{bottom:418.306667pt;}
.yaf{bottom:421.986667pt;}
.y7b{bottom:423.586667pt;}
.yd6{bottom:424.226667pt;}
.y57{bottom:431.586667pt;}
.y9c{bottom:433.186667pt;}
.y28{bottom:435.906667pt;}
.y6e{bottom:439.586667pt;}
.y7a{bottom:441.186667pt;}
.yd5{bottom:441.826667pt;}
.y56{bottom:449.186667pt;}
.y9b{bottom:450.786667pt;}
.y27{bottom:453.506667pt;}
.y6d{bottom:457.186667pt;}
.y79{bottom:458.786667pt;}
.yd4{bottom:459.586667pt;}
.y55{bottom:466.786667pt;}
.y9a{bottom:468.546667pt;}
.y26{bottom:471.266667pt;}
.y6c{bottom:474.786667pt;}
.y78{bottom:476.546667pt;}
.yd3{bottom:477.186667pt;}
.y54{bottom:484.546667pt;}
.y99{bottom:486.146667pt;}
.y25{bottom:488.866667pt;}
.y6b{bottom:492.546667pt;}
.y77{bottom:494.146667pt;}
.yd2{bottom:494.786667pt;}
.yc5{bottom:502.146667pt;}
.y24{bottom:506.466667pt;}
.y53{bottom:510.146667pt;}
.y98{bottom:511.746667pt;}
.yd1{bottom:512.386667pt;}
.y76{bottom:519.746667pt;}
.y23{bottom:524.066667pt;}
.y52{bottom:527.746667pt;}
.y97{bottom:529.346667pt;}
.yd0{bottom:529.986667pt;}
.y75{bottom:537.346667pt;}
.y22{bottom:541.666667pt;}
.y51{bottom:545.346667pt;}
.y96{bottom:546.946667pt;}
.ycf{bottom:547.746667pt;}
.y74{bottom:554.946667pt;}
.y21{bottom:559.426667pt;}
.y50{bottom:562.946667pt;}
.y95{bottom:564.706667pt;}
.yce{bottom:565.346667pt;}
.y73{bottom:572.706667pt;}
.y20{bottom:577.053333pt;}
.y4f{bottom:580.733333pt;}
.y94{bottom:582.333333pt;}
.ycd{bottom:582.973333pt;}
.y72{bottom:590.333333pt;}
.y1f{bottom:594.653333pt;}
.y4e{bottom:598.333333pt;}
.y93{bottom:599.933333pt;}
.ycc{bottom:600.573333pt;}
.y71{bottom:607.933333pt;}
.y1e{bottom:612.253333pt;}
.y4d{bottom:615.933333pt;}
.ycb{bottom:618.173333pt;}
.y70{bottom:625.533333pt;}
.y1d{bottom:629.853333pt;}
.y4c{bottom:633.533333pt;}
.yca{bottom:635.933333pt;}
.y6f{bottom:643.133333pt;}
.y1c{bottom:647.613333pt;}
.y4b{bottom:651.133333pt;}
.yc9{bottom:653.533333pt;}
.y92{bottom:660.893333pt;}
.y1b{bottom:665.213333pt;}
.y4a{bottom:668.893333pt;}
.yc8{bottom:671.133333pt;}
.y91{bottom:678.493333pt;}
.y1a{bottom:682.813333pt;}
.y49{bottom:686.493333pt;}
.yc7{bottom:688.733333pt;}
.y90{bottom:696.093333pt;}
.y19{bottom:700.413333pt;}
.y48{bottom:704.093333pt;}
.yc6{bottom:706.333333pt;}
.y8f{bottom:713.693333pt;}
.y18{bottom:718.013333pt;}
.y47{bottom:721.693333pt;}
.y8e{bottom:731.293333pt;}
.y17{bottom:735.773333pt;}
.y46{bottom:739.293333pt;}
.yc4{bottom:749.053333pt;}
.y16{bottom:753.373333pt;}
.y45{bottom:757.053333pt;}
.yc3{bottom:766.653333pt;}
.y15{bottom:770.973333pt;}
.y44{bottom:774.653333pt;}
.yc2{bottom:784.253333pt;}
.y14{bottom:788.573333pt;}
.y43{bottom:792.253333pt;}
.y42{bottom:809.893333pt;}
.y13{bottom:810.853333pt;}
.y12{bottom:824.453333pt;}
.y41{bottom:827.493333pt;}
.y11{bottom:843.333333pt;}
.y40{bottom:845.253333pt;}
.y3f{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y3e{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y3d{bottom:898.053333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.hb{height:19.360000pt;}
.he{height:24.991875pt;}
.h7{height:29.760000pt;}
.hf{height:37.479688pt;}
.hd{height:38.413438pt;}
.h11{height:38.672812pt;}
.h10{height:40.021563pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w3{width:117.312000pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.520000pt;}
.x6{left:49.599988pt;}
.xc{left:51.039988pt;}
.xd{left:62.399988pt;}
.xe{left:71.999988pt;}
.xa{left:93.311988pt;}
.xf{left:96.031988pt;}
.x4{left:105.146667pt;}
.x9{left:290.306655pt;}
.xb{left:300.546655pt;}
.x7{left:305.346655pt;}
.x8{left:396.893322pt;}
.x3{left:629.253333pt;}
.x5{left:737.280000pt;}
}




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