
    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_f3490728dc7262510f68d167.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_4943f01383a191b03d869ebe.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_48668971d35ca62e2161ed11.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c3dfac5953f38b833cb4c1df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1779d6acbc6f04408a090817.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_dfaa9ef5552d6f1f45f46c31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_743628aebf4c13b6cb6a75db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_0111db1028f150140e2ce751.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6592354c1e2283afff5ee27f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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.940000px;}
.lse{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.513600px;}
.ls13{letter-spacing:11.466720px;}
.ls12{letter-spacing:41.706720px;}
.ls6{letter-spacing:67.140000px;}
.ls7{letter-spacing:104.004000px;}
.ls8{letter-spacing:181.596000px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1459.111680px;}
._6{margin-left:-1452.651480px;}
._5{margin-left:-997.637760px;}
._7{margin-left:-585.889920px;}
._16{margin-left:-9.593280px;}
._4{margin-left:-8.213760px;}
._1c{margin-left:-6.393120px;}
._9{margin-left:-5.089200px;}
._a{margin-left:-3.908160px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.832720px;}
._c{width:3.930480px;}
._e{width:5.871120px;}
._11{width:7.092480px;}
._d{width:8.279520px;}
._f{width:9.979920px;}
._10{width:11.414160px;}
._19{width:12.499920px;}
._17{width:13.864320px;}
._12{width:16.338240px;}
._18{width:17.495280px;}
._1b{width:19.587360px;}
._1a{width:20.756880px;}
._15{width:23.007600px;}
._14{width:24.023520px;}
._1d{width:25.326000px;}
._13{width:56.114640px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y44{bottom:5.760000px;}
.y42{bottom:5.940000px;}
.y10c{bottom:10.800000px;}
.y41{bottom:25.785000px;}
.y10b{bottom:30.600000px;}
.y108{bottom:34.920000px;}
.y10a{bottom:50.580000px;}
.y6{bottom:63.360000px;}
.y109{bottom:70.380000px;}
.ye3{bottom:96.120000px;}
.y69{bottom:99.000000px;}
.yc9{bottom:106.560000px;}
.ye2{bottom:115.920000px;}
.y32{bottom:118.620000px;}
.y68{bottom:118.800000px;}
.y99{bottom:119.880000px;}
.y107{bottom:123.840000px;}
.yc8{bottom:126.360000px;}
.ye1{bottom:135.720000px;}
.y31{bottom:138.420000px;}
.y67{bottom:138.780000px;}
.y98{bottom:139.680000px;}
.yc7{bottom:146.160000px;}
.ye0{bottom:155.520000px;}
.y30{bottom:158.220000px;}
.y66{bottom:158.580000px;}
.y97{bottom:159.480000px;}
.yc6{bottom:166.320000px;}
.ydf{bottom:175.320000px;}
.y2f{bottom:178.020000px;}
.y65{bottom:178.380000px;}
.y96{bottom:179.460000px;}
.yc5{bottom:186.300000px;}
.yde{bottom:195.300000px;}
.y2e{bottom:198.000000px;}
.y64{bottom:198.180000px;}
.y95{bottom:199.260000px;}
.yc4{bottom:206.100000px;}
.ydd{bottom:215.130000px;}
.y2d{bottom:217.830000px;}
.y63{bottom:218.010000px;}
.y94{bottom:219.090000px;}
.yc3{bottom:225.930000px;}
.y106{bottom:228.990000px;}
.ydc{bottom:234.930000px;}
.y2c{bottom:237.990000px;}
.y93{bottom:238.890000px;}
.yc2{bottom:245.730000px;}
.ydb{bottom:255.090000px;}
.y2b{bottom:257.790000px;}
.y92{bottom:259.050000px;}
.y105{bottom:264.810000px;}
.yc1{bottom:265.530000px;}
.yda{bottom:274.890000px;}
.y62{bottom:277.590000px;}
.y2a{bottom:277.770000px;}
.y91{bottom:279.030000px;}
.yc0{bottom:285.870000px;}
.yd9{bottom:294.870000px;}
.y29{bottom:297.570000px;}
.y61{bottom:297.750000px;}
.y90{bottom:298.830000px;}
.y104{bottom:300.810000px;}
.ybf{bottom:305.670000px;}
.yd8{bottom:314.670000px;}
.y28{bottom:317.370000px;}
.y60{bottom:317.730000px;}
.y8f{bottom:318.630000px;}
.ybe{bottom:325.470000px;}
.yd7{bottom:334.470000px;}
.y103{bottom:336.630000px;}
.y27{bottom:337.170000px;}
.y5f{bottom:337.890000px;}
.y8e{bottom:338.790000px;}
.ybd{bottom:345.270000px;}
.yd6{bottom:354.630000px;}
.y102{bottom:356.430000px;}
.y26{bottom:356.970000px;}
.y5e{bottom:358.050000px;}
.y8d{bottom:358.590000px;}
.ybc{bottom:365.070000px;}
.yd5{bottom:374.610000px;}
.y101{bottom:376.590000px;}
.y25{bottom:377.310000px;}
.y5d{bottom:378.210000px;}
.y8c{bottom:378.570000px;}
.ybb{bottom:385.410000px;}
.yd4{bottom:394.410000px;}
.y100{bottom:396.390000px;}
.y24{bottom:397.110000px;}
.y8b{bottom:398.370000px;}
.y5c{bottom:398.550000px;}
.yba{bottom:414.210000px;}
.yff{bottom:416.730000px;}
.y23{bottom:416.910000px;}
.y8a{bottom:418.170000px;}
.y5b{bottom:418.350000px;}
.yb9{bottom:434.010000px;}
.y22{bottom:436.710000px;}
.yfe{bottom:436.890000px;}
.y89{bottom:437.970000px;}
.y5a{bottom:438.330000px;}
.yb8{bottom:453.855000px;}
.yd3{bottom:454.215000px;}
.y21{bottom:456.555000px;}
.yfd{bottom:457.095000px;}
.y59{bottom:458.175000px;}
.y88{bottom:458.355000px;}
.yb7{bottom:473.835000px;}
.yd2{bottom:474.195000px;}
.y20{bottom:476.535000px;}
.yfc{bottom:477.255000px;}
.y58{bottom:477.975000px;}
.y87{bottom:478.155000px;}
.yb6{bottom:493.635000px;}
.yd1{bottom:493.995000px;}
.yfb{bottom:497.415000px;}
.y57{bottom:497.775000px;}
.y86{bottom:497.955000px;}
.y1f{bottom:498.855000px;}
.yb5{bottom:513.795000px;}
.yfa{bottom:517.215000px;}
.y56{bottom:517.575000px;}
.y85{bottom:517.755000px;}
.y1e{bottom:521.175000px;}
.yb4{bottom:533.595000px;}
.yf9{bottom:537.375000px;}
.y84{bottom:537.555000px;}
.y55{bottom:537.915000px;}
.y1d{bottom:543.315000px;}
.yb3{bottom:553.395000px;}
.yd0{bottom:553.935000px;}
.y83{bottom:557.535000px;}
.y54{bottom:557.715000px;}
.y1c{bottom:572.115000px;}
.yb2{bottom:573.375000px;}
.ycf{bottom:573.735000px;}
.y53{bottom:577.515000px;}
.y82{bottom:577.695000px;}
.yf8{bottom:577.875000px;}
.y1b{bottom:591.915000px;}
.yb1{bottom:593.535000px;}
.y52{bottom:597.315000px;}
.y81{bottom:597.495000px;}
.yf7{bottom:598.035000px;}
.y1a{bottom:611.895000px;}
.yb0{bottom:613.335000px;}
.y51{bottom:617.115000px;}
.y80{bottom:617.295000px;}
.yf6{bottom:617.835000px;}
.y19{bottom:631.695000px;}
.yaf{bottom:633.135000px;}
.y50{bottom:637.095000px;}
.yf5{bottom:637.995000px;}
.y18{bottom:651.495000px;}
.yae{bottom:653.115000px;}
.y4f{bottom:656.895000px;}
.y7f{bottom:657.075000px;}
.yf4{bottom:658.155000px;}
.y17{bottom:671.295000px;}
.yad{bottom:672.915000px;}
.yce{bottom:673.275000px;}
.y4e{bottom:676.695000px;}
.y7e{bottom:676.875000px;}
.yf3{bottom:677.955000px;}
.y16{bottom:691.125000px;}
.yac{bottom:693.105000px;}
.y4d{bottom:696.885000px;}
.y7d{bottom:697.065000px;}
.yf2{bottom:698.145000px;}
.y15{bottom:711.105000px;}
.yab{bottom:712.905000px;}
.y4c{bottom:716.685000px;}
.y7c{bottom:716.865000px;}
.yf1{bottom:718.305000px;}
.y14{bottom:730.905000px;}
.yaa{bottom:732.705000px;}
.y4b{bottom:736.665000px;}
.yf0{bottom:738.105000px;}
.y13{bottom:750.705000px;}
.ya9{bottom:752.685000px;}
.y4a{bottom:756.465000px;}
.y7b{bottom:756.645000px;}
.yef{bottom:758.445000px;}
.y12{bottom:770.505000px;}
.ya8{bottom:772.485000px;}
.y49{bottom:776.265000px;}
.y7a{bottom:776.445000px;}
.yee{bottom:778.605000px;}
.y11{bottom:790.305000px;}
.ya7{bottom:792.645000px;}
.y79{bottom:796.245000px;}
.y48{bottom:796.425000px;}
.yed{bottom:798.765000px;}
.y10{bottom:810.105000px;}
.ya6{bottom:812.445000px;}
.y78{bottom:816.045000px;}
.y47{bottom:816.765000px;}
.yec{bottom:818.925000px;}
.y46{bottom:831.345000px;}
.yf{bottom:832.245000px;}
.y77{bottom:837.465000px;}
.yeb{bottom:838.725000px;}
.y45{bottom:852.045000px;}
.ya5{bottom:852.225000px;}
.ye{bottom:857.805000px;}
.yea{bottom:859.065000px;}
.ya4{bottom:872.025000px;}
.y43{bottom:872.925000px;}
.y76{bottom:877.605000px;}
.yd{bottom:877.965000px;}
.ye9{bottom:879.225000px;}
.ya3{bottom:891.825000px;}
.y40{bottom:893.625000px;}
.y75{bottom:897.405000px;}
.yc{bottom:898.125000px;}
.ye8{bottom:899.385000px;}
.ya2{bottom:911.985000px;}
.yb{bottom:913.245000px;}
.y74{bottom:917.250000px;}
.ye7{bottom:919.590000px;}
.ycd{bottom:920.670000px;}
.ya{bottom:934.710000px;}
.y73{bottom:937.050000px;}
.ye6{bottom:939.750000px;}
.y3f{bottom:940.110000px;}
.ycc{bottom:940.470000px;}
.ya1{bottom:941.010000px;}
.y72{bottom:957.030000px;}
.y9{bottom:958.110000px;}
.ye5{bottom:959.730000px;}
.y3e{bottom:960.090000px;}
.ycb{bottom:960.450000px;}
.ya0{bottom:960.810000px;}
.y71{bottom:977.190000px;}
.y3d{bottom:979.890000px;}
.yca{bottom:980.250000px;}
.y9f{bottom:980.610000px;}
.y8{bottom:989.790000px;}
.y70{bottom:996.990000px;}
.y3c{bottom:1000.050000px;}
.y9e{bottom:1000.410000px;}
.y6f{bottom:1016.790000px;}
.ye4{bottom:1019.850000px;}
.y3b{bottom:1020.210000px;}
.y7{bottom:1021.650000px;}
.y6e{bottom:1036.590000px;}
.y3a{bottom:1040.190000px;}
.y9d{bottom:1040.550000px;}
.y5{bottom:1051.350000px;}
.y6d{bottom:1056.930000px;}
.y39{bottom:1059.990000px;}
.y9c{bottom:1060.350000px;}
.y6c{bottom:1076.730000px;}
.y38{bottom:1079.790000px;}
.y9b{bottom:1080.150000px;}
.y4{bottom:1082.130000px;}
.y6b{bottom:1096.530000px;}
.y37{bottom:1099.590000px;}
.y9a{bottom:1099.950000px;}
.y3{bottom:1112.910000px;}
.y6a{bottom:1116.330000px;}
.y36{bottom:1119.750000px;}
.y35{bottom:1139.730000px;}
.y2{bottom:1143.870000px;}
.y34{bottom:1170.180000px;}
.y1{bottom:1177.740000px;}
.y33{bottom:1193.400000px;}
.h10{height:2.010938px;}
.hd{height:19.800000px;}
.h8{height:27.147656px;}
.hc{height:39.816000px;}
.h9{height:41.726953px;}
.h6{height:42.164648px;}
.he{height:43.506914px;}
.ha{height:43.681992px;}
.h5{height:46.251562px;}
.h7{height:53.404453px;}
.h4{height:58.819922px;}
.h3{height:59.436914px;}
.h2{height:67.565039px;}
.hb{height:67.824844px;}
.hf{height:84.420000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:105.876000px;}
.w6{width:145.656000px;}
.w5{width:145.980000px;}
.w4{width:172.470000px;}
.w7{width:210.855000px;}
.w8{width:580.965000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.460000px;}
.x2{left:52.919987px;}
.x1{left:54.179987px;}
.x3{left:57.239987px;}
.xd{left:66.419987px;}
.x11{left:67.499987px;}
.x4{left:73.259987px;}
.xb{left:74.519987px;}
.xc{left:75.599987px;}
.xe{left:79.919987px;}
.xf{left:81.035987px;}
.xa{left:94.895987px;}
.x10{left:108.035987px;}
.x5{left:161.310000px;}
.x12{left:192.090000px;}
.x13{left:264.855000px;}
.x7{left:267.735000px;}
.x8{left:440.565000px;}
.x9{left:587.085000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.lse{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.456533pt;}
.ls13{letter-spacing:10.192640pt;}
.ls12{letter-spacing:37.072640pt;}
.ls6{letter-spacing:59.680000pt;}
.ls7{letter-spacing:92.448000pt;}
.ls8{letter-spacing:161.418667pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1296.988160pt;}
._6{margin-left:-1291.245760pt;}
._5{margin-left:-886.789120pt;}
._7{margin-left:-520.791040pt;}
._16{margin-left:-8.527360pt;}
._4{margin-left:-7.301120pt;}
._1c{margin-left:-5.682773pt;}
._9{margin-left:-4.523733pt;}
._a{margin-left:-3.473920pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.517973pt;}
._c{width:3.493760pt;}
._e{width:5.218773pt;}
._11{width:6.304427pt;}
._d{width:7.359573pt;}
._f{width:8.871040pt;}
._10{width:10.145920pt;}
._19{width:11.111040pt;}
._17{width:12.323840pt;}
._12{width:14.522880pt;}
._18{width:15.551360pt;}
._1b{width:17.410987pt;}
._1a{width:18.450560pt;}
._15{width:20.451200pt;}
._14{width:21.354240pt;}
._1d{width:22.512000pt;}
._13{width:49.879680pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:5.120000pt;}
.y42{bottom:5.280000pt;}
.y10c{bottom:9.600000pt;}
.y41{bottom:22.920000pt;}
.y10b{bottom:27.200000pt;}
.y108{bottom:31.040000pt;}
.y10a{bottom:44.960000pt;}
.y6{bottom:56.320000pt;}
.y109{bottom:62.560000pt;}
.ye3{bottom:85.440000pt;}
.y69{bottom:88.000000pt;}
.yc9{bottom:94.720000pt;}
.ye2{bottom:103.040000pt;}
.y32{bottom:105.440000pt;}
.y68{bottom:105.600000pt;}
.y99{bottom:106.560000pt;}
.y107{bottom:110.080000pt;}
.yc8{bottom:112.320000pt;}
.ye1{bottom:120.640000pt;}
.y31{bottom:123.040000pt;}
.y67{bottom:123.360000pt;}
.y98{bottom:124.160000pt;}
.yc7{bottom:129.920000pt;}
.ye0{bottom:138.240000pt;}
.y30{bottom:140.640000pt;}
.y66{bottom:140.960000pt;}
.y97{bottom:141.760000pt;}
.yc6{bottom:147.840000pt;}
.ydf{bottom:155.840000pt;}
.y2f{bottom:158.240000pt;}
.y65{bottom:158.560000pt;}
.y96{bottom:159.520000pt;}
.yc5{bottom:165.600000pt;}
.yde{bottom:173.600000pt;}
.y2e{bottom:176.000000pt;}
.y64{bottom:176.160000pt;}
.y95{bottom:177.120000pt;}
.yc4{bottom:183.200000pt;}
.ydd{bottom:191.226667pt;}
.y2d{bottom:193.626667pt;}
.y63{bottom:193.786667pt;}
.y94{bottom:194.746667pt;}
.yc3{bottom:200.826667pt;}
.y106{bottom:203.546667pt;}
.ydc{bottom:208.826667pt;}
.y2c{bottom:211.546667pt;}
.y93{bottom:212.346667pt;}
.yc2{bottom:218.426667pt;}
.ydb{bottom:226.746667pt;}
.y2b{bottom:229.146667pt;}
.y92{bottom:230.266667pt;}
.y105{bottom:235.386667pt;}
.yc1{bottom:236.026667pt;}
.yda{bottom:244.346667pt;}
.y62{bottom:246.746667pt;}
.y2a{bottom:246.906667pt;}
.y91{bottom:248.026667pt;}
.yc0{bottom:254.106667pt;}
.yd9{bottom:262.106667pt;}
.y29{bottom:264.506667pt;}
.y61{bottom:264.666667pt;}
.y90{bottom:265.626667pt;}
.y104{bottom:267.386667pt;}
.ybf{bottom:271.706667pt;}
.yd8{bottom:279.706667pt;}
.y28{bottom:282.106667pt;}
.y60{bottom:282.426667pt;}
.y8f{bottom:283.226667pt;}
.ybe{bottom:289.306667pt;}
.yd7{bottom:297.306667pt;}
.y103{bottom:299.226667pt;}
.y27{bottom:299.706667pt;}
.y5f{bottom:300.346667pt;}
.y8e{bottom:301.146667pt;}
.ybd{bottom:306.906667pt;}
.yd6{bottom:315.226667pt;}
.y102{bottom:316.826667pt;}
.y26{bottom:317.306667pt;}
.y5e{bottom:318.266667pt;}
.y8d{bottom:318.746667pt;}
.ybc{bottom:324.506667pt;}
.yd5{bottom:332.986667pt;}
.y101{bottom:334.746667pt;}
.y25{bottom:335.386667pt;}
.y5d{bottom:336.186667pt;}
.y8c{bottom:336.506667pt;}
.ybb{bottom:342.586667pt;}
.yd4{bottom:350.586667pt;}
.y100{bottom:352.346667pt;}
.y24{bottom:352.986667pt;}
.y8b{bottom:354.106667pt;}
.y5c{bottom:354.266667pt;}
.yba{bottom:368.186667pt;}
.yff{bottom:370.426667pt;}
.y23{bottom:370.586667pt;}
.y8a{bottom:371.706667pt;}
.y5b{bottom:371.866667pt;}
.yb9{bottom:385.786667pt;}
.y22{bottom:388.186667pt;}
.yfe{bottom:388.346667pt;}
.y89{bottom:389.306667pt;}
.y5a{bottom:389.626667pt;}
.yb8{bottom:403.426667pt;}
.yd3{bottom:403.746667pt;}
.y21{bottom:405.826667pt;}
.yfd{bottom:406.306667pt;}
.y59{bottom:407.266667pt;}
.y88{bottom:407.426667pt;}
.yb7{bottom:421.186667pt;}
.yd2{bottom:421.506667pt;}
.y20{bottom:423.586667pt;}
.yfc{bottom:424.226667pt;}
.y58{bottom:424.866667pt;}
.y87{bottom:425.026667pt;}
.yb6{bottom:438.786667pt;}
.yd1{bottom:439.106667pt;}
.yfb{bottom:442.146667pt;}
.y57{bottom:442.466667pt;}
.y86{bottom:442.626667pt;}
.y1f{bottom:443.426667pt;}
.yb5{bottom:456.706667pt;}
.yfa{bottom:459.746667pt;}
.y56{bottom:460.066667pt;}
.y85{bottom:460.226667pt;}
.y1e{bottom:463.266667pt;}
.yb4{bottom:474.306667pt;}
.yf9{bottom:477.666667pt;}
.y84{bottom:477.826667pt;}
.y55{bottom:478.146667pt;}
.y1d{bottom:482.946667pt;}
.yb3{bottom:491.906667pt;}
.yd0{bottom:492.386667pt;}
.y83{bottom:495.586667pt;}
.y54{bottom:495.746667pt;}
.y1c{bottom:508.546667pt;}
.yb2{bottom:509.666667pt;}
.ycf{bottom:509.986667pt;}
.y53{bottom:513.346667pt;}
.y82{bottom:513.506667pt;}
.yf8{bottom:513.666667pt;}
.y1b{bottom:526.146667pt;}
.yb1{bottom:527.586667pt;}
.y52{bottom:530.946667pt;}
.y81{bottom:531.106667pt;}
.yf7{bottom:531.586667pt;}
.y1a{bottom:543.906667pt;}
.yb0{bottom:545.186667pt;}
.y51{bottom:548.546667pt;}
.y80{bottom:548.706667pt;}
.yf6{bottom:549.186667pt;}
.y19{bottom:561.506667pt;}
.yaf{bottom:562.786667pt;}
.y50{bottom:566.306667pt;}
.yf5{bottom:567.106667pt;}
.y18{bottom:579.106667pt;}
.yae{bottom:580.546667pt;}
.y4f{bottom:583.906667pt;}
.y7f{bottom:584.066667pt;}
.yf4{bottom:585.026667pt;}
.y17{bottom:596.706667pt;}
.yad{bottom:598.146667pt;}
.yce{bottom:598.466667pt;}
.y4e{bottom:601.506667pt;}
.y7e{bottom:601.666667pt;}
.yf3{bottom:602.626667pt;}
.y16{bottom:614.333333pt;}
.yac{bottom:616.093333pt;}
.y4d{bottom:619.453333pt;}
.y7d{bottom:619.613333pt;}
.yf2{bottom:620.573333pt;}
.y15{bottom:632.093333pt;}
.yab{bottom:633.693333pt;}
.y4c{bottom:637.053333pt;}
.y7c{bottom:637.213333pt;}
.yf1{bottom:638.493333pt;}
.y14{bottom:649.693333pt;}
.yaa{bottom:651.293333pt;}
.y4b{bottom:654.813333pt;}
.yf0{bottom:656.093333pt;}
.y13{bottom:667.293333pt;}
.ya9{bottom:669.053333pt;}
.y4a{bottom:672.413333pt;}
.y7b{bottom:672.573333pt;}
.yef{bottom:674.173333pt;}
.y12{bottom:684.893333pt;}
.ya8{bottom:686.653333pt;}
.y49{bottom:690.013333pt;}
.y7a{bottom:690.173333pt;}
.yee{bottom:692.093333pt;}
.y11{bottom:702.493333pt;}
.ya7{bottom:704.573333pt;}
.y79{bottom:707.773333pt;}
.y48{bottom:707.933333pt;}
.yed{bottom:710.013333pt;}
.y10{bottom:720.093333pt;}
.ya6{bottom:722.173333pt;}
.y78{bottom:725.373333pt;}
.y47{bottom:726.013333pt;}
.yec{bottom:727.933333pt;}
.y46{bottom:738.973333pt;}
.yf{bottom:739.773333pt;}
.y77{bottom:744.413333pt;}
.yeb{bottom:745.533333pt;}
.y45{bottom:757.373333pt;}
.ya5{bottom:757.533333pt;}
.ye{bottom:762.493333pt;}
.yea{bottom:763.613333pt;}
.ya4{bottom:775.133333pt;}
.y43{bottom:775.933333pt;}
.y76{bottom:780.093333pt;}
.yd{bottom:780.413333pt;}
.ye9{bottom:781.533333pt;}
.ya3{bottom:792.733333pt;}
.y40{bottom:794.333333pt;}
.y75{bottom:797.693333pt;}
.yc{bottom:798.333333pt;}
.ye8{bottom:799.453333pt;}
.ya2{bottom:810.653333pt;}
.yb{bottom:811.773333pt;}
.y74{bottom:815.333333pt;}
.ye7{bottom:817.413333pt;}
.ycd{bottom:818.373333pt;}
.ya{bottom:830.853333pt;}
.y73{bottom:832.933333pt;}
.ye6{bottom:835.333333pt;}
.y3f{bottom:835.653333pt;}
.ycc{bottom:835.973333pt;}
.ya1{bottom:836.453333pt;}
.y72{bottom:850.693333pt;}
.y9{bottom:851.653333pt;}
.ye5{bottom:853.093333pt;}
.y3e{bottom:853.413333pt;}
.ycb{bottom:853.733333pt;}
.ya0{bottom:854.053333pt;}
.y71{bottom:868.613333pt;}
.y3d{bottom:871.013333pt;}
.yca{bottom:871.333333pt;}
.y9f{bottom:871.653333pt;}
.y8{bottom:879.813333pt;}
.y70{bottom:886.213333pt;}
.y3c{bottom:888.933333pt;}
.y9e{bottom:889.253333pt;}
.y6f{bottom:903.813333pt;}
.ye4{bottom:906.533333pt;}
.y3b{bottom:906.853333pt;}
.y7{bottom:908.133333pt;}
.y6e{bottom:921.413333pt;}
.y3a{bottom:924.613333pt;}
.y9d{bottom:924.933333pt;}
.y5{bottom:934.533333pt;}
.y6d{bottom:939.493333pt;}
.y39{bottom:942.213333pt;}
.y9c{bottom:942.533333pt;}
.y6c{bottom:957.093333pt;}
.y38{bottom:959.813333pt;}
.y9b{bottom:960.133333pt;}
.y4{bottom:961.893333pt;}
.y6b{bottom:974.693333pt;}
.y37{bottom:977.413333pt;}
.y9a{bottom:977.733333pt;}
.y3{bottom:989.253333pt;}
.y6a{bottom:992.293333pt;}
.y36{bottom:995.333333pt;}
.y35{bottom:1013.093333pt;}
.y2{bottom:1016.773333pt;}
.y34{bottom:1040.160000pt;}
.y1{bottom:1046.880000pt;}
.y33{bottom:1060.800000pt;}
.h10{height:1.787500pt;}
.hd{height:17.600000pt;}
.h8{height:24.131250pt;}
.hc{height:35.392000pt;}
.h9{height:37.090625pt;}
.h6{height:37.479688pt;}
.he{height:38.672812pt;}
.ha{height:38.828437pt;}
.h5{height:41.112500pt;}
.h7{height:47.470625pt;}
.h4{height:52.284375pt;}
.h3{height:52.832812pt;}
.h2{height:60.057813pt;}
.hb{height:60.288750pt;}
.hf{height:75.040000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:94.112000pt;}
.w6{width:129.472000pt;}
.w5{width:129.760000pt;}
.w4{width:153.306667pt;}
.w7{width:187.426667pt;}
.w8{width:516.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.520000pt;}
.x2{left:47.039988pt;}
.x1{left:48.159988pt;}
.x3{left:50.879988pt;}
.xd{left:59.039988pt;}
.x11{left:59.999988pt;}
.x4{left:65.119988pt;}
.xb{left:66.239988pt;}
.xc{left:67.199988pt;}
.xe{left:71.039988pt;}
.xf{left:72.031988pt;}
.xa{left:84.351988pt;}
.x10{left:96.031988pt;}
.x5{left:143.386667pt;}
.x12{left:170.746667pt;}
.x13{left:235.426667pt;}
.x7{left:237.986667pt;}
.x8{left:391.613333pt;}
.x9{left:521.853333pt;}
}




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