
    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_9df06e52c69c8394cafdea79.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_5aade27184711b053b5a75d9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_386d1da84c9c91da0a0580ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_110b3daca9c684ef3547f10d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_700df6d3e4d7976ba8a7fde2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6813b9780a75a8fdfae7ae42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.759766;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls0{letter-spacing:11.520000px;}
.lsa{letter-spacing:19.502400px;}
.ls5{letter-spacing:64.397280px;}
.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;}
.ws0{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-4.896000px;}
._e{margin-left:-3.798240px;}
._11{margin-left:-2.774880px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._2{width:3.472320px;}
._c{width:4.552800px;}
._5{width:5.688000px;}
._6{width:6.804000px;}
._f{width:8.165760px;}
._3{width:10.080480px;}
._4{width:11.491200px;}
._17{width:12.607680px;}
._1a{width:14.328000px;}
._1b{width:15.679680px;}
._7{width:16.792320px;}
._18{width:19.236000px;}
._14{width:20.376000px;}
._13{width:21.620160px;}
._12{width:22.697280px;}
._b{width:23.796000px;}
._a{width:24.840000px;}
._10{width:29.520000px;}
._19{width:31.656000px;}
._15{width:33.624000px;}
._16{width:34.937280px;}
._8{width:37.224000px;}
._9{width:38.441760px;}
.fc4{color:transparent;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:6.480000px;}
.ya0{bottom:10.620000px;}
.y9f{bottom:31.320000px;}
.y9e{bottom:52.020000px;}
.y7{bottom:82.116000px;}
.y6{bottom:102.816000px;}
.y5{bottom:129.096000px;}
.y4{bottom:148.176000px;}
.y3{bottom:167.250000px;}
.y51{bottom:187.950000px;}
.y32{bottom:197.130000px;}
.y6e{bottom:197.850000px;}
.y82{bottom:204.510000px;}
.y9c{bottom:209.550000px;}
.ya2{bottom:215.490000px;}
.y50{bottom:218.910000px;}
.y31{bottom:223.770000px;}
.y6d{bottom:228.990000px;}
.yc7{bottom:232.410000px;}
.y9b{bottom:240.690000px;}
.y81{bottom:241.590000px;}
.ya1{bottom:246.630000px;}
.y4f{bottom:250.050000px;}
.y30{bottom:250.950000px;}
.yc6{bottom:253.110000px;}
.y77{bottom:259.950000px;}
.y6c{bottom:268.230000px;}
.y9a{bottom:271.650000px;}
.y80{bottom:272.730000px;}
.yc5{bottom:273.810000px;}
.y4e{bottom:281.010000px;}
.y2f{bottom:283.530000px;}
.y76{bottom:291.090000px;}
.yc4{bottom:294.510000px;}
.y99{bottom:302.790000px;}
.y7f{bottom:303.690000px;}
.y2e{bottom:304.230000px;}
.ye1{bottom:310.530000px;}
.y6b{bottom:311.250000px;}
.y4d{bottom:312.150000px;}
.yc3{bottom:315.210000px;}
.y75{bottom:322.050000px;}
.y2d{bottom:324.930000px;}
.y7e{bottom:334.830000px;}
.yc2{bottom:335.910000px;}
.y98{bottom:339.915000px;}
.y6a{bottom:342.255000px;}
.y4c{bottom:343.155000px;}
.y2c{bottom:345.675000px;}
.ye0{bottom:352.335000px;}
.y74{bottom:353.235000px;}
.yc1{bottom:356.655000px;}
.y7d{bottom:365.835000px;}
.y2b{bottom:366.375000px;}
.y69{bottom:373.395000px;}
.y4b{bottom:374.295000px;}
.y97{bottom:376.995000px;}
.yc0{bottom:377.355000px;}
.y73{bottom:384.195000px;}
.y2a{bottom:387.075000px;}
.ydf{bottom:394.095000px;}
.y7c{bottom:396.975000px;}
.ybf{bottom:398.055000px;}
.y68{bottom:404.355000px;}
.y4a{bottom:405.255000px;}
.y29{bottom:407.775000px;}
.y96{bottom:413.895000px;}
.yde{bottom:414.795000px;}
.y72{bottom:415.155000px;}
.ybe{bottom:418.755000px;}
.y7b{bottom:427.935000px;}
.y28{bottom:428.475000px;}
.y67{bottom:435.495000px;}
.y49{bottom:436.395000px;}
.ybd{bottom:439.455000px;}
.y71{bottom:446.295000px;}
.y27{bottom:449.175000px;}
.y95{bottom:450.975000px;}
.ydd{bottom:456.195000px;}
.y7a{bottom:459.075000px;}
.ybc{bottom:460.155000px;}
.y66{bottom:466.455000px;}
.y48{bottom:467.355000px;}
.y26{bottom:469.875000px;}
.ydc{bottom:476.895000px;}
.y70{bottom:477.255000px;}
.ybb{bottom:480.855000px;}
.y94{bottom:488.055000px;}
.y79{bottom:490.035000px;}
.y25{bottom:490.575000px;}
.y65{bottom:497.595000px;}
.y47{bottom:498.495000px;}
.yba{bottom:501.555000px;}
.y24{bottom:511.275000px;}
.y6f{bottom:516.675000px;}
.ydb{bottom:518.295000px;}
.yb9{bottom:522.255000px;}
.y93{bottom:525.135000px;}
.y64{bottom:528.555000px;}
.y46{bottom:529.455000px;}
.y23{bottom:531.975000px;}
.yda{bottom:538.995000px;}
.yb8{bottom:542.955000px;}
.y22{bottom:552.675000px;}
.y63{bottom:559.695000px;}
.y45{bottom:560.595000px;}
.y92{bottom:562.215000px;}
.yb7{bottom:563.655000px;}
.y21{bottom:573.375000px;}
.yd9{bottom:580.395000px;}
.yb6{bottom:584.355000px;}
.y62{bottom:590.655000px;}
.y44{bottom:591.555000px;}
.y20{bottom:594.075000px;}
.y91{bottom:599.115000px;}
.yd8{bottom:601.095000px;}
.yb5{bottom:605.085000px;}
.y1f{bottom:614.805000px;}
.y61{bottom:621.645000px;}
.y43{bottom:622.545000px;}
.yb4{bottom:625.785000px;}
.y1e{bottom:635.505000px;}
.y90{bottom:636.225000px;}
.yd7{bottom:642.345000px;}
.yb3{bottom:646.485000px;}
.y60{bottom:652.785000px;}
.y42{bottom:653.685000px;}
.y1d{bottom:656.205000px;}
.yd6{bottom:663.045000px;}
.yb2{bottom:667.185000px;}
.y8f{bottom:673.305000px;}
.y1c{bottom:676.905000px;}
.y5f{bottom:683.745000px;}
.y41{bottom:684.645000px;}
.yb1{bottom:687.885000px;}
.y1b{bottom:697.605000px;}
.yd5{bottom:704.445000px;}
.yb0{bottom:708.585000px;}
.y8e{bottom:710.385000px;}
.y5e{bottom:714.885000px;}
.y40{bottom:715.785000px;}
.y1a{bottom:718.305000px;}
.yd4{bottom:725.145000px;}
.y19{bottom:739.005000px;}
.y5d{bottom:745.845000px;}
.y3f{bottom:746.745000px;}
.y8d{bottom:747.465000px;}
.yaf{bottom:747.825000px;}
.y18{bottom:759.705000px;}
.yd3{bottom:766.545000px;}
.y5c{bottom:776.985000px;}
.y3e{bottom:777.885000px;}
.y17{bottom:780.405000px;}
.y8c{bottom:784.545000px;}
.yd2{bottom:787.245000px;}
.yae{bottom:790.845000px;}
.y16{bottom:801.105000px;}
.y5b{bottom:807.945000px;}
.y3d{bottom:808.845000px;}
.y8b{bottom:821.445000px;}
.y15{bottom:821.805000px;}
.yad{bottom:827.925000px;}
.yd1{bottom:828.645000px;}
.y5a{bottom:839.085000px;}
.y3c{bottom:839.985000px;}
.y14{bottom:842.505000px;}
.yd0{bottom:849.345000px;}
.y8a{bottom:858.525000px;}
.yac{bottom:858.885000px;}
.y13{bottom:863.205000px;}
.y59{bottom:870.045000px;}
.y3b{bottom:870.990000px;}
.ya3{bottom:879.990000px;}
.y12{bottom:883.950000px;}
.yab{bottom:890.070000px;}
.ycf{bottom:890.790000px;}
.y89{bottom:895.650000px;}
.y58{bottom:901.230000px;}
.y3a{bottom:902.130000px;}
.y78{bottom:902.850000px;}
.y11{bottom:904.650000px;}
.yce{bottom:911.490000px;}
.y83{bottom:919.590000px;}
.yaa{bottom:921.030000px;}
.y10{bottom:925.350000px;}
.y57{bottom:932.190000px;}
.y88{bottom:932.730000px;}
.y39{bottom:933.090000px;}
.yf{bottom:946.050000px;}
.ya9{bottom:952.170000px;}
.ycd{bottom:952.890000px;}
.y56{bottom:963.330000px;}
.y38{bottom:964.230000px;}
.ye{bottom:966.750000px;}
.y87{bottom:969.810000px;}
.ycc{bottom:973.590000px;}
.ya8{bottom:983.130000px;}
.yd{bottom:987.450000px;}
.y55{bottom:994.290000px;}
.y37{bottom:995.190000px;}
.y86{bottom:1006.710000px;}
.yc{bottom:1009.410000px;}
.ya7{bottom:1014.270000px;}
.ycb{bottom:1014.990000px;}
.y54{bottom:1025.430000px;}
.y36{bottom:1026.330000px;}
.yca{bottom:1035.690000px;}
.yb{bottom:1037.130000px;}
.y85{bottom:1043.790000px;}
.ya6{bottom:1045.230000px;}
.y53{bottom:1056.390000px;}
.y35{bottom:1057.290000px;}
.y9d{bottom:1060.530000px;}
.ya{bottom:1064.670000px;}
.ya5{bottom:1076.370000px;}
.yc9{bottom:1077.090000px;}
.y52{bottom:1087.530000px;}
.y34{bottom:1088.430000px;}
.y9{bottom:1092.210000px;}
.yc8{bottom:1097.790000px;}
.ya4{bottom:1115.430000px;}
.y33{bottom:1115.610000px;}
.y8{bottom:1118.490000px;}
.y2{bottom:1207.080000px;}
.y1{bottom:1233.900000px;}
.h9{height:29.340000px;}
.hb{height:54.000000px;}
.h7{height:59.343750px;}
.h3{height:59.383125px;}
.hc{height:63.879258px;}
.h2{height:64.546875px;}
.ha{height:74.700000px;}
.h8{height:74.820586px;}
.h5{height:78.927188px;}
.h4{height:85.052461px;}
.h6{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:645.945000px;}
.w3{width:726.765000px;}
.w4{width:768.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:2.520000px;}
.x11{left:8.460000px;}
.xc{left:52.194000px;}
.xd{left:62.460000px;}
.xb{left:104.436000px;}
.x3{left:127.655987px;}
.x10{left:129.456000px;}
.x9{left:168.149987px;}
.x1{left:170.129987px;}
.xa{left:180.749987px;}
.x12{left:192.819000px;}
.x7{left:259.229987px;}
.x8{left:280.154987px;}
.xf{left:298.695000px;}
.x6{left:334.154987px;}
.x5{left:467.924987px;}
.x2{left:489.164987px;}
.x4{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls0{letter-spacing:10.240000pt;}
.lsa{letter-spacing:17.335467pt;}
.ls5{letter-spacing:57.242027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-4.352000pt;}
._e{margin-left:-3.376213pt;}
._11{margin-left:-2.466560pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._2{width:3.086507pt;}
._c{width:4.046933pt;}
._5{width:5.056000pt;}
._6{width:6.048000pt;}
._f{width:7.258453pt;}
._3{width:8.960427pt;}
._4{width:10.214400pt;}
._17{width:11.206827pt;}
._1a{width:12.736000pt;}
._1b{width:13.937493pt;}
._7{width:14.926507pt;}
._18{width:17.098667pt;}
._14{width:18.112000pt;}
._13{width:19.217920pt;}
._12{width:20.175360pt;}
._b{width:21.152000pt;}
._a{width:22.080000pt;}
._10{width:26.240000pt;}
._19{width:28.138667pt;}
._15{width:29.888000pt;}
._16{width:31.055360pt;}
._8{width:33.088000pt;}
._9{width:34.170453pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:5.760000pt;}
.ya0{bottom:9.440000pt;}
.y9f{bottom:27.840000pt;}
.y9e{bottom:46.240000pt;}
.y7{bottom:72.992000pt;}
.y6{bottom:91.392000pt;}
.y5{bottom:114.752000pt;}
.y4{bottom:131.712000pt;}
.y3{bottom:148.666667pt;}
.y51{bottom:167.066667pt;}
.y32{bottom:175.226667pt;}
.y6e{bottom:175.866667pt;}
.y82{bottom:181.786667pt;}
.y9c{bottom:186.266667pt;}
.ya2{bottom:191.546667pt;}
.y50{bottom:194.586667pt;}
.y31{bottom:198.906667pt;}
.y6d{bottom:203.546667pt;}
.yc7{bottom:206.586667pt;}
.y9b{bottom:213.946667pt;}
.y81{bottom:214.746667pt;}
.ya1{bottom:219.226667pt;}
.y4f{bottom:222.266667pt;}
.y30{bottom:223.066667pt;}
.yc6{bottom:224.986667pt;}
.y77{bottom:231.066667pt;}
.y6c{bottom:238.426667pt;}
.y9a{bottom:241.466667pt;}
.y80{bottom:242.426667pt;}
.yc5{bottom:243.386667pt;}
.y4e{bottom:249.786667pt;}
.y2f{bottom:252.026667pt;}
.y76{bottom:258.746667pt;}
.yc4{bottom:261.786667pt;}
.y99{bottom:269.146667pt;}
.y7f{bottom:269.946667pt;}
.y2e{bottom:270.426667pt;}
.ye1{bottom:276.026667pt;}
.y6b{bottom:276.666667pt;}
.y4d{bottom:277.466667pt;}
.yc3{bottom:280.186667pt;}
.y75{bottom:286.266667pt;}
.y2d{bottom:288.826667pt;}
.y7e{bottom:297.626667pt;}
.yc2{bottom:298.586667pt;}
.y98{bottom:302.146667pt;}
.y6a{bottom:304.226667pt;}
.y4c{bottom:305.026667pt;}
.y2c{bottom:307.266667pt;}
.ye0{bottom:313.186667pt;}
.y74{bottom:313.986667pt;}
.yc1{bottom:317.026667pt;}
.y7d{bottom:325.186667pt;}
.y2b{bottom:325.666667pt;}
.y69{bottom:331.906667pt;}
.y4b{bottom:332.706667pt;}
.y97{bottom:335.106667pt;}
.yc0{bottom:335.426667pt;}
.y73{bottom:341.506667pt;}
.y2a{bottom:344.066667pt;}
.ydf{bottom:350.306667pt;}
.y7c{bottom:352.866667pt;}
.ybf{bottom:353.826667pt;}
.y68{bottom:359.426667pt;}
.y4a{bottom:360.226667pt;}
.y29{bottom:362.466667pt;}
.y96{bottom:367.906667pt;}
.yde{bottom:368.706667pt;}
.y72{bottom:369.026667pt;}
.ybe{bottom:372.226667pt;}
.y7b{bottom:380.386667pt;}
.y28{bottom:380.866667pt;}
.y67{bottom:387.106667pt;}
.y49{bottom:387.906667pt;}
.ybd{bottom:390.626667pt;}
.y71{bottom:396.706667pt;}
.y27{bottom:399.266667pt;}
.y95{bottom:400.866667pt;}
.ydd{bottom:405.506667pt;}
.y7a{bottom:408.066667pt;}
.ybc{bottom:409.026667pt;}
.y66{bottom:414.626667pt;}
.y48{bottom:415.426667pt;}
.y26{bottom:417.666667pt;}
.ydc{bottom:423.906667pt;}
.y70{bottom:424.226667pt;}
.ybb{bottom:427.426667pt;}
.y94{bottom:433.826667pt;}
.y79{bottom:435.586667pt;}
.y25{bottom:436.066667pt;}
.y65{bottom:442.306667pt;}
.y47{bottom:443.106667pt;}
.yba{bottom:445.826667pt;}
.y24{bottom:454.466667pt;}
.y6f{bottom:459.266667pt;}
.ydb{bottom:460.706667pt;}
.yb9{bottom:464.226667pt;}
.y93{bottom:466.786667pt;}
.y64{bottom:469.826667pt;}
.y46{bottom:470.626667pt;}
.y23{bottom:472.866667pt;}
.yda{bottom:479.106667pt;}
.yb8{bottom:482.626667pt;}
.y22{bottom:491.266667pt;}
.y63{bottom:497.506667pt;}
.y45{bottom:498.306667pt;}
.y92{bottom:499.746667pt;}
.yb7{bottom:501.026667pt;}
.y21{bottom:509.666667pt;}
.yd9{bottom:515.906667pt;}
.yb6{bottom:519.426667pt;}
.y62{bottom:525.026667pt;}
.y44{bottom:525.826667pt;}
.y20{bottom:528.066667pt;}
.y91{bottom:532.546667pt;}
.yd8{bottom:534.306667pt;}
.yb5{bottom:537.853333pt;}
.y1f{bottom:546.493333pt;}
.y61{bottom:552.573333pt;}
.y43{bottom:553.373333pt;}
.yb4{bottom:556.253333pt;}
.y1e{bottom:564.893333pt;}
.y90{bottom:565.533333pt;}
.yd7{bottom:570.973333pt;}
.yb3{bottom:574.653333pt;}
.y60{bottom:580.253333pt;}
.y42{bottom:581.053333pt;}
.y1d{bottom:583.293333pt;}
.yd6{bottom:589.373333pt;}
.yb2{bottom:593.053333pt;}
.y8f{bottom:598.493333pt;}
.y1c{bottom:601.693333pt;}
.y5f{bottom:607.773333pt;}
.y41{bottom:608.573333pt;}
.yb1{bottom:611.453333pt;}
.y1b{bottom:620.093333pt;}
.yd5{bottom:626.173333pt;}
.yb0{bottom:629.853333pt;}
.y8e{bottom:631.453333pt;}
.y5e{bottom:635.453333pt;}
.y40{bottom:636.253333pt;}
.y1a{bottom:638.493333pt;}
.yd4{bottom:644.573333pt;}
.y19{bottom:656.893333pt;}
.y5d{bottom:662.973333pt;}
.y3f{bottom:663.773333pt;}
.y8d{bottom:664.413333pt;}
.yaf{bottom:664.733333pt;}
.y18{bottom:675.293333pt;}
.yd3{bottom:681.373333pt;}
.y5c{bottom:690.653333pt;}
.y3e{bottom:691.453333pt;}
.y17{bottom:693.693333pt;}
.y8c{bottom:697.373333pt;}
.yd2{bottom:699.773333pt;}
.yae{bottom:702.973333pt;}
.y16{bottom:712.093333pt;}
.y5b{bottom:718.173333pt;}
.y3d{bottom:718.973333pt;}
.y8b{bottom:730.173333pt;}
.y15{bottom:730.493333pt;}
.yad{bottom:735.933333pt;}
.yd1{bottom:736.573333pt;}
.y5a{bottom:745.853333pt;}
.y3c{bottom:746.653333pt;}
.y14{bottom:748.893333pt;}
.yd0{bottom:754.973333pt;}
.y8a{bottom:763.133333pt;}
.yac{bottom:763.453333pt;}
.y13{bottom:767.293333pt;}
.y59{bottom:773.373333pt;}
.y3b{bottom:774.213333pt;}
.ya3{bottom:782.213333pt;}
.y12{bottom:785.733333pt;}
.yab{bottom:791.173333pt;}
.ycf{bottom:791.813333pt;}
.y89{bottom:796.133333pt;}
.y58{bottom:801.093333pt;}
.y3a{bottom:801.893333pt;}
.y78{bottom:802.533333pt;}
.y11{bottom:804.133333pt;}
.yce{bottom:810.213333pt;}
.y83{bottom:817.413333pt;}
.yaa{bottom:818.693333pt;}
.y10{bottom:822.533333pt;}
.y57{bottom:828.613333pt;}
.y88{bottom:829.093333pt;}
.y39{bottom:829.413333pt;}
.yf{bottom:840.933333pt;}
.ya9{bottom:846.373333pt;}
.ycd{bottom:847.013333pt;}
.y56{bottom:856.293333pt;}
.y38{bottom:857.093333pt;}
.ye{bottom:859.333333pt;}
.y87{bottom:862.053333pt;}
.ycc{bottom:865.413333pt;}
.ya8{bottom:873.893333pt;}
.yd{bottom:877.733333pt;}
.y55{bottom:883.813333pt;}
.y37{bottom:884.613333pt;}
.y86{bottom:894.853333pt;}
.yc{bottom:897.253333pt;}
.ya7{bottom:901.573333pt;}
.ycb{bottom:902.213333pt;}
.y54{bottom:911.493333pt;}
.y36{bottom:912.293333pt;}
.yca{bottom:920.613333pt;}
.yb{bottom:921.893333pt;}
.y85{bottom:927.813333pt;}
.ya6{bottom:929.093333pt;}
.y53{bottom:939.013333pt;}
.y35{bottom:939.813333pt;}
.y9d{bottom:942.693333pt;}
.ya{bottom:946.373333pt;}
.ya5{bottom:956.773333pt;}
.yc9{bottom:957.413333pt;}
.y52{bottom:966.693333pt;}
.y34{bottom:967.493333pt;}
.y9{bottom:970.853333pt;}
.yc8{bottom:975.813333pt;}
.ya4{bottom:991.493333pt;}
.y33{bottom:991.653333pt;}
.y8{bottom:994.213333pt;}
.y2{bottom:1072.960000pt;}
.y1{bottom:1096.800000pt;}
.h9{height:26.080000pt;}
.hb{height:48.000000pt;}
.h7{height:52.750000pt;}
.h3{height:52.785000pt;}
.hc{height:56.781562pt;}
.h2{height:57.375000pt;}
.ha{height:66.400000pt;}
.h8{height:66.507188pt;}
.h5{height:70.157500pt;}
.h4{height:75.602187pt;}
.h6{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:574.173333pt;}
.w3{width:646.013333pt;}
.w4{width:682.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:2.240000pt;}
.x11{left:7.520000pt;}
.xc{left:46.394667pt;}
.xd{left:55.520000pt;}
.xb{left:92.832000pt;}
.x3{left:113.471988pt;}
.x10{left:115.072000pt;}
.x9{left:149.466655pt;}
.x1{left:151.226655pt;}
.xa{left:160.666655pt;}
.x12{left:171.394667pt;}
.x7{left:230.426655pt;}
.x8{left:249.026655pt;}
.xf{left:265.506667pt;}
.x6{left:297.026655pt;}
.x5{left:415.933322pt;}
.x2{left:434.813322pt;}
.x4{left:718.373322pt;}
}




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