
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eb992794b8ff4c11a7bd527d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c60fc9618d73bf306819f289.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_443bbb7c082b55cc8697d994.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b77847ace11b95c5edbe03c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_d8eb4a1288f7902dacdebbcc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6aaff784bd0d8cefecaabbb3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ff490e4a46296f83d388ea32.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_541cf7880621e296ae89a29f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6a7275350bb89f2a78351bcb.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.103800px;}
.ls10{letter-spacing:-0.097800px;}
.ls8{letter-spacing:-0.094800px;}
.ls14{letter-spacing:-0.046800px;}
.ls13{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls11{letter-spacing:0.038880px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.211680px;}
.ls15{letter-spacing:0.319800px;}
.ls1{letter-spacing:0.351360px;}
.lsb{letter-spacing:0.385800px;}
.lse{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:64.026720px;}
.ls12{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.wsd{word-spacing:-14.958600px;}
.ws9{word-spacing:-14.572800px;}
.ws11{word-spacing:-13.467000px;}
.wse{word-spacing:-13.186080px;}
.ws6{word-spacing:-13.160400px;}
.wsb{word-spacing:-13.160160px;}
.ws7{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.111200px;}
.ws10{word-spacing:-13.100400px;}
.ws5{word-spacing:-13.043400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws4{word-spacing:-9.187200px;}
.ws3{word-spacing:-9.092400px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:2.552040px;}
._2{margin-left:-3.538164px;}
._3{margin-left:-2.526610px;}
._0{margin-left:-1.159200px;}
._1{width:1.002000px;}
._6{width:2.454720px;}
._5{width:4.044480px;}
._7{width:5.768520px;}
._d{width:7.350480px;}
._4{width:8.452800px;}
._8{width:9.800401px;}
._9{width:10.816799px;}
._a{width:12.006604px;}
._e{width:15.119280px;}
._b{width:17.509800px;}
._c{width:18.599400px;}
._10{width:21.035520px;}
._f{width:22.170960px;}
._13{width:39.740400px;}
._14{width:50.929440px;}
._15{width:86.546160px;}
._12{width:129.559680px;}
._11{width:130.575600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:7.740000px;}
.ya4{bottom:7.920000px;}
.y2{bottom:73.296000px;}
.y2b{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.yb6{bottom:118.476000px;}
.y56{bottom:128.376000px;}
.ycc{bottom:129.276000px;}
.yfc{bottom:133.416000px;}
.y7a{bottom:136.836000px;}
.y29{bottom:137.376000px;}
.y8d{bottom:141.516000px;}
.y55{bottom:146.016000px;}
.ycb{bottom:146.916000px;}
.yfb{bottom:150.870000px;}
.yb5{bottom:154.110000px;}
.y28{bottom:155.010000px;}
.y8c{bottom:159.150000px;}
.y54{bottom:163.650000px;}
.yca{bottom:164.370000px;}
.yfa{bottom:168.510000px;}
.yb4{bottom:171.750000px;}
.y79{bottom:172.290000px;}
.y27{bottom:172.470000px;}
.yc9{bottom:182.010000px;}
.yf9{bottom:186.150000px;}
.yb3{bottom:189.210000px;}
.y78{bottom:189.930000px;}
.y26{bottom:190.110000px;}
.y8b{bottom:194.610000px;}
.yc8{bottom:199.650000px;}
.yf8{bottom:203.790000px;}
.yb2{bottom:206.850000px;}
.y77{bottom:207.390000px;}
.y25{bottom:207.750000px;}
.yc7{bottom:217.110000px;}
.yf7{bottom:221.250000px;}
.y76{bottom:225.030000px;}
.y24{bottom:225.210000px;}
.y53{bottom:225.750000px;}
.y8a{bottom:226.830000px;}
.yc6{bottom:234.750000px;}
.yf6{bottom:238.890000px;}
.yb1{bottom:242.310000px;}
.y75{bottom:242.670000px;}
.y23{bottom:242.850000px;}
.y52{bottom:243.390000px;}
.yc5{bottom:252.390000px;}
.yf5{bottom:256.530000px;}
.y74{bottom:260.130000px;}
.y22{bottom:260.490000px;}
.y51{bottom:261.030000px;}
.yc4{bottom:269.850000px;}
.yf4{bottom:273.990000px;}
.yb0{bottom:274.530000px;}
.y73{bottom:277.770000px;}
.y21{bottom:277.950000px;}
.y50{bottom:278.490000px;}
.yc3{bottom:287.490000px;}
.yf3{bottom:291.630000px;}
.y72{bottom:295.410000px;}
.y20{bottom:295.590000px;}
.y4f{bottom:296.130000px;}
.ydb{bottom:299.910000px;}
.yc2{bottom:305.130000px;}
.yf2{bottom:309.315000px;}
.y71{bottom:312.915000px;}
.y9b{bottom:313.095000px;}
.y4e{bottom:313.815000px;}
.yda{bottom:317.595000px;}
.y1f{bottom:322.455000px;}
.yc1{bottom:322.815000px;}
.y9a{bottom:330.735000px;}
.y4d{bottom:331.275000px;}
.yd9{bottom:335.235000px;}
.yf1{bottom:335.955000px;}
.y70{bottom:339.555000px;}
.yc0{bottom:340.275000px;}
.y99{bottom:348.375000px;}
.yd8{bottom:352.875000px;}
.y4c{bottom:357.915000px;}
.y98{bottom:365.835000px;}
.yd7{bottom:370.335000px;}
.y1e{bottom:371.055000px;}
.y6f{bottom:375.195000px;}
.ybf{bottom:375.915000px;}
.y97{bottom:383.475000px;}
.yf0{bottom:384.375000px;}
.yd6{bottom:387.975000px;}
.y6e{bottom:392.835000px;}
.y4b{bottom:393.735000px;}
.yef{bottom:402.015000px;}
.y1d{bottom:408.135000px;}
.y6d{bottom:410.295000px;}
.y96{bottom:418.935000px;}
.yee{bottom:419.655000px;}
.yd5{bottom:423.435000px;}
.y1c{bottom:425.775000px;}
.y6c{bottom:427.935000px;}
.yed{bottom:437.115000px;}
.y4a{bottom:441.975000px;}
.y1b{bottom:443.415000px;}
.y6b{bottom:445.575000px;}
.y95{bottom:451.155000px;}
.yd4{bottom:455.655000px;}
.y49{bottom:459.615000px;}
.y1a{bottom:460.875000px;}
.yec{bottom:463.755000px;}
.y48{bottom:478.155000px;}
.y19{bottom:478.515000px;}
.y6a{bottom:481.035000px;}
.y89{bottom:485.175000px;}
.y47{bottom:495.615000px;}
.y18{bottom:496.155000px;}
.y69{bottom:498.675000px;}
.yeb{bottom:499.395000px;}
.yaf{bottom:505.155000px;}
.y17{bottom:513.615000px;}
.y68{bottom:516.315000px;}
.yea{bottom:517.035000px;}
.y113{bottom:517.935000px;}
.yae{bottom:522.795000px;}
.y88{bottom:523.155000px;}
.y46{bottom:523.335000px;}
.y16{bottom:531.255000px;}
.y67{bottom:533.775000px;}
.ye9{bottom:534.495000px;}
.y112{bottom:535.575000px;}
.yad{bottom:540.435000px;}
.y87{bottom:540.795000px;}
.y15{bottom:548.895000px;}
.y66{bottom:551.415000px;}
.ye8{bottom:552.135000px;}
.yac{bottom:558.075000px;}
.y86{bottom:558.435000px;}
.y45{bottom:560.415000px;}
.y111{bottom:562.215000px;}
.ye7{bottom:569.775000px;}
.y14{bottom:575.715000px;}
.y44{bottom:578.055000px;}
.ye6{bottom:587.265000px;}
.y110{bottom:588.885000px;}
.yab{bottom:593.205000px;}
.y85{bottom:594.105000px;}
.y43{bottom:604.905000px;}
.y10f{bottom:606.525000px;}
.yaa{bottom:608.145000px;}
.y65{bottom:613.545000px;}
.ye5{bottom:622.545000px;}
.y13{bottom:623.985000px;}
.y84{bottom:626.145000px;}
.y64{bottom:631.185000px;}
.y10e{bottom:632.985000px;}
.ya9{bottom:635.505000px;}
.ye4{bottom:640.005000px;}
.y42{bottom:641.985000px;}
.y63{bottom:648.825000px;}
.ye3{bottom:657.645000px;}
.y10d{bottom:659.625000px;}
.y12{bottom:659.805000px;}
.ya8{bottom:662.865000px;}
.y41{bottom:668.805000px;}
.y62{bottom:684.285000px;}
.y10c{bottom:686.085000px;}
.ya7{bottom:690.225000px;}
.y11{bottom:695.805000px;}
.y61{bottom:701.925000px;}
.y10b{bottom:703.725000px;}
.ybe{bottom:704.085000px;}
.y40{bottom:705.885000px;}
.ya5{bottom:717.585000px;}
.y94{bottom:717.945000px;}
.y60{bottom:719.565000px;}
.ye2{bottom:720.105000px;}
.y10a{bottom:721.365000px;}
.y3f{bottom:723.345000px;}
.y10{bottom:735.585000px;}
.y5f{bottom:737.205000px;}
.yd3{bottom:738.105000px;}
.y109{bottom:739.005000px;}
.ybd{bottom:739.545000px;}
.y3e{bottom:741.885000px;}
.ya3{bottom:744.765000px;}
.yf{bottom:749.805000px;}
.y93{bottom:753.045000px;}
.y5e{bottom:754.665000px;}
.yd2{bottom:755.745000px;}
.ybc{bottom:757.185000px;}
.y3d{bottom:759.345000px;}
.y108{bottom:765.465000px;}
.ye1{bottom:768.345000px;}
.y92{bottom:770.685000px;}
.ye{bottom:771.585000px;}
.yd1{bottom:773.385000px;}
.ybb{bottom:774.825000px;}
.y5d{bottom:781.305000px;}
.y107{bottom:783.105000px;}
.ye0{bottom:785.985000px;}
.y3c{bottom:786.885000px;}
.yd{bottom:789.585000px;}
.yd0{bottom:791.025000px;}
.yba{bottom:792.285000px;}
.ya2{bottom:793.545000px;}
.y106{bottom:800.745000px;}
.ydf{bottom:803.625000px;}
.yc{bottom:803.805000px;}
.y91{bottom:806.145000px;}
.ycf{bottom:808.485000px;}
.yb9{bottom:809.925000px;}
.y5c{bottom:816.945000px;}
.yde{bottom:821.265000px;}
.y3b{bottom:822.525000px;}
.yb{bottom:825.585000px;}
.y105{bottom:827.565000px;}
.ya1{bottom:829.185000px;}
.y5b{bottom:834.585000px;}
.y90{bottom:838.365000px;}
.ya{bottom:839.805000px;}
.yce{bottom:844.125000px;}
.yb8{bottom:845.385000px;}
.ya0{bottom:846.825000px;}
.y3a{bottom:848.985000px;}
.ydd{bottom:856.725000px;}
.y5a{bottom:861.090000px;}
.y9{bottom:861.630000px;}
.y9f{bottom:864.330000px;}
.y8{bottom:875.850000px;}
.ycd{bottom:876.390000px;}
.yb7{bottom:877.650000px;}
.y9e{bottom:881.970000px;}
.y39{bottom:884.670000px;}
.ydc{bottom:888.990000px;}
.y59{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y104{bottom:902.850000px;}
.y38{bottom:911.310000px;}
.y9d{bottom:917.430000px;}
.y58{bottom:929.310000px;}
.y6{bottom:930.030000px;}
.y103{bottom:939.750000px;}
.y83{bottom:946.050000px;}
.y37{bottom:946.770000px;}
.y57{bottom:946.950000px;}
.y5{bottom:949.290000px;}
.y9c{bottom:949.650000px;}
.y102{bottom:957.390000px;}
.y82{bottom:963.690000px;}
.y36{bottom:964.410000px;}
.y101{bottom:975.030000px;}
.y81{bottom:981.150000px;}
.y35{bottom:982.050000px;}
.y4{bottom:987.630000px;}
.y100{bottom:992.670000px;}
.y80{bottom:998.790000px;}
.y34{bottom:999.690000px;}
.yff{bottom:1010.130000px;}
.y3{bottom:1012.290000px;}
.y7f{bottom:1016.430000px;}
.y33{bottom:1017.150000px;}
.y7e{bottom:1034.070000px;}
.y32{bottom:1034.790000px;}
.yfe{bottom:1037.130000px;}
.y31{bottom:1052.430000px;}
.y7d{bottom:1060.530000px;}
.y30{bottom:1070.070000px;}
.yfd{bottom:1074.390000px;}
.y8f{bottom:1087.170000px;}
.y2f{bottom:1087.530000px;}
.y7c{bottom:1096.170000px;}
.y2e{bottom:1105.170000px;}
.y7b{bottom:1113.810000px;}
.y8e{bottom:1122.630000px;}
.y2d{bottom:1122.810000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h12{height:26.460000px;}
.h10{height:26.640000px;}
.h2{height:29.717578px;}
.h8{height:36.698203px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h11{height:50.597578px;}
.h7{height:51.998203px;}
.h9{height:56.084062px;}
.h5{height:57.636562px;}
.he{height:59.614102px;}
.ha{height:60.960938px;}
.hc{height:61.423863px;}
.hb{height:62.211094px;}
.hd{height:68.956875px;}
.h4{height:73.298672px;}
.hf{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:63.000000px;}
.w4{width:75.096000px;}
.w3{width:102.960000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.x1e{left:111.275987px;}
.x5{left:122.075987px;}
.x1b{left:154.829987px;}
.x15{left:163.289987px;}
.x17{left:164.549987px;}
.x1d{left:197.129987px;}
.xd{left:198.749987px;}
.x2{left:210.989987px;}
.xb{left:223.589987px;}
.xf{left:228.089987px;}
.x7{left:294.194987px;}
.x19{left:321.554987px;}
.x10{left:325.335000px;}
.x9{left:348.014987px;}
.x12{left:429.195000px;}
.x13{left:505.005000px;}
.x6{left:660.389987px;}
.x8{left:661.469987px;}
.xe{left:667.229987px;}
.x14{left:678.389987px;}
.xa{left:679.469987px;}
.xc{left:690.809987px;}
.x1a{left:695.309987px;}
.x1c{left:699.809987px;}
.x16{left:700.889987px;}
.x18{left:706.469987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.092267pt;}
.ls10{letter-spacing:-0.086933pt;}
.ls8{letter-spacing:-0.084267pt;}
.ls14{letter-spacing:-0.041600pt;}
.ls13{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls11{letter-spacing:0.034560pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.188160pt;}
.ls15{letter-spacing:0.284267pt;}
.ls1{letter-spacing:0.312320pt;}
.lsb{letter-spacing:0.342933pt;}
.lse{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:56.912640pt;}
.ls12{letter-spacing:72.272640pt;}
.wsc{word-spacing:-53.120000pt;}
.wsd{word-spacing:-13.296533pt;}
.ws9{word-spacing:-12.953600pt;}
.ws11{word-spacing:-11.970667pt;}
.wse{word-spacing:-11.720960pt;}
.ws6{word-spacing:-11.698133pt;}
.wsb{word-spacing:-11.697920pt;}
.ws7{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.654400pt;}
.ws10{word-spacing:-11.644800pt;}
.ws5{word-spacing:-11.594133pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws4{word-spacing:-8.166400pt;}
.ws3{word-spacing:-8.082133pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:2.268480pt;}
._2{margin-left:-3.145035pt;}
._3{margin-left:-2.245876pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.890667pt;}
._6{width:2.181973pt;}
._5{width:3.595093pt;}
._7{width:5.127573pt;}
._d{width:6.533760pt;}
._4{width:7.513600pt;}
._8{width:8.711468pt;}
._9{width:9.614932pt;}
._a{width:10.672537pt;}
._e{width:13.439360pt;}
._b{width:15.564266pt;}
._c{width:16.532800pt;}
._10{width:18.698240pt;}
._f{width:19.707520pt;}
._13{width:35.324800pt;}
._14{width:45.270613pt;}
._15{width:76.929920pt;}
._12{width:115.164160pt;}
._11{width:116.067200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:6.880000pt;}
.ya4{bottom:7.040000pt;}
.y2{bottom:65.152000pt;}
.y2b{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.yb6{bottom:105.312000pt;}
.y56{bottom:114.112000pt;}
.ycc{bottom:114.912000pt;}
.yfc{bottom:118.592000pt;}
.y7a{bottom:121.632000pt;}
.y29{bottom:122.112000pt;}
.y8d{bottom:125.792000pt;}
.y55{bottom:129.792000pt;}
.ycb{bottom:130.592000pt;}
.yfb{bottom:134.106667pt;}
.yb5{bottom:136.986667pt;}
.y28{bottom:137.786667pt;}
.y8c{bottom:141.466667pt;}
.y54{bottom:145.466667pt;}
.yca{bottom:146.106667pt;}
.yfa{bottom:149.786667pt;}
.yb4{bottom:152.666667pt;}
.y79{bottom:153.146667pt;}
.y27{bottom:153.306667pt;}
.yc9{bottom:161.786667pt;}
.yf9{bottom:165.466667pt;}
.yb3{bottom:168.186667pt;}
.y78{bottom:168.826667pt;}
.y26{bottom:168.986667pt;}
.y8b{bottom:172.986667pt;}
.yc8{bottom:177.466667pt;}
.yf8{bottom:181.146667pt;}
.yb2{bottom:183.866667pt;}
.y77{bottom:184.346667pt;}
.y25{bottom:184.666667pt;}
.yc7{bottom:192.986667pt;}
.yf7{bottom:196.666667pt;}
.y76{bottom:200.026667pt;}
.y24{bottom:200.186667pt;}
.y53{bottom:200.666667pt;}
.y8a{bottom:201.626667pt;}
.yc6{bottom:208.666667pt;}
.yf6{bottom:212.346667pt;}
.yb1{bottom:215.386667pt;}
.y75{bottom:215.706667pt;}
.y23{bottom:215.866667pt;}
.y52{bottom:216.346667pt;}
.yc5{bottom:224.346667pt;}
.yf5{bottom:228.026667pt;}
.y74{bottom:231.226667pt;}
.y22{bottom:231.546667pt;}
.y51{bottom:232.026667pt;}
.yc4{bottom:239.866667pt;}
.yf4{bottom:243.546667pt;}
.yb0{bottom:244.026667pt;}
.y73{bottom:246.906667pt;}
.y21{bottom:247.066667pt;}
.y50{bottom:247.546667pt;}
.yc3{bottom:255.546667pt;}
.yf3{bottom:259.226667pt;}
.y72{bottom:262.586667pt;}
.y20{bottom:262.746667pt;}
.y4f{bottom:263.226667pt;}
.ydb{bottom:266.586667pt;}
.yc2{bottom:271.226667pt;}
.yf2{bottom:274.946667pt;}
.y71{bottom:278.146667pt;}
.y9b{bottom:278.306667pt;}
.y4e{bottom:278.946667pt;}
.yda{bottom:282.306667pt;}
.y1f{bottom:286.626667pt;}
.yc1{bottom:286.946667pt;}
.y9a{bottom:293.986667pt;}
.y4d{bottom:294.466667pt;}
.yd9{bottom:297.986667pt;}
.yf1{bottom:298.626667pt;}
.y70{bottom:301.826667pt;}
.yc0{bottom:302.466667pt;}
.y99{bottom:309.666667pt;}
.yd8{bottom:313.666667pt;}
.y4c{bottom:318.146667pt;}
.y98{bottom:325.186667pt;}
.yd7{bottom:329.186667pt;}
.y1e{bottom:329.826667pt;}
.y6f{bottom:333.506667pt;}
.ybf{bottom:334.146667pt;}
.y97{bottom:340.866667pt;}
.yf0{bottom:341.666667pt;}
.yd6{bottom:344.866667pt;}
.y6e{bottom:349.186667pt;}
.y4b{bottom:349.986667pt;}
.yef{bottom:357.346667pt;}
.y1d{bottom:362.786667pt;}
.y6d{bottom:364.706667pt;}
.y96{bottom:372.386667pt;}
.yee{bottom:373.026667pt;}
.yd5{bottom:376.386667pt;}
.y1c{bottom:378.466667pt;}
.y6c{bottom:380.386667pt;}
.yed{bottom:388.546667pt;}
.y4a{bottom:392.866667pt;}
.y1b{bottom:394.146667pt;}
.y6b{bottom:396.066667pt;}
.y95{bottom:401.026667pt;}
.yd4{bottom:405.026667pt;}
.y49{bottom:408.546667pt;}
.y1a{bottom:409.666667pt;}
.yec{bottom:412.226667pt;}
.y48{bottom:425.026667pt;}
.y19{bottom:425.346667pt;}
.y6a{bottom:427.586667pt;}
.y89{bottom:431.266667pt;}
.y47{bottom:440.546667pt;}
.y18{bottom:441.026667pt;}
.y69{bottom:443.266667pt;}
.yeb{bottom:443.906667pt;}
.yaf{bottom:449.026667pt;}
.y17{bottom:456.546667pt;}
.y68{bottom:458.946667pt;}
.yea{bottom:459.586667pt;}
.y113{bottom:460.386667pt;}
.yae{bottom:464.706667pt;}
.y88{bottom:465.026667pt;}
.y46{bottom:465.186667pt;}
.y16{bottom:472.226667pt;}
.y67{bottom:474.466667pt;}
.ye9{bottom:475.106667pt;}
.y112{bottom:476.066667pt;}
.yad{bottom:480.386667pt;}
.y87{bottom:480.706667pt;}
.y15{bottom:487.906667pt;}
.y66{bottom:490.146667pt;}
.ye8{bottom:490.786667pt;}
.yac{bottom:496.066667pt;}
.y86{bottom:496.386667pt;}
.y45{bottom:498.146667pt;}
.y111{bottom:499.746667pt;}
.ye7{bottom:506.466667pt;}
.y14{bottom:511.746667pt;}
.y44{bottom:513.826667pt;}
.ye6{bottom:522.013333pt;}
.y110{bottom:523.453333pt;}
.yab{bottom:527.293333pt;}
.y85{bottom:528.093333pt;}
.y43{bottom:537.693333pt;}
.y10f{bottom:539.133333pt;}
.yaa{bottom:540.573333pt;}
.y65{bottom:545.373333pt;}
.ye5{bottom:553.373333pt;}
.y13{bottom:554.653333pt;}
.y84{bottom:556.573333pt;}
.y64{bottom:561.053333pt;}
.y10e{bottom:562.653333pt;}
.ya9{bottom:564.893333pt;}
.ye4{bottom:568.893333pt;}
.y42{bottom:570.653333pt;}
.y63{bottom:576.733333pt;}
.ye3{bottom:584.573333pt;}
.y10d{bottom:586.333333pt;}
.y12{bottom:586.493333pt;}
.ya8{bottom:589.213333pt;}
.y41{bottom:594.493333pt;}
.y62{bottom:608.253333pt;}
.y10c{bottom:609.853333pt;}
.ya7{bottom:613.533333pt;}
.y11{bottom:618.493333pt;}
.y61{bottom:623.933333pt;}
.y10b{bottom:625.533333pt;}
.ybe{bottom:625.853333pt;}
.y40{bottom:627.453333pt;}
.ya5{bottom:637.853333pt;}
.y94{bottom:638.173333pt;}
.y60{bottom:639.613333pt;}
.ye2{bottom:640.093333pt;}
.y10a{bottom:641.213333pt;}
.y3f{bottom:642.973333pt;}
.y10{bottom:653.853333pt;}
.y5f{bottom:655.293333pt;}
.yd3{bottom:656.093333pt;}
.y109{bottom:656.893333pt;}
.ybd{bottom:657.373333pt;}
.y3e{bottom:659.453333pt;}
.ya3{bottom:662.013333pt;}
.yf{bottom:666.493333pt;}
.y93{bottom:669.373333pt;}
.y5e{bottom:670.813333pt;}
.yd2{bottom:671.773333pt;}
.ybc{bottom:673.053333pt;}
.y3d{bottom:674.973333pt;}
.y108{bottom:680.413333pt;}
.ye1{bottom:682.973333pt;}
.y92{bottom:685.053333pt;}
.ye{bottom:685.853333pt;}
.yd1{bottom:687.453333pt;}
.ybb{bottom:688.733333pt;}
.y5d{bottom:694.493333pt;}
.y107{bottom:696.093333pt;}
.ye0{bottom:698.653333pt;}
.y3c{bottom:699.453333pt;}
.yd{bottom:701.853333pt;}
.yd0{bottom:703.133333pt;}
.yba{bottom:704.253333pt;}
.ya2{bottom:705.373333pt;}
.y106{bottom:711.773333pt;}
.ydf{bottom:714.333333pt;}
.yc{bottom:714.493333pt;}
.y91{bottom:716.573333pt;}
.ycf{bottom:718.653333pt;}
.yb9{bottom:719.933333pt;}
.y5c{bottom:726.173333pt;}
.yde{bottom:730.013333pt;}
.y3b{bottom:731.133333pt;}
.yb{bottom:733.853333pt;}
.y105{bottom:735.613333pt;}
.ya1{bottom:737.053333pt;}
.y5b{bottom:741.853333pt;}
.y90{bottom:745.213333pt;}
.ya{bottom:746.493333pt;}
.yce{bottom:750.333333pt;}
.yb8{bottom:751.453333pt;}
.ya0{bottom:752.733333pt;}
.y3a{bottom:754.653333pt;}
.ydd{bottom:761.533333pt;}
.y5a{bottom:765.413333pt;}
.y9{bottom:765.893333pt;}
.y9f{bottom:768.293333pt;}
.y8{bottom:778.533333pt;}
.ycd{bottom:779.013333pt;}
.yb7{bottom:780.133333pt;}
.y9e{bottom:783.973333pt;}
.y39{bottom:786.373333pt;}
.ydc{bottom:790.213333pt;}
.y59{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y104{bottom:802.533333pt;}
.y38{bottom:810.053333pt;}
.y9d{bottom:815.493333pt;}
.y58{bottom:826.053333pt;}
.y6{bottom:826.693333pt;}
.y103{bottom:835.333333pt;}
.y83{bottom:840.933333pt;}
.y37{bottom:841.573333pt;}
.y57{bottom:841.733333pt;}
.y5{bottom:843.813333pt;}
.y9c{bottom:844.133333pt;}
.y102{bottom:851.013333pt;}
.y82{bottom:856.613333pt;}
.y36{bottom:857.253333pt;}
.y101{bottom:866.693333pt;}
.y81{bottom:872.133333pt;}
.y35{bottom:872.933333pt;}
.y4{bottom:877.893333pt;}
.y100{bottom:882.373333pt;}
.y80{bottom:887.813333pt;}
.y34{bottom:888.613333pt;}
.yff{bottom:897.893333pt;}
.y3{bottom:899.813333pt;}
.y7f{bottom:903.493333pt;}
.y33{bottom:904.133333pt;}
.y7e{bottom:919.173333pt;}
.y32{bottom:919.813333pt;}
.yfe{bottom:921.893333pt;}
.y31{bottom:935.493333pt;}
.y7d{bottom:942.693333pt;}
.y30{bottom:951.173333pt;}
.yfd{bottom:955.013333pt;}
.y8f{bottom:966.373333pt;}
.y2f{bottom:966.693333pt;}
.y7c{bottom:974.373333pt;}
.y2e{bottom:982.373333pt;}
.y7b{bottom:990.053333pt;}
.y8e{bottom:997.893333pt;}
.y2d{bottom:998.053333pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h12{height:23.520000pt;}
.h10{height:23.680000pt;}
.h2{height:26.415625pt;}
.h8{height:32.620625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h11{height:44.975625pt;}
.h7{height:46.220625pt;}
.h9{height:49.852500pt;}
.h5{height:51.232500pt;}
.he{height:52.990313pt;}
.ha{height:54.187500pt;}
.hc{height:54.598989pt;}
.hb{height:55.298750pt;}
.hd{height:61.295000pt;}
.h4{height:65.154375pt;}
.hf{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:56.000000pt;}
.w4{width:66.752000pt;}
.w3{width:91.520000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.x1e{left:98.911988pt;}
.x5{left:108.511988pt;}
.x1b{left:137.626655pt;}
.x15{left:145.146655pt;}
.x17{left:146.266655pt;}
.x1d{left:175.226655pt;}
.xd{left:176.666655pt;}
.x2{left:187.546655pt;}
.xb{left:198.746655pt;}
.xf{left:202.746655pt;}
.x7{left:261.506655pt;}
.x19{left:285.826655pt;}
.x10{left:289.186667pt;}
.x9{left:309.346655pt;}
.x12{left:381.506667pt;}
.x13{left:448.893333pt;}
.x6{left:587.013322pt;}
.x8{left:587.973322pt;}
.xe{left:593.093322pt;}
.x14{left:603.013322pt;}
.xa{left:603.973322pt;}
.xc{left:614.053322pt;}
.x1a{left:618.053322pt;}
.x1c{left:622.053322pt;}
.x16{left:623.013322pt;}
.x18{left:627.973322pt;}
.x3{left:711.493322pt;}
}




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