
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a2a8dac253d0f0efd469343a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e313cc2c9f4c857807c56930.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_744e49ed3e374646cc22c1ca.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ca606f0b4968fff8d13b7c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_b5f306644756318abcda3c1e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8a0c8c800cf330ad4b7bb8aa.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.786000px;}
.ls7{letter-spacing:-0.738000px;}
.ls5{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.214800px;}
.lsb{letter-spacing:-0.115800px;}
.ls15{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.023760px;}
.ls16{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.256200px;}
.ls17{letter-spacing:0.314400px;}
.lsd{letter-spacing:0.393600px;}
.ls10{letter-spacing:0.617760px;}
.lsc{letter-spacing:0.654000px;}
.ls1a{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls18{letter-spacing:2.106720px;}
.lsf{letter-spacing:5.706720px;}
.ls1c{letter-spacing:12.186720px;}
.ls11{letter-spacing:17.226720px;}
.ls14{letter-spacing:20.106720px;}
.lse{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls19{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.820160px;}
.ws7{word-spacing:-13.692360px;}
.wsd{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.389960px;}
.wsa{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.156960px;}
._10{margin-left:-4.766880px;}
._6{margin-left:-3.312000px;}
._b{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.723520px;}
._7{width:4.117680px;}
._8{width:5.452320px;}
._a{width:6.499680px;}
._12{width:7.538160px;}
._e{width:8.545680px;}
._f{width:9.549120px;}
._d{width:10.561200px;}
._c{width:11.712960px;}
._16{width:14.506080px;}
._15{width:15.871920px;}
._11{width:17.270640px;}
._14{width:19.063440px;}
._13{width:24.621120px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y62{bottom:6.660000px;}
.y95{bottom:7.020000px;}
.y94{bottom:28.080000px;}
.y91{bottom:35.460000px;}
.y93{bottom:49.500000px;}
.y6{bottom:61.236000px;}
.y92{bottom:70.554000px;}
.y8f{bottom:91.296000px;}
.y90{bottom:92.376000px;}
.y31{bottom:101.196000px;}
.y8e{bottom:106.416000px;}
.y60{bottom:112.356000px;}
.y30{bottom:122.256000px;}
.y8d{bottom:127.476000px;}
.y5f{bottom:133.416000px;}
.y2f{bottom:143.316000px;}
.y8c{bottom:148.536000px;}
.y5e{bottom:154.470000px;}
.y2e{bottom:164.370000px;}
.y5d{bottom:175.530000px;}
.y8b{bottom:178.590000px;}
.y2d{bottom:185.430000px;}
.y5c{bottom:196.590000px;}
.y8a{bottom:199.650000px;}
.y2c{bottom:206.490000px;}
.y5b{bottom:217.650000px;}
.y89{bottom:220.710000px;}
.y2b{bottom:227.550000px;}
.y5a{bottom:238.710000px;}
.y88{bottom:241.770000px;}
.y2a{bottom:248.610000px;}
.y59{bottom:259.770000px;}
.y87{bottom:262.830000px;}
.y29{bottom:269.670000px;}
.y58{bottom:280.830000px;}
.y86{bottom:283.935000px;}
.y28{bottom:290.775000px;}
.y57{bottom:301.935000px;}
.y85{bottom:304.995000px;}
.y27{bottom:311.835000px;}
.y56{bottom:322.995000px;}
.y84{bottom:323.535000px;}
.y26{bottom:332.895000px;}
.y55{bottom:344.055000px;}
.y83{bottom:349.815000px;}
.y25{bottom:353.955000px;}
.y54{bottom:365.115000px;}
.y24{bottom:375.015000px;}
.y82{bottom:381.675000px;}
.y53{bottom:386.175000px;}
.y23{bottom:396.075000px;}
.y81{bottom:402.735000px;}
.y52{bottom:407.235000px;}
.y22{bottom:417.135000px;}
.y80{bottom:423.795000px;}
.y51{bottom:428.295000px;}
.y21{bottom:438.195000px;}
.y7f{bottom:444.855000px;}
.y50{bottom:449.355000px;}
.y20{bottom:459.255000px;}
.y7e{bottom:465.915000px;}
.y4f{bottom:470.415000px;}
.y1f{bottom:480.315000px;}
.y7d{bottom:486.975000px;}
.y4e{bottom:491.475000px;}
.y1e{bottom:501.375000px;}
.y7c{bottom:508.035000px;}
.y4d{bottom:512.535000px;}
.y1d{bottom:524.775000px;}
.y7b{bottom:529.095000px;}
.y4c{bottom:533.595000px;}
.y7a{bottom:548.355000px;}
.y1c{bottom:554.655000px;}
.y79{bottom:573.945000px;}
.y1b{bottom:575.745000px;}
.y1a{bottom:596.805000px;}
.y78{bottom:600.225000px;}
.y19{bottom:617.865000px;}
.y77{bottom:632.805000px;}
.y18{bottom:638.925000px;}
.y76{bottom:653.865000px;}
.y4b{bottom:659.805000px;}
.y17{bottom:659.985000px;}
.y75{bottom:674.925000px;}
.y4a{bottom:680.865000px;}
.y16{bottom:681.045000px;}
.y74{bottom:695.985000px;}
.y49{bottom:701.925000px;}
.y15{bottom:702.105000px;}
.y73{bottom:717.045000px;}
.y48{bottom:722.985000px;}
.y14{bottom:723.165000px;}
.y72{bottom:738.105000px;}
.y47{bottom:744.045000px;}
.y13{bottom:744.225000px;}
.y71{bottom:759.165000px;}
.y46{bottom:765.105000px;}
.y12{bottom:765.285000px;}
.y70{bottom:774.285000px;}
.y45{bottom:786.165000px;}
.y11{bottom:786.345000px;}
.y6f{bottom:796.065000px;}
.y44{bottom:807.225000px;}
.y10{bottom:807.405000px;}
.y6e{bottom:818.025000px;}
.y43{bottom:828.285000px;}
.yf{bottom:828.465000px;}
.y6d{bottom:846.465000px;}
.y42{bottom:849.390000px;}
.ye{bottom:851.730000px;}
.y6c{bottom:867.570000px;}
.y41{bottom:870.450000px;}
.yd{bottom:878.010000px;}
.y6b{bottom:888.630000px;}
.y40{bottom:891.510000px;}
.yc{bottom:899.070000px;}
.y6a{bottom:909.690000px;}
.y3f{bottom:912.570000px;}
.yb{bottom:915.810000px;}
.y69{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.ya{bottom:939.030000px;}
.y68{bottom:951.810000px;}
.y3d{bottom:954.690000px;}
.y9{bottom:961.350000px;}
.y67{bottom:972.870000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:986.550000px;}
.y66{bottom:993.930000px;}
.y3b{bottom:996.810000px;}
.y65{bottom:1014.990000px;}
.y3a{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.y64{bottom:1030.110000px;}
.y39{bottom:1038.930000px;}
.y63{bottom:1051.890000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y61{bottom:1073.670000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1102.110000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.hf{height:2.864531px;}
.hb{height:21.060000px;}
.hc{height:21.096000px;}
.h7{height:38.671172px;}
.h8{height:45.316055px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.hd{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.he{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:30.780000px;}
.w15{width:56.736000px;}
.w10{width:61.380000px;}
.wf{width:61.740000px;}
.wc{width:64.116000px;}
.w14{width:66.240000px;}
.w11{width:72.180000px;}
.w7{width:80.460000px;}
.w16{width:81.000000px;}
.wb{width:104.400000px;}
.w5{width:109.080000px;}
.w6{width:115.596000px;}
.w9{width:132.876000px;}
.wa{width:140.796000px;}
.w8{width:194.070000px;}
.w18{width:208.830000px;}
.we{width:214.050000px;}
.w3{width:215.535000px;}
.w12{width:222.690000px;}
.w17{width:241.230000px;}
.w13{width:289.875000px;}
.wd{width:290.910000px;}
.w19{width:575.385000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x5{left:7.740000px;}
.x1{left:53.999987px;}
.x3{left:70.199987px;}
.x4{left:72.000000px;}
.x16{left:74.520000px;}
.x2{left:75.599987px;}
.xb{left:78.480000px;}
.x1b{left:80.999987px;}
.x1c{left:108.035987px;}
.x10{left:126.036000px;}
.x1d{left:191.370000px;}
.xc{left:212.070000px;}
.x1e{left:262.830000px;}
.x6{left:288.255000px;}
.x7{left:319.755000px;}
.x12{left:342.255000px;}
.xd{left:353.595000px;}
.x17{left:366.555000px;}
.x13{left:406.335000px;}
.x8{left:429.555000px;}
.x18{left:435.135000px;}
.xe{left:458.715000px;}
.x14{left:469.905000px;}
.x19{left:494.205000px;}
.xf{left:523.725000px;}
.x15{left:544.425000px;}
.x9{left:545.865000px;}
.x1a{left:577.365000px;}
.xa{left:627.045000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.698667pt;}
.ls7{letter-spacing:-0.656000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.190933pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.021120pt;}
.ls16{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.227733pt;}
.ls17{letter-spacing:0.279467pt;}
.lsd{letter-spacing:0.349867pt;}
.ls10{letter-spacing:0.549120pt;}
.lsc{letter-spacing:0.581333pt;}
.ls1a{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls18{letter-spacing:1.872640pt;}
.lsf{letter-spacing:5.072640pt;}
.ls1c{letter-spacing:10.832640pt;}
.ls11{letter-spacing:15.312640pt;}
.ls14{letter-spacing:17.872640pt;}
.lse{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls19{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.284587pt;}
.ws7{word-spacing:-12.170987pt;}
.wsd{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.902187pt;}
.wsa{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.472853pt;}
._10{margin-left:-4.237227pt;}
._6{margin-left:-2.944000pt;}
._b{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.420907pt;}
._7{width:3.660160pt;}
._8{width:4.846507pt;}
._a{width:5.777493pt;}
._12{width:6.700587pt;}
._e{width:7.596160pt;}
._f{width:8.488107pt;}
._d{width:9.387733pt;}
._c{width:10.411520pt;}
._16{width:12.894293pt;}
._15{width:14.108373pt;}
._11{width:15.351680pt;}
._14{width:16.945280pt;}
._13{width:21.885440pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:5.920000pt;}
.y95{bottom:6.240000pt;}
.y94{bottom:24.960000pt;}
.y91{bottom:31.520000pt;}
.y93{bottom:44.000000pt;}
.y6{bottom:54.432000pt;}
.y92{bottom:62.714667pt;}
.y8f{bottom:81.152000pt;}
.y90{bottom:82.112000pt;}
.y31{bottom:89.952000pt;}
.y8e{bottom:94.592000pt;}
.y60{bottom:99.872000pt;}
.y30{bottom:108.672000pt;}
.y8d{bottom:113.312000pt;}
.y5f{bottom:118.592000pt;}
.y2f{bottom:127.392000pt;}
.y8c{bottom:132.032000pt;}
.y5e{bottom:137.306667pt;}
.y2e{bottom:146.106667pt;}
.y5d{bottom:156.026667pt;}
.y8b{bottom:158.746667pt;}
.y2d{bottom:164.826667pt;}
.y5c{bottom:174.746667pt;}
.y8a{bottom:177.466667pt;}
.y2c{bottom:183.546667pt;}
.y5b{bottom:193.466667pt;}
.y89{bottom:196.186667pt;}
.y2b{bottom:202.266667pt;}
.y5a{bottom:212.186667pt;}
.y88{bottom:214.906667pt;}
.y2a{bottom:220.986667pt;}
.y59{bottom:230.906667pt;}
.y87{bottom:233.626667pt;}
.y29{bottom:239.706667pt;}
.y58{bottom:249.626667pt;}
.y86{bottom:252.386667pt;}
.y28{bottom:258.466667pt;}
.y57{bottom:268.386667pt;}
.y85{bottom:271.106667pt;}
.y27{bottom:277.186667pt;}
.y56{bottom:287.106667pt;}
.y84{bottom:287.586667pt;}
.y26{bottom:295.906667pt;}
.y55{bottom:305.826667pt;}
.y83{bottom:310.946667pt;}
.y25{bottom:314.626667pt;}
.y54{bottom:324.546667pt;}
.y24{bottom:333.346667pt;}
.y82{bottom:339.266667pt;}
.y53{bottom:343.266667pt;}
.y23{bottom:352.066667pt;}
.y81{bottom:357.986667pt;}
.y52{bottom:361.986667pt;}
.y22{bottom:370.786667pt;}
.y80{bottom:376.706667pt;}
.y51{bottom:380.706667pt;}
.y21{bottom:389.506667pt;}
.y7f{bottom:395.426667pt;}
.y50{bottom:399.426667pt;}
.y20{bottom:408.226667pt;}
.y7e{bottom:414.146667pt;}
.y4f{bottom:418.146667pt;}
.y1f{bottom:426.946667pt;}
.y7d{bottom:432.866667pt;}
.y4e{bottom:436.866667pt;}
.y1e{bottom:445.666667pt;}
.y7c{bottom:451.586667pt;}
.y4d{bottom:455.586667pt;}
.y1d{bottom:466.466667pt;}
.y7b{bottom:470.306667pt;}
.y4c{bottom:474.306667pt;}
.y7a{bottom:487.426667pt;}
.y1c{bottom:493.026667pt;}
.y79{bottom:510.173333pt;}
.y1b{bottom:511.773333pt;}
.y1a{bottom:530.493333pt;}
.y78{bottom:533.533333pt;}
.y19{bottom:549.213333pt;}
.y77{bottom:562.493333pt;}
.y18{bottom:567.933333pt;}
.y76{bottom:581.213333pt;}
.y4b{bottom:586.493333pt;}
.y17{bottom:586.653333pt;}
.y75{bottom:599.933333pt;}
.y4a{bottom:605.213333pt;}
.y16{bottom:605.373333pt;}
.y74{bottom:618.653333pt;}
.y49{bottom:623.933333pt;}
.y15{bottom:624.093333pt;}
.y73{bottom:637.373333pt;}
.y48{bottom:642.653333pt;}
.y14{bottom:642.813333pt;}
.y72{bottom:656.093333pt;}
.y47{bottom:661.373333pt;}
.y13{bottom:661.533333pt;}
.y71{bottom:674.813333pt;}
.y46{bottom:680.093333pt;}
.y12{bottom:680.253333pt;}
.y70{bottom:688.253333pt;}
.y45{bottom:698.813333pt;}
.y11{bottom:698.973333pt;}
.y6f{bottom:707.613333pt;}
.y44{bottom:717.533333pt;}
.y10{bottom:717.693333pt;}
.y6e{bottom:727.133333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:736.413333pt;}
.y6d{bottom:752.413333pt;}
.y42{bottom:755.013333pt;}
.ye{bottom:757.093333pt;}
.y6c{bottom:771.173333pt;}
.y41{bottom:773.733333pt;}
.yd{bottom:780.453333pt;}
.y6b{bottom:789.893333pt;}
.y40{bottom:792.453333pt;}
.yc{bottom:799.173333pt;}
.y6a{bottom:808.613333pt;}
.y3f{bottom:811.173333pt;}
.yb{bottom:814.053333pt;}
.y69{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.ya{bottom:834.693333pt;}
.y68{bottom:846.053333pt;}
.y3d{bottom:848.613333pt;}
.y9{bottom:854.533333pt;}
.y67{bottom:864.773333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:876.933333pt;}
.y66{bottom:883.493333pt;}
.y3b{bottom:886.053333pt;}
.y65{bottom:902.213333pt;}
.y3a{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.y64{bottom:915.653333pt;}
.y39{bottom:923.493333pt;}
.y63{bottom:935.013333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y61{bottom:954.373333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:979.653333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.hf{height:2.546250pt;}
.hb{height:18.720000pt;}
.hc{height:18.752000pt;}
.h7{height:34.374375pt;}
.h8{height:40.280938pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.hd{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.he{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:27.360000pt;}
.w15{width:50.432000pt;}
.w10{width:54.560000pt;}
.wf{width:54.880000pt;}
.wc{width:56.992000pt;}
.w14{width:58.880000pt;}
.w11{width:64.160000pt;}
.w7{width:71.520000pt;}
.w16{width:72.000000pt;}
.wb{width:92.800000pt;}
.w5{width:96.960000pt;}
.w6{width:102.752000pt;}
.w9{width:118.112000pt;}
.wa{width:125.152000pt;}
.w8{width:172.506667pt;}
.w18{width:185.626667pt;}
.we{width:190.266667pt;}
.w3{width:191.586667pt;}
.w12{width:197.946667pt;}
.w17{width:214.426667pt;}
.w13{width:257.666667pt;}
.wd{width:258.586667pt;}
.w19{width:511.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x5{left:6.880000pt;}
.x1{left:47.999988pt;}
.x3{left:62.399988pt;}
.x4{left:64.000000pt;}
.x16{left:66.240000pt;}
.x2{left:67.199988pt;}
.xb{left:69.760000pt;}
.x1b{left:71.999988pt;}
.x1c{left:96.031988pt;}
.x10{left:112.032000pt;}
.x1d{left:170.106667pt;}
.xc{left:188.506667pt;}
.x1e{left:233.626667pt;}
.x6{left:256.226667pt;}
.x7{left:284.226667pt;}
.x12{left:304.226667pt;}
.xd{left:314.306667pt;}
.x17{left:325.826667pt;}
.x13{left:361.186667pt;}
.x8{left:381.826667pt;}
.x18{left:386.786667pt;}
.xe{left:407.746667pt;}
.x14{left:417.693333pt;}
.x19{left:439.293333pt;}
.xf{left:465.533333pt;}
.x15{left:483.933333pt;}
.x9{left:485.213333pt;}
.x1a{left:513.213333pt;}
.xa{left:557.373333pt;}
}




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