
    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_3971e2c5dcabfc19e75ecce7.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_408a72ea7ac804b8d3967d9a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d87a3a93219180e810c20cba.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4caa076a73d6ec6a8409729d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2929ed1eb8d17832d25d6506.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_005024d3ae8541b689d1f89f.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_69032d1bd60c7ac84f2117a5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-96.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.ls1c{letter-spacing:-22.500000px;}
.lsb{letter-spacing:-1.410000px;}
.ls11{letter-spacing:-0.774000px;}
.lsf{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.684000px;}
.ls7{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.161400px;}
.ls10{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.013440px;}
.ls0{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.172080px;}
.ls18{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.321840px;}
.ls19{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.378600px;}
.ls14{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.980000px;}
.lsc{letter-spacing:6.300000px;}
.ls1b{letter-spacing:17.621280px;}
.ls12{letter-spacing:18.540000px;}
.ls16{letter-spacing:31.500000px;}
.ls15{letter-spacing:31.680000px;}
.lsa{letter-spacing:43.020000px;}
.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;}
}
.ws0{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.wsc{word-spacing:-20.898600px;}
.ws7{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.376000px;}
.wsb{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.166000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:2569.056000px;}
._39{margin-left:-2588.160000px;}
._35{margin-left:-1780.626960px;}
._3f{margin-left:-1367.943840px;}
._3e{margin-left:-1281.756000px;}
._3a{margin-left:-1053.079200px;}
._32{margin-left:-589.171680px;}
._3d{margin-left:-400.982400px;}
._3c{margin-left:-318.360000px;}
._3b{margin-left:-267.508080px;}
._37{margin-left:-25.887120px;}
._33{margin-left:-21.490080px;}
._24{margin-left:-10.798560px;}
._38{margin-left:-9.720720px;}
._27{margin-left:-6.402240px;}
._8{margin-left:-4.633200px;}
._5{margin-left:-3.116880px;}
._0{margin-left:-1.179360px;}
._1{width:1.533600px;}
._6{width:3.453840px;}
._7{width:4.633200px;}
._d{width:6.402240px;}
._e{width:7.413120px;}
._3{width:8.845200px;}
._4{width:9.940320px;}
._f{width:11.203920px;}
._10{width:12.804480px;}
._19{width:14.573520px;}
._14{width:15.795120px;}
._30{width:16.805760px;}
._17{width:17.956800px;}
._1d{width:19.712160px;}
._1e{width:22.660560px;}
._15{width:23.755680px;}
._16{width:24.766560px;}
._1c{width:25.777440px;}
._2e{width:26.780160px;}
._b{width:27.784560px;}
._a{width:28.894320px;}
._20{width:30.110880px;}
._21{width:31.178640px;}
._1a{width:32.263920px;}
._1b{width:33.274800px;}
._22{width:34.855200px;}
._25{width:35.970480px;}
._23{width:37.092000px;}
._2b{width:38.935440px;}
._11{width:40.049040px;}
._c{width:41.193360px;}
._2{width:42.375360px;}
._29{width:43.814400px;}
._28{width:46.753200px;}
._2a{width:48.420720px;}
._2f{width:49.706880px;}
._9{width:51.217920px;}
._18{width:52.239360px;}
._26{width:53.313360px;}
._2d{width:54.475680px;}
._2c{width:55.514160px;}
._12{width:67.055040px;}
._13{width:68.150160px;}
._1f{width:97.044480px;}
._34{width:169.176000px;}
._31{width:342.278880px;}
._41{width:415.824240px;}
._42{width:843.240000px;}
._40{width:880.457520px;}
._36{width:1613.100000px;}
.fc1{color:rgb(17,85,204);}
.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;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y52{bottom:88.416000px;}
.y2f{bottom:92.736000px;}
.y51{bottom:93.636000px;}
.y60{bottom:101.736000px;}
.y59{bottom:105.696000px;}
.y50{bottom:106.956000px;}
.y5f{bottom:109.296000px;}
.y4e{bottom:110.736000px;}
.y58{bottom:110.916000px;}
.y2e{bottom:116.856000px;}
.y62{bottom:124.236000px;}
.y5e{bottom:124.596000px;}
.y5d{bottom:129.816000px;}
.y4d{bottom:134.856000px;}
.y57{bottom:136.296000px;}
.y2d{bottom:141.156000px;}
.y5c{bottom:143.136000px;}
.y56{bottom:143.856000px;}
.y4c{bottom:159.150000px;}
.y55{bottom:160.410000px;}
.y2c{bottom:165.270000px;}
.y4b{bottom:183.270000px;}
.y2b{bottom:189.390000px;}
.y4a{bottom:207.390000px;}
.y2a{bottom:213.510000px;}
.y4f{bottom:214.950000px;}
.y49{bottom:231.510000px;}
.y29{bottom:237.630000px;}
.y48{bottom:255.630000px;}
.y28{bottom:261.750000px;}
.y47{bottom:279.795000px;}
.y27{bottom:285.915000px;}
.y46{bottom:303.915000px;}
.y26{bottom:310.215000px;}
.y45{bottom:328.215000px;}
.y25{bottom:334.335000px;}
.y44{bottom:352.335000px;}
.y24{bottom:358.455000px;}
.y43{bottom:376.455000px;}
.y23{bottom:382.575000px;}
.y42{bottom:400.575000px;}
.y22{bottom:406.695000px;}
.y41{bottom:424.695000px;}
.y21{bottom:430.815000px;}
.y40{bottom:448.815000px;}
.y20{bottom:455.115000px;}
.y5b{bottom:456.375000px;}
.y3f{bottom:473.115000px;}
.y1f{bottom:479.235000px;}
.y3e{bottom:497.235000px;}
.y1e{bottom:503.355000px;}
.y3d{bottom:521.355000px;}
.y1d{bottom:527.475000px;}
.y3c{bottom:545.475000px;}
.y1c{bottom:551.595000px;}
.y3b{bottom:569.625000px;}
.y1b{bottom:575.745000px;}
.y5a{bottom:577.185000px;}
.y3a{bottom:593.745000px;}
.y1a{bottom:600.045000px;}
.y39{bottom:618.045000px;}
.y19{bottom:624.165000px;}
.y38{bottom:642.165000px;}
.y18{bottom:648.285000px;}
.y37{bottom:666.285000px;}
.y17{bottom:672.405000px;}
.y36{bottom:690.405000px;}
.y16{bottom:696.525000px;}
.y35{bottom:714.525000px;}
.y15{bottom:720.645000px;}
.y61{bottom:722.085000px;}
.y34{bottom:738.645000px;}
.y14{bottom:744.765000px;}
.y54{bottom:746.205000px;}
.y33{bottom:762.765000px;}
.y13{bottom:769.065000px;}
.y32{bottom:787.065000px;}
.y12{bottom:793.185000px;}
.y63{bottom:794.625000px;}
.y31{bottom:811.185000px;}
.y11{bottom:817.305000px;}
.y30{bottom:835.305000px;}
.y10{bottom:859.470000px;}
.yf{bottom:883.590000px;}
.ye{bottom:907.710000px;}
.yd{bottom:932.010000px;}
.yc{bottom:956.130000px;}
.yb{bottom:980.250000px;}
.ya{bottom:1004.370000px;}
.y53{bottom:1011.930000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h8{height:38.158594px;}
.h7{height:52.998047px;}
.ha{height:58.490859px;}
.h4{height:58.531992px;}
.h9{height:58.651172px;}
.h5{height:72.846211px;}
.h6{height:76.219102px;}
.hb{height:82.635820px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.hc{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:95.039987px;}
.x18{left:98.999987px;}
.x23{left:112.355987px;}
.x3{left:117.395987px;}
.xf{left:139.355987px;}
.x6{left:145.655987px;}
.x16{left:183.989973px;}
.x17{left:197.669987px;}
.xb{left:200.729987px;}
.x19{left:211.709973px;}
.x8{left:216.929987px;}
.x1a{left:225.389987px;}
.x7{left:230.069987px;}
.x21{left:242.489987px;}
.x24{left:247.169987px;}
.x4{left:249.869987px;}
.xa{left:263.549987px;}
.xd{left:292.169987px;}
.x12{left:301.394987px;}
.x9{left:316.154987px;}
.xe{left:343.154987px;}
.x1d{left:363.494973px;}
.xc{left:365.474987px;}
.x1e{left:377.174987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.x1f{left:466.274973px;}
.x20{left:479.954987px;}
.x1b{left:502.844973px;}
.x10{left:510.404973px;}
.x1c{left:516.524987px;}
.x11{left:524.084987px;}
.x22{left:589.964987px;}
.x14{left:662.684973px;}
.x15{left:676.364987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.ls1c{letter-spacing:-20.000000pt;}
.lsb{letter-spacing:-1.253333pt;}
.ls11{letter-spacing:-0.688000pt;}
.lsf{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.608000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.143467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011947pt;}
.ls0{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.152960pt;}
.ls18{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.286080pt;}
.ls19{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.336533pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.760000pt;}
.lsc{letter-spacing:5.600000pt;}
.ls1b{letter-spacing:15.663360pt;}
.ls12{letter-spacing:16.480000pt;}
.ls16{letter-spacing:28.000000pt;}
.ls15{letter-spacing:28.160000pt;}
.lsa{letter-spacing:38.240000pt;}
.ws0{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.576533pt;}
.ws7{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.112000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.592000pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:2283.605333pt;}
._39{margin-left:-2300.586667pt;}
._35{margin-left:-1582.779520pt;}
._3f{margin-left:-1215.950080pt;}
._3e{margin-left:-1139.338667pt;}
._3a{margin-left:-936.070400pt;}
._32{margin-left:-523.708160pt;}
._3d{margin-left:-356.428800pt;}
._3c{margin-left:-282.986667pt;}
._3b{margin-left:-237.784960pt;}
._37{margin-left:-23.010773pt;}
._33{margin-left:-19.102293pt;}
._24{margin-left:-9.598720pt;}
._38{margin-left:-8.640640pt;}
._27{margin-left:-5.690880pt;}
._8{margin-left:-4.118400pt;}
._5{margin-left:-2.770560pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.363200pt;}
._6{width:3.070080pt;}
._7{width:4.118400pt;}
._d{width:5.690880pt;}
._e{width:6.589440pt;}
._3{width:7.862400pt;}
._4{width:8.835840pt;}
._f{width:9.959040pt;}
._10{width:11.381760pt;}
._19{width:12.954240pt;}
._14{width:14.040107pt;}
._30{width:14.938453pt;}
._17{width:15.961600pt;}
._1d{width:17.521920pt;}
._1e{width:20.142720pt;}
._15{width:21.116160pt;}
._16{width:22.014720pt;}
._1c{width:22.913280pt;}
._2e{width:23.804587pt;}
._b{width:24.697387pt;}
._a{width:25.683840pt;}
._20{width:26.765227pt;}
._21{width:27.714347pt;}
._1a{width:28.679040pt;}
._1b{width:29.577600pt;}
._22{width:30.982400pt;}
._25{width:31.973760pt;}
._23{width:32.970667pt;}
._2b{width:34.609280pt;}
._11{width:35.599147pt;}
._c{width:36.616320pt;}
._2{width:37.666987pt;}
._29{width:38.946133pt;}
._28{width:41.558400pt;}
._2a{width:43.040640pt;}
._2f{width:44.183893pt;}
._9{width:45.527040pt;}
._18{width:46.434987pt;}
._26{width:47.389653pt;}
._2d{width:48.422827pt;}
._2c{width:49.345920pt;}
._12{width:59.604480pt;}
._13{width:60.577920pt;}
._1f{width:86.261760pt;}
._34{width:150.378667pt;}
._31{width:304.247893pt;}
._41{width:369.621547pt;}
._42{width:749.546667pt;}
._40{width:782.628907pt;}
._36{width:1433.866667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y52{bottom:78.592000pt;}
.y2f{bottom:82.432000pt;}
.y51{bottom:83.232000pt;}
.y60{bottom:90.432000pt;}
.y59{bottom:93.952000pt;}
.y50{bottom:95.072000pt;}
.y5f{bottom:97.152000pt;}
.y4e{bottom:98.432000pt;}
.y58{bottom:98.592000pt;}
.y2e{bottom:103.872000pt;}
.y62{bottom:110.432000pt;}
.y5e{bottom:110.752000pt;}
.y5d{bottom:115.392000pt;}
.y4d{bottom:119.872000pt;}
.y57{bottom:121.152000pt;}
.y2d{bottom:125.472000pt;}
.y5c{bottom:127.232000pt;}
.y56{bottom:127.872000pt;}
.y4c{bottom:141.466667pt;}
.y55{bottom:142.586667pt;}
.y2c{bottom:146.906667pt;}
.y4b{bottom:162.906667pt;}
.y2b{bottom:168.346667pt;}
.y4a{bottom:184.346667pt;}
.y2a{bottom:189.786667pt;}
.y4f{bottom:191.066667pt;}
.y49{bottom:205.786667pt;}
.y29{bottom:211.226667pt;}
.y48{bottom:227.226667pt;}
.y28{bottom:232.666667pt;}
.y47{bottom:248.706667pt;}
.y27{bottom:254.146667pt;}
.y46{bottom:270.146667pt;}
.y26{bottom:275.746667pt;}
.y45{bottom:291.746667pt;}
.y25{bottom:297.186667pt;}
.y44{bottom:313.186667pt;}
.y24{bottom:318.626667pt;}
.y43{bottom:334.626667pt;}
.y23{bottom:340.066667pt;}
.y42{bottom:356.066667pt;}
.y22{bottom:361.506667pt;}
.y41{bottom:377.506667pt;}
.y21{bottom:382.946667pt;}
.y40{bottom:398.946667pt;}
.y20{bottom:404.546667pt;}
.y5b{bottom:405.666667pt;}
.y3f{bottom:420.546667pt;}
.y1f{bottom:425.986667pt;}
.y3e{bottom:441.986667pt;}
.y1e{bottom:447.426667pt;}
.y3d{bottom:463.426667pt;}
.y1d{bottom:468.866667pt;}
.y3c{bottom:484.866667pt;}
.y1c{bottom:490.306667pt;}
.y3b{bottom:506.333333pt;}
.y1b{bottom:511.773333pt;}
.y5a{bottom:513.053333pt;}
.y3a{bottom:527.773333pt;}
.y1a{bottom:533.373333pt;}
.y39{bottom:549.373333pt;}
.y19{bottom:554.813333pt;}
.y38{bottom:570.813333pt;}
.y18{bottom:576.253333pt;}
.y37{bottom:592.253333pt;}
.y17{bottom:597.693333pt;}
.y36{bottom:613.693333pt;}
.y16{bottom:619.133333pt;}
.y35{bottom:635.133333pt;}
.y15{bottom:640.573333pt;}
.y61{bottom:641.853333pt;}
.y34{bottom:656.573333pt;}
.y14{bottom:662.013333pt;}
.y54{bottom:663.293333pt;}
.y33{bottom:678.013333pt;}
.y13{bottom:683.613333pt;}
.y32{bottom:699.613333pt;}
.y12{bottom:705.053333pt;}
.y63{bottom:706.333333pt;}
.y31{bottom:721.053333pt;}
.y11{bottom:726.493333pt;}
.y30{bottom:742.493333pt;}
.y10{bottom:763.973333pt;}
.yf{bottom:785.413333pt;}
.ye{bottom:806.853333pt;}
.yd{bottom:828.453333pt;}
.yc{bottom:849.893333pt;}
.yb{bottom:871.333333pt;}
.ya{bottom:892.773333pt;}
.y53{bottom:899.493333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h8{height:33.918750pt;}
.h7{height:47.109375pt;}
.ha{height:51.991875pt;}
.h4{height:52.028437pt;}
.h9{height:52.134375pt;}
.h5{height:64.752187pt;}
.h6{height:67.750312pt;}
.hb{height:73.454062pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.hc{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:84.479988pt;}
.x18{left:87.999988pt;}
.x23{left:99.871988pt;}
.x3{left:104.351988pt;}
.xf{left:123.871988pt;}
.x6{left:129.471988pt;}
.x16{left:163.546643pt;}
.x17{left:175.706655pt;}
.xb{left:178.426655pt;}
.x19{left:188.186643pt;}
.x8{left:192.826655pt;}
.x1a{left:200.346655pt;}
.x7{left:204.506655pt;}
.x21{left:215.546655pt;}
.x24{left:219.706655pt;}
.x4{left:222.106655pt;}
.xa{left:234.266655pt;}
.xd{left:259.706655pt;}
.x12{left:267.906655pt;}
.x9{left:281.026655pt;}
.xe{left:305.026655pt;}
.x1d{left:323.106643pt;}
.xc{left:324.866655pt;}
.x1e{left:335.266655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.x1f{left:414.466643pt;}
.x20{left:426.626655pt;}
.x1b{left:446.973310pt;}
.x10{left:453.693310pt;}
.x1c{left:459.133322pt;}
.x11{left:465.853322pt;}
.x22{left:524.413322pt;}
.x14{left:589.053310pt;}
.x15{left:601.213322pt;}
}




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