
    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_108871df379777a4695a21ee.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_3cd19049c29111fe282b2609.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_7f0c93818b9eb682c33c7c87.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0101ae702aa3e63b896a6294.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9eb0b9c2f330f7e3adf9a035.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cceebfdd766e606877b4856a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.666000px;}
.ls2{letter-spacing:2.340000px;}
.ls1{letter-spacing:3.780000px;}
.ls7{letter-spacing:5.940000px;}
.lsb{letter-spacing:7.380000px;}
.ls18{letter-spacing:16.506720px;}
.ls16{letter-spacing:46.026720px;}
.lsc{letter-spacing:49.626720px;}
.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.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsd{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.506440px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._d{margin-left:-4.025520px;}
._c{margin-left:-2.983680px;}
._1{margin-left:-1.088640px;}
._0{width:1.185840px;}
._4{width:2.441040px;}
._6{width:3.834720px;}
._b{width:5.426640px;}
._a{width:6.459840px;}
._f{width:8.339520px;}
._e{width:9.501840px;}
._8{width:11.483280px;}
._7{width:12.489840px;}
._13{width:13.543200px;}
._10{width:16.194960px;}
._9{width:17.937360px;}
._12{width:19.494720px;}
._11{width:20.916000px;}
._1e{width:22.777920px;}
._1a{width:24.152400px;}
._3{width:25.567920px;}
._2{width:27.100080px;}
._27{width:33.773760px;}
._28{width:35.902560px;}
._2b{width:46.194480px;}
._2a{width:47.509200px;}
._29{width:49.660560px;}
._19{width:51.766320px;}
._17{width:52.887600px;}
._18{width:54.300000px;}
._20{width:56.542320px;}
._16{width:61.172640px;}
._15{width:62.174160px;}
._1b{width:64.131840px;}
._1c{width:65.138400px;}
._1d{width:66.154800px;}
._21{width:80.696880px;}
._22{width:82.104000px;}
._24{width:89.346000px;}
._23{width:90.476640px;}
._1f{width:103.409760px;}
._26{width:108.882720px;}
._25{width:110.077920px;}
._14{width:142.310640px;}
._5{width:201.204000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(75,125,146);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y33{bottom:5.940000px;}
.y7{bottom:14.760000px;}
.y32{bottom:25.740000px;}
.y6{bottom:43.920000px;}
.y31{bottom:45.540000px;}
.y3d{bottom:55.260000px;}
.yd{bottom:59.580000px;}
.y5{bottom:64.080000px;}
.y30{bottom:65.340000px;}
.yb{bottom:73.800000px;}
.yb9{bottom:77.940000px;}
.ya{bottom:78.300000px;}
.y87{bottom:81.720000px;}
.yde{bottom:83.880000px;}
.y2f{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.yd9{bottom:86.940000px;}
.y71{bottom:92.520000px;}
.yb7{bottom:95.940000px;}
.yb8{bottom:97.920000px;}
.y86{bottom:101.520000px;}
.ydd{bottom:103.680000px;}
.y2e{bottom:105.120000px;}
.yd8{bottom:106.920000px;}
.y9{bottom:107.490000px;}
.y70{bottom:112.320000px;}
.y3b{bottom:113.400000px;}
.yb5{bottom:115.920000px;}
.y85{bottom:121.320000px;}
.y3{bottom:122.610000px;}
.ydc{bottom:123.660000px;}
.y2d{bottom:124.965000px;}
.yd7{bottom:126.720000px;}
.y6f{bottom:132.120000px;}
.y3a{bottom:133.200000px;}
.yb4{bottom:135.720000px;}
.y8{bottom:136.650000px;}
.ydb{bottom:140.940000px;}
.y84{bottom:141.120000px;}
.y2c{bottom:144.765000px;}
.yd6{bottom:146.520000px;}
.y6e{bottom:152.130000px;}
.y39{bottom:153.030000px;}
.yb3{bottom:155.550000px;}
.yda{bottom:158.070000px;}
.y83{bottom:161.130000px;}
.y2b{bottom:164.565000px;}
.yd5{bottom:166.350000px;}
.y6d{bottom:171.930000px;}
.y38{bottom:172.830000px;}
.yb2{bottom:175.350000px;}
.y82{bottom:180.930000px;}
.y2a{bottom:184.365000px;}
.yd4{bottom:186.150000px;}
.y37{bottom:192.630000px;}
.yb1{bottom:195.150000px;}
.y6c{bottom:200.730000px;}
.y29{bottom:204.345000px;}
.yd3{bottom:206.130000px;}
.y81{bottom:209.730000px;}
.yb0{bottom:215.130000px;}
.y36{bottom:217.830000px;}
.y6b{bottom:220.530000px;}
.y28{bottom:224.145000px;}
.yd2{bottom:225.930000px;}
.y80{bottom:229.530000px;}
.y35{bottom:232.410000px;}
.yaf{bottom:234.930000px;}
.y6a{bottom:240.330000px;}
.y27{bottom:243.945000px;}
.yd1{bottom:245.730000px;}
.y7f{bottom:249.330000px;}
.y34{bottom:252.210000px;}
.yae{bottom:254.730000px;}
.y69{bottom:260.310000px;}
.y26{bottom:263.745000px;}
.yd0{bottom:265.530000px;}
.y7e{bottom:269.310000px;}
.yad{bottom:274.530000px;}
.y68{bottom:280.110000px;}
.y25{bottom:283.545000px;}
.ycf{bottom:285.330000px;}
.y17{bottom:286.770000px;}
.y7d{bottom:289.110000px;}
.yac{bottom:294.330000px;}
.y24{bottom:303.525000px;}
.yce{bottom:305.310000px;}
.y67{bottom:308.910000px;}
.yab{bottom:314.310000px;}
.y23{bottom:323.325000px;}
.ycd{bottom:325.110000px;}
.y66{bottom:328.710000px;}
.yaa{bottom:334.110000px;}
.y22{bottom:343.125000px;}
.ycc{bottom:344.910000px;}
.y65{bottom:348.510000px;}
.ya9{bottom:353.910000px;}
.y21{bottom:362.955000px;}
.ycb{bottom:364.710000px;}
.y64{bottom:368.490000px;}
.ya8{bottom:373.710000px;}
.y7c{bottom:377.490000px;}
.y20{bottom:382.755000px;}
.yca{bottom:384.510000px;}
.ya7{bottom:393.510000px;}
.y63{bottom:397.290000px;}
.y1f{bottom:402.735000px;}
.yc9{bottom:404.535000px;}
.ya6{bottom:413.535000px;}
.y62{bottom:417.135000px;}
.y1e{bottom:422.535000px;}
.yc8{bottom:424.335000px;}
.ya5{bottom:433.335000px;}
.y61{bottom:436.935000px;}
.y1d{bottom:442.335000px;}
.yc7{bottom:444.135000px;}
.ya4{bottom:453.135000px;}
.y60{bottom:456.735000px;}
.y1c{bottom:462.135000px;}
.yc6{bottom:463.935000px;}
.ya3{bottom:472.935000px;}
.y5f{bottom:476.715000px;}
.y1b{bottom:481.935000px;}
.yc5{bottom:483.735000px;}
.ya2{bottom:492.735000px;}
.y5e{bottom:496.515000px;}
.y1a{bottom:501.915000px;}
.yc4{bottom:503.715000px;}
.y7b{bottom:505.515000px;}
.ya1{bottom:512.715000px;}
.y19{bottom:521.715000px;}
.yc3{bottom:523.515000px;}
.y5d{bottom:525.315000px;}
.ya0{bottom:532.515000px;}
.y18{bottom:541.515000px;}
.yc2{bottom:543.315000px;}
.y5c{bottom:545.115000px;}
.y9f{bottom:552.315000px;}
.yc1{bottom:563.115000px;}
.y5b{bottom:564.915000px;}
.y9e{bottom:572.115000px;}
.yc0{bottom:582.915000px;}
.y5a{bottom:584.895000px;}
.y9d{bottom:591.915000px;}
.yb6{bottom:597.135000px;}
.ybf{bottom:602.895000px;}
.y59{bottom:604.695000px;}
.y9c{bottom:611.895000px;}
.ybe{bottom:622.695000px;}
.y58{bottom:624.495000px;}
.y9b{bottom:631.695000px;}
.ybd{bottom:642.495000px;}
.y57{bottom:644.295000px;}
.y9a{bottom:651.525000px;}
.ybc{bottom:662.325000px;}
.y7a{bottom:664.125000px;}
.y99{bottom:671.325000px;}
.y56{bottom:673.125000px;}
.ybb{bottom:682.125000px;}
.y79{bottom:684.105000px;}
.y98{bottom:691.125000px;}
.y55{bottom:693.105000px;}
.yba{bottom:702.105000px;}
.y97{bottom:711.105000px;}
.y54{bottom:712.905000px;}
.y96{bottom:730.905000px;}
.y53{bottom:732.705000px;}
.y95{bottom:750.705000px;}
.y52{bottom:752.505000px;}
.y94{bottom:770.505000px;}
.y51{bottom:772.305000px;}
.y93{bottom:790.305000px;}
.y50{bottom:792.285000px;}
.y92{bottom:810.285000px;}
.y4f{bottom:812.085000px;}
.y91{bottom:830.085000px;}
.y4e{bottom:831.885000px;}
.y78{bottom:840.885000px;}
.y15{bottom:843.045000px;}
.y90{bottom:849.885000px;}
.y4d{bottom:860.685000px;}
.y14{bottom:868.605000px;}
.y8f{bottom:869.685000px;}
.y4c{bottom:880.485000px;}
.y8e{bottom:889.485000px;}
.y13{bottom:893.805000px;}
.y4b{bottom:900.510000px;}
.y8d{bottom:909.510000px;}
.y12{bottom:913.650000px;}
.y4a{bottom:920.310000px;}
.y11{bottom:928.770000px;}
.y8c{bottom:929.310000px;}
.y49{bottom:940.110000px;}
.y8b{bottom:949.110000px;}
.y10{bottom:950.010000px;}
.y48{bottom:959.910000px;}
.y8a{bottom:968.910000px;}
.yf{bottom:973.590000px;}
.y47{bottom:979.710000px;}
.y89{bottom:988.710000px;}
.y46{bottom:999.510000px;}
.ye{bottom:1005.270000px;}
.y88{bottom:1008.510000px;}
.y77{bottom:1019.490000px;}
.y45{bottom:1028.490000px;}
.yc{bottom:1030.830000px;}
.y76{bottom:1039.290000px;}
.y1{bottom:1045.590000px;}
.y44{bottom:1048.290000px;}
.y75{bottom:1059.090000px;}
.y43{bottom:1068.090000px;}
.y74{bottom:1078.890000px;}
.y42{bottom:1087.890000px;}
.y73{bottom:1098.690000px;}
.y41{bottom:1107.690000px;}
.y72{bottom:1118.670000px;}
.y40{bottom:1127.670000px;}
.y3f{bottom:1147.500000px;}
.y3e{bottom:1167.300000px;}
.y3c{bottom:1193.580000px;}
.h3{height:2.082656px;}
.hb{height:19.800000px;}
.ha{height:28.115859px;}
.hf{height:40.472227px;}
.hc{height:42.164648px;}
.h6{height:43.215117px;}
.h12{height:43.506914px;}
.h7{height:47.901094px;}
.h10{height:48.995859px;}
.h13{height:49.115859px;}
.h11{height:49.175859px;}
.he{height:49.255313px;}
.h9{height:53.224453px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.hd{height:555.555000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xc{left:-1.080000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x10{left:80.999987px;}
.xe{left:107.135987px;}
.x8{left:109.485000px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.xf{left:135.035987px;}
.x2{left:136.290000px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xd{left:241.769987px;}
.xb{left:343.875000px;}
.x9{left:681.270000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.592000pt;}
.ls2{letter-spacing:2.080000pt;}
.ls1{letter-spacing:3.360000pt;}
.ls7{letter-spacing:5.280000pt;}
.lsb{letter-spacing:6.560000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls16{letter-spacing:40.912640pt;}
.lsc{letter-spacing:44.112640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._d{margin-left:-3.578240pt;}
._c{margin-left:-2.652160pt;}
._1{margin-left:-0.967680pt;}
._0{width:1.054080pt;}
._4{width:2.169813pt;}
._6{width:3.408640pt;}
._b{width:4.823680pt;}
._a{width:5.742080pt;}
._f{width:7.412907pt;}
._e{width:8.446080pt;}
._8{width:10.207360pt;}
._7{width:11.102080pt;}
._13{width:12.038400pt;}
._10{width:14.395520pt;}
._9{width:15.944320pt;}
._12{width:17.328640pt;}
._11{width:18.592000pt;}
._1e{width:20.247040pt;}
._1a{width:21.468800pt;}
._3{width:22.727040pt;}
._2{width:24.088960pt;}
._27{width:30.021120pt;}
._28{width:31.913387pt;}
._2b{width:41.061760pt;}
._2a{width:42.230400pt;}
._29{width:44.142720pt;}
._19{width:46.014507pt;}
._17{width:47.011200pt;}
._18{width:48.266667pt;}
._20{width:50.259840pt;}
._16{width:54.375680pt;}
._15{width:55.265920pt;}
._1b{width:57.006080pt;}
._1c{width:57.900800pt;}
._1d{width:58.804267pt;}
._21{width:71.730560pt;}
._22{width:72.981333pt;}
._24{width:79.418667pt;}
._23{width:80.423680pt;}
._1f{width:91.919787pt;}
._26{width:96.784640pt;}
._25{width:97.847040pt;}
._14{width:126.498347pt;}
._5{width:178.848000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y33{bottom:5.280000pt;}
.y7{bottom:13.120000pt;}
.y32{bottom:22.880000pt;}
.y6{bottom:39.040000pt;}
.y31{bottom:40.480000pt;}
.y3d{bottom:49.120000pt;}
.yd{bottom:52.960000pt;}
.y5{bottom:56.960000pt;}
.y30{bottom:58.080000pt;}
.yb{bottom:65.600000pt;}
.yb9{bottom:69.280000pt;}
.ya{bottom:69.600000pt;}
.y87{bottom:72.640000pt;}
.yde{bottom:74.560000pt;}
.y2f{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.yd9{bottom:77.280000pt;}
.y71{bottom:82.240000pt;}
.yb7{bottom:85.280000pt;}
.yb8{bottom:87.040000pt;}
.y86{bottom:90.240000pt;}
.ydd{bottom:92.160000pt;}
.y2e{bottom:93.440000pt;}
.yd8{bottom:95.040000pt;}
.y9{bottom:95.546667pt;}
.y70{bottom:99.840000pt;}
.y3b{bottom:100.800000pt;}
.yb5{bottom:103.040000pt;}
.y85{bottom:107.840000pt;}
.y3{bottom:108.986667pt;}
.ydc{bottom:109.920000pt;}
.y2d{bottom:111.080000pt;}
.yd7{bottom:112.640000pt;}
.y6f{bottom:117.440000pt;}
.y3a{bottom:118.400000pt;}
.yb4{bottom:120.640000pt;}
.y8{bottom:121.466667pt;}
.ydb{bottom:125.280000pt;}
.y84{bottom:125.440000pt;}
.y2c{bottom:128.680000pt;}
.yd6{bottom:130.240000pt;}
.y6e{bottom:135.226667pt;}
.y39{bottom:136.026667pt;}
.yb3{bottom:138.266667pt;}
.yda{bottom:140.506667pt;}
.y83{bottom:143.226667pt;}
.y2b{bottom:146.280000pt;}
.yd5{bottom:147.866667pt;}
.y6d{bottom:152.826667pt;}
.y38{bottom:153.626667pt;}
.yb2{bottom:155.866667pt;}
.y82{bottom:160.826667pt;}
.y2a{bottom:163.880000pt;}
.yd4{bottom:165.466667pt;}
.y37{bottom:171.226667pt;}
.yb1{bottom:173.466667pt;}
.y6c{bottom:178.426667pt;}
.y29{bottom:181.640000pt;}
.yd3{bottom:183.226667pt;}
.y81{bottom:186.426667pt;}
.yb0{bottom:191.226667pt;}
.y36{bottom:193.626667pt;}
.y6b{bottom:196.026667pt;}
.y28{bottom:199.240000pt;}
.yd2{bottom:200.826667pt;}
.y80{bottom:204.026667pt;}
.y35{bottom:206.586667pt;}
.yaf{bottom:208.826667pt;}
.y6a{bottom:213.626667pt;}
.y27{bottom:216.840000pt;}
.yd1{bottom:218.426667pt;}
.y7f{bottom:221.626667pt;}
.y34{bottom:224.186667pt;}
.yae{bottom:226.426667pt;}
.y69{bottom:231.386667pt;}
.y26{bottom:234.440000pt;}
.yd0{bottom:236.026667pt;}
.y7e{bottom:239.386667pt;}
.yad{bottom:244.026667pt;}
.y68{bottom:248.986667pt;}
.y25{bottom:252.040000pt;}
.ycf{bottom:253.626667pt;}
.y17{bottom:254.906667pt;}
.y7d{bottom:256.986667pt;}
.yac{bottom:261.626667pt;}
.y24{bottom:269.800000pt;}
.yce{bottom:271.386667pt;}
.y67{bottom:274.586667pt;}
.yab{bottom:279.386667pt;}
.y23{bottom:287.400000pt;}
.ycd{bottom:288.986667pt;}
.y66{bottom:292.186667pt;}
.yaa{bottom:296.986667pt;}
.y22{bottom:305.000000pt;}
.ycc{bottom:306.586667pt;}
.y65{bottom:309.786667pt;}
.ya9{bottom:314.586667pt;}
.y21{bottom:322.626667pt;}
.ycb{bottom:324.186667pt;}
.y64{bottom:327.546667pt;}
.ya8{bottom:332.186667pt;}
.y7c{bottom:335.546667pt;}
.y20{bottom:340.226667pt;}
.yca{bottom:341.786667pt;}
.ya7{bottom:349.786667pt;}
.y63{bottom:353.146667pt;}
.y1f{bottom:357.986667pt;}
.yc9{bottom:359.586667pt;}
.ya6{bottom:367.586667pt;}
.y62{bottom:370.786667pt;}
.y1e{bottom:375.586667pt;}
.yc8{bottom:377.186667pt;}
.ya5{bottom:385.186667pt;}
.y61{bottom:388.386667pt;}
.y1d{bottom:393.186667pt;}
.yc7{bottom:394.786667pt;}
.ya4{bottom:402.786667pt;}
.y60{bottom:405.986667pt;}
.y1c{bottom:410.786667pt;}
.yc6{bottom:412.386667pt;}
.ya3{bottom:420.386667pt;}
.y5f{bottom:423.746667pt;}
.y1b{bottom:428.386667pt;}
.yc5{bottom:429.986667pt;}
.ya2{bottom:437.986667pt;}
.y5e{bottom:441.346667pt;}
.y1a{bottom:446.146667pt;}
.yc4{bottom:447.746667pt;}
.y7b{bottom:449.346667pt;}
.ya1{bottom:455.746667pt;}
.y19{bottom:463.746667pt;}
.yc3{bottom:465.346667pt;}
.y5d{bottom:466.946667pt;}
.ya0{bottom:473.346667pt;}
.y18{bottom:481.346667pt;}
.yc2{bottom:482.946667pt;}
.y5c{bottom:484.546667pt;}
.y9f{bottom:490.946667pt;}
.yc1{bottom:500.546667pt;}
.y5b{bottom:502.146667pt;}
.y9e{bottom:508.546667pt;}
.yc0{bottom:518.146667pt;}
.y5a{bottom:519.906667pt;}
.y9d{bottom:526.146667pt;}
.yb6{bottom:530.786667pt;}
.ybf{bottom:535.906667pt;}
.y59{bottom:537.506667pt;}
.y9c{bottom:543.906667pt;}
.ybe{bottom:553.506667pt;}
.y58{bottom:555.106667pt;}
.y9b{bottom:561.506667pt;}
.ybd{bottom:571.106667pt;}
.y57{bottom:572.706667pt;}
.y9a{bottom:579.133333pt;}
.ybc{bottom:588.733333pt;}
.y7a{bottom:590.333333pt;}
.y99{bottom:596.733333pt;}
.y56{bottom:598.333333pt;}
.ybb{bottom:606.333333pt;}
.y79{bottom:608.093333pt;}
.y98{bottom:614.333333pt;}
.y55{bottom:616.093333pt;}
.yba{bottom:624.093333pt;}
.y97{bottom:632.093333pt;}
.y54{bottom:633.693333pt;}
.y96{bottom:649.693333pt;}
.y53{bottom:651.293333pt;}
.y95{bottom:667.293333pt;}
.y52{bottom:668.893333pt;}
.y94{bottom:684.893333pt;}
.y51{bottom:686.493333pt;}
.y93{bottom:702.493333pt;}
.y50{bottom:704.253333pt;}
.y92{bottom:720.253333pt;}
.y4f{bottom:721.853333pt;}
.y91{bottom:737.853333pt;}
.y4e{bottom:739.453333pt;}
.y78{bottom:747.453333pt;}
.y15{bottom:749.373333pt;}
.y90{bottom:755.453333pt;}
.y4d{bottom:765.053333pt;}
.y14{bottom:772.093333pt;}
.y8f{bottom:773.053333pt;}
.y4c{bottom:782.653333pt;}
.y8e{bottom:790.653333pt;}
.y13{bottom:794.493333pt;}
.y4b{bottom:800.453333pt;}
.y8d{bottom:808.453333pt;}
.y12{bottom:812.133333pt;}
.y4a{bottom:818.053333pt;}
.y11{bottom:825.573333pt;}
.y8c{bottom:826.053333pt;}
.y49{bottom:835.653333pt;}
.y8b{bottom:843.653333pt;}
.y10{bottom:844.453333pt;}
.y48{bottom:853.253333pt;}
.y8a{bottom:861.253333pt;}
.yf{bottom:865.413333pt;}
.y47{bottom:870.853333pt;}
.y89{bottom:878.853333pt;}
.y46{bottom:888.453333pt;}
.ye{bottom:893.573333pt;}
.y88{bottom:896.453333pt;}
.y77{bottom:906.213333pt;}
.y45{bottom:914.213333pt;}
.yc{bottom:916.293333pt;}
.y76{bottom:923.813333pt;}
.y1{bottom:929.413333pt;}
.y44{bottom:931.813333pt;}
.y75{bottom:941.413333pt;}
.y43{bottom:949.413333pt;}
.y74{bottom:959.013333pt;}
.y42{bottom:967.013333pt;}
.y73{bottom:976.613333pt;}
.y41{bottom:984.613333pt;}
.y72{bottom:994.373333pt;}
.y40{bottom:1002.373333pt;}
.y3f{bottom:1020.000000pt;}
.y3e{bottom:1037.600000pt;}
.y3c{bottom:1060.960000pt;}
.h3{height:1.851250pt;}
.hb{height:17.600000pt;}
.ha{height:24.991875pt;}
.hf{height:35.975313pt;}
.hc{height:37.479688pt;}
.h6{height:38.413438pt;}
.h12{height:38.672812pt;}
.h7{height:42.578750pt;}
.h10{height:43.551875pt;}
.h13{height:43.658542pt;}
.h11{height:43.711875pt;}
.he{height:43.782500pt;}
.h9{height:47.310625pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.hd{height:493.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xc{left:-0.960000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x10{left:71.999988pt;}
.xe{left:95.231988pt;}
.x8{left:97.320000pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.xf{left:120.031988pt;}
.x2{left:121.146667pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xd{left:214.906655pt;}
.xb{left:305.666667pt;}
.x9{left:605.573333pt;}
}




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