
    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_37c61146b02ab9212b5eee33.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_c668dcd938ccb5a3ebacfc9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_bae5037c6ca15d56d9582af2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_7a74f963872121891f057766.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_384c6902ef1f2810b669c23e.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_26fd2c13d073ef4c551c600b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_297439bfd705d2113026014f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.229200px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:4.452000px;}
.lsa{letter-spacing:21.744000px;}
.ls5{letter-spacing:82.627200px;}
.ls7{letter-spacing:93.594720px;}
.ls4{letter-spacing:95.563200px;}
.ls6{letter-spacing:141.264000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws0{word-spacing:-36.907200px;}
.ws1{word-spacing:-22.984800px;}
.ws6{word-spacing:-16.200000px;}
.ws3{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.552000px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-15.336000px;}
._d{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._f{margin-left:-10.944000px;}
._e{margin-left:-8.598240px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._11{margin-left:-4.860000px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._c{width:1.068000px;}
._13{width:2.664000px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._15{width:8.640000px;}
._17{width:9.899280px;}
._16{width:11.376000px;}
._21{width:13.176000px;}
._22{width:14.531760px;}
._3{width:15.769440px;}
._1c{width:17.436000px;}
._20{width:19.212000px;}
._26{width:20.664000px;}
._6{width:24.492960px;}
._23{width:25.601520px;}
._7{width:26.774640px;}
._14{width:28.440000px;}
._28{width:31.452240px;}
._19{width:32.843760px;}
._18{width:34.128000px;}
._1a{width:35.640000px;}
._1b{width:36.792000px;}
._24{width:42.192000px;}
._25{width:43.344000px;}
._27{width:44.364000px;}
._1d{width:47.376000px;}
._1f{width:80.496000px;}
._1e{width:81.864000px;}
._12{width:843.088800px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:5.400000px;}
.y3{bottom:57.780000px;}
.y37{bottom:135.036000px;}
.y1c{bottom:142.956000px;}
.ya1{bottom:146.736000px;}
.y1b{bottom:167.250000px;}
.y7f{bottom:167.970000px;}
.ya0{bottom:171.030000px;}
.y36{bottom:171.210000px;}
.y7e{bottom:193.710000px;}
.y9f{bottom:195.330000px;}
.y35{bottom:203.070000px;}
.y1a{bottom:203.430000px;}
.y60{bottom:212.250000px;}
.y9e{bottom:219.630000px;}
.y7d{bottom:222.150000px;}
.y19{bottom:227.730000px;}
.y5f{bottom:236.550000px;}
.y34{bottom:239.250000px;}
.y9d{bottom:246.810000px;}
.y7c{bottom:258.330000px;}
.y5e{bottom:260.850000px;}
.y18{bottom:264.090000px;}
.y33{bottom:275.610000px;}
.y7b{bottom:282.630000px;}
.y9c{bottom:283.170000px;}
.y5d{bottom:285.150000px;}
.y17{bottom:289.830000px;}
.ybc{bottom:294.330000px;}
.y7a{bottom:306.930000px;}
.y9b{bottom:307.470000px;}
.y5c{bottom:309.450000px;}
.y32{bottom:311.790000px;}
.y16{bottom:315.210000px;}
.ybb{bottom:318.675000px;}
.y9a{bottom:331.635000px;}
.y5b{bottom:333.615000px;}
.y79{bottom:334.155000px;}
.y15{bottom:339.375000px;}
.yba{bottom:346.035000px;}
.y31{bottom:348.195000px;}
.y99{bottom:355.935000px;}
.y5a{bottom:369.975000px;}
.y78{bottom:370.515000px;}
.y14{bottom:375.735000px;}
.y98{bottom:380.235000px;}
.yb9{bottom:382.215000px;}
.y30{bottom:384.375000px;}
.y59{bottom:394.275000px;}
.y77{bottom:394.815000px;}
.yb8{bottom:406.515000px;}
.y97{bottom:407.595000px;}
.y13{bottom:411.915000px;}
.y76{bottom:418.935000px;}
.y2f{bottom:420.555000px;}
.y58{bottom:426.855000px;}
.yb7{bottom:430.815000px;}
.y75{bottom:443.235000px;}
.y96{bottom:443.775000px;}
.y12{bottom:448.275000px;}
.y2e{bottom:452.415000px;}
.yb6{bottom:455.115000px;}
.y74{bottom:467.535000px;}
.y95{bottom:468.075000px;}
.y57{bottom:468.795000px;}
.yb5{bottom:479.415000px;}
.y2d{bottom:484.095000px;}
.y11{bottom:484.455000px;}
.y73{bottom:491.835000px;}
.y94{bottom:492.375000px;}
.y56{bottom:499.215000px;}
.yb4{bottom:505.155000px;}
.y2c{bottom:515.955000px;}
.y93{bottom:516.495000px;}
.y72{bottom:519.015000px;}
.y10{bottom:520.815000px;}
.y55{bottom:523.335000px;}
.yb3{bottom:531.975000px;}
.y92{bottom:540.795000px;}
.y54{bottom:547.635000px;}
.y71{bottom:549.255000px;}
.y2b{bottom:552.135000px;}
.yf{bottom:556.995000px;}
.yb2{bottom:557.355000px;}
.y91{bottom:565.095000px;}
.y53{bottom:571.965000px;}
.y70{bottom:580.785000px;}
.y2a{bottom:584.025000px;}
.yb1{bottom:584.565000px;}
.y90{bottom:592.485000px;}
.ye{bottom:593.385000px;}
.y52{bottom:596.265000px;}
.yb0{bottom:616.065000px;}
.y6f{bottom:620.025000px;}
.y29{bottom:620.205000px;}
.y51{bottom:620.565000px;}
.y8f{bottom:628.665000px;}
.yd{bottom:629.565000px;}
.y6e{bottom:644.145000px;}
.y50{bottom:644.685000px;}
.y28{bottom:652.065000px;}
.y8e{bottom:652.965000px;}
.yaf{bottom:655.125000px;}
.yc{bottom:665.925000px;}
.y6d{bottom:668.445000px;}
.y4f{bottom:668.985000px;}
.y8d{bottom:677.265000px;}
.yae{bottom:679.425000px;}
.y27{bottom:683.745000px;}
.y6c{bottom:692.745000px;}
.y4e{bottom:693.285000px;}
.y8c{bottom:701.565000px;}
.yb{bottom:703.365000px;}
.yad{bottom:703.725000px;}
.y26{bottom:715.605000px;}
.y4d{bottom:717.585000px;}
.y6b{bottom:720.105000px;}
.y41{bottom:725.325000px;}
.y8b{bottom:725.685000px;}
.yac{bottom:728.025000px;}
.yc6{bottom:735.225000px;}
.y4c{bottom:741.885000px;}
.ya{bottom:742.425000px;}
.y25{bottom:747.285000px;}
.y8a{bottom:749.985000px;}
.y6a{bottom:751.605000px;}
.yab{bottom:752.325000px;}
.yc5{bottom:759.345000px;}
.y40{bottom:762.765000px;}
.y4b{bottom:766.185000px;}
.y89{bottom:774.285000px;}
.y24{bottom:779.145000px;}
.yaa{bottom:779.505000px;}
.y9{bottom:779.865000px;}
.yc4{bottom:783.645000px;}
.y4a{bottom:790.305000px;}
.y69{bottom:793.005000px;}
.y3f{bottom:794.625000px;}
.y88{bottom:798.585000px;}
.y23{bottom:810.825000px;}
.ya9{bottom:811.005000px;}
.y49{bottom:814.605000px;}
.y8{bottom:815.145000px;}
.y87{bottom:825.810000px;}
.y3e{bottom:826.350000px;}
.y68{bottom:834.990000px;}
.y48{bottom:844.890000px;}
.y22{bottom:847.770000px;}
.ya8{bottom:850.110000px;}
.yc3{bottom:854.250000px;}
.y67{bottom:859.290000px;}
.y86{bottom:862.170000px;}
.y3d{bottom:862.710000px;}
.y7{bottom:864.510000px;}
.y47{bottom:869.190000px;}
.ya7{bottom:874.410000px;}
.yc2{bottom:878.550000px;}
.y66{bottom:883.590000px;}
.y85{bottom:886.470000px;}
.y46{bottom:893.490000px;}
.y3c{bottom:894.390000px;}
.y21{bottom:895.830000px;}
.ya6{bottom:898.710000px;}
.yc1{bottom:902.850000px;}
.y65{bottom:907.890000px;}
.y84{bottom:910.590000px;}
.y6{bottom:913.830000px;}
.y45{bottom:917.790000px;}
.ya5{bottom:923.010000px;}
.yc0{bottom:930.210000px;}
.y3b{bottom:930.750000px;}
.y64{bottom:932.010000px;}
.y83{bottom:934.890000px;}
.y20{bottom:937.050000px;}
.y44{bottom:942.090000px;}
.ya4{bottom:947.130000px;}
.y63{bottom:956.310000px;}
.y82{bottom:959.190000px;}
.y1e{bottom:960.270000px;}
.ybf{bottom:961.530000px;}
.y3a{bottom:962.430000px;}
.y5{bottom:962.970000px;}
.ya3{bottom:974.490000px;}
.y43{bottom:977.190000px;}
.y81{bottom:983.490000px;}
.y62{bottom:987.810000px;}
.y39{bottom:998.790000px;}
.ybe{bottom:1000.770000px;}
.y80{bottom:1007.790000px;}
.ya2{bottom:1010.670000px;}
.y1d{bottom:1012.110000px;}
.y4{bottom:1012.290000px;}
.y61{bottom:1029.210000px;}
.ybd{bottom:1032.090000px;}
.y38{bottom:1034.970000px;}
.y42{bottom:1039.470000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.h4{height:22.500000px;}
.h7{height:39.830273px;}
.h1{height:60.960938px;}
.h3{height:71.324297px;}
.hb{height:71.824219px;}
.h9{height:74.004654px;}
.h6{height:81.078047px;}
.h5{height:98.051133px;}
.ha{height:98.426190px;}
.h8{height:101.804766px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w3{width:174.630000px;}
.w2{width:174.780000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x2{left:108.035986px;}
.x8{left:124.595986px;}
.x9{left:140.975986px;}
.xa{left:162.029986px;}
.xb{left:180.029986px;}
.x1{left:266.609986px;}
.x5{left:284.430000px;}
.x3{left:322.814986px;}
.x6{left:459.975000px;}
.x7{left:635.505000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.203733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:3.957333pt;}
.lsa{letter-spacing:19.328000pt;}
.ls5{letter-spacing:73.446400pt;}
.ls7{letter-spacing:83.195307pt;}
.ls4{letter-spacing:84.945067pt;}
.ls6{letter-spacing:125.568000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-32.806400pt;}
.ws1{word-spacing:-20.430933pt;}
.ws6{word-spacing:-14.400000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-13.632000pt;}
._d{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._f{margin-left:-9.728000pt;}
._e{margin-left:-7.642880pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._11{margin-left:-4.320000pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._c{width:0.949333pt;}
._13{width:2.368000pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._15{width:7.680000pt;}
._17{width:8.799360pt;}
._16{width:10.112000pt;}
._21{width:11.712000pt;}
._22{width:12.917120pt;}
._3{width:14.017280pt;}
._1c{width:15.498667pt;}
._20{width:17.077333pt;}
._26{width:18.368000pt;}
._6{width:21.771520pt;}
._23{width:22.756907pt;}
._7{width:23.799680pt;}
._14{width:25.280000pt;}
._28{width:27.957547pt;}
._19{width:29.194453pt;}
._18{width:30.336000pt;}
._1a{width:31.680000pt;}
._1b{width:32.704000pt;}
._24{width:37.504000pt;}
._25{width:38.528000pt;}
._27{width:39.434667pt;}
._1d{width:42.112000pt;}
._1f{width:71.552000pt;}
._1e{width:72.768000pt;}
._12{width:749.412267pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:4.800000pt;}
.y3{bottom:51.360000pt;}
.y37{bottom:120.032000pt;}
.y1c{bottom:127.072000pt;}
.ya1{bottom:130.432000pt;}
.y1b{bottom:148.666667pt;}
.y7f{bottom:149.306667pt;}
.ya0{bottom:152.026667pt;}
.y36{bottom:152.186667pt;}
.y7e{bottom:172.186667pt;}
.y9f{bottom:173.626667pt;}
.y35{bottom:180.506667pt;}
.y1a{bottom:180.826667pt;}
.y60{bottom:188.666667pt;}
.y9e{bottom:195.226667pt;}
.y7d{bottom:197.466667pt;}
.y19{bottom:202.426667pt;}
.y5f{bottom:210.266667pt;}
.y34{bottom:212.666667pt;}
.y9d{bottom:219.386667pt;}
.y7c{bottom:229.626667pt;}
.y5e{bottom:231.866667pt;}
.y18{bottom:234.746667pt;}
.y33{bottom:244.986667pt;}
.y7b{bottom:251.226667pt;}
.y9c{bottom:251.706667pt;}
.y5d{bottom:253.466667pt;}
.y17{bottom:257.626667pt;}
.ybc{bottom:261.626667pt;}
.y7a{bottom:272.826667pt;}
.y9b{bottom:273.306667pt;}
.y5c{bottom:275.066667pt;}
.y32{bottom:277.146667pt;}
.y16{bottom:280.186667pt;}
.ybb{bottom:283.266667pt;}
.y9a{bottom:294.786667pt;}
.y5b{bottom:296.546667pt;}
.y79{bottom:297.026667pt;}
.y15{bottom:301.666667pt;}
.yba{bottom:307.586667pt;}
.y31{bottom:309.506667pt;}
.y99{bottom:316.386667pt;}
.y5a{bottom:328.866667pt;}
.y78{bottom:329.346667pt;}
.y14{bottom:333.986667pt;}
.y98{bottom:337.986667pt;}
.yb9{bottom:339.746667pt;}
.y30{bottom:341.666667pt;}
.y59{bottom:350.466667pt;}
.y77{bottom:350.946667pt;}
.yb8{bottom:361.346667pt;}
.y97{bottom:362.306667pt;}
.y13{bottom:366.146667pt;}
.y76{bottom:372.386667pt;}
.y2f{bottom:373.826667pt;}
.y58{bottom:379.426667pt;}
.yb7{bottom:382.946667pt;}
.y75{bottom:393.986667pt;}
.y96{bottom:394.466667pt;}
.y12{bottom:398.466667pt;}
.y2e{bottom:402.146667pt;}
.yb6{bottom:404.546667pt;}
.y74{bottom:415.586667pt;}
.y95{bottom:416.066667pt;}
.y57{bottom:416.706667pt;}
.yb5{bottom:426.146667pt;}
.y2d{bottom:430.306667pt;}
.y11{bottom:430.626667pt;}
.y73{bottom:437.186667pt;}
.y94{bottom:437.666667pt;}
.y56{bottom:443.746667pt;}
.yb4{bottom:449.026667pt;}
.y2c{bottom:458.626667pt;}
.y93{bottom:459.106667pt;}
.y72{bottom:461.346667pt;}
.y10{bottom:462.946667pt;}
.y55{bottom:465.186667pt;}
.yb3{bottom:472.866667pt;}
.y92{bottom:480.706667pt;}
.y54{bottom:486.786667pt;}
.y71{bottom:488.226667pt;}
.y2b{bottom:490.786667pt;}
.yf{bottom:495.106667pt;}
.yb2{bottom:495.426667pt;}
.y91{bottom:502.306667pt;}
.y53{bottom:508.413333pt;}
.y70{bottom:516.253333pt;}
.y2a{bottom:519.133333pt;}
.yb1{bottom:519.613333pt;}
.y90{bottom:526.653333pt;}
.ye{bottom:527.453333pt;}
.y52{bottom:530.013333pt;}
.yb0{bottom:547.613333pt;}
.y6f{bottom:551.133333pt;}
.y29{bottom:551.293333pt;}
.y51{bottom:551.613333pt;}
.y8f{bottom:558.813333pt;}
.yd{bottom:559.613333pt;}
.y6e{bottom:572.573333pt;}
.y50{bottom:573.053333pt;}
.y28{bottom:579.613333pt;}
.y8e{bottom:580.413333pt;}
.yaf{bottom:582.333333pt;}
.yc{bottom:591.933333pt;}
.y6d{bottom:594.173333pt;}
.y4f{bottom:594.653333pt;}
.y8d{bottom:602.013333pt;}
.yae{bottom:603.933333pt;}
.y27{bottom:607.773333pt;}
.y6c{bottom:615.773333pt;}
.y4e{bottom:616.253333pt;}
.y8c{bottom:623.613333pt;}
.yb{bottom:625.213333pt;}
.yad{bottom:625.533333pt;}
.y26{bottom:636.093333pt;}
.y4d{bottom:637.853333pt;}
.y6b{bottom:640.093333pt;}
.y41{bottom:644.733333pt;}
.y8b{bottom:645.053333pt;}
.yac{bottom:647.133333pt;}
.yc6{bottom:653.533333pt;}
.y4c{bottom:659.453333pt;}
.ya{bottom:659.933333pt;}
.y25{bottom:664.253333pt;}
.y8a{bottom:666.653333pt;}
.y6a{bottom:668.093333pt;}
.yab{bottom:668.733333pt;}
.yc5{bottom:674.973333pt;}
.y40{bottom:678.013333pt;}
.y4b{bottom:681.053333pt;}
.y89{bottom:688.253333pt;}
.y24{bottom:692.573333pt;}
.yaa{bottom:692.893333pt;}
.y9{bottom:693.213333pt;}
.yc4{bottom:696.573333pt;}
.y4a{bottom:702.493333pt;}
.y69{bottom:704.893333pt;}
.y3f{bottom:706.333333pt;}
.y88{bottom:709.853333pt;}
.y23{bottom:720.733333pt;}
.ya9{bottom:720.893333pt;}
.y49{bottom:724.093333pt;}
.y8{bottom:724.573333pt;}
.y87{bottom:734.053333pt;}
.y3e{bottom:734.533333pt;}
.y68{bottom:742.213333pt;}
.y48{bottom:751.013333pt;}
.y22{bottom:753.573333pt;}
.ya8{bottom:755.653333pt;}
.yc3{bottom:759.333333pt;}
.y67{bottom:763.813333pt;}
.y86{bottom:766.373333pt;}
.y3d{bottom:766.853333pt;}
.y7{bottom:768.453333pt;}
.y47{bottom:772.613333pt;}
.ya7{bottom:777.253333pt;}
.yc2{bottom:780.933333pt;}
.y66{bottom:785.413333pt;}
.y85{bottom:787.973333pt;}
.y46{bottom:794.213333pt;}
.y3c{bottom:795.013333pt;}
.y21{bottom:796.293333pt;}
.ya6{bottom:798.853333pt;}
.yc1{bottom:802.533333pt;}
.y65{bottom:807.013333pt;}
.y84{bottom:809.413333pt;}
.y6{bottom:812.293333pt;}
.y45{bottom:815.813333pt;}
.ya5{bottom:820.453333pt;}
.yc0{bottom:826.853333pt;}
.y3b{bottom:827.333333pt;}
.y64{bottom:828.453333pt;}
.y83{bottom:831.013333pt;}
.y20{bottom:832.933333pt;}
.y44{bottom:837.413333pt;}
.ya4{bottom:841.893333pt;}
.y63{bottom:850.053333pt;}
.y82{bottom:852.613333pt;}
.y1e{bottom:853.573333pt;}
.ybf{bottom:854.693333pt;}
.y3a{bottom:855.493333pt;}
.y5{bottom:855.973333pt;}
.ya3{bottom:866.213333pt;}
.y43{bottom:868.613333pt;}
.y81{bottom:874.213333pt;}
.y62{bottom:878.053333pt;}
.y39{bottom:887.813333pt;}
.ybe{bottom:889.573333pt;}
.y80{bottom:895.813333pt;}
.ya2{bottom:898.373333pt;}
.y1d{bottom:899.653333pt;}
.y4{bottom:899.813333pt;}
.y61{bottom:914.853333pt;}
.ybd{bottom:917.413333pt;}
.y38{bottom:919.973333pt;}
.y42{bottom:923.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.h4{height:20.000000pt;}
.h7{height:35.404688pt;}
.h1{height:54.187500pt;}
.h3{height:63.399375pt;}
.hb{height:63.843750pt;}
.h9{height:65.781915pt;}
.h6{height:72.069375pt;}
.h5{height:87.156562pt;}
.ha{height:87.489947pt;}
.h8{height:90.493125pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w3{width:155.226667pt;}
.w2{width:155.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x2{left:96.031988pt;}
.x8{left:110.751988pt;}
.x9{left:125.311988pt;}
.xa{left:144.026655pt;}
.xb{left:160.026655pt;}
.x1{left:236.986655pt;}
.x5{left:252.826667pt;}
.x3{left:286.946655pt;}
.x6{left:408.866667pt;}
.x7{left:564.893333pt;}
}




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