
    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_370e4b8e0c8aeb4aefcc57d8.woff2')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_9e74c9ab5c37d21ca5e01220.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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_86ca2985114cf75c3a36ad3b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ebaf4cbcb1c2600db8637503.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a4362037fcae104c4af12cc7.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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015840px;}
.lsb{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.624000px;}
.ls6{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.684000px;}
.ls4{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls1{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.200000px;}
.ls5{letter-spacing:1.944000px;}
.ls10{letter-spacing:2.124000px;}
.ls17{letter-spacing:108.144000px;}
.ls11{letter-spacing:144.144000px;}
.ls13{letter-spacing:165.744000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.wsf{word-spacing:-18.648000px;}
.ws7{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.712000px;}
.wse{word-spacing:-17.496000px;}
.wsa{word-spacing:-17.352000px;}
.wsb{word-spacing:-17.208000px;}
.ws9{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.880000px;}
.ws3{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.280000px;}
.ws5{word-spacing:-6.840000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-8.736960px;}
._10{margin-left:-7.416000px;}
._4{margin-left:-6.114240px;}
._0{margin-left:-4.324320px;}
._5{margin-left:-2.692800px;}
._3{margin-left:-1.272480px;}
._2{width:1.853280px;}
._b{width:3.009600px;}
._e{width:4.191360px;}
._f{width:5.496000px;}
._15{width:7.008960px;}
._18{width:8.057280px;}
._7{width:9.255840px;}
._1{width:10.739520px;}
._1a{width:12.707040px;}
._6{width:13.982880px;}
._1b{width:15.308640px;}
._a{width:16.853760px;}
._9{width:18.437760px;}
._2d{width:19.445760px;}
._8{width:20.449440px;}
._19{width:21.485760px;}
._21{width:23.275200px;}
._23{width:24.388800px;}
._14{width:25.579680px;}
._12{width:26.951520px;}
._13{width:28.098720px;}
._2c{width:29.139840px;}
._16{width:30.225600px;}
._17{width:31.593120px;}
._22{width:32.674560px;}
._29{width:33.729120px;}
._2e{width:35.001600px;}
._1c{width:36.672480px;}
._1d{width:37.895040px;}
._20{width:39.182880px;}
._2f{width:40.469280px;}
._26{width:42.321600px;}
._25{width:43.645440px;}
._24{width:44.777760px;}
._27{width:56.082240px;}
._28{width:57.337920px;}
._1e{width:70.948800px;}
._c{width:79.925280px;}
._d{width:81.811200px;}
._2b{width:92.586720px;}
._2a{width:94.271040px;}
._1f{width:1422.540000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y8c{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y88{bottom:14.400000px;}
.y8d{bottom:14.760000px;}
.y86{bottom:29.880000px;}
.y90{bottom:30.240000px;}
.y8a{bottom:30.600000px;}
.y8f{bottom:45.360000px;}
.y95{bottom:45.390000px;}
.y87{bottom:45.720000px;}
.y2{bottom:46.440000px;}
.y1{bottom:66.240000px;}
.y5b{bottom:112.716000px;}
.y53{bottom:115.596000px;}
.y31{bottom:129.996000px;}
.y9a{bottom:140.796000px;}
.y5a{bottom:143.676000px;}
.y52{bottom:146.556000px;}
.y30{bottom:161.310000px;}
.y7b{bottom:164.550000px;}
.y99{bottom:171.750000px;}
.y59{bottom:176.070000px;}
.y51{bottom:177.510000px;}
.y2f{bottom:192.270000px;}
.y7a{bottom:196.995000px;}
.y98{bottom:203.115000px;}
.y58{bottom:207.075000px;}
.y50{bottom:208.515000px;}
.y2e{bottom:223.275000px;}
.y79{bottom:229.035000px;}
.y97{bottom:234.075000px;}
.y4f{bottom:239.475000px;}
.y56{bottom:239.835000px;}
.y96{bottom:252.435000px;}
.y2d{bottom:254.235000px;}
.y78{bottom:261.435000px;}
.y4e{bottom:270.795000px;}
.y2c{bottom:285.555000px;}
.y94{bottom:286.995000px;}
.y77{bottom:293.835000px;}
.y4d{bottom:301.395000px;}
.y55{bottom:301.755000px;}
.y2b{bottom:316.515000px;}
.y76{bottom:325.185000px;}
.y4c{bottom:332.385000px;}
.y54{bottom:332.745000px;}
.y2a{bottom:347.505000px;}
.y93{bottom:352.545000px;}
.y75{bottom:356.145000px;}
.y4b{bottom:364.065000px;}
.y29{bottom:378.465000px;}
.y92{bottom:386.745000px;}
.y74{bottom:387.105000px;}
.y4a{bottom:395.025000px;}
.y28{bottom:409.785000px;}
.y73{bottom:418.065000px;}
.y9c{bottom:425.625000px;}
.y49{bottom:425.985000px;}
.y27{bottom:440.745000px;}
.y72{bottom:449.430000px;}
.y91{bottom:452.310000px;}
.y57{bottom:456.630000px;}
.y48{bottom:456.990000px;}
.y26{bottom:471.750000px;}
.y71{bottom:480.390000px;}
.y8e{bottom:486.870000px;}
.y47{bottom:487.950000px;}
.y25{bottom:502.350000px;}
.y70{bottom:511.350000px;}
.y46{bottom:519.270000px;}
.y24{bottom:534.030000px;}
.y6f{bottom:542.310000px;}
.y45{bottom:550.230000px;}
.y8b{bottom:552.390000px;}
.y23{bottom:564.630000px;}
.y6e{bottom:573.660000px;}
.y44{bottom:581.220000px;}
.y89{bottom:586.620000px;}
.y22{bottom:595.620000px;}
.y6d{bottom:604.620000px;}
.y43{bottom:612.180000px;}
.y21{bottom:626.580000px;}
.y6c{bottom:636.660000px;}
.y42{bottom:643.500000px;}
.y85{bottom:652.140000px;}
.y20{bottom:658.260000px;}
.y6b{bottom:669.060000px;}
.y41{bottom:674.460000px;}
.y1f{bottom:688.860000px;}
.y6a{bottom:701.490000px;}
.y40{bottom:705.450000px;}
.y1e{bottom:719.850000px;}
.y84{bottom:731.370000px;}
.y69{bottom:733.890000px;}
.y3f{bottom:736.410000px;}
.y1d{bottom:750.810000px;}
.y83{bottom:762.330000px;}
.y68{bottom:764.850000px;}
.y3e{bottom:767.730000px;}
.y1c{bottom:782.490000px;}
.y82{bottom:793.650000px;}
.y67{bottom:796.170000px;}
.y3d{bottom:798.690000px;}
.y1b{bottom:813.450000px;}
.y81{bottom:824.610000px;}
.y66{bottom:826.815000px;}
.y3c{bottom:829.695000px;}
.y1a{bottom:844.455000px;}
.y80{bottom:855.615000px;}
.y65{bottom:858.135000px;}
.y3b{bottom:860.655000px;}
.y19{bottom:875.415000px;}
.y7f{bottom:886.575000px;}
.y64{bottom:889.095000px;}
.y3a{bottom:891.975000px;}
.y18{bottom:893.775000px;}
.y17{bottom:904.215000px;}
.y16{bottom:914.655000px;}
.y7e{bottom:917.535000px;}
.y63{bottom:920.415000px;}
.y9d{bottom:922.575000px;}
.y39{bottom:922.935000px;}
.y15{bottom:924.735000px;}
.y14{bottom:935.175000px;}
.y13{bottom:945.615000px;}
.y7d{bottom:949.935000px;}
.y62{bottom:951.405000px;}
.y38{bottom:953.925000px;}
.y12{bottom:956.085000px;}
.y11{bottom:966.165000px;}
.y10{bottom:976.605000px;}
.y61{bottom:982.365000px;}
.y37{bottom:984.885000px;}
.yf{bottom:987.045000px;}
.ye{bottom:997.485000px;}
.yd{bottom:1007.565000px;}
.y60{bottom:1013.325000px;}
.y7c{bottom:1014.765000px;}
.y36{bottom:1016.205000px;}
.yc{bottom:1019.085000px;}
.yb{bottom:1033.125000px;}
.y5f{bottom:1044.645000px;}
.y35{bottom:1047.165000px;}
.ya{bottom:1047.525000px;}
.y9{bottom:1062.285000px;}
.y5e{bottom:1075.605000px;}
.y8{bottom:1076.325000px;}
.y34{bottom:1078.170000px;}
.y7{bottom:1090.050000px;}
.y6{bottom:1104.090000px;}
.y5d{bottom:1106.610000px;}
.y33{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.450000px;}
.y5c{bottom:1139.010000px;}
.y9b{bottom:1140.090000px;}
.y32{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.h8{height:26.033203px;}
.h14{height:30.960000px;}
.h12{height:30.996000px;}
.h4{height:33.528516px;}
.h9{height:35.332031px;}
.h6{height:36.034453px;}
.h7{height:46.638281px;}
.h5{height:47.891250px;}
.h3{height:50.229844px;}
.hb{height:50.800781px;}
.hd{height:52.066406px;}
.h13{height:61.920000px;}
.h15{height:61.956000px;}
.h11{height:62.280000px;}
.h10{height:62.316000px;}
.h2{height:65.010937px;}
.he{height:70.628906px;}
.ha{height:70.664062px;}
.hc{height:72.562500px;}
.hf{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:117.792000px;}
.w6{width:169.275000px;}
.w5{width:179.670000px;}
.w3{width:200.235000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x3{left:115.235987px;}
.x7{left:122.075987px;}
.x9{left:159.554987px;}
.x4{left:163.154987px;}
.x8{left:231.914987px;}
.xa{left:307.185000px;}
.x5{left:360.509987px;}
.xb{left:426.060000px;}
.xd{left:438.299987px;}
.x1{left:442.259987px;}
.x6{left:446.579987px;}
.xc{left:606.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.014080pt;}
.lsb{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls5{letter-spacing:1.728000pt;}
.ls10{letter-spacing:1.888000pt;}
.ls17{letter-spacing:96.128000pt;}
.ls11{letter-spacing:128.128000pt;}
.ls13{letter-spacing:147.328000pt;}
.wsd{word-spacing:-64.000000pt;}
.wsf{word-spacing:-16.576000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.552000pt;}
.wsa{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.296000pt;}
.ws9{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.360000pt;}
.ws5{word-spacing:-6.080000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-7.766187pt;}
._10{margin-left:-6.592000pt;}
._4{margin-left:-5.434880pt;}
._0{margin-left:-3.843840pt;}
._5{margin-left:-2.393600pt;}
._3{margin-left:-1.131093pt;}
._2{width:1.647360pt;}
._b{width:2.675200pt;}
._e{width:3.725653pt;}
._f{width:4.885333pt;}
._15{width:6.230187pt;}
._18{width:7.162027pt;}
._7{width:8.227413pt;}
._1{width:9.546240pt;}
._1a{width:11.295147pt;}
._6{width:12.429227pt;}
._1b{width:13.607680pt;}
._a{width:14.981120pt;}
._9{width:16.389120pt;}
._2d{width:17.285120pt;}
._8{width:18.177280pt;}
._19{width:19.098453pt;}
._21{width:20.689067pt;}
._23{width:21.678933pt;}
._14{width:22.737493pt;}
._12{width:23.956907pt;}
._13{width:24.976640pt;}
._2c{width:25.902080pt;}
._16{width:26.867200pt;}
._17{width:28.082773pt;}
._22{width:29.044053pt;}
._29{width:29.981440pt;}
._2e{width:31.112533pt;}
._1c{width:32.597760pt;}
._1d{width:33.684480pt;}
._20{width:34.829227pt;}
._2f{width:35.972693pt;}
._26{width:37.619200pt;}
._25{width:38.795947pt;}
._24{width:39.802453pt;}
._27{width:49.850880pt;}
._28{width:50.967040pt;}
._1e{width:63.065600pt;}
._c{width:71.044693pt;}
._d{width:72.721067pt;}
._2b{width:82.299307pt;}
._2a{width:83.796480pt;}
._1f{width:1264.480000pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y8c{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:12.800000pt;}
.y8d{bottom:13.120000pt;}
.y86{bottom:26.560000pt;}
.y90{bottom:26.880000pt;}
.y8a{bottom:27.200000pt;}
.y8f{bottom:40.320000pt;}
.y95{bottom:40.346667pt;}
.y87{bottom:40.640000pt;}
.y2{bottom:41.280000pt;}
.y1{bottom:58.880000pt;}
.y5b{bottom:100.192000pt;}
.y53{bottom:102.752000pt;}
.y31{bottom:115.552000pt;}
.y9a{bottom:125.152000pt;}
.y5a{bottom:127.712000pt;}
.y52{bottom:130.272000pt;}
.y30{bottom:143.386667pt;}
.y7b{bottom:146.266667pt;}
.y99{bottom:152.666667pt;}
.y59{bottom:156.506667pt;}
.y51{bottom:157.786667pt;}
.y2f{bottom:170.906667pt;}
.y7a{bottom:175.106667pt;}
.y98{bottom:180.546667pt;}
.y58{bottom:184.066667pt;}
.y50{bottom:185.346667pt;}
.y2e{bottom:198.466667pt;}
.y79{bottom:203.586667pt;}
.y97{bottom:208.066667pt;}
.y4f{bottom:212.866667pt;}
.y56{bottom:213.186667pt;}
.y96{bottom:224.386667pt;}
.y2d{bottom:225.986667pt;}
.y78{bottom:232.386667pt;}
.y4e{bottom:240.706667pt;}
.y2c{bottom:253.826667pt;}
.y94{bottom:255.106667pt;}
.y77{bottom:261.186667pt;}
.y4d{bottom:267.906667pt;}
.y55{bottom:268.226667pt;}
.y2b{bottom:281.346667pt;}
.y76{bottom:289.053333pt;}
.y4c{bottom:295.453333pt;}
.y54{bottom:295.773333pt;}
.y2a{bottom:308.893333pt;}
.y93{bottom:313.373333pt;}
.y75{bottom:316.573333pt;}
.y4b{bottom:323.613333pt;}
.y29{bottom:336.413333pt;}
.y92{bottom:343.773333pt;}
.y74{bottom:344.093333pt;}
.y4a{bottom:351.133333pt;}
.y28{bottom:364.253333pt;}
.y73{bottom:371.613333pt;}
.y9c{bottom:378.333333pt;}
.y49{bottom:378.653333pt;}
.y27{bottom:391.773333pt;}
.y72{bottom:399.493333pt;}
.y91{bottom:402.053333pt;}
.y57{bottom:405.893333pt;}
.y48{bottom:406.213333pt;}
.y26{bottom:419.333333pt;}
.y71{bottom:427.013333pt;}
.y8e{bottom:432.773333pt;}
.y47{bottom:433.733333pt;}
.y25{bottom:446.533333pt;}
.y70{bottom:454.533333pt;}
.y46{bottom:461.573333pt;}
.y24{bottom:474.693333pt;}
.y6f{bottom:482.053333pt;}
.y45{bottom:489.093333pt;}
.y8b{bottom:491.013333pt;}
.y23{bottom:501.893333pt;}
.y6e{bottom:509.920000pt;}
.y44{bottom:516.640000pt;}
.y89{bottom:521.440000pt;}
.y22{bottom:529.440000pt;}
.y6d{bottom:537.440000pt;}
.y43{bottom:544.160000pt;}
.y21{bottom:556.960000pt;}
.y6c{bottom:565.920000pt;}
.y42{bottom:572.000000pt;}
.y85{bottom:579.680000pt;}
.y20{bottom:585.120000pt;}
.y6b{bottom:594.720000pt;}
.y41{bottom:599.520000pt;}
.y1f{bottom:612.320000pt;}
.y6a{bottom:623.546667pt;}
.y40{bottom:627.066667pt;}
.y1e{bottom:639.866667pt;}
.y84{bottom:650.106667pt;}
.y69{bottom:652.346667pt;}
.y3f{bottom:654.586667pt;}
.y1d{bottom:667.386667pt;}
.y83{bottom:677.626667pt;}
.y68{bottom:679.866667pt;}
.y3e{bottom:682.426667pt;}
.y1c{bottom:695.546667pt;}
.y82{bottom:705.466667pt;}
.y67{bottom:707.706667pt;}
.y3d{bottom:709.946667pt;}
.y1b{bottom:723.066667pt;}
.y81{bottom:732.986667pt;}
.y66{bottom:734.946667pt;}
.y3c{bottom:737.506667pt;}
.y1a{bottom:750.626667pt;}
.y80{bottom:760.546667pt;}
.y65{bottom:762.786667pt;}
.y3b{bottom:765.026667pt;}
.y19{bottom:778.146667pt;}
.y7f{bottom:788.066667pt;}
.y64{bottom:790.306667pt;}
.y3a{bottom:792.866667pt;}
.y18{bottom:794.466667pt;}
.y17{bottom:803.746667pt;}
.y16{bottom:813.026667pt;}
.y7e{bottom:815.586667pt;}
.y63{bottom:818.146667pt;}
.y9d{bottom:820.066667pt;}
.y39{bottom:820.386667pt;}
.y15{bottom:821.986667pt;}
.y14{bottom:831.266667pt;}
.y13{bottom:840.546667pt;}
.y7d{bottom:844.386667pt;}
.y62{bottom:845.693333pt;}
.y38{bottom:847.933333pt;}
.y12{bottom:849.853333pt;}
.y11{bottom:858.813333pt;}
.y10{bottom:868.093333pt;}
.y61{bottom:873.213333pt;}
.y37{bottom:875.453333pt;}
.yf{bottom:877.373333pt;}
.ye{bottom:886.653333pt;}
.yd{bottom:895.613333pt;}
.y60{bottom:900.733333pt;}
.y7c{bottom:902.013333pt;}
.y36{bottom:903.293333pt;}
.yc{bottom:905.853333pt;}
.yb{bottom:918.333333pt;}
.y5f{bottom:928.573333pt;}
.y35{bottom:930.813333pt;}
.ya{bottom:931.133333pt;}
.y9{bottom:944.253333pt;}
.y5e{bottom:956.093333pt;}
.y8{bottom:956.733333pt;}
.y34{bottom:958.373333pt;}
.y7{bottom:968.933333pt;}
.y6{bottom:981.413333pt;}
.y5d{bottom:983.653333pt;}
.y33{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.733333pt;}
.y5c{bottom:1012.453333pt;}
.y9b{bottom:1013.413333pt;}
.y32{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.h8{height:23.140625pt;}
.h14{height:27.520000pt;}
.h12{height:27.552000pt;}
.h4{height:29.803125pt;}
.h9{height:31.406250pt;}
.h6{height:32.030625pt;}
.h7{height:41.456250pt;}
.h5{height:42.570000pt;}
.h3{height:44.648750pt;}
.hb{height:45.156250pt;}
.hd{height:46.281250pt;}
.h13{height:55.040000pt;}
.h15{height:55.072000pt;}
.h11{height:55.360000pt;}
.h10{height:55.392000pt;}
.h2{height:57.787500pt;}
.he{height:62.781250pt;}
.ha{height:62.812500pt;}
.hc{height:64.500000pt;}
.hf{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:104.704000pt;}
.w6{width:150.466667pt;}
.w5{width:159.706667pt;}
.w3{width:177.986667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x3{left:102.431988pt;}
.x7{left:108.511988pt;}
.x9{left:141.826655pt;}
.x4{left:145.026655pt;}
.x8{left:206.146655pt;}
.xa{left:273.053333pt;}
.x5{left:320.453322pt;}
.xb{left:378.720000pt;}
.xd{left:389.599988pt;}
.x1{left:393.119988pt;}
.x6{left:396.959988pt;}
.xc{left:539.386667pt;}
}




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