
    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_c39c63222f0749832bb01e90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_9c3ca20667f08b3979d6bb29.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6f6279a09c5089c033d612cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725586;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_3f26d54df6ff201bb091912b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_36d41d0b7ae705cc7d4ececf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_e5b4ad3215ff7feb06d3b1b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5ffa7c0a1b590b7921e7a4c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_7c5be831b5c5244ae8ea8b19.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_dcc9bba27a075c523c118a92.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_243612e718da83c643c58e33.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.891113;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120005px;}
.v1{vertical-align:38.879995px;}
.v3{vertical-align:72.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.547793px;}
.ls7{letter-spacing:0.547861px;}
.ls6{letter-spacing:0.962373px;}
.ls9{letter-spacing:1.639886px;}
.lsf{letter-spacing:1.639904px;}
.lsc{letter-spacing:2.174112px;}
.ls5{letter-spacing:2.797470px;}
.ls3{letter-spacing:3.614009px;}
.ls1{letter-spacing:11.893234px;}
.ls2{letter-spacing:16.933247px;}
.lse{letter-spacing:18.203431px;}
.lsb{letter-spacing:18.203462px;}
.ls11{letter-spacing:18.203467px;}
.lsa{letter-spacing:20.359886px;}
.lsd{letter-spacing:20.893991px;}
.ls12{letter-spacing:21.079904px;}
.ls4{letter-spacing:30.613252px;}
.ls13{letter-spacing:32.053252px;}
.ls10{letter-spacing:41.054040px;}
.ls14{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-66.233700px;}
.ws7{word-spacing:-55.331595px;}
.ws4{word-spacing:-55.172672px;}
.ws9{word-spacing:-51.633469px;}
.wsb{word-spacing:-51.633401px;}
.ws3{word-spacing:-51.463585px;}
.ws8{word-spacing:-50.565767px;}
.wsa{word-spacing:-48.235500px;}
.ws2{word-spacing:-48.030238px;}
.ws6{word-spacing:-46.965821px;}
.ws0{word-spacing:-16.558425px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-2.296188px;}
._0{margin-left:-1.078704px;}
._2{width:1.025906px;}
._a{width:2.513026px;}
._7{width:3.943234px;}
._8{width:5.114303px;}
._e{width:6.352184px;}
._25{width:7.459137px;}
._17{width:8.473334px;}
._9{width:9.946180px;}
._2b{width:11.138128px;}
._4{width:12.334880px;}
._21{width:13.815858px;}
._20{width:15.305496px;}
._34{width:16.435998px;}
._2a{width:18.109225px;}
._30{width:19.173561px;}
._13{width:20.179992px;}
._11{width:21.335833px;}
._10{width:22.538940px;}
._14{width:23.588511px;}
._f{width:25.046429px;}
._5{width:26.513143px;}
._6{width:27.893184px;}
._35{width:28.991587px;}
._12{width:30.113824px;}
._31{width:31.421499px;}
._c{width:32.953556px;}
._d{width:34.244333px;}
._2e{width:35.465968px;}
._1a{width:36.494359px;}
._18{width:38.279457px;}
._36{width:40.755994px;}
._15{width:42.065644px;}
._16{width:43.797034px;}
._24{width:45.078579px;}
._1e{width:46.154979px;}
._1d{width:47.688342px;}
._2d{width:49.137902px;}
._33{width:50.681458px;}
._38{width:52.768794px;}
._37{width:53.769346px;}
._1b{width:56.318308px;}
._1c{width:57.867297px;}
._1f{width:59.940981px;}
._26{width:65.238901px;}
._27{width:66.995129px;}
._29{width:68.906111px;}
._28{width:69.907492px;}
._2c{width:80.071886px;}
._19{width:114.119889px;}
._32{width:121.024235px;}
._3b{width:132.653242px;}
._23{width:133.839499px;}
._22{width:134.865603px;}
._2f{width:138.738127px;}
._39{width:143.528428px;}
._3a{width:190.283558px;}
._3c{width:250.903346px;}
._b{width:897.117746px;}
._1{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs4{font-size:66.233700px;}
.fs3{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y6e{bottom:112.860008px;}
.y70{bottom:114.300041px;}
.y2d{bottom:114.480010px;}
.y48{bottom:129.960022px;}
.y6d{bottom:131.759994px;}
.y2a{bottom:133.379997px;}
.y47{bottom:147.960022px;}
.y6c{bottom:150.840018px;}
.y29{bottom:152.460022px;}
.y46{bottom:161.639991px;}
.y6b{bottom:169.740005px;}
.y28{bottom:171.360008px;}
.y45{bottom:180.899986px;}
.y6a{bottom:188.639991px;}
.y27{bottom:190.259994px;}
.y44{bottom:199.800041px;}
.y69{bottom:207.720016px;}
.y26{bottom:209.340018px;}
.y43{bottom:218.879997px;}
.y68{bottom:226.620003px;}
.y25{bottom:228.240005px;}
.y42{bottom:238.139991px;}
.y67{bottom:242.460022px;}
.y24{bottom:247.320030px;}
.y66{bottom:250.740005px;}
.y41{bottom:257.220016px;}
.y23{bottom:266.220016px;}
.y65{bottom:274.139991px;}
.y40{bottom:276.120003px;}
.y6f{bottom:281.700027px;}
.y22{bottom:285.300041px;}
.y64{bottom:293.220016px;}
.y3f{bottom:295.200027px;}
.y21{bottom:304.200027px;}
.y63{bottom:312.120003px;}
.y3e{bottom:314.460022px;}
.y20{bottom:323.100013px;}
.y62{bottom:331.200027px;}
.y3d{bottom:333.360008px;}
.y1f{bottom:342.180004px;}
.y61{bottom:346.680004px;}
.y3c{bottom:352.439998px;}
.y1e{bottom:357.480010px;}
.y2c{bottom:361.080024px;}
.y60{bottom:364.680004px;}
.y3b{bottom:367.740005px;}
.y5f{bottom:378.180004px;}
.y1d{bottom:380.160015px;}
.y5e{bottom:397.259994px;}
.y1c{bottom:399.060000px;}
.y5d{bottom:416.160015px;}
.y1b{bottom:417.960022px;}
.y5c{bottom:435.060000px;}
.y1a{bottom:437.040012px;}
.y5b{bottom:454.140025px;}
.y19{bottom:455.939998px;}
.y3a{bottom:461.160015px;}
.y5a{bottom:473.040012px;}
.y18{bottom:475.020023px;}
.y39{bottom:480.060000px;}
.y59{bottom:492.120003px;}
.y17{bottom:493.920009px;}
.y38{bottom:500.400021px;}
.y58{bottom:511.020023px;}
.y16{bottom:512.819996px;}
.y37{bottom:520.560000px;}
.y57{bottom:530.100013px;}
.y15{bottom:531.900021px;}
.y36{bottom:540.900021px;}
.y56{bottom:548.999999px;}
.y14{bottom:550.800006px;}
.y35{bottom:559.980010px;}
.y55{bottom:567.900021px;}
.y13{bottom:569.879997px;}
.y34{bottom:579.240005px;}
.y54{bottom:586.980010px;}
.y12{bottom:588.780017px;}
.y33{bottom:598.319996px;}
.y53{bottom:605.880014px;}
.y11{bottom:607.680004px;}
.y32{bottom:617.220016px;}
.y52{bottom:624.960005px;}
.y10{bottom:626.760012px;}
.y31{bottom:636.120003px;}
.y51{bottom:643.860008px;}
.yf{bottom:645.660015px;}
.y30{bottom:655.200009px;}
.y2b{bottom:661.140008px;}
.y50{bottom:662.760012px;}
.ye{bottom:664.740005px;}
.y2f{bottom:671.040012px;}
.y2e{bottom:679.320013px;}
.y4f{bottom:681.840018px;}
.yd{bottom:683.640008px;}
.y4e{bottom:701.100013px;}
.yc{bottom:702.540012px;}
.y4d{bottom:720.540012px;}
.yb{bottom:721.620003px;}
.y4c{bottom:739.800006px;}
.ya{bottom:740.520006px;}
.y4b{bottom:758.880014px;}
.y9{bottom:759.600013px;}
.y4a{bottom:777.780008px;}
.y8{bottom:778.500008px;}
.y49{bottom:797.220007px;}
.y7{bottom:797.580007px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h7{height:46.441208px;}
.h2{height:46.945875px;}
.h8{height:48.219945px;}
.h10{height:54.591057px;}
.hb{height:55.820003px;}
.h6{height:57.275333px;}
.h5{height:70.988787px;}
.h9{height:79.531594px;}
.hf{height:79.531666px;}
.hd{height:79.561140px;}
.ha{height:79.561212px;}
.he{height:79.561280px;}
.hc{height:112.651598px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x8{left:65.880001px;}
.x26{left:85.140000px;}
.x13{left:90.900003px;}
.x22{left:93.599997px;}
.x1b{left:106.739997px;}
.x4{left:112.140000px;}
.x9{left:113.939999px;}
.x7{left:117.000000px;}
.xe{left:144.180005px;}
.x14{left:170.639992px;}
.x12{left:176.219999px;}
.x1e{left:206.099997px;}
.x27{left:209.879998px;}
.x2{left:240.300007px;}
.x1a{left:251.639992px;}
.x21{left:277.740006px;}
.x25{left:297.180005px;}
.x5{left:300.600013px;}
.x23{left:305.639992px;}
.x18{left:309.779983px;}
.x28{left:312.660015px;}
.x3{left:314.639992px;}
.x2a{left:326.519989px;}
.x29{left:333.899987px;}
.x24{left:344.699993px;}
.x17{left:360.180005px;}
.x15{left:399.060001px;}
.xb{left:415.079990px;}
.x1d{left:442.259994px;}
.x1c{left:446.399987px;}
.xc{left:453.959988px;}
.xd{left:458.819996px;}
.x16{left:460.079990px;}
.xf{left:466.019989px;}
.xa{left:469.259994px;}
.x10{left:484.379998px;}
.x19{left:501.300007px;}
.x11{left:516.060001px;}
.x1f{left:524.879998px;}
.x20{left:554.399987px;}
.x1{left:565.560001px;}
.x2b{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440004pt;}
.v1{vertical-align:34.559996pt;}
.v3{vertical-align:64.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.486927pt;}
.ls7{letter-spacing:0.486987pt;}
.ls6{letter-spacing:0.855442pt;}
.ls9{letter-spacing:1.457676pt;}
.lsf{letter-spacing:1.457692pt;}
.lsc{letter-spacing:1.932544pt;}
.ls5{letter-spacing:2.486640pt;}
.ls3{letter-spacing:3.212452pt;}
.ls1{letter-spacing:10.571763pt;}
.ls2{letter-spacing:15.051775pt;}
.lse{letter-spacing:16.180827pt;}
.lsb{letter-spacing:16.180855pt;}
.ls11{letter-spacing:16.180859pt;}
.lsa{letter-spacing:18.097676pt;}
.lsd{letter-spacing:18.572436pt;}
.ls12{letter-spacing:18.737692pt;}
.ls4{letter-spacing:27.211779pt;}
.ls13{letter-spacing:28.491779pt;}
.ls10{letter-spacing:36.492480pt;}
.ls14{letter-spacing:753.281416pt;}
.ws5{word-spacing:-58.874400pt;}
.ws7{word-spacing:-49.183640pt;}
.ws4{word-spacing:-49.042375pt;}
.ws9{word-spacing:-45.896417pt;}
.wsb{word-spacing:-45.896357pt;}
.ws3{word-spacing:-45.745409pt;}
.ws8{word-spacing:-44.947349pt;}
.wsa{word-spacing:-42.876000pt;}
.ws2{word-spacing:-42.693545pt;}
.ws6{word-spacing:-41.747397pt;}
.ws0{word-spacing:-14.718600pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-2.041056pt;}
._0{margin-left:-0.958848pt;}
._2{width:0.911916pt;}
._a{width:2.233801pt;}
._7{width:3.505097pt;}
._8{width:4.546047pt;}
._e{width:5.646386pt;}
._25{width:6.630344pt;}
._17{width:7.531853pt;}
._9{width:8.841049pt;}
._2b{width:9.900558pt;}
._4{width:10.964338pt;}
._21{width:12.280763pt;}
._20{width:13.604885pt;}
._34{width:14.609776pt;}
._2a{width:16.097089pt;}
._30{width:17.043166pt;}
._13{width:17.937771pt;}
._11{width:18.965185pt;}
._10{width:20.034613pt;}
._14{width:20.967566pt;}
._f{width:22.263492pt;}
._5{width:23.567238pt;}
._6{width:24.793942pt;}
._35{width:25.770300pt;}
._12{width:26.767844pt;}
._31{width:27.930222pt;}
._c{width:29.292050pt;}
._d{width:30.439407pt;}
._2e{width:31.525305pt;}
._1a{width:32.439430pt;}
._18{width:34.026184pt;}
._36{width:36.227550pt;}
._15{width:37.391683pt;}
._16{width:38.930697pt;}
._24{width:40.069848pt;}
._1e{width:41.026648pt;}
._1d{width:42.389637pt;}
._2d{width:43.678135pt;}
._33{width:45.050185pt;}
._38{width:46.905595pt;}
._37{width:47.794974pt;}
._1b{width:50.060718pt;}
._1c{width:51.437597pt;}
._1f{width:53.280872pt;}
._26{width:57.990134pt;}
._27{width:59.551226pt;}
._29{width:61.249876pt;}
._28{width:62.139993pt;}
._2c{width:71.175010pt;}
._19{width:101.439901pt;}
._32{width:107.577098pt;}
._3b{width:117.913993pt;}
._23{width:118.968443pt;}
._22{width:119.880536pt;}
._2f{width:123.322780pt;}
._39{width:127.580825pt;}
._3a{width:169.140940pt;}
._3c{width:223.025196pt;}
._b{width:797.437996pt;}
._1{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs4{font-size:58.874400pt;}
.fs3{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y6e{bottom:100.320007pt;}
.y70{bottom:101.600036pt;}
.y2d{bottom:101.760009pt;}
.y48{bottom:115.520019pt;}
.y6d{bottom:117.119994pt;}
.y2a{bottom:118.559997pt;}
.y47{bottom:131.520019pt;}
.y6c{bottom:134.080016pt;}
.y29{bottom:135.520019pt;}
.y46{bottom:143.679992pt;}
.y6b{bottom:150.880004pt;}
.y28{bottom:152.320007pt;}
.y45{bottom:160.799987pt;}
.y6a{bottom:167.679992pt;}
.y27{bottom:169.119994pt;}
.y44{bottom:177.600036pt;}
.y69{bottom:184.640014pt;}
.y26{bottom:186.080016pt;}
.y43{bottom:194.559997pt;}
.y68{bottom:201.440002pt;}
.y25{bottom:202.880004pt;}
.y42{bottom:211.679992pt;}
.y67{bottom:215.520019pt;}
.y24{bottom:219.840026pt;}
.y66{bottom:222.880004pt;}
.y41{bottom:228.640014pt;}
.y23{bottom:236.640014pt;}
.y65{bottom:243.679992pt;}
.y40{bottom:245.440002pt;}
.y6f{bottom:250.400024pt;}
.y22{bottom:253.600036pt;}
.y64{bottom:260.640014pt;}
.y3f{bottom:262.400024pt;}
.y21{bottom:270.400024pt;}
.y63{bottom:277.440002pt;}
.y3e{bottom:279.520019pt;}
.y20{bottom:287.200011pt;}
.y62{bottom:294.400024pt;}
.y3d{bottom:296.320007pt;}
.y1f{bottom:304.160003pt;}
.y61{bottom:308.160003pt;}
.y3c{bottom:313.279998pt;}
.y1e{bottom:317.760009pt;}
.y2c{bottom:320.960021pt;}
.y60{bottom:324.160003pt;}
.y3b{bottom:326.880004pt;}
.y5f{bottom:336.160003pt;}
.y1d{bottom:337.920013pt;}
.y5e{bottom:353.119994pt;}
.y1c{bottom:354.720000pt;}
.y5d{bottom:369.920013pt;}
.y1b{bottom:371.520019pt;}
.y5c{bottom:386.720000pt;}
.y1a{bottom:388.480010pt;}
.y5b{bottom:403.680022pt;}
.y19{bottom:405.279998pt;}
.y3a{bottom:409.920013pt;}
.y5a{bottom:420.480010pt;}
.y18{bottom:422.240020pt;}
.y39{bottom:426.720000pt;}
.y59{bottom:437.440002pt;}
.y17{bottom:439.040008pt;}
.y38{bottom:444.800018pt;}
.y58{bottom:454.240020pt;}
.y16{bottom:455.839996pt;}
.y37{bottom:462.720000pt;}
.y57{bottom:471.200011pt;}
.y15{bottom:472.800018pt;}
.y36{bottom:480.800018pt;}
.y56{bottom:487.999999pt;}
.y14{bottom:489.600005pt;}
.y35{bottom:497.760009pt;}
.y55{bottom:504.800018pt;}
.y13{bottom:506.559997pt;}
.y34{bottom:514.880004pt;}
.y54{bottom:521.760009pt;}
.y12{bottom:523.360015pt;}
.y33{bottom:531.839996pt;}
.y53{bottom:538.560012pt;}
.y11{bottom:540.160003pt;}
.y32{bottom:548.640014pt;}
.y52{bottom:555.520004pt;}
.y10{bottom:557.120010pt;}
.y31{bottom:565.440002pt;}
.y51{bottom:572.320007pt;}
.yf{bottom:573.920013pt;}
.y30{bottom:582.400008pt;}
.y2b{bottom:587.680007pt;}
.y50{bottom:589.120010pt;}
.ye{bottom:590.880004pt;}
.y2f{bottom:596.480010pt;}
.y2e{bottom:603.840011pt;}
.y4f{bottom:606.080016pt;}
.yd{bottom:607.680007pt;}
.y4e{bottom:623.200011pt;}
.yc{bottom:624.480010pt;}
.y4d{bottom:640.480010pt;}
.yb{bottom:641.440002pt;}
.y4c{bottom:657.600005pt;}
.ya{bottom:658.240005pt;}
.y4b{bottom:674.560012pt;}
.y9{bottom:675.200011pt;}
.y4a{bottom:691.360007pt;}
.y8{bottom:692.000007pt;}
.y49{bottom:708.640006pt;}
.y7{bottom:708.960006pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h7{height:41.281073pt;}
.h2{height:41.729666pt;}
.h8{height:42.862173pt;}
.h10{height:48.525384pt;}
.hb{height:49.617780pt;}
.h6{height:50.911407pt;}
.h5{height:63.101144pt;}
.h9{height:70.694750pt;}
.hf{height:70.694814pt;}
.hd{height:70.721013pt;}
.ha{height:70.721077pt;}
.he{height:70.721137pt;}
.hc{height:100.134754pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x8{left:58.560001pt;}
.x26{left:75.680000pt;}
.x13{left:80.800003pt;}
.x22{left:83.199997pt;}
.x1b{left:94.879997pt;}
.x4{left:99.680000pt;}
.x9{left:101.279999pt;}
.x7{left:104.000000pt;}
.xe{left:128.160004pt;}
.x14{left:151.679993pt;}
.x12{left:156.639999pt;}
.x1e{left:183.199997pt;}
.x27{left:186.559998pt;}
.x2{left:213.600006pt;}
.x1a{left:223.679993pt;}
.x21{left:246.880005pt;}
.x25{left:264.160004pt;}
.x5{left:267.200012pt;}
.x23{left:271.679993pt;}
.x18{left:275.359985pt;}
.x28{left:277.920013pt;}
.x3{left:279.679993pt;}
.x2a{left:290.239990pt;}
.x29{left:296.799988pt;}
.x24{left:306.399994pt;}
.x17{left:320.160004pt;}
.x15{left:354.720001pt;}
.xb{left:368.959991pt;}
.x1d{left:393.119995pt;}
.x1c{left:396.799988pt;}
.xc{left:403.519989pt;}
.xd{left:407.839996pt;}
.x16{left:408.959991pt;}
.xf{left:414.239990pt;}
.xa{left:417.119995pt;}
.x10{left:430.559998pt;}
.x19{left:445.600006pt;}
.x11{left:458.720001pt;}
.x1f{left:466.559998pt;}
.x20{left:492.799988pt;}
.x1{left:502.720001pt;}
.x2b{left:507.839996pt;}
}




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