
    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_fba1c9a7949e7f80f4e35785.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100586;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_724de1d37f805cbe5f0c48bf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_080802b6734330748c56130c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.042480;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_8a76fcbfa8b0e230fd53d808.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_62d32a0375fe33fd393662ca.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087402;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_2e31bdf50311e3b06f5fb178.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_59a866b2f7ca5f2810dfabbe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_82a37b1a78d21ca072d2633f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v3{vertical-align:-77.039978px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120072px;}
.v1{vertical-align:27.360004px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000258px;}
.lsc{letter-spacing:0.008361px;}
.lsf{letter-spacing:0.016749px;}
.ls14{letter-spacing:0.016781px;}
.ls11{letter-spacing:0.016785px;}
.ls9{letter-spacing:0.027672px;}
.lsa{letter-spacing:0.027740px;}
.ls10{letter-spacing:0.049631px;}
.ls0{letter-spacing:0.053947px;}
.ls5{letter-spacing:0.088147px;}
.ls15{letter-spacing:0.099805px;}
.ls3{letter-spacing:0.106534px;}
.ls2{letter-spacing:0.194025px;}
.ls6{letter-spacing:0.383859px;}
.lsb{letter-spacing:0.383863px;}
.ls4{letter-spacing:0.397861px;}
.ls13{letter-spacing:0.403101px;}
.lse{letter-spacing:0.644931px;}
.lsd{letter-spacing:0.728446px;}
.ls7{letter-spacing:9.377667px;}
.ls8{letter-spacing:18.737681px;}
.ls16{letter-spacing:68.416304px;}
.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:-71.929350px;}
.ws8{word-spacing:-66.174750px;}
.ws7{word-spacing:-59.701050px;}
.ws6{word-spacing:-18.036285px;}
.ws1{word-spacing:-17.982338px;}
.ws9{word-spacing:-16.543688px;}
.ws5{word-spacing:-14.925263px;}
.ws3{word-spacing:-14.206050px;}
.ws0{word-spacing:-10.429729px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-6.946496px;}
._18{margin-left:-5.397353px;}
._1{margin-left:-4.376174px;}
._0{margin-left:-2.524716px;}
._2{margin-left:-1.178201px;}
._3{width:1.495467px;}
._5{width:2.798417px;}
._4{width:3.830772px;}
._8{width:4.927160px;}
._a{width:6.147869px;}
._b{width:7.303481px;}
._11{width:8.407641px;}
._e{width:9.539302px;}
._d{width:10.825648px;}
._13{width:11.832659px;}
._f{width:12.839108px;}
._6{width:14.259994px;}
._7{width:15.537582px;}
._12{width:16.543750px;}
._1e{width:17.867182px;}
._c{width:19.205698px;}
._9{width:20.661987px;}
._10{width:21.763722px;}
._19{width:23.576361px;}
._1a{width:25.856511px;}
._1b{width:27.063418px;}
._15{width:29.141297px;}
._14{width:30.426677px;}
._17{width:38.986270px;}
._1d{width:41.525502px;}
._1c{width:42.601029px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.718915px;}
.fs5{font-size:48.192300px;}
.fs3{font-size:56.824200px;}
.fs6{font-size:59.701050px;}
.fs4{font-size:66.174750px;}
.fs7{font-size:69.938217px;}
.fs0{font-size:71.929350px;}
.fs1{font-size:84.157196px;}
.y0{bottom:0.000000px;}
.y3{bottom:30.960022px;}
.y2{bottom:51.120002px;}
.y80{bottom:80.639992px;}
.ya4{bottom:82.080025px;}
.y70{bottom:83.879998px;}
.y23{bottom:89.820030px;}
.ye0{bottom:92.519989px;}
.y46{bottom:95.759994px;}
.y8f{bottom:97.019989px;}
.y8d{bottom:97.379998px;}
.y7f{bottom:98.460022px;}
.ydb{bottom:98.639992px;}
.y6e{bottom:100.259994px;}
.ya3{bottom:100.799973px;}
.y61{bottom:103.320030px;}
.yb5{bottom:104.580025px;}
.y22{bottom:109.259994px;}
.ydf{bottom:110.519989px;}
.y92{bottom:113.580025px;}
.y8e{bottom:115.019989px;}
.y45{bottom:115.379998px;}
.yda{bottom:116.639992px;}
.y8c{bottom:116.820030px;}
.ya2{bottom:117.360008px;}
.y6d{bottom:119.879998px;}
.yb4{bottom:122.580025px;}
.y60{bottom:122.759994px;}
.yde{bottom:128.519989px;}
.y21{bottom:128.879998px;}
.y91{bottom:130.139992px;}
.y100{bottom:133.019989px;}
.ya1{bottom:133.740006px;}
.yd9{bottom:134.639992px;}
.y44{bottom:134.820030px;}
.y8b{bottom:136.259994px;}
.y6c{bottom:139.320030px;}
.yb3{bottom:140.580025px;}
.y5f{bottom:142.379998px;}
.ydd{bottom:146.519989px;}
.y90{bottom:147.960022px;}
.y20{bottom:148.500000px;}
.ya0{bottom:150.299973px;}
.yff{bottom:151.019989px;}
.yd8{bottom:152.639992px;}
.y43{bottom:154.259994px;}
.y8a{bottom:155.879998px;}
.yb2{bottom:158.580025px;}
.y6b{bottom:158.759994px;}
.y5e{bottom:161.820030px;}
.y9f{bottom:166.860008px;}
.yfe{bottom:169.019989px;}
.ydc{bottom:169.919975px;}
.yd7{bottom:170.639992px;}
.y1f{bottom:172.259994px;}
.y42{bottom:173.879998px;}
.y89{bottom:175.320030px;}
.yb1{bottom:176.580025px;}
.y6a{bottom:178.379998px;}
.y5d{bottom:181.259994px;}
.y9e{bottom:183.240006px;}
.yfd{bottom:187.019989px;}
.yd6{bottom:188.639992px;}
.y1e{bottom:191.879998px;}
.y41{bottom:193.320030px;}
.yb0{bottom:194.580025px;}
.y88{bottom:194.759994px;}
.y69{bottom:197.820030px;}
.y9d{bottom:199.799973px;}
.y5c{bottom:200.879998px;}
.yfc{bottom:205.019989px;}
.yd5{bottom:206.639992px;}
.y1d{bottom:211.320030px;}
.yaf{bottom:212.580025px;}
.y40{bottom:212.759994px;}
.y87{bottom:214.019989px;}
.y9c{bottom:216.360008px;}
.y68{bottom:217.259994px;}
.y5b{bottom:220.320030px;}
.yd4{bottom:224.639992px;}
.yfb{bottom:227.519989px;}
.yae{bottom:230.580025px;}
.y1c{bottom:230.759994px;}
.y86{bottom:232.019989px;}
.y3f{bottom:232.379998px;}
.y9b{bottom:232.740006px;}
.y67{bottom:236.879998px;}
.y6f{bottom:238.320030px;}
.y5a{bottom:239.759994px;}
.yd3{bottom:242.639992px;}
.yfa{bottom:245.519989px;}
.yad{bottom:248.580025px;}
.y9a{bottom:249.299973px;}
.y1b{bottom:250.379998px;}
.y3e{bottom:251.820030px;}
.y85{bottom:254.519989px;}
.y66{bottom:256.320030px;}
.y59{bottom:259.379998px;}
.yd2{bottom:260.639992px;}
.y99{bottom:265.860008px;}
.yac{bottom:266.580025px;}
.yf9{bottom:268.019989px;}
.y1a{bottom:269.820030px;}
.y3d{bottom:271.259994px;}
.y84{bottom:272.519989px;}
.y65{bottom:275.759994px;}
.yd1{bottom:278.639992px;}
.y7e{bottom:278.820030px;}
.y98{bottom:283.679970px;}
.yab{bottom:284.580025px;}
.y19{bottom:289.259994px;}
.y83{bottom:290.519989px;}
.y3c{bottom:290.879998px;}
.y64{bottom:295.379998px;}
.yd0{bottom:296.639992px;}
.y58{bottom:296.819995px;}
.y7d{bottom:298.259994px;}
.yaa{bottom:302.579990px;}
.yf8{bottom:308.519989px;}
.y18{bottom:308.879998px;}
.y3b{bottom:310.319995px;}
.y82{bottom:313.019989px;}
.ycf{bottom:314.639992px;}
.y63{bottom:314.819995px;}
.y57{bottom:316.439999px;}
.y7c{bottom:317.879998px;}
.ya9{bottom:320.579990px;}
.yf7{bottom:326.519989px;}
.y17{bottom:328.319995px;}
.y3a{bottom:329.759994px;}
.y81{bottom:331.920010px;}
.yce{bottom:332.639992px;}
.y62{bottom:334.259994px;}
.ya5{bottom:335.879998px;}
.y7b{bottom:337.319995px;}
.ya8{bottom:338.579990px;}
.yf6{bottom:344.519989px;}
.y16{bottom:347.759994px;}
.y39{bottom:349.379998px;}
.ycd{bottom:350.639992px;}
.y56{bottom:353.879998px;}
.ya7{bottom:356.579990px;}
.y7a{bottom:356.759994px;}
.yf5{bottom:362.519989px;}
.y15{bottom:367.379998px;}
.ycc{bottom:368.639992px;}
.y38{bottom:368.819995px;}
.y55{bottom:373.319995px;}
.ya6{bottom:374.579990px;}
.y79{bottom:376.379998px;}
.y107{bottom:379.259994px;}
.yf4{bottom:380.519989px;}
.ycb{bottom:386.639992px;}
.y14{bottom:386.819995px;}
.y37{bottom:388.259994px;}
.y54{bottom:392.759994px;}
.y78{bottom:395.819995px;}
.yf3{bottom:398.519989px;}
.yca{bottom:404.639992px;}
.y13{bottom:406.259994px;}
.y36{bottom:407.879998px;}
.y53{bottom:412.379998px;}
.y77{bottom:415.259994px;}
.yf2{bottom:416.519989px;}
.y106{bottom:418.139992px;}
.yc9{bottom:422.639992px;}
.y12{bottom:425.879998px;}
.y35{bottom:427.319995px;}
.y52{bottom:431.819995px;}
.yf1{bottom:434.519989px;}
.y76{bottom:434.879998px;}
.yc8{bottom:440.639992px;}
.y11{bottom:445.319995px;}
.y34{bottom:446.759994px;}
.y51{bottom:451.259994px;}
.yf0{bottom:452.519989px;}
.y75{bottom:454.319995px;}
.yc7{bottom:458.639992px;}
.y10{bottom:464.759994px;}
.y33{bottom:466.379998px;}
.yef{bottom:470.519989px;}
.y50{bottom:470.879998px;}
.y74{bottom:473.759994px;}
.yc6{bottom:476.639992px;}
.yf{bottom:484.379998px;}
.y32{bottom:485.819995px;}
.yee{bottom:488.519989px;}
.y4f{bottom:490.319995px;}
.y93{bottom:491.759994px;}
.y73{bottom:493.379998px;}
.yc5{bottom:494.639992px;}
.y105{bottom:499.139992px;}
.ye{bottom:503.819995px;}
.y31{bottom:505.259994px;}
.yed{bottom:506.519989px;}
.y4e{bottom:509.759994px;}
.yc4{bottom:512.639992px;}
.y97{bottom:512.819995px;}
.y104{bottom:521.639992px;}
.yd{bottom:523.259994px;}
.yec{bottom:524.519989px;}
.y30{bottom:524.879998px;}
.y4d{bottom:529.379998px;}
.yc3{bottom:530.639992px;}
.y72{bottom:530.819995px;}
.y96{bottom:532.259994px;}
.y103{bottom:539.639992px;}
.yeb{bottom:542.519989px;}
.yc{bottom:542.879998px;}
.y2f{bottom:544.319996px;}
.yc2{bottom:548.639992px;}
.y4c{bottom:548.819996px;}
.y71{bottom:550.439999px;}
.y95{bottom:551.879998px;}
.y102{bottom:557.639992px;}
.yea{bottom:560.519989px;}
.yb{bottom:562.319996px;}
.y2e{bottom:563.759994px;}
.yc1{bottom:566.639992px;}
.y4b{bottom:568.259994px;}
.ye9{bottom:578.520006px;}
.y101{bottom:580.139992px;}
.ya{bottom:581.759994px;}
.y2d{bottom:583.379998px;}
.yc0{bottom:584.639992px;}
.y4a{bottom:587.879998px;}
.y94{bottom:589.319996px;}
.ye8{bottom:601.020006px;}
.y9{bottom:601.379998px;}
.ybf{bottom:602.639992px;}
.y2c{bottom:602.819996px;}
.y49{bottom:607.319996px;}
.ybe{bottom:620.639992px;}
.y8{bottom:621.000000px;}
.y2b{bottom:622.259994px;}
.ye7{bottom:623.520006px;}
.y48{bottom:626.759994px;}
.ybd{bottom:638.639992px;}
.y2a{bottom:641.879998px;}
.ye6{bottom:646.020006px;}
.y47{bottom:646.379998px;}
.y7{bottom:649.439999px;}
.ybc{bottom:656.639992px;}
.ye5{bottom:664.020006px;}
.y29{bottom:665.819996px;}
.ybb{bottom:674.639992px;}
.y6{bottom:677.879998px;}
.ye4{bottom:682.020006px;}
.y28{bottom:685.259994px;}
.yba{bottom:692.639992px;}
.y5{bottom:697.500000px;}
.ye3{bottom:700.020006px;}
.y27{bottom:704.879998px;}
.yb9{bottom:710.639992px;}
.ye2{bottom:718.020006px;}
.y26{bottom:724.319996px;}
.y4{bottom:726.120002px;}
.yb8{bottom:728.640000px;}
.ye1{bottom:740.519998px;}
.y25{bottom:743.760003px;}
.yb7{bottom:746.640000px;}
.y24{bottom:763.379998px;}
.yb6{bottom:764.640000px;}
.y1{bottom:805.860000px;}
.hb{height:49.993799px;}
.he{height:51.888608px;}
.h12{height:52.022142px;}
.hc{height:55.414891px;}
.h10{height:55.447203px;}
.h6{height:56.546022px;}
.h11{height:57.515164px;}
.h13{height:58.600576px;}
.h1{height:60.233806px;}
.h3{height:60.268928px;}
.hf{height:61.009901px;}
.hd{height:61.009906px;}
.ha{height:61.009973px;}
.h7{height:62.295522px;}
.h8{height:62.295526px;}
.h5{height:62.295594px;}
.h4{height:62.315892px;}
.h9{height:62.516720px;}
.h2{height:70.514525px;}
.h0{height:864.000000px;}
.w0{width:540.000000px;}
.x0{left:0.000000px;}
.xd{left:63.899999px;}
.x9{left:85.140000px;}
.x13{left:97.560001px;}
.x11{left:101.700002px;}
.x8{left:106.379998px;}
.x14{left:111.060001px;}
.x19{left:129.959997px;}
.x18{left:131.400003px;}
.x4{left:141.659998px;}
.xe{left:146.520006px;}
.x6{left:178.740006px;}
.xa{left:195.840002px;}
.x12{left:215.460005px;}
.x5{left:217.080008px;}
.x7{left:233.639992px;}
.x16{left:258.300007px;}
.xb{left:268.020006px;}
.xc{left:276.479994px;}
.xf{left:279.900003px;}
.x1{left:287.099997px;}
.x2{left:289.259994px;}
.x3{left:297.720017px;}
.x15{left:301.139992px;}
.x17{left:464.220017px;}
.x10{left:469.800007px;}
@media print{
.v3{vertical-align:-68.479980pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440064pt;}
.v1{vertical-align:24.320004pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000230pt;}
.lsc{letter-spacing:0.007432pt;}
.lsf{letter-spacing:0.014888pt;}
.ls14{letter-spacing:0.014916pt;}
.ls11{letter-spacing:0.014920pt;}
.ls9{letter-spacing:0.024598pt;}
.lsa{letter-spacing:0.024658pt;}
.ls10{letter-spacing:0.044116pt;}
.ls0{letter-spacing:0.047953pt;}
.ls5{letter-spacing:0.078353pt;}
.ls15{letter-spacing:0.088715pt;}
.ls3{letter-spacing:0.094697pt;}
.ls2{letter-spacing:0.172466pt;}
.ls6{letter-spacing:0.341208pt;}
.lsb{letter-spacing:0.341212pt;}
.ls4{letter-spacing:0.353654pt;}
.ls13{letter-spacing:0.358312pt;}
.lse{letter-spacing:0.573272pt;}
.lsd{letter-spacing:0.647508pt;}
.ls7{letter-spacing:8.335704pt;}
.ls8{letter-spacing:16.655716pt;}
.ls16{letter-spacing:60.814492pt;}
.ws4{word-spacing:-63.937200pt;}
.ws8{word-spacing:-58.822000pt;}
.ws7{word-spacing:-53.067600pt;}
.ws6{word-spacing:-16.032253pt;}
.ws1{word-spacing:-15.984300pt;}
.ws9{word-spacing:-14.705500pt;}
.ws5{word-spacing:-13.266900pt;}
.ws3{word-spacing:-12.627600pt;}
.ws0{word-spacing:-9.270870pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-6.174663pt;}
._18{margin-left:-4.797648pt;}
._1{margin-left:-3.889933pt;}
._0{margin-left:-2.244192pt;}
._2{margin-left:-1.047290pt;}
._3{width:1.329304pt;}
._5{width:2.487482pt;}
._4{width:3.405130pt;}
._8{width:4.379698pt;}
._a{width:5.464773pt;}
._b{width:6.491983pt;}
._11{width:7.473459pt;}
._e{width:8.479380pt;}
._d{width:9.622798pt;}
._13{width:10.517919pt;}
._f{width:11.412540pt;}
._6{width:12.675550pt;}
._7{width:13.811184pt;}
._12{width:14.705556pt;}
._1e{width:15.881940pt;}
._c{width:17.071732pt;}
._9{width:18.366210pt;}
._10{width:19.345530pt;}
._19{width:20.956765pt;}
._1a{width:22.983565pt;}
._1b{width:24.056371pt;}
._15{width:25.903376pt;}
._14{width:27.045935pt;}
._17{width:34.654462pt;}
._1d{width:36.911557pt;}
._1c{width:37.867582pt;}
.fs2{font-size:37.083480pt;}
.fs5{font-size:42.837600pt;}
.fs3{font-size:50.510400pt;}
.fs6{font-size:53.067600pt;}
.fs4{font-size:58.822000pt;}
.fs7{font-size:62.167304pt;}
.fs0{font-size:63.937200pt;}
.fs1{font-size:74.806396pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:27.520020pt;}
.y2{bottom:45.440002pt;}
.y80{bottom:71.679993pt;}
.ya4{bottom:72.960022pt;}
.y70{bottom:74.559998pt;}
.y23{bottom:79.840027pt;}
.ye0{bottom:82.239990pt;}
.y46{bottom:85.119995pt;}
.y8f{bottom:86.239990pt;}
.y8d{bottom:86.559998pt;}
.y7f{bottom:87.520020pt;}
.ydb{bottom:87.679993pt;}
.y6e{bottom:89.119995pt;}
.ya3{bottom:89.599976pt;}
.y61{bottom:91.840027pt;}
.yb5{bottom:92.960022pt;}
.y22{bottom:97.119995pt;}
.ydf{bottom:98.239990pt;}
.y92{bottom:100.960022pt;}
.y8e{bottom:102.239990pt;}
.y45{bottom:102.559998pt;}
.yda{bottom:103.679993pt;}
.y8c{bottom:103.840027pt;}
.ya2{bottom:104.320007pt;}
.y6d{bottom:106.559998pt;}
.yb4{bottom:108.960022pt;}
.y60{bottom:109.119995pt;}
.yde{bottom:114.239990pt;}
.y21{bottom:114.559998pt;}
.y91{bottom:115.679993pt;}
.y100{bottom:118.239990pt;}
.ya1{bottom:118.880005pt;}
.yd9{bottom:119.679993pt;}
.y44{bottom:119.840027pt;}
.y8b{bottom:121.119995pt;}
.y6c{bottom:123.840027pt;}
.yb3{bottom:124.960022pt;}
.y5f{bottom:126.559998pt;}
.ydd{bottom:130.239990pt;}
.y90{bottom:131.520020pt;}
.y20{bottom:132.000000pt;}
.ya0{bottom:133.599976pt;}
.yff{bottom:134.239990pt;}
.yd8{bottom:135.679993pt;}
.y43{bottom:137.119995pt;}
.y8a{bottom:138.559998pt;}
.yb2{bottom:140.960022pt;}
.y6b{bottom:141.119995pt;}
.y5e{bottom:143.840027pt;}
.y9f{bottom:148.320007pt;}
.yfe{bottom:150.239990pt;}
.ydc{bottom:151.039978pt;}
.yd7{bottom:151.679993pt;}
.y1f{bottom:153.119995pt;}
.y42{bottom:154.559998pt;}
.y89{bottom:155.840027pt;}
.yb1{bottom:156.960022pt;}
.y6a{bottom:158.559998pt;}
.y5d{bottom:161.119995pt;}
.y9e{bottom:162.880005pt;}
.yfd{bottom:166.239990pt;}
.yd6{bottom:167.679993pt;}
.y1e{bottom:170.559998pt;}
.y41{bottom:171.840027pt;}
.yb0{bottom:172.960022pt;}
.y88{bottom:173.119995pt;}
.y69{bottom:175.840027pt;}
.y9d{bottom:177.599976pt;}
.y5c{bottom:178.559998pt;}
.yfc{bottom:182.239990pt;}
.yd5{bottom:183.679993pt;}
.y1d{bottom:187.840027pt;}
.yaf{bottom:188.960022pt;}
.y40{bottom:189.119995pt;}
.y87{bottom:190.239990pt;}
.y9c{bottom:192.320007pt;}
.y68{bottom:193.119995pt;}
.y5b{bottom:195.840027pt;}
.yd4{bottom:199.679993pt;}
.yfb{bottom:202.239990pt;}
.yae{bottom:204.960022pt;}
.y1c{bottom:205.119995pt;}
.y86{bottom:206.239990pt;}
.y3f{bottom:206.559998pt;}
.y9b{bottom:206.880005pt;}
.y67{bottom:210.559998pt;}
.y6f{bottom:211.840027pt;}
.y5a{bottom:213.119995pt;}
.yd3{bottom:215.679993pt;}
.yfa{bottom:218.239990pt;}
.yad{bottom:220.960022pt;}
.y9a{bottom:221.599976pt;}
.y1b{bottom:222.559998pt;}
.y3e{bottom:223.840027pt;}
.y85{bottom:226.239990pt;}
.y66{bottom:227.840027pt;}
.y59{bottom:230.559998pt;}
.yd2{bottom:231.679993pt;}
.y99{bottom:236.320007pt;}
.yac{bottom:236.960022pt;}
.yf9{bottom:238.239990pt;}
.y1a{bottom:239.840027pt;}
.y3d{bottom:241.119995pt;}
.y84{bottom:242.239990pt;}
.y65{bottom:245.119995pt;}
.yd1{bottom:247.679993pt;}
.y7e{bottom:247.840027pt;}
.y98{bottom:252.159973pt;}
.yab{bottom:252.960022pt;}
.y19{bottom:257.119995pt;}
.y83{bottom:258.239990pt;}
.y3c{bottom:258.559998pt;}
.y64{bottom:262.559998pt;}
.yd0{bottom:263.679993pt;}
.y58{bottom:263.839996pt;}
.y7d{bottom:265.119995pt;}
.yaa{bottom:268.959991pt;}
.yf8{bottom:274.239990pt;}
.y18{bottom:274.559998pt;}
.y3b{bottom:275.839996pt;}
.y82{bottom:278.239990pt;}
.ycf{bottom:279.679993pt;}
.y63{bottom:279.839996pt;}
.y57{bottom:281.279999pt;}
.y7c{bottom:282.559998pt;}
.ya9{bottom:284.959991pt;}
.yf7{bottom:290.239990pt;}
.y17{bottom:291.839996pt;}
.y3a{bottom:293.119995pt;}
.y81{bottom:295.040009pt;}
.yce{bottom:295.679993pt;}
.y62{bottom:297.119995pt;}
.ya5{bottom:298.559998pt;}
.y7b{bottom:299.839996pt;}
.ya8{bottom:300.959991pt;}
.yf6{bottom:306.239990pt;}
.y16{bottom:309.119995pt;}
.y39{bottom:310.559998pt;}
.ycd{bottom:311.679993pt;}
.y56{bottom:314.559998pt;}
.ya7{bottom:316.959991pt;}
.y7a{bottom:317.119995pt;}
.yf5{bottom:322.239990pt;}
.y15{bottom:326.559998pt;}
.ycc{bottom:327.679993pt;}
.y38{bottom:327.839996pt;}
.y55{bottom:331.839996pt;}
.ya6{bottom:332.959991pt;}
.y79{bottom:334.559998pt;}
.y107{bottom:337.119995pt;}
.yf4{bottom:338.239990pt;}
.ycb{bottom:343.679993pt;}
.y14{bottom:343.839996pt;}
.y37{bottom:345.119995pt;}
.y54{bottom:349.119995pt;}
.y78{bottom:351.839996pt;}
.yf3{bottom:354.239990pt;}
.yca{bottom:359.679993pt;}
.y13{bottom:361.119995pt;}
.y36{bottom:362.559998pt;}
.y53{bottom:366.559998pt;}
.y77{bottom:369.119995pt;}
.yf2{bottom:370.239990pt;}
.y106{bottom:371.679993pt;}
.yc9{bottom:375.679993pt;}
.y12{bottom:378.559998pt;}
.y35{bottom:379.839996pt;}
.y52{bottom:383.839996pt;}
.yf1{bottom:386.239990pt;}
.y76{bottom:386.559998pt;}
.yc8{bottom:391.679993pt;}
.y11{bottom:395.839996pt;}
.y34{bottom:397.119995pt;}
.y51{bottom:401.119995pt;}
.yf0{bottom:402.239990pt;}
.y75{bottom:403.839996pt;}
.yc7{bottom:407.679993pt;}
.y10{bottom:413.119995pt;}
.y33{bottom:414.559998pt;}
.yef{bottom:418.239990pt;}
.y50{bottom:418.559998pt;}
.y74{bottom:421.119995pt;}
.yc6{bottom:423.679993pt;}
.yf{bottom:430.559998pt;}
.y32{bottom:431.839996pt;}
.yee{bottom:434.239990pt;}
.y4f{bottom:435.839996pt;}
.y93{bottom:437.119995pt;}
.y73{bottom:438.559998pt;}
.yc5{bottom:439.679993pt;}
.y105{bottom:443.679993pt;}
.ye{bottom:447.839996pt;}
.y31{bottom:449.119995pt;}
.yed{bottom:450.239990pt;}
.y4e{bottom:453.119995pt;}
.yc4{bottom:455.679993pt;}
.y97{bottom:455.839996pt;}
.y104{bottom:463.679993pt;}
.yd{bottom:465.119995pt;}
.yec{bottom:466.239990pt;}
.y30{bottom:466.559998pt;}
.y4d{bottom:470.559998pt;}
.yc3{bottom:471.679993pt;}
.y72{bottom:471.839996pt;}
.y96{bottom:473.119995pt;}
.y103{bottom:479.679993pt;}
.yeb{bottom:482.239990pt;}
.yc{bottom:482.559998pt;}
.y2f{bottom:483.839996pt;}
.yc2{bottom:487.679993pt;}
.y4c{bottom:487.839996pt;}
.y71{bottom:489.279999pt;}
.y95{bottom:490.559998pt;}
.y102{bottom:495.679993pt;}
.yea{bottom:498.239990pt;}
.yb{bottom:499.839996pt;}
.y2e{bottom:501.119995pt;}
.yc1{bottom:503.679993pt;}
.y4b{bottom:505.119995pt;}
.ye9{bottom:514.240005pt;}
.y101{bottom:515.679993pt;}
.ya{bottom:517.119995pt;}
.y2d{bottom:518.559998pt;}
.yc0{bottom:519.679993pt;}
.y4a{bottom:522.559998pt;}
.y94{bottom:523.839996pt;}
.ye8{bottom:534.240005pt;}
.y9{bottom:534.559998pt;}
.ybf{bottom:535.679993pt;}
.y2c{bottom:535.839996pt;}
.y49{bottom:539.839996pt;}
.ybe{bottom:551.679993pt;}
.y8{bottom:552.000000pt;}
.y2b{bottom:553.119995pt;}
.ye7{bottom:554.240005pt;}
.y48{bottom:557.119995pt;}
.ybd{bottom:567.679993pt;}
.y2a{bottom:570.559998pt;}
.ye6{bottom:574.240005pt;}
.y47{bottom:574.559998pt;}
.y7{bottom:577.279999pt;}
.ybc{bottom:583.679993pt;}
.ye5{bottom:590.240005pt;}
.y29{bottom:591.839996pt;}
.ybb{bottom:599.679993pt;}
.y6{bottom:602.559998pt;}
.ye4{bottom:606.240005pt;}
.y28{bottom:609.119995pt;}
.yba{bottom:615.679993pt;}
.y5{bottom:620.000000pt;}
.ye3{bottom:622.240005pt;}
.y27{bottom:626.559998pt;}
.yb9{bottom:631.679993pt;}
.ye2{bottom:638.240005pt;}
.y26{bottom:643.839996pt;}
.y4{bottom:645.440002pt;}
.yb8{bottom:647.680000pt;}
.ye1{bottom:658.239998pt;}
.y25{bottom:661.120003pt;}
.yb7{bottom:663.680000pt;}
.y24{bottom:678.559998pt;}
.yb6{bottom:679.680000pt;}
.y1{bottom:716.320000pt;}
.hb{height:44.438933pt;}
.he{height:46.123207pt;}
.h12{height:46.241904pt;}
.hc{height:49.257681pt;}
.h10{height:49.286402pt;}
.h6{height:50.263131pt;}
.h11{height:51.124590pt;}
.h13{height:52.089401pt;}
.h1{height:53.541161pt;}
.h3{height:53.572380pt;}
.hf{height:54.231024pt;}
.hd{height:54.231028pt;}
.ha{height:54.231088pt;}
.h7{height:55.373797pt;}
.h8{height:55.373801pt;}
.h5{height:55.373861pt;}
.h4{height:55.391904pt;}
.h9{height:55.570418pt;}
.h2{height:62.679578pt;}
.h0{height:768.000000pt;}
.w0{width:480.000000pt;}
.x0{left:0.000000pt;}
.xd{left:56.799999pt;}
.x9{left:75.680000pt;}
.x13{left:86.720001pt;}
.x11{left:90.400002pt;}
.x8{left:94.559998pt;}
.x14{left:98.720001pt;}
.x19{left:115.519997pt;}
.x18{left:116.800003pt;}
.x4{left:125.919998pt;}
.xe{left:130.240005pt;}
.x6{left:158.880005pt;}
.xa{left:174.080002pt;}
.x12{left:191.520004pt;}
.x5{left:192.960007pt;}
.x7{left:207.679993pt;}
.x16{left:229.600006pt;}
.xb{left:238.240005pt;}
.xc{left:245.759995pt;}
.xf{left:248.800003pt;}
.x1{left:255.199997pt;}
.x2{left:257.119995pt;}
.x3{left:264.640015pt;}
.x15{left:267.679993pt;}
.x17{left:412.640015pt;}
.x10{left:417.600006pt;}
}




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