
    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_df96c14b095c9f1ffa04748a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_64b14d2b1b3a6b8e0b62d706.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_dbc3eb3921120cb16aa10067.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_286675d17a1eac1f98470db9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_f3b9026956b430319d0ec2fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_87b24a8fe0d6278ec4edc0d0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57f48474f5a4780a38f7952f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_df9ce48ad52ebaf6eccc63ab.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ee206a312c2287b353f255b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.560000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.413400px;}
.ls28{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.ls26{letter-spacing:-0.100200px;}
.ls4{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.460080px;}
.ls1e{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.828000px;}
.lsd{letter-spacing:0.900000px;}
.lsb{letter-spacing:0.979920px;}
.ls24{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.620000px;}
.ls1f{letter-spacing:2.340000px;}
.ls10{letter-spacing:3.780000px;}
.ls8{letter-spacing:4.500000px;}
.ls17{letter-spacing:5.220000px;}
.lsf{letter-spacing:6.660000px;}
.ls13{letter-spacing:7.380000px;}
.ls14{letter-spacing:10.980000px;}
.ls20{letter-spacing:13.860000px;}
.ls22{letter-spacing:14.580000px;}
.ls2a{letter-spacing:16.740000px;}
.ls11{letter-spacing:18.180000px;}
.ls19{letter-spacing:31.602720px;}
.ls1b{letter-spacing:31.626720px;}
.ls1a{letter-spacing:49.602720px;}
.ls18{letter-spacing:49.626720px;}
.ls1c{letter-spacing:434.316000px;}
.ls2b{letter-spacing:849.216000px;}
.ls0{letter-spacing:930.000000px;}
.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;}
}
.wsb{word-spacing:-32.808240px;}
.wsd{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.768000px;}
.wse{word-spacing:-15.606000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.839800px;}
.ws8{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.526600px;}
.ws0{word-spacing:-13.447440px;}
.ws5{word-spacing:0.000000px;}
._2b{margin-left:-10.640160px;}
._a{margin-left:-4.225680px;}
._b{margin-left:-3.107520px;}
._6{margin-left:-2.049120px;}
._4{margin-left:-1.010160px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._3{width:3.614640px;}
._5{width:4.620960px;}
._19{width:5.993280px;}
._9{width:7.111440px;}
._d{width:8.802000px;}
._7{width:10.218960px;}
._8{width:11.234880px;}
._c{width:12.250800px;}
._16{width:13.762080px;}
._10{width:16.655040px;}
._11{width:17.685840px;}
._12{width:19.009920px;}
._1a{width:20.724240px;}
._1f{width:21.742800px;}
._1b{width:23.067360px;}
._1d{width:24.621120px;}
._1c{width:25.637040px;}
._2e{width:26.659680px;}
._20{width:27.739200px;}
._14{width:29.162880px;}
._15{width:30.640800px;}
._22{width:31.884240px;}
._25{width:33.226560px;}
._26{width:34.488960px;}
._1e{width:35.663520px;}
._e{width:36.812160px;}
._f{width:38.246400px;}
._2d{width:39.680640px;}
._34{width:40.697280px;}
._13{width:41.891760px;}
._18{width:43.206480px;}
._27{width:45.537120px;}
._21{width:47.150640px;}
._2a{width:48.363120px;}
._30{width:49.411440px;}
._2c{width:52.785360px;}
._3e{width:57.787920px;}
._44{width:62.418000px;}
._43{width:63.704160px;}
._2f{width:69.142320px;}
._24{width:73.283040px;}
._23{width:74.460960px;}
._37{width:83.413200px;}
._38{width:89.489280px;}
._28{width:97.886880px;}
._32{width:112.767120px;}
._41{width:140.436000px;}
._3c{width:145.754640px;}
._45{width:152.657760px;}
._29{width:153.822240px;}
._31{width:171.648720px;}
._42{width:187.045200px;}
._3b{width:188.988240px;}
._3a{width:230.135760px;}
._3d{width:258.778080px;}
._3f{width:263.413200px;}
._33{width:267.127200px;}
._39{width:360.293040px;}
._36{width:479.574000px;}
._35{width:480.709440px;}
._17{width:767.850240px;}
._2{width:768.960480px;}
._40{width:963.331200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y43{bottom:56.160000px;}
.y42{bottom:88.740000px;}
.y3f{bottom:106.020000px;}
.yca{bottom:109.260000px;}
.y83{bottom:114.660000px;}
.y93{bottom:120.060000px;}
.yf7{bottom:121.140000px;}
.y3e{bottom:123.300000px;}
.yc9{bottom:126.540000px;}
.y82{bottom:131.940000px;}
.y92{bottom:137.160000px;}
.yf6{bottom:138.240000px;}
.y3d{bottom:140.400000px;}
.yc8{bottom:143.820000px;}
.y81{bottom:149.040000px;}
.y91{bottom:154.440000px;}
.yf5{bottom:155.520000px;}
.y3c{bottom:157.680000px;}
.yc7{bottom:162.030000px;}
.y80{bottom:166.350000px;}
.y90{bottom:171.750000px;}
.yf4{bottom:172.830000px;}
.y3b{bottom:174.990000px;}
.yc6{bottom:179.310000px;}
.y7f{bottom:183.630000px;}
.y8f{bottom:189.030000px;}
.yf3{bottom:190.110000px;}
.y3a{bottom:192.270000px;}
.yc5{bottom:196.590000px;}
.y7e{bottom:200.910000px;}
.y8e{bottom:206.310000px;}
.yf2{bottom:207.390000px;}
.y39{bottom:209.550000px;}
.yc4{bottom:213.870000px;}
.y7d{bottom:218.190000px;}
.y8d{bottom:223.590000px;}
.yf1{bottom:224.670000px;}
.y49{bottom:226.470000px;}
.y38{bottom:226.830000px;}
.yc3{bottom:231.150000px;}
.y7c{bottom:235.470000px;}
.y8c{bottom:241.770000px;}
.yf9{bottom:243.570000px;}
.y37{bottom:243.930000px;}
.yc2{bottom:248.250000px;}
.y7b{bottom:252.570000px;}
.y8b{bottom:259.050000px;}
.y36{bottom:261.210000px;}
.yc1{bottom:266.610000px;}
.y7a{bottom:269.850000px;}
.y8a{bottom:276.330000px;}
.y35{bottom:278.490000px;}
.yc0{bottom:283.890000px;}
.y79{bottom:287.130000px;}
.y89{bottom:293.610000px;}
.y41{bottom:295.410000px;}
.y34{bottom:295.770000px;}
.ybf{bottom:301.170000px;}
.y78{bottom:304.410000px;}
.yf0{bottom:310.890000px;}
.y88{bottom:311.970000px;}
.y33{bottom:313.050000px;}
.ybe{bottom:319.530000px;}
.y77{bottom:321.690000px;}
.yef{bottom:328.170000px;}
.y87{bottom:329.250000px;}
.y32{bottom:330.330000px;}
.ybd{bottom:336.810000px;}
.y76{bottom:338.790000px;}
.yee{bottom:345.270000px;}
.y86{bottom:346.350000px;}
.y31{bottom:347.430000px;}
.ybc{bottom:353.910000px;}
.y75{bottom:356.070000px;}
.yed{bottom:362.550000px;}
.y85{bottom:363.630000px;}
.y30{bottom:364.710000px;}
.ybb{bottom:371.190000px;}
.y74{bottom:373.350000px;}
.yec{bottom:379.830000px;}
.y2f{bottom:381.990000px;}
.yba{bottom:388.470000px;}
.y73{bottom:390.630000px;}
.yeb{bottom:397.110000px;}
.y2e{bottom:399.270000px;}
.yb9{bottom:405.795000px;}
.y72{bottom:407.955000px;}
.yea{bottom:414.435000px;}
.y2d{bottom:416.595000px;}
.yb8{bottom:424.155000px;}
.y71{bottom:425.235000px;}
.ye9{bottom:431.715000px;}
.y2c{bottom:433.695000px;}
.yb7{bottom:441.255000px;}
.y70{bottom:442.335000px;}
.ye8{bottom:448.815000px;}
.y2b{bottom:450.975000px;}
.y6f{bottom:459.615000px;}
.ye7{bottom:466.095000px;}
.y2a{bottom:468.255000px;}
.y6e{bottom:476.895000px;}
.ye6{bottom:483.375000px;}
.y29{bottom:485.535000px;}
.y6d{bottom:494.175000px;}
.yb6{bottom:495.255000px;}
.ye5{bottom:500.655000px;}
.y28{bottom:502.815000px;}
.y6c{bottom:511.455000px;}
.yb5{bottom:512.535000px;}
.ye4{bottom:517.935000px;}
.y84{bottom:519.735000px;}
.y27{bottom:520.095000px;}
.y6b{bottom:528.735000px;}
.yb4{bottom:530.895000px;}
.ye3{bottom:535.035000px;}
.y4c{bottom:536.835000px;}
.y26{bottom:537.195000px;}
.y6a{bottom:545.835000px;}
.yb3{bottom:547.995000px;}
.y4b{bottom:554.115000px;}
.y25{bottom:554.475000px;}
.y69{bottom:563.115000px;}
.yb2{bottom:566.355000px;}
.ye2{bottom:569.595000px;}
.y24{bottom:571.755000px;}
.yb1{bottom:583.635000px;}
.ye1{bottom:586.875000px;}
.y23{bottom:589.035000px;}
.y68{bottom:597.675000px;}
.yb0{bottom:600.915000px;}
.ye0{bottom:604.155000px;}
.y22{bottom:606.315000px;}
.y67{bottom:614.955000px;}
.yaf{bottom:617.835000px;}
.ydf{bottom:621.075000px;}
.y21{bottom:623.595000px;}
.y66{bottom:632.235000px;}
.yae{bottom:635.295000px;}
.yde{bottom:638.535000px;}
.yf8{bottom:640.335000px;}
.y20{bottom:640.695000px;}
.y65{bottom:650.445000px;}
.yad{bottom:652.605000px;}
.ydd{bottom:655.845000px;}
.y1f{bottom:658.005000px;}
.y64{bottom:667.725000px;}
.yac{bottom:669.885000px;}
.ydc{bottom:673.125000px;}
.y1e{bottom:675.285000px;}
.y63{bottom:685.005000px;}
.yab{bottom:687.165000px;}
.ydb{bottom:690.405000px;}
.y1d{bottom:692.205000px;}
.y40{bottom:692.565000px;}
.y62{bottom:703.365000px;}
.yaa{bottom:704.445000px;}
.yda{bottom:707.325000px;}
.y1c{bottom:709.845000px;}
.y61{bottom:720.645000px;}
.ya9{bottom:721.725000px;}
.yd9{bottom:724.605000px;}
.y1b{bottom:726.945000px;}
.y60{bottom:738.825000px;}
.yd8{bottom:742.065000px;}
.y1a{bottom:744.225000px;}
.y5f{bottom:756.105000px;}
.yd7{bottom:759.345000px;}
.y19{bottom:761.505000px;}
.y5e{bottom:773.385000px;}
.yd6{bottom:776.625000px;}
.y18{bottom:778.785000px;}
.y5d{bottom:790.665000px;}
.yd5{bottom:793.905000px;}
.y17{bottom:796.065000px;}
.ya8{bottom:807.945000px;}
.y5c{bottom:809.025000px;}
.yd4{bottom:811.185000px;}
.y16{bottom:813.345000px;}
.ya7{bottom:825.225000px;}
.y5b{bottom:826.305000px;}
.yd3{bottom:828.285000px;}
.y48{bottom:830.085000px;}
.y15{bottom:830.445000px;}
.ya6{bottom:842.325000px;}
.y5a{bottom:843.405000px;}
.yd2{bottom:845.565000px;}
.y14{bottom:847.725000px;}
.y59{bottom:860.685000px;}
.yd1{bottom:862.845000px;}
.y13{bottom:865.005000px;}
.ya5{bottom:877.965000px;}
.y58{bottom:879.045000px;}
.yd0{bottom:880.125000px;}
.y12{bottom:882.285000px;}
.ya4{bottom:895.290000px;}
.y57{bottom:896.370000px;}
.ycf{bottom:897.450000px;}
.y11{bottom:899.610000px;}
.ya3{bottom:912.570000px;}
.y56{bottom:913.650000px;}
.yce{bottom:914.730000px;}
.y10{bottom:916.890000px;}
.ya2{bottom:929.670000px;}
.y55{bottom:930.750000px;}
.ycd{bottom:931.830000px;}
.yf{bottom:933.990000px;}
.ya1{bottom:948.030000px;}
.y54{bottom:949.110000px;}
.ye{bottom:951.270000px;}
.ya0{bottom:965.310000px;}
.y53{bottom:966.390000px;}
.yd{bottom:968.190000px;}
.y47{bottom:968.550000px;}
.y9f{bottom:982.590000px;}
.y52{bottom:983.670000px;}
.y4a{bottom:985.470000px;}
.yc{bottom:985.830000px;}
.y9e{bottom:999.870000px;}
.y51{bottom:1000.950000px;}
.yb{bottom:1003.110000px;}
.y9d{bottom:1017.150000px;}
.ycc{bottom:1018.230000px;}
.y50{bottom:1019.310000px;}
.ya{bottom:1020.390000px;}
.y9c{bottom:1035.330000px;}
.y4f{bottom:1036.410000px;}
.y9{bottom:1037.490000px;}
.y9b{bottom:1052.610000px;}
.y4e{bottom:1053.690000px;}
.y8{bottom:1054.770000px;}
.y9a{bottom:1069.890000px;}
.y4d{bottom:1070.970000px;}
.y7{bottom:1071.690000px;}
.y46{bottom:1072.050000px;}
.y99{bottom:1087.170000px;}
.ycb{bottom:1088.250000px;}
.y6{bottom:1089.330000px;}
.y98{bottom:1105.530000px;}
.y5{bottom:1106.610000px;}
.y97{bottom:1122.630000px;}
.y4{bottom:1123.710000px;}
.y96{bottom:1139.910000px;}
.y45{bottom:1141.020000px;}
.y95{bottom:1157.220000px;}
.y3{bottom:1158.300000px;}
.y94{bottom:1174.500000px;}
.y2{bottom:1175.220000px;}
.y44{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h6{height:52.998047px;}
.h8{height:53.252930px;}
.h5{height:53.573906px;}
.h9{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h7{height:61.423863px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:124.055987px;}
.xa{left:136.115987px;}
.xb{left:457.274987px;}
.x3{left:461.414987px;}
.xc{left:487.004987px;}
.x8{left:537.944987px;}
.x6{left:551.444987px;}
.x5{left:575.204987px;}
.x4{left:637.484987px;}
.x7{left:705.929987px;}
.x9{left:786.749987px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.367467pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls26{letter-spacing:-0.089067pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.408960pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.736000pt;}
.lsd{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.871040pt;}
.ls24{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls10{letter-spacing:3.360000pt;}
.ls8{letter-spacing:4.000000pt;}
.ls17{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.920000pt;}
.ls13{letter-spacing:6.560000pt;}
.ls14{letter-spacing:9.760000pt;}
.ls20{letter-spacing:12.320000pt;}
.ls22{letter-spacing:12.960000pt;}
.ls2a{letter-spacing:14.880000pt;}
.ls11{letter-spacing:16.160000pt;}
.ls19{letter-spacing:28.091307pt;}
.ls1b{letter-spacing:28.112640pt;}
.ls1a{letter-spacing:44.091307pt;}
.ls18{letter-spacing:44.112640pt;}
.ls1c{letter-spacing:386.058667pt;}
.ls2b{letter-spacing:754.858667pt;}
.ls0{letter-spacing:826.666667pt;}
.wsb{word-spacing:-29.162880pt;}
.wsd{word-spacing:-14.240000pt;}
.ws9{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.872000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.190933pt;}
.ws8{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.ws10{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.912533pt;}
.ws0{word-spacing:-11.953280pt;}
.ws5{word-spacing:0.000000pt;}
._2b{margin-left:-9.457920pt;}
._a{margin-left:-3.756160pt;}
._b{margin-left:-2.762240pt;}
._6{margin-left:-1.821440pt;}
._4{margin-left:-0.897920pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._3{width:3.213013pt;}
._5{width:4.107520pt;}
._19{width:5.327360pt;}
._9{width:6.321280pt;}
._d{width:7.824000pt;}
._7{width:9.083520pt;}
._8{width:9.986560pt;}
._c{width:10.889600pt;}
._16{width:12.232960pt;}
._10{width:14.804480pt;}
._11{width:15.720747pt;}
._12{width:16.897707pt;}
._1a{width:18.421547pt;}
._1f{width:19.326933pt;}
._1b{width:20.504320pt;}
._1d{width:21.885440pt;}
._1c{width:22.788480pt;}
._2e{width:23.697493pt;}
._20{width:24.657067pt;}
._14{width:25.922560pt;}
._15{width:27.236267pt;}
._22{width:28.341547pt;}
._25{width:29.534720pt;}
._26{width:30.656853pt;}
._1e{width:31.700907pt;}
._e{width:32.721920pt;}
._f{width:33.996800pt;}
._2d{width:35.271680pt;}
._34{width:36.175360pt;}
._13{width:37.237120pt;}
._18{width:38.405760pt;}
._27{width:40.477440pt;}
._21{width:41.911680pt;}
._2a{width:42.989440pt;}
._30{width:43.921280pt;}
._2c{width:46.920320pt;}
._3e{width:51.367040pt;}
._44{width:55.482667pt;}
._43{width:56.625920pt;}
._2f{width:61.459840pt;}
._24{width:65.140480pt;}
._23{width:66.187520pt;}
._37{width:74.145067pt;}
._38{width:79.546027pt;}
._28{width:87.010560pt;}
._32{width:100.237440pt;}
._41{width:124.832000pt;}
._3c{width:129.559680pt;}
._45{width:135.695787pt;}
._29{width:136.730880pt;}
._31{width:152.576640pt;}
._42{width:166.262400pt;}
._3b{width:167.989547pt;}
._3a{width:204.565120pt;}
._3d{width:230.024960pt;}
._3f{width:234.145067pt;}
._33{width:237.446400pt;}
._39{width:320.260480pt;}
._36{width:426.288000pt;}
._35{width:427.297280pt;}
._17{width:682.533547pt;}
._2{width:683.520427pt;}
._40{width:856.294400pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:49.920000pt;}
.y42{bottom:78.880000pt;}
.y3f{bottom:94.240000pt;}
.yca{bottom:97.120000pt;}
.y83{bottom:101.920000pt;}
.y93{bottom:106.720000pt;}
.yf7{bottom:107.680000pt;}
.y3e{bottom:109.600000pt;}
.yc9{bottom:112.480000pt;}
.y82{bottom:117.280000pt;}
.y92{bottom:121.920000pt;}
.yf6{bottom:122.880000pt;}
.y3d{bottom:124.800000pt;}
.yc8{bottom:127.840000pt;}
.y81{bottom:132.480000pt;}
.y91{bottom:137.280000pt;}
.yf5{bottom:138.240000pt;}
.y3c{bottom:140.160000pt;}
.yc7{bottom:144.026667pt;}
.y80{bottom:147.866667pt;}
.y90{bottom:152.666667pt;}
.yf4{bottom:153.626667pt;}
.y3b{bottom:155.546667pt;}
.yc6{bottom:159.386667pt;}
.y7f{bottom:163.226667pt;}
.y8f{bottom:168.026667pt;}
.yf3{bottom:168.986667pt;}
.y3a{bottom:170.906667pt;}
.yc5{bottom:174.746667pt;}
.y7e{bottom:178.586667pt;}
.y8e{bottom:183.386667pt;}
.yf2{bottom:184.346667pt;}
.y39{bottom:186.266667pt;}
.yc4{bottom:190.106667pt;}
.y7d{bottom:193.946667pt;}
.y8d{bottom:198.746667pt;}
.yf1{bottom:199.706667pt;}
.y49{bottom:201.306667pt;}
.y38{bottom:201.626667pt;}
.yc3{bottom:205.466667pt;}
.y7c{bottom:209.306667pt;}
.y8c{bottom:214.906667pt;}
.yf9{bottom:216.506667pt;}
.y37{bottom:216.826667pt;}
.yc2{bottom:220.666667pt;}
.y7b{bottom:224.506667pt;}
.y8b{bottom:230.266667pt;}
.y36{bottom:232.186667pt;}
.yc1{bottom:236.986667pt;}
.y7a{bottom:239.866667pt;}
.y8a{bottom:245.626667pt;}
.y35{bottom:247.546667pt;}
.yc0{bottom:252.346667pt;}
.y79{bottom:255.226667pt;}
.y89{bottom:260.986667pt;}
.y41{bottom:262.586667pt;}
.y34{bottom:262.906667pt;}
.ybf{bottom:267.706667pt;}
.y78{bottom:270.586667pt;}
.yf0{bottom:276.346667pt;}
.y88{bottom:277.306667pt;}
.y33{bottom:278.266667pt;}
.ybe{bottom:284.026667pt;}
.y77{bottom:285.946667pt;}
.yef{bottom:291.706667pt;}
.y87{bottom:292.666667pt;}
.y32{bottom:293.626667pt;}
.ybd{bottom:299.386667pt;}
.y76{bottom:301.146667pt;}
.yee{bottom:306.906667pt;}
.y86{bottom:307.866667pt;}
.y31{bottom:308.826667pt;}
.ybc{bottom:314.586667pt;}
.y75{bottom:316.506667pt;}
.yed{bottom:322.266667pt;}
.y85{bottom:323.226667pt;}
.y30{bottom:324.186667pt;}
.ybb{bottom:329.946667pt;}
.y74{bottom:331.866667pt;}
.yec{bottom:337.626667pt;}
.y2f{bottom:339.546667pt;}
.yba{bottom:345.306667pt;}
.y73{bottom:347.226667pt;}
.yeb{bottom:352.986667pt;}
.y2e{bottom:354.906667pt;}
.yb9{bottom:360.706667pt;}
.y72{bottom:362.626667pt;}
.yea{bottom:368.386667pt;}
.y2d{bottom:370.306667pt;}
.yb8{bottom:377.026667pt;}
.y71{bottom:377.986667pt;}
.ye9{bottom:383.746667pt;}
.y2c{bottom:385.506667pt;}
.yb7{bottom:392.226667pt;}
.y70{bottom:393.186667pt;}
.ye8{bottom:398.946667pt;}
.y2b{bottom:400.866667pt;}
.y6f{bottom:408.546667pt;}
.ye7{bottom:414.306667pt;}
.y2a{bottom:416.226667pt;}
.y6e{bottom:423.906667pt;}
.ye6{bottom:429.666667pt;}
.y29{bottom:431.586667pt;}
.y6d{bottom:439.266667pt;}
.yb6{bottom:440.226667pt;}
.ye5{bottom:445.026667pt;}
.y28{bottom:446.946667pt;}
.y6c{bottom:454.626667pt;}
.yb5{bottom:455.586667pt;}
.ye4{bottom:460.386667pt;}
.y84{bottom:461.986667pt;}
.y27{bottom:462.306667pt;}
.y6b{bottom:469.986667pt;}
.yb4{bottom:471.906667pt;}
.ye3{bottom:475.586667pt;}
.y4c{bottom:477.186667pt;}
.y26{bottom:477.506667pt;}
.y6a{bottom:485.186667pt;}
.yb3{bottom:487.106667pt;}
.y4b{bottom:492.546667pt;}
.y25{bottom:492.866667pt;}
.y69{bottom:500.546667pt;}
.yb2{bottom:503.426667pt;}
.ye2{bottom:506.306667pt;}
.y24{bottom:508.226667pt;}
.yb1{bottom:518.786667pt;}
.ye1{bottom:521.666667pt;}
.y23{bottom:523.586667pt;}
.y68{bottom:531.266667pt;}
.yb0{bottom:534.146667pt;}
.ye0{bottom:537.026667pt;}
.y22{bottom:538.946667pt;}
.y67{bottom:546.626667pt;}
.yaf{bottom:549.186667pt;}
.ydf{bottom:552.066667pt;}
.y21{bottom:554.306667pt;}
.y66{bottom:561.986667pt;}
.yae{bottom:564.706667pt;}
.yde{bottom:567.586667pt;}
.yf8{bottom:569.186667pt;}
.y20{bottom:569.506667pt;}
.y65{bottom:578.173333pt;}
.yad{bottom:580.093333pt;}
.ydd{bottom:582.973333pt;}
.y1f{bottom:584.893333pt;}
.y64{bottom:593.533333pt;}
.yac{bottom:595.453333pt;}
.ydc{bottom:598.333333pt;}
.y1e{bottom:600.253333pt;}
.y63{bottom:608.893333pt;}
.yab{bottom:610.813333pt;}
.ydb{bottom:613.693333pt;}
.y1d{bottom:615.293333pt;}
.y40{bottom:615.613333pt;}
.y62{bottom:625.213333pt;}
.yaa{bottom:626.173333pt;}
.yda{bottom:628.733333pt;}
.y1c{bottom:630.973333pt;}
.y61{bottom:640.573333pt;}
.ya9{bottom:641.533333pt;}
.yd9{bottom:644.093333pt;}
.y1b{bottom:646.173333pt;}
.y60{bottom:656.733333pt;}
.yd8{bottom:659.613333pt;}
.y1a{bottom:661.533333pt;}
.y5f{bottom:672.093333pt;}
.yd7{bottom:674.973333pt;}
.y19{bottom:676.893333pt;}
.y5e{bottom:687.453333pt;}
.yd6{bottom:690.333333pt;}
.y18{bottom:692.253333pt;}
.y5d{bottom:702.813333pt;}
.yd5{bottom:705.693333pt;}
.y17{bottom:707.613333pt;}
.ya8{bottom:718.173333pt;}
.y5c{bottom:719.133333pt;}
.yd4{bottom:721.053333pt;}
.y16{bottom:722.973333pt;}
.ya7{bottom:733.533333pt;}
.y5b{bottom:734.493333pt;}
.yd3{bottom:736.253333pt;}
.y48{bottom:737.853333pt;}
.y15{bottom:738.173333pt;}
.ya6{bottom:748.733333pt;}
.y5a{bottom:749.693333pt;}
.yd2{bottom:751.613333pt;}
.y14{bottom:753.533333pt;}
.y59{bottom:765.053333pt;}
.yd1{bottom:766.973333pt;}
.y13{bottom:768.893333pt;}
.ya5{bottom:780.413333pt;}
.y58{bottom:781.373333pt;}
.yd0{bottom:782.333333pt;}
.y12{bottom:784.253333pt;}
.ya4{bottom:795.813333pt;}
.y57{bottom:796.773333pt;}
.ycf{bottom:797.733333pt;}
.y11{bottom:799.653333pt;}
.ya3{bottom:811.173333pt;}
.y56{bottom:812.133333pt;}
.yce{bottom:813.093333pt;}
.y10{bottom:815.013333pt;}
.ya2{bottom:826.373333pt;}
.y55{bottom:827.333333pt;}
.ycd{bottom:828.293333pt;}
.yf{bottom:830.213333pt;}
.ya1{bottom:842.693333pt;}
.y54{bottom:843.653333pt;}
.ye{bottom:845.573333pt;}
.ya0{bottom:858.053333pt;}
.y53{bottom:859.013333pt;}
.yd{bottom:860.613333pt;}
.y47{bottom:860.933333pt;}
.y9f{bottom:873.413333pt;}
.y52{bottom:874.373333pt;}
.y4a{bottom:875.973333pt;}
.yc{bottom:876.293333pt;}
.y9e{bottom:888.773333pt;}
.y51{bottom:889.733333pt;}
.yb{bottom:891.653333pt;}
.y9d{bottom:904.133333pt;}
.ycc{bottom:905.093333pt;}
.y50{bottom:906.053333pt;}
.ya{bottom:907.013333pt;}
.y9c{bottom:920.293333pt;}
.y4f{bottom:921.253333pt;}
.y9{bottom:922.213333pt;}
.y9b{bottom:935.653333pt;}
.y4e{bottom:936.613333pt;}
.y8{bottom:937.573333pt;}
.y9a{bottom:951.013333pt;}
.y4d{bottom:951.973333pt;}
.y7{bottom:952.613333pt;}
.y46{bottom:952.933333pt;}
.y99{bottom:966.373333pt;}
.ycb{bottom:967.333333pt;}
.y6{bottom:968.293333pt;}
.y98{bottom:982.693333pt;}
.y5{bottom:983.653333pt;}
.y97{bottom:997.893333pt;}
.y4{bottom:998.853333pt;}
.y96{bottom:1013.253333pt;}
.y45{bottom:1014.240000pt;}
.y95{bottom:1028.640000pt;}
.y3{bottom:1029.600000pt;}
.y94{bottom:1044.000000pt;}
.y2{bottom:1044.640000pt;}
.y44{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h6{height:47.109375pt;}
.h8{height:47.335938pt;}
.h5{height:47.621250pt;}
.h9{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h7{height:54.598989pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:110.271988pt;}
.xa{left:120.991988pt;}
.xb{left:406.466655pt;}
.x3{left:410.146655pt;}
.xc{left:432.893322pt;}
.x8{left:478.173322pt;}
.x6{left:490.173322pt;}
.x5{left:511.293322pt;}
.x4{left:566.653322pt;}
.x7{left:627.493322pt;}
.x9{left:699.333322pt;}
}




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