
    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_d09fef3969678cdcb09a663a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ad38b8a1e7c2223a1e1c03a1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e616097f26ff3fdaf0f4236b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_99b24880bc5badc96d188c9f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_30b561d164bb7a54f4f3a90c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_5501588d622fba4871ce999c.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_626d29ed669f3038e9e3161c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118652;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_543ef22209a373dabde2e74f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_d9ea88cbaa43bbcc324e6c35.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_f8d10b7bb73f07b001b3b097.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091797;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_43a082b5917466c32413e9b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.956543;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_3717b36d965ca8eccee82450.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752441;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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;}
.m2{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);}
.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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.684000px;}
.ls1b{letter-spacing:-0.573000px;}
.ls7{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.350400px;}
.ls4{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.037440px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.147000px;}
.ls18{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.341400px;}
.ls15{letter-spacing:0.350400px;}
.ls9{letter-spacing:0.354720px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.ls29{letter-spacing:0.522720px;}
.ls23{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.980000px;}
.ls14{letter-spacing:4.140000px;}
.ls16{letter-spacing:4.860000px;}
.lsf{letter-spacing:5.580000px;}
.lse{letter-spacing:5.760000px;}
.lsc{letter-spacing:7.020000px;}
.lsb{letter-spacing:7.740000px;}
.lsd{letter-spacing:8.460000px;}
.ls1d{letter-spacing:12.780000px;}
.ls1e{letter-spacing:14.220000px;}
.ls21{letter-spacing:15.660000px;}
.ls13{letter-spacing:16.380000px;}
.ls25{letter-spacing:20.700000px;}
.ls2a{letter-spacing:21.221280px;}
.ls11{letter-spacing:22.860000px;}
.ls20{letter-spacing:25.740000px;}
.ls26{letter-spacing:27.180000px;}
.ls17{letter-spacing:30.060000px;}
.ls1f{letter-spacing:39.420000px;}
.lsa{letter-spacing:40.140000px;}
.ls28{letter-spacing:44.460000px;}
.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;}
}
.wse{word-spacing:-84.240000px;}
.ws10{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.wsc{word-spacing:-21.401400px;}
.ws7{word-spacing:-21.207000px;}
.ws1{word-spacing:-21.097440px;}
.wsd{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.022560px;}
.ws11{word-spacing:-20.709600px;}
.ws5{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.487000px;}
.ws3{word-spacing:-20.376000px;}
.wsf{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.940000px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-21.774000px;}
._29{margin-left:-20.619360px;}
._c{margin-left:-6.123120px;}
._5{margin-left:-4.737120px;}
._6{margin-left:-3.563280px;}
._1a{margin-left:-2.308320px;}
._0{margin-left:-1.179360px;}
._1{width:1.924080px;}
._19{width:2.931360px;}
._18{width:3.959280px;}
._b{width:5.054400px;}
._8{width:6.767040px;}
._4{width:8.741280px;}
._d{width:10.652160px;}
._16{width:12.612000px;}
._15{width:13.852080px;}
._23{width:14.910480px;}
._21{width:16.089840px;}
._9{width:17.100720px;}
._a{width:18.195840px;}
._2{width:19.279200px;}
._17{width:22.936800px;}
._1c{width:24.092640px;}
._3{width:25.196160px;}
._22{width:26.451360px;}
._10{width:27.883440px;}
._f{width:29.062800px;}
._1e{width:31.022160px;}
._1d{width:32.026800px;}
._14{width:33.308400px;}
._11{width:34.875360px;}
._7{width:35.970480px;}
._20{width:37.655280px;}
._1b{width:39.424320px;}
._26{width:40.448640px;}
._27{width:42.544560px;}
._13{width:43.817520px;}
._28{width:47.224320px;}
._e{width:48.353520px;}
._24{width:49.411920px;}
._25{width:51.084720px;}
._12{width:69.834960px;}
._2a{width:843.240000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5c{bottom:88.416000px;}
.y84{bottom:88.956000px;}
.y6f{bottom:93.636000px;}
.y5b{bottom:105.696000px;}
.y83{bottom:108.396000px;}
.y73{bottom:110.916000px;}
.y2c{bottom:111.276000px;}
.y82{bottom:113.616000px;}
.y5a{bottom:122.976000px;}
.y81{bottom:125.676000px;}
.y59{bottom:128.196000px;}
.y80{bottom:130.896000px;}
.y87{bottom:134.856000px;}
.y2b{bottom:135.396000px;}
.y58{bottom:140.256000px;}
.y7f{bottom:142.956000px;}
.y6e{bottom:145.476000px;}
.y57{bottom:157.530000px;}
.y86{bottom:159.150000px;}
.y2a{bottom:159.510000px;}
.y7e{bottom:160.230000px;}
.y56{bottom:162.750000px;}
.y7d{bottom:165.450000px;}
.y6d{bottom:174.630000px;}
.y55{bottom:176.070000px;}
.y7c{bottom:177.330000px;}
.y72{bottom:179.850000px;}
.y85{bottom:183.270000px;}
.y29{bottom:183.630000px;}
.y6c{bottom:191.910000px;}
.y71{bottom:193.170000px;}
.y7b{bottom:194.610000px;}
.y7a{bottom:199.830000px;}
.y54{bottom:207.390000px;}
.y28{bottom:207.750000px;}
.y6b{bottom:209.190000px;}
.y79{bottom:213.330000px;}
.y6a{bottom:214.410000px;}
.y69{bottom:226.470000px;}
.y53{bottom:231.510000px;}
.y27{bottom:231.870000px;}
.y68{bottom:243.750000px;}
.y52{bottom:255.630000px;}
.y67{bottom:261.030000px;}
.y66{bottom:266.250000px;}
.y26{bottom:274.215000px;}
.y65{bottom:278.175000px;}
.y51{bottom:279.795000px;}
.y64{bottom:295.455000px;}
.y25{bottom:298.335000px;}
.y63{bottom:300.675000px;}
.y50{bottom:303.915000px;}
.y78{bottom:311.475000px;}
.y62{bottom:313.995000px;}
.y24{bottom:322.455000px;}
.y4f{bottom:328.215000px;}
.y23{bottom:346.575000px;}
.y4e{bottom:352.335000px;}
.y22{bottom:370.695000px;}
.y4d{bottom:376.455000px;}
.y21{bottom:394.815000px;}
.y4c{bottom:400.575000px;}
.y77{bottom:408.135000px;}
.y20{bottom:419.115000px;}
.y4b{bottom:424.695000px;}
.y1f{bottom:443.235000px;}
.y4a{bottom:448.815000px;}
.y1e{bottom:467.355000px;}
.y49{bottom:473.115000px;}
.y1d{bottom:491.475000px;}
.y48{bottom:497.235000px;}
.y1c{bottom:515.595000px;}
.y47{bottom:521.355000px;}
.y1b{bottom:539.715000px;}
.y45{bottom:545.475000px;}
.y46{bottom:553.035000px;}
.y1a{bottom:564.045000px;}
.y44{bottom:569.625000px;}
.y19{bottom:588.165000px;}
.y43{bottom:593.745000px;}
.y18{bottom:612.285000px;}
.y42{bottom:618.045000px;}
.y76{bottom:625.605000px;}
.y17{bottom:636.405000px;}
.y41{bottom:642.165000px;}
.y16{bottom:660.525000px;}
.y40{bottom:666.285000px;}
.y61{bottom:673.845000px;}
.y15{bottom:684.645000px;}
.y3e{bottom:690.405000px;}
.y3f{bottom:697.965000px;}
.y14{bottom:708.765000px;}
.y3d{bottom:714.525000px;}
.y13{bottom:733.065000px;}
.y3c{bottom:738.645000px;}
.y60{bottom:746.205000px;}
.y12{bottom:757.185000px;}
.y3b{bottom:762.765000px;}
.y11{bottom:781.305000px;}
.y3a{bottom:787.065000px;}
.y10{bottom:805.425000px;}
.y39{bottom:811.185000px;}
.y70{bottom:818.745000px;}
.yf{bottom:829.545000px;}
.y38{bottom:835.305000px;}
.ye{bottom:853.710000px;}
.y37{bottom:859.470000px;}
.yd{bottom:878.010000px;}
.y36{bottom:883.590000px;}
.yc{bottom:902.130000px;}
.y35{bottom:907.710000px;}
.y75{bottom:911.310000px;}
.y74{bottom:915.270000px;}
.yb{bottom:926.250000px;}
.y34{bottom:932.010000px;}
.y5f{bottom:939.570000px;}
.ya{bottom:950.370000px;}
.y33{bottom:956.130000px;}
.y32{bottom:980.250000px;}
.y9{bottom:992.490000px;}
.y31{bottom:1004.370000px;}
.y8{bottom:1016.610000px;}
.y30{bottom:1028.490000px;}
.y5e{bottom:1036.050000px;}
.y2f{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y5d{bottom:1060.170000px;}
.y2e{bottom:1076.730000px;}
.y6{bottom:1083.030000px;}
.y2d{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h9{height:38.158594px;}
.hd{height:52.971680px;}
.h7{height:52.998047px;}
.h8{height:58.490859px;}
.h6{height:58.531992px;}
.ha{height:58.651172px;}
.h5{height:72.846211px;}
.hb{height:76.219102px;}
.he{height:80.341184px;}
.h4{height:82.635820px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.hc{height:87.148289px;}
.hf{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x13{left:90.179987px;}
.x26{left:95.039987px;}
.x30{left:112.355987px;}
.x5{left:113.615987px;}
.xd{left:139.355987px;}
.x7{left:140.615987px;}
.x3{left:144.575987px;}
.x18{left:192.629973px;}
.x19{left:199.469987px;}
.xa{left:217.829987px;}
.x10{left:225.749973px;}
.x11{left:232.589987px;}
.x29{left:260.129973px;}
.x28{left:267.869987px;}
.x2a{left:273.809987px;}
.x2b{left:275.789973px;}
.x2c{left:289.469987px;}
.x1a{left:293.429973px;}
.x9{left:297.389987px;}
.x1b{left:300.314987px;}
.x12{left:301.394987px;}
.xb{left:322.274987px;}
.x2e{left:324.434973px;}
.x2f{left:333.074987px;}
.x8{left:338.474987px;}
.x4{left:344.774987px;}
.x20{left:348.374973px;}
.x21{left:362.054987px;}
.x6{left:370.334987px;}
.x22{left:394.454973px;}
.x23{left:408.134987px;}
.x27{left:420.914987px;}
.x2{left:430.814987px;}
.x1e{left:449.354973px;}
.x1f{left:456.194987px;}
.xc{left:473.474987px;}
.x1c{left:521.204973px;}
.x1d{left:528.044987px;}
.xe{left:598.244973px;}
.xf{left:605.084987px;}
.x14{left:607.424973px;}
.x15{left:614.264987px;}
.x24{left:622.724973px;}
.x25{left:636.404987px;}
.x16{left:766.769973px;}
.x17{left:773.609987px;}
.x2d{left:786.569987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.608000pt;}
.ls1b{letter-spacing:-0.509333pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.311467pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.130667pt;}
.ls18{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.303467pt;}
.ls15{letter-spacing:0.311467pt;}
.ls9{letter-spacing:0.315307pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.ls29{letter-spacing:0.464640pt;}
.ls23{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.760000pt;}
.ls14{letter-spacing:3.680000pt;}
.ls16{letter-spacing:4.320000pt;}
.lsf{letter-spacing:4.960000pt;}
.lse{letter-spacing:5.120000pt;}
.lsc{letter-spacing:6.240000pt;}
.lsb{letter-spacing:6.880000pt;}
.lsd{letter-spacing:7.520000pt;}
.ls1d{letter-spacing:11.360000pt;}
.ls1e{letter-spacing:12.640000pt;}
.ls21{letter-spacing:13.920000pt;}
.ls13{letter-spacing:14.560000pt;}
.ls25{letter-spacing:18.400000pt;}
.ls2a{letter-spacing:18.863360pt;}
.ls11{letter-spacing:20.320000pt;}
.ls20{letter-spacing:22.880000pt;}
.ls26{letter-spacing:24.160000pt;}
.ls17{letter-spacing:26.720000pt;}
.ls1f{letter-spacing:35.040000pt;}
.lsa{letter-spacing:35.680000pt;}
.ls28{letter-spacing:39.520000pt;}
.wse{word-spacing:-74.880000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.056533pt;}
.ws2{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.wsc{word-spacing:-19.023467pt;}
.ws7{word-spacing:-18.850667pt;}
.ws1{word-spacing:-18.753280pt;}
.wsd{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.686720pt;}
.ws11{word-spacing:-18.408533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.210667pt;}
.ws3{word-spacing:-18.112000pt;}
.wsf{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-19.354667pt;}
._29{margin-left:-18.328320pt;}
._c{margin-left:-5.442773pt;}
._5{margin-left:-4.210773pt;}
._6{margin-left:-3.167360pt;}
._1a{margin-left:-2.051840pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.710293pt;}
._19{width:2.605653pt;}
._18{width:3.519360pt;}
._b{width:4.492800pt;}
._8{width:6.015147pt;}
._4{width:7.770027pt;}
._d{width:9.468587pt;}
._16{width:11.210667pt;}
._15{width:12.312960pt;}
._23{width:13.253760pt;}
._21{width:14.302080pt;}
._9{width:15.200640pt;}
._a{width:16.174080pt;}
._2{width:17.137067pt;}
._17{width:20.388267pt;}
._1c{width:21.415680pt;}
._3{width:22.396587pt;}
._22{width:23.512320pt;}
._10{width:24.785280pt;}
._f{width:25.833600pt;}
._1e{width:27.575253pt;}
._1d{width:28.468267pt;}
._14{width:29.607467pt;}
._11{width:31.000320pt;}
._7{width:31.973760pt;}
._20{width:33.471360pt;}
._1b{width:35.043840pt;}
._26{width:35.954347pt;}
._27{width:37.817387pt;}
._13{width:38.948907pt;}
._28{width:41.977173pt;}
._e{width:42.980907pt;}
._24{width:43.921707pt;}
._25{width:45.408640pt;}
._12{width:62.075520pt;}
._2a{width:749.546667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5c{bottom:78.592000pt;}
.y84{bottom:79.072000pt;}
.y6f{bottom:83.232000pt;}
.y5b{bottom:93.952000pt;}
.y83{bottom:96.352000pt;}
.y73{bottom:98.592000pt;}
.y2c{bottom:98.912000pt;}
.y82{bottom:100.992000pt;}
.y5a{bottom:109.312000pt;}
.y81{bottom:111.712000pt;}
.y59{bottom:113.952000pt;}
.y80{bottom:116.352000pt;}
.y87{bottom:119.872000pt;}
.y2b{bottom:120.352000pt;}
.y58{bottom:124.672000pt;}
.y7f{bottom:127.072000pt;}
.y6e{bottom:129.312000pt;}
.y57{bottom:140.026667pt;}
.y86{bottom:141.466667pt;}
.y2a{bottom:141.786667pt;}
.y7e{bottom:142.426667pt;}
.y56{bottom:144.666667pt;}
.y7d{bottom:147.066667pt;}
.y6d{bottom:155.226667pt;}
.y55{bottom:156.506667pt;}
.y7c{bottom:157.626667pt;}
.y72{bottom:159.866667pt;}
.y85{bottom:162.906667pt;}
.y29{bottom:163.226667pt;}
.y6c{bottom:170.586667pt;}
.y71{bottom:171.706667pt;}
.y7b{bottom:172.986667pt;}
.y7a{bottom:177.626667pt;}
.y54{bottom:184.346667pt;}
.y28{bottom:184.666667pt;}
.y6b{bottom:185.946667pt;}
.y79{bottom:189.626667pt;}
.y6a{bottom:190.586667pt;}
.y69{bottom:201.306667pt;}
.y53{bottom:205.786667pt;}
.y27{bottom:206.106667pt;}
.y68{bottom:216.666667pt;}
.y52{bottom:227.226667pt;}
.y67{bottom:232.026667pt;}
.y66{bottom:236.666667pt;}
.y26{bottom:243.746667pt;}
.y65{bottom:247.266667pt;}
.y51{bottom:248.706667pt;}
.y64{bottom:262.626667pt;}
.y25{bottom:265.186667pt;}
.y63{bottom:267.266667pt;}
.y50{bottom:270.146667pt;}
.y78{bottom:276.866667pt;}
.y62{bottom:279.106667pt;}
.y24{bottom:286.626667pt;}
.y4f{bottom:291.746667pt;}
.y23{bottom:308.066667pt;}
.y4e{bottom:313.186667pt;}
.y22{bottom:329.506667pt;}
.y4d{bottom:334.626667pt;}
.y21{bottom:350.946667pt;}
.y4c{bottom:356.066667pt;}
.y77{bottom:362.786667pt;}
.y20{bottom:372.546667pt;}
.y4b{bottom:377.506667pt;}
.y1f{bottom:393.986667pt;}
.y4a{bottom:398.946667pt;}
.y1e{bottom:415.426667pt;}
.y49{bottom:420.546667pt;}
.y1d{bottom:436.866667pt;}
.y48{bottom:441.986667pt;}
.y1c{bottom:458.306667pt;}
.y47{bottom:463.426667pt;}
.y1b{bottom:479.746667pt;}
.y45{bottom:484.866667pt;}
.y46{bottom:491.586667pt;}
.y1a{bottom:501.373333pt;}
.y44{bottom:506.333333pt;}
.y19{bottom:522.813333pt;}
.y43{bottom:527.773333pt;}
.y18{bottom:544.253333pt;}
.y42{bottom:549.373333pt;}
.y76{bottom:556.093333pt;}
.y17{bottom:565.693333pt;}
.y41{bottom:570.813333pt;}
.y16{bottom:587.133333pt;}
.y40{bottom:592.253333pt;}
.y61{bottom:598.973333pt;}
.y15{bottom:608.573333pt;}
.y3e{bottom:613.693333pt;}
.y3f{bottom:620.413333pt;}
.y14{bottom:630.013333pt;}
.y3d{bottom:635.133333pt;}
.y13{bottom:651.613333pt;}
.y3c{bottom:656.573333pt;}
.y60{bottom:663.293333pt;}
.y12{bottom:673.053333pt;}
.y3b{bottom:678.013333pt;}
.y11{bottom:694.493333pt;}
.y3a{bottom:699.613333pt;}
.y10{bottom:715.933333pt;}
.y39{bottom:721.053333pt;}
.y70{bottom:727.773333pt;}
.yf{bottom:737.373333pt;}
.y38{bottom:742.493333pt;}
.ye{bottom:758.853333pt;}
.y37{bottom:763.973333pt;}
.yd{bottom:780.453333pt;}
.y36{bottom:785.413333pt;}
.yc{bottom:801.893333pt;}
.y35{bottom:806.853333pt;}
.y75{bottom:810.053333pt;}
.y74{bottom:813.573333pt;}
.yb{bottom:823.333333pt;}
.y34{bottom:828.453333pt;}
.y5f{bottom:835.173333pt;}
.ya{bottom:844.773333pt;}
.y33{bottom:849.893333pt;}
.y32{bottom:871.333333pt;}
.y9{bottom:882.213333pt;}
.y31{bottom:892.773333pt;}
.y8{bottom:903.653333pt;}
.y30{bottom:914.213333pt;}
.y5e{bottom:920.933333pt;}
.y2f{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y5d{bottom:942.373333pt;}
.y2e{bottom:957.093333pt;}
.y6{bottom:962.693333pt;}
.y2d{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h9{height:33.918750pt;}
.hd{height:47.085938pt;}
.h7{height:47.109375pt;}
.h8{height:51.991875pt;}
.h6{height:52.028437pt;}
.ha{height:52.134375pt;}
.h5{height:64.752187pt;}
.hb{height:67.750312pt;}
.he{height:71.414386pt;}
.h4{height:73.454062pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.hc{height:77.465146pt;}
.hf{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x13{left:80.159988pt;}
.x26{left:84.479988pt;}
.x30{left:99.871988pt;}
.x5{left:100.991988pt;}
.xd{left:123.871988pt;}
.x7{left:124.991988pt;}
.x3{left:128.511988pt;}
.x18{left:171.226643pt;}
.x19{left:177.306655pt;}
.xa{left:193.626655pt;}
.x10{left:200.666643pt;}
.x11{left:206.746655pt;}
.x29{left:231.226643pt;}
.x28{left:238.106655pt;}
.x2a{left:243.386655pt;}
.x2b{left:245.146643pt;}
.x2c{left:257.306655pt;}
.x1a{left:260.826643pt;}
.x9{left:264.346655pt;}
.x1b{left:266.946655pt;}
.x12{left:267.906655pt;}
.xb{left:286.466655pt;}
.x2e{left:288.386643pt;}
.x2f{left:296.066655pt;}
.x8{left:300.866655pt;}
.x4{left:306.466655pt;}
.x20{left:309.666643pt;}
.x21{left:321.826655pt;}
.x6{left:329.186655pt;}
.x22{left:350.626643pt;}
.x23{left:362.786655pt;}
.x27{left:374.146655pt;}
.x2{left:382.946655pt;}
.x1e{left:399.426643pt;}
.x1f{left:405.506655pt;}
.xc{left:420.866655pt;}
.x1c{left:463.293310pt;}
.x1d{left:469.373322pt;}
.xe{left:531.773310pt;}
.xf{left:537.853322pt;}
.x14{left:539.933310pt;}
.x15{left:546.013322pt;}
.x24{left:553.533310pt;}
.x25{left:565.693322pt;}
.x16{left:681.573310pt;}
.x17{left:687.653322pt;}
.x2d{left:699.173322pt;}
}




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