
    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_dabc896f229e1ccd1ac744e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_df97c92ee0f08757f87c741f.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_da8ea6e6e5bc110f850b546b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_8ff023d2a84fe1eb2740973a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_dc21c9888101834516765a57.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_c1150d220c60b13953711025.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7af3df6092f4c8bc04c0a533.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v13{vertical-align:-51.840000px;}
.v9{vertical-align:-18.720000px;}
.ve{vertical-align:-13.680000px;}
.v11{vertical-align:-11.520000px;}
.v4{vertical-align:-9.360000px;}
.vf{vertical-align:-7.920000px;}
.v5{vertical-align:-6.480000px;}
.v1{vertical-align:-5.040000px;}
.vc{vertical-align:-2.880000px;}
.vb{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.v2{vertical-align:2.880000px;}
.v10{vertical-align:5.040000px;}
.v7{vertical-align:6.480000px;}
.v3{vertical-align:7.920000px;}
.v6{vertical-align:11.520000px;}
.vd{vertical-align:13.680000px;}
.v8{vertical-align:18.720000px;}
.v12{vertical-align:51.120000px;}
.ls23{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.672000px;}
.ls7{letter-spacing:-0.496200px;}
.ls21{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.ls25{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls24{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.650880px;}
.lsf{letter-spacing:0.688320px;}
.lse{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.408320px;}
.ls10{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.612800px;}
.ls11{letter-spacing:1.837440px;}
.lsa{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.831040px;}
.lsc{letter-spacing:2.880000px;}
.lsb{letter-spacing:4.037760px;}
.ls12{letter-spacing:4.141440px;}
.ls1b{letter-spacing:4.504320px;}
.ls20{letter-spacing:5.944320px;}
.ls18{letter-spacing:6.664320px;}
.ls1e{letter-spacing:6.877440px;}
.ls3{letter-spacing:7.380000px;}
.ls16{letter-spacing:7.522560px;}
.ls19{letter-spacing:10.765440px;}
.ls1d{letter-spacing:10.768320px;}
.ls15{letter-spacing:11.197440px;}
.ls1a{letter-spacing:11.957760px;}
.ls1f{letter-spacing:15.120000px;}
.ls22{letter-spacing:39.881280px;}
.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;}
}
.ws2{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.422720px;}
.wse{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.407600px;}
.ws9{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.563800px;}
.wsa{word-spacing:-11.388000px;}
.wsb{word-spacing:-3.202560px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-2064.376800px;}
._1f{margin-left:-644.586480px;}
._20{margin-left:-90.000000px;}
._21{margin-left:-64.319040px;}
._1d{margin-left:-9.938880px;}
._1c{margin-left:-8.861760px;}
._4{margin-left:-7.659360px;}
._1{margin-left:-6.454080px;}
._5{margin-left:-5.356080px;}
._6{margin-left:-4.311360px;}
._8{margin-left:-3.177120px;}
._0{margin-left:-1.494000px;}
._2{width:1.015920px;}
._7{width:2.016720px;}
._3{width:3.050400px;}
._18{width:4.601040px;}
._c{width:5.616000px;}
._13{width:6.624000px;}
._10{width:7.668000px;}
._b{width:8.830080px;}
._a{width:9.936000px;}
._16{width:11.352960px;}
._11{width:12.384000px;}
._17{width:13.428000px;}
._d{width:14.634000px;}
._12{width:15.666000px;}
._9{width:16.680000px;}
._e{width:17.878080px;}
._f{width:18.907920px;}
._19{width:20.070720px;}
._1b{width:21.446640px;}
._27{width:22.964400px;}
._1a{width:24.405120px;}
._15{width:25.911120px;}
._14{width:27.270000px;}
._25{width:30.735360px;}
._26{width:31.934880px;}
._24{width:33.186240px;}
._23{width:34.312320px;}
._28{width:35.637120px;}
._22{width:2091.195840px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:2.520000px;}
.y37{bottom:3.060000px;}
.y39{bottom:5.940000px;}
.y2{bottom:6.510000px;}
.y3a{bottom:16.380000px;}
.y36{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y35{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y34{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y33{bottom:65.160000px;}
.y32{bottom:80.640000px;}
.y31{bottom:96.120000px;}
.y76{bottom:110.376000px;}
.y30{bottom:111.600000px;}
.y7d{bottom:114.876000px;}
.y75{bottom:124.236000px;}
.y7c{bottom:126.576000px;}
.y2f{bottom:127.260000px;}
.y74{bottom:128.736000px;}
.y73{bottom:137.916000px;}
.y7f{bottom:140.436000px;}
.y72{bottom:142.416000px;}
.y2e{bottom:142.740000px;}
.y7b{bottom:151.050000px;}
.y44{bottom:151.770000px;}
.y83{bottom:154.110000px;}
.y71{bottom:156.270000px;}
.y2d{bottom:158.220000px;}
.y70{bottom:167.970000px;}
.y7a{bottom:173.010000px;}
.y2c{bottom:173.700000px;}
.y43{bottom:173.730000px;}
.y2b{bottom:189.360000px;}
.y79{bottom:194.790000px;}
.y42{bottom:195.510000px;}
.y2a{bottom:204.840000px;}
.y6f{bottom:216.570000px;}
.y41{bottom:217.290000px;}
.y29{bottom:220.320000px;}
.y28{bottom:235.830000px;}
.y6e{bottom:238.350000px;}
.y40{bottom:239.070000px;}
.y78{bottom:244.290000px;}
.y27{bottom:251.490000px;}
.y6d{bottom:260.310000px;}
.y3f{bottom:260.850000px;}
.y26{bottom:266.970000px;}
.y6c{bottom:282.090000px;}
.y25{bottom:282.450000px;}
.y3e{bottom:282.810000px;}
.y24{bottom:297.930000px;}
.y6b{bottom:303.870000px;}
.y3d{bottom:304.590000px;}
.y23{bottom:313.590000px;}
.y6a{bottom:325.650000px;}
.y3c{bottom:326.370000px;}
.y22{bottom:329.070000px;}
.y38{bottom:341.895000px;}
.y21{bottom:344.550000px;}
.y68{bottom:347.475000px;}
.y69{bottom:353.415000px;}
.y20{bottom:360.030000px;}
.y13{bottom:369.435000px;}
.y1f{bottom:375.510000px;}
.y1e{bottom:391.170000px;}
.y67{bottom:391.215000px;}
.y1d{bottom:406.650000px;}
.y66{bottom:412.995000px;}
.y1c{bottom:422.130000px;}
.y65{bottom:434.775000px;}
.y1b{bottom:437.610000px;}
.y1a{bottom:453.270000px;}
.y64{bottom:456.735000px;}
.y19{bottom:468.750000px;}
.y63{bottom:478.515000px;}
.y18{bottom:484.230000px;}
.y17{bottom:499.710000px;}
.y62{bottom:500.295000px;}
.y16{bottom:515.415000px;}
.y61{bottom:522.075000px;}
.y77{bottom:523.335000px;}
.y7e{bottom:528.015000px;}
.y15{bottom:530.895000px;}
.y60{bottom:543.855000px;}
.y14{bottom:546.375000px;}
.y5f{bottom:565.815000px;}
.y5e{bottom:587.595000px;}
.y5d{bottom:609.405000px;}
.y5c{bottom:631.185000px;}
.y5b{bottom:653.145000px;}
.y5a{bottom:674.925000px;}
.y84{bottom:680.865000px;}
.y59{bottom:696.705000px;}
.y58{bottom:718.485000px;}
.y82{bottom:724.425000px;}
.y57{bottom:740.265000px;}
.y56{bottom:762.225000px;}
.y55{bottom:784.005000px;}
.y54{bottom:805.785000px;}
.y53{bottom:827.565000px;}
.y52{bottom:849.525000px;}
.y50{bottom:871.350000px;}
.y51{bottom:877.290000px;}
.y4f{bottom:893.130000px;}
.y4e{bottom:914.910000px;}
.y81{bottom:920.850000px;}
.y12{bottom:934.170000px;}
.y4d{bottom:936.690000px;}
.y11{bottom:954.150000px;}
.y4c{bottom:958.650000px;}
.y10{bottom:973.950000px;}
.y4b{bottom:980.430000px;}
.yf{bottom:994.290000px;}
.y4a{bottom:1002.210000px;}
.y80{bottom:1008.150000px;}
.ye{bottom:1016.070000px;}
.y49{bottom:1023.990000px;}
.yd{bottom:1037.850000px;}
.y48{bottom:1045.770000px;}
.yc{bottom:1061.070000px;}
.y46{bottom:1067.730000px;}
.y47{bottom:1073.670000px;}
.yb{bottom:1086.810000px;}
.y45{bottom:1089.510000px;}
.y9{bottom:1109.850000px;}
.y1{bottom:1131.450000px;}
.h12{height:21.661172px;}
.he{height:27.540000px;}
.h11{height:29.913047px;}
.hf{height:34.554727px;}
.hc{height:38.680664px;}
.h7{height:39.147891px;}
.h13{height:39.760312px;}
.ha{height:42.164648px;}
.h3{height:42.806602px;}
.hd{height:44.507812px;}
.h9{height:46.736719px;}
.h10{height:47.448281px;}
.h1c{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:51.574219px;}
.h1b{height:54.596250px;}
.h8{height:54.864844px;}
.h14{height:60.967969px;}
.h15{height:63.847969px;}
.h16{height:64.567969px;}
.h1a{height:66.007969px;}
.h6{height:71.613281px;}
.h18{height:74.647969px;}
.h2{height:77.436000px;}
.h17{height:79.687969px;}
.h19{height:112.087969px;}
.hb{height:558.975000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.w8{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x13{left:29.700000px;}
.x6{left:46.260000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x1c{left:111.815987px;}
.x36{left:115.595987px;}
.xb{left:116.855987px;}
.x8{left:132.345000px;}
.xe{left:134.315987px;}
.x14{left:140.075987px;}
.x1d{left:150.509987px;}
.x27{left:162.029987px;}
.x3{left:171.930000px;}
.x37{left:191.009973px;}
.x2e{left:195.509973px;}
.x2f{left:200.729987px;}
.x2a{left:237.629973px;}
.x2b{left:242.849987px;}
.x32{left:254.189973px;}
.x33{left:259.409987px;}
.x19{left:263.369973px;}
.x1a{left:268.589987px;}
.x24{left:277.769987px;}
.x10{left:303.194987px;}
.x1b{left:324.074987px;}
.xc{left:337.394987px;}
.x25{left:347.249987px;}
.x11{left:357.554987px;}
.x26{left:368.129987px;}
.x17{left:370.694973px;}
.x18{left:375.914987px;}
.x34{left:384.374973px;}
.x35{left:394.814987px;}
.xf{left:407.954987px;}
.x2c{left:411.014973px;}
.x2d{left:416.234987px;}
.x1e{left:425.954987px;}
.xd{left:446.474987px;}
.x1f{left:464.834987px;}
.x20{left:484.994987px;}
.xa{left:503.204987px;}
.x12{left:567.105000px;}
.x21{left:595.514987px;}
.x5{left:599.865000px;}
.x30{left:601.484973px;}
.x31{left:606.704987px;}
.x15{left:684.509973px;}
.x16{left:689.729987px;}
.x28{left:707.909973px;}
.x29{left:713.129987px;}
.x22{left:739.874987px;}
.x23{left:768.854987px;}
@media print{
.v13{vertical-align:-46.080000pt;}
.v9{vertical-align:-16.640000pt;}
.ve{vertical-align:-12.160000pt;}
.v11{vertical-align:-10.240000pt;}
.v4{vertical-align:-8.320000pt;}
.vf{vertical-align:-7.040000pt;}
.v5{vertical-align:-5.760000pt;}
.v1{vertical-align:-4.480000pt;}
.vc{vertical-align:-2.560000pt;}
.vb{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.v2{vertical-align:2.560000pt;}
.v10{vertical-align:4.480000pt;}
.v7{vertical-align:5.760000pt;}
.v3{vertical-align:7.040000pt;}
.v6{vertical-align:10.240000pt;}
.vd{vertical-align:12.160000pt;}
.v8{vertical-align:16.640000pt;}
.v12{vertical-align:45.440000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.597333pt;}
.ls7{letter-spacing:-0.441067pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls25{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls24{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.578560pt;}
.lsf{letter-spacing:0.611840pt;}
.lse{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.251840pt;}
.ls10{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.433600pt;}
.ls11{letter-spacing:1.633280pt;}
.lsa{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.516480pt;}
.lsc{letter-spacing:2.560000pt;}
.lsb{letter-spacing:3.589120pt;}
.ls12{letter-spacing:3.681280pt;}
.ls1b{letter-spacing:4.003840pt;}
.ls20{letter-spacing:5.283840pt;}
.ls18{letter-spacing:5.923840pt;}
.ls1e{letter-spacing:6.113280pt;}
.ls3{letter-spacing:6.560000pt;}
.ls16{letter-spacing:6.686720pt;}
.ls19{letter-spacing:9.569280pt;}
.ls1d{letter-spacing:9.571840pt;}
.ls15{letter-spacing:9.953280pt;}
.ls1a{letter-spacing:10.629120pt;}
.ls1f{letter-spacing:13.440000pt;}
.ls22{letter-spacing:35.450027pt;}
.ws2{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.264640pt;}
.wse{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.584533pt;}
.ws9{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.278933pt;}
.wsa{word-spacing:-10.122667pt;}
.wsb{word-spacing:-2.846720pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-1835.001600pt;}
._1f{margin-left:-572.965760pt;}
._20{margin-left:-80.000000pt;}
._21{margin-left:-57.172480pt;}
._1d{margin-left:-8.834560pt;}
._1c{margin-left:-7.877120pt;}
._4{margin-left:-6.808320pt;}
._1{margin-left:-5.736960pt;}
._5{margin-left:-4.760960pt;}
._6{margin-left:-3.832320pt;}
._8{margin-left:-2.824107pt;}
._0{margin-left:-1.328000pt;}
._2{width:0.903040pt;}
._7{width:1.792640pt;}
._3{width:2.711467pt;}
._18{width:4.089813pt;}
._c{width:4.992000pt;}
._13{width:5.888000pt;}
._10{width:6.816000pt;}
._b{width:7.848960pt;}
._a{width:8.832000pt;}
._16{width:10.091520pt;}
._11{width:11.008000pt;}
._17{width:11.936000pt;}
._d{width:13.008000pt;}
._12{width:13.925333pt;}
._9{width:14.826667pt;}
._e{width:15.891627pt;}
._f{width:16.807040pt;}
._19{width:17.840640pt;}
._1b{width:19.063680pt;}
._27{width:20.412800pt;}
._1a{width:21.693440pt;}
._15{width:23.032107pt;}
._14{width:24.240000pt;}
._25{width:27.320320pt;}
._26{width:28.386560pt;}
._24{width:29.498880pt;}
._23{width:30.499840pt;}
._28{width:31.677440pt;}
._22{width:1858.840747pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.240000pt;}
.y37{bottom:2.720000pt;}
.y39{bottom:5.280000pt;}
.y2{bottom:5.786667pt;}
.y3a{bottom:14.560000pt;}
.y36{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y35{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y34{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y33{bottom:57.920000pt;}
.y32{bottom:71.680000pt;}
.y31{bottom:85.440000pt;}
.y76{bottom:98.112000pt;}
.y30{bottom:99.200000pt;}
.y7d{bottom:102.112000pt;}
.y75{bottom:110.432000pt;}
.y7c{bottom:112.512000pt;}
.y2f{bottom:113.120000pt;}
.y74{bottom:114.432000pt;}
.y73{bottom:122.592000pt;}
.y7f{bottom:124.832000pt;}
.y72{bottom:126.592000pt;}
.y2e{bottom:126.880000pt;}
.y7b{bottom:134.266667pt;}
.y44{bottom:134.906667pt;}
.y83{bottom:136.986667pt;}
.y71{bottom:138.906667pt;}
.y2d{bottom:140.640000pt;}
.y70{bottom:149.306667pt;}
.y7a{bottom:153.786667pt;}
.y2c{bottom:154.400000pt;}
.y43{bottom:154.426667pt;}
.y2b{bottom:168.320000pt;}
.y79{bottom:173.146667pt;}
.y42{bottom:173.786667pt;}
.y2a{bottom:182.080000pt;}
.y6f{bottom:192.506667pt;}
.y41{bottom:193.146667pt;}
.y29{bottom:195.840000pt;}
.y28{bottom:209.626667pt;}
.y6e{bottom:211.866667pt;}
.y40{bottom:212.506667pt;}
.y78{bottom:217.146667pt;}
.y27{bottom:223.546667pt;}
.y6d{bottom:231.386667pt;}
.y3f{bottom:231.866667pt;}
.y26{bottom:237.306667pt;}
.y6c{bottom:250.746667pt;}
.y25{bottom:251.066667pt;}
.y3e{bottom:251.386667pt;}
.y24{bottom:264.826667pt;}
.y6b{bottom:270.106667pt;}
.y3d{bottom:270.746667pt;}
.y23{bottom:278.746667pt;}
.y6a{bottom:289.466667pt;}
.y3c{bottom:290.106667pt;}
.y22{bottom:292.506667pt;}
.y38{bottom:303.906667pt;}
.y21{bottom:306.266667pt;}
.y68{bottom:308.866667pt;}
.y69{bottom:314.146667pt;}
.y20{bottom:320.026667pt;}
.y13{bottom:328.386667pt;}
.y1f{bottom:333.786667pt;}
.y1e{bottom:347.706667pt;}
.y67{bottom:347.746667pt;}
.y1d{bottom:361.466667pt;}
.y66{bottom:367.106667pt;}
.y1c{bottom:375.226667pt;}
.y65{bottom:386.466667pt;}
.y1b{bottom:388.986667pt;}
.y1a{bottom:402.906667pt;}
.y64{bottom:405.986667pt;}
.y19{bottom:416.666667pt;}
.y63{bottom:425.346667pt;}
.y18{bottom:430.426667pt;}
.y17{bottom:444.186667pt;}
.y62{bottom:444.706667pt;}
.y16{bottom:458.146667pt;}
.y61{bottom:464.066667pt;}
.y77{bottom:465.186667pt;}
.y7e{bottom:469.346667pt;}
.y15{bottom:471.906667pt;}
.y60{bottom:483.426667pt;}
.y14{bottom:485.666667pt;}
.y5f{bottom:502.946667pt;}
.y5e{bottom:522.306667pt;}
.y5d{bottom:541.693333pt;}
.y5c{bottom:561.053333pt;}
.y5b{bottom:580.573333pt;}
.y5a{bottom:599.933333pt;}
.y84{bottom:605.213333pt;}
.y59{bottom:619.293333pt;}
.y58{bottom:638.653333pt;}
.y82{bottom:643.933333pt;}
.y57{bottom:658.013333pt;}
.y56{bottom:677.533333pt;}
.y55{bottom:696.893333pt;}
.y54{bottom:716.253333pt;}
.y53{bottom:735.613333pt;}
.y52{bottom:755.133333pt;}
.y50{bottom:774.533333pt;}
.y51{bottom:779.813333pt;}
.y4f{bottom:793.893333pt;}
.y4e{bottom:813.253333pt;}
.y81{bottom:818.533333pt;}
.y12{bottom:830.373333pt;}
.y4d{bottom:832.613333pt;}
.y11{bottom:848.133333pt;}
.y4c{bottom:852.133333pt;}
.y10{bottom:865.733333pt;}
.y4b{bottom:871.493333pt;}
.yf{bottom:883.813333pt;}
.y4a{bottom:890.853333pt;}
.y80{bottom:896.133333pt;}
.ye{bottom:903.173333pt;}
.y49{bottom:910.213333pt;}
.yd{bottom:922.533333pt;}
.y48{bottom:929.573333pt;}
.yc{bottom:943.173333pt;}
.y46{bottom:949.093333pt;}
.y47{bottom:954.373333pt;}
.yb{bottom:966.053333pt;}
.y45{bottom:968.453333pt;}
.y9{bottom:986.533333pt;}
.y1{bottom:1005.733333pt;}
.h12{height:19.254375pt;}
.he{height:24.480000pt;}
.h11{height:26.589375pt;}
.hf{height:30.715312pt;}
.hc{height:34.382812pt;}
.h7{height:34.798125pt;}
.h13{height:35.342500pt;}
.ha{height:37.479688pt;}
.h3{height:38.050313pt;}
.hd{height:39.562500pt;}
.h9{height:41.543750pt;}
.h10{height:42.176250pt;}
.h1c{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.843750pt;}
.h1b{height:48.530000pt;}
.h8{height:48.768750pt;}
.h14{height:54.193750pt;}
.h15{height:56.753750pt;}
.h16{height:57.393750pt;}
.h1a{height:58.673750pt;}
.h6{height:63.656250pt;}
.h18{height:66.353750pt;}
.h2{height:68.832000pt;}
.h17{height:70.833750pt;}
.h19{height:99.633750pt;}
.hb{height:496.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.w8{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x13{left:26.400000pt;}
.x6{left:41.120000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x1c{left:99.391988pt;}
.x36{left:102.751988pt;}
.xb{left:103.871988pt;}
.x8{left:117.640000pt;}
.xe{left:119.391988pt;}
.x14{left:124.511988pt;}
.x1d{left:133.786655pt;}
.x27{left:144.026655pt;}
.x3{left:152.826667pt;}
.x37{left:169.786643pt;}
.x2e{left:173.786643pt;}
.x2f{left:178.426655pt;}
.x2a{left:211.226643pt;}
.x2b{left:215.866655pt;}
.x32{left:225.946643pt;}
.x33{left:230.586655pt;}
.x19{left:234.106643pt;}
.x1a{left:238.746655pt;}
.x24{left:246.906655pt;}
.x10{left:269.506655pt;}
.x1b{left:288.066655pt;}
.xc{left:299.906655pt;}
.x25{left:308.666655pt;}
.x11{left:317.826655pt;}
.x26{left:327.226655pt;}
.x17{left:329.506643pt;}
.x18{left:334.146655pt;}
.x34{left:341.666643pt;}
.x35{left:350.946655pt;}
.xf{left:362.626655pt;}
.x2c{left:365.346643pt;}
.x2d{left:369.986655pt;}
.x1e{left:378.626655pt;}
.xd{left:396.866655pt;}
.x1f{left:413.186655pt;}
.x20{left:431.106655pt;}
.xa{left:447.293322pt;}
.x12{left:504.093333pt;}
.x21{left:529.346655pt;}
.x5{left:533.213333pt;}
.x30{left:534.653310pt;}
.x31{left:539.293322pt;}
.x15{left:608.453310pt;}
.x16{left:613.093322pt;}
.x28{left:629.253310pt;}
.x29{left:633.893322pt;}
.x22{left:657.666655pt;}
.x23{left:683.426655pt;}
}




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