
    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_42f77891b73bb508070c1472.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b92bf8f04f3d091b39f7bab1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_7f691b1e6719421b725b4f98.woff')format("woff");}.ff3{font-family:ff3;line-height:1.197754;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_edff3de32f53c156a58b003c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_5c352504e14ed9e86df1aa39.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.819000;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_1ee352905b05021758ee5990.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_eeb769d2f444c93dd983cff0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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:ff9;src:url('chunks/assets/font_9c46383c42ff2ce9e507b97e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.992676;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:ffa;src:url('chunks/assets/font_84047ef780a8c15084d898f6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.028000;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);}
.v4{vertical-align:-23.760000px;}
.v6{vertical-align:-18.000000px;}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v7{vertical-align:19.800000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000600px;}
.ls32{letter-spacing:0.004800px;}
.ls1a{letter-spacing:0.005400px;}
.ls35{letter-spacing:0.009000px;}
.ls22{letter-spacing:0.013200px;}
.ls2f{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.162600px;}
.ls15{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.216600px;}
.ls3{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.514200px;}
.ls8{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.609000px;}
.ls21{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.854400px;}
.lse{letter-spacing:1.503000px;}
.ls31{letter-spacing:1.750800px;}
.ls2c{letter-spacing:1.918800px;}
.ls2a{letter-spacing:2.620800px;}
.ls2e{letter-spacing:3.171600px;}
.ls2b{letter-spacing:3.241800px;}
.ls24{letter-spacing:3.552000px;}
.ls1f{letter-spacing:3.731400px;}
.ls1e{letter-spacing:4.319400px;}
.ls33{letter-spacing:4.600200px;}
.ls34{letter-spacing:4.752000px;}
.ls12{letter-spacing:5.556600px;}
.ls13{letter-spacing:5.976000px;}
.ls19{letter-spacing:6.019800px;}
.ls2d{letter-spacing:6.028200px;}
.ls27{letter-spacing:6.300000px;}
.ls1b{letter-spacing:6.340800px;}
.lsb{letter-spacing:6.480000px;}
.ls10{letter-spacing:6.552000px;}
.ls11{letter-spacing:6.624000px;}
.ls25{letter-spacing:6.728400px;}
.ls1d{letter-spacing:6.891000px;}
.ls18{letter-spacing:6.913800px;}
.lsc{letter-spacing:7.042200px;}
.lsa{letter-spacing:7.279800px;}
.ls6{letter-spacing:7.380000px;}
.ls1c{letter-spacing:7.614000px;}
.lsf{letter-spacing:7.747800px;}
.ls14{letter-spacing:7.886400px;}
.ls0{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.594824px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.wsb{word-spacing:-55.080000px;}
.ws8{word-spacing:-55.008000px;}
.wsc{word-spacing:-54.504000px;}
.ws11{word-spacing:-49.176000px;}
.wsa{word-spacing:-49.104000px;}
.ws7{word-spacing:-49.032000px;}
.wse{word-spacing:-48.960000px;}
.ws13{word-spacing:-48.888000px;}
.ws9{word-spacing:-48.816000px;}
.wsd{word-spacing:-48.744000px;}
.wsf{word-spacing:-48.672000px;}
.ws15{word-spacing:-48.600000px;}
.ws2{word-spacing:-48.528000px;}
.ws4{word-spacing:-47.820000px;}
.ws1e{word-spacing:-40.440000px;}
.ws1{word-spacing:-33.720000px;}
.ws6{word-spacing:-32.999040px;}
.ws19{word-spacing:-32.352000px;}
.ws10{word-spacing:-20.952000px;}
.ws16{word-spacing:-20.808000px;}
.ws1a{word-spacing:-20.448000px;}
.ws17{word-spacing:-20.376000px;}
.ws5{word-spacing:-20.232000px;}
.ws14{word-spacing:-17.784000px;}
.ws1f{word-spacing:-16.860000px;}
.ws12{word-spacing:-14.162400px;}
.ws18{word-spacing:-13.757760px;}
.ws1b{word-spacing:-13.488000px;}
.ws1d{word-spacing:-11.464800px;}
.ws1c{word-spacing:-9.441600px;}
.ws0{word-spacing:-8.520000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-853.185000px;}
._15{margin-left:-544.088400px;}
._11{margin-left:-20.232000px;}
._16{margin-left:-17.784000px;}
._12{margin-left:-15.439200px;}
._4{margin-left:-14.388600px;}
._13{margin-left:-12.600000px;}
._2{margin-left:-10.440000px;}
._0{margin-left:-8.460000px;}
._a{margin-left:-6.912000px;}
._3{margin-left:-5.640000px;}
._9{margin-left:-4.272000px;}
._1{margin-left:-3.120000px;}
._5{margin-left:-1.200000px;}
._b{width:1.008000px;}
._7{width:2.160000px;}
._d{width:3.960000px;}
._8{width:5.376000px;}
._6{width:6.408000px;}
._c{width:7.416000px;}
._f{width:8.701200px;}
._10{width:34.508160px;}
._e{width:163.416000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:32.640000px;}
.fs9{font-size:33.600000px;}
.fsa{font-size:40.800000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:48.960000px;}
.fs7{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y22{bottom:102.750750px;}
.y1{bottom:103.500000px;}
.y4f{bottom:145.425000px;}
.y56{bottom:145.950000px;}
.yc5{bottom:146.100000px;}
.y9b{bottom:146.550000px;}
.y21{bottom:148.500000px;}
.y7a{bottom:152.459850px;}
.y2a{bottom:152.460000px;}
.y9a{bottom:161.250000px;}
.y52{bottom:163.500000px;}
.yc4{bottom:164.475000px;}
.y4e{bottom:167.400000px;}
.y55{bottom:167.925000px;}
.y20{bottom:171.000000px;}
.y99{bottom:175.950000px;}
.y51{bottom:178.500000px;}
.yc3{bottom:182.850000px;}
.y79{bottom:186.749850px;}
.y4d{bottom:189.375000px;}
.y54{bottom:189.900000px;}
.y98{bottom:190.650000px;}
.y1f{bottom:193.500000px;}
.y50{bottom:197.460000px;}
.yc2{bottom:201.225000px;}
.y97{bottom:205.350000px;}
.y78{bottom:208.799850px;}
.y53{bottom:211.875000px;}
.y1e{bottom:216.000000px;}
.y96{bottom:220.050000px;}
.y77{bottom:231.299850px;}
.yc1{bottom:233.100000px;}
.y4c{bottom:233.850000px;}
.y95{bottom:234.750000px;}
.y1d{bottom:238.500000px;}
.y94{bottom:249.450000px;}
.y76{bottom:253.349850px;}
.y4b{bottom:255.825000px;}
.y1c{bottom:261.000000px;}
.y93{bottom:264.150000px;}
.yc0{bottom:264.975000px;}
.y75{bottom:275.399850px;}
.y4a{bottom:277.800000px;}
.y92{bottom:278.850000px;}
.ybf{bottom:283.350000px;}
.y1b{bottom:283.500000px;}
.y91{bottom:293.550000px;}
.y74{bottom:297.449850px;}
.y49{bottom:299.775000px;}
.ybe{bottom:301.725000px;}
.y1a{bottom:306.000000px;}
.y90{bottom:308.250000px;}
.y73{bottom:319.499850px;}
.ybd{bottom:320.100000px;}
.y48{bottom:321.750000px;}
.y8f{bottom:322.950000px;}
.y19{bottom:328.500000px;}
.ybc{bottom:338.475000px;}
.y72{bottom:341.549850px;}
.y47{bottom:343.725000px;}
.y8e{bottom:345.150000px;}
.y18{bottom:351.000000px;}
.ybb{bottom:356.850000px;}
.y71{bottom:363.599850px;}
.y46{bottom:365.700000px;}
.y17{bottom:373.500000px;}
.yba{bottom:375.225000px;}
.y70{bottom:385.649850px;}
.y45{bottom:387.675000px;}
.y8d{bottom:390.150000px;}
.yb9{bottom:393.600000px;}
.y16{bottom:396.000000px;}
.y8c{bottom:405.150000px;}
.y44{bottom:409.650000px;}
.yb8{bottom:411.975000px;}
.y15{bottom:418.500000px;}
.y8b{bottom:419.850000px;}
.y6f{bottom:429.749850px;}
.yb7{bottom:430.350000px;}
.y43{bottom:431.625000px;}
.y8a{bottom:434.550000px;}
.y14{bottom:441.000000px;}
.yb6{bottom:448.725000px;}
.y89{bottom:449.250000px;}
.y6e{bottom:451.800000px;}
.y42{bottom:453.600000px;}
.y13{bottom:463.500000px;}
.y88{bottom:463.950000px;}
.yb5{bottom:467.100000px;}
.y6d{bottom:473.849850px;}
.y41{bottom:475.575000px;}
.y87{bottom:478.650000px;}
.yb4{bottom:485.475000px;}
.y12{bottom:486.000000px;}
.y6c{bottom:495.899850px;}
.y40{bottom:497.550000px;}
.y86{bottom:500.850000px;}
.yb3{bottom:503.850000px;}
.y11{bottom:508.500000px;}
.y6b{bottom:517.949850px;}
.y3f{bottom:519.525000px;}
.yb2{bottom:522.225000px;}
.y10{bottom:531.000000px;}
.y6a{bottom:539.999850px;}
.yb1{bottom:540.600000px;}
.y3e{bottom:541.500000px;}
.y85{bottom:545.850000px;}
.yf{bottom:553.500000px;}
.yb0{bottom:558.975000px;}
.y84{bottom:560.550000px;}
.y69{bottom:562.050000px;}
.y3d{bottom:563.475000px;}
.ye{bottom:576.000000px;}
.yaf{bottom:577.350000px;}
.y83{bottom:582.750000px;}
.y68{bottom:584.099850px;}
.y3c{bottom:585.450000px;}
.yae{bottom:595.725000px;}
.yd{bottom:598.500000px;}
.y67{bottom:606.149850px;}
.y3b{bottom:607.425000px;}
.yad{bottom:614.100000px;}
.yc{bottom:621.000000px;}
.y82{bottom:627.750000px;}
.y66{bottom:628.199850px;}
.y3a{bottom:629.400000px;}
.yac{bottom:632.475000px;}
.yb{bottom:643.500000px;}
.y65{bottom:650.249850px;}
.y81{bottom:650.250000px;}
.yab{bottom:650.850000px;}
.y39{bottom:651.375000px;}
.ya{bottom:666.000000px;}
.yaa{bottom:669.225000px;}
.y64{bottom:672.300000px;}
.y38{bottom:673.350000px;}
.ya9{bottom:687.600000px;}
.y9{bottom:688.500000px;}
.y63{bottom:694.349850px;}
.y80{bottom:694.350000px;}
.y37{bottom:695.325000px;}
.ya8{bottom:705.975000px;}
.y7{bottom:711.000000px;}
.y62{bottom:716.399850px;}
.y7f{bottom:716.400000px;}
.y36{bottom:717.300000px;}
.ya7{bottom:724.350000px;}
.y8{bottom:733.500000px;}
.y61{bottom:738.449850px;}
.y7e{bottom:738.450000px;}
.y35{bottom:739.275000px;}
.ya6{bottom:742.725000px;}
.y29{bottom:756.000000px;}
.y60{bottom:760.499850px;}
.y7d{bottom:760.500000px;}
.ya5{bottom:761.100000px;}
.y34{bottom:761.250000px;}
.y28{bottom:778.500000px;}
.ya4{bottom:779.475000px;}
.y5f{bottom:782.550000px;}
.y33{bottom:783.225000px;}
.ya3{bottom:797.850000px;}
.y6{bottom:801.000000px;}
.y5e{bottom:804.600000px;}
.y32{bottom:805.200000px;}
.ya2{bottom:816.225000px;}
.y5{bottom:823.500000px;}
.y5d{bottom:826.650000px;}
.y31{bottom:827.175000px;}
.ya1{bottom:842.100000px;}
.y27{bottom:846.000000px;}
.y5c{bottom:848.699850px;}
.y7c{bottom:848.700000px;}
.y30{bottom:849.150000px;}
.y26{bottom:868.500000px;}
.y5b{bottom:870.749850px;}
.y7b{bottom:870.750000px;}
.y2f{bottom:871.125000px;}
.ya0{bottom:878.100000px;}
.y4{bottom:891.000000px;}
.y5a{bottom:892.800000px;}
.y2e{bottom:893.100000px;}
.y9f{bottom:907.500000px;}
.y25{bottom:913.500000px;}
.y59{bottom:914.850000px;}
.y2d{bottom:915.075000px;}
.y3{bottom:921.000000px;}
.y9e{bottom:922.200000px;}
.y24{bottom:936.000000px;}
.y58{bottom:936.900000px;}
.y2c{bottom:937.050000px;}
.y2{bottom:951.000000px;}
.y9d{bottom:951.600000px;}
.y23{bottom:958.500000px;}
.y57{bottom:958.950000px;}
.y2b{bottom:959.025000px;}
.y9c{bottom:966.300000px;}
.ha{height:30.472500px;}
.he{height:39.072000px;}
.h1{height:39.990234px;}
.hd{height:46.312500px;}
.h4{height:50.580000px;}
.h9{height:50.947266px;}
.hc{height:52.101562px;}
.h8{height:57.890625px;}
.h5{height:61.136719px;}
.h7{height:69.468750px;}
.h2{height:82.792969px;}
.hb{height:87.468750px;}
.h3{height:115.781250px;}
.h6{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:99.000000px;}
.x3{left:114.000000px;}
.x2{left:143.183850px;}
.x6{left:159.000000px;}
.x4{left:166.500000px;}
.x5{left:453.653250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v6{vertical-align:-16.000000pt;}
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v7{vertical-align:17.600000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000533pt;}
.ls32{letter-spacing:0.004267pt;}
.ls1a{letter-spacing:0.004800pt;}
.ls35{letter-spacing:0.008000pt;}
.ls22{letter-spacing:0.011733pt;}
.ls2f{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.144533pt;}
.ls15{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.192533pt;}
.ls3{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.457067pt;}
.ls8{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.541333pt;}
.ls21{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.759467pt;}
.lse{letter-spacing:1.336000pt;}
.ls31{letter-spacing:1.556267pt;}
.ls2c{letter-spacing:1.705600pt;}
.ls2a{letter-spacing:2.329600pt;}
.ls2e{letter-spacing:2.819200pt;}
.ls2b{letter-spacing:2.881600pt;}
.ls24{letter-spacing:3.157333pt;}
.ls1f{letter-spacing:3.316800pt;}
.ls1e{letter-spacing:3.839467pt;}
.ls33{letter-spacing:4.089067pt;}
.ls34{letter-spacing:4.224000pt;}
.ls12{letter-spacing:4.939200pt;}
.ls13{letter-spacing:5.312000pt;}
.ls19{letter-spacing:5.350933pt;}
.ls2d{letter-spacing:5.358400pt;}
.ls27{letter-spacing:5.600000pt;}
.ls1b{letter-spacing:5.636267pt;}
.lsb{letter-spacing:5.760000pt;}
.ls10{letter-spacing:5.824000pt;}
.ls11{letter-spacing:5.888000pt;}
.ls25{letter-spacing:5.980800pt;}
.ls1d{letter-spacing:6.125333pt;}
.ls18{letter-spacing:6.145600pt;}
.lsc{letter-spacing:6.259733pt;}
.lsa{letter-spacing:6.470933pt;}
.ls6{letter-spacing:6.560000pt;}
.ls1c{letter-spacing:6.768000pt;}
.lsf{letter-spacing:6.886933pt;}
.ls14{letter-spacing:7.010133pt;}
.ls0{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.417621pt;}
.ls1{letter-spacing:9.546667pt;}
.wsb{word-spacing:-48.960000pt;}
.ws8{word-spacing:-48.896000pt;}
.wsc{word-spacing:-48.448000pt;}
.ws11{word-spacing:-43.712000pt;}
.wsa{word-spacing:-43.648000pt;}
.ws7{word-spacing:-43.584000pt;}
.wse{word-spacing:-43.520000pt;}
.ws13{word-spacing:-43.456000pt;}
.ws9{word-spacing:-43.392000pt;}
.wsd{word-spacing:-43.328000pt;}
.wsf{word-spacing:-43.264000pt;}
.ws15{word-spacing:-43.200000pt;}
.ws2{word-spacing:-43.136000pt;}
.ws4{word-spacing:-42.506667pt;}
.ws1e{word-spacing:-35.946667pt;}
.ws1{word-spacing:-29.973333pt;}
.ws6{word-spacing:-29.332480pt;}
.ws19{word-spacing:-28.757333pt;}
.ws10{word-spacing:-18.624000pt;}
.ws16{word-spacing:-18.496000pt;}
.ws1a{word-spacing:-18.176000pt;}
.ws17{word-spacing:-18.112000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-14.986667pt;}
.ws12{word-spacing:-12.588800pt;}
.ws18{word-spacing:-12.229120pt;}
.ws1b{word-spacing:-11.989333pt;}
.ws1d{word-spacing:-10.190933pt;}
.ws1c{word-spacing:-8.392533pt;}
.ws0{word-spacing:-7.573333pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-758.386667pt;}
._15{margin-left:-483.634133pt;}
._11{margin-left:-17.984000pt;}
._16{margin-left:-15.808000pt;}
._12{margin-left:-13.723733pt;}
._4{margin-left:-12.789867pt;}
._13{margin-left:-11.200000pt;}
._2{margin-left:-9.280000pt;}
._0{margin-left:-7.520000pt;}
._a{margin-left:-6.144000pt;}
._3{margin-left:-5.013333pt;}
._9{margin-left:-3.797333pt;}
._1{margin-left:-2.773333pt;}
._5{margin-left:-1.066667pt;}
._b{width:0.896000pt;}
._7{width:1.920000pt;}
._d{width:3.520000pt;}
._8{width:4.778667pt;}
._6{width:5.696000pt;}
._c{width:6.592000pt;}
._f{width:7.734400pt;}
._10{width:30.673920pt;}
._e{width:145.258667pt;}
.fs5{font-size:29.013333pt;}
.fs9{font-size:29.866667pt;}
.fsa{font-size:36.266667pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:43.520000pt;}
.fs7{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:91.334000pt;}
.y1{bottom:92.000000pt;}
.y4f{bottom:129.266667pt;}
.y56{bottom:129.733333pt;}
.yc5{bottom:129.866667pt;}
.y9b{bottom:130.266667pt;}
.y21{bottom:132.000000pt;}
.y7a{bottom:135.519867pt;}
.y2a{bottom:135.520000pt;}
.y9a{bottom:143.333333pt;}
.y52{bottom:145.333333pt;}
.yc4{bottom:146.200000pt;}
.y4e{bottom:148.800000pt;}
.y55{bottom:149.266667pt;}
.y20{bottom:152.000000pt;}
.y99{bottom:156.400000pt;}
.y51{bottom:158.666667pt;}
.yc3{bottom:162.533333pt;}
.y79{bottom:165.999867pt;}
.y4d{bottom:168.333333pt;}
.y54{bottom:168.800000pt;}
.y98{bottom:169.466667pt;}
.y1f{bottom:172.000000pt;}
.y50{bottom:175.520000pt;}
.yc2{bottom:178.866667pt;}
.y97{bottom:182.533333pt;}
.y78{bottom:185.599867pt;}
.y53{bottom:188.333333pt;}
.y1e{bottom:192.000000pt;}
.y96{bottom:195.600000pt;}
.y77{bottom:205.599867pt;}
.yc1{bottom:207.200000pt;}
.y4c{bottom:207.866667pt;}
.y95{bottom:208.666667pt;}
.y1d{bottom:212.000000pt;}
.y94{bottom:221.733333pt;}
.y76{bottom:225.199867pt;}
.y4b{bottom:227.400000pt;}
.y1c{bottom:232.000000pt;}
.y93{bottom:234.800000pt;}
.yc0{bottom:235.533333pt;}
.y75{bottom:244.799867pt;}
.y4a{bottom:246.933333pt;}
.y92{bottom:247.866667pt;}
.ybf{bottom:251.866667pt;}
.y1b{bottom:252.000000pt;}
.y91{bottom:260.933333pt;}
.y74{bottom:264.399867pt;}
.y49{bottom:266.466667pt;}
.ybe{bottom:268.200000pt;}
.y1a{bottom:272.000000pt;}
.y90{bottom:274.000000pt;}
.y73{bottom:283.999867pt;}
.ybd{bottom:284.533333pt;}
.y48{bottom:286.000000pt;}
.y8f{bottom:287.066667pt;}
.y19{bottom:292.000000pt;}
.ybc{bottom:300.866667pt;}
.y72{bottom:303.599867pt;}
.y47{bottom:305.533333pt;}
.y8e{bottom:306.800000pt;}
.y18{bottom:312.000000pt;}
.ybb{bottom:317.200000pt;}
.y71{bottom:323.199867pt;}
.y46{bottom:325.066667pt;}
.y17{bottom:332.000000pt;}
.yba{bottom:333.533333pt;}
.y70{bottom:342.799867pt;}
.y45{bottom:344.600000pt;}
.y8d{bottom:346.800000pt;}
.yb9{bottom:349.866667pt;}
.y16{bottom:352.000000pt;}
.y8c{bottom:360.133333pt;}
.y44{bottom:364.133333pt;}
.yb8{bottom:366.200000pt;}
.y15{bottom:372.000000pt;}
.y8b{bottom:373.200000pt;}
.y6f{bottom:381.999867pt;}
.yb7{bottom:382.533333pt;}
.y43{bottom:383.666667pt;}
.y8a{bottom:386.266667pt;}
.y14{bottom:392.000000pt;}
.yb6{bottom:398.866667pt;}
.y89{bottom:399.333333pt;}
.y6e{bottom:401.600000pt;}
.y42{bottom:403.200000pt;}
.y13{bottom:412.000000pt;}
.y88{bottom:412.400000pt;}
.yb5{bottom:415.200000pt;}
.y6d{bottom:421.199867pt;}
.y41{bottom:422.733333pt;}
.y87{bottom:425.466667pt;}
.yb4{bottom:431.533333pt;}
.y12{bottom:432.000000pt;}
.y6c{bottom:440.799867pt;}
.y40{bottom:442.266667pt;}
.y86{bottom:445.200000pt;}
.yb3{bottom:447.866667pt;}
.y11{bottom:452.000000pt;}
.y6b{bottom:460.399867pt;}
.y3f{bottom:461.800000pt;}
.yb2{bottom:464.200000pt;}
.y10{bottom:472.000000pt;}
.y6a{bottom:479.999867pt;}
.yb1{bottom:480.533333pt;}
.y3e{bottom:481.333333pt;}
.y85{bottom:485.200000pt;}
.yf{bottom:492.000000pt;}
.yb0{bottom:496.866667pt;}
.y84{bottom:498.266667pt;}
.y69{bottom:499.600000pt;}
.y3d{bottom:500.866667pt;}
.ye{bottom:512.000000pt;}
.yaf{bottom:513.200000pt;}
.y83{bottom:518.000000pt;}
.y68{bottom:519.199867pt;}
.y3c{bottom:520.400000pt;}
.yae{bottom:529.533333pt;}
.yd{bottom:532.000000pt;}
.y67{bottom:538.799867pt;}
.y3b{bottom:539.933333pt;}
.yad{bottom:545.866667pt;}
.yc{bottom:552.000000pt;}
.y82{bottom:558.000000pt;}
.y66{bottom:558.399867pt;}
.y3a{bottom:559.466667pt;}
.yac{bottom:562.200000pt;}
.yb{bottom:572.000000pt;}
.y65{bottom:577.999867pt;}
.y81{bottom:578.000000pt;}
.yab{bottom:578.533333pt;}
.y39{bottom:579.000000pt;}
.ya{bottom:592.000000pt;}
.yaa{bottom:594.866667pt;}
.y64{bottom:597.600000pt;}
.y38{bottom:598.533333pt;}
.ya9{bottom:611.200000pt;}
.y9{bottom:612.000000pt;}
.y63{bottom:617.199867pt;}
.y80{bottom:617.200000pt;}
.y37{bottom:618.066667pt;}
.ya8{bottom:627.533333pt;}
.y7{bottom:632.000000pt;}
.y62{bottom:636.799867pt;}
.y7f{bottom:636.800000pt;}
.y36{bottom:637.600000pt;}
.ya7{bottom:643.866667pt;}
.y8{bottom:652.000000pt;}
.y61{bottom:656.399867pt;}
.y7e{bottom:656.400000pt;}
.y35{bottom:657.133333pt;}
.ya6{bottom:660.200000pt;}
.y29{bottom:672.000000pt;}
.y60{bottom:675.999867pt;}
.y7d{bottom:676.000000pt;}
.ya5{bottom:676.533333pt;}
.y34{bottom:676.666667pt;}
.y28{bottom:692.000000pt;}
.ya4{bottom:692.866667pt;}
.y5f{bottom:695.600000pt;}
.y33{bottom:696.200000pt;}
.ya3{bottom:709.200000pt;}
.y6{bottom:712.000000pt;}
.y5e{bottom:715.200000pt;}
.y32{bottom:715.733333pt;}
.ya2{bottom:725.533333pt;}
.y5{bottom:732.000000pt;}
.y5d{bottom:734.800000pt;}
.y31{bottom:735.266667pt;}
.ya1{bottom:748.533333pt;}
.y27{bottom:752.000000pt;}
.y5c{bottom:754.399867pt;}
.y7c{bottom:754.400000pt;}
.y30{bottom:754.800000pt;}
.y26{bottom:772.000000pt;}
.y5b{bottom:773.999867pt;}
.y7b{bottom:774.000000pt;}
.y2f{bottom:774.333333pt;}
.ya0{bottom:780.533333pt;}
.y4{bottom:792.000000pt;}
.y5a{bottom:793.600000pt;}
.y2e{bottom:793.866667pt;}
.y9f{bottom:806.666667pt;}
.y25{bottom:812.000000pt;}
.y59{bottom:813.200000pt;}
.y2d{bottom:813.400000pt;}
.y3{bottom:818.666667pt;}
.y9e{bottom:819.733333pt;}
.y24{bottom:832.000000pt;}
.y58{bottom:832.800000pt;}
.y2c{bottom:832.933333pt;}
.y2{bottom:845.333333pt;}
.y9d{bottom:845.866667pt;}
.y23{bottom:852.000000pt;}
.y57{bottom:852.400000pt;}
.y2b{bottom:852.466667pt;}
.y9c{bottom:858.933333pt;}
.ha{height:27.086667pt;}
.he{height:34.730667pt;}
.h1{height:35.546875pt;}
.hd{height:41.166667pt;}
.h4{height:44.960000pt;}
.h9{height:45.286458pt;}
.hc{height:46.312500pt;}
.h8{height:51.458333pt;}
.h5{height:54.343750pt;}
.h7{height:61.750000pt;}
.h2{height:73.593750pt;}
.hb{height:77.750000pt;}
.h3{height:102.916667pt;}
.h6{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.000000pt;}
.x3{left:101.333333pt;}
.x2{left:127.274533pt;}
.x6{left:141.333333pt;}
.x4{left:148.000000pt;}
.x5{left:403.247333pt;}
}




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