
    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_475637822153041b6a9f45da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f06c5a7a8c0fd873ffb260a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7ba68ce64103650766ed9f2c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc1292fe3964c3cc799fa9fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f2f01e25d75610e6eb229342.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fdd104ffa2bf06d500bad9c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_5e7f94159bba7360476b53ac.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;}
.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);}
.v2{vertical-align:-70.560000px;}
.v3{vertical-align:-69.120000px;}
.v1{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.828000px;}
.ls5{letter-spacing:-0.322800px;}
.lsc{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.360000px;}
.lse{letter-spacing:0.460200px;}
.ls1{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.080000px;}
.ls3{letter-spacing:3.780000px;}
.ls10{letter-spacing:12.509280px;}
.ls2{letter-spacing:13.140000px;}
.lsa{letter-spacing:33.066720px;}
.lsb{letter-spacing:36.666720px;}
.lsf{letter-spacing:437.400000px;}
.ls9{letter-spacing:1015.536000px;}
.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;}
}
.wsd{word-spacing:-54.000000px;}
.ws2{word-spacing:-20.737200px;}
.ws5{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.400200px;}
.ws4{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.wsc{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.672000px;}
.wsa{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-11.790720px;}
._15{margin-left:-2.879040px;}
._0{margin-left:-1.398960px;}
._1{width:1.051680px;}
._3{width:2.596560px;}
._5{width:3.645360px;}
._4{width:4.780800px;}
._8{width:5.796720px;}
._f{width:6.800880px;}
._6{width:7.828560px;}
._7{width:8.986080px;}
._16{width:10.237200px;}
._b{width:11.384640px;}
._a{width:12.489840px;}
._9{width:13.685040px;}
._10{width:15.967680px;}
._d{width:16.995840px;}
._c{width:18.107280px;}
._19{width:19.172400px;}
._11{width:20.940000px;}
._12{width:22.146960px;}
._1a{width:23.187840px;}
._13{width:24.262560px;}
._14{width:25.541520px;}
._1b{width:26.946000px;}
._e{width:29.043360px;}
._1f{width:33.534000px;}
._20{width:35.004240px;}
._2{width:47.341440px;}
._18{width:50.134560px;}
._17{width:66.187200px;}
._1d{width:104.989200px;}
._1c{width:106.650000px;}
._21{width:307.740000px;}
._22{width:309.150000px;}
.fc6{color:rgb(79,98,40);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(118,146,60);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(148,54,52);}
.fc0{color:rgb(5,99,193);}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs8{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:30.960000px;}
.y8{bottom:49.860000px;}
.y7{bottom:67.680000px;}
.y39{bottom:111.816000px;}
.y9a{bottom:112.896000px;}
.yf8{bottom:114.516000px;}
.yde{bottom:118.116000px;}
.y69{bottom:122.976000px;}
.y38{bottom:129.096000px;}
.yf7{bottom:129.996000px;}
.y99{bottom:132.696000px;}
.ydd{bottom:137.916000px;}
.y68{bottom:143.136000px;}
.yf6{bottom:145.656000px;}
.y37{bottom:148.716000px;}
.y98{bottom:152.670000px;}
.ydc{bottom:157.710000px;}
.yf5{bottom:161.130000px;}
.y67{bottom:162.930000px;}
.y36{bottom:168.690000px;}
.y97{bottom:172.110000px;}
.yf4{bottom:176.610000px;}
.ydb{bottom:177.510000px;}
.y66{bottom:182.730000px;}
.y35{bottom:188.490000px;}
.y96{bottom:191.910000px;}
.yf3{bottom:192.090000px;}
.yda{bottom:194.610000px;}
.y65{bottom:202.170000px;}
.y34{bottom:206.310000px;}
.yf2{bottom:207.750000px;}
.y95{bottom:212.070000px;}
.yd9{bottom:212.250000px;}
.y64{bottom:219.990000px;}
.y33{bottom:223.050000px;}
.yf1{bottom:223.230000px;}
.y94{bottom:231.870000px;}
.yf0{bottom:238.710000px;}
.y63{bottom:239.790000px;}
.y32{bottom:240.330000px;}
.yd8{bottom:251.670000px;}
.y93{bottom:251.850000px;}
.yef{bottom:254.190000px;}
.y31{bottom:257.610000px;}
.y62{bottom:259.590000px;}
.yb9{bottom:264.270000px;}
.yee{bottom:269.850000px;}
.yd7{bottom:271.470000px;}
.y92{bottom:271.650000px;}
.y30{bottom:274.890000px;}
.y61{bottom:279.390000px;}
.yb8{bottom:284.610000px;}
.yed{bottom:285.330000px;}
.y91{bottom:291.450000px;}
.y2f{bottom:292.170000px;}
.y60{bottom:299.190000px;}
.yec{bottom:300.810000px;}
.yb7{bottom:304.410000px;}
.y2e{bottom:309.450000px;}
.y90{bottom:311.250000px;}
.yeb{bottom:316.290000px;}
.y5f{bottom:318.990000px;}
.yb6{bottom:324.210000px;}
.y2d{bottom:326.550000px;}
.yd6{bottom:328.710000px;}
.y8f{bottom:331.050000px;}
.yea{bottom:331.950000px;}
.y5e{bottom:338.790000px;}
.y2c{bottom:343.830000px;}
.yb5{bottom:344.010000px;}
.y8e{bottom:351.075000px;}
.ye9{bottom:353.235000px;}
.y5d{bottom:358.815000px;}
.y2b{bottom:361.155000px;}
.yd5{bottom:363.135000px;}
.yb4{bottom:363.855000px;}
.y8d{bottom:370.875000px;}
.y2a{bottom:378.435000px;}
.y5c{bottom:378.615000px;}
.yd4{bottom:380.415000px;}
.yb3{bottom:383.835000px;}
.y8c{bottom:390.675000px;}
.y29{bottom:395.715000px;}
.yd3{bottom:397.695000px;}
.y5b{bottom:398.415000px;}
.ye8{bottom:402.375000px;}
.yb2{bottom:403.635000px;}
.y8b{bottom:410.115000px;}
.y28{bottom:412.995000px;}
.yd2{bottom:414.975000px;}
.y5a{bottom:418.215000px;}
.yb1{bottom:423.435000px;}
.y8a{bottom:429.915000px;}
.y27{bottom:430.095000px;}
.ye7{bottom:430.275000px;}
.yd1{bottom:432.255000px;}
.y59{bottom:438.015000px;}
.yb0{bottom:443.235000px;}
.y26{bottom:447.375000px;}
.yd0{bottom:449.355000px;}
.y89{bottom:450.255000px;}
.y58{bottom:457.995000px;}
.yaf{bottom:460.335000px;}
.y25{bottom:464.655000px;}
.ycf{bottom:466.635000px;}
.y88{bottom:470.055000px;}
.y57{bottom:477.795000px;}
.yae{bottom:477.975000px;}
.y24{bottom:481.935000px;}
.yce{bottom:483.915000px;}
.y87{bottom:489.855000px;}
.y56{bottom:497.595000px;}
.y23{bottom:499.215000px;}
.ycd{bottom:501.195000px;}
.y86{bottom:509.655000px;}
.y22{bottom:516.315000px;}
.y55{bottom:517.395000px;}
.ycc{bottom:518.475000px;}
.y85{bottom:529.455000px;}
.y21{bottom:533.595000px;}
.ycb{bottom:535.755000px;}
.y54{bottom:537.195000px;}
.y84{bottom:549.435000px;}
.y20{bottom:550.875000px;}
.yca{bottom:552.855000px;}
.y53{bottom:557.175000px;}
.y1f{bottom:568.155000px;}
.y83{bottom:568.875000px;}
.ye6{bottom:569.235000px;}
.yc9{bottom:572.655000px;}
.y52{bottom:576.975000px;}
.y1e{bottom:585.435000px;}
.y82{bottom:588.675000px;}
.ye5{bottom:589.035000px;}
.yc8{bottom:592.455000px;}
.y51{bottom:596.775000px;}
.y1d{bottom:602.715000px;}
.y81{bottom:608.865000px;}
.yc7{bottom:612.285000px;}
.y50{bottom:616.245000px;}
.yad{bottom:616.605000px;}
.y1c{bottom:619.845000px;}
.y80{bottom:628.665000px;}
.yc6{bottom:632.085000px;}
.yac{bottom:636.405000px;}
.y1b{bottom:637.485000px;}
.y7f{bottom:648.645000px;}
.y4f{bottom:651.345000px;}
.yc5{bottom:651.885000px;}
.y1a{bottom:654.765000px;}
.yab{bottom:656.385000px;}
.ye4{bottom:668.085000px;}
.y7e{bottom:668.445000px;}
.y4e{bottom:670.965000px;}
.yc4{bottom:671.865000px;}
.y19{bottom:672.045000px;}
.yaa{bottom:676.185000px;}
.y7d{bottom:688.245000px;}
.y18{bottom:688.965000px;}
.y4d{bottom:690.765000px;}
.yc3{bottom:691.665000px;}
.ya9{bottom:693.645000px;}
.y17{bottom:706.605000px;}
.y7c{bottom:708.045000px;}
.y4c{bottom:710.745000px;}
.yc2{bottom:711.465000px;}
.ya8{bottom:713.265000px;}
.y16{bottom:723.705000px;}
.y7b{bottom:727.845000px;}
.y4b{bottom:730.545000px;}
.yc1{bottom:731.265000px;}
.ya7{bottom:733.065000px;}
.y15{bottom:740.985000px;}
.y7a{bottom:747.465000px;}
.ye3{bottom:747.825000px;}
.y4a{bottom:750.345000px;}
.yc0{bottom:751.065000px;}
.ya6{bottom:752.865000px;}
.y14{bottom:759.165000px;}
.y79{bottom:767.265000px;}
.ye2{bottom:767.625000px;}
.y49{bottom:770.145000px;}
.ybf{bottom:771.045000px;}
.y10b{bottom:771.585000px;}
.ya5{bottom:772.845000px;}
.y13{bottom:783.465000px;}
.y10a{bottom:787.065000px;}
.y78{bottom:787.425000px;}
.ybe{bottom:787.965000px;}
.y48{bottom:789.945000px;}
.ya4{bottom:792.645000px;}
.y109{bottom:802.725000px;}
.ybd{bottom:805.605000px;}
.y77{bottom:807.225000px;}
.y12{bottom:807.585000px;}
.y47{bottom:809.925000px;}
.ya3{bottom:812.445000px;}
.y108{bottom:818.205000px;}
.ybc{bottom:822.885000px;}
.y76{bottom:827.025000px;}
.y46{bottom:829.725000px;}
.y11{bottom:831.705000px;}
.ya2{bottom:832.245000px;}
.y107{bottom:833.685000px;}
.ybb{bottom:840.165000px;}
.y75{bottom:847.005000px;}
.y106{bottom:849.165000px;}
.y45{bottom:849.525000px;}
.ya1{bottom:852.045000px;}
.y10{bottom:855.825000px;}
.y105{bottom:864.825000px;}
.y74{bottom:866.805000px;}
.y44{bottom:869.325000px;}
.ya0{bottom:871.890000px;}
.y104{bottom:880.350000px;}
.yf{bottom:881.790000px;}
.y73{bottom:886.290000px;}
.ye1{bottom:886.650000px;}
.y43{bottom:889.170000px;}
.y9f{bottom:891.870000px;}
.y103{bottom:895.830000px;}
.y72{bottom:906.090000px;}
.ye0{bottom:906.450000px;}
.y9e{bottom:908.970000px;}
.y42{bottom:909.150000px;}
.y102{bottom:911.310000px;}
.ye{bottom:912.930000px;}
.y9d{bottom:926.070000px;}
.y71{bottom:926.250000px;}
.y101{bottom:926.970000px;}
.y41{bottom:928.950000px;}
.y100{bottom:942.450000px;}
.y9c{bottom:945.870000px;}
.y70{bottom:946.230000px;}
.yd{bottom:947.490000px;}
.y40{bottom:948.750000px;}
.yff{bottom:957.930000px;}
.ydf{bottom:965.670000px;}
.y6f{bottom:966.030000px;}
.y3f{bottom:968.550000px;}
.yfe{bottom:973.410000px;}
.yc{bottom:981.870000px;}
.y6e{bottom:985.830000px;}
.y3e{bottom:988.350000px;}
.yfd{bottom:989.070000px;}
.yfc{bottom:1004.550000px;}
.y6d{bottom:1005.630000px;}
.y3d{bottom:1008.330000px;}
.yb{bottom:1016.430000px;}
.yfb{bottom:1020.030000px;}
.y6c{bottom:1025.430000px;}
.y3c{bottom:1028.130000px;}
.yfa{bottom:1035.510000px;}
.y6b{bottom:1045.410000px;}
.y3b{bottom:1047.930000px;}
.ya{bottom:1050.990000px;}
.y6a{bottom:1064.850000px;}
.y3a{bottom:1065.030000px;}
.y9b{bottom:1065.210000px;}
.yba{bottom:1065.390000px;}
.yf9{bottom:1066.650000px;}
.y6{bottom:1082.850000px;}
.y5{bottom:1103.370000px;}
.y4{bottom:1118.850000px;}
.y3{bottom:1149.840000px;}
.y2{bottom:1163.880000px;}
.y1{bottom:1177.920000px;}
.h3{height:47.344922px;}
.h4{height:48.616875px;}
.hf{height:50.218594px;}
.h2{height:52.998047px;}
.h5{height:54.421875px;}
.ha{height:58.651172px;}
.hb{height:60.226875px;}
.hc{height:62.211094px;}
.h6{height:65.010937px;}
.h9{height:84.898125px;}
.hd{height:93.983203px;}
.h8{height:105.996094px;}
.h7{height:121.179375px;}
.he{height:169.070625px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x12{left:81.000000px;}
.x6{left:108.036000px;}
.xe{left:118.836000px;}
.x7{left:121.896000px;}
.x1a{left:123.516000px;}
.xb{left:149.436000px;}
.x8{left:152.310000px;}
.x9{left:155.730000px;}
.x2{left:158.250000px;}
.xa{left:163.650000px;}
.x17{left:200.730000px;}
.x14{left:207.030000px;}
.xd{left:209.010000px;}
.x3{left:243.210000px;}
.x18{left:283.395000px;}
.x15{left:302.115000px;}
.x10{left:313.275000px;}
.xf{left:319.215000px;}
.x16{left:333.975000px;}
.x13{left:338.295000px;}
.x19{left:362.595000px;}
.x11{left:373.575000px;}
.x1{left:419.835000px;}
.xc{left:446.685000px;}
.x5{left:564.045000px;}
.x4{left:664.350000px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:-0.286933pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.409067pt;}
.ls1{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls3{letter-spacing:3.360000pt;}
.ls10{letter-spacing:11.119360pt;}
.ls2{letter-spacing:11.680000pt;}
.lsa{letter-spacing:29.392640pt;}
.lsb{letter-spacing:32.592640pt;}
.lsf{letter-spacing:388.800000pt;}
.ls9{letter-spacing:902.698667pt;}
.wsd{word-spacing:-48.000000pt;}
.ws2{word-spacing:-18.433067pt;}
.ws5{word-spacing:-14.240000pt;}
.ws9{word-spacing:-13.689067pt;}
.ws4{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.264000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-10.480640pt;}
._15{margin-left:-2.559147pt;}
._0{margin-left:-1.243520pt;}
._1{width:0.934827pt;}
._3{width:2.308053pt;}
._5{width:3.240320pt;}
._4{width:4.249600pt;}
._8{width:5.152640pt;}
._f{width:6.045227pt;}
._6{width:6.958720pt;}
._7{width:7.987627pt;}
._16{width:9.099733pt;}
._b{width:10.119680pt;}
._a{width:11.102080pt;}
._9{width:12.164480pt;}
._10{width:14.193493pt;}
._d{width:15.107413pt;}
._c{width:16.095360pt;}
._19{width:17.042133pt;}
._11{width:18.613333pt;}
._12{width:19.686187pt;}
._1a{width:20.611413pt;}
._13{width:21.566720pt;}
._14{width:22.703573pt;}
._1b{width:23.952000pt;}
._e{width:25.816320pt;}
._1f{width:29.808000pt;}
._20{width:31.114880pt;}
._2{width:42.081280pt;}
._18{width:44.564053pt;}
._17{width:58.833067pt;}
._1d{width:93.323733pt;}
._1c{width:94.800000pt;}
._21{width:273.546667pt;}
._22{width:274.800000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs8{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:27.520000pt;}
.y8{bottom:44.320000pt;}
.y7{bottom:60.160000pt;}
.y39{bottom:99.392000pt;}
.y9a{bottom:100.352000pt;}
.yf8{bottom:101.792000pt;}
.yde{bottom:104.992000pt;}
.y69{bottom:109.312000pt;}
.y38{bottom:114.752000pt;}
.yf7{bottom:115.552000pt;}
.y99{bottom:117.952000pt;}
.ydd{bottom:122.592000pt;}
.y68{bottom:127.232000pt;}
.yf6{bottom:129.472000pt;}
.y37{bottom:132.192000pt;}
.y98{bottom:135.706667pt;}
.ydc{bottom:140.186667pt;}
.yf5{bottom:143.226667pt;}
.y67{bottom:144.826667pt;}
.y36{bottom:149.946667pt;}
.y97{bottom:152.986667pt;}
.yf4{bottom:156.986667pt;}
.ydb{bottom:157.786667pt;}
.y66{bottom:162.426667pt;}
.y35{bottom:167.546667pt;}
.y96{bottom:170.586667pt;}
.yf3{bottom:170.746667pt;}
.yda{bottom:172.986667pt;}
.y65{bottom:179.706667pt;}
.y34{bottom:183.386667pt;}
.yf2{bottom:184.666667pt;}
.y95{bottom:188.506667pt;}
.yd9{bottom:188.666667pt;}
.y64{bottom:195.546667pt;}
.y33{bottom:198.266667pt;}
.yf1{bottom:198.426667pt;}
.y94{bottom:206.106667pt;}
.yf0{bottom:212.186667pt;}
.y63{bottom:213.146667pt;}
.y32{bottom:213.626667pt;}
.yd8{bottom:223.706667pt;}
.y93{bottom:223.866667pt;}
.yef{bottom:225.946667pt;}
.y31{bottom:228.986667pt;}
.y62{bottom:230.746667pt;}
.yb9{bottom:234.906667pt;}
.yee{bottom:239.866667pt;}
.yd7{bottom:241.306667pt;}
.y92{bottom:241.466667pt;}
.y30{bottom:244.346667pt;}
.y61{bottom:248.346667pt;}
.yb8{bottom:252.986667pt;}
.yed{bottom:253.626667pt;}
.y91{bottom:259.066667pt;}
.y2f{bottom:259.706667pt;}
.y60{bottom:265.946667pt;}
.yec{bottom:267.386667pt;}
.yb7{bottom:270.586667pt;}
.y2e{bottom:275.066667pt;}
.y90{bottom:276.666667pt;}
.yeb{bottom:281.146667pt;}
.y5f{bottom:283.546667pt;}
.yb6{bottom:288.186667pt;}
.y2d{bottom:290.266667pt;}
.yd6{bottom:292.186667pt;}
.y8f{bottom:294.266667pt;}
.yea{bottom:295.066667pt;}
.y5e{bottom:301.146667pt;}
.y2c{bottom:305.626667pt;}
.yb5{bottom:305.786667pt;}
.y8e{bottom:312.066667pt;}
.ye9{bottom:313.986667pt;}
.y5d{bottom:318.946667pt;}
.y2b{bottom:321.026667pt;}
.yd5{bottom:322.786667pt;}
.yb4{bottom:323.426667pt;}
.y8d{bottom:329.666667pt;}
.y2a{bottom:336.386667pt;}
.y5c{bottom:336.546667pt;}
.yd4{bottom:338.146667pt;}
.yb3{bottom:341.186667pt;}
.y8c{bottom:347.266667pt;}
.y29{bottom:351.746667pt;}
.yd3{bottom:353.506667pt;}
.y5b{bottom:354.146667pt;}
.ye8{bottom:357.666667pt;}
.yb2{bottom:358.786667pt;}
.y8b{bottom:364.546667pt;}
.y28{bottom:367.106667pt;}
.yd2{bottom:368.866667pt;}
.y5a{bottom:371.746667pt;}
.yb1{bottom:376.386667pt;}
.y8a{bottom:382.146667pt;}
.y27{bottom:382.306667pt;}
.ye7{bottom:382.466667pt;}
.yd1{bottom:384.226667pt;}
.y59{bottom:389.346667pt;}
.yb0{bottom:393.986667pt;}
.y26{bottom:397.666667pt;}
.yd0{bottom:399.426667pt;}
.y89{bottom:400.226667pt;}
.y58{bottom:407.106667pt;}
.yaf{bottom:409.186667pt;}
.y25{bottom:413.026667pt;}
.ycf{bottom:414.786667pt;}
.y88{bottom:417.826667pt;}
.y57{bottom:424.706667pt;}
.yae{bottom:424.866667pt;}
.y24{bottom:428.386667pt;}
.yce{bottom:430.146667pt;}
.y87{bottom:435.426667pt;}
.y56{bottom:442.306667pt;}
.y23{bottom:443.746667pt;}
.ycd{bottom:445.506667pt;}
.y86{bottom:453.026667pt;}
.y22{bottom:458.946667pt;}
.y55{bottom:459.906667pt;}
.ycc{bottom:460.866667pt;}
.y85{bottom:470.626667pt;}
.y21{bottom:474.306667pt;}
.ycb{bottom:476.226667pt;}
.y54{bottom:477.506667pt;}
.y84{bottom:488.386667pt;}
.y20{bottom:489.666667pt;}
.yca{bottom:491.426667pt;}
.y53{bottom:495.266667pt;}
.y1f{bottom:505.026667pt;}
.y83{bottom:505.666667pt;}
.ye6{bottom:505.986667pt;}
.yc9{bottom:509.026667pt;}
.y52{bottom:512.866667pt;}
.y1e{bottom:520.386667pt;}
.y82{bottom:523.266667pt;}
.ye5{bottom:523.586667pt;}
.yc8{bottom:526.626667pt;}
.y51{bottom:530.466667pt;}
.y1d{bottom:535.746667pt;}
.y81{bottom:541.213333pt;}
.yc7{bottom:544.253333pt;}
.y50{bottom:547.773333pt;}
.yad{bottom:548.093333pt;}
.y1c{bottom:550.973333pt;}
.y80{bottom:558.813333pt;}
.yc6{bottom:561.853333pt;}
.yac{bottom:565.693333pt;}
.y1b{bottom:566.653333pt;}
.y7f{bottom:576.573333pt;}
.y4f{bottom:578.973333pt;}
.yc5{bottom:579.453333pt;}
.y1a{bottom:582.013333pt;}
.yab{bottom:583.453333pt;}
.ye4{bottom:593.853333pt;}
.y7e{bottom:594.173333pt;}
.y4e{bottom:596.413333pt;}
.yc4{bottom:597.213333pt;}
.y19{bottom:597.373333pt;}
.yaa{bottom:601.053333pt;}
.y7d{bottom:611.773333pt;}
.y18{bottom:612.413333pt;}
.y4d{bottom:614.013333pt;}
.yc3{bottom:614.813333pt;}
.ya9{bottom:616.573333pt;}
.y17{bottom:628.093333pt;}
.y7c{bottom:629.373333pt;}
.y4c{bottom:631.773333pt;}
.yc2{bottom:632.413333pt;}
.ya8{bottom:634.013333pt;}
.y16{bottom:643.293333pt;}
.y7b{bottom:646.973333pt;}
.y4b{bottom:649.373333pt;}
.yc1{bottom:650.013333pt;}
.ya7{bottom:651.613333pt;}
.y15{bottom:658.653333pt;}
.y7a{bottom:664.413333pt;}
.ye3{bottom:664.733333pt;}
.y4a{bottom:666.973333pt;}
.yc0{bottom:667.613333pt;}
.ya6{bottom:669.213333pt;}
.y14{bottom:674.813333pt;}
.y79{bottom:682.013333pt;}
.ye2{bottom:682.333333pt;}
.y49{bottom:684.573333pt;}
.ybf{bottom:685.373333pt;}
.y10b{bottom:685.853333pt;}
.ya5{bottom:686.973333pt;}
.y13{bottom:696.413333pt;}
.y10a{bottom:699.613333pt;}
.y78{bottom:699.933333pt;}
.ybe{bottom:700.413333pt;}
.y48{bottom:702.173333pt;}
.ya4{bottom:704.573333pt;}
.y109{bottom:713.533333pt;}
.ybd{bottom:716.093333pt;}
.y77{bottom:717.533333pt;}
.y12{bottom:717.853333pt;}
.y47{bottom:719.933333pt;}
.ya3{bottom:722.173333pt;}
.y108{bottom:727.293333pt;}
.ybc{bottom:731.453333pt;}
.y76{bottom:735.133333pt;}
.y46{bottom:737.533333pt;}
.y11{bottom:739.293333pt;}
.ya2{bottom:739.773333pt;}
.y107{bottom:741.053333pt;}
.ybb{bottom:746.813333pt;}
.y75{bottom:752.893333pt;}
.y106{bottom:754.813333pt;}
.y45{bottom:755.133333pt;}
.ya1{bottom:757.373333pt;}
.y10{bottom:760.733333pt;}
.y105{bottom:768.733333pt;}
.y74{bottom:770.493333pt;}
.y44{bottom:772.733333pt;}
.ya0{bottom:775.013333pt;}
.y104{bottom:782.533333pt;}
.yf{bottom:783.813333pt;}
.y73{bottom:787.813333pt;}
.ye1{bottom:788.133333pt;}
.y43{bottom:790.373333pt;}
.y9f{bottom:792.773333pt;}
.y103{bottom:796.293333pt;}
.y72{bottom:805.413333pt;}
.ye0{bottom:805.733333pt;}
.y9e{bottom:807.973333pt;}
.y42{bottom:808.133333pt;}
.y102{bottom:810.053333pt;}
.ye{bottom:811.493333pt;}
.y9d{bottom:823.173333pt;}
.y71{bottom:823.333333pt;}
.y101{bottom:823.973333pt;}
.y41{bottom:825.733333pt;}
.y100{bottom:837.733333pt;}
.y9c{bottom:840.773333pt;}
.y70{bottom:841.093333pt;}
.yd{bottom:842.213333pt;}
.y40{bottom:843.333333pt;}
.yff{bottom:851.493333pt;}
.ydf{bottom:858.373333pt;}
.y6f{bottom:858.693333pt;}
.y3f{bottom:860.933333pt;}
.yfe{bottom:865.253333pt;}
.yc{bottom:872.773333pt;}
.y6e{bottom:876.293333pt;}
.y3e{bottom:878.533333pt;}
.yfd{bottom:879.173333pt;}
.yfc{bottom:892.933333pt;}
.y6d{bottom:893.893333pt;}
.y3d{bottom:896.293333pt;}
.yb{bottom:903.493333pt;}
.yfb{bottom:906.693333pt;}
.y6c{bottom:911.493333pt;}
.y3c{bottom:913.893333pt;}
.yfa{bottom:920.453333pt;}
.y6b{bottom:929.253333pt;}
.y3b{bottom:931.493333pt;}
.ya{bottom:934.213333pt;}
.y6a{bottom:946.533333pt;}
.y3a{bottom:946.693333pt;}
.y9b{bottom:946.853333pt;}
.yba{bottom:947.013333pt;}
.yf9{bottom:948.133333pt;}
.y6{bottom:962.533333pt;}
.y5{bottom:980.773333pt;}
.y4{bottom:994.533333pt;}
.y3{bottom:1022.080000pt;}
.y2{bottom:1034.560000pt;}
.y1{bottom:1047.040000pt;}
.h3{height:42.084375pt;}
.h4{height:43.215000pt;}
.hf{height:44.638750pt;}
.h2{height:47.109375pt;}
.h5{height:48.375000pt;}
.ha{height:52.134375pt;}
.hb{height:53.535000pt;}
.hc{height:55.298750pt;}
.h6{height:57.787500pt;}
.h9{height:75.465000pt;}
.hd{height:83.540625pt;}
.h8{height:94.218750pt;}
.h7{height:107.715000pt;}
.he{height:150.285000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x12{left:72.000000pt;}
.x6{left:96.032000pt;}
.xe{left:105.632000pt;}
.x7{left:108.352000pt;}
.x1a{left:109.792000pt;}
.xb{left:132.832000pt;}
.x8{left:135.386667pt;}
.x9{left:138.426667pt;}
.x2{left:140.666667pt;}
.xa{left:145.466667pt;}
.x17{left:178.426667pt;}
.x14{left:184.026667pt;}
.xd{left:185.786667pt;}
.x3{left:216.186667pt;}
.x18{left:251.906667pt;}
.x15{left:268.546667pt;}
.x10{left:278.466667pt;}
.xf{left:283.746667pt;}
.x16{left:296.866667pt;}
.x13{left:300.706667pt;}
.x19{left:322.306667pt;}
.x11{left:332.066667pt;}
.x1{left:373.186667pt;}
.xc{left:397.053333pt;}
.x5{left:501.373333pt;}
.x4{left:590.533333pt;}
}




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