
    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_874ec4f696dac725b1be5293.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2bfe8da2ff045fbd28c4eff.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a49f7bd08f8f6b46b55993a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_a3cb94387e7ed868b559b590.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_478a03c83a2a23c514cd132a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_041c9510ee9ec317d8b2a928.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_6802731e453246f76c5d7bad.woff2')format("woff");}.ff7{font-family:ff7;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;}
.lse{letter-spacing:-0.924000px;}
.ls9{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.lsf{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.513600px;}
.lsa{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.828000px;}
.ls0{letter-spacing:1.512000px;}
.ls15{letter-spacing:3.060000px;}
.ls1b{letter-spacing:11.466720px;}
.ls19{letter-spacing:41.706720px;}
.lsd{letter-spacing:114.570720px;}
.lsc{letter-spacing:137.610720px;}
.ls18{letter-spacing:154.170720px;}
.ls3{letter-spacing:161.370720px;}
.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:-16.254600px;}
.ws9{word-spacing:-15.606000px;}
.wsd{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.426400px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-574.927920px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._27{margin-left:-3.645360px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._22{width:3.697920px;}
._1f{width:4.721040px;}
._20{width:6.015600px;}
._21{width:7.256880px;}
._26{width:8.503200px;}
._2c{width:10.159200px;}
._28{width:11.473920px;}
._2b{width:13.087440px;}
._2d{width:15.989040px;}
._25{width:17.214240px;}
._24{width:18.231840px;}
._23{width:19.302480px;}
._29{width:21.164400px;}
._2a{width:22.170960px;}
._2e{width:23.724720px;}
._2f{width:24.979680px;}
._1d{width:64.805040px;}
._1e{width:66.041760px;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.780000px;}
.y6{bottom:60.660000px;}
.y34{bottom:86.400000px;}
.y7d{bottom:91.080000px;}
.y6d{bottom:99.180000px;}
.ya7{bottom:101.880000px;}
.y33{bottom:106.380000px;}
.y7c{bottom:110.880000px;}
.y6c{bottom:118.980000px;}
.ya6{bottom:121.680000px;}
.y32{bottom:126.180000px;}
.y7b{bottom:130.680000px;}
.y6b{bottom:138.780000px;}
.ya5{bottom:141.660000px;}
.y31{bottom:145.980000px;}
.y7a{bottom:150.660000px;}
.y6a{bottom:158.760000px;}
.ya4{bottom:161.460000px;}
.y30{bottom:165.780000px;}
.y79{bottom:170.460000px;}
.y69{bottom:178.560000px;}
.yb4{bottom:180.900000px;}
.ya3{bottom:181.260000px;}
.y2f{bottom:185.580000px;}
.y78{bottom:190.260000px;}
.y68{bottom:198.360000px;}
.ya2{bottom:201.090000px;}
.y2e{bottom:205.410000px;}
.y77{bottom:210.090000px;}
.y67{bottom:218.190000px;}
.ya1{bottom:220.890000px;}
.y2d{bottom:225.390000px;}
.y76{bottom:229.890000px;}
.y66{bottom:237.990000px;}
.ya0{bottom:240.870000px;}
.y2c{bottom:245.190000px;}
.y75{bottom:249.870000px;}
.y65{bottom:257.610000px;}
.y9f{bottom:260.670000px;}
.y2b{bottom:264.990000px;}
.y74{bottom:269.670000px;}
.y64{bottom:277.410000px;}
.y9e{bottom:280.470000px;}
.y2a{bottom:284.790000px;}
.y73{bottom:289.470000px;}
.y63{bottom:297.570000px;}
.y9d{bottom:300.270000px;}
.y29{bottom:304.590000px;}
.y72{bottom:309.270000px;}
.y62{bottom:311.970000px;}
.y9c{bottom:320.070000px;}
.y28{bottom:324.570000px;}
.y71{bottom:329.070000px;}
.y61{bottom:329.250000px;}
.y9b{bottom:340.050000px;}
.y27{bottom:344.370000px;}
.y60{bottom:346.530000px;}
.y70{bottom:349.050000px;}
.y9a{bottom:359.850000px;}
.y26{bottom:364.170000px;}
.y5e{bottom:364.530000px;}
.y6f{bottom:368.850000px;}
.y99{bottom:379.650000px;}
.y25{bottom:383.970000px;}
.y5d{bottom:388.650000px;}
.y98{bottom:399.450000px;}
.y24{bottom:403.770000px;}
.y5c{bottom:408.450000px;}
.y97{bottom:419.250000px;}
.y23{bottom:423.750000px;}
.y5b{bottom:428.250000px;}
.y96{bottom:439.275000px;}
.y22{bottom:443.595000px;}
.y5a{bottom:448.275000px;}
.y95{bottom:459.075000px;}
.y21{bottom:463.395000px;}
.y59{bottom:468.075000px;}
.y94{bottom:478.875000px;}
.y20{bottom:483.195000px;}
.y58{bottom:487.875000px;}
.y93{bottom:498.675000px;}
.y1f{bottom:502.995000px;}
.y57{bottom:507.675000px;}
.y92{bottom:518.475000px;}
.y1e{bottom:522.975000px;}
.y56{bottom:527.475000px;}
.y91{bottom:538.455000px;}
.y1d{bottom:542.415000px;}
.y55{bottom:547.455000px;}
.y90{bottom:558.255000px;}
.y54{bottom:567.255000px;}
.ya9{bottom:577.695000px;}
.y8f{bottom:578.055000px;}
.y1c{bottom:584.715000px;}
.y53{bottom:586.695000px;}
.y6e{bottom:587.055000px;}
.y8e{bottom:597.855000px;}
.y52{bottom:606.855000px;}
.y1b{bottom:613.515000px;}
.y8d{bottom:617.655000px;}
.y51{bottom:626.655000px;}
.y1a{bottom:633.315000px;}
.ya8{bottom:637.275000px;}
.y8c{bottom:637.635000px;}
.y50{bottom:646.635000px;}
.y19{bottom:653.115000px;}
.y8b{bottom:657.435000px;}
.y4f{bottom:666.435000px;}
.y18{bottom:673.125000px;}
.y8a{bottom:677.265000px;}
.y4e{bottom:686.265000px;}
.y17{bottom:692.925000px;}
.y89{bottom:697.065000px;}
.y4d{bottom:706.065000px;}
.y16{bottom:712.725000px;}
.y88{bottom:716.865000px;}
.y4c{bottom:725.865000px;}
.y15{bottom:732.525000px;}
.y87{bottom:736.845000px;}
.y4b{bottom:745.845000px;}
.y14{bottom:752.325000px;}
.y86{bottom:756.645000px;}
.y4a{bottom:765.645000px;}
.y13{bottom:772.305000px;}
.y85{bottom:776.445000px;}
.y49{bottom:785.445000px;}
.y12{bottom:792.105000px;}
.yaa{bottom:795.885000px;}
.y84{bottom:796.245000px;}
.y48{bottom:805.245000px;}
.y11{bottom:811.905000px;}
.y83{bottom:816.045000px;}
.y47{bottom:825.045000px;}
.y10{bottom:831.705000px;}
.y82{bottom:836.025000px;}
.y46{bottom:845.025000px;}
.yf{bottom:851.505000px;}
.y81{bottom:855.825000px;}
.y45{bottom:864.825000px;}
.ye{bottom:871.485000px;}
.y80{bottom:875.625000px;}
.y44{bottom:884.625000px;}
.yd{bottom:893.445000px;}
.y7f{bottom:895.425000px;}
.y43{bottom:904.425000px;}
.y7e{bottom:914.910000px;}
.yb3{bottom:915.270000px;}
.yc{bottom:918.510000px;}
.y42{bottom:924.270000px;}
.yb2{bottom:935.250000px;}
.yb{bottom:938.490000px;}
.y41{bottom:944.250000px;}
.ya{bottom:953.430000px;}
.yb1{bottom:955.050000px;}
.y40{bottom:964.050000px;}
.y9{bottom:974.490000px;}
.yb0{bottom:974.850000px;}
.y3f{bottom:983.850000px;}
.yaf{bottom:994.650000px;}
.y8{bottom:997.890000px;}
.y3e{bottom:1003.650000px;}
.yae{bottom:1014.450000px;}
.y3d{bottom:1023.450000px;}
.y7{bottom:1029.750000px;}
.yad{bottom:1034.430000px;}
.y3c{bottom:1043.430000px;}
.yac{bottom:1054.230000px;}
.y3b{bottom:1063.230000px;}
.y5{bottom:1068.630000px;}
.yab{bottom:1073.670000px;}
.y3a{bottom:1083.030000px;}
.y4{bottom:1099.410000px;}
.y39{bottom:1102.830000px;}
.y38{bottom:1122.630000px;}
.y3{bottom:1130.370000px;}
.y37{bottom:1142.610000px;}
.y2{bottom:1161.180000px;}
.y36{bottom:1171.800000px;}
.y1{bottom:1192.140000px;}
.y35{bottom:1193.580000px;}
.hc{height:17.280000px;}
.h7{height:38.139609px;}
.h8{height:38.158594px;}
.hd{height:41.726953px;}
.h9{height:58.621992px;}
.ha{height:58.651172px;}
.h5{height:60.226875px;}
.he{height:61.423863px;}
.hb{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:102.456000px;}
.w3{width:140.220000px;}
.w6{width:140.256000px;}
.w7{width:140.400000px;}
.w5{width:178.050000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:54.179987px;}
.x9{left:80.999987px;}
.x3{left:95.976000px;}
.xa{left:108.035987px;}
.x5{left:236.190000px;}
.x6{left:338.655000px;}
.x7{left:516.705000px;}
.x8{left:656.970000px;}
.x2{left:804.209987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.821333pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.lsf{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.456533pt;}
.lsa{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls15{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:10.192640pt;}
.ls19{letter-spacing:37.072640pt;}
.lsd{letter-spacing:101.840640pt;}
.lsc{letter-spacing:122.320640pt;}
.ls18{letter-spacing:137.040640pt;}
.ls3{letter-spacing:143.440640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws9{word-spacing:-13.872000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.823467pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-511.047040pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._27{margin-left:-3.240320pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._22{width:3.287040pt;}
._1f{width:4.196480pt;}
._20{width:5.347200pt;}
._21{width:6.450560pt;}
._26{width:7.558400pt;}
._2c{width:9.030400pt;}
._28{width:10.199040pt;}
._2b{width:11.633280pt;}
._2d{width:14.212480pt;}
._25{width:15.301547pt;}
._24{width:16.206080pt;}
._23{width:17.157760pt;}
._29{width:18.812800pt;}
._2a{width:19.707520pt;}
._2e{width:21.088640pt;}
._2f{width:22.204160pt;}
._1d{width:57.604480pt;}
._1e{width:58.703787pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:3.360000pt;}
.y6{bottom:53.920000pt;}
.y34{bottom:76.800000pt;}
.y7d{bottom:80.960000pt;}
.y6d{bottom:88.160000pt;}
.ya7{bottom:90.560000pt;}
.y33{bottom:94.560000pt;}
.y7c{bottom:98.560000pt;}
.y6c{bottom:105.760000pt;}
.ya6{bottom:108.160000pt;}
.y32{bottom:112.160000pt;}
.y7b{bottom:116.160000pt;}
.y6b{bottom:123.360000pt;}
.ya5{bottom:125.920000pt;}
.y31{bottom:129.760000pt;}
.y7a{bottom:133.920000pt;}
.y6a{bottom:141.120000pt;}
.ya4{bottom:143.520000pt;}
.y30{bottom:147.360000pt;}
.y79{bottom:151.520000pt;}
.y69{bottom:158.720000pt;}
.yb4{bottom:160.800000pt;}
.ya3{bottom:161.120000pt;}
.y2f{bottom:164.960000pt;}
.y78{bottom:169.120000pt;}
.y68{bottom:176.320000pt;}
.ya2{bottom:178.746667pt;}
.y2e{bottom:182.586667pt;}
.y77{bottom:186.746667pt;}
.y67{bottom:193.946667pt;}
.ya1{bottom:196.346667pt;}
.y2d{bottom:200.346667pt;}
.y76{bottom:204.346667pt;}
.y66{bottom:211.546667pt;}
.ya0{bottom:214.106667pt;}
.y2c{bottom:217.946667pt;}
.y75{bottom:222.106667pt;}
.y65{bottom:228.986667pt;}
.y9f{bottom:231.706667pt;}
.y2b{bottom:235.546667pt;}
.y74{bottom:239.706667pt;}
.y64{bottom:246.586667pt;}
.y9e{bottom:249.306667pt;}
.y2a{bottom:253.146667pt;}
.y73{bottom:257.306667pt;}
.y63{bottom:264.506667pt;}
.y9d{bottom:266.906667pt;}
.y29{bottom:270.746667pt;}
.y72{bottom:274.906667pt;}
.y62{bottom:277.306667pt;}
.y9c{bottom:284.506667pt;}
.y28{bottom:288.506667pt;}
.y71{bottom:292.506667pt;}
.y61{bottom:292.666667pt;}
.y9b{bottom:302.266667pt;}
.y27{bottom:306.106667pt;}
.y60{bottom:308.026667pt;}
.y70{bottom:310.266667pt;}
.y9a{bottom:319.866667pt;}
.y26{bottom:323.706667pt;}
.y5e{bottom:324.026667pt;}
.y6f{bottom:327.866667pt;}
.y99{bottom:337.466667pt;}
.y25{bottom:341.306667pt;}
.y5d{bottom:345.466667pt;}
.y98{bottom:355.066667pt;}
.y24{bottom:358.906667pt;}
.y5c{bottom:363.066667pt;}
.y97{bottom:372.666667pt;}
.y23{bottom:376.666667pt;}
.y5b{bottom:380.666667pt;}
.y96{bottom:390.466667pt;}
.y22{bottom:394.306667pt;}
.y5a{bottom:398.466667pt;}
.y95{bottom:408.066667pt;}
.y21{bottom:411.906667pt;}
.y59{bottom:416.066667pt;}
.y94{bottom:425.666667pt;}
.y20{bottom:429.506667pt;}
.y58{bottom:433.666667pt;}
.y93{bottom:443.266667pt;}
.y1f{bottom:447.106667pt;}
.y57{bottom:451.266667pt;}
.y92{bottom:460.866667pt;}
.y1e{bottom:464.866667pt;}
.y56{bottom:468.866667pt;}
.y91{bottom:478.626667pt;}
.y1d{bottom:482.146667pt;}
.y55{bottom:486.626667pt;}
.y90{bottom:496.226667pt;}
.y54{bottom:504.226667pt;}
.ya9{bottom:513.506667pt;}
.y8f{bottom:513.826667pt;}
.y1c{bottom:519.746667pt;}
.y53{bottom:521.506667pt;}
.y6e{bottom:521.826667pt;}
.y8e{bottom:531.426667pt;}
.y52{bottom:539.426667pt;}
.y1b{bottom:545.346667pt;}
.y8d{bottom:549.026667pt;}
.y51{bottom:557.026667pt;}
.y1a{bottom:562.946667pt;}
.ya8{bottom:566.466667pt;}
.y8c{bottom:566.786667pt;}
.y50{bottom:574.786667pt;}
.y19{bottom:580.546667pt;}
.y8b{bottom:584.386667pt;}
.y4f{bottom:592.386667pt;}
.y18{bottom:598.333333pt;}
.y8a{bottom:602.013333pt;}
.y4e{bottom:610.013333pt;}
.y17{bottom:615.933333pt;}
.y89{bottom:619.613333pt;}
.y4d{bottom:627.613333pt;}
.y16{bottom:633.533333pt;}
.y88{bottom:637.213333pt;}
.y4c{bottom:645.213333pt;}
.y15{bottom:651.133333pt;}
.y87{bottom:654.973333pt;}
.y4b{bottom:662.973333pt;}
.y14{bottom:668.733333pt;}
.y86{bottom:672.573333pt;}
.y4a{bottom:680.573333pt;}
.y13{bottom:686.493333pt;}
.y85{bottom:690.173333pt;}
.y49{bottom:698.173333pt;}
.y12{bottom:704.093333pt;}
.yaa{bottom:707.453333pt;}
.y84{bottom:707.773333pt;}
.y48{bottom:715.773333pt;}
.y11{bottom:721.693333pt;}
.y83{bottom:725.373333pt;}
.y47{bottom:733.373333pt;}
.y10{bottom:739.293333pt;}
.y82{bottom:743.133333pt;}
.y46{bottom:751.133333pt;}
.yf{bottom:756.893333pt;}
.y81{bottom:760.733333pt;}
.y45{bottom:768.733333pt;}
.ye{bottom:774.653333pt;}
.y80{bottom:778.333333pt;}
.y44{bottom:786.333333pt;}
.yd{bottom:794.173333pt;}
.y7f{bottom:795.933333pt;}
.y43{bottom:803.933333pt;}
.y7e{bottom:813.253333pt;}
.yb3{bottom:813.573333pt;}
.yc{bottom:816.453333pt;}
.y42{bottom:821.573333pt;}
.yb2{bottom:831.333333pt;}
.yb{bottom:834.213333pt;}
.y41{bottom:839.333333pt;}
.ya{bottom:847.493333pt;}
.yb1{bottom:848.933333pt;}
.y40{bottom:856.933333pt;}
.y9{bottom:866.213333pt;}
.yb0{bottom:866.533333pt;}
.y3f{bottom:874.533333pt;}
.yaf{bottom:884.133333pt;}
.y8{bottom:887.013333pt;}
.y3e{bottom:892.133333pt;}
.yae{bottom:901.733333pt;}
.y3d{bottom:909.733333pt;}
.y7{bottom:915.333333pt;}
.yad{bottom:919.493333pt;}
.y3c{bottom:927.493333pt;}
.yac{bottom:937.093333pt;}
.y3b{bottom:945.093333pt;}
.y5{bottom:949.893333pt;}
.yab{bottom:954.373333pt;}
.y3a{bottom:962.693333pt;}
.y4{bottom:977.253333pt;}
.y39{bottom:980.293333pt;}
.y38{bottom:997.893333pt;}
.y3{bottom:1004.773333pt;}
.y37{bottom:1015.653333pt;}
.y2{bottom:1032.160000pt;}
.y36{bottom:1041.600000pt;}
.y1{bottom:1059.680000pt;}
.y35{bottom:1060.960000pt;}
.hc{height:15.360000pt;}
.h7{height:33.901875pt;}
.h8{height:33.918750pt;}
.hd{height:37.090625pt;}
.h9{height:52.108438pt;}
.ha{height:52.134375pt;}
.h5{height:53.535000pt;}
.he{height:54.598989pt;}
.hb{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:91.072000pt;}
.w3{width:124.640000pt;}
.w6{width:124.672000pt;}
.w7{width:124.800000pt;}
.w5{width:158.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:48.159988pt;}
.x9{left:71.999988pt;}
.x3{left:85.312000pt;}
.xa{left:96.031988pt;}
.x5{left:209.946667pt;}
.x6{left:301.026667pt;}
.x7{left:459.293333pt;}
.x8{left:583.973333pt;}
.x2{left:714.853322pt;}
}




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