
    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_0a4ca5e351409cd961d63957.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b606ac6cb98d3facf15a1e54.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.173340;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_fe7a722b59696182f1ea6d38.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917969;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_e6a2fee991fd00e0eec47643.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_218d203569b83a10bf07c923.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_81ca0cc98143747ed67645af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_28be6b8c15521c330d2c9748.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m3{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.lsa{letter-spacing:-0.367800px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.284400px;}
.ls3{letter-spacing:-0.223800px;}
.ls5{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.000011px;}
.ls2{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000006px;}
.lsf{letter-spacing:0.061800px;}
.ls11{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.172800px;}
.ls7{letter-spacing:0.247800px;}
.lsd{letter-spacing:0.265200px;}
.ls6{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.325200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-46.962480px;}
.ws13{word-spacing:-40.072032px;}
.ws1{word-spacing:-40.032000px;}
.ws1c{word-spacing:-35.230320px;}
.ws1d{word-spacing:-34.945920px;}
.ws25{word-spacing:-33.739200px;}
.ws24{word-spacing:-33.667200px;}
.ws20{word-spacing:-31.686192px;}
.ws1e{word-spacing:-30.239994px;}
.ws18{word-spacing:-30.064032px;}
.ws17{word-spacing:-30.024000px;}
.ws1a{word-spacing:-29.736000px;}
.ws1b{word-spacing:-29.696232px;}
.ws21{word-spacing:-17.236028px;}
.ws22{word-spacing:-17.192059px;}
.ws1f{word-spacing:-16.653312px;}
.ws9{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.261360px;}
.ws12{word-spacing:-0.248064px;}
.ws19{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.144000px;}
.ws11{word-spacing:0.408000px;}
.wsd{word-spacing:0.432000px;}
.ws14{word-spacing:0.864000px;}
.wse{word-spacing:0.872544px;}
.ws16{word-spacing:0.984000px;}
.ws7{word-spacing:1.008000px;}
.wsf{word-spacing:1.088208px;}
.ws10{word-spacing:1.272000px;}
.ws3{word-spacing:2.809776px;}
.ws8{word-spacing:40.176000px;}
.ws2{word-spacing:52.272000px;}
.ws15{word-spacing:74.016000px;}
.ws23{word-spacing:158.241656px;}
.ws5{word-spacing:173.991240px;}
.ws6{word-spacing:174.015936px;}
.ws4{word-spacing:174.995856px;}
._11{margin-left:-3726.419834px;}
._5{margin-left:-17.601840px;}
._f{margin-left:-15.731520px;}
._15{margin-left:-14.500800px;}
._4{margin-left:-13.176000px;}
._7{margin-left:-10.800000px;}
._6{margin-left:-7.992000px;}
._1{margin-left:-6.718320px;}
._e{margin-left:-4.507200px;}
._2{margin-left:-3.124800px;}
._0{margin-left:-1.406160px;}
._3{width:1.093680px;}
._d{width:2.558160px;}
._c{width:3.590160px;}
._14{width:5.297845px;}
._10{width:38.974320px;}
._a{width:40.608000px;}
._9{width:42.746160px;}
._8{width:93.492000px;}
._b{width:114.168000px;}
._13{width:182.166000px;}
._12{width:202.940400px;}
.fc8{color:rgb(0,0,153);}
.fc7{color:rgb(0,51,153);}
.fc3{color:transparent;}
.fc4{color:rgb(118,111,84);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(179,0,51);}
.fc6{color:rgb(251,74,24);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:57.255195px;}
.fse{font-size:59.760000px;}
.fsf{font-size:59.904000px;}
.fs11{font-size:61.841937px;}
.fs10{font-size:62.000101px;}
.fs12{font-size:99.959346px;}
.fs2{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fsa{font-size:113.760000px;}
.fs3{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fsb{font-size:138.240000px;}
.fs1{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs0{font-size:156.240000px;}
.fsd{font-size:156.384000px;}
.fs6{font-size:167.760000px;}
.fsc{font-size:167.904000px;}
.fs4{font-size:216.000000px;}
.fs7{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:10.161690px;}
.y9d{bottom:18.894762px;}
.y9b{bottom:23.796000px;}
.y5c{bottom:24.372000px;}
.y6{bottom:25.956000px;}
.y3{bottom:41.292000px;}
.y43{bottom:57.960000px;}
.y92{bottom:60.840000px;}
.y2e{bottom:61.416000px;}
.y5{bottom:61.812000px;}
.y2{bottom:75.672000px;}
.y1e{bottom:80.748000px;}
.y56{bottom:81.864000px;}
.y9e{bottom:85.922017px;}
.y29{bottom:87.624000px;}
.y3d{bottom:90.540000px;}
.y6f{bottom:92.268000px;}
.y4{bottom:97.812000px;}
.y1b{bottom:99.972000px;}
.y69{bottom:116.964000px;}
.y13{bottom:119.916000px;}
.y8f{bottom:125.532000px;}
.y5f{bottom:126.036000px;}
.y5a{bottom:126.756000px;}
.y93{bottom:127.188000px;}
.y50{bottom:127.368000px;}
.y42{bottom:128.880000px;}
.y36{bottom:129.060000px;}
.y28{bottom:130.824000px;}
.y1a{bottom:143.208000px;}
.y84{bottom:145.440000px;}
.y9{bottom:146.124000px;}
.y2d{bottom:147.852000px;}
.y68{bottom:153.000000px;}
.y40{bottom:153.180000px;}
.y14{bottom:156.885000px;}
.y31{bottom:157.830000px;}
.y3e{bottom:157.860000px;}
.y34{bottom:157.935000px;}
.y12{bottom:163.110000px;}
.ya6{bottom:166.470000px;}
.y8e{bottom:168.735000px;}
.y9f{bottom:173.660068px;}
.y41{bottom:177.480000px;}
.y3b{bottom:185.760000px;}
.y79{bottom:186.195000px;}
.y19{bottom:186.405000px;}
.y83{bottom:188.640000px;}
.y6e{bottom:191.085000px;}
.y27{bottom:192.030000px;}
.y94{bottom:193.755000px;}
.y8d{bottom:211.935000px;}
.y4e{bottom:228.240000px;}
.y78{bottom:229.395000px;}
.y18{bottom:229.605000px;}
.y82{bottom:231.840000px;}
.y2c{bottom:234.255000px;}
.y26{bottom:235.260000px;}
.ya{bottom:243.825000px;}
.y3f{bottom:248.400000px;}
.y5e{bottom:254.340000px;}
.y5b{bottom:254.625000px;}
.y8c{bottom:255.135000px;}
.y95{bottom:260.310000px;}
.ya0{bottom:261.440824px;}
.y4d{bottom:264.240000px;}
.y77{bottom:272.625000px;}
.y17{bottom:272.805000px;}
.y81{bottom:275.040000px;}
.y67{bottom:277.710000px;}
.y55{bottom:282.240000px;}
.y6d{bottom:289.725000px;}
.y25{bottom:296.460000px;}
.y8b{bottom:298.365000px;}
.y33{bottom:299.160000px;}
.y4c{bottom:300.240000px;}
.y39{bottom:303.735000px;}
.y46{bottom:305.130000px;}
.y64{bottom:312.585000px;}
.y66{bottom:313.710000px;}
.y76{bottom:315.825000px;}
.y16{bottom:316.050000px;}
.y11{bottom:317.730000px;}
.y54{bottom:318.240000px;}
.y80{bottom:318.270000px;}
.y2b{bottom:320.685000px;}
.y96{bottom:326.445000px;}
.y4b{bottom:336.240000px;}
.yb{bottom:338.760000px;}
.y24{bottom:339.660000px;}
.y8a{bottom:341.565000px;}
.y3c{bottom:343.590000px;}
.y63{bottom:348.585000px;}
.ya1{bottom:349.189946px;}
.y65{bottom:349.710000px;}
.y37{bottom:352.335000px;}
.y53{bottom:354.240000px;}
.y58{bottom:355.140000px;}
.y75{bottom:359.025000px;}
.y15{bottom:359.250000px;}
.y10{bottom:360.975000px;}
.y7f{bottom:361.470000px;}
.y4a{bottom:372.240000px;}
.y30{bottom:378.180000px;}
.y45{bottom:381.675000px;}
.y89{bottom:384.765000px;}
.y6a{bottom:388.365000px;}
.y52{bottom:390.240000px;}
.y97{bottom:393.015000px;}
.y23{bottom:400.860000px;}
.y74{bottom:402.225000px;}
.y7e{bottom:404.670000px;}
.y5d{bottom:406.770000px;}
.y2a{bottom:407.085000px;}
.y49{bottom:408.270000px;}
.y51{bottom:426.270000px;}
.y88{bottom:427.965000px;}
.y3a{bottom:432.795000px;}
.ya2{bottom:436.970701px;}
.y22{bottom:444.090000px;}
.y48{bottom:444.270000px;}
.yc{bottom:444.960000px;}
.y73{bottom:445.425000px;}
.y7d{bottom:447.870000px;}
.y35{bottom:457.095000px;}
.y57{bottom:457.635000px;}
.y98{bottom:459.570000px;}
.y87{bottom:471.210000px;}
.y47{bottom:480.270000px;}
.y38{bottom:481.395000px;}
.y6b{bottom:487.005000px;}
.y72{bottom:488.670000px;}
.yf{bottom:490.605000px;}
.y7c{bottom:491.115000px;}
.y62{bottom:495.000000px;}
.y21{bottom:505.290000px;}
.y86{bottom:514.410000px;}
.ya3{bottom:524.704007px;}
.y99{bottom:526.140000px;}
.y71{bottom:531.870000px;}
.yd{bottom:533.370000px;}
.ye{bottom:533.805000px;}
.y7b{bottom:534.315000px;}
.y32{bottom:536.010000px;}
.y8{bottom:544.350000px;}
.y60{bottom:544.890000px;}
.y61{bottom:545.400000px;}
.y4f{bottom:546.330000px;}
.y20{bottom:548.490000px;}
.y1c{bottom:560.235000px;}
.ya4{bottom:582.196448px;}
.y6c{bottom:585.690000px;}
.y1f{bottom:591.735000px;}
.y9a{bottom:592.710000px;}
.y7a{bottom:594.150000px;}
.y59{bottom:596.550000px;}
.y2f{bottom:605.985000px;}
.y85{bottom:608.940000px;}
.y7{bottom:609.150000px;}
.y70{bottom:617.580000px;}
.y44{bottom:635.610000px;}
.y91{bottom:639.000000px;}
.y1d{bottom:646.275000px;}
.y9c{bottom:655.200000px;}
.y90{bottom:671.400000px;}
.y1{bottom:740.670000px;}
.h22{height:59.715379px;}
.h1c{height:62.327813px;}
.h1d{height:62.478000px;}
.h20{height:64.499208px;}
.h1f{height:64.664168px;}
.h1a{height:88.382812px;}
.h1b{height:88.500656px;}
.h11{height:98.399531px;}
.h12{height:98.517375px;}
.h21{height:100.740279px;}
.h3{height:104.255859px;}
.h14{height:109.816172px;}
.hb{height:112.640625px;}
.hd{height:112.790813px;}
.h4{height:116.071523px;}
.h13{height:116.210531px;}
.h15{height:133.447500px;}
.h16{height:137.287969px;}
.h17{height:137.405812px;}
.h2{height:139.007812px;}
.h6{height:150.187500px;}
.h7{height:150.337688px;}
.h18{height:150.823477px;}
.h19{height:150.962484px;}
.h1{height:162.953438px;}
.h8{height:174.968438px;}
.h5{height:195.539062px;}
.h10{height:240.480000px;}
.h9{height:275.594063px;}
.he{height:335.700000px;}
.ha{height:340.380000px;}
.hf{height:505.800000px;}
.h1e{height:619.210192px;}
.hc{height:680.580000px;}
.h0{height:810.000000px;}
.w2{width:225.360000px;}
.w3{width:1101.420000px;}
.w4{width:1178.067553px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:8.208000px;}
.x66{left:12.165043px;}
.xc{left:47.555979px;}
.x4{left:55.151979px;}
.x17{left:90.540000px;}
.x3{left:93.167979px;}
.x13{left:121.859979px;}
.x65{left:128.883832px;}
.xd{left:136.619979px;}
.x45{left:144.035979px;}
.x4a{left:148.715979px;}
.x47{left:158.789979px;}
.x44{left:159.869979px;}
.x14{left:162.359979px;}
.x31{left:169.409979px;}
.x49{left:170.849979px;}
.xe{left:177.149979px;}
.x48{left:182.009979px;}
.x62{left:184.754979px;}
.x15{left:185.759979px;}
.x1f{left:187.349979px;}
.x69{left:188.999979px;}
.x61{left:193.604979px;}
.x46{left:200.909979px;}
.x1e{left:202.289979px;}
.x20{left:212.549979px;}
.x3a{left:215.534979px;}
.x19{left:227.129979px;}
.x4b{left:229.889979px;}
.x1c{left:232.169979px;}
.x33{left:241.589979px;}
.x22{left:250.634979px;}
.x2f{left:258.689979px;}
.x34{left:267.689979px;}
.x32{left:268.949979px;}
.x30{left:278.309979px;}
.x64{left:281.414979px;}
.x6a{left:286.454979px;}
.x1{left:288.509979px;}
.x3b{left:294.404979px;}
.x39{left:300.419979px;}
.x5{left:302.114979px;}
.xa{left:310.964979px;}
.x1a{left:315.720000px;}
.x60{left:316.829979px;}
.xb{left:321.869979px;}
.x43{left:324.569979px;}
.x1b{left:368.924979px;}
.x38{left:382.679979px;}
.x67{left:385.826039px;}
.x9{left:411.044979px;}
.x37{left:412.169979px;}
.x6{left:419.759979px;}
.x12{left:427.319979px;}
.x35{left:444.629979px;}
.x7{left:477.284979px;}
.x42{left:479.309979px;}
.x8{left:497.699979px;}
.x51{left:504.104979px;}
.x4d{left:511.304979px;}
.x50{left:514.364979px;}
.x4f{left:517.244979px;}
.x41{left:520.529979px;}
.x1d{left:529.124979px;}
.x54{left:533.264979px;}
.x68{left:550.906074px;}
.x53{left:552.164979px;}
.x4e{left:563.324979px;}
.x52{left:567.464979px;}
.x2e{left:590.294979px;}
.xf{left:613.799979px;}
.x55{left:623.444979px;}
.x16{left:643.244979px;}
.x23{left:645.839979px;}
.x21{left:654.989979px;}
.x63{left:674.639979px;}
.x24{left:679.964979px;}
.x2{left:683.714979px;}
.x2d{left:692.129979px;}
.x4c{left:699.734979px;}
.x3f{left:743.039979px;}
.x40{left:772.379979px;}
.x36{left:835.814979px;}
.x10{left:872.669979px;}
.x3c{left:904.709979px;}
.x11{left:913.169979px;}
.x2b{left:928.409979px;}
.x27{left:940.289979px;}
.x2a{left:948.569979px;}
.x29{left:957.749979px;}
.x3e{left:971.714979px;}
.x3d{left:988.634979px;}
.x28{left:1027.259979px;}
.x25{left:1040.039979px;}
.x26{left:1052.099979px;}
.x5d{left:1063.694979px;}
.x5e{left:1067.654979px;}
.x57{left:1069.454979px;}
.x58{left:1082.594979px;}
.x2c{left:1085.939979px;}
.x5a{left:1087.814979px;}
.x5b{left:1099.694979px;}
.x5c{left:1111.754979px;}
.x59{left:1121.654979px;}
.x5f{left:1150.634979px;}
.x56{left:1181.009979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.326933pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.252800pt;}
.ls3{letter-spacing:-0.198933pt;}
.ls5{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.000010pt;}
.ls2{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000005pt;}
.lsf{letter-spacing:0.054933pt;}
.ls11{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.153600pt;}
.ls7{letter-spacing:0.220267pt;}
.lsd{letter-spacing:0.235733pt;}
.ls6{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.289067pt;}
.wsa{word-spacing:-41.744427pt;}
.ws13{word-spacing:-35.619584pt;}
.ws1{word-spacing:-35.584000pt;}
.ws1c{word-spacing:-31.315840pt;}
.ws1d{word-spacing:-31.063040pt;}
.ws25{word-spacing:-29.990400pt;}
.ws24{word-spacing:-29.926400pt;}
.ws20{word-spacing:-28.165504pt;}
.ws1e{word-spacing:-26.879995pt;}
.ws18{word-spacing:-26.723584pt;}
.ws17{word-spacing:-26.688000pt;}
.ws1a{word-spacing:-26.432000pt;}
.ws1b{word-spacing:-26.396651pt;}
.ws21{word-spacing:-15.320914pt;}
.ws22{word-spacing:-15.281830pt;}
.ws1f{word-spacing:-14.802944pt;}
.ws9{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.232320pt;}
.ws12{word-spacing:-0.220501pt;}
.ws19{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.128000pt;}
.ws11{word-spacing:0.362667pt;}
.wsd{word-spacing:0.384000pt;}
.ws14{word-spacing:0.768000pt;}
.wse{word-spacing:0.775595pt;}
.ws16{word-spacing:0.874667pt;}
.ws7{word-spacing:0.896000pt;}
.wsf{word-spacing:0.967296pt;}
.ws10{word-spacing:1.130667pt;}
.ws3{word-spacing:2.497579pt;}
.ws8{word-spacing:35.712000pt;}
.ws2{word-spacing:46.464000pt;}
.ws15{word-spacing:65.792000pt;}
.ws23{word-spacing:140.659249pt;}
.ws5{word-spacing:154.658880pt;}
.ws6{word-spacing:154.680832pt;}
.ws4{word-spacing:155.551872pt;}
._11{margin-left:-3312.373186pt;}
._5{margin-left:-15.646080pt;}
._f{margin-left:-13.983573pt;}
._15{margin-left:-12.889600pt;}
._4{margin-left:-11.712000pt;}
._7{margin-left:-9.600000pt;}
._6{margin-left:-7.104000pt;}
._1{margin-left:-5.971840pt;}
._e{margin-left:-4.006400pt;}
._2{margin-left:-2.777600pt;}
._0{margin-left:-1.249920pt;}
._3{width:0.972160pt;}
._d{width:2.273920pt;}
._c{width:3.191253pt;}
._14{width:4.709196pt;}
._10{width:34.643840pt;}
._a{width:36.096000pt;}
._9{width:37.996587pt;}
._8{width:83.104000pt;}
._b{width:101.482667pt;}
._13{width:161.925333pt;}
._12{width:180.391467pt;}
.fs13{font-size:50.893507pt;}
.fse{font-size:53.120000pt;}
.fsf{font-size:53.248000pt;}
.fs11{font-size:54.970611pt;}
.fs10{font-size:55.111201pt;}
.fs12{font-size:88.852752pt;}
.fs2{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fsa{font-size:101.120000pt;}
.fs3{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fsb{font-size:122.880000pt;}
.fs1{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs0{font-size:138.880000pt;}
.fsd{font-size:139.008000pt;}
.fs6{font-size:149.120000pt;}
.fsc{font-size:149.248000pt;}
.fs4{font-size:192.000000pt;}
.fs7{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:9.032613pt;}
.y9d{bottom:16.795344pt;}
.y9b{bottom:21.152000pt;}
.y5c{bottom:21.664000pt;}
.y6{bottom:23.072000pt;}
.y3{bottom:36.704000pt;}
.y43{bottom:51.520000pt;}
.y92{bottom:54.080000pt;}
.y2e{bottom:54.592000pt;}
.y5{bottom:54.944000pt;}
.y2{bottom:67.264000pt;}
.y1e{bottom:71.776000pt;}
.y56{bottom:72.768000pt;}
.y9e{bottom:76.375127pt;}
.y29{bottom:77.888000pt;}
.y3d{bottom:80.480000pt;}
.y6f{bottom:82.016000pt;}
.y4{bottom:86.944000pt;}
.y1b{bottom:88.864000pt;}
.y69{bottom:103.968000pt;}
.y13{bottom:106.592000pt;}
.y8f{bottom:111.584000pt;}
.y5f{bottom:112.032000pt;}
.y5a{bottom:112.672000pt;}
.y93{bottom:113.056000pt;}
.y50{bottom:113.216000pt;}
.y42{bottom:114.560000pt;}
.y36{bottom:114.720000pt;}
.y28{bottom:116.288000pt;}
.y1a{bottom:127.296000pt;}
.y84{bottom:129.280000pt;}
.y9{bottom:129.888000pt;}
.y2d{bottom:131.424000pt;}
.y68{bottom:136.000000pt;}
.y40{bottom:136.160000pt;}
.y14{bottom:139.453333pt;}
.y31{bottom:140.293333pt;}
.y3e{bottom:140.320000pt;}
.y34{bottom:140.386667pt;}
.y12{bottom:144.986667pt;}
.ya6{bottom:147.973333pt;}
.y8e{bottom:149.986667pt;}
.y9f{bottom:154.364505pt;}
.y41{bottom:157.760000pt;}
.y3b{bottom:165.120000pt;}
.y79{bottom:165.506667pt;}
.y19{bottom:165.693333pt;}
.y83{bottom:167.680000pt;}
.y6e{bottom:169.853333pt;}
.y27{bottom:170.693333pt;}
.y94{bottom:172.226667pt;}
.y8d{bottom:188.386667pt;}
.y4e{bottom:202.880000pt;}
.y78{bottom:203.906667pt;}
.y18{bottom:204.093333pt;}
.y82{bottom:206.080000pt;}
.y2c{bottom:208.226667pt;}
.y26{bottom:209.120000pt;}
.ya{bottom:216.733333pt;}
.y3f{bottom:220.800000pt;}
.y5e{bottom:226.080000pt;}
.y5b{bottom:226.333333pt;}
.y8c{bottom:226.786667pt;}
.y95{bottom:231.386667pt;}
.ya0{bottom:232.391843pt;}
.y4d{bottom:234.880000pt;}
.y77{bottom:242.333333pt;}
.y17{bottom:242.493333pt;}
.y81{bottom:244.480000pt;}
.y67{bottom:246.853333pt;}
.y55{bottom:250.880000pt;}
.y6d{bottom:257.533333pt;}
.y25{bottom:263.520000pt;}
.y8b{bottom:265.213333pt;}
.y33{bottom:265.920000pt;}
.y4c{bottom:266.880000pt;}
.y39{bottom:269.986667pt;}
.y46{bottom:271.226667pt;}
.y64{bottom:277.853333pt;}
.y66{bottom:278.853333pt;}
.y76{bottom:280.733333pt;}
.y16{bottom:280.933333pt;}
.y11{bottom:282.426667pt;}
.y54{bottom:282.880000pt;}
.y80{bottom:282.906667pt;}
.y2b{bottom:285.053333pt;}
.y96{bottom:290.173333pt;}
.y4b{bottom:298.880000pt;}
.yb{bottom:301.120000pt;}
.y24{bottom:301.920000pt;}
.y8a{bottom:303.613333pt;}
.y3c{bottom:305.413333pt;}
.y63{bottom:309.853333pt;}
.ya1{bottom:310.391063pt;}
.y65{bottom:310.853333pt;}
.y37{bottom:313.186667pt;}
.y53{bottom:314.880000pt;}
.y58{bottom:315.680000pt;}
.y75{bottom:319.133333pt;}
.y15{bottom:319.333333pt;}
.y10{bottom:320.866667pt;}
.y7f{bottom:321.306667pt;}
.y4a{bottom:330.880000pt;}
.y30{bottom:336.160000pt;}
.y45{bottom:339.266667pt;}
.y89{bottom:342.013333pt;}
.y6a{bottom:345.213333pt;}
.y52{bottom:346.880000pt;}
.y97{bottom:349.346667pt;}
.y23{bottom:356.320000pt;}
.y74{bottom:357.533333pt;}
.y7e{bottom:359.706667pt;}
.y5d{bottom:361.573333pt;}
.y2a{bottom:361.853333pt;}
.y49{bottom:362.906667pt;}
.y51{bottom:378.906667pt;}
.y88{bottom:380.413333pt;}
.y3a{bottom:384.706667pt;}
.ya2{bottom:388.418401pt;}
.y22{bottom:394.746667pt;}
.y48{bottom:394.906667pt;}
.yc{bottom:395.520000pt;}
.y73{bottom:395.933333pt;}
.y7d{bottom:398.106667pt;}
.y35{bottom:406.306667pt;}
.y57{bottom:406.786667pt;}
.y98{bottom:408.506667pt;}
.y87{bottom:418.853333pt;}
.y47{bottom:426.906667pt;}
.y38{bottom:427.906667pt;}
.y6b{bottom:432.893333pt;}
.y72{bottom:434.373333pt;}
.yf{bottom:436.093333pt;}
.y7c{bottom:436.546667pt;}
.y62{bottom:440.000000pt;}
.y21{bottom:449.146667pt;}
.y86{bottom:457.253333pt;}
.ya3{bottom:466.403562pt;}
.y99{bottom:467.680000pt;}
.y71{bottom:472.773333pt;}
.yd{bottom:474.106667pt;}
.ye{bottom:474.493333pt;}
.y7b{bottom:474.946667pt;}
.y32{bottom:476.453333pt;}
.y8{bottom:483.866667pt;}
.y60{bottom:484.346667pt;}
.y61{bottom:484.800000pt;}
.y4f{bottom:485.626667pt;}
.y20{bottom:487.546667pt;}
.y1c{bottom:497.986667pt;}
.ya4{bottom:517.507953pt;}
.y6c{bottom:520.613333pt;}
.y1f{bottom:525.986667pt;}
.y9a{bottom:526.853333pt;}
.y7a{bottom:528.133333pt;}
.y59{bottom:530.266667pt;}
.y2f{bottom:538.653333pt;}
.y85{bottom:541.280000pt;}
.y7{bottom:541.466667pt;}
.y70{bottom:548.960000pt;}
.y44{bottom:564.986667pt;}
.y91{bottom:568.000000pt;}
.y1d{bottom:574.466667pt;}
.y9c{bottom:582.400000pt;}
.y90{bottom:596.800000pt;}
.y1{bottom:658.373333pt;}
.h22{height:53.080337pt;}
.h1c{height:55.402500pt;}
.h1d{height:55.536000pt;}
.h20{height:57.332629pt;}
.h1f{height:57.479260pt;}
.h1a{height:78.562500pt;}
.h1b{height:78.667250pt;}
.h11{height:87.466250pt;}
.h12{height:87.571000pt;}
.h21{height:89.546914pt;}
.h3{height:92.671875pt;}
.h14{height:97.614375pt;}
.hb{height:100.125000pt;}
.hd{height:100.258500pt;}
.h4{height:103.174687pt;}
.h13{height:103.298250pt;}
.h15{height:118.620000pt;}
.h16{height:122.033750pt;}
.h17{height:122.138500pt;}
.h2{height:123.562500pt;}
.h6{height:133.500000pt;}
.h7{height:133.633500pt;}
.h18{height:134.065313pt;}
.h19{height:134.188875pt;}
.h1{height:144.847500pt;}
.h8{height:155.527500pt;}
.h5{height:173.812500pt;}
.h10{height:213.760000pt;}
.h9{height:244.972500pt;}
.he{height:298.400000pt;}
.ha{height:302.560000pt;}
.hf{height:449.600000pt;}
.h1e{height:550.409059pt;}
.hc{height:604.960000pt;}
.h0{height:720.000000pt;}
.w2{width:200.320000pt;}
.w3{width:979.040000pt;}
.w4{width:1047.171158pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.296000pt;}
.x66{left:10.813372pt;}
.xc{left:42.271981pt;}
.x4{left:49.023981pt;}
.x17{left:80.480000pt;}
.x3{left:82.815981pt;}
.x13{left:108.319981pt;}
.x65{left:114.563406pt;}
.xd{left:121.439981pt;}
.x45{left:128.031981pt;}
.x4a{left:132.191981pt;}
.x47{left:141.146648pt;}
.x44{left:142.106648pt;}
.x14{left:144.319981pt;}
.x31{left:150.586648pt;}
.x49{left:151.866648pt;}
.xe{left:157.466648pt;}
.x48{left:161.786648pt;}
.x62{left:164.226648pt;}
.x15{left:165.119981pt;}
.x1f{left:166.533314pt;}
.x69{left:167.999981pt;}
.x61{left:172.093314pt;}
.x46{left:178.586648pt;}
.x1e{left:179.813314pt;}
.x20{left:188.933314pt;}
.x3a{left:191.586648pt;}
.x19{left:201.893314pt;}
.x4b{left:204.346648pt;}
.x1c{left:206.373314pt;}
.x33{left:214.746648pt;}
.x22{left:222.786648pt;}
.x2f{left:229.946648pt;}
.x34{left:237.946648pt;}
.x32{left:239.066648pt;}
.x30{left:247.386648pt;}
.x64{left:250.146648pt;}
.x6a{left:254.626648pt;}
.x1{left:256.453314pt;}
.x3b{left:261.693314pt;}
.x39{left:267.039981pt;}
.x5{left:268.546648pt;}
.xa{left:276.413314pt;}
.x1a{left:280.640000pt;}
.x60{left:281.626648pt;}
.xb{left:286.106648pt;}
.x43{left:288.506648pt;}
.x1b{left:327.933314pt;}
.x38{left:340.159981pt;}
.x67{left:342.956479pt;}
.x9{left:365.373314pt;}
.x37{left:366.373314pt;}
.x6{left:373.119981pt;}
.x12{left:379.839981pt;}
.x35{left:395.226648pt;}
.x7{left:424.253314pt;}
.x42{left:426.053314pt;}
.x8{left:442.399981pt;}
.x51{left:448.093314pt;}
.x4d{left:454.493314pt;}
.x50{left:457.213314pt;}
.x4f{left:459.773314pt;}
.x41{left:462.693314pt;}
.x1d{left:470.333314pt;}
.x54{left:474.013314pt;}
.x68{left:489.694288pt;}
.x53{left:490.813314pt;}
.x4e{left:500.733314pt;}
.x52{left:504.413314pt;}
.x2e{left:524.706648pt;}
.xf{left:545.599981pt;}
.x55{left:554.173314pt;}
.x16{left:571.773314pt;}
.x23{left:574.079981pt;}
.x21{left:582.213314pt;}
.x63{left:599.679981pt;}
.x24{left:604.413314pt;}
.x2{left:607.746648pt;}
.x2d{left:615.226648pt;}
.x4c{left:621.986648pt;}
.x3f{left:660.479981pt;}
.x40{left:686.559981pt;}
.x36{left:742.946648pt;}
.x10{left:775.706648pt;}
.x3c{left:804.186648pt;}
.x11{left:811.706648pt;}
.x2b{left:825.253314pt;}
.x27{left:835.813314pt;}
.x2a{left:843.173314pt;}
.x29{left:851.333314pt;}
.x3e{left:863.746648pt;}
.x3d{left:878.786648pt;}
.x28{left:913.119981pt;}
.x25{left:924.479981pt;}
.x26{left:935.199981pt;}
.x5d{left:945.506648pt;}
.x5e{left:949.026648pt;}
.x57{left:950.626648pt;}
.x58{left:962.306648pt;}
.x2c{left:965.279981pt;}
.x5a{left:966.946648pt;}
.x5b{left:977.506648pt;}
.x5c{left:988.226648pt;}
.x59{left:997.026648pt;}
.x5f{left:1022.786648pt;}
.x56{left:1049.786648pt;}
}




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