
    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_82875c8e3ac11bc8efd8981e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_09f31095f0c84e146aa97d88.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_8645c65429aacdaf3d696e68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_62172b85198b20095993c74a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_abeef3b7efb8dc15c7a6c333.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws7{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws61{word-spacing:-38.863800px;}
.ws4{word-spacing:-38.783700px;}
.ws5{word-spacing:-38.657400px;}
.ws10{word-spacing:-38.655000px;}
.ws5a{word-spacing:-38.631600px;}
.ws3{word-spacing:-38.580300px;}
.ws59{word-spacing:-38.437800px;}
.ws6{word-spacing:-38.431800px;}
.ws60{word-spacing:-38.428200px;}
.ws1b{word-spacing:-38.296500px;}
.wsc{word-spacing:-38.166000px;}
.ws25{word-spacing:-38.156400px;}
.ws1d{word-spacing:-38.154600px;}
.ws17{word-spacing:-38.074500px;}
.ws62{word-spacing:-37.944000px;}
.ws1f{word-spacing:-37.935000px;}
.ws65{word-spacing:-37.929600px;}
.ws56{word-spacing:-37.717200px;}
.ws23{word-spacing:-37.704600px;}
.ws19{word-spacing:-37.584000px;}
.ws28{word-spacing:-37.224000px;}
.ws1c{word-spacing:-36.716400px;}
.ws22{word-spacing:-36.500400px;}
.ws46{word-spacing:-35.772300px;}
.ws3c{word-spacing:-35.769000px;}
.ws51{word-spacing:-34.560000px;}
.ws29{word-spacing:-34.553700px;}
.ws4a{word-spacing:-34.335000px;}
.ws34{word-spacing:-33.813000px;}
.ws40{word-spacing:-33.607800px;}
.ws2{word-spacing:-33.547800px;}
.ws2c{word-spacing:-33.120000px;}
.ws4c{word-spacing:-32.894700px;}
.ws42{word-spacing:-32.175000px;}
.ws3b{word-spacing:-31.680000px;}
.ws66{word-spacing:-30.956400px;}
.ws2a{word-spacing:-30.737400px;}
.wsb{word-spacing:-30.735000px;}
.ws26{word-spacing:-30.231900px;}
.ws27{word-spacing:-30.024000px;}
.ws20{word-spacing:-30.007800px;}
.ws44{word-spacing:-29.800800px;}
.ws52{word-spacing:-29.295000px;}
.ws1e{word-spacing:-29.287800px;}
.ws55{word-spacing:-29.277600px;}
.ws32{word-spacing:-28.789200px;}
.ws50{word-spacing:-28.575000px;}
.ws53{word-spacing:-27.856500px;}
.ws2f{word-spacing:-27.139200px;}
.ws47{word-spacing:-27.135000px;}
.wsa{word-spacing:-27.128700px;}
.ws45{word-spacing:-26.622000px;}
.wsf{word-spacing:-26.415000px;}
.ws58{word-spacing:-26.408700px;}
.ws4d{word-spacing:-24.979200px;}
.ws13{word-spacing:-24.909000px;}
.ws49{word-spacing:-24.480000px;}
.ws2d{word-spacing:-24.247800px;}
.ws2b{word-spacing:-23.544000px;}
.wsd{word-spacing:-22.595400px;}
.ws39{word-spacing:-21.371400px;}
.ws64{word-spacing:-19.224000px;}
.ws2e{word-spacing:-18.269700px;}
.ws30{word-spacing:-18.259200px;}
.ws24{word-spacing:-17.997300px;}
.ws54{word-spacing:-17.773200px;}
.ws21{word-spacing:-15.613200px;}
.ws43{word-spacing:-14.891400px;}
.ws3f{word-spacing:-14.877600px;}
.wse{word-spacing:-14.670000px;}
.ws11{word-spacing:-14.622000px;}
.ws5f{word-spacing:-14.400000px;}
.ws41{word-spacing:-14.181000px;}
.ws15{word-spacing:-13.673700px;}
.ws4b{word-spacing:-12.731400px;}
.ws1a{word-spacing:-10.069200px;}
.ws5b{word-spacing:-9.135000px;}
.ws38{word-spacing:-8.412300px;}
.ws37{word-spacing:-7.180200px;}
.ws16{word-spacing:-5.044200px;}
.ws3e{word-spacing:-4.799100px;}
.ws57{word-spacing:-3.874800px;}
.ws9{word-spacing:-0.491400px;}
.ws0{word-spacing:0.000000px;}
.ws33{word-spacing:1.890600px;}
.ws36{word-spacing:2.887200px;}
.ws63{word-spacing:3.816000px;}
.ws48{word-spacing:4.328100px;}
.ws5e{word-spacing:5.768400px;}
.ws8{word-spacing:5.769000px;}
.ws18{word-spacing:7.783200px;}
.ws5d{word-spacing:8.634000px;}
.ws5c{word-spacing:13.909500px;}
.ws3d{word-spacing:15.854400px;}
.ws3a{word-spacing:27.372000px;}
.ws35{word-spacing:28.094400px;}
.ws12{word-spacing:74.387700px;}
.ws14{word-spacing:79.220400px;}
.ws4f{word-spacing:288.008100px;}
.ws31{word-spacing:574.785000px;}
.ws4e{word-spacing:2222.351400px;}
._4{margin-left:-2.212800px;}
._3{margin-left:-1.206600px;}
._1{width:1.894200px;}
._2b{width:16.675800px;}
._2{width:18.584700px;}
._12{width:20.263800px;}
._20{width:21.333000px;}
._0{width:22.505400px;}
._16{width:23.848800px;}
._13{width:25.111200px;}
._9{width:26.798400px;}
._19{width:28.274400px;}
._8{width:29.936700px;}
._c{width:31.899000px;}
._17{width:33.390000px;}
._a{width:34.903200px;}
._1e{width:35.915400px;}
._2c{width:37.760400px;}
._15{width:39.020400px;}
._b{width:40.158600px;}
._14{width:42.033000px;}
._f{width:43.394400px;}
._25{width:44.447400px;}
._24{width:45.869400px;}
._11{width:47.221200px;}
._1c{width:49.058400px;}
._1d{width:50.382600px;}
._10{width:51.948600px;}
._29{width:54.048600px;}
._7{width:56.939400px;}
._1a{width:59.021400px;}
._23{width:61.399800px;}
._6{width:62.847000px;}
._5{width:63.867600px;}
._2a{width:71.050500px;}
._21{width:73.600200px;}
._1b{width:85.114200px;}
._d{width:132.589800px;}
._e{width:136.197600px;}
._1f{width:176.001000px;}
._22{width:208.908000px;}
._28{width:231.736200px;}
._27{width:314.532300px;}
._26{width:345.369900px;}
._18{width:632.079000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:32.475000px;}
.yce{bottom:90.436500px;}
.y82{bottom:97.636500px;}
.y55{bottom:103.396500px;}
.yc6{bottom:111.136500px;}
.y81{bottom:118.336500px;}
.y54{bottom:124.096500px;}
.yda{bottom:124.636500px;}
.y9c{bottom:126.075000px;}
.yc5{bottom:131.836500px;}
.y80{bottom:139.036500px;}
.y53{bottom:144.796500px;}
.y28{bottom:145.336500px;}
.y9b{bottom:146.775000px;}
.yc4{bottom:152.536500px;}
.y7f{bottom:159.736500px;}
.y52{bottom:165.496500px;}
.y27{bottom:166.036500px;}
.y9a{bottom:167.475000px;}
.yc3{bottom:173.236500px;}
.y7e{bottom:180.436500px;}
.yd9{bottom:180.975000px;}
.y51{bottom:186.196500px;}
.y99{bottom:188.175000px;}
.yc2{bottom:193.936500px;}
.y7d{bottom:201.136500px;}
.y50{bottom:206.896500px;}
.y98{bottom:208.875000px;}
.yc1{bottom:214.636500px;}
.yd8{bottom:216.615000px;}
.y7c{bottom:221.836500px;}
.y26{bottom:222.375000px;}
.y4f{bottom:227.415000px;}
.y97{bottom:229.575000px;}
.yc0{bottom:235.336500px;}
.yd7{bottom:237.315000px;}
.y7b{bottom:242.536500px;}
.y25{bottom:243.075000px;}
.y4e{bottom:248.115000px;}
.y96{bottom:250.275000px;}
.ybf{bottom:256.036500px;}
.y7a{bottom:263.236500px;}
.y24{bottom:263.775000px;}
.y4d{bottom:268.815000px;}
.y95{bottom:270.975000px;}
.yd6{bottom:273.136500px;}
.ybe{bottom:276.736500px;}
.y79{bottom:283.936500px;}
.y23{bottom:284.475000px;}
.y4c{bottom:289.515000px;}
.ycd{bottom:291.675000px;}
.ybd{bottom:297.436500px;}
.y78{bottom:304.636500px;}
.y94{bottom:306.615000px;}
.yd5{bottom:308.775000px;}
.y4b{bottom:310.215000px;}
.ycc{bottom:312.375000px;}
.y22{bottom:320.115000px;}
.y77{bottom:325.336500px;}
.y93{bottom:327.315000px;}
.y4a{bottom:330.915000px;}
.ybc{bottom:333.075000px;}
.y21{bottom:340.815000px;}
.yd4{bottom:344.415000px;}
.y76{bottom:346.036500px;}
.y92{bottom:348.015000px;}
.y49{bottom:351.615000px;}
.ybb{bottom:353.775000px;}
.y75{bottom:366.736500px;}
.y91{bottom:368.715000px;}
.y48{bottom:372.315000px;}
.yba{bottom:374.475000px;}
.y20{bottom:376.636500px;}
.yd3{bottom:380.236500px;}
.y74{bottom:387.436500px;}
.y47{bottom:393.015000px;}
.yb9{bottom:395.175000px;}
.y1f{bottom:397.336500px;}
.yd2{bottom:400.936500px;}
.y90{bottom:404.536500px;}
.y73{bottom:408.136500px;}
.ycb{bottom:410.115000px;}
.y46{bottom:413.715000px;}
.y8f{bottom:425.236500px;}
.y72{bottom:428.836500px;}
.yb8{bottom:430.815000px;}
.y45{bottom:434.415000px;}
.yd1{bottom:436.575000px;}
.y8e{bottom:445.936500px;}
.y71{bottom:449.536500px;}
.yb7{bottom:451.515000px;}
.y1e{bottom:453.675000px;}
.y44{bottom:455.115000px;}
.y8d{bottom:466.636500px;}
.y70{bottom:470.236500px;}
.yb6{bottom:472.215000px;}
.y1d{bottom:474.375000px;}
.y43{bottom:475.815000px;}
.y8c{bottom:487.336500px;}
.y6f{bottom:490.936500px;}
.yb5{bottom:492.915000px;}
.y42{bottom:496.515000px;}
.y8b{bottom:508.036500px;}
.y1c{bottom:510.015000px;}
.y6e{bottom:511.636500px;}
.yb4{bottom:513.615000px;}
.y41{bottom:517.215000px;}
.y8a{bottom:528.736500px;}
.y1b{bottom:530.715000px;}
.y6d{bottom:532.336500px;}
.yb3{bottom:534.315000px;}
.y40{bottom:537.915000px;}
.y89{bottom:549.436500px;}
.y6c{bottom:553.036500px;}
.yb2{bottom:555.015000px;}
.y3f{bottom:558.615000px;}
.y1a{bottom:566.536500px;}
.y88{bottom:570.136500px;}
.y6b{bottom:573.736500px;}
.yb1{bottom:575.715000px;}
.y3e{bottom:579.315000px;}
.y19{bottom:587.236500px;}
.y87{bottom:590.836500px;}
.y6a{bottom:594.436500px;}
.yb0{bottom:596.415000px;}
.y3d{bottom:600.015000px;}
.yd0{bottom:605.775000px;}
.y18{bottom:607.936500px;}
.yca{bottom:611.536500px;}
.y69{bottom:615.136500px;}
.yaf{bottom:617.115000px;}
.y3c{bottom:620.715000px;}
.y86{bottom:626.475000px;}
.y17{bottom:628.636500px;}
.yc9{bottom:632.236500px;}
.y68{bottom:635.836500px;}
.y3b{bottom:641.415000px;}
.y85{bottom:647.175000px;}
.y16{bottom:649.336500px;}
.yae{bottom:652.936500px;}
.y67{bottom:656.536500px;}
.y3a{bottom:662.115000px;}
.y84{bottom:667.875000px;}
.y15{bottom:670.036500px;}
.yad{bottom:673.636500px;}
.y66{bottom:677.236500px;}
.y39{bottom:682.815000px;}
.y83{bottom:688.575000px;}
.y14{bottom:690.736500px;}
.yac{bottom:694.336500px;}
.y65{bottom:697.936500px;}
.y38{bottom:703.515000px;}
.ycf{bottom:709.275000px;}
.yab{bottom:715.036500px;}
.y64{bottom:718.636500px;}
.y37{bottom:724.215000px;}
.yc8{bottom:729.975000px;}
.y63{bottom:739.336500px;}
.y36{bottom:744.915000px;}
.y13{bottom:747.075000px;}
.yaa{bottom:750.675000px;}
.y62{bottom:760.036500px;}
.y35{bottom:765.615000px;}
.y12{bottom:767.775000px;}
.ya9{bottom:771.375000px;}
.y61{bottom:780.736500px;}
.y34{bottom:786.315000px;}
.y11{bottom:788.475000px;}
.ya8{bottom:792.075000px;}
.y60{bottom:801.436500px;}
.y33{bottom:807.015000px;}
.y10{bottom:809.175000px;}
.ya7{bottom:812.775000px;}
.y5f{bottom:822.136500px;}
.y32{bottom:827.715000px;}
.yf{bottom:829.875000px;}
.ya6{bottom:833.475000px;}
.y5e{bottom:842.836500px;}
.y31{bottom:848.415000px;}
.ye{bottom:850.575000px;}
.ya5{bottom:854.175000px;}
.yde{bottom:856.336500px;}
.y5d{bottom:863.536500px;}
.yc7{bottom:869.115000px;}
.yd{bottom:871.275000px;}
.ya4{bottom:874.875000px;}
.y5c{bottom:884.236500px;}
.y30{bottom:889.815000px;}
.yc{bottom:891.975000px;}
.ya3{bottom:895.575000px;}
.y5b{bottom:904.936500px;}
.y2f{bottom:910.515000px;}
.yb{bottom:912.675000px;}
.ya2{bottom:916.275000px;}
.y5a{bottom:925.636500px;}
.ydd{bottom:927.615000px;}
.y2e{bottom:931.215000px;}
.ya1{bottom:936.975000px;}
.y59{bottom:946.336500px;}
.ya{bottom:948.315000px;}
.y2d{bottom:951.915000px;}
.ydc{bottom:963.436500px;}
.y58{bottom:967.036500px;}
.y2c{bottom:972.615000px;}
.y9{bottom:984.136500px;}
.y57{bottom:987.736500px;}
.ya0{bottom:993.315000px;}
.y2b{bottom:1008.436500px;}
.y9f{bottom:1014.015000px;}
.y8{bottom:1019.775000px;}
.y56{bottom:1029.136500px;}
.y9e{bottom:1034.715000px;}
.y2a{bottom:1049.836500px;}
.y9d{bottom:1055.415000px;}
.y29{bottom:1070.536500px;}
.ydb{bottom:1076.115000px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:44.189209px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w3{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.xa{left:132.120000px;}
.x5{left:172.080000px;}
.x6{left:216.360000px;}
.x8{left:369.360000px;}
.x9{left:408.420000px;}
.x3{left:515.880000px;}
.x7{left:550.080000px;}
.x2{left:604.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws61{word-spacing:-34.545600pt;}
.ws4{word-spacing:-34.474400pt;}
.ws5{word-spacing:-34.362133pt;}
.ws10{word-spacing:-34.360000pt;}
.ws5a{word-spacing:-34.339200pt;}
.ws3{word-spacing:-34.293600pt;}
.ws59{word-spacing:-34.166933pt;}
.ws6{word-spacing:-34.161600pt;}
.ws60{word-spacing:-34.158400pt;}
.ws1b{word-spacing:-34.041333pt;}
.wsc{word-spacing:-33.925333pt;}
.ws25{word-spacing:-33.916800pt;}
.ws1d{word-spacing:-33.915200pt;}
.ws17{word-spacing:-33.844000pt;}
.ws62{word-spacing:-33.728000pt;}
.ws1f{word-spacing:-33.720000pt;}
.ws65{word-spacing:-33.715200pt;}
.ws56{word-spacing:-33.526400pt;}
.ws23{word-spacing:-33.515200pt;}
.ws19{word-spacing:-33.408000pt;}
.ws28{word-spacing:-33.088000pt;}
.ws1c{word-spacing:-32.636800pt;}
.ws22{word-spacing:-32.444800pt;}
.ws46{word-spacing:-31.797600pt;}
.ws3c{word-spacing:-31.794667pt;}
.ws51{word-spacing:-30.720000pt;}
.ws29{word-spacing:-30.714400pt;}
.ws4a{word-spacing:-30.520000pt;}
.ws34{word-spacing:-30.056000pt;}
.ws40{word-spacing:-29.873600pt;}
.ws2{word-spacing:-29.820267pt;}
.ws2c{word-spacing:-29.440000pt;}
.ws4c{word-spacing:-29.239733pt;}
.ws42{word-spacing:-28.600000pt;}
.ws3b{word-spacing:-28.160000pt;}
.ws66{word-spacing:-27.516800pt;}
.ws2a{word-spacing:-27.322133pt;}
.wsb{word-spacing:-27.320000pt;}
.ws26{word-spacing:-26.872800pt;}
.ws27{word-spacing:-26.688000pt;}
.ws20{word-spacing:-26.673600pt;}
.ws44{word-spacing:-26.489600pt;}
.ws52{word-spacing:-26.040000pt;}
.ws1e{word-spacing:-26.033600pt;}
.ws55{word-spacing:-26.024533pt;}
.ws32{word-spacing:-25.590400pt;}
.ws50{word-spacing:-25.400000pt;}
.ws53{word-spacing:-24.761333pt;}
.ws2f{word-spacing:-24.123733pt;}
.ws47{word-spacing:-24.120000pt;}
.wsa{word-spacing:-24.114400pt;}
.ws45{word-spacing:-23.664000pt;}
.wsf{word-spacing:-23.480000pt;}
.ws58{word-spacing:-23.474400pt;}
.ws4d{word-spacing:-22.203733pt;}
.ws13{word-spacing:-22.141333pt;}
.ws49{word-spacing:-21.760000pt;}
.ws2d{word-spacing:-21.553600pt;}
.ws2b{word-spacing:-20.928000pt;}
.wsd{word-spacing:-20.084800pt;}
.ws39{word-spacing:-18.996800pt;}
.ws64{word-spacing:-17.088000pt;}
.ws2e{word-spacing:-16.239733pt;}
.ws30{word-spacing:-16.230400pt;}
.ws24{word-spacing:-15.997600pt;}
.ws54{word-spacing:-15.798400pt;}
.ws21{word-spacing:-13.878400pt;}
.ws43{word-spacing:-13.236800pt;}
.ws3f{word-spacing:-13.224533pt;}
.wse{word-spacing:-13.040000pt;}
.ws11{word-spacing:-12.997333pt;}
.ws5f{word-spacing:-12.800000pt;}
.ws41{word-spacing:-12.605333pt;}
.ws15{word-spacing:-12.154400pt;}
.ws4b{word-spacing:-11.316800pt;}
.ws1a{word-spacing:-8.950400pt;}
.ws5b{word-spacing:-8.120000pt;}
.ws38{word-spacing:-7.477600pt;}
.ws37{word-spacing:-6.382400pt;}
.ws16{word-spacing:-4.483733pt;}
.ws3e{word-spacing:-4.265867pt;}
.ws57{word-spacing:-3.444267pt;}
.ws9{word-spacing:-0.436800pt;}
.ws0{word-spacing:0.000000pt;}
.ws33{word-spacing:1.680533pt;}
.ws36{word-spacing:2.566400pt;}
.ws63{word-spacing:3.392000pt;}
.ws48{word-spacing:3.847200pt;}
.ws5e{word-spacing:5.127467pt;}
.ws8{word-spacing:5.128000pt;}
.ws18{word-spacing:6.918400pt;}
.ws5d{word-spacing:7.674667pt;}
.ws5c{word-spacing:12.364000pt;}
.ws3d{word-spacing:14.092800pt;}
.ws3a{word-spacing:24.330667pt;}
.ws35{word-spacing:24.972800pt;}
.ws12{word-spacing:66.122400pt;}
.ws14{word-spacing:70.418133pt;}
.ws4f{word-spacing:256.007200pt;}
.ws31{word-spacing:510.920000pt;}
.ws4e{word-spacing:1975.423467pt;}
._4{margin-left:-1.966933pt;}
._3{margin-left:-1.072533pt;}
._1{width:1.683733pt;}
._2b{width:14.822933pt;}
._2{width:16.519733pt;}
._12{width:18.012267pt;}
._20{width:18.962667pt;}
._0{width:20.004800pt;}
._16{width:21.198933pt;}
._13{width:22.321067pt;}
._9{width:23.820800pt;}
._19{width:25.132800pt;}
._8{width:26.610400pt;}
._c{width:28.354667pt;}
._17{width:29.680000pt;}
._a{width:31.025067pt;}
._1e{width:31.924800pt;}
._2c{width:33.564800pt;}
._15{width:34.684800pt;}
._b{width:35.696533pt;}
._14{width:37.362667pt;}
._f{width:38.572800pt;}
._25{width:39.508800pt;}
._24{width:40.772800pt;}
._11{width:41.974400pt;}
._1c{width:43.607467pt;}
._1d{width:44.784533pt;}
._10{width:46.176533pt;}
._29{width:48.043200pt;}
._7{width:50.612800pt;}
._1a{width:52.463467pt;}
._23{width:54.577600pt;}
._6{width:55.864000pt;}
._5{width:56.771200pt;}
._2a{width:63.156000pt;}
._21{width:65.422400pt;}
._1b{width:75.657067pt;}
._d{width:117.857600pt;}
._e{width:121.064533pt;}
._1f{width:156.445333pt;}
._22{width:185.696000pt;}
._28{width:205.987733pt;}
._27{width:279.584267pt;}
._26{width:306.995467pt;}
._18{width:561.848000pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:28.866667pt;}
.yce{bottom:80.388000pt;}
.y82{bottom:86.788000pt;}
.y55{bottom:91.908000pt;}
.yc6{bottom:98.788000pt;}
.y81{bottom:105.188000pt;}
.y54{bottom:110.308000pt;}
.yda{bottom:110.788000pt;}
.y9c{bottom:112.066667pt;}
.yc5{bottom:117.188000pt;}
.y80{bottom:123.588000pt;}
.y53{bottom:128.708000pt;}
.y28{bottom:129.188000pt;}
.y9b{bottom:130.466667pt;}
.yc4{bottom:135.588000pt;}
.y7f{bottom:141.988000pt;}
.y52{bottom:147.108000pt;}
.y27{bottom:147.588000pt;}
.y9a{bottom:148.866667pt;}
.yc3{bottom:153.988000pt;}
.y7e{bottom:160.388000pt;}
.yd9{bottom:160.866667pt;}
.y51{bottom:165.508000pt;}
.y99{bottom:167.266667pt;}
.yc2{bottom:172.388000pt;}
.y7d{bottom:178.788000pt;}
.y50{bottom:183.908000pt;}
.y98{bottom:185.666667pt;}
.yc1{bottom:190.788000pt;}
.yd8{bottom:192.546667pt;}
.y7c{bottom:197.188000pt;}
.y26{bottom:197.666667pt;}
.y4f{bottom:202.146667pt;}
.y97{bottom:204.066667pt;}
.yc0{bottom:209.188000pt;}
.yd7{bottom:210.946667pt;}
.y7b{bottom:215.588000pt;}
.y25{bottom:216.066667pt;}
.y4e{bottom:220.546667pt;}
.y96{bottom:222.466667pt;}
.ybf{bottom:227.588000pt;}
.y7a{bottom:233.988000pt;}
.y24{bottom:234.466667pt;}
.y4d{bottom:238.946667pt;}
.y95{bottom:240.866667pt;}
.yd6{bottom:242.788000pt;}
.ybe{bottom:245.988000pt;}
.y79{bottom:252.388000pt;}
.y23{bottom:252.866667pt;}
.y4c{bottom:257.346667pt;}
.ycd{bottom:259.266667pt;}
.ybd{bottom:264.388000pt;}
.y78{bottom:270.788000pt;}
.y94{bottom:272.546667pt;}
.yd5{bottom:274.466667pt;}
.y4b{bottom:275.746667pt;}
.ycc{bottom:277.666667pt;}
.y22{bottom:284.546667pt;}
.y77{bottom:289.188000pt;}
.y93{bottom:290.946667pt;}
.y4a{bottom:294.146667pt;}
.ybc{bottom:296.066667pt;}
.y21{bottom:302.946667pt;}
.yd4{bottom:306.146667pt;}
.y76{bottom:307.588000pt;}
.y92{bottom:309.346667pt;}
.y49{bottom:312.546667pt;}
.ybb{bottom:314.466667pt;}
.y75{bottom:325.988000pt;}
.y91{bottom:327.746667pt;}
.y48{bottom:330.946667pt;}
.yba{bottom:332.866667pt;}
.y20{bottom:334.788000pt;}
.yd3{bottom:337.988000pt;}
.y74{bottom:344.388000pt;}
.y47{bottom:349.346667pt;}
.yb9{bottom:351.266667pt;}
.y1f{bottom:353.188000pt;}
.yd2{bottom:356.388000pt;}
.y90{bottom:359.588000pt;}
.y73{bottom:362.788000pt;}
.ycb{bottom:364.546667pt;}
.y46{bottom:367.746667pt;}
.y8f{bottom:377.988000pt;}
.y72{bottom:381.188000pt;}
.yb8{bottom:382.946667pt;}
.y45{bottom:386.146667pt;}
.yd1{bottom:388.066667pt;}
.y8e{bottom:396.388000pt;}
.y71{bottom:399.588000pt;}
.yb7{bottom:401.346667pt;}
.y1e{bottom:403.266667pt;}
.y44{bottom:404.546667pt;}
.y8d{bottom:414.788000pt;}
.y70{bottom:417.988000pt;}
.yb6{bottom:419.746667pt;}
.y1d{bottom:421.666667pt;}
.y43{bottom:422.946667pt;}
.y8c{bottom:433.188000pt;}
.y6f{bottom:436.388000pt;}
.yb5{bottom:438.146667pt;}
.y42{bottom:441.346667pt;}
.y8b{bottom:451.588000pt;}
.y1c{bottom:453.346667pt;}
.y6e{bottom:454.788000pt;}
.yb4{bottom:456.546667pt;}
.y41{bottom:459.746667pt;}
.y8a{bottom:469.988000pt;}
.y1b{bottom:471.746667pt;}
.y6d{bottom:473.188000pt;}
.yb3{bottom:474.946667pt;}
.y40{bottom:478.146667pt;}
.y89{bottom:488.388000pt;}
.y6c{bottom:491.588000pt;}
.yb2{bottom:493.346667pt;}
.y3f{bottom:496.546667pt;}
.y1a{bottom:503.588000pt;}
.y88{bottom:506.788000pt;}
.y6b{bottom:509.988000pt;}
.yb1{bottom:511.746667pt;}
.y3e{bottom:514.946667pt;}
.y19{bottom:521.988000pt;}
.y87{bottom:525.188000pt;}
.y6a{bottom:528.388000pt;}
.yb0{bottom:530.146667pt;}
.y3d{bottom:533.346667pt;}
.yd0{bottom:538.466667pt;}
.y18{bottom:540.388000pt;}
.yca{bottom:543.588000pt;}
.y69{bottom:546.788000pt;}
.yaf{bottom:548.546667pt;}
.y3c{bottom:551.746667pt;}
.y86{bottom:556.866667pt;}
.y17{bottom:558.788000pt;}
.yc9{bottom:561.988000pt;}
.y68{bottom:565.188000pt;}
.y3b{bottom:570.146667pt;}
.y85{bottom:575.266667pt;}
.y16{bottom:577.188000pt;}
.yae{bottom:580.388000pt;}
.y67{bottom:583.588000pt;}
.y3a{bottom:588.546667pt;}
.y84{bottom:593.666667pt;}
.y15{bottom:595.588000pt;}
.yad{bottom:598.788000pt;}
.y66{bottom:601.988000pt;}
.y39{bottom:606.946667pt;}
.y83{bottom:612.066667pt;}
.y14{bottom:613.988000pt;}
.yac{bottom:617.188000pt;}
.y65{bottom:620.388000pt;}
.y38{bottom:625.346667pt;}
.ycf{bottom:630.466667pt;}
.yab{bottom:635.588000pt;}
.y64{bottom:638.788000pt;}
.y37{bottom:643.746667pt;}
.yc8{bottom:648.866667pt;}
.y63{bottom:657.188000pt;}
.y36{bottom:662.146667pt;}
.y13{bottom:664.066667pt;}
.yaa{bottom:667.266667pt;}
.y62{bottom:675.588000pt;}
.y35{bottom:680.546667pt;}
.y12{bottom:682.466667pt;}
.ya9{bottom:685.666667pt;}
.y61{bottom:693.988000pt;}
.y34{bottom:698.946667pt;}
.y11{bottom:700.866667pt;}
.ya8{bottom:704.066667pt;}
.y60{bottom:712.388000pt;}
.y33{bottom:717.346667pt;}
.y10{bottom:719.266667pt;}
.ya7{bottom:722.466667pt;}
.y5f{bottom:730.788000pt;}
.y32{bottom:735.746667pt;}
.yf{bottom:737.666667pt;}
.ya6{bottom:740.866667pt;}
.y5e{bottom:749.188000pt;}
.y31{bottom:754.146667pt;}
.ye{bottom:756.066667pt;}
.ya5{bottom:759.266667pt;}
.yde{bottom:761.188000pt;}
.y5d{bottom:767.588000pt;}
.yc7{bottom:772.546667pt;}
.yd{bottom:774.466667pt;}
.ya4{bottom:777.666667pt;}
.y5c{bottom:785.988000pt;}
.y30{bottom:790.946667pt;}
.yc{bottom:792.866667pt;}
.ya3{bottom:796.066667pt;}
.y5b{bottom:804.388000pt;}
.y2f{bottom:809.346667pt;}
.yb{bottom:811.266667pt;}
.ya2{bottom:814.466667pt;}
.y5a{bottom:822.788000pt;}
.ydd{bottom:824.546667pt;}
.y2e{bottom:827.746667pt;}
.ya1{bottom:832.866667pt;}
.y59{bottom:841.188000pt;}
.ya{bottom:842.946667pt;}
.y2d{bottom:846.146667pt;}
.ydc{bottom:856.388000pt;}
.y58{bottom:859.588000pt;}
.y2c{bottom:864.546667pt;}
.y9{bottom:874.788000pt;}
.y57{bottom:877.988000pt;}
.ya0{bottom:882.946667pt;}
.y2b{bottom:896.388000pt;}
.y9f{bottom:901.346667pt;}
.y8{bottom:906.466667pt;}
.y56{bottom:914.788000pt;}
.y9e{bottom:919.746667pt;}
.y2a{bottom:933.188000pt;}
.y9d{bottom:938.146667pt;}
.y29{bottom:951.588000pt;}
.ydb{bottom:956.546667pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:39.279297pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w3{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.xa{left:117.440000pt;}
.x5{left:152.960000pt;}
.x6{left:192.320000pt;}
.x8{left:328.320000pt;}
.x9{left:363.040000pt;}
.x3{left:458.560000pt;}
.x7{left:488.960000pt;}
.x2{left:537.440000pt;}
}




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