
    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_86f301ac54503a14270a611b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cc86bf1c1201d7622b7ea260.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_db08a2e2924e6f8261498c8f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_3ff7283442d54bf6f722c8e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8c2eafb3c86f90f685729ee4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_d4e7893b7d81904c057e3fb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_d207e33b23c0c55d32d7b3a6.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;}
.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;}
.ls6{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.168000px;}
.ls2{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.228000px;}
.ls9{letter-spacing:0.816000px;}
.lsa{letter-spacing:84.198000px;}
.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;}
}
.ws4{word-spacing:-84.000000px;}
.ws9{word-spacing:-66.000000px;}
.ws1{word-spacing:-27.000000px;}
.wsb{word-spacing:-21.228000px;}
.ws5{word-spacing:-21.048000px;}
.ws2{word-spacing:-21.000000px;}
.ws8{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.024000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.832000px;}
.wsa{word-spacing:-17.784000px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-10.752000px;}
._34{margin-left:-5.628000px;}
._1a{margin-left:-4.452000px;}
._3{margin-left:-3.360000px;}
._2{margin-left:-2.352000px;}
._1{margin-left:-1.080000px;}
._0{width:1.200000px;}
._9{width:3.108000px;}
._4{width:4.704000px;}
._f{width:6.048000px;}
._1b{width:7.644000px;}
._17{width:8.652000px;}
._c{width:10.500000px;}
._b{width:11.592000px;}
._1d{width:13.104000px;}
._10{width:15.036000px;}
._a{width:16.296000px;}
._1e{width:17.976000px;}
._36{width:18.984000px;}
._31{width:20.916000px;}
._e{width:22.260000px;}
._d{width:23.742000px;}
._1f{width:24.954000px;}
._22{width:26.082000px;}
._21{width:27.972000px;}
._23{width:28.980000px;}
._19{width:30.852000px;}
._18{width:31.884000px;}
._16{width:33.180000px;}
._15{width:34.440000px;}
._6{width:35.616000px;}
._5{width:37.044000px;}
._35{width:38.400000px;}
._1c{width:39.468000px;}
._13{width:40.572000px;}
._14{width:42.168000px;}
._12{width:43.506000px;}
._11{width:44.886000px;}
._29{width:46.020000px;}
._8{width:47.124000px;}
._7{width:48.132000px;}
._25{width:49.212000px;}
._2e{width:51.192000px;}
._24{width:55.776000px;}
._37{width:57.120000px;}
._39{width:58.842000px;}
._38{width:59.976000px;}
._26{width:63.144000px;}
._28{width:64.872000px;}
._3a{width:67.608000px;}
._2b{width:68.976000px;}
._2c{width:71.352000px;}
._2d{width:72.576000px;}
._46{width:74.256000px;}
._30{width:80.424000px;}
._40{width:81.576000px;}
._27{width:87.984000px;}
._32{width:91.008000px;}
._47{width:101.544000px;}
._3b{width:110.592000px;}
._2f{width:112.824000px;}
._43{width:123.912000px;}
._42{width:128.952000px;}
._48{width:131.112000px;}
._49{width:132.696000px;}
._2a{width:138.600000px;}
._44{width:151.344000px;}
._45{width:160.110000px;}
._33{width:166.824000px;}
._3c{width:253.656000px;}
._3f{width:275.976000px;}
._3d{width:278.064000px;}
._41{width:353.520000px;}
._3e{width:375.696000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.650000px;}
.y63{bottom:3.900000px;}
.y81{bottom:3.915000px;}
.y9{bottom:5.850000px;}
.y2{bottom:6.750000px;}
.ya{bottom:7.800000px;}
.y3{bottom:8.550000px;}
.y8{bottom:9.150000px;}
.y65{bottom:24.450000px;}
.y75{bottom:24.585000px;}
.y67{bottom:24.600000px;}
.y7a{bottom:24.607500px;}
.y78{bottom:24.615000px;}
.y7d{bottom:24.630000px;}
.y6a{bottom:25.200000px;}
.y7{bottom:32.137500px;}
.yb7{bottom:45.285000px;}
.yc1{bottom:45.300000px;}
.ybb{bottom:45.307500px;}
.ybf{bottom:45.315000px;}
.yb6{bottom:66.000000px;}
.yba{bottom:66.007500px;}
.ybe{bottom:66.015000px;}
.yb9{bottom:86.707500px;}
.ybd{bottom:86.745000px;}
.y9c{bottom:94.987500px;}
.y4d{bottom:98.587500px;}
.ydc{bottom:99.337500px;}
.yb0{bottom:100.387500px;}
.yb1{bottom:102.037500px;}
.y106{bottom:110.437500px;}
.y2f{bottom:116.137500px;}
.y9b{bottom:122.737500px;}
.y4c{bottom:126.337500px;}
.y79{bottom:126.637500px;}
.ydb{bottom:127.087500px;}
.yaf{bottom:128.137500px;}
.y61{bottom:129.787500px;}
.yb8{bottom:137.887500px;}
.y2e{bottom:143.887500px;}
.y105{bottom:146.737500px;}
.y9a{bottom:150.495000px;}
.y4b{bottom:154.245000px;}
.yda{bottom:154.845000px;}
.yae{bottom:155.895000px;}
.y60{bottom:157.545000px;}
.y2d{bottom:171.630000px;}
.y99{bottom:178.245000px;}
.y77{bottom:178.680000px;}
.y4a{bottom:181.995000px;}
.y104{bottom:182.895000px;}
.yad{bottom:183.645000px;}
.yd9{bottom:184.095000px;}
.y5f{bottom:185.295000px;}
.y2c{bottom:200.895000px;}
.y98{bottom:206.130000px;}
.y49{bottom:209.745000px;}
.yac{bottom:211.395000px;}
.yd8{bottom:212.130000px;}
.y5e{bottom:213.195000px;}
.y103{bottom:219.195000px;}
.y2b{bottom:228.945000px;}
.y76{bottom:230.745000px;}
.y97{bottom:233.895000px;}
.y48{bottom:237.495000px;}
.yab{bottom:239.130000px;}
.yd7{bottom:239.880000px;}
.y5d{bottom:240.945000px;}
.yb5{bottom:252.045000px;}
.y102{bottom:255.345000px;}
.y2a{bottom:256.695000px;}
.y96{bottom:261.645000px;}
.y47{bottom:265.245000px;}
.yaa{bottom:266.880000px;}
.yd6{bottom:267.645000px;}
.y5c{bottom:268.695000px;}
.y74{bottom:282.795000px;}
.y29{bottom:284.445000px;}
.y95{bottom:289.395000px;}
.y101{bottom:291.645000px;}
.y46{bottom:292.995000px;}
.ya9{bottom:294.795000px;}
.yd5{bottom:295.395000px;}
.y5b{bottom:296.445000px;}
.y28{bottom:312.195000px;}
.y94{bottom:317.130000px;}
.y45{bottom:320.745000px;}
.ya8{bottom:322.545000px;}
.yd4{bottom:323.145000px;}
.y5a{bottom:324.195000px;}
.y100{bottom:327.795000px;}
.y73{bottom:334.845000px;}
.y27{bottom:339.945000px;}
.y93{bottom:344.895000px;}
.yb4{bottom:345.495000px;}
.y44{bottom:348.495000px;}
.ya7{bottom:350.295000px;}
.yd3{bottom:351.045000px;}
.y59{bottom:351.945000px;}
.yff{bottom:364.095000px;}
.y26{bottom:367.695000px;}
.y92{bottom:372.645000px;}
.y43{bottom:376.395000px;}
.ya6{bottom:378.045000px;}
.yd2{bottom:378.795000px;}
.y58{bottom:379.725000px;}
.y72{bottom:386.925000px;}
.y25{bottom:395.625000px;}
.yfe{bottom:400.275000px;}
.y91{bottom:400.575000px;}
.y42{bottom:404.175000px;}
.ya5{bottom:405.825000px;}
.yd1{bottom:406.575000px;}
.y57{bottom:407.625000px;}
.y24{bottom:423.375000px;}
.y90{bottom:428.325000px;}
.y41{bottom:431.925000px;}
.ya4{bottom:433.575000px;}
.yd0{bottom:434.325000px;}
.y56{bottom:435.375000px;}
.yfd{bottom:436.575000px;}
.y71{bottom:438.975000px;}
.y23{bottom:451.125000px;}
.y8f{bottom:456.075000px;}
.y40{bottom:459.675000px;}
.ya3{bottom:461.325000px;}
.ycf{bottom:462.075000px;}
.y55{bottom:463.125000px;}
.yfc{bottom:472.725000px;}
.y22{bottom:478.875000px;}
.y8e{bottom:483.825000px;}
.y3f{bottom:487.425000px;}
.ya2{bottom:489.225000px;}
.yce{bottom:489.825000px;}
.y54{bottom:490.875000px;}
.y70{bottom:491.025000px;}
.y21{bottom:506.625000px;}
.yfb{bottom:509.025000px;}
.y8d{bottom:511.575000px;}
.y3e{bottom:515.175000px;}
.ya1{bottom:516.975000px;}
.ycd{bottom:517.575000px;}
.y53{bottom:518.625000px;}
.y20{bottom:534.375000px;}
.y8c{bottom:539.325000px;}
.y3d{bottom:542.925000px;}
.y6f{bottom:543.075000px;}
.yb3{bottom:544.425000px;}
.ya0{bottom:544.725000px;}
.yfa{bottom:545.175000px;}
.ycc{bottom:545.475000px;}
.y52{bottom:546.375000px;}
.y1f{bottom:562.125000px;}
.y8b{bottom:567.075000px;}
.y3c{bottom:570.825000px;}
.y9f{bottom:572.475000px;}
.ycb{bottom:573.225000px;}
.y51{bottom:574.125000px;}
.yf9{bottom:581.475000px;}
.y1e{bottom:589.875000px;}
.y8a{bottom:594.825000px;}
.y6e{bottom:595.125000px;}
.yee{bottom:598.575000px;}
.y3b{bottom:599.925000px;}
.y9e{bottom:600.225000px;}
.yca{bottom:600.975000px;}
.yb2{bottom:601.575000px;}
.y50{bottom:601.875000px;}
.yf8{bottom:617.625000px;}
.y1d{bottom:617.775000px;}
.y89{bottom:622.725000px;}
.yed{bottom:626.325000px;}
.y3a{bottom:627.975000px;}
.yc9{bottom:628.725000px;}
.y4f{bottom:629.775000px;}
.y1c{bottom:645.525000px;}
.y6d{bottom:647.175000px;}
.y88{bottom:650.475000px;}
.yf7{bottom:653.925000px;}
.yec{bottom:654.075000px;}
.y39{bottom:655.725000px;}
.yc8{bottom:656.475000px;}
.y4e{bottom:657.525000px;}
.y87{bottom:678.225000px;}
.yeb{bottom:681.825000px;}
.yf0{bottom:683.175000px;}
.y38{bottom:683.475000px;}
.y1b{bottom:685.275000px;}
.yc7{bottom:685.725000px;}
.yf6{bottom:690.075000px;}
.y6c{bottom:699.225000px;}
.y86{bottom:705.975000px;}
.yea{bottom:709.575000px;}
.y37{bottom:711.375000px;}
.yef{bottom:712.725000px;}
.y1a{bottom:713.025000px;}
.yc6{bottom:713.775000px;}
.yf5{bottom:726.375000px;}
.y85{bottom:733.725000px;}
.ye9{bottom:737.370000px;}
.y36{bottom:739.170000px;}
.y19{bottom:740.820000px;}
.yc5{bottom:741.570000px;}
.y6b{bottom:751.320000px;}
.y84{bottom:758.820000px;}
.yf4{bottom:762.570000px;}
.ye8{bottom:765.120000px;}
.y35{bottom:766.920000px;}
.y18{bottom:768.570000px;}
.yc4{bottom:769.320000px;}
.ye7{bottom:793.020000px;}
.y34{bottom:794.670000px;}
.y9d{bottom:796.020000px;}
.y17{bottom:796.320000px;}
.yc3{bottom:797.070000px;}
.yf3{bottom:798.720000px;}
.y69{bottom:803.370000px;}
.y83{bottom:810.870000px;}
.ye6{bottom:820.770000px;}
.yc2{bottom:822.120000px;}
.y33{bottom:822.420000px;}
.y16{bottom:824.220000px;}
.yf2{bottom:835.020000px;}
.ye5{bottom:848.520000px;}
.y32{bottom:850.170000px;}
.y15{bottom:851.970000px;}
.y68{bottom:856.020000px;}
.y82{bottom:862.920000px;}
.yf1{bottom:871.170000px;}
.ye4{bottom:876.270000px;}
.y31{bottom:877.920000px;}
.y14{bottom:879.720000px;}
.ye3{bottom:904.020000px;}
.y30{bottom:907.170000px;}
.y13{bottom:907.470000px;}
.y66{bottom:908.070000px;}
.y80{bottom:914.955000px;}
.yc0{bottom:915.570000px;}
.ye2{bottom:931.770000px;}
.y12{bottom:935.220000px;}
.ye1{bottom:959.520000px;}
.y64{bottom:960.120000px;}
.y11{bottom:962.970000px;}
.y7f{bottom:967.020000px;}
.ye0{bottom:987.420000px;}
.y10{bottom:990.720000px;}
.ybc{bottom:1009.005000px;}
.y62{bottom:1012.020000px;}
.ydf{bottom:1016.520000px;}
.yf{bottom:1018.470000px;}
.y7e{bottom:1019.070000px;}
.yde{bottom:1044.570000px;}
.ye{bottom:1046.370000px;}
.y7c{bottom:1071.120000px;}
.ydd{bottom:1073.820000px;}
.yd{bottom:1074.120000px;}
.yc{bottom:1101.900000px;}
.y7b{bottom:1123.200000px;}
.yb{bottom:1129.650000px;}
.y6{bottom:1153.050000px;}
.y4{bottom:1168.350000px;}
.y1{bottom:1193.700000px;}
.h5{height:14.550000px;}
.h10{height:20.685000px;}
.h15{height:20.700000px;}
.h2{height:26.550000px;}
.h7{height:31.050000px;}
.h11{height:41.250000px;}
.h12{height:41.400000px;}
.h14{height:41.437500px;}
.h13{height:42.000000px;}
.h4{height:53.709961px;}
.ha{height:65.645508px;}
.h6{height:66.515625px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hb{height:82.441406px;}
.h16{height:82.800000px;}
.he{height:83.548828px;}
.hc{height:84.656250px;}
.hd{height:86.009766px;}
.hf{height:86.338763px;}
.h17{height:103.500000px;}
.h18{height:103.537500px;}
.h9{height:108.843750px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:44.250000px;}
.w6{width:63.750000px;}
.w8{width:101.850000px;}
.w9{width:111.937500px;}
.w7{width:187.395000px;}
.wc{width:251.880000px;}
.wb{width:262.380000px;}
.wa{width:319.380000px;}
.w5{width:754.905000px;}
.w2{width:840.120000px;}
.w4{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.350000px;}
.x18{left:7.500000px;}
.x5{left:8.700000px;}
.x9{left:11.565000px;}
.x4{left:35.535000px;}
.x7{left:42.450000px;}
.x2{left:69.300000px;}
.x6{left:85.049987px;}
.xb{left:87.749987px;}
.xc{left:92.999987px;}
.x1c{left:95.550000px;}
.x17{left:127.687487px;}
.xa{left:154.829987px;}
.x14{left:264.194987px;}
.x19{left:272.745000px;}
.x12{left:276.494987px;}
.x1d{left:283.095000px;}
.x10{left:293.744987px;}
.x11{left:300.944987px;}
.x15{left:319.994987px;}
.x13{left:358.079987px;}
.xf{left:372.644987px;}
.x1a{left:374.745000px;}
.x16{left:389.324987px;}
.xd{left:402.824987px;}
.xe{left:446.474987px;}
.x1b{left:486.675000px;}
.x1e{left:545.625000px;}
.x8{left:797.505000px;}
.x3{left:844.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.149333pt;}
.ls2{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.202667pt;}
.ls9{letter-spacing:0.725333pt;}
.lsa{letter-spacing:74.842667pt;}
.ws4{word-spacing:-74.666667pt;}
.ws9{word-spacing:-58.666667pt;}
.ws1{word-spacing:-24.000000pt;}
.wsb{word-spacing:-18.869333pt;}
.ws5{word-spacing:-18.709333pt;}
.ws2{word-spacing:-18.666667pt;}
.ws8{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.021333pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.850667pt;}
.wsa{word-spacing:-15.808000pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-9.557333pt;}
._34{margin-left:-5.002667pt;}
._1a{margin-left:-3.957333pt;}
._3{margin-left:-2.986667pt;}
._2{margin-left:-2.090667pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.066667pt;}
._9{width:2.762667pt;}
._4{width:4.181333pt;}
._f{width:5.376000pt;}
._1b{width:6.794667pt;}
._17{width:7.690667pt;}
._c{width:9.333333pt;}
._b{width:10.304000pt;}
._1d{width:11.648000pt;}
._10{width:13.365333pt;}
._a{width:14.485333pt;}
._1e{width:15.978667pt;}
._36{width:16.874667pt;}
._31{width:18.592000pt;}
._e{width:19.786667pt;}
._d{width:21.104000pt;}
._1f{width:22.181333pt;}
._22{width:23.184000pt;}
._21{width:24.864000pt;}
._23{width:25.760000pt;}
._19{width:27.424000pt;}
._18{width:28.341333pt;}
._16{width:29.493333pt;}
._15{width:30.613333pt;}
._6{width:31.658667pt;}
._5{width:32.928000pt;}
._35{width:34.133333pt;}
._1c{width:35.082667pt;}
._13{width:36.064000pt;}
._14{width:37.482667pt;}
._12{width:38.672000pt;}
._11{width:39.898667pt;}
._29{width:40.906667pt;}
._8{width:41.888000pt;}
._7{width:42.784000pt;}
._25{width:43.744000pt;}
._2e{width:45.504000pt;}
._24{width:49.578667pt;}
._37{width:50.773333pt;}
._39{width:52.304000pt;}
._38{width:53.312000pt;}
._26{width:56.128000pt;}
._28{width:57.664000pt;}
._3a{width:60.096000pt;}
._2b{width:61.312000pt;}
._2c{width:63.424000pt;}
._2d{width:64.512000pt;}
._46{width:66.005333pt;}
._30{width:71.488000pt;}
._40{width:72.512000pt;}
._27{width:78.208000pt;}
._32{width:80.896000pt;}
._47{width:90.261333pt;}
._3b{width:98.304000pt;}
._2f{width:100.288000pt;}
._43{width:110.144000pt;}
._42{width:114.624000pt;}
._48{width:116.544000pt;}
._49{width:117.952000pt;}
._2a{width:123.200000pt;}
._44{width:134.528000pt;}
._45{width:142.320000pt;}
._33{width:148.288000pt;}
._3c{width:225.472000pt;}
._3f{width:245.312000pt;}
._3d{width:247.168000pt;}
._41{width:314.240000pt;}
._3e{width:333.952000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.466667pt;}
.y63{bottom:3.466667pt;}
.y81{bottom:3.480000pt;}
.y9{bottom:5.200000pt;}
.y2{bottom:6.000000pt;}
.ya{bottom:6.933333pt;}
.y3{bottom:7.600000pt;}
.y8{bottom:8.133333pt;}
.y65{bottom:21.733333pt;}
.y75{bottom:21.853333pt;}
.y67{bottom:21.866667pt;}
.y7a{bottom:21.873333pt;}
.y78{bottom:21.880000pt;}
.y7d{bottom:21.893333pt;}
.y6a{bottom:22.400000pt;}
.y7{bottom:28.566667pt;}
.yb7{bottom:40.253333pt;}
.yc1{bottom:40.266667pt;}
.ybb{bottom:40.273333pt;}
.ybf{bottom:40.280000pt;}
.yb6{bottom:58.666667pt;}
.yba{bottom:58.673333pt;}
.ybe{bottom:58.680000pt;}
.yb9{bottom:77.073333pt;}
.ybd{bottom:77.106667pt;}
.y9c{bottom:84.433333pt;}
.y4d{bottom:87.633333pt;}
.ydc{bottom:88.300000pt;}
.yb0{bottom:89.233333pt;}
.yb1{bottom:90.700000pt;}
.y106{bottom:98.166667pt;}
.y2f{bottom:103.233333pt;}
.y9b{bottom:109.100000pt;}
.y4c{bottom:112.300000pt;}
.y79{bottom:112.566667pt;}
.ydb{bottom:112.966667pt;}
.yaf{bottom:113.900000pt;}
.y61{bottom:115.366667pt;}
.yb8{bottom:122.566667pt;}
.y2e{bottom:127.900000pt;}
.y105{bottom:130.433333pt;}
.y9a{bottom:133.773333pt;}
.y4b{bottom:137.106667pt;}
.yda{bottom:137.640000pt;}
.yae{bottom:138.573333pt;}
.y60{bottom:140.040000pt;}
.y2d{bottom:152.560000pt;}
.y99{bottom:158.440000pt;}
.y77{bottom:158.826667pt;}
.y4a{bottom:161.773333pt;}
.y104{bottom:162.573333pt;}
.yad{bottom:163.240000pt;}
.yd9{bottom:163.640000pt;}
.y5f{bottom:164.706667pt;}
.y2c{bottom:178.573333pt;}
.y98{bottom:183.226667pt;}
.y49{bottom:186.440000pt;}
.yac{bottom:187.906667pt;}
.yd8{bottom:188.560000pt;}
.y5e{bottom:189.506667pt;}
.y103{bottom:194.840000pt;}
.y2b{bottom:203.506667pt;}
.y76{bottom:205.106667pt;}
.y97{bottom:207.906667pt;}
.y48{bottom:211.106667pt;}
.yab{bottom:212.560000pt;}
.yd7{bottom:213.226667pt;}
.y5d{bottom:214.173333pt;}
.yb5{bottom:224.040000pt;}
.y102{bottom:226.973333pt;}
.y2a{bottom:228.173333pt;}
.y96{bottom:232.573333pt;}
.y47{bottom:235.773333pt;}
.yaa{bottom:237.226667pt;}
.yd6{bottom:237.906667pt;}
.y5c{bottom:238.840000pt;}
.y74{bottom:251.373333pt;}
.y29{bottom:252.840000pt;}
.y95{bottom:257.240000pt;}
.y101{bottom:259.240000pt;}
.y46{bottom:260.440000pt;}
.ya9{bottom:262.040000pt;}
.yd5{bottom:262.573333pt;}
.y5b{bottom:263.506667pt;}
.y28{bottom:277.506667pt;}
.y94{bottom:281.893333pt;}
.y45{bottom:285.106667pt;}
.ya8{bottom:286.706667pt;}
.yd4{bottom:287.240000pt;}
.y5a{bottom:288.173333pt;}
.y100{bottom:291.373333pt;}
.y73{bottom:297.640000pt;}
.y27{bottom:302.173333pt;}
.y93{bottom:306.573333pt;}
.yb4{bottom:307.106667pt;}
.y44{bottom:309.773333pt;}
.ya7{bottom:311.373333pt;}
.yd3{bottom:312.040000pt;}
.y59{bottom:312.840000pt;}
.yff{bottom:323.640000pt;}
.y26{bottom:326.840000pt;}
.y92{bottom:331.240000pt;}
.y43{bottom:334.573333pt;}
.ya6{bottom:336.040000pt;}
.yd2{bottom:336.706667pt;}
.y58{bottom:337.533333pt;}
.y72{bottom:343.933333pt;}
.y25{bottom:351.666667pt;}
.yfe{bottom:355.800000pt;}
.y91{bottom:356.066667pt;}
.y42{bottom:359.266667pt;}
.ya5{bottom:360.733333pt;}
.yd1{bottom:361.400000pt;}
.y57{bottom:362.333333pt;}
.y24{bottom:376.333333pt;}
.y90{bottom:380.733333pt;}
.y41{bottom:383.933333pt;}
.ya4{bottom:385.400000pt;}
.yd0{bottom:386.066667pt;}
.y56{bottom:387.000000pt;}
.yfd{bottom:388.066667pt;}
.y71{bottom:390.200000pt;}
.y23{bottom:401.000000pt;}
.y8f{bottom:405.400000pt;}
.y40{bottom:408.600000pt;}
.ya3{bottom:410.066667pt;}
.ycf{bottom:410.733333pt;}
.y55{bottom:411.666667pt;}
.yfc{bottom:420.200000pt;}
.y22{bottom:425.666667pt;}
.y8e{bottom:430.066667pt;}
.y3f{bottom:433.266667pt;}
.ya2{bottom:434.866667pt;}
.yce{bottom:435.400000pt;}
.y54{bottom:436.333333pt;}
.y70{bottom:436.466667pt;}
.y21{bottom:450.333333pt;}
.yfb{bottom:452.466667pt;}
.y8d{bottom:454.733333pt;}
.y3e{bottom:457.933333pt;}
.ya1{bottom:459.533333pt;}
.ycd{bottom:460.066667pt;}
.y53{bottom:461.000000pt;}
.y20{bottom:475.000000pt;}
.y8c{bottom:479.400000pt;}
.y3d{bottom:482.600000pt;}
.y6f{bottom:482.733333pt;}
.yb3{bottom:483.933333pt;}
.ya0{bottom:484.200000pt;}
.yfa{bottom:484.600000pt;}
.ycc{bottom:484.866667pt;}
.y52{bottom:485.666667pt;}
.y1f{bottom:499.666667pt;}
.y8b{bottom:504.066667pt;}
.y3c{bottom:507.400000pt;}
.y9f{bottom:508.866667pt;}
.ycb{bottom:509.533333pt;}
.y51{bottom:510.333333pt;}
.yf9{bottom:516.866667pt;}
.y1e{bottom:524.333333pt;}
.y8a{bottom:528.733333pt;}
.y6e{bottom:529.000000pt;}
.yee{bottom:532.066667pt;}
.y3b{bottom:533.266667pt;}
.y9e{bottom:533.533333pt;}
.yca{bottom:534.200000pt;}
.yb2{bottom:534.733333pt;}
.y50{bottom:535.000000pt;}
.yf8{bottom:549.000000pt;}
.y1d{bottom:549.133333pt;}
.y89{bottom:553.533333pt;}
.yed{bottom:556.733333pt;}
.y3a{bottom:558.200000pt;}
.yc9{bottom:558.866667pt;}
.y4f{bottom:559.800000pt;}
.y1c{bottom:573.800000pt;}
.y6d{bottom:575.266667pt;}
.y88{bottom:578.200000pt;}
.yf7{bottom:581.266667pt;}
.yec{bottom:581.400000pt;}
.y39{bottom:582.866667pt;}
.yc8{bottom:583.533333pt;}
.y4e{bottom:584.466667pt;}
.y87{bottom:602.866667pt;}
.yeb{bottom:606.066667pt;}
.yf0{bottom:607.266667pt;}
.y38{bottom:607.533333pt;}
.y1b{bottom:609.133333pt;}
.yc7{bottom:609.533333pt;}
.yf6{bottom:613.400000pt;}
.y6c{bottom:621.533333pt;}
.y86{bottom:627.533333pt;}
.yea{bottom:630.733333pt;}
.y37{bottom:632.333333pt;}
.yef{bottom:633.533333pt;}
.y1a{bottom:633.800000pt;}
.yc6{bottom:634.466667pt;}
.yf5{bottom:645.666667pt;}
.y85{bottom:652.200000pt;}
.ye9{bottom:655.440000pt;}
.y36{bottom:657.040000pt;}
.y19{bottom:658.506667pt;}
.yc5{bottom:659.173333pt;}
.y6b{bottom:667.840000pt;}
.y84{bottom:674.506667pt;}
.yf4{bottom:677.840000pt;}
.ye8{bottom:680.106667pt;}
.y35{bottom:681.706667pt;}
.y18{bottom:683.173333pt;}
.yc4{bottom:683.840000pt;}
.ye7{bottom:704.906667pt;}
.y34{bottom:706.373333pt;}
.y9d{bottom:707.573333pt;}
.y17{bottom:707.840000pt;}
.yc3{bottom:708.506667pt;}
.yf3{bottom:709.973333pt;}
.y69{bottom:714.106667pt;}
.y83{bottom:720.773333pt;}
.ye6{bottom:729.573333pt;}
.yc2{bottom:730.773333pt;}
.y33{bottom:731.040000pt;}
.y16{bottom:732.640000pt;}
.yf2{bottom:742.240000pt;}
.ye5{bottom:754.240000pt;}
.y32{bottom:755.706667pt;}
.y15{bottom:757.306667pt;}
.y68{bottom:760.906667pt;}
.y82{bottom:767.040000pt;}
.yf1{bottom:774.373333pt;}
.ye4{bottom:778.906667pt;}
.y31{bottom:780.373333pt;}
.y14{bottom:781.973333pt;}
.ye3{bottom:803.573333pt;}
.y30{bottom:806.373333pt;}
.y13{bottom:806.640000pt;}
.y66{bottom:807.173333pt;}
.y80{bottom:813.293333pt;}
.yc0{bottom:813.840000pt;}
.ye2{bottom:828.240000pt;}
.y12{bottom:831.306667pt;}
.ye1{bottom:852.906667pt;}
.y64{bottom:853.440000pt;}
.y11{bottom:855.973333pt;}
.y7f{bottom:859.573333pt;}
.ye0{bottom:877.706667pt;}
.y10{bottom:880.640000pt;}
.ybc{bottom:896.893333pt;}
.y62{bottom:899.573333pt;}
.ydf{bottom:903.573333pt;}
.yf{bottom:905.306667pt;}
.y7e{bottom:905.840000pt;}
.yde{bottom:928.506667pt;}
.ye{bottom:930.106667pt;}
.y7c{bottom:952.106667pt;}
.ydd{bottom:954.506667pt;}
.yd{bottom:954.773333pt;}
.yc{bottom:979.466667pt;}
.y7b{bottom:998.400000pt;}
.yb{bottom:1004.133333pt;}
.y6{bottom:1024.933333pt;}
.y4{bottom:1038.533333pt;}
.y1{bottom:1061.066667pt;}
.h5{height:12.933333pt;}
.h10{height:18.386667pt;}
.h15{height:18.400000pt;}
.h2{height:23.600000pt;}
.h7{height:27.600000pt;}
.h11{height:36.666667pt;}
.h12{height:36.800000pt;}
.h14{height:36.833333pt;}
.h13{height:37.333333pt;}
.h4{height:47.742188pt;}
.ha{height:58.351562pt;}
.h6{height:59.125000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hb{height:73.281250pt;}
.h16{height:73.600000pt;}
.he{height:74.265625pt;}
.hc{height:75.250000pt;}
.hd{height:76.453125pt;}
.hf{height:76.745567pt;}
.h17{height:92.000000pt;}
.h18{height:92.033333pt;}
.h9{height:96.750000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:39.333333pt;}
.w6{width:56.666667pt;}
.w8{width:90.533333pt;}
.w9{width:99.500000pt;}
.w7{width:166.573333pt;}
.wc{width:223.893333pt;}
.wb{width:233.226667pt;}
.wa{width:283.893333pt;}
.w5{width:671.026667pt;}
.w2{width:746.773333pt;}
.w4{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.866667pt;}
.x18{left:6.666667pt;}
.x5{left:7.733333pt;}
.x9{left:10.280000pt;}
.x4{left:31.586667pt;}
.x7{left:37.733333pt;}
.x2{left:61.600000pt;}
.x6{left:75.599988pt;}
.xb{left:77.999988pt;}
.xc{left:82.666655pt;}
.x1c{left:84.933333pt;}
.x17{left:113.499988pt;}
.xa{left:137.626655pt;}
.x14{left:234.839988pt;}
.x19{left:242.440000pt;}
.x12{left:245.773322pt;}
.x1d{left:251.640000pt;}
.x10{left:261.106655pt;}
.x11{left:267.506655pt;}
.x15{left:284.439988pt;}
.x13{left:318.293322pt;}
.xf{left:331.239988pt;}
.x1a{left:333.106667pt;}
.x16{left:346.066655pt;}
.xd{left:358.066655pt;}
.xe{left:396.866655pt;}
.x1b{left:432.600000pt;}
.x1e{left:485.000000pt;}
.x8{left:708.893333pt;}
.x3{left:750.640000pt;}
}




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