
    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_3b4f6bc60300d22b880c3ba8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3ca601882a0138082054c904.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_381a97b036b030d59efc4bf6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_6d07af04f08f69e53884e786.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_6b26b274f5a196cb122d0155.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689000;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_92985412a9ca5b3ed6e486ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_9a7535ade52e2122caa48c50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.735000;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_fd618193a3628968b6a285c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.729581;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);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.362884px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.089663px;}
.ls2{letter-spacing:4.925509px;}
.ls4{letter-spacing:5.925047px;}
.ls1{letter-spacing:15.919677px;}
.ls3{letter-spacing:34.163465px;}
.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;}
}
.ws3d{word-spacing:-0.059776px;}
.ws23{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws40{word-spacing:12.050942px;}
.ws43{word-spacing:13.289511px;}
.ws1c{word-spacing:14.142907px;}
.ws24{word-spacing:14.202896px;}
.ws1b{word-spacing:14.483628px;}
.ws20{word-spacing:14.633067px;}
.ws44{word-spacing:15.044550px;}
.ws15{word-spacing:15.117249px;}
.ws5{word-spacing:15.298002px;}
.ws3b{word-spacing:15.314509px;}
.ws4{word-spacing:15.345823px;}
.ws25{word-spacing:15.522762px;}
.ws3e{word-spacing:15.651878px;}
.wsc{word-spacing:15.655229px;}
.ws22{word-spacing:15.714047px;}
.ws3f{word-spacing:15.857510px;}
.ws42{word-spacing:16.067923px;}
.ws3a{word-spacing:16.079636px;}
.ws38{word-spacing:16.306783px;}
.ws37{word-spacing:16.324716px;}
.ws29{word-spacing:16.336670px;}
.ws36{word-spacing:16.581751px;}
.ws39{word-spacing:16.665437px;}
.ws1a{word-spacing:16.814875px;}
.ws26{word-spacing:17.311014px;}
.ws2a{word-spacing:17.651734px;}
.ws30{word-spacing:18.375019px;}
.ws19{word-spacing:18.506526px;}
.ws1f{word-spacing:18.775516px;}
.ws17{word-spacing:19.361316px;}
.ws2c{word-spacing:19.397182px;}
.ws2d{word-spacing:19.540643px;}
.ws3c{word-spacing:19.785723px;}
.ws2f{word-spacing:19.821589px;}
.wsd{word-spacing:19.869409px;}
.wsb{word-spacing:19.881364px;}
.ws16{word-spacing:19.923206px;}
.ws18{word-spacing:20.090579px;}
.ws35{word-spacing:20.222084px;}
.ws9{word-spacing:20.263928px;}
.ws6{word-spacing:20.347613px;}
.ws8{word-spacing:20.395435px;}
.ws3{word-spacing:20.413367px;}
.ws7{word-spacing:20.419345px;}
.ws10{word-spacing:21.238269px;}
.ws12{word-spacing:21.423574px;}
.ws11{word-spacing:21.471396px;}
.ws13{word-spacing:21.602901px;}
.ws34{word-spacing:21.800162px;}
.ws1d{word-spacing:21.955577px;}
.ws41{word-spacing:22.131651px;}
.ws31{word-spacing:22.589198px;}
.ws33{word-spacing:22.648974px;}
.ws32{word-spacing:22.786458px;}
.ws45{word-spacing:22.949394px;}
.ws27{word-spacing:23.324439px;}
.ws2b{word-spacing:25.159549px;}
.ws2{word-spacing:25.869305px;}
.ws1{word-spacing:25.954806px;}
.ws21{word-spacing:28.028778px;}
.ws14{word-spacing:28.040734px;}
.wsf{word-spacing:28.548826px;}
.wse{word-spacing:28.674355px;}
.ws1e{word-spacing:29.684563px;}
.ws46{word-spacing:34.034349px;}
.ws2e{word-spacing:36.086530px;}
.ws28{word-spacing:38.776431px;}
.wsa{word-spacing:38.788387px;}
._9{margin-left:-6.228619px;}
._b{margin-left:-1.200312px;}
._2{width:1.022108px;}
._f{width:10.692820px;}
._8{width:15.278642px;}
._0{width:16.488751px;}
._7{width:18.058212px;}
._6{width:19.600417px;}
._1{width:21.614855px;}
._5{width:22.655065px;}
._c{width:24.603635px;}
._d{width:26.337129px;}
._4{width:29.851933px;}
._a{width:31.113360px;}
._10{width:35.225092px;}
._e{width:37.174443px;}
._3{width:39.959985px;}
._11{width:1347.610943px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.876199px;}
.fs8{font-size:39.845999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.821200px;}
.fs7{font-size:59.775599px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.709000px;}
.fsa{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:49.067848px;}
.y44{bottom:93.543303px;}
.y4{bottom:97.125005px;}
.y43{bottom:98.815796px;}
.y42{bottom:121.946405px;}
.y41{bottom:136.148106px;}
.y20{bottom:139.264499px;}
.y40{bottom:171.953104px;}
.y3f{bottom:189.811064px;}
.y17{bottom:196.933500px;}
.y3e{bottom:207.754205px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y3d{bottom:225.697345px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y3c{bottom:243.640485px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y3b{bottom:261.583625px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y3a{bottom:279.526766px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y39{bottom:297.469906px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y38{bottom:315.413046px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y37{bottom:333.271006px;}
.ye{bottom:348.133500px;}
.y36{bottom:351.214147px;}
.y35{bottom:369.157287px;}
.yd{bottom:386.785499px;}
.y34{bottom:387.100427px;}
.y65{bottom:387.438303px;}
.y64{bottom:401.640004px;}
.y33{bottom:405.043567px;}
.yc{bottom:408.044999px;}
.y63{bottom:415.841705px;}
.y32{bottom:422.986708px;}
.y62{bottom:430.043406px;}
.y30{bottom:440.929848px;}
.y31{bottom:441.015028px;}
.y61{bottom:444.245107px;}
.y60{bottom:458.446808px;}
.y2f{bottom:458.872988px;}
.y5f{bottom:472.648509px;}
.y2d{bottom:476.730948px;}
.y2e{bottom:477.071669px;}
.y5e{bottom:486.850210px;}
.y2c{bottom:494.674089px;}
.y5d{bottom:501.051910px;}
.y2b{bottom:512.617229px;}
.yb{bottom:520.864502px;}
.y2a{bottom:530.560369px;}
.y5c{bottom:533.454873px;}
.ya{bottom:538.864499px;}
.y29{bottom:548.503510px;}
.y5b{bottom:551.398013px;}
.y9{bottom:556.864499px;}
.y28{bottom:566.446650px;}
.y5a{bottom:569.255973px;}
.y27{bottom:592.894363px;}
.y59{bottom:595.703687px;}
.y58{bottom:613.646827px;}
.y8{bottom:626.610001px;}
.y57{bottom:631.589968px;}
.y7{bottom:645.510000px;}
.y56{bottom:649.533108px;}
.y26{bottom:654.462758px;}
.y6{bottom:666.771000px;}
.y55{bottom:667.476248px;}
.y25{bottom:668.664459px;}
.y54{bottom:685.419388px;}
.y53{bottom:703.362529px;}
.y52{bottom:721.220489px;}
.y5{bottom:726.298500px;}
.y51{bottom:739.163629px;}
.y3{bottom:752.599495px;}
.y50{bottom:757.106769px;}
.y4f{bottom:775.049910px;}
.y4e{bottom:792.993050px;}
.y23{bottom:803.111664px;}
.y24{bottom:809.744659px;}
.y4d{bottom:810.936190px;}
.y4c{bottom:828.879331px;}
.y22{bottom:846.226685px;}
.y4b{bottom:846.822471px;}
.y4a{bottom:864.680431px;}
.y2{bottom:879.369000px;}
.y49{bottom:882.623571px;}
.y48{bottom:900.566711px;}
.y21{bottom:900.906921px;}
.y47{bottom:925.823232px;}
.y66{bottom:939.684723px;}
.y46{bottom:940.024933px;}
.y1{bottom:966.726000px;}
.h10{height:21.930825px;}
.hd{height:27.653123px;}
.h7{height:32.130000px;}
.ha{height:32.900986px;}
.h12{height:33.187913px;}
.hf{height:34.909476px;}
.he{height:41.125612px;}
.hc{height:41.484265px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:54.318591px;}
.h11{height:54.657439px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.xe{left:78.661348px;}
.x5{left:80.787300px;}
.x8{left:93.543041px;}
.xc{left:97.795181px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:178.072346px;}
.x4{left:203.484001px;}
.x9{left:226.458567px;}
.xa{left:266.768247px;}
.xb{left:358.525285px;}
.x3{left:454.959000px;}
.xd{left:522.991928px;}
@media print{
.v1{vertical-align:-1.211452pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.079701pt;}
.ls2{letter-spacing:4.378231pt;}
.ls4{letter-spacing:5.266708pt;}
.ls1{letter-spacing:14.150824pt;}
.ls3{letter-spacing:30.367525pt;}
.ws3d{word-spacing:-0.053134pt;}
.ws23{word-spacing:-0.042508pt;}
.ws0{word-spacing:0.000000pt;}
.ws40{word-spacing:10.711949pt;}
.ws43{word-spacing:11.812899pt;}
.ws1c{word-spacing:12.571473pt;}
.ws24{word-spacing:12.624797pt;}
.ws1b{word-spacing:12.874336pt;}
.ws20{word-spacing:13.007170pt;}
.ws44{word-spacing:13.372933pt;}
.ws15{word-spacing:13.437554pt;}
.ws5{word-spacing:13.598224pt;}
.ws3b{word-spacing:13.612897pt;}
.ws4{word-spacing:13.640731pt;}
.ws25{word-spacing:13.798010pt;}
.ws3e{word-spacing:13.912781pt;}
.wsc{word-spacing:13.915759pt;}
.ws22{word-spacing:13.968041pt;}
.ws3f{word-spacing:14.095565pt;}
.ws42{word-spacing:14.282598pt;}
.ws3a{word-spacing:14.293010pt;}
.ws38{word-spacing:14.494918pt;}
.ws37{word-spacing:14.510859pt;}
.ws29{word-spacing:14.521485pt;}
.ws36{word-spacing:14.739334pt;}
.ws39{word-spacing:14.813722pt;}
.ws1a{word-spacing:14.946556pt;}
.ws26{word-spacing:15.387568pt;}
.ws2a{word-spacing:15.690430pt;}
.ws30{word-spacing:16.333350pt;}
.ws19{word-spacing:16.450245pt;}
.ws1f{word-spacing:16.689347pt;}
.ws17{word-spacing:17.210059pt;}
.ws2c{word-spacing:17.241939pt;}
.ws2d{word-spacing:17.369460pt;}
.ws3c{word-spacing:17.587309pt;}
.ws2f{word-spacing:17.619190pt;}
.wsd{word-spacing:17.661697pt;}
.wsb{word-spacing:17.672324pt;}
.ws16{word-spacing:17.709517pt;}
.ws18{word-spacing:17.858292pt;}
.ws35{word-spacing:17.975186pt;}
.ws9{word-spacing:18.012380pt;}
.ws6{word-spacing:18.086767pt;}
.ws8{word-spacing:18.129276pt;}
.ws3{word-spacing:18.145215pt;}
.ws7{word-spacing:18.150529pt;}
.ws10{word-spacing:18.878462pt;}
.ws12{word-spacing:19.043177pt;}
.ws11{word-spacing:19.085685pt;}
.ws13{word-spacing:19.202579pt;}
.ws34{word-spacing:19.377921pt;}
.ws1d{word-spacing:19.516068pt;}
.ws41{word-spacing:19.672578pt;}
.ws31{word-spacing:20.079287pt;}
.ws33{word-spacing:20.132421pt;}
.ws32{word-spacing:20.254629pt;}
.ws45{word-spacing:20.399461pt;}
.ws27{word-spacing:20.732835pt;}
.ws2b{word-spacing:22.364044pt;}
.ws2{word-spacing:22.994938pt;}
.ws1{word-spacing:23.070939pt;}
.ws21{word-spacing:24.914469pt;}
.ws14{word-spacing:24.925097pt;}
.wsf{word-spacing:25.376734pt;}
.wse{word-spacing:25.488316pt;}
.ws1e{word-spacing:26.386278pt;}
.ws46{word-spacing:30.252754pt;}
.ws2e{word-spacing:32.076915pt;}
.ws28{word-spacing:34.467939pt;}
.wsa{word-spacing:34.478567pt;}
._9{margin-left:-5.536550pt;}
._b{margin-left:-1.066944pt;}
._2{width:0.908540pt;}
._f{width:9.504729pt;}
._8{width:13.581015pt;}
._0{width:14.656667pt;}
._7{width:16.051744pt;}
._6{width:17.422593pt;}
._1{width:19.213204pt;}
._5{width:20.137835pt;}
._c{width:21.869897pt;}
._d{width:23.410781pt;}
._4{width:26.535052pt;}
._a{width:27.656320pt;}
._10{width:31.311193pt;}
._e{width:33.043949pt;}
._3{width:35.519987pt;}
._11{width:1197.876394pt;}
.fs9{font-size:28.334399pt;}
.fs8{font-size:35.418666pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.507733pt;}
.fs7{font-size:53.133865pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.074667pt;}
.fsa{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:43.615865pt;}
.y44{bottom:83.149602pt;}
.y4{bottom:86.333337pt;}
.y43{bottom:87.836263pt;}
.y42{bottom:108.396804pt;}
.y41{bottom:121.020538pt;}
.y20{bottom:123.790666pt;}
.y40{bottom:152.847204pt;}
.y3f{bottom:168.720946pt;}
.y17{bottom:175.052000pt;}
.y3e{bottom:184.670404pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y3d{bottom:200.619862pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y3c{bottom:216.569320pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y3b{bottom:232.518778pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y3a{bottom:248.468236pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y39{bottom:264.417694pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y38{bottom:280.367152pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y37{bottom:296.240895pt;}
.ye{bottom:309.452000pt;}
.y36{bottom:312.190353pt;}
.y35{bottom:328.139811pt;}
.yd{bottom:343.809333pt;}
.y34{bottom:344.089269pt;}
.y65{bottom:344.389603pt;}
.y64{bottom:357.013337pt;}
.y33{bottom:360.038727pt;}
.yc{bottom:362.706666pt;}
.y63{bottom:369.637071pt;}
.y32{bottom:375.988185pt;}
.y62{bottom:382.260805pt;}
.y30{bottom:391.937643pt;}
.y31{bottom:392.013358pt;}
.y61{bottom:394.884539pt;}
.y60{bottom:407.508274pt;}
.y2f{bottom:407.887101pt;}
.y5f{bottom:420.132008pt;}
.y2d{bottom:423.760843pt;}
.y2e{bottom:424.063706pt;}
.y5e{bottom:432.755742pt;}
.y2c{bottom:439.710301pt;}
.y5d{bottom:445.379476pt;}
.y2b{bottom:455.659759pt;}
.yb{bottom:462.990669pt;}
.y2a{bottom:471.609217pt;}
.y5c{bottom:474.182109pt;}
.ya{bottom:478.990666pt;}
.y29{bottom:487.558675pt;}
.y5b{bottom:490.131567pt;}
.y9{bottom:494.990666pt;}
.y28{bottom:503.508133pt;}
.y5a{bottom:506.005310pt;}
.y27{bottom:527.017212pt;}
.y59{bottom:529.514388pt;}
.y58{bottom:545.463846pt;}
.y8{bottom:556.986668pt;}
.y57{bottom:561.413305pt;}
.y7{bottom:573.786667pt;}
.y56{bottom:577.362763pt;}
.y26{bottom:581.744674pt;}
.y6{bottom:592.685334pt;}
.y55{bottom:593.312221pt;}
.y25{bottom:594.368408pt;}
.y54{bottom:609.261679pt;}
.y53{bottom:625.211137pt;}
.y52{bottom:641.084879pt;}
.y5{bottom:645.598667pt;}
.y51{bottom:657.034337pt;}
.y3{bottom:668.977329pt;}
.y50{bottom:672.983795pt;}
.y4f{bottom:688.933253pt;}
.y4e{bottom:704.882711pt;}
.y23{bottom:713.877035pt;}
.y24{bottom:719.773031pt;}
.y4d{bottom:720.832169pt;}
.y4c{bottom:736.781627pt;}
.y22{bottom:752.201497pt;}
.y4b{bottom:752.731085pt;}
.y4a{bottom:768.604827pt;}
.y2{bottom:781.661334pt;}
.y49{bottom:784.554285pt;}
.y48{bottom:800.503743pt;}
.y21{bottom:800.806152pt;}
.y47{bottom:822.953984pt;}
.y66{bottom:835.275309pt;}
.y46{bottom:835.577718pt;}
.y1{bottom:859.312000pt;}
.h10{height:19.494066pt;}
.hd{height:24.580554pt;}
.h7{height:28.560000pt;}
.ha{height:29.245321pt;}
.h12{height:29.500367pt;}
.hf{height:31.030645pt;}
.he{height:36.556099pt;}
.hc{height:36.874903pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:48.283192pt;}
.h11{height:48.584390pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.xe{left:69.921199pt;}
.x5{left:71.810933pt;}
.x8{left:83.149370pt;}
.xc{left:86.929050pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:158.286530pt;}
.x4{left:180.874667pt;}
.x9{left:201.296504pt;}
.xa{left:237.127331pt;}
.xb{left:318.689142pt;}
.x3{left:404.408000pt;}
.xd{left:464.881714pt;}
}




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