
    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_203286dd76dec681acbc2d0a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9968e768887fcc9bd62b0b23.woff')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_c53aba278ac448c4ba8046c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_79b02458872f0be2fade9747.woff')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_dd871bcabf19eb6ae5c771a0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_9e5ffe5b2838034ddec6288e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.010742;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_b66ca298b0c2e2ef019c2c77.woff')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_ad991e02fd795112f52806fb.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_108dd4312c2c3e9ff96c18c1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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;}
.ls3{letter-spacing:-0.374400px;}
.lsa{letter-spacing:-0.285000px;}
.ls8{letter-spacing:-0.210000px;}
.lsb{letter-spacing:-0.166800px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005760px;}
.ls5{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.172800px;}
.lsd{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.305400px;}
.lsc{letter-spacing:6.785280px;}
.ls9{letter-spacing:39.881280px;}
.ls0{letter-spacing:89.561280px;}
.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:-23.212800px;}
.ws6{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.822200px;}
.ws3{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.565760px;}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.393200px;}
.ws7{word-spacing:-16.350000px;}
.ws8{word-spacing:-16.275000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.351440px;}
._2{width:2.490480px;}
._5{width:3.931200px;}
._b{width:5.762880px;}
._c{width:6.961440px;}
._4{width:8.280000px;}
._3{width:9.339840px;}
._a{width:10.396080px;}
._11{width:11.997120px;}
._10{width:13.314240px;}
._6{width:14.572800px;}
._18{width:17.622720px;}
._f{width:18.745920px;}
._12{width:20.428320px;}
._e{width:21.488160px;}
._d{width:22.654080px;}
._20{width:23.978880px;}
._14{width:25.303680px;}
._7{width:26.562240px;}
._1e{width:27.926880px;}
._8{width:29.410560px;}
._9{width:30.427200px;}
._13{width:32.090640px;}
._1f{width:33.517440px;}
._1a{width:35.570880px;}
._15{width:36.630720px;}
._16{width:37.978560px;}
._17{width:39.129600px;}
._19{width:41.929920px;}
._1b{width:43.718400px;}
._1c{width:44.996400px;}
._1d{width:46.047840px;}
._22{width:56.900160px;}
._21{width:584.303040px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.960000px;}
.y4{bottom:79.380000px;}
.yd0{bottom:113.040000px;}
.y7a{bottom:118.800000px;}
.yab{bottom:119.700000px;}
.y30{bottom:120.960000px;}
.yb9{bottom:124.380000px;}
.y59{bottom:129.600000px;}
.y97{bottom:130.320000px;}
.yc3{bottom:130.680000px;}
.ycf{bottom:133.560000px;}
.y79{bottom:139.320000px;}
.yaa{bottom:140.220000px;}
.y2f{bottom:141.480000px;}
.yb8{bottom:144.900000px;}
.y58{bottom:150.120000px;}
.y96{bottom:150.840000px;}
.yc2{bottom:151.200000px;}
.yce{bottom:154.080000px;}
.y78{bottom:159.840000px;}
.ya9{bottom:160.740000px;}
.y2e{bottom:161.820000px;}
.yb7{bottom:165.420000px;}
.ycd{bottom:169.740000px;}
.y57{bottom:170.640000px;}
.y95{bottom:171.180000px;}
.yc1{bottom:171.720000px;}
.y77{bottom:180.360000px;}
.ya8{bottom:181.260000px;}
.y2d{bottom:182.340000px;}
.yb6{bottom:185.940000px;}
.y56{bottom:191.190000px;}
.y94{bottom:191.730000px;}
.yc0{bottom:192.270000px;}
.y76{bottom:200.910000px;}
.ya7{bottom:201.810000px;}
.y2c{bottom:202.890000px;}
.yb5{bottom:206.490000px;}
.y55{bottom:211.710000px;}
.y93{bottom:212.250000px;}
.ybf{bottom:212.790000px;}
.y75{bottom:221.430000px;}
.ya6{bottom:222.150000px;}
.y2b{bottom:223.410000px;}
.yb4{bottom:227.010000px;}
.y54{bottom:232.230000px;}
.y92{bottom:232.770000px;}
.ybe{bottom:233.310000px;}
.y74{bottom:241.950000px;}
.ya5{bottom:242.670000px;}
.y2a{bottom:243.570000px;}
.yb3{bottom:247.350000px;}
.y53{bottom:252.750000px;}
.y91{bottom:253.290000px;}
.ybd{bottom:253.830000px;}
.y73{bottom:262.470000px;}
.y29{bottom:263.190000px;}
.yb2{bottom:267.870000px;}
.ybc{bottom:269.490000px;}
.y52{bottom:273.270000px;}
.y90{bottom:273.810000px;}
.y72{bottom:282.810000px;}
.ya4{bottom:283.710000px;}
.y28{bottom:284.250000px;}
.yb1{bottom:288.390000px;}
.y51{bottom:293.790000px;}
.y8f{bottom:294.330000px;}
.y71{bottom:303.330000px;}
.y27{bottom:304.230000px;}
.yb0{bottom:308.910000px;}
.y50{bottom:314.130000px;}
.y8e{bottom:314.850000px;}
.y70{bottom:323.850000px;}
.y26{bottom:324.030000px;}
.ya3{bottom:324.750000px;}
.yaf{bottom:329.070000px;}
.y4f{bottom:334.650000px;}
.y8d{bottom:335.370000px;}
.y25{bottom:344.010000px;}
.y6f{bottom:344.370000px;}
.ya2{bottom:345.270000px;}
.yae{bottom:349.410000px;}
.y4e{bottom:355.170000px;}
.y8c{bottom:355.890000px;}
.y24{bottom:363.810000px;}
.y6e{bottom:364.890000px;}
.yad{bottom:365.070000px;}
.ya1{bottom:365.790000px;}
.ycc{bottom:365.970000px;}
.y4d{bottom:375.690000px;}
.y8b{bottom:376.410000px;}
.y23{bottom:383.790000px;}
.y6d{bottom:385.410000px;}
.ya0{bottom:386.310000px;}
.y4c{bottom:396.210000px;}
.y8a{bottom:396.750000px;}
.y22{bottom:403.590000px;}
.y6c{bottom:405.930000px;}
.y9f{bottom:406.830000px;}
.y4b{bottom:416.775000px;}
.y89{bottom:417.315000px;}
.y21{bottom:423.615000px;}
.y6b{bottom:426.495000px;}
.y9e{bottom:427.395000px;}
.y4a{bottom:437.295000px;}
.y88{bottom:437.835000px;}
.y20{bottom:443.415000px;}
.y6a{bottom:447.015000px;}
.y9d{bottom:447.735000px;}
.ycb{bottom:447.915000px;}
.y49{bottom:457.815000px;}
.y87{bottom:458.355000px;}
.y1f{bottom:463.395000px;}
.y69{bottom:467.535000px;}
.y9c{bottom:468.255000px;}
.yca{bottom:468.435000px;}
.y48{bottom:478.335000px;}
.ybb{bottom:478.515000px;}
.y86{bottom:478.875000px;}
.y1e{bottom:483.195000px;}
.y68{bottom:488.055000px;}
.y9b{bottom:488.775000px;}
.yc9{bottom:488.955000px;}
.yba{bottom:498.675000px;}
.y47{bottom:498.855000px;}
.y85{bottom:499.395000px;}
.y1d{bottom:503.175000px;}
.y9a{bottom:504.435000px;}
.y67{bottom:508.395000px;}
.yc8{bottom:509.475000px;}
.y46{bottom:519.375000px;}
.yd1{bottom:519.555000px;}
.y84{bottom:519.915000px;}
.y1c{bottom:522.975000px;}
.y66{bottom:528.915000px;}
.yc7{bottom:529.995000px;}
.y45{bottom:539.715000px;}
.y83{bottom:540.435000px;}
.y1b{bottom:542.955000px;}
.y65{bottom:549.435000px;}
.yc6{bottom:550.515000px;}
.y44{bottom:560.235000px;}
.y82{bottom:560.955000px;}
.y1a{bottom:562.755000px;}
.y64{bottom:569.955000px;}
.yc5{bottom:570.855000px;}
.y43{bottom:580.755000px;}
.y81{bottom:581.475000px;}
.y19{bottom:582.735000px;}
.yc4{bottom:586.515000px;}
.y63{bottom:590.475000px;}
.y42{bottom:601.275000px;}
.y80{bottom:601.995000px;}
.y18{bottom:602.535000px;}
.y62{bottom:610.995000px;}
.y41{bottom:621.795000px;}
.y17{bottom:622.515000px;}
.y61{bottom:631.515000px;}
.y16{bottom:642.345000px;}
.y7f{bottom:642.885000px;}
.y60{bottom:652.065000px;}
.y15{bottom:662.325000px;}
.y40{bottom:662.865000px;}
.yac{bottom:663.045000px;}
.y7e{bottom:663.405000px;}
.y5f{bottom:672.585000px;}
.y14{bottom:682.125000px;}
.y3f{bottom:683.385000px;}
.y7d{bottom:683.925000px;}
.y5e{bottom:693.105000px;}
.y13{bottom:702.105000px;}
.y3e{bottom:703.905000px;}
.y7c{bottom:704.445000px;}
.y5d{bottom:713.625000px;}
.y12{bottom:721.905000px;}
.y3d{bottom:724.425000px;}
.y7b{bottom:724.605000px;}
.yda{bottom:724.965000px;}
.y5c{bottom:729.285000px;}
.y11{bottom:741.885000px;}
.y3c{bottom:744.945000px;}
.yd9{bottom:745.485000px;}
.y10{bottom:761.685000px;}
.y3b{bottom:765.285000px;}
.y99{bottom:766.005000px;}
.yf{bottom:781.665000px;}
.y3a{bottom:785.805000px;}
.y98{bottom:785.985000px;}
.yd8{bottom:786.525000px;}
.ye{bottom:801.825000px;}
.y39{bottom:806.325000px;}
.yd7{bottom:807.045000px;}
.yd{bottom:824.145000px;}
.y38{bottom:826.845000px;}
.yd6{bottom:827.565000px;}
.yc{bottom:844.125000px;}
.y37{bottom:847.365000px;}
.yd5{bottom:848.085000px;}
.yb{bottom:864.150000px;}
.y36{bottom:867.930000px;}
.yd4{bottom:868.470000px;}
.ya{bottom:883.950000px;}
.y35{bottom:888.450000px;}
.yd3{bottom:888.990000px;}
.y9{bottom:904.290000px;}
.y34{bottom:908.970000px;}
.yd2{bottom:909.510000px;}
.y8{bottom:925.710000px;}
.y33{bottom:929.490000px;}
.y5b{bottom:930.030000px;}
.y7{bottom:947.490000px;}
.y32{bottom:950.010000px;}
.y5a{bottom:950.190000px;}
.y6{bottom:969.270000px;}
.y31{bottom:970.530000px;}
.y3{bottom:992.670000px;}
.y2{bottom:1018.770000px;}
.y1{bottom:1038.210000px;}
.h9{height:48.127500px;}
.h4{height:48.224531px;}
.h7{height:48.353906px;}
.h5{height:52.312500px;}
.h6{height:52.558594px;}
.h3{height:62.028281px;}
.ha{height:68.084282px;}
.h8{height:68.956875px;}
.h1{height:74.004654px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:98.856000px;}
.x18{left:105.156000px;}
.x5{left:108.036000px;}
.x11{left:111.636000px;}
.x15{left:113.436000px;}
.x10{left:115.956000px;}
.xe{left:118.116000px;}
.xd{left:124.416000px;}
.x1b{left:135.036000px;}
.x6{left:155.910000px;}
.x1c{left:162.030000px;}
.x16{left:174.270000px;}
.x14{left:176.790000px;}
.x2{left:195.510000px;}
.x3{left:203.790000px;}
.x17{left:218.730000px;}
.x19{left:225.570000px;}
.x13{left:263.370000px;}
.x7{left:330.555000px;}
.xb{left:367.635000px;}
.xa{left:385.995000px;}
.x9{left:407.955000px;}
.xc{left:427.035000px;}
.x8{left:459.105000px;}
.x1{left:555.945000px;}
.xf{left:620.970000px;}
.x12{left:629.250000px;}
.x4{left:785.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.332800pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls8{letter-spacing:-0.186667pt;}
.lsb{letter-spacing:-0.148267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005120pt;}
.ls5{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.153600pt;}
.lsd{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.271467pt;}
.lsc{letter-spacing:6.031360pt;}
.ls9{letter-spacing:35.450027pt;}
.ls0{letter-spacing:79.610027pt;}
.ws0{word-spacing:-20.633600pt;}
.ws6{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.953067pt;}
.ws3{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.725120pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.571733pt;}
.ws7{word-spacing:-14.533333pt;}
.ws8{word-spacing:-14.466667pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.201280pt;}
._2{width:2.213760pt;}
._5{width:3.494400pt;}
._b{width:5.122560pt;}
._c{width:6.187947pt;}
._4{width:7.360000pt;}
._3{width:8.302080pt;}
._a{width:9.240960pt;}
._11{width:10.664107pt;}
._10{width:11.834880pt;}
._6{width:12.953600pt;}
._18{width:15.664640pt;}
._f{width:16.663040pt;}
._12{width:18.158507pt;}
._e{width:19.100587pt;}
._d{width:20.136960pt;}
._20{width:21.314560pt;}
._14{width:22.492160pt;}
._7{width:23.610880pt;}
._1e{width:24.823893pt;}
._8{width:26.142720pt;}
._9{width:27.046400pt;}
._13{width:28.525013pt;}
._1f{width:29.793280pt;}
._1a{width:31.618560pt;}
._15{width:32.560640pt;}
._16{width:33.758720pt;}
._17{width:34.781867pt;}
._19{width:37.271040pt;}
._1b{width:38.860800pt;}
._1c{width:39.996800pt;}
._1d{width:40.931413pt;}
._22{width:50.577920pt;}
._21{width:519.380480pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.520000pt;}
.y4{bottom:70.560000pt;}
.yd0{bottom:100.480000pt;}
.y7a{bottom:105.600000pt;}
.yab{bottom:106.400000pt;}
.y30{bottom:107.520000pt;}
.yb9{bottom:110.560000pt;}
.y59{bottom:115.200000pt;}
.y97{bottom:115.840000pt;}
.yc3{bottom:116.160000pt;}
.ycf{bottom:118.720000pt;}
.y79{bottom:123.840000pt;}
.yaa{bottom:124.640000pt;}
.y2f{bottom:125.760000pt;}
.yb8{bottom:128.800000pt;}
.y58{bottom:133.440000pt;}
.y96{bottom:134.080000pt;}
.yc2{bottom:134.400000pt;}
.yce{bottom:136.960000pt;}
.y78{bottom:142.080000pt;}
.ya9{bottom:142.880000pt;}
.y2e{bottom:143.840000pt;}
.yb7{bottom:147.040000pt;}
.ycd{bottom:150.880000pt;}
.y57{bottom:151.680000pt;}
.y95{bottom:152.160000pt;}
.yc1{bottom:152.640000pt;}
.y77{bottom:160.320000pt;}
.ya8{bottom:161.120000pt;}
.y2d{bottom:162.080000pt;}
.yb6{bottom:165.280000pt;}
.y56{bottom:169.946667pt;}
.y94{bottom:170.426667pt;}
.yc0{bottom:170.906667pt;}
.y76{bottom:178.586667pt;}
.ya7{bottom:179.386667pt;}
.y2c{bottom:180.346667pt;}
.yb5{bottom:183.546667pt;}
.y55{bottom:188.186667pt;}
.y93{bottom:188.666667pt;}
.ybf{bottom:189.146667pt;}
.y75{bottom:196.826667pt;}
.ya6{bottom:197.466667pt;}
.y2b{bottom:198.586667pt;}
.yb4{bottom:201.786667pt;}
.y54{bottom:206.426667pt;}
.y92{bottom:206.906667pt;}
.ybe{bottom:207.386667pt;}
.y74{bottom:215.066667pt;}
.ya5{bottom:215.706667pt;}
.y2a{bottom:216.506667pt;}
.yb3{bottom:219.866667pt;}
.y53{bottom:224.666667pt;}
.y91{bottom:225.146667pt;}
.ybd{bottom:225.626667pt;}
.y73{bottom:233.306667pt;}
.y29{bottom:233.946667pt;}
.yb2{bottom:238.106667pt;}
.ybc{bottom:239.546667pt;}
.y52{bottom:242.906667pt;}
.y90{bottom:243.386667pt;}
.y72{bottom:251.386667pt;}
.ya4{bottom:252.186667pt;}
.y28{bottom:252.666667pt;}
.yb1{bottom:256.346667pt;}
.y51{bottom:261.146667pt;}
.y8f{bottom:261.626667pt;}
.y71{bottom:269.626667pt;}
.y27{bottom:270.426667pt;}
.yb0{bottom:274.586667pt;}
.y50{bottom:279.226667pt;}
.y8e{bottom:279.866667pt;}
.y70{bottom:287.866667pt;}
.y26{bottom:288.026667pt;}
.ya3{bottom:288.666667pt;}
.yaf{bottom:292.506667pt;}
.y4f{bottom:297.466667pt;}
.y8d{bottom:298.106667pt;}
.y25{bottom:305.786667pt;}
.y6f{bottom:306.106667pt;}
.ya2{bottom:306.906667pt;}
.yae{bottom:310.586667pt;}
.y4e{bottom:315.706667pt;}
.y8c{bottom:316.346667pt;}
.y24{bottom:323.386667pt;}
.y6e{bottom:324.346667pt;}
.yad{bottom:324.506667pt;}
.ya1{bottom:325.146667pt;}
.ycc{bottom:325.306667pt;}
.y4d{bottom:333.946667pt;}
.y8b{bottom:334.586667pt;}
.y23{bottom:341.146667pt;}
.y6d{bottom:342.586667pt;}
.ya0{bottom:343.386667pt;}
.y4c{bottom:352.186667pt;}
.y8a{bottom:352.666667pt;}
.y22{bottom:358.746667pt;}
.y6c{bottom:360.826667pt;}
.y9f{bottom:361.626667pt;}
.y4b{bottom:370.466667pt;}
.y89{bottom:370.946667pt;}
.y21{bottom:376.546667pt;}
.y6b{bottom:379.106667pt;}
.y9e{bottom:379.906667pt;}
.y4a{bottom:388.706667pt;}
.y88{bottom:389.186667pt;}
.y20{bottom:394.146667pt;}
.y6a{bottom:397.346667pt;}
.y9d{bottom:397.986667pt;}
.ycb{bottom:398.146667pt;}
.y49{bottom:406.946667pt;}
.y87{bottom:407.426667pt;}
.y1f{bottom:411.906667pt;}
.y69{bottom:415.586667pt;}
.y9c{bottom:416.226667pt;}
.yca{bottom:416.386667pt;}
.y48{bottom:425.186667pt;}
.ybb{bottom:425.346667pt;}
.y86{bottom:425.666667pt;}
.y1e{bottom:429.506667pt;}
.y68{bottom:433.826667pt;}
.y9b{bottom:434.466667pt;}
.yc9{bottom:434.626667pt;}
.yba{bottom:443.266667pt;}
.y47{bottom:443.426667pt;}
.y85{bottom:443.906667pt;}
.y1d{bottom:447.266667pt;}
.y9a{bottom:448.386667pt;}
.y67{bottom:451.906667pt;}
.yc8{bottom:452.866667pt;}
.y46{bottom:461.666667pt;}
.yd1{bottom:461.826667pt;}
.y84{bottom:462.146667pt;}
.y1c{bottom:464.866667pt;}
.y66{bottom:470.146667pt;}
.yc7{bottom:471.106667pt;}
.y45{bottom:479.746667pt;}
.y83{bottom:480.386667pt;}
.y1b{bottom:482.626667pt;}
.y65{bottom:488.386667pt;}
.yc6{bottom:489.346667pt;}
.y44{bottom:497.986667pt;}
.y82{bottom:498.626667pt;}
.y1a{bottom:500.226667pt;}
.y64{bottom:506.626667pt;}
.yc5{bottom:507.426667pt;}
.y43{bottom:516.226667pt;}
.y81{bottom:516.866667pt;}
.y19{bottom:517.986667pt;}
.yc4{bottom:521.346667pt;}
.y63{bottom:524.866667pt;}
.y42{bottom:534.466667pt;}
.y80{bottom:535.106667pt;}
.y18{bottom:535.586667pt;}
.y62{bottom:543.106667pt;}
.y41{bottom:552.706667pt;}
.y17{bottom:553.346667pt;}
.y61{bottom:561.346667pt;}
.y16{bottom:570.973333pt;}
.y7f{bottom:571.453333pt;}
.y60{bottom:579.613333pt;}
.y15{bottom:588.733333pt;}
.y40{bottom:589.213333pt;}
.yac{bottom:589.373333pt;}
.y7e{bottom:589.693333pt;}
.y5f{bottom:597.853333pt;}
.y14{bottom:606.333333pt;}
.y3f{bottom:607.453333pt;}
.y7d{bottom:607.933333pt;}
.y5e{bottom:616.093333pt;}
.y13{bottom:624.093333pt;}
.y3e{bottom:625.693333pt;}
.y7c{bottom:626.173333pt;}
.y5d{bottom:634.333333pt;}
.y12{bottom:641.693333pt;}
.y3d{bottom:643.933333pt;}
.y7b{bottom:644.093333pt;}
.yda{bottom:644.413333pt;}
.y5c{bottom:648.253333pt;}
.y11{bottom:659.453333pt;}
.y3c{bottom:662.173333pt;}
.yd9{bottom:662.653333pt;}
.y10{bottom:677.053333pt;}
.y3b{bottom:680.253333pt;}
.y99{bottom:680.893333pt;}
.yf{bottom:694.813333pt;}
.y3a{bottom:698.493333pt;}
.y98{bottom:698.653333pt;}
.yd8{bottom:699.133333pt;}
.ye{bottom:712.733333pt;}
.y39{bottom:716.733333pt;}
.yd7{bottom:717.373333pt;}
.yd{bottom:732.573333pt;}
.y38{bottom:734.973333pt;}
.yd6{bottom:735.613333pt;}
.yc{bottom:750.333333pt;}
.y37{bottom:753.213333pt;}
.yd5{bottom:753.853333pt;}
.yb{bottom:768.133333pt;}
.y36{bottom:771.493333pt;}
.yd4{bottom:771.973333pt;}
.ya{bottom:785.733333pt;}
.y35{bottom:789.733333pt;}
.yd3{bottom:790.213333pt;}
.y9{bottom:803.813333pt;}
.y34{bottom:807.973333pt;}
.yd2{bottom:808.453333pt;}
.y8{bottom:822.853333pt;}
.y33{bottom:826.213333pt;}
.y5b{bottom:826.693333pt;}
.y7{bottom:842.213333pt;}
.y32{bottom:844.453333pt;}
.y5a{bottom:844.613333pt;}
.y6{bottom:861.573333pt;}
.y31{bottom:862.693333pt;}
.y3{bottom:882.373333pt;}
.y2{bottom:905.573333pt;}
.y1{bottom:922.853333pt;}
.h9{height:42.780000pt;}
.h4{height:42.866250pt;}
.h7{height:42.981250pt;}
.h5{height:46.500000pt;}
.h6{height:46.718750pt;}
.h3{height:55.136250pt;}
.ha{height:60.519362pt;}
.h8{height:61.295000pt;}
.h1{height:65.781915pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:87.872000pt;}
.x18{left:93.472000pt;}
.x5{left:96.032000pt;}
.x11{left:99.232000pt;}
.x15{left:100.832000pt;}
.x10{left:103.072000pt;}
.xe{left:104.992000pt;}
.xd{left:110.592000pt;}
.x1b{left:120.032000pt;}
.x6{left:138.586667pt;}
.x1c{left:144.026667pt;}
.x16{left:154.906667pt;}
.x14{left:157.146667pt;}
.x2{left:173.786667pt;}
.x3{left:181.146667pt;}
.x17{left:194.426667pt;}
.x19{left:200.506667pt;}
.x13{left:234.106667pt;}
.x7{left:293.826667pt;}
.xb{left:326.786667pt;}
.xa{left:343.106667pt;}
.x9{left:362.626667pt;}
.xc{left:379.586667pt;}
.x8{left:408.093333pt;}
.x1{left:494.173333pt;}
.xf{left:551.973333pt;}
.x12{left:559.333333pt;}
.x4{left:698.053333pt;}
}




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