
    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_fe001c571922c50c2cac9886.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6bfe4be167d4dd722eaaad4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_5d9487beafc3ba7f0c9f5240.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_b76e5c05d8c099ba9188685e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_85c87e38b7631e8611a17580.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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;}
.m2{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-19.224000px;}
.ws1{word-spacing:-16.020000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:2384.320800px;}
._d{margin-left:-1388.165342px;}
._8{margin-left:-13.824000px;}
._a{margin-left:-11.520000px;}
._9{margin-left:-9.216000px;}
._b{margin-left:-7.836000px;}
._3{margin-left:-6.420000px;}
._0{margin-left:-4.440000px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-1.452000px;}
._4{width:1.200000px;}
._5{width:2.208000px;}
._c{width:3.552000px;}
._6{width:4.680000px;}
._e{width:1592.080800px;}
._7{width:1624.780800px;}
.fc1{color:rgb(60,60,61);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.078400px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.188234px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y101{bottom:102.513000px;}
.yae{bottom:105.469500px;}
.y57{bottom:109.879950px;}
.yd0{bottom:110.149500px;}
.y9d{bottom:112.309500px;}
.y7c{bottom:114.469500px;}
.yd8{bottom:117.378000px;}
.y35{bottom:119.835600px;}
.y11c{bottom:131.980500px;}
.yad{bottom:132.469500px;}
.yd7{bottom:136.803000px;}
.y56{bottom:136.879950px;}
.y100{bottom:138.738000px;}
.y34{bottom:139.260600px;}
.y1f{bottom:139.264499px;}
.y9c{bottom:139.309500px;}
.y7b{bottom:141.469500px;}
.ycf{bottom:153.655500px;}
.yd6{bottom:156.228000px;}
.yff{bottom:158.163000px;}
.y33{bottom:158.685600px;}
.yac{bottom:159.469500px;}
.y9b{bottom:166.309500px;}
.y7a{bottom:168.469500px;}
.y11b{bottom:169.021800px;}
.yfe{bottom:177.588000px;}
.y32{bottom:178.110600px;}
.y55{bottom:184.039950px;}
.yab{bottom:186.469500px;}
.yd5{bottom:192.496500px;}
.y79{bottom:195.469500px;}
.y16{bottom:196.933500px;}
.y31{bottom:197.535600px;}
.yce{bottom:202.309500px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y54{bottom:211.039950px;}
.y9a{bottom:213.469500px;}
.yfd{bottom:213.813000px;}
.y30{bottom:216.960600px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y78{bottom:222.469500px;}
.ycd{bottom:229.309500px;}
.yaa{bottom:229.975500px;}
.yfc{bottom:233.238000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y53{bottom:238.039950px;}
.y99{bottom:240.469500px;}
.y77{bottom:249.469500px;}
.ycc{bottom:256.309500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y52{bottom:265.039950px;}
.y98{bottom:267.469500px;}
.yfb{bottom:269.463000px;}
.yd3{bottom:269.629500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.ya9{bottom:275.821500px;}
.y76{bottom:276.469500px;}
.ycb{bottom:283.309500px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.yfa{bottom:288.888000px;}
.y51{bottom:292.039950px;}
.y97{bottom:294.469500px;}
.yd2{bottom:296.629500px;}
.yf9{bottom:308.313000px;}
.yca{bottom:310.309500px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y50{bottom:319.039950px;}
.y96{bottom:321.469500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y75{bottom:323.629500px;}
.ya8{bottom:332.629500px;}
.yc9{bottom:337.309500px;}
.yf8{bottom:344.538000px;}
.y4f{bottom:346.039950px;}
.yd{bottom:348.133500px;}
.y95{bottom:348.469500px;}
.y74{bottom:350.629500px;}
.ya7{bottom:359.629500px;}
.yf7{bottom:363.963000px;}
.yc8{bottom:364.309500px;}
.y11a{bottom:366.588000px;}
.y4e{bottom:373.039950px;}
.y94{bottom:375.469500px;}
.y73{bottom:377.629500px;}
.y119{bottom:386.013000px;}
.ya6{bottom:386.629500px;}
.yc{bottom:386.785499px;}
.yc7{bottom:391.309500px;}
.y4d{bottom:400.039950px;}
.yf6{bottom:400.188000px;}
.y93{bottom:402.469500px;}
.y72{bottom:404.629500px;}
.yb{bottom:408.044999px;}
.ya5{bottom:413.629500px;}
.yc6{bottom:418.309500px;}
.yf5{bottom:419.613000px;}
.y118{bottom:422.238000px;}
.y4c{bottom:427.039950px;}
.y92{bottom:429.469500px;}
.y71{bottom:431.629500px;}
.yf4{bottom:439.038000px;}
.ya4{bottom:440.629500px;}
.y117{bottom:441.663000px;}
.y4b{bottom:454.039950px;}
.y91{bottom:456.469500px;}
.y70{bottom:458.629500px;}
.y116{bottom:461.088000px;}
.yc5{bottom:465.469500px;}
.ya3{bottom:467.629500px;}
.yf3{bottom:475.263000px;}
.y4a{bottom:481.039950px;}
.y90{bottom:483.469500px;}
.y6f{bottom:485.629500px;}
.yc4{bottom:492.469500px;}
.ya2{bottom:494.629500px;}
.yf2{bottom:494.688000px;}
.y115{bottom:497.313000px;}
.y49{bottom:508.039950px;}
.y8f{bottom:510.469500px;}
.y6e{bottom:512.629500px;}
.y114{bottom:516.738000px;}
.yc3{bottom:519.469500px;}
.ya{bottom:520.864502px;}
.ya1{bottom:521.629500px;}
.yf1{bottom:530.913000px;}
.y48{bottom:535.039950px;}
.y113{bottom:536.163000px;}
.y9{bottom:538.864499px;}
.y6d{bottom:539.629500px;}
.yc2{bottom:546.469500px;}
.ya0{bottom:548.629500px;}
.yf0{bottom:550.338000px;}
.y8e{bottom:553.975500px;}
.y8{bottom:556.864499px;}
.y47{bottom:562.039950px;}
.y6c{bottom:566.629500px;}
.yef{bottom:569.763000px;}
.y112{bottom:572.388000px;}
.yc1{bottom:573.469500px;}
.y9f{bottom:575.629500px;}
.y46{bottom:589.039950px;}
.y111{bottom:591.813000px;}
.y6b{bottom:593.629500px;}
.yc0{bottom:600.469500px;}
.y8d{bottom:602.629500px;}
.yee{bottom:605.988000px;}
.y6a{bottom:620.629500px;}
.yed{bottom:625.413000px;}
.ybf{bottom:627.469500px;}
.y110{bottom:628.038000px;}
.y8c{bottom:629.629500px;}
.y45{bottom:633.391950px;}
.yec{bottom:644.838000px;}
.y7{bottom:645.510000px;}
.y10f{bottom:647.463000px;}
.y69{bottom:647.629500px;}
.ybe{bottom:654.469500px;}
.y8b{bottom:656.629500px;}
.y6{bottom:666.771000px;}
.y10e{bottom:666.888000px;}
.yd1{bottom:674.629500px;}
.y2f{bottom:674.803350px;}
.yeb{bottom:681.063000px;}
.y8a{bottom:683.629500px;}
.y44{bottom:690.199950px;}
.y68{bottom:691.981500px;}
.yea{bottom:700.488000px;}
.ybd{bottom:701.629500px;}
.y10d{bottom:703.113000px;}
.y2e{bottom:709.228350px;}
.y89{bottom:710.629500px;}
.y43{bottom:717.199950px;}
.ye9{bottom:719.913000px;}
.y10c{bottom:722.538000px;}
.y5{bottom:726.298500px;}
.ybc{bottom:728.629500px;}
.y2d{bottom:728.653350px;}
.y88{bottom:737.629500px;}
.y42{bottom:744.199950px;}
.yd4{bottom:745.981500px;}
.y67{bottom:748.789500px;}
.y3{bottom:752.599495px;}
.ybb{bottom:755.629500px;}
.ye8{bottom:756.138000px;}
.y10b{bottom:758.763000px;}
.y2c{bottom:763.078350px;}
.y87{bottom:764.629500px;}
.y41{bottom:771.199950px;}
.ye7{bottom:775.563000px;}
.y66{bottom:775.789500px;}
.y10a{bottom:778.188000px;}
.y2b{bottom:782.503350px;}
.yba{bottom:782.629500px;}
.y86{bottom:791.629500px;}
.ye6{bottom:794.988000px;}
.y40{bottom:798.199950px;}
.y2a{bottom:801.928350px;}
.y65{bottom:802.789500px;}
.yb9{bottom:809.629500px;}
.y109{bottom:814.413000px;}
.y85{bottom:818.629500px;}
.y29{bottom:821.353350px;}
.y3f{bottom:825.199950px;}
.y64{bottom:829.789500px;}
.ye5{bottom:831.213000px;}
.y108{bottom:833.838000px;}
.yb8{bottom:836.629500px;}
.y28{bottom:840.778350px;}
.y84{bottom:845.629500px;}
.ye4{bottom:850.638000px;}
.y3e{bottom:852.199950px;}
.y63{bottom:856.789500px;}
.y27{bottom:859.490850px;}
.yb7{bottom:863.629500px;}
.ye3{bottom:870.063000px;}
.y83{bottom:872.629500px;}
.y26{bottom:877.490850px;}
.y3d{bottom:879.199950px;}
.y2{bottom:879.369000px;}
.y62{bottom:883.789500px;}
.y9e{bottom:889.135500px;}
.y107{bottom:889.488000px;}
.yb6{bottom:890.629500px;}
.y82{bottom:899.629500px;}
.y3c{bottom:906.199950px;}
.ye2{bottom:906.288000px;}
.y106{bottom:908.913000px;}
.y61{bottom:910.789500px;}
.y25{bottom:911.203350px;}
.yb5{bottom:917.629500px;}
.ye1{bottom:925.713000px;}
.y81{bottom:926.629500px;}
.y24{bottom:930.628350px;}
.y3b{bottom:933.199950px;}
.y60{bottom:937.789500px;}
.yb4{bottom:944.629500px;}
.ye0{bottom:945.138000px;}
.y80{bottom:953.629500px;}
.y3a{bottom:960.199950px;}
.y105{bottom:964.563000px;}
.y5f{bottom:964.789500px;}
.y23{bottom:965.053350px;}
.y1{bottom:966.726000px;}
.yb3{bottom:971.629500px;}
.y7f{bottom:980.629500px;}
.ydf{bottom:981.363000px;}
.y5e{bottom:991.789500px;}
.yb2{bottom:998.629500px;}
.y22{bottom:1000.484850px;}
.yde{bottom:1000.788000px;}
.y39{bottom:1004.551950px;}
.y7e{bottom:1007.629500px;}
.y5d{bottom:1018.789500px;}
.y104{bottom:1020.213000px;}
.yb1{bottom:1025.629500px;}
.ydd{bottom:1037.013000px;}
.y21{bottom:1038.395850px;}
.y103{bottom:1039.638000px;}
.y5c{bottom:1045.789500px;}
.y7d{bottom:1051.135500px;}
.yb0{bottom:1052.629500px;}
.ydc{bottom:1056.438000px;}
.y5b{bottom:1072.789500px;}
.ydb{bottom:1075.863000px;}
.yaf{bottom:1079.629500px;}
.y20{bottom:1080.575850px;}
.y38{bottom:1084.658100px;}
.y102{bottom:1095.288000px;}
.y5a{bottom:1099.789500px;}
.y37{bottom:1104.083100px;}
.yda{bottom:1112.088000px;}
.y59{bottom:1126.789500px;}
.yd9{bottom:1131.513000px;}
.y36{bottom:1178.430300px;}
.y58{bottom:1194.375150px;}
.h12{height:29.624995px;}
.h7{height:32.130000px;}
.hf{height:42.720000px;}
.h10{height:43.142485px;}
.h6{height:45.900000px;}
.h9{height:46.680000px;}
.h3{height:48.195000px;}
.hb{height:51.408000px;}
.h2{height:55.080000px;}
.hd{height:56.016000px;}
.he{height:64.260000px;}
.hc{height:77.112000px;}
.h5{height:78.030000px;}
.ha{height:85.680000px;}
.h4{height:119.055004px;}
.h11{height:175.733400px;}
.h0{height:1262.833500px;}
.h8{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:637.495650px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:127.559100px;}
.x8{left:161.309100px;}
.x4{left:203.484001px;}
.x5{left:212.598450px;}
.xb{left:266.876700px;}
.x7{left:284.881950px;}
.x9{left:349.454100px;}
.xa{left:354.866700px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-17.088000pt;}
.ws1{word-spacing:-14.240000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:2119.396267pt;}
._d{margin-left:-1233.924749pt;}
._8{margin-left:-12.288000pt;}
._a{margin-left:-10.240000pt;}
._9{margin-left:-8.192000pt;}
._b{margin-left:-6.965333pt;}
._3{margin-left:-5.706667pt;}
._0{margin-left:-3.946667pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-1.290667pt;}
._4{width:1.066667pt;}
._5{width:1.962667pt;}
._c{width:3.157333pt;}
._6{width:4.160000pt;}
._e{width:1415.182933pt;}
._7{width:1444.249600pt;}
.fs9{font-size:33.847467pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.389541pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y101{bottom:91.122667pt;}
.yae{bottom:93.750667pt;}
.y57{bottom:97.671067pt;}
.yd0{bottom:97.910667pt;}
.y9d{bottom:99.830667pt;}
.y7c{bottom:101.750667pt;}
.yd8{bottom:104.336000pt;}
.y35{bottom:106.520533pt;}
.y11c{bottom:117.316000pt;}
.yad{bottom:117.750667pt;}
.yd7{bottom:121.602667pt;}
.y56{bottom:121.671067pt;}
.y100{bottom:123.322667pt;}
.y34{bottom:123.787200pt;}
.y1f{bottom:123.790666pt;}
.y9c{bottom:123.830667pt;}
.y7b{bottom:125.750667pt;}
.ycf{bottom:136.582667pt;}
.yd6{bottom:138.869333pt;}
.yff{bottom:140.589333pt;}
.y33{bottom:141.053867pt;}
.yac{bottom:141.750667pt;}
.y9b{bottom:147.830667pt;}
.y7a{bottom:149.750667pt;}
.y11b{bottom:150.241600pt;}
.yfe{bottom:157.856000pt;}
.y32{bottom:158.320533pt;}
.y55{bottom:163.591067pt;}
.yab{bottom:165.750667pt;}
.yd5{bottom:171.108000pt;}
.y79{bottom:173.750667pt;}
.y16{bottom:175.052000pt;}
.y31{bottom:175.587200pt;}
.yce{bottom:179.830667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y54{bottom:187.591067pt;}
.y9a{bottom:189.750667pt;}
.yfd{bottom:190.056000pt;}
.y30{bottom:192.853867pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y78{bottom:197.750667pt;}
.ycd{bottom:203.830667pt;}
.yaa{bottom:204.422667pt;}
.yfc{bottom:207.322667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y53{bottom:211.591067pt;}
.y99{bottom:213.750667pt;}
.y77{bottom:221.750667pt;}
.ycc{bottom:227.830667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y52{bottom:235.591067pt;}
.y98{bottom:237.750667pt;}
.yfb{bottom:239.522667pt;}
.yd3{bottom:239.670667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.ya9{bottom:245.174667pt;}
.y76{bottom:245.750667pt;}
.ycb{bottom:251.830667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.yfa{bottom:256.789333pt;}
.y51{bottom:259.591067pt;}
.y97{bottom:261.750667pt;}
.yd2{bottom:263.670667pt;}
.yf9{bottom:274.056000pt;}
.yca{bottom:275.830667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y50{bottom:283.591067pt;}
.y96{bottom:285.750667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y75{bottom:287.670667pt;}
.ya8{bottom:295.670667pt;}
.yc9{bottom:299.830667pt;}
.yf8{bottom:306.256000pt;}
.y4f{bottom:307.591067pt;}
.yd{bottom:309.452000pt;}
.y95{bottom:309.750667pt;}
.y74{bottom:311.670667pt;}
.ya7{bottom:319.670667pt;}
.yf7{bottom:323.522667pt;}
.yc8{bottom:323.830667pt;}
.y11a{bottom:325.856000pt;}
.y4e{bottom:331.591067pt;}
.y94{bottom:333.750667pt;}
.y73{bottom:335.670667pt;}
.y119{bottom:343.122667pt;}
.ya6{bottom:343.670667pt;}
.yc{bottom:343.809333pt;}
.yc7{bottom:347.830667pt;}
.y4d{bottom:355.591067pt;}
.yf6{bottom:355.722667pt;}
.y93{bottom:357.750667pt;}
.y72{bottom:359.670667pt;}
.yb{bottom:362.706666pt;}
.ya5{bottom:367.670667pt;}
.yc6{bottom:371.830667pt;}
.yf5{bottom:372.989333pt;}
.y118{bottom:375.322667pt;}
.y4c{bottom:379.591067pt;}
.y92{bottom:381.750667pt;}
.y71{bottom:383.670667pt;}
.yf4{bottom:390.256000pt;}
.ya4{bottom:391.670667pt;}
.y117{bottom:392.589333pt;}
.y4b{bottom:403.591067pt;}
.y91{bottom:405.750667pt;}
.y70{bottom:407.670667pt;}
.y116{bottom:409.856000pt;}
.yc5{bottom:413.750667pt;}
.ya3{bottom:415.670667pt;}
.yf3{bottom:422.456000pt;}
.y4a{bottom:427.591067pt;}
.y90{bottom:429.750667pt;}
.y6f{bottom:431.670667pt;}
.yc4{bottom:437.750667pt;}
.ya2{bottom:439.670667pt;}
.yf2{bottom:439.722667pt;}
.y115{bottom:442.056000pt;}
.y49{bottom:451.591067pt;}
.y8f{bottom:453.750667pt;}
.y6e{bottom:455.670667pt;}
.y114{bottom:459.322667pt;}
.yc3{bottom:461.750667pt;}
.ya{bottom:462.990669pt;}
.ya1{bottom:463.670667pt;}
.yf1{bottom:471.922667pt;}
.y48{bottom:475.591067pt;}
.y113{bottom:476.589333pt;}
.y9{bottom:478.990666pt;}
.y6d{bottom:479.670667pt;}
.yc2{bottom:485.750667pt;}
.ya0{bottom:487.670667pt;}
.yf0{bottom:489.189333pt;}
.y8e{bottom:492.422667pt;}
.y8{bottom:494.990666pt;}
.y47{bottom:499.591067pt;}
.y6c{bottom:503.670667pt;}
.yef{bottom:506.456000pt;}
.y112{bottom:508.789333pt;}
.yc1{bottom:509.750667pt;}
.y9f{bottom:511.670667pt;}
.y46{bottom:523.591067pt;}
.y111{bottom:526.056000pt;}
.y6b{bottom:527.670667pt;}
.yc0{bottom:533.750667pt;}
.y8d{bottom:535.670667pt;}
.yee{bottom:538.656000pt;}
.y6a{bottom:551.670667pt;}
.yed{bottom:555.922667pt;}
.ybf{bottom:557.750667pt;}
.y110{bottom:558.256000pt;}
.y8c{bottom:559.670667pt;}
.y45{bottom:563.015067pt;}
.yec{bottom:573.189333pt;}
.y7{bottom:573.786667pt;}
.y10f{bottom:575.522667pt;}
.y69{bottom:575.670667pt;}
.ybe{bottom:581.750667pt;}
.y8b{bottom:583.670667pt;}
.y6{bottom:592.685334pt;}
.y10e{bottom:592.789333pt;}
.yd1{bottom:599.670667pt;}
.y2f{bottom:599.825200pt;}
.yeb{bottom:605.389333pt;}
.y8a{bottom:607.670667pt;}
.y44{bottom:613.511067pt;}
.y68{bottom:615.094667pt;}
.yea{bottom:622.656000pt;}
.ybd{bottom:623.670667pt;}
.y10d{bottom:624.989333pt;}
.y2e{bottom:630.425200pt;}
.y89{bottom:631.670667pt;}
.y43{bottom:637.511067pt;}
.ye9{bottom:639.922667pt;}
.y10c{bottom:642.256000pt;}
.y5{bottom:645.598667pt;}
.ybc{bottom:647.670667pt;}
.y2d{bottom:647.691867pt;}
.y88{bottom:655.670667pt;}
.y42{bottom:661.511067pt;}
.yd4{bottom:663.094667pt;}
.y67{bottom:665.590667pt;}
.y3{bottom:668.977329pt;}
.ybb{bottom:671.670667pt;}
.ye8{bottom:672.122667pt;}
.y10b{bottom:674.456000pt;}
.y2c{bottom:678.291867pt;}
.y87{bottom:679.670667pt;}
.y41{bottom:685.511067pt;}
.ye7{bottom:689.389333pt;}
.y66{bottom:689.590667pt;}
.y10a{bottom:691.722667pt;}
.y2b{bottom:695.558533pt;}
.yba{bottom:695.670667pt;}
.y86{bottom:703.670667pt;}
.ye6{bottom:706.656000pt;}
.y40{bottom:709.511067pt;}
.y2a{bottom:712.825200pt;}
.y65{bottom:713.590667pt;}
.yb9{bottom:719.670667pt;}
.y109{bottom:723.922667pt;}
.y85{bottom:727.670667pt;}
.y29{bottom:730.091867pt;}
.y3f{bottom:733.511067pt;}
.y64{bottom:737.590667pt;}
.ye5{bottom:738.856000pt;}
.y108{bottom:741.189333pt;}
.yb8{bottom:743.670667pt;}
.y28{bottom:747.358533pt;}
.y84{bottom:751.670667pt;}
.ye4{bottom:756.122667pt;}
.y3e{bottom:757.511067pt;}
.y63{bottom:761.590667pt;}
.y27{bottom:763.991867pt;}
.yb7{bottom:767.670667pt;}
.ye3{bottom:773.389333pt;}
.y83{bottom:775.670667pt;}
.y26{bottom:779.991867pt;}
.y3d{bottom:781.511067pt;}
.y2{bottom:781.661334pt;}
.y62{bottom:785.590667pt;}
.y9e{bottom:790.342667pt;}
.y107{bottom:790.656000pt;}
.yb6{bottom:791.670667pt;}
.y82{bottom:799.670667pt;}
.y3c{bottom:805.511067pt;}
.ye2{bottom:805.589333pt;}
.y106{bottom:807.922667pt;}
.y61{bottom:809.590667pt;}
.y25{bottom:809.958533pt;}
.yb5{bottom:815.670667pt;}
.ye1{bottom:822.856000pt;}
.y81{bottom:823.670667pt;}
.y24{bottom:827.225200pt;}
.y3b{bottom:829.511067pt;}
.y60{bottom:833.590667pt;}
.yb4{bottom:839.670667pt;}
.ye0{bottom:840.122667pt;}
.y80{bottom:847.670667pt;}
.y3a{bottom:853.511067pt;}
.y105{bottom:857.389333pt;}
.y5f{bottom:857.590667pt;}
.y23{bottom:857.825200pt;}
.y1{bottom:859.312000pt;}
.yb3{bottom:863.670667pt;}
.y7f{bottom:871.670667pt;}
.ydf{bottom:872.322667pt;}
.y5e{bottom:881.590667pt;}
.yb2{bottom:887.670667pt;}
.y22{bottom:889.319867pt;}
.yde{bottom:889.589333pt;}
.y39{bottom:892.935067pt;}
.y7e{bottom:895.670667pt;}
.y5d{bottom:905.590667pt;}
.y104{bottom:906.856000pt;}
.yb1{bottom:911.670667pt;}
.ydd{bottom:921.789333pt;}
.y21{bottom:923.018533pt;}
.y103{bottom:924.122667pt;}
.y5c{bottom:929.590667pt;}
.y7d{bottom:934.342667pt;}
.yb0{bottom:935.670667pt;}
.ydc{bottom:939.056000pt;}
.y5b{bottom:953.590667pt;}
.ydb{bottom:956.322667pt;}
.yaf{bottom:959.670667pt;}
.y20{bottom:960.511867pt;}
.y38{bottom:964.140533pt;}
.y102{bottom:973.589333pt;}
.y5a{bottom:977.590667pt;}
.y37{bottom:981.407200pt;}
.yda{bottom:988.522667pt;}
.y59{bottom:1001.590667pt;}
.yd9{bottom:1005.789333pt;}
.y36{bottom:1047.493600pt;}
.y58{bottom:1061.666800pt;}
.h12{height:26.333329pt;}
.h7{height:28.560000pt;}
.hf{height:37.973333pt;}
.h10{height:38.348876pt;}
.h6{height:40.800000pt;}
.h9{height:41.493333pt;}
.h3{height:42.840000pt;}
.hb{height:45.696000pt;}
.h2{height:48.960000pt;}
.hd{height:49.792000pt;}
.he{height:57.120000pt;}
.hc{height:68.544000pt;}
.h5{height:69.360000pt;}
.ha{height:76.160000pt;}
.h4{height:105.826671pt;}
.h11{height:156.207467pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:566.662800pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:113.385867pt;}
.x8{left:143.385867pt;}
.x4{left:180.874667pt;}
.x5{left:188.976400pt;}
.xb{left:237.223733pt;}
.x7{left:253.228400pt;}
.x9{left:310.625867pt;}
.xa{left:315.437067pt;}
.x3{left:404.408000pt;}
}




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