
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_045f05db194001f9f7f0d69f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c60cb562e079517b07815572.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331331;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_0b20413d4a7ce5e75e870a9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_5c4e6f89714f40e2f2064050.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_0461daa18313a1a6de2e6198.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331331;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_33384d20a06cb0d81cca77d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331331;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_c35f38af48148e563d2a392c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_c8dd7da25b53e89a8b6f1661.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_4e2fae27f9d8442b6e01293f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.728000px;}
.ls22{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.853806px;}
.ls15{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.524933px;}
.ls20{letter-spacing:-0.507000px;}
.ls1e{letter-spacing:-0.313800px;}
.ls1d{letter-spacing:-0.234006px;}
.ls12{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.089400px;}
.ls1b{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.020160px;}
.ls10{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001440px;}
.lsb{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.195840px;}
.ls21{letter-spacing:0.233400px;}
.ls18{letter-spacing:0.303576px;}
.ls2{letter-spacing:0.466560px;}
.ls1a{letter-spacing:0.466800px;}
.ls9{letter-spacing:0.661795px;}
.ls16{letter-spacing:0.664072px;}
.ls4{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.738000px;}
.ls5{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.261440px;}
.lsa{letter-spacing:2.179673px;}
.lsf{letter-spacing:4.786560px;}
.ls6{letter-spacing:5.215429px;}
.ls8{letter-spacing:5.405164px;}
.lse{letter-spacing:6.226560px;}
.ls7{letter-spacing:6.733307px;}
.lsc{letter-spacing:7.666560px;}
.ls24{letter-spacing:14.866560px;}
.lsd{letter-spacing:30.545280px;}
.ls1f{letter-spacing:40.930560px;}
.ls25{letter-spacing:46.546560px;}
.ls23{letter-spacing:63.826560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-60.480000px;}
.ws8{word-spacing:-19.293120px;}
.ws7{word-spacing:-18.399718px;}
.ws1{word-spacing:-16.813440px;}
.wsf{word-spacing:-16.793280px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.306440px;}
.ws6{word-spacing:-16.034864px;}
.ws2{word-spacing:-15.120000px;}
.wsb{word-spacing:-13.366200px;}
.wsa{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._9{margin-left:-8.823485px;}
._6{margin-left:-7.543568px;}
._15{margin-left:-4.505165px;}
._8{margin-left:-3.313315px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._b{width:4.441795px;}
._5{width:5.478781px;}
._16{width:6.531840px;}
._7{width:7.555997px;}
._a{width:8.588160px;}
._11{width:9.630086px;}
._c{width:11.157120px;}
._d{width:12.289920px;}
._14{width:13.930080px;}
._13{width:15.791040px;}
._f{width:19.595520px;}
._10{width:21.015360px;}
._e{width:22.345920px;}
._12{width:30.723840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs5{font-size:11.520000px;}
.fsc{font-size:18.720000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsd{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.875500px;}
.y5{bottom:4.320000px;}
.y50{bottom:5.370000px;}
.y36{bottom:6.840000px;}
.y2{bottom:10.080000px;}
.y3f{bottom:10.795500px;}
.y4d{bottom:12.235500px;}
.y4{bottom:23.400000px;}
.y4c{bottom:30.994500px;}
.y35{bottom:33.120000px;}
.y3e{bottom:40.354500px;}
.y3{bottom:47.880000px;}
.y4b{bottom:51.514500px;}
.y3d{bottom:52.234500px;}
.y4a{bottom:55.834500px;}
.y7{bottom:57.636000px;}
.y34{bottom:59.400000px;}
.y49{bottom:60.154500px;}
.y3c{bottom:65.194500px;}
.y3b{bottom:78.514500px;}
.y48{bottom:79.234500px;}
.y33{bottom:82.485000px;}
.y47{bottom:96.874500px;}
.y3a{bottom:100.114500px;}
.y46{bottom:102.994500px;}
.y32{bottom:105.525000px;}
.y4e{bottom:107.676000px;}
.y45{bottom:118.834500px;}
.y37{bottom:124.240500px;}
.y77{bottom:130.716000px;}
.y31{bottom:131.805000px;}
.y44{bottom:134.314500px;}
.y43{bottom:149.824500px;}
.y76{bottom:150.915000px;}
.y30{bottom:157.725000px;}
.y39{bottom:162.424500px;}
.y42{bottom:165.664500px;}
.y75{bottom:171.075000px;}
.y38{bottom:173.224500px;}
.y41{bottom:180.784500px;}
.y2f{bottom:181.125000px;}
.y74{bottom:193.755000px;}
.y2e{bottom:201.285000px;}
.y73{bottom:220.035000px;}
.y2d{bottom:223.995000px;}
.y72{bottom:246.315000px;}
.y2c{bottom:250.275000px;}
.y71{bottom:272.235000px;}
.y2b{bottom:276.555000px;}
.y1d{bottom:294.195000px;}
.y70{bottom:298.545000px;}
.y2a{bottom:299.955000px;}
.y98{bottom:312.225000px;}
.y1c{bottom:318.315000px;}
.y29{bottom:322.635000px;}
.y6f{bottom:324.465000px;}
.yf{bottom:326.985000px;}
.y97{bottom:332.385000px;}
.y1b{bottom:342.825000px;}
.y6e{bottom:347.865000px;}
.y28{bottom:348.945000px;}
.y96{bottom:352.545000px;}
.y1a{bottom:366.945000px;}
.y27{bottom:374.865000px;}
.y95{bottom:375.225000px;}
.y6d{bottom:376.665000px;}
.y19{bottom:391.065000px;}
.y6c{bottom:400.065000px;}
.y26{bottom:401.145000px;}
.y94{bottom:401.505000px;}
.y18{bottom:415.185000px;}
.y25{bottom:424.545000px;}
.y93{bottom:424.590000px;}
.y6b{bottom:426.030000px;}
.y17{bottom:439.305000px;}
.y92{bottom:441.870000px;}
.y6a{bottom:449.070000px;}
.y24{bottom:457.665000px;}
.y91{bottom:459.150000px;}
.y16{bottom:463.425000px;}
.y69{bottom:472.470000px;}
.y90{bottom:476.070000px;}
.y23{bottom:483.270000px;}
.y15{bottom:487.590000px;}
.y8f{bottom:493.710000px;}
.y68{bottom:495.510000px;}
.y22{bottom:506.670000px;}
.y14{bottom:511.710000px;}
.y8e{bottom:522.870000px;}
.y67{bottom:527.550000px;}
.y21{bottom:530.070000px;}
.y13{bottom:535.830000px;}
.y8d{bottom:543.060000px;}
.y20{bottom:553.830000px;}
.y66{bottom:553.860000px;}
.y12{bottom:559.950000px;}
.y8c{bottom:565.740000px;}
.y65{bottom:576.900000px;}
.y1f{bottom:577.230000px;}
.y11{bottom:584.070000px;}
.y8b{bottom:589.140000px;}
.y1e{bottom:600.630000px;}
.y10{bottom:608.220000px;}
.y64{bottom:608.940000px;}
.y8a{bottom:618.300000px;}
.y63{bottom:635.220000px;}
.y89{bottom:641.340000px;}
.y62{bottom:658.260000px;}
.y88{bottom:673.770000px;}
.y61{bottom:678.450000px;}
.y87{bottom:696.450000px;}
.y60{bottom:710.490000px;}
.y86{bottom:719.850000px;}
.y5f{bottom:736.770000px;}
.y85{bottom:749.010000px;}
.y5e{bottom:762.690000px;}
.y84{bottom:769.170000px;}
.y5d{bottom:788.970000px;}
.y83{bottom:791.850000px;}
.y5c{bottom:812.415000px;}
.y82{bottom:815.295000px;}
.y5b{bottom:841.215000px;}
.y81{bottom:844.455000px;}
.y5a{bottom:864.255000px;}
.y80{bottom:867.135000px;}
.y59{bottom:887.295000px;}
.y7f{bottom:893.415000px;}
.y58{bottom:910.335000px;}
.y7e{bottom:916.815000px;}
.y57{bottom:933.765000px;}
.y7d{bottom:946.005000px;}
.ye{bottom:947.445000px;}
.yd{bottom:949.965000px;}
.yc{bottom:956.445000px;}
.y56{bottom:962.925000px;}
.y7c{bottom:966.165000px;}
.yb{bottom:976.605000px;}
.y55{bottom:985.965000px;}
.ya{bottom:1002.885000px;}
.y7b{bottom:1006.125000px;}
.y54{bottom:1011.885000px;}
.y7a{bottom:1026.285000px;}
.y9{bottom:1032.405000px;}
.y53{bottom:1038.165000px;}
.y79{bottom:1058.325000px;}
.y52{bottom:1064.085000px;}
.y8{bottom:1072.050000px;}
.y4f{bottom:1075.320000px;}
.y78{bottom:1084.290000px;}
.y51{bottom:1087.530000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.h16{height:5.805000px;}
.ha{height:11.306250px;}
.h17{height:18.363516px;}
.h18{height:27.720000px;}
.h12{height:29.678906px;}
.h11{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h13{height:53.677969px;}
.h14{height:55.147500px;}
.h7{height:57.290625px;}
.h6{height:59.357813px;}
.he{height:61.143509px;}
.h1a{height:62.163910px;}
.h19{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.hf{height:70.218281px;}
.h2{height:84.990000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h10{height:202.005000px;}
.hb{height:617.565000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x19{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:14.386500px;}
.x17{left:16.186500px;}
.x1b{left:18.346500px;}
.x16{left:19.426500px;}
.x6{left:28.785000px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:53.302500px;}
.xe{left:55.102500px;}
.x1e{left:57.262500px;}
.x1d{left:66.265500px;}
.x13{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x26{left:91.836000px;}
.x12{left:92.905500px;}
.x2{left:95.425500px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x24{left:113.436000px;}
.x27{left:118.836000px;}
.x20{left:122.100000px;}
.x11{left:124.585500px;}
.x25{left:140.472000px;}
.x5{left:141.540000px;}
.x21{left:164.580000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x22{left:521.115000px;}
.xb{left:542.010000px;}
.xc{left:572.970000px;}
.xa{left:669.885000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.536000pt;}
.ls22{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.758939pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.466607pt;}
.ls20{letter-spacing:-0.450667pt;}
.ls1e{letter-spacing:-0.278933pt;}
.ls1d{letter-spacing:-0.208006pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.079467pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.017920pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001280pt;}
.lsb{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.174080pt;}
.ls21{letter-spacing:0.207467pt;}
.ls18{letter-spacing:0.269845pt;}
.ls2{letter-spacing:0.414720pt;}
.ls1a{letter-spacing:0.414933pt;}
.ls9{letter-spacing:0.588262pt;}
.ls16{letter-spacing:0.590286pt;}
.ls4{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.656000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.121280pt;}
.lsa{letter-spacing:1.937487pt;}
.lsf{letter-spacing:4.254720pt;}
.ls6{letter-spacing:4.635937pt;}
.ls8{letter-spacing:4.804590pt;}
.lse{letter-spacing:5.534720pt;}
.ls7{letter-spacing:5.985162pt;}
.lsc{letter-spacing:6.814720pt;}
.ls24{letter-spacing:13.214720pt;}
.lsd{letter-spacing:27.151360pt;}
.ls1f{letter-spacing:36.382720pt;}
.ls25{letter-spacing:41.374720pt;}
.ls23{letter-spacing:56.734720pt;}
.wse{word-spacing:-53.760000pt;}
.ws8{word-spacing:-17.149440pt;}
.ws7{word-spacing:-16.355305pt;}
.ws1{word-spacing:-14.945280pt;}
.wsf{word-spacing:-14.927360pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.494613pt;}
.ws6{word-spacing:-14.253213pt;}
.ws2{word-spacing:-13.440000pt;}
.wsb{word-spacing:-11.881067pt;}
.wsa{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._9{margin-left:-7.843098pt;}
._6{margin-left:-6.705393pt;}
._15{margin-left:-4.004591pt;}
._8{margin-left:-2.945169pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._b{width:3.948262pt;}
._5{width:4.870027pt;}
._16{width:5.806080pt;}
._7{width:6.716442pt;}
._a{width:7.633920pt;}
._11{width:8.560076pt;}
._c{width:9.917440pt;}
._d{width:10.924373pt;}
._14{width:12.382293pt;}
._13{width:14.036480pt;}
._f{width:17.418240pt;}
._10{width:18.680320pt;}
._e{width:19.863040pt;}
._12{width:27.310080pt;}
.fs6{font-size:5.120000pt;}
.fs5{font-size:10.240000pt;}
.fsc{font-size:16.640000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsd{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.556000pt;}
.y5{bottom:3.840000pt;}
.y50{bottom:4.773333pt;}
.y36{bottom:6.080000pt;}
.y2{bottom:8.960000pt;}
.y3f{bottom:9.596000pt;}
.y4d{bottom:10.876000pt;}
.y4{bottom:20.800000pt;}
.y4c{bottom:27.550667pt;}
.y35{bottom:29.440000pt;}
.y3e{bottom:35.870667pt;}
.y3{bottom:42.560000pt;}
.y4b{bottom:45.790667pt;}
.y3d{bottom:46.430667pt;}
.y4a{bottom:49.630667pt;}
.y7{bottom:51.232000pt;}
.y34{bottom:52.800000pt;}
.y49{bottom:53.470667pt;}
.y3c{bottom:57.950667pt;}
.y3b{bottom:69.790667pt;}
.y48{bottom:70.430667pt;}
.y33{bottom:73.320000pt;}
.y47{bottom:86.110667pt;}
.y3a{bottom:88.990667pt;}
.y46{bottom:91.550667pt;}
.y32{bottom:93.800000pt;}
.y4e{bottom:95.712000pt;}
.y45{bottom:105.630667pt;}
.y37{bottom:110.436000pt;}
.y77{bottom:116.192000pt;}
.y31{bottom:117.160000pt;}
.y44{bottom:119.390667pt;}
.y43{bottom:133.177333pt;}
.y76{bottom:134.146667pt;}
.y30{bottom:140.200000pt;}
.y39{bottom:144.377333pt;}
.y42{bottom:147.257333pt;}
.y75{bottom:152.066667pt;}
.y38{bottom:153.977333pt;}
.y41{bottom:160.697333pt;}
.y2f{bottom:161.000000pt;}
.y74{bottom:172.226667pt;}
.y2e{bottom:178.920000pt;}
.y73{bottom:195.586667pt;}
.y2d{bottom:199.106667pt;}
.y72{bottom:218.946667pt;}
.y2c{bottom:222.466667pt;}
.y71{bottom:241.986667pt;}
.y2b{bottom:245.826667pt;}
.y1d{bottom:261.506667pt;}
.y70{bottom:265.373333pt;}
.y2a{bottom:266.626667pt;}
.y98{bottom:277.533333pt;}
.y1c{bottom:282.946667pt;}
.y29{bottom:286.786667pt;}
.y6f{bottom:288.413333pt;}
.yf{bottom:290.653333pt;}
.y97{bottom:295.453333pt;}
.y1b{bottom:304.733333pt;}
.y6e{bottom:309.213333pt;}
.y28{bottom:310.173333pt;}
.y96{bottom:313.373333pt;}
.y1a{bottom:326.173333pt;}
.y27{bottom:333.213333pt;}
.y95{bottom:333.533333pt;}
.y6d{bottom:334.813333pt;}
.y19{bottom:347.613333pt;}
.y6c{bottom:355.613333pt;}
.y26{bottom:356.573333pt;}
.y94{bottom:356.893333pt;}
.y18{bottom:369.053333pt;}
.y25{bottom:377.373333pt;}
.y93{bottom:377.413333pt;}
.y6b{bottom:378.693333pt;}
.y17{bottom:390.493333pt;}
.y92{bottom:392.773333pt;}
.y6a{bottom:399.173333pt;}
.y24{bottom:406.813333pt;}
.y91{bottom:408.133333pt;}
.y16{bottom:411.933333pt;}
.y69{bottom:419.973333pt;}
.y90{bottom:423.173333pt;}
.y23{bottom:429.573333pt;}
.y15{bottom:433.413333pt;}
.y8f{bottom:438.853333pt;}
.y68{bottom:440.453333pt;}
.y22{bottom:450.373333pt;}
.y14{bottom:454.853333pt;}
.y8e{bottom:464.773333pt;}
.y67{bottom:468.933333pt;}
.y21{bottom:471.173333pt;}
.y13{bottom:476.293333pt;}
.y8d{bottom:482.720000pt;}
.y20{bottom:492.293333pt;}
.y66{bottom:492.320000pt;}
.y12{bottom:497.733333pt;}
.y8c{bottom:502.880000pt;}
.y65{bottom:512.800000pt;}
.y1f{bottom:513.093333pt;}
.y11{bottom:519.173333pt;}
.y8b{bottom:523.680000pt;}
.y1e{bottom:533.893333pt;}
.y10{bottom:540.640000pt;}
.y64{bottom:541.280000pt;}
.y8a{bottom:549.600000pt;}
.y63{bottom:564.640000pt;}
.y89{bottom:570.080000pt;}
.y62{bottom:585.120000pt;}
.y88{bottom:598.906667pt;}
.y61{bottom:603.066667pt;}
.y87{bottom:619.066667pt;}
.y60{bottom:631.546667pt;}
.y86{bottom:639.866667pt;}
.y5f{bottom:654.906667pt;}
.y85{bottom:665.786667pt;}
.y5e{bottom:677.946667pt;}
.y84{bottom:683.706667pt;}
.y5d{bottom:701.306667pt;}
.y83{bottom:703.866667pt;}
.y5c{bottom:722.146667pt;}
.y82{bottom:724.706667pt;}
.y5b{bottom:747.746667pt;}
.y81{bottom:750.626667pt;}
.y5a{bottom:768.226667pt;}
.y80{bottom:770.786667pt;}
.y59{bottom:788.706667pt;}
.y7f{bottom:794.146667pt;}
.y58{bottom:809.186667pt;}
.y7e{bottom:814.946667pt;}
.y57{bottom:830.013333pt;}
.y7d{bottom:840.893333pt;}
.ye{bottom:842.173333pt;}
.yd{bottom:844.413333pt;}
.yc{bottom:850.173333pt;}
.y56{bottom:855.933333pt;}
.y7c{bottom:858.813333pt;}
.yb{bottom:868.093333pt;}
.y55{bottom:876.413333pt;}
.ya{bottom:891.453333pt;}
.y7b{bottom:894.333333pt;}
.y54{bottom:899.453333pt;}
.y7a{bottom:912.253333pt;}
.y9{bottom:917.693333pt;}
.y53{bottom:922.813333pt;}
.y79{bottom:940.733333pt;}
.y52{bottom:945.853333pt;}
.y8{bottom:952.933333pt;}
.y4f{bottom:955.840000pt;}
.y78{bottom:963.813333pt;}
.y51{bottom:966.693333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.h16{height:5.160000pt;}
.ha{height:10.050000pt;}
.h17{height:16.323125pt;}
.h18{height:24.640000pt;}
.h12{height:26.381250pt;}
.h11{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h13{height:47.713750pt;}
.h14{height:49.020000pt;}
.h7{height:50.925000pt;}
.h6{height:52.762500pt;}
.he{height:54.349786pt;}
.h1a{height:55.256809pt;}
.h19{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.hf{height:62.416250pt;}
.h2{height:75.546667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h10{height:179.560000pt;}
.hb{height:548.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x19{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:12.788000pt;}
.x17{left:14.388000pt;}
.x1b{left:16.308000pt;}
.x16{left:17.268000pt;}
.x6{left:25.586667pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x1d{left:58.902667pt;}
.x13{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x26{left:81.632000pt;}
.x12{left:82.582667pt;}
.x2{left:84.822667pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x24{left:100.832000pt;}
.x27{left:105.632000pt;}
.x20{left:108.533333pt;}
.x11{left:110.742667pt;}
.x25{left:124.864000pt;}
.x5{left:125.813333pt;}
.x21{left:146.293333pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x22{left:463.213333pt;}
.xb{left:481.786667pt;}
.xc{left:509.306667pt;}
.xa{left:595.453333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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