
    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_c8703ea18179527ff2237abc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f39760f8df7041515e8c877f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_3d2052af26b3a153410429cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_3e3f1162efda3c0631dab69d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_90b19173d492416ba9bdeaac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fcae430243ee8936d1afc33a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_702210787dfb15af6f6bd920.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a6209e6afc5e10ec7bfec098.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977539;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_bc74171412fc70337e8a8117.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.280000px;}
.ls1d{letter-spacing:-1.458000px;}
.ls1e{letter-spacing:-0.684000px;}
.ls1a{letter-spacing:-0.413400px;}
.ls1c{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.008640px;}
.ls17{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.252720px;}
.ls18{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:3.162720px;}
.ls16{letter-spacing:3.240000px;}
.ls9{letter-spacing:3.960000px;}
.ls11{letter-spacing:4.140000px;}
.lsd{letter-spacing:9.180000px;}
.lsc{letter-spacing:9.900000px;}
.ls5{letter-spacing:11.340000px;}
.ls12{letter-spacing:12.970800px;}
.ls10{letter-spacing:13.690800px;}
.ls15{letter-spacing:16.380000px;}
.lsf{letter-spacing:17.100000px;}
.lse{letter-spacing:17.796000px;}
.ls13{letter-spacing:17.820000px;}
.ls8{letter-spacing:18.432720px;}
.ls7{letter-spacing:18.701280px;}
.lsa{letter-spacing:21.906720px;}
.lsb{letter-spacing:22.140000px;}
.ls6{letter-spacing:22.752720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-84.240000px;}
.ws2{word-spacing:-21.420000px;}
.wsc{word-spacing:-21.088080px;}
.ws11{word-spacing:-21.068640px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.041280px;}
.ws0{word-spacing:-20.916000px;}
.wsd{word-spacing:-20.700000px;}
.ws10{word-spacing:-20.376000px;}
.wsf{word-spacing:-19.602000px;}
.ws9{word-spacing:-15.246600px;}
.wse{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.526600px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:5.633640px;}
.ws6{word-spacing:6.353640px;}
.ws8{word-spacing:7.913640px;}
.ws4{word-spacing:10.673640px;}
._15{margin-left:-2.088000px;}
._0{margin-left:-1.073040px;}
._1{width:1.219440px;}
._5{width:2.533920px;}
._17{width:4.011600px;}
._11{width:5.200800px;}
._2b{width:6.380400px;}
._18{width:7.497360px;}
._4{width:8.760960px;}
._1e{width:9.834000px;}
._b{width:10.844880px;}
._1b{width:11.922240px;}
._2{width:12.931920px;}
._3{width:14.130240px;}
._26{width:15.694320px;}
._d{width:16.994400px;}
._e{width:18.470640px;}
._23{width:20.039280px;}
._12{width:22.638480px;}
._13{width:24.052560px;}
._14{width:25.997520px;}
._28{width:27.326400px;}
._6{width:28.725840px;}
._f{width:30.494880px;}
._2a{width:31.899120px;}
._27{width:33.274800px;}
._16{width:34.967760px;}
._7{width:36.453840px;}
._22{width:38.454960px;}
._30{width:40.501440px;}
._1f{width:43.215120px;}
._20{width:44.589120px;}
._a{width:49.027680px;}
._8{width:50.100720px;}
._9{width:51.236640px;}
._29{width:52.301040px;}
._24{width:54.649680px;}
._25{width:55.809360px;}
._1c{width:56.862000px;}
._1d{width:57.966960px;}
._2f{width:59.623920px;}
._21{width:65.370240px;}
._10{width:68.296560px;}
._19{width:70.787760px;}
._1a{width:71.840400px;}
._2d{width:80.870400px;}
._2c{width:81.912960px;}
._c{width:103.761600px;}
._2e{width:106.244400px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.840000px;}
.y6d{bottom:16.725000px;}
.y6a{bottom:16.740000px;}
.y67{bottom:16.920000px;}
.y4e{bottom:17.085000px;}
.y4a{bottom:17.100000px;}
.y5a{bottom:17.265000px;}
.y47{bottom:17.280000px;}
.y55{bottom:17.310000px;}
.y73{bottom:34.905000px;}
.y65{bottom:34.920000px;}
.y70{bottom:35.085000px;}
.y5b{bottom:35.265000px;}
.y45{bottom:35.280000px;}
.y56{bottom:35.310000px;}
.y4{bottom:49.320000px;}
.y6f{bottom:52.905000px;}
.y69{bottom:52.920000px;}
.y66{bottom:53.100000px;}
.y6c{bottom:53.130000px;}
.y71{bottom:53.265000px;}
.y4c{bottom:53.280000px;}
.y49{bottom:53.325000px;}
.y59{bottom:53.445000px;}
.y41{bottom:53.460000px;}
.y51{bottom:53.490000px;}
.y44{bottom:71.460000px;}
.y3f{bottom:89.640000px;}
.y3{bottom:98.280000px;}
.y43{bottom:107.820000px;}
.y40{bottom:125.820000px;}
.y60{bottom:128.556000px;}
.y5f{bottom:133.776000px;}
.y22{bottom:136.296000px;}
.y42{bottom:144.000000px;}
.y5e{bottom:147.276000px;}
.y46{bottom:162.000000px;}
.y3c{bottom:165.990000px;}
.y21{bottom:172.470000px;}
.y5d{bottom:181.845000px;}
.y72{bottom:187.785000px;}
.y3b{bottom:202.350000px;}
.y20{bottom:208.650000px;}
.y5c{bottom:218.745000px;}
.y3a{bottom:238.530000px;}
.y1f{bottom:244.830000px;}
.y58{bottom:255.645000px;}
.y6e{bottom:261.045000px;}
.y39{bottom:274.710000px;}
.y1e{bottom:281.010000px;}
.y38{bottom:310.890000px;}
.y1d{bottom:317.370000px;}
.y57{bottom:328.905000px;}
.y6b{bottom:334.125000px;}
.y37{bottom:347.250000px;}
.y1c{bottom:353.550000px;}
.y54{bottom:365.805000px;}
.y36{bottom:383.655000px;}
.y1b{bottom:389.775000px;}
.y68{bottom:407.415000px;}
.y35{bottom:420.555000px;}
.y75{bottom:425.595000px;}
.y1a{bottom:425.955000px;}
.y53{bottom:439.095000px;}
.y34{bottom:457.275000px;}
.y74{bottom:461.955000px;}
.y19{bottom:462.315000px;}
.y64{bottom:480.495000px;}
.y33{bottom:493.455000px;}
.y18{bottom:498.135000px;}
.y28{bottom:498.495000px;}
.y52{bottom:512.355000px;}
.y32{bottom:529.995000px;}
.y17{bottom:534.675000px;}
.y31{bottom:566.715000px;}
.y62{bottom:570.495000px;}
.y16{bottom:570.855000px;}
.y63{bottom:578.055000px;}
.y50{bottom:585.435000px;}
.y30{bottom:603.075000px;}
.y61{bottom:606.855000px;}
.y15{bottom:607.215000px;}
.y2f{bottom:640.005000px;}
.y14{bottom:643.425000px;}
.y4f{bottom:658.725000px;}
.y2e{bottom:676.905000px;}
.y13{bottom:679.605000px;}
.y2d{bottom:713.625000px;}
.y12{bottom:715.785000px;}
.y4d{bottom:732.000000px;}
.y2c{bottom:750.165000px;}
.y11{bottom:752.145000px;}
.y4b{bottom:768.885000px;}
.y2b{bottom:786.885000px;}
.y10{bottom:788.325000px;}
.y2a{bottom:823.245000px;}
.yf{bottom:824.505000px;}
.y48{bottom:842.145000px;}
.y29{bottom:859.785000px;}
.ye{bottom:860.685000px;}
.yd{bottom:896.910000px;}
.y3e{bottom:915.270000px;}
.yc{bottom:932.910000px;}
.y27{bottom:933.270000px;}
.yb{bottom:969.450000px;}
.ya{bottom:1005.630000px;}
.y9{bottom:1041.450000px;}
.y26{bottom:1041.810000px;}
.y8{bottom:1077.810000px;}
.y25{bottom:1078.170000px;}
.y7{bottom:1113.990000px;}
.y24{bottom:1114.350000px;}
.y3d{bottom:1121.550000px;}
.y6{bottom:1150.200000px;}
.y23{bottom:1150.560000px;}
.y2{bottom:1187.280000px;}
.y1{bottom:1211.400000px;}
.h4{height:32.400000px;}
.hf{height:36.165000px;}
.h14{height:38.158594px;}
.hb{height:54.421875px;}
.h15{height:58.651172px;}
.h7{height:59.066719px;}
.h16{height:59.436914px;}
.h5{height:69.144258px;}
.h9{height:69.432187px;}
.h8{height:70.995234px;}
.h11{height:72.345000px;}
.he{height:72.360000px;}
.hd{height:72.382500px;}
.h12{height:72.525000px;}
.h13{height:72.561000px;}
.h10{height:72.570000px;}
.h3{height:80.208984px;}
.h6{height:82.676953px;}
.h2{height:84.898125px;}
.hc{height:181.065000px;}
.ha{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.360000px;}
.w12{width:89.805000px;}
.wd{width:90.345000px;}
.w11{width:105.141000px;}
.wc{width:105.861000px;}
.w5{width:119.541000px;}
.w10{width:120.225000px;}
.wb{width:120.945000px;}
.w4{width:126.351000px;}
.wf{width:140.436000px;}
.wa{width:141.156000px;}
.w8{width:142.041000px;}
.w7{width:150.105000px;}
.w6{width:176.070000px;}
.we{width:258.321000px;}
.w9{width:258.681000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:8.805000px;}
.x3c{left:12.045000px;}
.x3f{left:13.860000px;}
.x1a{left:15.645000px;}
.x25{left:17.985000px;}
.x28{left:25.410000px;}
.x1f{left:29.520000px;}
.x24{left:33.465000px;}
.x20{left:34.560000px;}
.x2f{left:39.225000px;}
.x38{left:41.940000px;}
.x23{left:46.425000px;}
.x2d{left:48.045000px;}
.x2e{left:51.105000px;}
.x17{left:52.905000px;}
.x19{left:54.210000px;}
.x27{left:55.470000px;}
.x3e{left:56.700000px;}
.x30{left:57.945000px;}
.x22{left:59.385000px;}
.x1e{left:60.660000px;}
.x29{left:62.670000px;}
.x3b{left:67.170000px;}
.x40{left:70.005000px;}
.x1d{left:72.360000px;}
.x2b{left:77.925000px;}
.x2c{left:79.050000px;}
.x2a{left:90.900000px;}
.x36{left:94.305000px;}
.x16{left:119.925000px;}
.x3{left:127.656000px;}
.x32{left:132.516000px;}
.x1{left:139.716000px;}
.xf{left:170.130000px;}
.x13{left:172.290000px;}
.x10{left:180.210000px;}
.x6{left:191.910000px;}
.x33{left:199.290000px;}
.x5{left:209.730000px;}
.x18{left:247.005000px;}
.x11{left:321.015000px;}
.x31{left:343.695000px;}
.xe{left:358.455000px;}
.x1c{left:367.275000px;}
.x37{left:378.615000px;}
.xc{left:383.295000px;}
.xd{left:385.275000px;}
.x9{left:390.495000px;}
.xa{left:407.775000px;}
.x2{left:414.255000px;}
.xb{left:434.235000px;}
.x8{left:441.255000px;}
.x7{left:499.605000px;}
.x39{left:519.780000px;}
.x21{left:544.080000px;}
.x3a{left:640.740000px;}
.x26{left:694.920000px;}
.x3d{left:746.610000px;}
.x12{left:750.390000px;}
.x34{left:793.027500px;}
.x35{left:799.890000px;}
.x14{left:820.027500px;}
.x15{left:826.890000px;}
.x4{left:831.780000px;}
@media print{
.v1{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.360000pt;}
.ls1d{letter-spacing:-1.296000pt;}
.ls1e{letter-spacing:-0.608000pt;}
.ls1a{letter-spacing:-0.367467pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.007680pt;}
.ls17{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.224640pt;}
.ls18{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:2.811307pt;}
.ls16{letter-spacing:2.880000pt;}
.ls9{letter-spacing:3.520000pt;}
.ls11{letter-spacing:3.680000pt;}
.lsd{letter-spacing:8.160000pt;}
.lsc{letter-spacing:8.800000pt;}
.ls5{letter-spacing:10.080000pt;}
.ls12{letter-spacing:11.529600pt;}
.ls10{letter-spacing:12.169600pt;}
.ls15{letter-spacing:14.560000pt;}
.lsf{letter-spacing:15.200000pt;}
.lse{letter-spacing:15.818667pt;}
.ls13{letter-spacing:15.840000pt;}
.ls8{letter-spacing:16.384640pt;}
.ls7{letter-spacing:16.623360pt;}
.lsa{letter-spacing:19.472640pt;}
.lsb{letter-spacing:19.680000pt;}
.ls6{letter-spacing:20.224640pt;}
.wsa{word-spacing:-74.880000pt;}
.ws2{word-spacing:-19.040000pt;}
.wsc{word-spacing:-18.744960pt;}
.ws11{word-spacing:-18.727680pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.703360pt;}
.ws0{word-spacing:-18.592000pt;}
.wsd{word-spacing:-18.400000pt;}
.ws10{word-spacing:-18.112000pt;}
.wsf{word-spacing:-17.424000pt;}
.ws9{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.912533pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:5.007680pt;}
.ws6{word-spacing:5.647680pt;}
.ws8{word-spacing:7.034347pt;}
.ws4{word-spacing:9.487680pt;}
._15{margin-left:-1.856000pt;}
._0{margin-left:-0.953813pt;}
._1{width:1.083947pt;}
._5{width:2.252373pt;}
._17{width:3.565867pt;}
._11{width:4.622933pt;}
._2b{width:5.671467pt;}
._18{width:6.664320pt;}
._4{width:7.787520pt;}
._1e{width:8.741333pt;}
._b{width:9.639893pt;}
._1b{width:10.597547pt;}
._2{width:11.495040pt;}
._3{width:12.560213pt;}
._26{width:13.950507pt;}
._d{width:15.106133pt;}
._e{width:16.418347pt;}
._23{width:17.812693pt;}
._12{width:20.123093pt;}
._13{width:21.380053pt;}
._14{width:23.108907pt;}
._28{width:24.290133pt;}
._6{width:25.534080pt;}
._f{width:27.106560pt;}
._2a{width:28.354773pt;}
._27{width:29.577600pt;}
._16{width:31.082453pt;}
._7{width:32.403413pt;}
._22{width:34.182187pt;}
._30{width:36.001280pt;}
._1f{width:38.413440pt;}
._20{width:39.634773pt;}
._a{width:43.580160pt;}
._8{width:44.533973pt;}
._9{width:45.543680pt;}
._29{width:46.489813pt;}
._24{width:48.577493pt;}
._25{width:49.608320pt;}
._1c{width:50.544000pt;}
._1d{width:51.526187pt;}
._2f{width:52.999040pt;}
._21{width:58.106880pt;}
._10{width:60.708053pt;}
._19{width:62.922453pt;}
._1a{width:63.858133pt;}
._2d{width:71.884800pt;}
._2c{width:72.811520pt;}
._c{width:92.232533pt;}
._2e{width:94.439467pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.080000pt;}
.y6d{bottom:14.866667pt;}
.y6a{bottom:14.880000pt;}
.y67{bottom:15.040000pt;}
.y4e{bottom:15.186667pt;}
.y4a{bottom:15.200000pt;}
.y5a{bottom:15.346667pt;}
.y47{bottom:15.360000pt;}
.y55{bottom:15.386667pt;}
.y73{bottom:31.026667pt;}
.y65{bottom:31.040000pt;}
.y70{bottom:31.186667pt;}
.y5b{bottom:31.346667pt;}
.y45{bottom:31.360000pt;}
.y56{bottom:31.386667pt;}
.y4{bottom:43.840000pt;}
.y6f{bottom:47.026667pt;}
.y69{bottom:47.040000pt;}
.y66{bottom:47.200000pt;}
.y6c{bottom:47.226667pt;}
.y71{bottom:47.346667pt;}
.y4c{bottom:47.360000pt;}
.y49{bottom:47.400000pt;}
.y59{bottom:47.506667pt;}
.y41{bottom:47.520000pt;}
.y51{bottom:47.546667pt;}
.y44{bottom:63.520000pt;}
.y3f{bottom:79.680000pt;}
.y3{bottom:87.360000pt;}
.y43{bottom:95.840000pt;}
.y40{bottom:111.840000pt;}
.y60{bottom:114.272000pt;}
.y5f{bottom:118.912000pt;}
.y22{bottom:121.152000pt;}
.y42{bottom:128.000000pt;}
.y5e{bottom:130.912000pt;}
.y46{bottom:144.000000pt;}
.y3c{bottom:147.546667pt;}
.y21{bottom:153.306667pt;}
.y5d{bottom:161.640000pt;}
.y72{bottom:166.920000pt;}
.y3b{bottom:179.866667pt;}
.y20{bottom:185.466667pt;}
.y5c{bottom:194.440000pt;}
.y3a{bottom:212.026667pt;}
.y1f{bottom:217.626667pt;}
.y58{bottom:227.240000pt;}
.y6e{bottom:232.040000pt;}
.y39{bottom:244.186667pt;}
.y1e{bottom:249.786667pt;}
.y38{bottom:276.346667pt;}
.y1d{bottom:282.106667pt;}
.y57{bottom:292.360000pt;}
.y6b{bottom:297.000000pt;}
.y37{bottom:308.666667pt;}
.y1c{bottom:314.266667pt;}
.y54{bottom:325.160000pt;}
.y36{bottom:341.026667pt;}
.y1b{bottom:346.466667pt;}
.y68{bottom:362.146667pt;}
.y35{bottom:373.826667pt;}
.y75{bottom:378.306667pt;}
.y1a{bottom:378.626667pt;}
.y53{bottom:390.306667pt;}
.y34{bottom:406.466667pt;}
.y74{bottom:410.626667pt;}
.y19{bottom:410.946667pt;}
.y64{bottom:427.106667pt;}
.y33{bottom:438.626667pt;}
.y18{bottom:442.786667pt;}
.y28{bottom:443.106667pt;}
.y52{bottom:455.426667pt;}
.y32{bottom:471.106667pt;}
.y17{bottom:475.266667pt;}
.y31{bottom:503.746667pt;}
.y62{bottom:507.106667pt;}
.y16{bottom:507.426667pt;}
.y63{bottom:513.826667pt;}
.y50{bottom:520.386667pt;}
.y30{bottom:536.066667pt;}
.y61{bottom:539.426667pt;}
.y15{bottom:539.746667pt;}
.y2f{bottom:568.893333pt;}
.y14{bottom:571.933333pt;}
.y4f{bottom:585.533333pt;}
.y2e{bottom:601.693333pt;}
.y13{bottom:604.093333pt;}
.y2d{bottom:634.333333pt;}
.y12{bottom:636.253333pt;}
.y4d{bottom:650.666667pt;}
.y2c{bottom:666.813333pt;}
.y11{bottom:668.573333pt;}
.y4b{bottom:683.453333pt;}
.y2b{bottom:699.453333pt;}
.y10{bottom:700.733333pt;}
.y2a{bottom:731.773333pt;}
.yf{bottom:732.893333pt;}
.y48{bottom:748.573333pt;}
.y29{bottom:764.253333pt;}
.ye{bottom:765.053333pt;}
.yd{bottom:797.253333pt;}
.y3e{bottom:813.573333pt;}
.yc{bottom:829.253333pt;}
.y27{bottom:829.573333pt;}
.yb{bottom:861.733333pt;}
.ya{bottom:893.893333pt;}
.y9{bottom:925.733333pt;}
.y26{bottom:926.053333pt;}
.y8{bottom:958.053333pt;}
.y25{bottom:958.373333pt;}
.y7{bottom:990.213333pt;}
.y24{bottom:990.533333pt;}
.y3d{bottom:996.933333pt;}
.y6{bottom:1022.400000pt;}
.y23{bottom:1022.720000pt;}
.y2{bottom:1055.360000pt;}
.y1{bottom:1076.800000pt;}
.h4{height:28.800000pt;}
.hf{height:32.146667pt;}
.h14{height:33.918750pt;}
.hb{height:48.375000pt;}
.h15{height:52.134375pt;}
.h7{height:52.503750pt;}
.h16{height:52.832812pt;}
.h5{height:61.461562pt;}
.h9{height:61.717500pt;}
.h8{height:63.106875pt;}
.h11{height:64.306667pt;}
.he{height:64.320000pt;}
.hd{height:64.340000pt;}
.h12{height:64.466667pt;}
.h13{height:64.498667pt;}
.h10{height:64.506667pt;}
.h3{height:71.296875pt;}
.h6{height:73.490625pt;}
.h2{height:75.465000pt;}
.hc{height:160.946667pt;}
.ha{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.320000pt;}
.w12{width:79.826667pt;}
.wd{width:80.306667pt;}
.w11{width:93.458667pt;}
.wc{width:94.098667pt;}
.w5{width:106.258667pt;}
.w10{width:106.866667pt;}
.wb{width:107.506667pt;}
.w4{width:112.312000pt;}
.wf{width:124.832000pt;}
.wa{width:125.472000pt;}
.w8{width:126.258667pt;}
.w7{width:133.426667pt;}
.w6{width:156.506667pt;}
.we{width:229.618667pt;}
.w9{width:229.938667pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.826667pt;}
.x3c{left:10.706667pt;}
.x3f{left:12.320000pt;}
.x1a{left:13.906667pt;}
.x25{left:15.986667pt;}
.x28{left:22.586667pt;}
.x1f{left:26.240000pt;}
.x24{left:29.746667pt;}
.x20{left:30.720000pt;}
.x2f{left:34.866667pt;}
.x38{left:37.280000pt;}
.x23{left:41.266667pt;}
.x2d{left:42.706667pt;}
.x2e{left:45.426667pt;}
.x17{left:47.026667pt;}
.x19{left:48.186667pt;}
.x27{left:49.306667pt;}
.x3e{left:50.400000pt;}
.x30{left:51.506667pt;}
.x22{left:52.786667pt;}
.x1e{left:53.920000pt;}
.x29{left:55.706667pt;}
.x3b{left:59.706667pt;}
.x40{left:62.226667pt;}
.x1d{left:64.320000pt;}
.x2b{left:69.266667pt;}
.x2c{left:70.266667pt;}
.x2a{left:80.800000pt;}
.x36{left:83.826667pt;}
.x16{left:106.600000pt;}
.x3{left:113.472000pt;}
.x32{left:117.792000pt;}
.x1{left:124.192000pt;}
.xf{left:151.226667pt;}
.x13{left:153.146667pt;}
.x10{left:160.186667pt;}
.x6{left:170.586667pt;}
.x33{left:177.146667pt;}
.x5{left:186.426667pt;}
.x18{left:219.560000pt;}
.x11{left:285.346667pt;}
.x31{left:305.506667pt;}
.xe{left:318.626667pt;}
.x1c{left:326.466667pt;}
.x37{left:336.546667pt;}
.xc{left:340.706667pt;}
.xd{left:342.466667pt;}
.x9{left:347.106667pt;}
.xa{left:362.466667pt;}
.x2{left:368.226667pt;}
.xb{left:385.986667pt;}
.x8{left:392.226667pt;}
.x7{left:444.093333pt;}
.x39{left:462.026667pt;}
.x21{left:483.626667pt;}
.x3a{left:569.546667pt;}
.x26{left:617.706667pt;}
.x3d{left:663.653333pt;}
.x12{left:667.013333pt;}
.x34{left:704.913333pt;}
.x35{left:711.013333pt;}
.x14{left:728.913333pt;}
.x15{left:735.013333pt;}
.x4{left:739.360000pt;}
}




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