
    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_188611afc83d056763a6540c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee2a4ec93352ca15c7b74d45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2f08f47274be8c241cb814f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_bdf2945e6b427ea0bd457109.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9ca7dc8438c525003b19fd4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0a282a7a4acfe52a1a111a6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_277955c4e006c715cc0191c6.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.780000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.296000px;}
.ls3{letter-spacing:5.760000px;}
.ls5{letter-spacing:54.144000px;}
.ls4{letter-spacing:159.984000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws2{word-spacing:-24.408000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.573760px;}
.ws5{word-spacing:-14.970240px;}
.ws3{word-spacing:-10.902240px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-5.136000px;}
._11{margin-left:-3.960000px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.126080px;}
._1{width:1.218000px;}
._2{width:2.593200px;}
._8{width:4.510800px;}
._9{width:6.120000px;}
._a{width:7.272000px;}
._15{width:8.286000px;}
._10{width:9.334080px;}
._7{width:10.846080px;}
._14{width:12.790080px;}
._12{width:13.968000px;}
._e{width:15.480000px;}
._f{width:16.638000px;}
._d{width:19.584000px;}
._b{width:21.096000px;}
._c{width:22.326000px;}
._5{width:24.192000px;}
._6{width:25.278000px;}
._16{width:26.496000px;}
._1e{width:27.648000px;}
._17{width:28.728000px;}
._1a{width:31.104000px;}
._1b{width:32.164080px;}
._1d{width:34.488000px;}
._22{width:36.144000px;}
._4{width:40.080000px;}
._21{width:43.214400px;}
._20{width:44.331840px;}
._1f{width:45.550080px;}
._25{width:66.096000px;}
._24{width:68.158080px;}
._23{width:104.328000px;}
._19{width:282.761760px;}
._18{width:399.126240px;}
._1c{width:560.560272px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:77.760000px;}
.fsd{font-size:77.904000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:108.144000px;}
.fs7{font-size:113.760000px;}
.fs9{font-size:120.240000px;}
.fsb{font-size:174.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.620000px;}
.y7{bottom:11.340000px;}
.ya6{bottom:12.165000px;}
.y82{bottom:25.950000px;}
.y89{bottom:35.100000px;}
.y79{bottom:38.085000px;}
.y85{bottom:44.025000px;}
.y81{bottom:44.130000px;}
.y7b{bottom:51.375000px;}
.y88{bottom:53.100000px;}
.y5c{bottom:55.905000px;}
.y8{bottom:57.420000px;}
.y74{bottom:59.145000px;}
.y80{bottom:62.175000px;}
.y84{bottom:62.205000px;}
.y78{bottom:64.545000px;}
.y87{bottom:71.280000px;}
.y5{bottom:73.836000px;}
.y7a{bottom:77.655000px;}
.y7f{bottom:80.355000px;}
.y83{bottom:80.385000px;}
.y86{bottom:89.460000px;}
.y77{bottom:90.825000px;}
.yaf{bottom:92.880000px;}
.y7e{bottom:98.535000px;}
.y52{bottom:110.520000px;}
.y51{bottom:113.436000px;}
.yae{bottom:114.300000px;}
.y34{bottom:115.596000px;}
.y5b{bottom:119.490000px;}
.y73{bottom:128.235000px;}
.y6d{bottom:131.256000px;}
.y5a{bottom:132.810000px;}
.y7d{bottom:134.820000px;}
.ya4{bottom:136.116000px;}
.y33{bottom:139.536000px;}
.y76{bottom:144.000000px;}
.y56{bottom:147.750000px;}
.yd4{bottom:148.896000px;}
.y6c{bottom:155.370000px;}
.ya3{bottom:159.870000px;}
.y32{bottom:163.290000px;}
.yab{bottom:171.930000px;}
.yd3{bottom:172.650000px;}
.y55{bottom:177.480000px;}
.y6b{bottom:179.130000px;}
.y7c{bottom:180.000000px;}
.yad{bottom:182.670000px;}
.y71{bottom:182.910000px;}
.ya2{bottom:183.810000px;}
.y31{bottom:187.050000px;}
.yaa{bottom:193.350000px;}
.yd2{bottom:196.410000px;}
.y6a{bottom:202.890000px;}
.yac{bottom:204.090000px;}
.y54{bottom:207.180000px;}
.ya1{bottom:208.830000px;}
.y30{bottom:210.810000px;}
.ya9{bottom:214.770000px;}
.yd1{bottom:220.350000px;}
.y69{bottom:226.830000px;}
.ya0{bottom:232.590000px;}
.y2f{bottom:234.750000px;}
.y53{bottom:236.700000px;}
.yd0{bottom:244.110000px;}
.y68{bottom:250.590000px;}
.y9f{bottom:256.350000px;}
.y2e{bottom:258.510000px;}
.y59{bottom:260.130000px;}
.y5d{bottom:266.865000px;}
.ycf{bottom:267.870000px;}
.ya8{bottom:272.445000px;}
.y58{bottom:273.450000px;}
.y67{bottom:274.350000px;}
.y9e{bottom:280.290000px;}
.y2d{bottom:282.270000px;}
.yce{bottom:291.630000px;}
.ya7{bottom:293.865000px;}
.y66{bottom:298.110000px;}
.y9d{bottom:305.310000px;}
.y2c{bottom:306.030000px;}
.ycd{bottom:315.570000px;}
.y65{bottom:322.050000px;}
.y9c{bottom:329.070000px;}
.y2b{bottom:329.970000px;}
.y57{bottom:337.170000px;}
.ycc{bottom:339.375000px;}
.y64{bottom:345.855000px;}
.y75{bottom:349.560000px;}
.y70{bottom:352.515000px;}
.y9b{bottom:352.875000px;}
.y2a{bottom:353.775000px;}
.ycb{bottom:363.135000px;}
.y63{bottom:369.615000px;}
.y9a{bottom:376.815000px;}
.y29{bottom:377.535000px;}
.yca{bottom:386.895000px;}
.y62{bottom:393.375000px;}
.y28{bottom:401.295000px;}
.y99{bottom:401.835000px;}
.yc9{bottom:410.835000px;}
.y61{bottom:417.315000px;}
.y27{bottom:425.235000px;}
.y98{bottom:425.595000px;}
.yc8{bottom:434.595000px;}
.y60{bottom:441.075000px;}
.y26{bottom:448.995000px;}
.y97{bottom:449.535000px;}
.yc7{bottom:458.355000px;}
.y5f{bottom:464.835000px;}
.y25{bottom:472.755000px;}
.y96{bottom:473.295000px;}
.yc6{bottom:482.115000px;}
.y5e{bottom:488.595000px;}
.y24{bottom:496.515000px;}
.y95{bottom:498.315000px;}
.yc5{bottom:506.055000px;}
.y50{bottom:512.355000px;}
.y23{bottom:520.455000px;}
.y94{bottom:522.075000px;}
.yc4{bottom:529.815000px;}
.y72{bottom:530.460000px;}
.y6f{bottom:533.415000px;}
.y4f{bottom:536.295000px;}
.y22{bottom:544.215000px;}
.y93{bottom:546.015000px;}
.yc3{bottom:553.575000px;}
.y4e{bottom:560.055000px;}
.y21{bottom:567.975000px;}
.y92{bottom:571.035000px;}
.yc2{bottom:577.335000px;}
.y4d{bottom:583.815000px;}
.y20{bottom:591.735000px;}
.y91{bottom:594.795000px;}
.yc1{bottom:602.535000px;}
.y4c{bottom:607.605000px;}
.y1f{bottom:615.705000px;}
.y90{bottom:618.765000px;}
.yc0{bottom:626.325000px;}
.y4b{bottom:631.545000px;}
.y1e{bottom:639.465000px;}
.y8f{bottom:642.525000px;}
.ybf{bottom:650.085000px;}
.y4a{bottom:655.305000px;}
.y1d{bottom:663.225000px;}
.y8e{bottom:667.545000px;}
.ybe{bottom:673.845000px;}
.y49{bottom:679.065000px;}
.y1c{bottom:686.985000px;}
.y8d{bottom:691.305000px;}
.ybd{bottom:697.785000px;}
.y48{bottom:702.825000px;}
.y1b{bottom:710.745000px;}
.y8c{bottom:715.245000px;}
.ybc{bottom:722.805000px;}
.y47{bottom:726.765000px;}
.y1a{bottom:734.685000px;}
.y8b{bottom:739.005000px;}
.ybb{bottom:746.565000px;}
.y46{bottom:750.525000px;}
.y19{bottom:758.445000px;}
.y8a{bottom:762.765000px;}
.yba{bottom:770.505000px;}
.yd7{bottom:773.925000px;}
.y45{bottom:774.285000px;}
.ya5{bottom:779.220000px;}
.y18{bottom:782.205000px;}
.yb9{bottom:795.525000px;}
.yd6{bottom:797.685000px;}
.y44{bottom:798.045000px;}
.y17{bottom:805.965000px;}
.yb8{bottom:819.285000px;}
.y43{bottom:821.985000px;}
.y16{bottom:829.905000px;}
.yb7{bottom:843.045000px;}
.y42{bottom:845.745000px;}
.y15{bottom:853.305000px;}
.yb6{bottom:866.985000px;}
.y41{bottom:869.505000px;}
.y14{bottom:877.110000px;}
.yb5{bottom:890.790000px;}
.yd5{bottom:892.950000px;}
.y40{bottom:893.310000px;}
.y13{bottom:901.230000px;}
.yb4{bottom:915.810000px;}
.y6e{bottom:916.890000px;}
.y3f{bottom:917.250000px;}
.y12{bottom:925.170000px;}
.yb3{bottom:939.750000px;}
.y3e{bottom:941.010000px;}
.y11{bottom:948.930000px;}
.yb2{bottom:963.510000px;}
.y3d{bottom:964.770000px;}
.y10{bottom:972.690000px;}
.yb1{bottom:987.270000px;}
.y3c{bottom:988.530000px;}
.yf{bottom:996.450000px;}
.yb0{bottom:1011.030000px;}
.y3b{bottom:1012.290000px;}
.ye{bottom:1020.030000px;}
.y3a{bottom:1036.230000px;}
.yd{bottom:1044.150000px;}
.y39{bottom:1059.990000px;}
.yc{bottom:1067.550000px;}
.y38{bottom:1083.750000px;}
.yb{bottom:1091.310000px;}
.y37{bottom:1107.510000px;}
.ya{bottom:1117.590000px;}
.y36{bottom:1131.450000px;}
.y9{bottom:1149.300000px;}
.y35{bottom:1155.240000px;}
.y4{bottom:1195.020000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.140000px;}
.h5{height:27.000000px;}
.hd{height:36.839531px;}
.h1c{height:50.273438px;}
.h7{height:50.585625px;}
.h16{height:50.695594px;}
.h4{height:54.421875px;}
.h10{height:58.651172px;}
.h1a{height:59.383125px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h13{height:73.129219px;}
.h17{height:74.004654px;}
.hb{height:82.476562px;}
.hc{height:82.586531px;}
.h15{height:86.875312px;}
.h12{height:91.823906px;}
.h8{height:96.508125px;}
.h1b{height:102.163125px;}
.hf{height:111.649219px;}
.h19{height:133.062188px;}
.he{height:165.060000px;}
.h14{height:169.560000px;}
.h11{height:180.900000px;}
.h18{height:392.400000px;}
.ha{height:394.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w5{width:298.650000px;}
.w3{width:298.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:38.520000px;}
.x8{left:43.020000px;}
.x5{left:95.796000px;}
.x29{left:124.127987px;}
.x21{left:125.459987px;}
.x1a{left:127.655987px;}
.xa{left:131.255987px;}
.x20{left:143.999987px;}
.x28{left:147.527987px;}
.xc{left:148.895987px;}
.xb{left:158.069987px;}
.x34{left:176.114987px;}
.x2a{left:179.744987px;}
.x3{left:195.869987px;}
.x27{left:235.364987px;}
.x39{left:252.359987px;}
.x3d{left:253.949987px;}
.x3a{left:259.559987px;}
.x35{left:264.059987px;}
.x3e{left:280.799987px;}
.x36{left:282.059987px;}
.x6{left:290.739000px;}
.x1e{left:291.884987px;}
.x2b{left:293.654987px;}
.x22{left:298.109987px;}
.x1f{left:301.709987px;}
.x18{left:304.889987px;}
.x23{left:306.929987px;}
.x19{left:307.949987px;}
.xd{left:322.274987px;}
.x2{left:333.254987px;}
.x4{left:342.614987px;}
.x10{left:376.169987px;}
.xf{left:384.989987px;}
.x7{left:394.635000px;}
.x12{left:397.949987px;}
.x11{left:401.909987px;}
.x17{left:412.124987px;}
.x13{left:422.174987px;}
.x2e{left:452.549987px;}
.x2c{left:468.389987px;}
.x24{left:486.749987px;}
.x2d{left:495.389987px;}
.x9{left:498.705000px;}
.x16{left:544.349987px;}
.x37{left:547.124987px;}
.x14{left:548.489987px;}
.x15{left:551.189987px;}
.x3b{left:558.644987px;}
.x3c{left:585.689987px;}
.x38{left:613.769987px;}
.x30{left:621.539987px;}
.x31{left:632.159987px;}
.x25{left:636.869987px;}
.x26{left:643.529987px;}
.x2f{left:654.299987px;}
.x32{left:662.759987px;}
.x33{left:770.549987px;}
.x1d{left:779.549987px;}
.x1c{left:781.889987px;}
.x1b{left:782.969987px;}
.xe{left:793.589987px;}
.x1{left:797.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.026667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.152000pt;}
.ls3{letter-spacing:5.120000pt;}
.ls5{letter-spacing:48.128000pt;}
.ls4{letter-spacing:142.208000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws2{word-spacing:-21.696000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.621120pt;}
.ws5{word-spacing:-13.306880pt;}
.ws3{word-spacing:-9.690880pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-4.565333pt;}
._11{margin-left:-3.520000pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.082667pt;}
._2{width:2.305067pt;}
._8{width:4.009600pt;}
._9{width:5.440000pt;}
._a{width:6.464000pt;}
._15{width:7.365333pt;}
._10{width:8.296960pt;}
._7{width:9.640960pt;}
._14{width:11.368960pt;}
._12{width:12.416000pt;}
._e{width:13.760000pt;}
._f{width:14.789333pt;}
._d{width:17.408000pt;}
._b{width:18.752000pt;}
._c{width:19.845333pt;}
._5{width:21.504000pt;}
._6{width:22.469333pt;}
._16{width:23.552000pt;}
._1e{width:24.576000pt;}
._17{width:25.536000pt;}
._1a{width:27.648000pt;}
._1b{width:28.590293pt;}
._1d{width:30.656000pt;}
._22{width:32.128000pt;}
._4{width:35.626667pt;}
._21{width:38.412800pt;}
._20{width:39.406080pt;}
._1f{width:40.488960pt;}
._25{width:58.752000pt;}
._24{width:60.584960pt;}
._23{width:92.736000pt;}
._19{width:251.343787pt;}
._18{width:354.778880pt;}
._1c{width:498.275797pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:69.120000pt;}
.fsd{font-size:69.248000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:96.128000pt;}
.fs7{font-size:101.120000pt;}
.fs9{font-size:106.880000pt;}
.fsb{font-size:154.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.440000pt;}
.y7{bottom:10.080000pt;}
.ya6{bottom:10.813333pt;}
.y82{bottom:23.066667pt;}
.y89{bottom:31.200000pt;}
.y79{bottom:33.853333pt;}
.y85{bottom:39.133333pt;}
.y81{bottom:39.226667pt;}
.y7b{bottom:45.666667pt;}
.y88{bottom:47.200000pt;}
.y5c{bottom:49.693333pt;}
.y8{bottom:51.040000pt;}
.y74{bottom:52.573333pt;}
.y80{bottom:55.266667pt;}
.y84{bottom:55.293333pt;}
.y78{bottom:57.373333pt;}
.y87{bottom:63.360000pt;}
.y5{bottom:65.632000pt;}
.y7a{bottom:69.026667pt;}
.y7f{bottom:71.426667pt;}
.y83{bottom:71.453333pt;}
.y86{bottom:79.520000pt;}
.y77{bottom:80.733333pt;}
.yaf{bottom:82.560000pt;}
.y7e{bottom:87.586667pt;}
.y52{bottom:98.240000pt;}
.y51{bottom:100.832000pt;}
.yae{bottom:101.600000pt;}
.y34{bottom:102.752000pt;}
.y5b{bottom:106.213333pt;}
.y73{bottom:113.986667pt;}
.y6d{bottom:116.672000pt;}
.y5a{bottom:118.053333pt;}
.y7d{bottom:119.840000pt;}
.ya4{bottom:120.992000pt;}
.y33{bottom:124.032000pt;}
.y76{bottom:128.000000pt;}
.y56{bottom:131.333333pt;}
.yd4{bottom:132.352000pt;}
.y6c{bottom:138.106667pt;}
.ya3{bottom:142.106667pt;}
.y32{bottom:145.146667pt;}
.yab{bottom:152.826667pt;}
.yd3{bottom:153.466667pt;}
.y55{bottom:157.760000pt;}
.y6b{bottom:159.226667pt;}
.y7c{bottom:160.000000pt;}
.yad{bottom:162.373333pt;}
.y71{bottom:162.586667pt;}
.ya2{bottom:163.386667pt;}
.y31{bottom:166.266667pt;}
.yaa{bottom:171.866667pt;}
.yd2{bottom:174.586667pt;}
.y6a{bottom:180.346667pt;}
.yac{bottom:181.413333pt;}
.y54{bottom:184.160000pt;}
.ya1{bottom:185.626667pt;}
.y30{bottom:187.386667pt;}
.ya9{bottom:190.906667pt;}
.yd1{bottom:195.866667pt;}
.y69{bottom:201.626667pt;}
.ya0{bottom:206.746667pt;}
.y2f{bottom:208.666667pt;}
.y53{bottom:210.400000pt;}
.yd0{bottom:216.986667pt;}
.y68{bottom:222.746667pt;}
.y9f{bottom:227.866667pt;}
.y2e{bottom:229.786667pt;}
.y59{bottom:231.226667pt;}
.y5d{bottom:237.213333pt;}
.ycf{bottom:238.106667pt;}
.ya8{bottom:242.173333pt;}
.y58{bottom:243.066667pt;}
.y67{bottom:243.866667pt;}
.y9e{bottom:249.146667pt;}
.y2d{bottom:250.906667pt;}
.yce{bottom:259.226667pt;}
.ya7{bottom:261.213333pt;}
.y66{bottom:264.986667pt;}
.y9d{bottom:271.386667pt;}
.y2c{bottom:272.026667pt;}
.ycd{bottom:280.506667pt;}
.y65{bottom:286.266667pt;}
.y9c{bottom:292.506667pt;}
.y2b{bottom:293.306667pt;}
.y57{bottom:299.706667pt;}
.ycc{bottom:301.666667pt;}
.y64{bottom:307.426667pt;}
.y75{bottom:310.720000pt;}
.y70{bottom:313.346667pt;}
.y9b{bottom:313.666667pt;}
.y2a{bottom:314.466667pt;}
.ycb{bottom:322.786667pt;}
.y63{bottom:328.546667pt;}
.y9a{bottom:334.946667pt;}
.y29{bottom:335.586667pt;}
.yca{bottom:343.906667pt;}
.y62{bottom:349.666667pt;}
.y28{bottom:356.706667pt;}
.y99{bottom:357.186667pt;}
.yc9{bottom:365.186667pt;}
.y61{bottom:370.946667pt;}
.y27{bottom:377.986667pt;}
.y98{bottom:378.306667pt;}
.yc8{bottom:386.306667pt;}
.y60{bottom:392.066667pt;}
.y26{bottom:399.106667pt;}
.y97{bottom:399.586667pt;}
.yc7{bottom:407.426667pt;}
.y5f{bottom:413.186667pt;}
.y25{bottom:420.226667pt;}
.y96{bottom:420.706667pt;}
.yc6{bottom:428.546667pt;}
.y5e{bottom:434.306667pt;}
.y24{bottom:441.346667pt;}
.y95{bottom:442.946667pt;}
.yc5{bottom:449.826667pt;}
.y50{bottom:455.426667pt;}
.y23{bottom:462.626667pt;}
.y94{bottom:464.066667pt;}
.yc4{bottom:470.946667pt;}
.y72{bottom:471.520000pt;}
.y6f{bottom:474.146667pt;}
.y4f{bottom:476.706667pt;}
.y22{bottom:483.746667pt;}
.y93{bottom:485.346667pt;}
.yc3{bottom:492.066667pt;}
.y4e{bottom:497.826667pt;}
.y21{bottom:504.866667pt;}
.y92{bottom:507.586667pt;}
.yc2{bottom:513.186667pt;}
.y4d{bottom:518.946667pt;}
.y20{bottom:525.986667pt;}
.y91{bottom:528.706667pt;}
.yc1{bottom:535.586667pt;}
.y4c{bottom:540.093333pt;}
.y1f{bottom:547.293333pt;}
.y90{bottom:550.013333pt;}
.yc0{bottom:556.733333pt;}
.y4b{bottom:561.373333pt;}
.y1e{bottom:568.413333pt;}
.y8f{bottom:571.133333pt;}
.ybf{bottom:577.853333pt;}
.y4a{bottom:582.493333pt;}
.y1d{bottom:589.533333pt;}
.y8e{bottom:593.373333pt;}
.ybe{bottom:598.973333pt;}
.y49{bottom:603.613333pt;}
.y1c{bottom:610.653333pt;}
.y8d{bottom:614.493333pt;}
.ybd{bottom:620.253333pt;}
.y48{bottom:624.733333pt;}
.y1b{bottom:631.773333pt;}
.y8c{bottom:635.773333pt;}
.ybc{bottom:642.493333pt;}
.y47{bottom:646.013333pt;}
.y1a{bottom:653.053333pt;}
.y8b{bottom:656.893333pt;}
.ybb{bottom:663.613333pt;}
.y46{bottom:667.133333pt;}
.y19{bottom:674.173333pt;}
.y8a{bottom:678.013333pt;}
.yba{bottom:684.893333pt;}
.yd7{bottom:687.933333pt;}
.y45{bottom:688.253333pt;}
.ya5{bottom:692.640000pt;}
.y18{bottom:695.293333pt;}
.yb9{bottom:707.133333pt;}
.yd6{bottom:709.053333pt;}
.y44{bottom:709.373333pt;}
.y17{bottom:716.413333pt;}
.yb8{bottom:728.253333pt;}
.y43{bottom:730.653333pt;}
.y16{bottom:737.693333pt;}
.yb7{bottom:749.373333pt;}
.y42{bottom:751.773333pt;}
.y15{bottom:758.493333pt;}
.yb6{bottom:770.653333pt;}
.y41{bottom:772.893333pt;}
.y14{bottom:779.653333pt;}
.yb5{bottom:791.813333pt;}
.yd5{bottom:793.733333pt;}
.y40{bottom:794.053333pt;}
.y13{bottom:801.093333pt;}
.yb4{bottom:814.053333pt;}
.y6e{bottom:815.013333pt;}
.y3f{bottom:815.333333pt;}
.y12{bottom:822.373333pt;}
.yb3{bottom:835.333333pt;}
.y3e{bottom:836.453333pt;}
.y11{bottom:843.493333pt;}
.yb2{bottom:856.453333pt;}
.y3d{bottom:857.573333pt;}
.y10{bottom:864.613333pt;}
.yb1{bottom:877.573333pt;}
.y3c{bottom:878.693333pt;}
.yf{bottom:885.733333pt;}
.yb0{bottom:898.693333pt;}
.y3b{bottom:899.813333pt;}
.ye{bottom:906.693333pt;}
.y3a{bottom:921.093333pt;}
.yd{bottom:928.133333pt;}
.y39{bottom:942.213333pt;}
.yc{bottom:948.933333pt;}
.y38{bottom:963.333333pt;}
.yb{bottom:970.053333pt;}
.y37{bottom:984.453333pt;}
.ya{bottom:993.413333pt;}
.y36{bottom:1005.733333pt;}
.y9{bottom:1021.600000pt;}
.y35{bottom:1026.880000pt;}
.y4{bottom:1062.240000pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.680000pt;}
.h5{height:24.000000pt;}
.hd{height:32.746250pt;}
.h1c{height:44.687500pt;}
.h7{height:44.965000pt;}
.h16{height:45.062750pt;}
.h4{height:48.375000pt;}
.h10{height:52.134375pt;}
.h1a{height:52.785000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h13{height:65.003750pt;}
.h17{height:65.781915pt;}
.hb{height:73.312500pt;}
.hc{height:73.410250pt;}
.h15{height:77.222500pt;}
.h12{height:81.621250pt;}
.h8{height:85.785000pt;}
.h1b{height:90.811667pt;}
.hf{height:99.243750pt;}
.h19{height:118.277500pt;}
.he{height:146.720000pt;}
.h14{height:150.720000pt;}
.h11{height:160.800000pt;}
.h18{height:348.800000pt;}
.ha{height:350.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w5{width:265.466667pt;}
.w3{width:265.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:34.240000pt;}
.x8{left:38.240000pt;}
.x5{left:85.152000pt;}
.x29{left:110.335988pt;}
.x21{left:111.519988pt;}
.x1a{left:113.471988pt;}
.xa{left:116.671988pt;}
.x20{left:127.999988pt;}
.x28{left:131.135988pt;}
.xc{left:132.351988pt;}
.xb{left:140.506655pt;}
.x34{left:156.546655pt;}
.x2a{left:159.773322pt;}
.x3{left:174.106655pt;}
.x27{left:209.213322pt;}
.x39{left:224.319988pt;}
.x3d{left:225.733322pt;}
.x3a{left:230.719988pt;}
.x35{left:234.719988pt;}
.x3e{left:249.599988pt;}
.x36{left:250.719988pt;}
.x6{left:258.434667pt;}
.x1e{left:259.453322pt;}
.x2b{left:261.026655pt;}
.x22{left:264.986655pt;}
.x1f{left:268.186655pt;}
.x18{left:271.013322pt;}
.x23{left:272.826655pt;}
.x19{left:273.733322pt;}
.xd{left:286.466655pt;}
.x2{left:296.226655pt;}
.x4{left:304.546655pt;}
.x10{left:334.373322pt;}
.xf{left:342.213322pt;}
.x7{left:350.786667pt;}
.x12{left:353.733322pt;}
.x11{left:357.253322pt;}
.x17{left:366.333322pt;}
.x13{left:375.266655pt;}
.x2e{left:402.266655pt;}
.x2c{left:416.346655pt;}
.x24{left:432.666655pt;}
.x2d{left:440.346655pt;}
.x9{left:443.293333pt;}
.x16{left:483.866655pt;}
.x37{left:486.333322pt;}
.x14{left:487.546655pt;}
.x15{left:489.946655pt;}
.x3b{left:496.573322pt;}
.x3c{left:520.613322pt;}
.x38{left:545.573322pt;}
.x30{left:552.479988pt;}
.x31{left:561.919988pt;}
.x25{left:566.106655pt;}
.x26{left:572.026655pt;}
.x2f{left:581.599988pt;}
.x32{left:589.119988pt;}
.x33{left:684.933322pt;}
.x1d{left:692.933322pt;}
.x1c{left:695.013322pt;}
.x1b{left:695.973322pt;}
.xe{left:705.413322pt;}
.x1{left:708.773322pt;}
}




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