
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b637884fda1e8a0392683609.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83b99c76d0bd38c3e2d09963.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_0a1b41237e487d1d8ae59f87.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0174ee6388213ef62d4c0928.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_05f3a560d74a009648878534.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_25b281a1749196f274e98e64.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ebd170495210ca90231fd7.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-66.960000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls4{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262080px;}
.ls16{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.828000px;}
.lse{letter-spacing:6.785280px;}
.lsc{letter-spacing:33.120000px;}
.lsd{letter-spacing:39.905280px;}
.ls10{letter-spacing:43.505280px;}
.ls14{letter-spacing:51.425280px;}
.ls15{letter-spacing:60.785280px;}
.ls17{letter-spacing:60.929280px;}
.lsb{letter-spacing:64.026720px;}
.lsf{letter-spacing:93.905280px;}
.ls13{letter-spacing:94.049280px;}
.ls0{letter-spacing:207.416640px;}
.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:-59.760000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._33{margin-left:-6.756480px;}
._34{margin-left:-5.474880px;}
._7{margin-left:-2.053440px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._e{width:3.378240px;}
._6{width:4.538880px;}
._5{width:5.564160px;}
._20{width:6.737280px;}
._a{width:7.750080px;}
._b{width:9.538560px;}
._d{width:11.373120px;}
._4{width:13.046400px;}
._3{width:14.175360px;}
._1c{width:15.288960px;}
._8{width:17.619840px;}
._9{width:19.325280px;}
._c{width:20.469600px;}
._18{width:21.562560px;}
._f{width:22.587840px;}
._10{width:23.905920px;}
._13{width:24.979200px;}
._14{width:26.098560px;}
._23{width:27.953280px;}
._25{width:29.639040px;}
._26{width:30.742080px;}
._15{width:31.795200px;}
._1e{width:33.382080px;}
._16{width:34.908480px;}
._39{width:36.233280px;}
._2b{width:37.293120px;}
._19{width:39.015360px;}
._2c{width:40.104960px;}
._37{width:41.135040px;}
._27{width:42.327360px;}
._40{width:43.387200px;}
._21{width:44.712000px;}
._22{width:46.301760px;}
._2a{width:47.957760px;}
._41{width:49.017600px;}
._3e{width:50.541120px;}
._17{width:52.395840px;}
._1f{width:53.697600px;}
._42{width:55.774080px;}
._43{width:56.900160px;}
._1d{width:60.278400px;}
._28{width:62.530560px;}
._11{width:65.143680px;}
._12{width:66.408960px;}
._46{width:68.757120px;}
._45{width:69.816960px;}
._24{width:71.340480px;}
._31{width:76.573440px;}
._32{width:77.765760px;}
._44{width:79.163040px;}
._29{width:80.680320px;}
._2d{width:82.667520px;}
._2e{width:83.690880px;}
._38{width:88.562880px;}
._35{width:91.543680px;}
._36{width:93.673440px;}
._30{width:103.827840px;}
._2f{width:105.917760px;}
._3c{width:109.098240px;}
._3d{width:110.421120px;}
._3f{width:112.410240px;}
._1a{width:118.437120px;}
._1b{width:119.761920px;}
._3b{width:132.115680px;}
._3a{width:134.202240px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y71{bottom:13.500000px;}
.y83{bottom:13.530000px;}
.y78{bottom:13.680000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y35{bottom:37.080000px;}
.y73{bottom:42.660000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y30{bottom:97.596000px;}
.y5c{bottom:99.756000px;}
.y7d{bottom:101.340000px;}
.y8c{bottom:104.256000px;}
.y2f{bottom:126.036000px;}
.y5b{bottom:128.196000px;}
.y76{bottom:130.545000px;}
.y8b{bottom:132.696000px;}
.y2e{bottom:154.470000px;}
.y5a{bottom:156.630000px;}
.y8e{bottom:161.310000px;}
.y8a{bottom:161.670000px;}
.y2d{bottom:182.910000px;}
.y61{bottom:184.890000px;}
.y59{bottom:185.250000px;}
.y89{bottom:186.150000px;}
.y2c{bottom:211.350000px;}
.y58{bottom:213.330000px;}
.y60{bottom:213.690000px;}
.y2b{bottom:239.790000px;}
.y68{bottom:241.770000px;}
.y57{bottom:242.130000px;}
.y2a{bottom:268.230000px;}
.y6e{bottom:270.210000px;}
.y56{bottom:270.570000px;}
.y29{bottom:296.850000px;}
.y6b{bottom:298.650000px;}
.y55{bottom:299.010000px;}
.y28{bottom:325.335000px;}
.y90{bottom:327.135000px;}
.y54{bottom:327.495000px;}
.y27{bottom:353.775000px;}
.y65{bottom:355.575000px;}
.y53{bottom:355.935000px;}
.y26{bottom:381.855000px;}
.y31{bottom:382.215000px;}
.y52{bottom:384.375000px;}
.y8f{bottom:412.455000px;}
.y51{bottom:412.815000px;}
.y25{bottom:414.435000px;}
.y8d{bottom:426.495000px;}
.y88{bottom:426.855000px;}
.y6d{bottom:441.075000px;}
.y50{bottom:441.435000px;}
.y87{bottom:442.515000px;}
.y24{bottom:442.875000px;}
.y67{bottom:469.515000px;}
.y4f{bottom:469.875000px;}
.y23{bottom:471.315000px;}
.y86{bottom:471.675000px;}
.y4e{bottom:497.955000px;}
.y5f{bottom:498.315000px;}
.y22{bottom:499.755000px;}
.y85{bottom:501.015000px;}
.y4d{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.y84{bottom:530.175000px;}
.y4c{bottom:555.195000px;}
.y20{bottom:556.635000px;}
.y82{bottom:559.335000px;}
.y5e{bottom:583.305000px;}
.y4b{bottom:583.665000px;}
.y1f{bottom:585.105000px;}
.y81{bottom:602.205000px;}
.y6a{bottom:611.745000px;}
.y4a{bottom:612.105000px;}
.y1e{bottom:613.725000px;}
.y7c{bottom:617.865000px;}
.y92{bottom:640.185000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.y80{bottom:647.025000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.y7f{bottom:676.185000px;}
.y91{bottom:697.245000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.y7e{bottom:705.525000px;}
.y64{bottom:725.685000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.y75{bottom:734.865000px;}
.y63{bottom:754.125000px;}
.y45{bottom:754.485000px;}
.y19{bottom:761.865000px;}
.y7b{bottom:764.205000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.y7a{bottom:793.365000px;}
.y69{bottom:811.005000px;}
.y43{bottom:811.365000px;}
.y17{bottom:818.745000px;}
.y79{bottom:822.570000px;}
.y42{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.y77{bottom:851.730000px;}
.y41{bottom:868.290000px;}
.y15{bottom:875.850000px;}
.y72{bottom:881.070000px;}
.y5d{bottom:896.370000px;}
.y40{bottom:896.730000px;}
.y14{bottom:898.350000px;}
.y74{bottom:910.230000px;}
.y62{bottom:924.810000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:932.730000px;}
.y70{bottom:939.390000px;}
.y66{bottom:953.430000px;}
.y3e{bottom:953.790000px;}
.y12{bottom:955.230000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:989.610000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.y6f{bottom:1038.750000px;}
.y3b{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y6c{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h12{height:28.440000px;}
.h16{height:28.476000px;}
.h15{height:28.620000px;}
.h6{height:33.480000px;}
.hc{height:40.985156px;}
.hb{height:41.250938px;}
.h1{height:48.045938px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h13{height:57.600000px;}
.h2{height:58.621992px;}
.h19{height:59.383125px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h18{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h10{height:111.043838px;}
.h17{height:116.280000px;}
.h14{height:145.476000px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wa{width:138.600000px;}
.w9{width:152.130000px;}
.wd{width:157.710000px;}
.wb{width:162.570000px;}
.wf{width:282.450000px;}
.wc{width:351.255000px;}
.w3{width:361.335000px;}
.we{width:361.515000px;}
.w8{width:514.545000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xc{left:80.999986px;}
.x18{left:94.535986px;}
.x19{left:96.695986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x12{left:212.790000px;}
.x11{left:217.650000px;}
.x14{left:432.074986px;}
.x8{left:486.104986px;}
.xd{left:513.104986px;}
.x5{left:521.025000px;}
.x16{left:526.604986px;}
.x17{left:528.764986px;}
.xf{left:569.625000px;}
.x13{left:575.025000px;}
.x10{left:722.490000px;}
.x15{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls16{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.736000pt;}
.lse{letter-spacing:6.031360pt;}
.lsc{letter-spacing:29.440000pt;}
.lsd{letter-spacing:35.471360pt;}
.ls10{letter-spacing:38.671360pt;}
.ls14{letter-spacing:45.711360pt;}
.ls15{letter-spacing:54.031360pt;}
.ls17{letter-spacing:54.159360pt;}
.lsb{letter-spacing:56.912640pt;}
.lsf{letter-spacing:83.471360pt;}
.ls13{letter-spacing:83.599360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws0{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._33{margin-left:-6.005760pt;}
._34{margin-left:-4.866560pt;}
._7{margin-left:-1.825280pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._e{width:3.002880pt;}
._6{width:4.034560pt;}
._5{width:4.945920pt;}
._20{width:5.988693pt;}
._a{width:6.888960pt;}
._b{width:8.478720pt;}
._d{width:10.109440pt;}
._4{width:11.596800pt;}
._3{width:12.600320pt;}
._1c{width:13.590187pt;}
._8{width:15.662080pt;}
._9{width:17.178027pt;}
._c{width:18.195200pt;}
._18{width:19.166720pt;}
._f{width:20.078080pt;}
._10{width:21.249707pt;}
._13{width:22.203733pt;}
._14{width:23.198720pt;}
._23{width:24.847360pt;}
._25{width:26.345813pt;}
._26{width:27.326293pt;}
._15{width:28.262400pt;}
._1e{width:29.672960pt;}
._16{width:31.029760pt;}
._39{width:32.207360pt;}
._2b{width:33.149440pt;}
._19{width:34.680320pt;}
._2c{width:35.648853pt;}
._37{width:36.564480pt;}
._27{width:37.624320pt;}
._40{width:38.566400pt;}
._21{width:39.744000pt;}
._22{width:41.157120pt;}
._2a{width:42.629120pt;}
._41{width:43.571200pt;}
._3e{width:44.925440pt;}
._17{width:46.574080pt;}
._1f{width:47.731200pt;}
._42{width:49.576960pt;}
._43{width:50.577920pt;}
._1d{width:53.580800pt;}
._28{width:55.582720pt;}
._11{width:57.905493pt;}
._12{width:59.030187pt;}
._46{width:61.117440pt;}
._45{width:62.059520pt;}
._24{width:63.413760pt;}
._31{width:68.065280pt;}
._32{width:69.125120pt;}
._44{width:70.367147pt;}
._29{width:71.715840pt;}
._2d{width:73.482240pt;}
._2e{width:74.391893pt;}
._38{width:78.722560pt;}
._35{width:81.372160pt;}
._36{width:83.265280pt;}
._30{width:92.291413pt;}
._2f{width:94.149120pt;}
._3c{width:96.976213pt;}
._3d{width:98.152107pt;}
._3f{width:99.920213pt;}
._1a{width:105.277440pt;}
._1b{width:106.455040pt;}
._3b{width:117.436160pt;}
._3a{width:119.290880pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y71{bottom:12.000000pt;}
.y83{bottom:12.026667pt;}
.y78{bottom:12.160000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y35{bottom:32.960000pt;}
.y73{bottom:37.920000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y30{bottom:86.752000pt;}
.y5c{bottom:88.672000pt;}
.y7d{bottom:90.080000pt;}
.y8c{bottom:92.672000pt;}
.y2f{bottom:112.032000pt;}
.y5b{bottom:113.952000pt;}
.y76{bottom:116.040000pt;}
.y8b{bottom:117.952000pt;}
.y2e{bottom:137.306667pt;}
.y5a{bottom:139.226667pt;}
.y8e{bottom:143.386667pt;}
.y8a{bottom:143.706667pt;}
.y2d{bottom:162.586667pt;}
.y61{bottom:164.346667pt;}
.y59{bottom:164.666667pt;}
.y89{bottom:165.466667pt;}
.y2c{bottom:187.866667pt;}
.y58{bottom:189.626667pt;}
.y60{bottom:189.946667pt;}
.y2b{bottom:213.146667pt;}
.y68{bottom:214.906667pt;}
.y57{bottom:215.226667pt;}
.y2a{bottom:238.426667pt;}
.y6e{bottom:240.186667pt;}
.y56{bottom:240.506667pt;}
.y29{bottom:263.866667pt;}
.y6b{bottom:265.466667pt;}
.y55{bottom:265.786667pt;}
.y28{bottom:289.186667pt;}
.y90{bottom:290.786667pt;}
.y54{bottom:291.106667pt;}
.y27{bottom:314.466667pt;}
.y65{bottom:316.066667pt;}
.y53{bottom:316.386667pt;}
.y26{bottom:339.426667pt;}
.y31{bottom:339.746667pt;}
.y52{bottom:341.666667pt;}
.y8f{bottom:366.626667pt;}
.y51{bottom:366.946667pt;}
.y25{bottom:368.386667pt;}
.y8d{bottom:379.106667pt;}
.y88{bottom:379.426667pt;}
.y6d{bottom:392.066667pt;}
.y50{bottom:392.386667pt;}
.y87{bottom:393.346667pt;}
.y24{bottom:393.666667pt;}
.y67{bottom:417.346667pt;}
.y4f{bottom:417.666667pt;}
.y23{bottom:418.946667pt;}
.y86{bottom:419.266667pt;}
.y4e{bottom:442.626667pt;}
.y5f{bottom:442.946667pt;}
.y22{bottom:444.226667pt;}
.y85{bottom:445.346667pt;}
.y4d{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.y84{bottom:471.266667pt;}
.y4c{bottom:493.506667pt;}
.y20{bottom:494.786667pt;}
.y82{bottom:497.186667pt;}
.y5e{bottom:518.493333pt;}
.y4b{bottom:518.813333pt;}
.y1f{bottom:520.093333pt;}
.y81{bottom:535.293333pt;}
.y6a{bottom:543.773333pt;}
.y4a{bottom:544.093333pt;}
.y1e{bottom:545.533333pt;}
.y7c{bottom:549.213333pt;}
.y92{bottom:569.053333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.y80{bottom:575.133333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.y7f{bottom:601.053333pt;}
.y91{bottom:619.773333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.y7e{bottom:627.133333pt;}
.y64{bottom:645.053333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.y75{bottom:653.213333pt;}
.y63{bottom:670.333333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:677.213333pt;}
.y7b{bottom:679.293333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.y7a{bottom:705.213333pt;}
.y69{bottom:720.893333pt;}
.y43{bottom:721.213333pt;}
.y17{bottom:727.773333pt;}
.y79{bottom:731.173333pt;}
.y42{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.y77{bottom:757.093333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:778.533333pt;}
.y72{bottom:783.173333pt;}
.y5d{bottom:796.773333pt;}
.y40{bottom:797.093333pt;}
.y14{bottom:798.533333pt;}
.y74{bottom:809.093333pt;}
.y62{bottom:822.053333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:829.093333pt;}
.y70{bottom:835.013333pt;}
.y66{bottom:847.493333pt;}
.y3e{bottom:847.813333pt;}
.y12{bottom:849.093333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:879.653333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.y6f{bottom:923.333333pt;}
.y3b{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y6c{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h12{height:25.280000pt;}
.h16{height:25.312000pt;}
.h15{height:25.440000pt;}
.h6{height:29.760000pt;}
.hc{height:36.431250pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h13{height:51.200000pt;}
.h2{height:52.108438pt;}
.h19{height:52.785000pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h18{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h10{height:98.705634pt;}
.h17{height:103.360000pt;}
.h14{height:129.312000pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wa{width:123.200000pt;}
.w9{width:135.226667pt;}
.wd{width:140.186667pt;}
.wb{width:144.506667pt;}
.wf{width:251.066667pt;}
.wc{width:312.226667pt;}
.w3{width:321.186667pt;}
.we{width:321.346667pt;}
.w8{width:457.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xc{left:71.999988pt;}
.x18{left:84.031988pt;}
.x19{left:85.951988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x12{left:189.146667pt;}
.x11{left:193.466667pt;}
.x14{left:384.066655pt;}
.x8{left:432.093321pt;}
.xd{left:456.093321pt;}
.x5{left:463.133333pt;}
.x16{left:468.093321pt;}
.x17{left:470.013321pt;}
.xf{left:506.333333pt;}
.x13{left:511.133333pt;}
.x10{left:642.213333pt;}
.x15{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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