
    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_61f26d492caad549858673f4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_96e1a7c8f605b25985da5fe6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_ebad42accc44eb21ec6c1590.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_1f73e80c20a5c1fcdc8343c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_da2906433959da06808c8ed1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.341400px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000001px;}
.lsb{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.208200px;}
.lsd{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:19.440000px;}
.ls10{letter-spacing:28.080000px;}
.ls8{letter-spacing:54.864000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-4.176000px;}
._10{margin-left:-3.024000px;}
._0{margin-left:-1.324800px;}
._1{width:1.330080px;}
._20{width:2.341920px;}
._2{width:3.362160px;}
._3{width:4.842480px;}
._18{width:6.317520px;}
._13{width:8.352000px;}
._f{width:9.786720px;}
._e{width:10.800000px;}
._1c{width:11.811360px;}
._16{width:12.816000px;}
._12{width:14.328000px;}
._7{width:16.279200px;}
._8{width:17.315520px;}
._17{width:19.944000px;}
._c{width:21.168000px;}
._d{width:22.608000px;}
._19{width:24.168000px;}
._b{width:32.472000px;}
._1d{width:34.416000px;}
._25{width:35.856000px;}
._23{width:37.728000px;}
._24{width:38.908800px;}
._14{width:45.288000px;}
._15{width:46.296000px;}
._1a{width:49.962720px;}
._1b{width:51.197280px;}
._9{width:89.822880px;}
._a{width:91.078320px;}
._4{width:98.537040px;}
._5{width:99.937200px;}
._21{width:101.160000px;}
._6{width:103.814400px;}
._1e{width:108.180000px;}
._26{width:189.360000px;}
._1f{width:198.000000px;}
._22{width:545.184000px;}
.fc4{color:rgb(238,0,0);}
.fc2{color:rgb(155,187,89);}
.fc1{color:rgb(0,0,10);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y4{bottom:25.020000px;}
.y3{bottom:44.280000px;}
.y2{bottom:63.360000px;}
.y1{bottom:82.656000px;}
.y8b{bottom:123.336000px;}
.y30{bottom:126.216000px;}
.y4f{bottom:128.556000px;}
.yaa{bottom:136.836000px;}
.y2f{bottom:146.916000px;}
.y8a{bottom:154.470000px;}
.y6c{bottom:155.010000px;}
.y4e{bottom:159.690000px;}
.y2e{bottom:167.610000px;}
.ya9{bottom:167.970000px;}
.y89{bottom:185.430000px;}
.y6b{bottom:185.970000px;}
.y2d{bottom:188.310000px;}
.y4d{bottom:190.650000px;}
.ya8{bottom:198.930000px;}
.y2c{bottom:209.010000px;}
.y88{bottom:216.570000px;}
.y6a{bottom:217.110000px;}
.y4c{bottom:221.790000px;}
.y2b{bottom:229.710000px;}
.ya7{bottom:230.070000px;}
.y87{bottom:247.530000px;}
.y69{bottom:247.890000px;}
.y2a{bottom:250.410000px;}
.y4b{bottom:252.750000px;}
.ya6{bottom:261.030000px;}
.y29{bottom:271.110000px;}
.y86{bottom:278.670000px;}
.y68{bottom:280.470000px;}
.yc5{bottom:283.530000px;}
.y4a{bottom:283.710000px;}
.y28{bottom:291.810000px;}
.ya5{bottom:292.170000px;}
.yc4{bottom:307.470000px;}
.y85{bottom:309.630000px;}
.y67{bottom:311.430000px;}
.y27{bottom:312.510000px;}
.y49{bottom:314.850000px;}
.ya4{bottom:323.175000px;}
.yc3{bottom:331.275000px;}
.y26{bottom:333.255000px;}
.y84{bottom:340.815000px;}
.y66{bottom:342.615000px;}
.y48{bottom:345.855000px;}
.ya3{bottom:354.315000px;}
.y25{bottom:357.015000px;}
.yc2{bottom:369.975000px;}
.y83{bottom:371.775000px;}
.y65{bottom:373.575000px;}
.y47{bottom:376.995000px;}
.y24{bottom:380.775000px;}
.ya2{bottom:385.275000px;}
.yc1{bottom:393.915000px;}
.y23{bottom:401.475000px;}
.y82{bottom:402.915000px;}
.y64{bottom:404.715000px;}
.y46{bottom:407.955000px;}
.ya1{bottom:416.415000px;}
.yc0{bottom:417.675000px;}
.y22{bottom:422.175000px;}
.y81{bottom:433.875000px;}
.y63{bottom:435.675000px;}
.y45{bottom:439.095000px;}
.ybf{bottom:441.435000px;}
.y21{bottom:442.875000px;}
.ya0{bottom:447.375000px;}
.y20{bottom:463.575000px;}
.y80{bottom:465.015000px;}
.y62{bottom:468.075000px;}
.y44{bottom:470.055000px;}
.y9f{bottom:478.515000px;}
.ybe{bottom:480.315000px;}
.y1f{bottom:484.275000px;}
.y7f{bottom:495.975000px;}
.y61{bottom:499.215000px;}
.y43{bottom:501.195000px;}
.ybd{bottom:504.075000px;}
.y1e{bottom:504.975000px;}
.y9e{bottom:509.475000px;}
.y1d{bottom:525.675000px;}
.y7e{bottom:527.115000px;}
.ybc{bottom:527.835000px;}
.y60{bottom:530.175000px;}
.y42{bottom:532.155000px;}
.y9d{bottom:540.435000px;}
.y1c{bottom:546.375000px;}
.ybb{bottom:551.595000px;}
.y7d{bottom:560.955000px;}
.y5f{bottom:561.135000px;}
.y41{bottom:563.295000px;}
.y1b{bottom:567.075000px;}
.y9c{bottom:571.605000px;}
.yba{bottom:575.565000px;}
.y1a{bottom:587.805000px;}
.y5e{bottom:592.305000px;}
.y40{bottom:594.285000px;}
.y7c{bottom:594.825000px;}
.y9b{bottom:602.565000px;}
.yb9{bottom:608.325000px;}
.y19{bottom:608.505000px;}
.y5d{bottom:623.265000px;}
.y3f{bottom:625.425000px;}
.y7b{bottom:625.965000px;}
.y18{bottom:629.205000px;}
.yb8{bottom:632.085000px;}
.y9a{bottom:633.705000px;}
.y17{bottom:649.905000px;}
.y5c{bottom:654.405000px;}
.yb7{bottom:655.845000px;}
.y3e{bottom:656.385000px;}
.y7a{bottom:656.925000px;}
.y99{bottom:664.665000px;}
.y16{bottom:670.605000px;}
.yb6{bottom:679.785000px;}
.y5b{bottom:685.365000px;}
.y3d{bottom:687.525000px;}
.y79{bottom:688.065000px;}
.y15{bottom:691.305000px;}
.y98{bottom:695.805000px;}
.y14{bottom:712.005000px;}
.yb5{bottom:713.625000px;}
.y5a{bottom:716.505000px;}
.y3c{bottom:718.485000px;}
.y78{bottom:719.025000px;}
.y97{bottom:726.765000px;}
.y13{bottom:732.705000px;}
.yb4{bottom:747.465000px;}
.y3b{bottom:749.625000px;}
.y59{bottom:749.805000px;}
.y77{bottom:750.165000px;}
.y12{bottom:753.405000px;}
.y96{bottom:757.905000px;}
.y11{bottom:777.165000px;}
.yb3{bottom:778.605000px;}
.y3a{bottom:780.585000px;}
.y76{bottom:780.945000px;}
.y58{bottom:783.825000px;}
.y95{bottom:788.865000px;}
.y10{bottom:800.925000px;}
.yb2{bottom:809.565000px;}
.y39{bottom:811.725000px;}
.y75{bottom:813.525000px;}
.y57{bottom:814.785000px;}
.y94{bottom:820.050000px;}
.yf{bottom:821.670000px;}
.yb1{bottom:840.750000px;}
.y38{bottom:842.730000px;}
.ye{bottom:843.810000px;}
.y74{bottom:844.530000px;}
.y56{bottom:845.970000px;}
.y93{bottom:851.010000px;}
.yd{bottom:871.350000px;}
.yb0{bottom:871.710000px;}
.y37{bottom:873.870000px;}
.y73{bottom:875.670000px;}
.y55{bottom:876.930000px;}
.y92{bottom:882.150000px;}
.yc{bottom:898.890000px;}
.yaf{bottom:902.850000px;}
.y36{bottom:904.830000px;}
.y72{bottom:906.630000px;}
.y54{bottom:908.070000px;}
.y91{bottom:913.110000px;}
.yb{bottom:926.610000px;}
.yae{bottom:933.810000px;}
.y35{bottom:935.970000px;}
.y71{bottom:937.770000px;}
.y53{bottom:939.030000px;}
.y90{bottom:944.250000px;}
.ya{bottom:954.150000px;}
.yad{bottom:964.950000px;}
.y70{bottom:968.730000px;}
.y34{bottom:969.810000px;}
.y52{bottom:970.170000px;}
.y8f{bottom:975.210000px;}
.y9{bottom:981.690000px;}
.y33{bottom:995.910000px;}
.y6f{bottom:999.870000px;}
.y51{bottom:1001.130000px;}
.y8e{bottom:1006.350000px;}
.y8{bottom:1009.410000px;}
.y32{bottom:1018.770000px;}
.yac{bottom:1027.050000px;}
.y6e{bottom:1030.830000px;}
.y50{bottom:1032.270000px;}
.y7{bottom:1036.950000px;}
.y8d{bottom:1037.310000px;}
.y31{bottom:1042.530000px;}
.yab{bottom:1060.350000px;}
.y6d{bottom:1061.790000px;}
.y6{bottom:1063.230000px;}
.y8c{bottom:1065.930000px;}
.h7{height:52.628906px;}
.h3{height:55.825312px;}
.h6{height:57.051211px;}
.h2{height:59.383125px;}
.h1{height:64.546875px;}
.h5{height:69.996445px;}
.h8{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.035986px;}
.x8{left:136.655986px;}
.x3{left:156.629986px;}
.xd{left:162.029986px;}
.x6{left:172.109986px;}
.xb{left:177.509986px;}
.xc{left:189.029986px;}
.x4{left:283.529986px;}
.x7{left:413.534986px;}
.x9{left:459.074986px;}
.x2{left:675.149986px;}
.xa{left:740.669986px;}
.x5{left:783.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.303467pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.185067pt;}
.lsd{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:17.280000pt;}
.ls10{letter-spacing:24.960000pt;}
.ls8{letter-spacing:48.768000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-3.712000pt;}
._10{margin-left:-2.688000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.182293pt;}
._20{width:2.081707pt;}
._2{width:2.988587pt;}
._3{width:4.304427pt;}
._18{width:5.615573pt;}
._13{width:7.424000pt;}
._f{width:8.699307pt;}
._e{width:9.600000pt;}
._1c{width:10.498987pt;}
._16{width:11.392000pt;}
._12{width:12.736000pt;}
._7{width:14.470400pt;}
._8{width:15.391573pt;}
._17{width:17.728000pt;}
._c{width:18.816000pt;}
._d{width:20.096000pt;}
._19{width:21.482667pt;}
._b{width:28.864000pt;}
._1d{width:30.592000pt;}
._25{width:31.872000pt;}
._23{width:33.536000pt;}
._24{width:34.585600pt;}
._14{width:40.256000pt;}
._15{width:41.152000pt;}
._1a{width:44.411307pt;}
._1b{width:45.508693pt;}
._9{width:79.842560pt;}
._a{width:80.958507pt;}
._4{width:87.588480pt;}
._5{width:88.833067pt;}
._21{width:89.920000pt;}
._6{width:92.279467pt;}
._1e{width:96.160000pt;}
._26{width:168.320000pt;}
._1f{width:176.000000pt;}
._22{width:484.608000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y4{bottom:22.240000pt;}
.y3{bottom:39.360000pt;}
.y2{bottom:56.320000pt;}
.y1{bottom:73.472000pt;}
.y8b{bottom:109.632000pt;}
.y30{bottom:112.192000pt;}
.y4f{bottom:114.272000pt;}
.yaa{bottom:121.632000pt;}
.y2f{bottom:130.592000pt;}
.y8a{bottom:137.306667pt;}
.y6c{bottom:137.786667pt;}
.y4e{bottom:141.946667pt;}
.y2e{bottom:148.986667pt;}
.ya9{bottom:149.306667pt;}
.y89{bottom:164.826667pt;}
.y6b{bottom:165.306667pt;}
.y2d{bottom:167.386667pt;}
.y4d{bottom:169.466667pt;}
.ya8{bottom:176.826667pt;}
.y2c{bottom:185.786667pt;}
.y88{bottom:192.506667pt;}
.y6a{bottom:192.986667pt;}
.y4c{bottom:197.146667pt;}
.y2b{bottom:204.186667pt;}
.ya7{bottom:204.506667pt;}
.y87{bottom:220.026667pt;}
.y69{bottom:220.346667pt;}
.y2a{bottom:222.586667pt;}
.y4b{bottom:224.666667pt;}
.ya6{bottom:232.026667pt;}
.y29{bottom:240.986667pt;}
.y86{bottom:247.706667pt;}
.y68{bottom:249.306667pt;}
.yc5{bottom:252.026667pt;}
.y4a{bottom:252.186667pt;}
.y28{bottom:259.386667pt;}
.ya5{bottom:259.706667pt;}
.yc4{bottom:273.306667pt;}
.y85{bottom:275.226667pt;}
.y67{bottom:276.826667pt;}
.y27{bottom:277.786667pt;}
.y49{bottom:279.866667pt;}
.ya4{bottom:287.266667pt;}
.yc3{bottom:294.466667pt;}
.y26{bottom:296.226667pt;}
.y84{bottom:302.946667pt;}
.y66{bottom:304.546667pt;}
.y48{bottom:307.426667pt;}
.ya3{bottom:314.946667pt;}
.y25{bottom:317.346667pt;}
.yc2{bottom:328.866667pt;}
.y83{bottom:330.466667pt;}
.y65{bottom:332.066667pt;}
.y47{bottom:335.106667pt;}
.y24{bottom:338.466667pt;}
.ya2{bottom:342.466667pt;}
.yc1{bottom:350.146667pt;}
.y23{bottom:356.866667pt;}
.y82{bottom:358.146667pt;}
.y64{bottom:359.746667pt;}
.y46{bottom:362.626667pt;}
.ya1{bottom:370.146667pt;}
.yc0{bottom:371.266667pt;}
.y22{bottom:375.266667pt;}
.y81{bottom:385.666667pt;}
.y63{bottom:387.266667pt;}
.y45{bottom:390.306667pt;}
.ybf{bottom:392.386667pt;}
.y21{bottom:393.666667pt;}
.ya0{bottom:397.666667pt;}
.y20{bottom:412.066667pt;}
.y80{bottom:413.346667pt;}
.y62{bottom:416.066667pt;}
.y44{bottom:417.826667pt;}
.y9f{bottom:425.346667pt;}
.ybe{bottom:426.946667pt;}
.y1f{bottom:430.466667pt;}
.y7f{bottom:440.866667pt;}
.y61{bottom:443.746667pt;}
.y43{bottom:445.506667pt;}
.ybd{bottom:448.066667pt;}
.y1e{bottom:448.866667pt;}
.y9e{bottom:452.866667pt;}
.y1d{bottom:467.266667pt;}
.y7e{bottom:468.546667pt;}
.ybc{bottom:469.186667pt;}
.y60{bottom:471.266667pt;}
.y42{bottom:473.026667pt;}
.y9d{bottom:480.386667pt;}
.y1c{bottom:485.666667pt;}
.ybb{bottom:490.306667pt;}
.y7d{bottom:498.626667pt;}
.y5f{bottom:498.786667pt;}
.y41{bottom:500.706667pt;}
.y1b{bottom:504.066667pt;}
.y9c{bottom:508.093333pt;}
.yba{bottom:511.613333pt;}
.y1a{bottom:522.493333pt;}
.y5e{bottom:526.493333pt;}
.y40{bottom:528.253333pt;}
.y7c{bottom:528.733333pt;}
.y9b{bottom:535.613333pt;}
.yb9{bottom:540.733333pt;}
.y19{bottom:540.893333pt;}
.y5d{bottom:554.013333pt;}
.y3f{bottom:555.933333pt;}
.y7b{bottom:556.413333pt;}
.y18{bottom:559.293333pt;}
.yb8{bottom:561.853333pt;}
.y9a{bottom:563.293333pt;}
.y17{bottom:577.693333pt;}
.y5c{bottom:581.693333pt;}
.yb7{bottom:582.973333pt;}
.y3e{bottom:583.453333pt;}
.y7a{bottom:583.933333pt;}
.y99{bottom:590.813333pt;}
.y16{bottom:596.093333pt;}
.yb6{bottom:604.253333pt;}
.y5b{bottom:609.213333pt;}
.y3d{bottom:611.133333pt;}
.y79{bottom:611.613333pt;}
.y15{bottom:614.493333pt;}
.y98{bottom:618.493333pt;}
.y14{bottom:632.893333pt;}
.yb5{bottom:634.333333pt;}
.y5a{bottom:636.893333pt;}
.y3c{bottom:638.653333pt;}
.y78{bottom:639.133333pt;}
.y97{bottom:646.013333pt;}
.y13{bottom:651.293333pt;}
.yb4{bottom:664.413333pt;}
.y3b{bottom:666.333333pt;}
.y59{bottom:666.493333pt;}
.y77{bottom:666.813333pt;}
.y12{bottom:669.693333pt;}
.y96{bottom:673.693333pt;}
.y11{bottom:690.813333pt;}
.yb3{bottom:692.093333pt;}
.y3a{bottom:693.853333pt;}
.y76{bottom:694.173333pt;}
.y58{bottom:696.733333pt;}
.y95{bottom:701.213333pt;}
.y10{bottom:711.933333pt;}
.yb2{bottom:719.613333pt;}
.y39{bottom:721.533333pt;}
.y75{bottom:723.133333pt;}
.y57{bottom:724.253333pt;}
.y94{bottom:728.933333pt;}
.yf{bottom:730.373333pt;}
.yb1{bottom:747.333333pt;}
.y38{bottom:749.093333pt;}
.ye{bottom:750.053333pt;}
.y74{bottom:750.693333pt;}
.y56{bottom:751.973333pt;}
.y93{bottom:756.453333pt;}
.yd{bottom:774.533333pt;}
.yb0{bottom:774.853333pt;}
.y37{bottom:776.773333pt;}
.y73{bottom:778.373333pt;}
.y55{bottom:779.493333pt;}
.y92{bottom:784.133333pt;}
.yc{bottom:799.013333pt;}
.yaf{bottom:802.533333pt;}
.y36{bottom:804.293333pt;}
.y72{bottom:805.893333pt;}
.y54{bottom:807.173333pt;}
.y91{bottom:811.653333pt;}
.yb{bottom:823.653333pt;}
.yae{bottom:830.053333pt;}
.y35{bottom:831.973333pt;}
.y71{bottom:833.573333pt;}
.y53{bottom:834.693333pt;}
.y90{bottom:839.333333pt;}
.ya{bottom:848.133333pt;}
.yad{bottom:857.733333pt;}
.y70{bottom:861.093333pt;}
.y34{bottom:862.053333pt;}
.y52{bottom:862.373333pt;}
.y8f{bottom:866.853333pt;}
.y9{bottom:872.613333pt;}
.y33{bottom:885.253333pt;}
.y6f{bottom:888.773333pt;}
.y51{bottom:889.893333pt;}
.y8e{bottom:894.533333pt;}
.y8{bottom:897.253333pt;}
.y32{bottom:905.573333pt;}
.yac{bottom:912.933333pt;}
.y6e{bottom:916.293333pt;}
.y50{bottom:917.573333pt;}
.y7{bottom:921.733333pt;}
.y8d{bottom:922.053333pt;}
.y31{bottom:926.693333pt;}
.yab{bottom:942.533333pt;}
.y6d{bottom:943.813333pt;}
.y6{bottom:945.093333pt;}
.y8c{bottom:947.493333pt;}
.h7{height:46.781250pt;}
.h3{height:49.622500pt;}
.h6{height:50.712187pt;}
.h2{height:52.785000pt;}
.h1{height:57.375000pt;}
.h5{height:62.219062pt;}
.h8{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.031988pt;}
.x8{left:121.471988pt;}
.x3{left:139.226655pt;}
.xd{left:144.026655pt;}
.x6{left:152.986655pt;}
.xb{left:157.786655pt;}
.xc{left:168.026655pt;}
.x4{left:252.026655pt;}
.x7{left:367.586655pt;}
.x9{left:408.066655pt;}
.x2{left:600.133321pt;}
.xa{left:658.373321pt;}
.x5{left:696.133321pt;}
}




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