
    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_2cc1eb0824328642890c26ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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);}
.v4{vertical-align:-15.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.500000px;}
.v3{vertical-align:15.000000px;}
.ls6{letter-spacing:-1.056000px;}
.ls7{letter-spacing:-0.518400px;}
.ls15{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.010800px;}
.ls14{letter-spacing:-0.008000px;}
.ls13{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003960px;}
.ls2{letter-spacing:0.004020px;}
.ls1{letter-spacing:0.004200px;}
.lsc{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.010800px;}
.lsf{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.032400px;}
.ls11{letter-spacing:0.139500px;}
.lsd{letter-spacing:3.432599px;}
.ls10{letter-spacing:4.059600px;}
.lse{letter-spacing:5.452199px;}
.lsa{letter-spacing:5.748000px;}
.ls8{letter-spacing:11.748000px;}
.ls9{letter-spacing:17.748000px;}
.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;}
}
.ws5{word-spacing:-0.140400px;}
.ws4{word-spacing:-0.108000px;}
.ws1{word-spacing:-0.084000px;}
.ws40{word-spacing:-0.075600px;}
.ws2{word-spacing:-0.066000px;}
.wsc{word-spacing:-0.064800px;}
.ws35{word-spacing:-0.059400px;}
.ws3{word-spacing:-0.054000px;}
.ws12{word-spacing:-0.048000px;}
.ws4f{word-spacing:-0.043200px;}
.ws44{word-spacing:-0.040000px;}
.ws24{word-spacing:-0.036000px;}
.ws2a{word-spacing:-0.032400px;}
.ws5b{word-spacing:-0.032000px;}
.ws50{word-spacing:-0.028800px;}
.ws13{word-spacing:0.000000px;}
.ws5f{word-spacing:0.162000px;}
.wsb{word-spacing:0.464400px;}
.ws0{word-spacing:0.990000px;}
.ws51{word-spacing:5.481600px;}
.ws2f{word-spacing:8.083800px;}
.ws22{word-spacing:8.105400px;}
.ws41{word-spacing:8.116200px;}
.ws1e{word-spacing:8.121600px;}
.ws38{word-spacing:8.132400px;}
.ws3f{word-spacing:8.137800px;}
.ws1c{word-spacing:8.148600px;}
.ws16{word-spacing:8.154000px;}
.ws26{word-spacing:8.159400px;}
.ws3b{word-spacing:8.164800px;}
.ws1d{word-spacing:8.170200px;}
.ws19{word-spacing:8.191800px;}
.ws33{word-spacing:8.202600px;}
.ws17{word-spacing:8.213400px;}
.ws1f{word-spacing:8.224200px;}
.wsf{word-spacing:8.235000px;}
.ws49{word-spacing:8.240400px;}
.ws23{word-spacing:8.262000px;}
.ws11{word-spacing:8.267400px;}
.ws27{word-spacing:8.272800px;}
.ws55{word-spacing:8.278200px;}
.ws2e{word-spacing:8.283600px;}
.ws58{word-spacing:8.289000px;}
.ws6{word-spacing:8.305200px;}
.ws5a{word-spacing:8.316000px;}
.ws57{word-spacing:8.321400px;}
.ws3d{word-spacing:8.326800px;}
.ws53{word-spacing:8.332200px;}
.ws9{word-spacing:8.337600px;}
.ws59{word-spacing:8.343000px;}
.ws10{word-spacing:8.364600px;}
.ws34{word-spacing:8.370000px;}
.ws3a{word-spacing:8.380800px;}
.ws52{word-spacing:8.391600px;}
.ws36{word-spacing:8.397000px;}
.ws37{word-spacing:8.402400px;}
.ws4d{word-spacing:8.445600px;}
.ws2d{word-spacing:8.451000px;}
.ws45{word-spacing:8.461800px;}
.ws14{word-spacing:8.472600px;}
.ws3c{word-spacing:8.510400px;}
.ws4b{word-spacing:8.515800px;}
.ws46{word-spacing:8.526600px;}
.ws1a{word-spacing:8.532000px;}
.ws5c{word-spacing:8.548200px;}
.ws3e{word-spacing:8.553600px;}
.wse{word-spacing:8.569800px;}
.ws48{word-spacing:8.591400px;}
.ws1b{word-spacing:8.634600px;}
.ws47{word-spacing:8.640000px;}
.ws2b{word-spacing:8.656200px;}
.ws2c{word-spacing:8.721000px;}
.ws15{word-spacing:8.742600px;}
.wsd{word-spacing:8.748000px;}
.ws30{word-spacing:8.775000px;}
.ws4e{word-spacing:8.883000px;}
.ws39{word-spacing:8.920800px;}
.ws4a{word-spacing:8.937000px;}
.ws31{word-spacing:9.034200px;}
.ws32{word-spacing:9.045000px;}
.ws7{word-spacing:9.099000px;}
.ws25{word-spacing:9.196200px;}
.ws60{word-spacing:9.390600px;}
.ws29{word-spacing:9.466200px;}
.ws54{word-spacing:9.498600px;}
.ws5e{word-spacing:9.612000px;}
.ws4c{word-spacing:10.281600px;}
.ws8{word-spacing:10.411200px;}
.ws18{word-spacing:10.519200px;}
.ws56{word-spacing:10.837800px;}
.ws20{word-spacing:10.891800px;}
.ws28{word-spacing:11.739600px;}
.wsa{word-spacing:11.804400px;}
.ws43{word-spacing:12.371400px;}
.ws21{word-spacing:13.451400px;}
.ws42{word-spacing:14.445000px;}
.ws5d{word-spacing:17.481600px;}
._16{margin-left:-7.501200px;}
._b{margin-left:-6.417600px;}
._8{margin-left:-5.206800px;}
._2{margin-left:-4.001400px;}
._3{margin-left:-2.716200px;}
._1{margin-left:-1.713600px;}
._0{width:1.056000px;}
._6{width:2.771400px;}
._5{width:3.843600px;}
._4{width:5.401800px;}
._7{width:6.846000px;}
._13{width:7.879200px;}
._14{width:10.095000px;}
._9{width:11.255400px;}
._e{width:12.537600px;}
._a{width:13.861200px;}
._c{width:15.238800px;}
._11{width:16.254000px;}
._d{width:17.449200px;}
._f{width:18.727200px;}
._10{width:19.774800px;}
._12{width:21.615600px;}
._15{width:24.125400px;}
.fc4{color:rgb(0,0,153);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(29,29,29);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:40.000002px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.085015px;}
.y5b{bottom:95.985000px;}
.y80{bottom:99.360000px;}
.y6b{bottom:112.485000px;}
.y5a{bottom:115.860000px;}
.y7f{bottom:127.860000px;}
.y6a{bottom:128.985000px;}
.ya9{bottom:132.360000px;}
.y2b{bottom:133.485000px;}
.y59{bottom:140.985000px;}
.y69{bottom:148.860000px;}
.y7e{bottom:152.985000px;}
.y58{bottom:157.485000px;}
.y7d{bottom:169.485000px;}
.y57{bottom:173.985000px;}
.ya8{bottom:177.360000px;}
.y7c{bottom:185.985000px;}
.y56{bottom:193.860000px;}
.y2a{bottom:202.485000px;}
.ya7{bottom:205.860000px;}
.y29{bottom:218.985000px;}
.ya6{bottom:230.985000px;}
.y28{bottom:235.485000px;}
.ya5{bottom:250.860000px;}
.y27{bottom:251.985000px;}
.y26{bottom:268.485000px;}
.y7b{bottom:271.860000px;}
.ya4{bottom:275.985000px;}
.y25{bottom:284.985000px;}
.ya3{bottom:292.485000px;}
.y68{bottom:293.985000px;}
.y24{bottom:301.485000px;}
.y67{bottom:310.485000px;}
.ya2{bottom:312.360000px;}
.y23{bottom:317.985000px;}
.y7a{bottom:320.985000px;}
.y55{bottom:321.360000px;}
.y66{bottom:326.985000px;}
.y22{bottom:334.485000px;}
.y65{bottom:343.485000px;}
.y54{bottom:346.485000px;}
.ya1{bottom:349.485000px;}
.y21{bottom:350.985000px;}
.y79{bottom:353.985000px;}
.y64{bottom:359.985000px;}
.y53{bottom:362.985000px;}
.y20{bottom:367.485000px;}
.y78{bottom:373.485000px;}
.y52{bottom:382.860000px;}
.y1f{bottom:383.985000px;}
.y77{bottom:391.485000px;}
.y63{bottom:392.985000px;}
.ya0{bottom:400.485000px;}
.y76{bottom:407.985000px;}
.y1e{bottom:418.485000px;}
.y62{bottom:424.485000px;}
.y9f{bottom:434.985000px;}
.y61{bottom:440.985000px;}
.y1d{bottom:452.985000px;}
.y60{bottom:457.485000px;}
.y1c{bottom:469.485000px;}
.y5f{bottom:473.985000px;}
.y1b{bottom:485.985000px;}
.y51{bottom:490.485000px;}
.y9e{bottom:500.985000px;}
.y1a{bottom:502.485000px;}
.y75{bottom:505.485000px;}
.y50{bottom:506.985000px;}
.y9d{bottom:517.485000px;}
.y19{bottom:518.985000px;}
.y74{bottom:521.985000px;}
.y4f{bottom:523.485000px;}
.y9c{bottom:533.985000px;}
.y18{bottom:535.485000px;}
.y4e{bottom:539.985000px;}
.y17{bottom:551.985000px;}
.y73{bottom:553.485000px;}
.y5e{bottom:554.985000px;}
.y16{bottom:568.485000px;}
.y72{bottom:569.985000px;}
.y4d{bottom:574.485000px;}
.y15{bottom:584.985000px;}
.y9b{bottom:586.485000px;}
.y4c{bottom:590.985000px;}
.y14{bottom:601.485000px;}
.y9a{bottom:602.985000px;}
.y4b{bottom:607.485000px;}
.y13{bottom:617.985000px;}
.y99{bottom:619.485000px;}
.y4a{bottom:623.985000px;}
.y12{bottom:634.485000px;}
.y98{bottom:635.985000px;}
.y49{bottom:640.485000px;}
.y11{bottom:650.985000px;}
.y97{bottom:652.485000px;}
.y48{bottom:656.985000px;}
.y71{bottom:667.485000px;}
.y96{bottom:668.985000px;}
.y47{bottom:673.485000px;}
.y70{bottom:683.985000px;}
.y10{bottom:685.485000px;}
.y46{bottom:689.985000px;}
.y6f{bottom:700.485000px;}
.y45{bottom:706.485000px;}
.y95{bottom:716.985000px;}
.yf{bottom:719.985000px;}
.y44{bottom:722.985000px;}
.y6e{bottom:733.485000px;}
.y43{bottom:739.485000px;}
.y94{bottom:748.485000px;}
.y6d{bottom:751.485000px;}
.ye{bottom:754.485000px;}
.y42{bottom:755.985000px;}
.y93{bottom:764.985000px;}
.y5d{bottom:770.985000px;}
.y92{bottom:781.485000px;}
.y6c{bottom:782.985000px;}
.y5c{bottom:787.485000px;}
.yd{bottom:788.985000px;}
.y41{bottom:791.985000px;}
.y91{bottom:797.985000px;}
.yb3{bottom:799.485000px;}
.y40{bottom:809.985000px;}
.y90{bottom:814.485000px;}
.yc{bottom:823.485000px;}
.y3f{bottom:826.485000px;}
.y8f{bottom:830.985000px;}
.yb2{bottom:833.985000px;}
.y3e{bottom:842.985000px;}
.y8e{bottom:847.485000px;}
.yb1{bottom:850.485000px;}
.yb{bottom:857.985000px;}
.y3d{bottom:859.485000px;}
.y8d{bottom:863.985000px;}
.y3c{bottom:875.985000px;}
.y8c{bottom:880.485000px;}
.yb0{bottom:884.985000px;}
.y8b{bottom:896.985000px;}
.yaf{bottom:901.485000px;}
.y3b{bottom:907.485000px;}
.y8a{bottom:913.485000px;}
.ya{bottom:914.985000px;}
.y3a{bottom:923.985000px;}
.y89{bottom:929.985000px;}
.yae{bottom:935.985000px;}
.y39{bottom:940.485000px;}
.y88{bottom:946.485000px;}
.y9{bottom:950.985000px;}
.y38{bottom:956.985000px;}
.y87{bottom:962.985000px;}
.yad{bottom:970.485000px;}
.y37{bottom:973.485000px;}
.y8{bottom:979.485000px;}
.y36{bottom:989.985000px;}
.y86{bottom:994.485000px;}
.yac{bottom:1004.985000px;}
.y35{bottom:1006.485000px;}
.y85{bottom:1010.985000px;}
.y7{bottom:1018.485000px;}
.y34{bottom:1022.985000px;}
.y6{bottom:1037.985000px;}
.y33{bottom:1039.485000px;}
.y84{bottom:1042.485000px;}
.yab{bottom:1055.985000px;}
.y5{bottom:1057.485000px;}
.y83{bottom:1058.985000px;}
.y32{bottom:1073.985000px;}
.y82{bottom:1075.485000px;}
.y4{bottom:1076.985000px;}
.yaa{bottom:1090.485000px;}
.y81{bottom:1091.985000px;}
.y3{bottom:1097.985000px;}
.y31{bottom:1108.485000px;}
.y2{bottom:1123.485000px;}
.y30{bottom:1124.985000px;}
.y2f{bottom:1156.485000px;}
.y2e{bottom:1171.485000px;}
.y2d{bottom:1186.485000px;}
.y2c{bottom:1201.485000px;}
.h9{height:31.034180px;}
.h7{height:39.585938px;}
.h6{height:44.534180px;}
.h8{height:47.988283px;}
.h2{height:49.482422px;}
.h3{height:54.430664px;}
.h4{height:69.275391px;}
.h5{height:89.068359px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w0{width:892.485000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:76.567493px;}
.x5{left:234.505193px;}
.x6{left:337.486643px;}
.x4{left:358.510043px;}
.x1{left:410.392500px;}
.x3{left:417.833243px;}
@media print{
.v4{vertical-align:-13.333333pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.000000pt;}
.v3{vertical-align:13.333333pt;}
.ls6{letter-spacing:-0.938667pt;}
.ls7{letter-spacing:-0.460800pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.009600pt;}
.ls14{letter-spacing:-0.007111pt;}
.ls13{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003520pt;}
.ls2{letter-spacing:0.003573pt;}
.ls1{letter-spacing:0.003733pt;}
.lsc{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.009600pt;}
.lsf{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.028800pt;}
.ls11{letter-spacing:0.124000pt;}
.lsd{letter-spacing:3.051199pt;}
.ls10{letter-spacing:3.608533pt;}
.lse{letter-spacing:4.846399pt;}
.lsa{letter-spacing:5.109333pt;}
.ls8{letter-spacing:10.442667pt;}
.ls9{letter-spacing:15.776000pt;}
.ws5{word-spacing:-0.124800pt;}
.ws4{word-spacing:-0.096000pt;}
.ws1{word-spacing:-0.074667pt;}
.ws40{word-spacing:-0.067200pt;}
.ws2{word-spacing:-0.058667pt;}
.wsc{word-spacing:-0.057600pt;}
.ws35{word-spacing:-0.052800pt;}
.ws3{word-spacing:-0.048000pt;}
.ws12{word-spacing:-0.042667pt;}
.ws4f{word-spacing:-0.038400pt;}
.ws44{word-spacing:-0.035556pt;}
.ws24{word-spacing:-0.032000pt;}
.ws2a{word-spacing:-0.028800pt;}
.ws5b{word-spacing:-0.028444pt;}
.ws50{word-spacing:-0.025600pt;}
.ws13{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.144000pt;}
.wsb{word-spacing:0.412800pt;}
.ws0{word-spacing:0.880000pt;}
.ws51{word-spacing:4.872533pt;}
.ws2f{word-spacing:7.185600pt;}
.ws22{word-spacing:7.204800pt;}
.ws41{word-spacing:7.214400pt;}
.ws1e{word-spacing:7.219200pt;}
.ws38{word-spacing:7.228800pt;}
.ws3f{word-spacing:7.233600pt;}
.ws1c{word-spacing:7.243200pt;}
.ws16{word-spacing:7.248000pt;}
.ws26{word-spacing:7.252800pt;}
.ws3b{word-spacing:7.257600pt;}
.ws1d{word-spacing:7.262400pt;}
.ws19{word-spacing:7.281600pt;}
.ws33{word-spacing:7.291200pt;}
.ws17{word-spacing:7.300800pt;}
.ws1f{word-spacing:7.310400pt;}
.wsf{word-spacing:7.320000pt;}
.ws49{word-spacing:7.324800pt;}
.ws23{word-spacing:7.344000pt;}
.ws11{word-spacing:7.348800pt;}
.ws27{word-spacing:7.353600pt;}
.ws55{word-spacing:7.358400pt;}
.ws2e{word-spacing:7.363200pt;}
.ws58{word-spacing:7.368000pt;}
.ws6{word-spacing:7.382400pt;}
.ws5a{word-spacing:7.392000pt;}
.ws57{word-spacing:7.396800pt;}
.ws3d{word-spacing:7.401600pt;}
.ws53{word-spacing:7.406400pt;}
.ws9{word-spacing:7.411200pt;}
.ws59{word-spacing:7.416000pt;}
.ws10{word-spacing:7.435200pt;}
.ws34{word-spacing:7.440000pt;}
.ws3a{word-spacing:7.449600pt;}
.ws52{word-spacing:7.459200pt;}
.ws36{word-spacing:7.464000pt;}
.ws37{word-spacing:7.468800pt;}
.ws4d{word-spacing:7.507200pt;}
.ws2d{word-spacing:7.512000pt;}
.ws45{word-spacing:7.521600pt;}
.ws14{word-spacing:7.531200pt;}
.ws3c{word-spacing:7.564800pt;}
.ws4b{word-spacing:7.569600pt;}
.ws46{word-spacing:7.579200pt;}
.ws1a{word-spacing:7.584000pt;}
.ws5c{word-spacing:7.598400pt;}
.ws3e{word-spacing:7.603200pt;}
.wse{word-spacing:7.617600pt;}
.ws48{word-spacing:7.636800pt;}
.ws1b{word-spacing:7.675200pt;}
.ws47{word-spacing:7.680000pt;}
.ws2b{word-spacing:7.694400pt;}
.ws2c{word-spacing:7.752000pt;}
.ws15{word-spacing:7.771200pt;}
.wsd{word-spacing:7.776000pt;}
.ws30{word-spacing:7.800000pt;}
.ws4e{word-spacing:7.896000pt;}
.ws39{word-spacing:7.929600pt;}
.ws4a{word-spacing:7.944000pt;}
.ws31{word-spacing:8.030400pt;}
.ws32{word-spacing:8.040000pt;}
.ws7{word-spacing:8.088000pt;}
.ws25{word-spacing:8.174400pt;}
.ws60{word-spacing:8.347200pt;}
.ws29{word-spacing:8.414400pt;}
.ws54{word-spacing:8.443200pt;}
.ws5e{word-spacing:8.544000pt;}
.ws4c{word-spacing:9.139200pt;}
.ws8{word-spacing:9.254400pt;}
.ws18{word-spacing:9.350400pt;}
.ws56{word-spacing:9.633600pt;}
.ws20{word-spacing:9.681600pt;}
.ws28{word-spacing:10.435200pt;}
.wsa{word-spacing:10.492800pt;}
.ws43{word-spacing:10.996800pt;}
.ws21{word-spacing:11.956800pt;}
.ws42{word-spacing:12.840000pt;}
.ws5d{word-spacing:15.539200pt;}
._16{margin-left:-6.667733pt;}
._b{margin-left:-5.704533pt;}
._8{margin-left:-4.628267pt;}
._2{margin-left:-3.556800pt;}
._3{margin-left:-2.414400pt;}
._1{margin-left:-1.523200pt;}
._0{width:0.938667pt;}
._6{width:2.463467pt;}
._5{width:3.416533pt;}
._4{width:4.801600pt;}
._7{width:6.085333pt;}
._13{width:7.003733pt;}
._14{width:8.973333pt;}
._9{width:10.004800pt;}
._e{width:11.144533pt;}
._a{width:12.321067pt;}
._c{width:13.545600pt;}
._11{width:14.448000pt;}
._d{width:15.510400pt;}
._f{width:16.646400pt;}
._10{width:17.577600pt;}
._12{width:19.213867pt;}
._15{width:21.444800pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:35.555557pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.520013pt;}
.y5b{bottom:85.320000pt;}
.y80{bottom:88.320000pt;}
.y6b{bottom:99.986667pt;}
.y5a{bottom:102.986667pt;}
.y7f{bottom:113.653333pt;}
.y6a{bottom:114.653333pt;}
.ya9{bottom:117.653333pt;}
.y2b{bottom:118.653333pt;}
.y59{bottom:125.320000pt;}
.y69{bottom:132.320000pt;}
.y7e{bottom:135.986667pt;}
.y58{bottom:139.986667pt;}
.y7d{bottom:150.653333pt;}
.y57{bottom:154.653333pt;}
.ya8{bottom:157.653333pt;}
.y7c{bottom:165.320000pt;}
.y56{bottom:172.320000pt;}
.y2a{bottom:179.986667pt;}
.ya7{bottom:182.986667pt;}
.y29{bottom:194.653333pt;}
.ya6{bottom:205.320000pt;}
.y28{bottom:209.320000pt;}
.ya5{bottom:222.986667pt;}
.y27{bottom:223.986667pt;}
.y26{bottom:238.653333pt;}
.y7b{bottom:241.653333pt;}
.ya4{bottom:245.320000pt;}
.y25{bottom:253.320000pt;}
.ya3{bottom:259.986667pt;}
.y68{bottom:261.320000pt;}
.y24{bottom:267.986667pt;}
.y67{bottom:275.986667pt;}
.ya2{bottom:277.653333pt;}
.y23{bottom:282.653333pt;}
.y7a{bottom:285.320000pt;}
.y55{bottom:285.653333pt;}
.y66{bottom:290.653333pt;}
.y22{bottom:297.320000pt;}
.y65{bottom:305.320000pt;}
.y54{bottom:307.986667pt;}
.ya1{bottom:310.653333pt;}
.y21{bottom:311.986667pt;}
.y79{bottom:314.653333pt;}
.y64{bottom:319.986667pt;}
.y53{bottom:322.653333pt;}
.y20{bottom:326.653333pt;}
.y78{bottom:331.986667pt;}
.y52{bottom:340.320000pt;}
.y1f{bottom:341.320000pt;}
.y77{bottom:347.986667pt;}
.y63{bottom:349.320000pt;}
.ya0{bottom:355.986667pt;}
.y76{bottom:362.653333pt;}
.y1e{bottom:371.986667pt;}
.y62{bottom:377.320000pt;}
.y9f{bottom:386.653333pt;}
.y61{bottom:391.986667pt;}
.y1d{bottom:402.653333pt;}
.y60{bottom:406.653333pt;}
.y1c{bottom:417.320000pt;}
.y5f{bottom:421.320000pt;}
.y1b{bottom:431.986667pt;}
.y51{bottom:435.986667pt;}
.y9e{bottom:445.320000pt;}
.y1a{bottom:446.653333pt;}
.y75{bottom:449.320000pt;}
.y50{bottom:450.653333pt;}
.y9d{bottom:459.986667pt;}
.y19{bottom:461.320000pt;}
.y74{bottom:463.986667pt;}
.y4f{bottom:465.320000pt;}
.y9c{bottom:474.653333pt;}
.y18{bottom:475.986667pt;}
.y4e{bottom:479.986667pt;}
.y17{bottom:490.653333pt;}
.y73{bottom:491.986667pt;}
.y5e{bottom:493.320000pt;}
.y16{bottom:505.320000pt;}
.y72{bottom:506.653333pt;}
.y4d{bottom:510.653333pt;}
.y15{bottom:519.986667pt;}
.y9b{bottom:521.320000pt;}
.y4c{bottom:525.320000pt;}
.y14{bottom:534.653333pt;}
.y9a{bottom:535.986667pt;}
.y4b{bottom:539.986667pt;}
.y13{bottom:549.320000pt;}
.y99{bottom:550.653333pt;}
.y4a{bottom:554.653333pt;}
.y12{bottom:563.986667pt;}
.y98{bottom:565.320000pt;}
.y49{bottom:569.320000pt;}
.y11{bottom:578.653333pt;}
.y97{bottom:579.986667pt;}
.y48{bottom:583.986667pt;}
.y71{bottom:593.320000pt;}
.y96{bottom:594.653333pt;}
.y47{bottom:598.653333pt;}
.y70{bottom:607.986667pt;}
.y10{bottom:609.320000pt;}
.y46{bottom:613.320000pt;}
.y6f{bottom:622.653333pt;}
.y45{bottom:627.986667pt;}
.y95{bottom:637.320000pt;}
.yf{bottom:639.986667pt;}
.y44{bottom:642.653333pt;}
.y6e{bottom:651.986667pt;}
.y43{bottom:657.320000pt;}
.y94{bottom:665.320000pt;}
.y6d{bottom:667.986667pt;}
.ye{bottom:670.653333pt;}
.y42{bottom:671.986667pt;}
.y93{bottom:679.986667pt;}
.y5d{bottom:685.320000pt;}
.y92{bottom:694.653333pt;}
.y6c{bottom:695.986667pt;}
.y5c{bottom:699.986667pt;}
.yd{bottom:701.320000pt;}
.y41{bottom:703.986667pt;}
.y91{bottom:709.320000pt;}
.yb3{bottom:710.653333pt;}
.y40{bottom:719.986667pt;}
.y90{bottom:723.986667pt;}
.yc{bottom:731.986667pt;}
.y3f{bottom:734.653333pt;}
.y8f{bottom:738.653333pt;}
.yb2{bottom:741.320000pt;}
.y3e{bottom:749.320000pt;}
.y8e{bottom:753.320000pt;}
.yb1{bottom:755.986667pt;}
.yb{bottom:762.653333pt;}
.y3d{bottom:763.986667pt;}
.y8d{bottom:767.986667pt;}
.y3c{bottom:778.653333pt;}
.y8c{bottom:782.653333pt;}
.yb0{bottom:786.653333pt;}
.y8b{bottom:797.320000pt;}
.yaf{bottom:801.320000pt;}
.y3b{bottom:806.653333pt;}
.y8a{bottom:811.986667pt;}
.ya{bottom:813.320000pt;}
.y3a{bottom:821.320000pt;}
.y89{bottom:826.653333pt;}
.yae{bottom:831.986667pt;}
.y39{bottom:835.986667pt;}
.y88{bottom:841.320000pt;}
.y9{bottom:845.320000pt;}
.y38{bottom:850.653333pt;}
.y87{bottom:855.986667pt;}
.yad{bottom:862.653333pt;}
.y37{bottom:865.320000pt;}
.y8{bottom:870.653333pt;}
.y36{bottom:879.986667pt;}
.y86{bottom:883.986667pt;}
.yac{bottom:893.320000pt;}
.y35{bottom:894.653333pt;}
.y85{bottom:898.653333pt;}
.y7{bottom:905.320000pt;}
.y34{bottom:909.320000pt;}
.y6{bottom:922.653333pt;}
.y33{bottom:923.986667pt;}
.y84{bottom:926.653333pt;}
.yab{bottom:938.653333pt;}
.y5{bottom:939.986667pt;}
.y83{bottom:941.320000pt;}
.y32{bottom:954.653333pt;}
.y82{bottom:955.986667pt;}
.y4{bottom:957.320000pt;}
.yaa{bottom:969.320000pt;}
.y81{bottom:970.653333pt;}
.y3{bottom:975.986667pt;}
.y31{bottom:985.320000pt;}
.y2{bottom:998.653333pt;}
.y30{bottom:999.986667pt;}
.y2f{bottom:1027.986667pt;}
.y2e{bottom:1041.320000pt;}
.y2d{bottom:1054.653333pt;}
.y2c{bottom:1067.986667pt;}
.h9{height:27.585938pt;}
.h7{height:35.187500pt;}
.h6{height:39.585938pt;}
.h8{height:42.656251pt;}
.h2{height:43.984375pt;}
.h3{height:48.382812pt;}
.h4{height:61.578125pt;}
.h5{height:79.171875pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.320000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:68.059993pt;}
.x5{left:208.449060pt;}
.x6{left:299.988127pt;}
.x4{left:318.675593pt;}
.x1{left:364.793333pt;}
.x3{left:371.407327pt;}
}




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