
    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_08033fb29c4d61a1ef580996.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_da6b342b92f9ef7f02fd8aac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fed3ec421e697d9d3dd6bee2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_c5e95e9b0d301bf47918c069.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_156f17fa25a6c1e134dbbdd0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_0e8fe1fdac22e4b870b72841.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_0f7f166931a51bfae70ca1f6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.738000px;}
.ls1e{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.034560px;}
.lsd{letter-spacing:-0.025920px;}
.ls5{letter-spacing:-0.017280px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.025920px;}
.ls6{letter-spacing:0.034560px;}
.ls8{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.145920px;}
.ls1a{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.205920px;}
.ls17{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:0.738000px;}
.lsb{letter-spacing:0.745920px;}
.ls1d{letter-spacing:0.756000px;}
.ls10{letter-spacing:1.422000px;}
.ls1c{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.465920px;}
.lsc{letter-spacing:1.645920px;}
.ls18{letter-spacing:3.600000px;}
.ls14{letter-spacing:9.360000px;}
.ls12{letter-spacing:16.560000px;}
.ls16{letter-spacing:19.440000px;}
.ls19{letter-spacing:28.800000px;}
.ls15{letter-spacing:32.400000px;}
.ls1b{letter-spacing:154.038720px;}
.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.617280px;}
.ws10{word-spacing:-20.196000px;}
.wsa{word-spacing:-20.178000px;}
.wsd{word-spacing:-20.160000px;}
.wse{word-spacing:-20.142000px;}
.ws6{word-spacing:-19.474560px;}
.ws9{word-spacing:-19.465920px;}
.ws5{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.wsf{word-spacing:-19.414080px;}
.wsb{word-spacing:-19.405440px;}
.wsc{word-spacing:-18.702000px;}
.ws1{word-spacing:-0.077760px;}
.ws8{word-spacing:0.000000px;}
._1c{margin-left:-2.227200px;}
._0{margin-left:-1.224000px;}
._1{width:1.788000px;}
._26{width:3.576960px;}
._2c{width:5.245920px;}
._19{width:6.356640px;}
._1d{width:8.009280px;}
._27{width:9.211200px;}
._1f{width:10.548480px;}
._1e{width:12.130560px;}
._23{width:14.095200px;}
._13{width:15.139200px;}
._17{width:16.250400px;}
._20{width:18.246240px;}
._18{width:20.508960px;}
._7{width:21.539520px;}
._8{width:22.861440px;}
._16{width:24.474720px;}
._24{width:25.566240px;}
._14{width:26.652000px;}
._15{width:27.973920px;}
._1a{width:29.315520px;}
._1b{width:30.921120px;}
._25{width:32.149440px;}
._a{width:33.204000px;}
._9{width:34.292160px;}
._29{width:35.430720px;}
._2e{width:37.096320px;}
._2f{width:38.113920px;}
._2d{width:40.030080px;}
._12{width:41.201760px;}
._11{width:42.456960px;}
._2a{width:43.673760px;}
._28{width:45.411840px;}
._c{width:46.423200px;}
._b{width:47.589120px;}
._e{width:49.688640px;}
._2{width:53.965440px;}
._30{width:56.331840px;}
._22{width:63.429600px;}
._21{width:65.057760px;}
._2b{width:66.457440px;}
._d{width:68.428800px;}
._f{width:73.327680px;}
._10{width:74.649600px;}
._6{width:108.708960px;}
._5{width:110.263680px;}
._4{width:120.528480px;}
._3{width:121.694400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:7.560000px;}
.y17{bottom:7.605000px;}
.y19{bottom:7.740000px;}
.y60{bottom:8.100000px;}
.y39{bottom:8.280000px;}
.y65{bottom:21.060000px;}
.y5e{bottom:33.300000px;}
.y16{bottom:33.345000px;}
.y64{bottom:33.840000px;}
.y38{bottom:34.020000px;}
.y2a{bottom:34.200000px;}
.y29{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y37{bottom:59.760000px;}
.y28{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y36{bottom:85.500000px;}
.yb{bottom:106.416000px;}
.y35{bottom:111.420000px;}
.ya{bottom:130.536000px;}
.y34{bottom:137.160000px;}
.y9{bottom:154.470000px;}
.y33{bottom:162.900000px;}
.y8{bottom:176.250000px;}
.y32{bottom:188.640000px;}
.y7{bottom:198.750000px;}
.y26{bottom:201.780000px;}
.y31{bottom:214.560000px;}
.y6{bottom:221.250000px;}
.y25{bottom:227.520000px;}
.y30{bottom:240.300000px;}
.y6a{bottom:246.450000px;}
.y3d{bottom:246.990000px;}
.y5c{bottom:252.930000px;}
.y24{bottom:253.290000px;}
.y2f{bottom:266.070000px;}
.y69{bottom:272.190000px;}
.y3c{bottom:272.730000px;}
.y5b{bottom:278.670000px;}
.y23{bottom:279.210000px;}
.y2e{bottom:291.810000px;}
.y68{bottom:297.930000px;}
.y3b{bottom:298.470000px;}
.y5a{bottom:304.410000px;}
.y22{bottom:304.950000px;}
.y2d{bottom:317.730000px;}
.y3a{bottom:323.670000px;}
.y67{bottom:323.850000px;}
.y59{bottom:330.375000px;}
.y21{bottom:330.690000px;}
.y1a{bottom:341.895000px;}
.y66{bottom:349.635000px;}
.y58{bottom:356.115000px;}
.y20{bottom:356.430000px;}
.y63{bottom:371.415000px;}
.y57{bottom:381.855000px;}
.y1f{bottom:382.350000px;}
.y56{bottom:407.595000px;}
.y1e{bottom:408.090000px;}
.y62{bottom:429.015000px;}
.y55{bottom:433.515000px;}
.y1d{bottom:433.830000px;}
.y54{bottom:459.255000px;}
.y1c{bottom:459.570000px;}
.y61{bottom:460.695000px;}
.y53{bottom:484.995000px;}
.y1b{bottom:485.490000px;}
.y5f{bottom:492.555000px;}
.y52{bottom:510.735000px;}
.y5d{bottom:524.415000px;}
.y51{bottom:536.655000px;}
.y6d{bottom:561.855000px;}
.y50{bottom:562.395000px;}
.y6c{bottom:587.595000px;}
.y4f{bottom:588.135000px;}
.y6b{bottom:613.365000px;}
.y4e{bottom:613.905000px;}
.y4d{bottom:639.825000px;}
.y4c{bottom:665.565000px;}
.y2b{bottom:677.985000px;}
.y4b{bottom:691.305000px;}
.y4a{bottom:717.225000px;}
.y27{bottom:721.725000px;}
.y49{bottom:742.965000px;}
.y48{bottom:768.705000px;}
.y47{bottom:794.445000px;}
.y18{bottom:819.105000px;}
.y46{bottom:820.365000px;}
.y45{bottom:846.105000px;}
.y15{bottom:854.745000px;}
.y44{bottom:871.890000px;}
.y43{bottom:897.630000px;}
.y14{bottom:923.550000px;}
.y13{bottom:948.750000px;}
.y42{bottom:949.290000px;}
.y12{bottom:975.030000px;}
.y11{bottom:1000.230000px;}
.y41{bottom:1000.770000px;}
.y10{bottom:1026.150000px;}
.y40{bottom:1026.690000px;}
.yf{bottom:1051.890000px;}
.y3f{bottom:1052.430000px;}
.ye{bottom:1077.630000px;}
.y3e{bottom:1078.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.h14{height:25.725000px;}
.h15{height:25.905000px;}
.hb{height:34.920000px;}
.hf{height:43.740000px;}
.h12{height:51.465000px;}
.h11{height:54.295313px;}
.h13{height:54.864844px;}
.hd{height:56.839219px;}
.ha{height:60.502500px;}
.h2{height:72.562500px;}
.h9{height:76.279219px;}
.h8{height:76.317188px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.he{height:96.660000px;}
.h10{height:335.370000px;}
.hc{height:512.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:142.234500px;}
.w7{width:183.615000px;}
.w6{width:187.050000px;}
.w5{width:201.075000px;}
.w2{width:209.539500px;}
.w3{width:432.795000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x18{left:17.449500px;}
.x15{left:20.149500px;}
.x17{left:23.569500px;}
.x16{left:25.543500px;}
.x10{left:29.323500px;}
.x12{left:34.723500px;}
.x23{left:36.360000px;}
.x1a{left:38.143500px;}
.x26{left:39.274500px;}
.x14{left:40.483500px;}
.x13{left:43.183500px;}
.x21{left:45.525000px;}
.xd{left:47.683500px;}
.x19{left:51.823500px;}
.x25{left:55.650000px;}
.x1b{left:57.403500px;}
.xc{left:70.363500px;}
.x1f{left:83.881500px;}
.x1{left:84.960000px;}
.x28{left:95.430000px;}
.x27{left:97.230000px;}
.x2{left:103.356000px;}
.x1c{left:111.996000px;}
.xb{left:125.326500px;}
.x5{left:131.976000px;}
.x4{left:143.496000px;}
.x1d{left:149.076000px;}
.xf{left:151.770000px;}
.x20{left:229.905000px;}
.x8{left:267.510000px;}
.xa{left:270.930000px;}
.x7{left:274.530000px;}
.xe{left:334.875000px;}
.x1e{left:347.835000px;}
.x9{left:397.155000px;}
.x22{left:434.775000px;}
.x6{left:457.095000px;}
.x29{left:459.975000px;}
.x24{left:625.620000px;}
.x3{left:778.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.656000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.030720pt;}
.lsd{letter-spacing:-0.023040pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.023040pt;}
.ls6{letter-spacing:0.030720pt;}
.ls8{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.129707pt;}
.ls1a{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183040pt;}
.ls17{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.656000pt;}
.lsb{letter-spacing:0.663040pt;}
.ls1d{letter-spacing:0.672000pt;}
.ls10{letter-spacing:1.264000pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.303040pt;}
.lsc{letter-spacing:1.463040pt;}
.ls18{letter-spacing:3.200000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls12{letter-spacing:14.720000pt;}
.ls16{letter-spacing:17.280000pt;}
.ls19{letter-spacing:25.600000pt;}
.ls15{letter-spacing:28.800000pt;}
.ls1b{letter-spacing:136.923307pt;}
.ws0{word-spacing:-19.215360pt;}
.ws10{word-spacing:-17.952000pt;}
.wsa{word-spacing:-17.936000pt;}
.wsd{word-spacing:-17.920000pt;}
.wse{word-spacing:-17.904000pt;}
.ws6{word-spacing:-17.310720pt;}
.ws9{word-spacing:-17.303040pt;}
.ws5{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.wsf{word-spacing:-17.256960pt;}
.wsb{word-spacing:-17.249280pt;}
.wsc{word-spacing:-16.624000pt;}
.ws1{word-spacing:-0.069120pt;}
.ws8{word-spacing:0.000000pt;}
._1c{margin-left:-1.979733pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.589333pt;}
._26{width:3.179520pt;}
._2c{width:4.663040pt;}
._19{width:5.650347pt;}
._1d{width:7.119360pt;}
._27{width:8.187733pt;}
._1f{width:9.376427pt;}
._1e{width:10.782720pt;}
._23{width:12.529067pt;}
._13{width:13.457067pt;}
._17{width:14.444800pt;}
._20{width:16.218880pt;}
._18{width:18.230187pt;}
._7{width:19.146240pt;}
._8{width:20.321280pt;}
._16{width:21.755307pt;}
._24{width:22.725547pt;}
._14{width:23.690667pt;}
._15{width:24.865707pt;}
._1a{width:26.058240pt;}
._1b{width:27.485440pt;}
._25{width:28.577280pt;}
._a{width:29.514667pt;}
._9{width:30.481920pt;}
._29{width:31.493973pt;}
._2e{width:32.974507pt;}
._2f{width:33.879040pt;}
._2d{width:35.582293pt;}
._12{width:36.623787pt;}
._11{width:37.739520pt;}
._2a{width:38.821120pt;}
._28{width:40.366080pt;}
._c{width:41.265067pt;}
._b{width:42.301440pt;}
._e{width:44.167680pt;}
._2{width:47.969280pt;}
._30{width:50.072747pt;}
._22{width:56.381867pt;}
._21{width:57.829120pt;}
._2b{width:59.073280pt;}
._d{width:60.825600pt;}
._f{width:65.180160pt;}
._10{width:66.355200pt;}
._6{width:96.630187pt;}
._5{width:98.012160pt;}
._4{width:107.136427pt;}
._3{width:108.172800pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:6.720000pt;}
.y17{bottom:6.760000pt;}
.y19{bottom:6.880000pt;}
.y60{bottom:7.200000pt;}
.y39{bottom:7.360000pt;}
.y65{bottom:18.720000pt;}
.y5e{bottom:29.600000pt;}
.y16{bottom:29.640000pt;}
.y64{bottom:30.080000pt;}
.y38{bottom:30.240000pt;}
.y2a{bottom:30.400000pt;}
.y29{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y37{bottom:53.120000pt;}
.y28{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y36{bottom:76.000000pt;}
.yb{bottom:94.592000pt;}
.y35{bottom:99.040000pt;}
.ya{bottom:116.032000pt;}
.y34{bottom:121.920000pt;}
.y9{bottom:137.306667pt;}
.y33{bottom:144.800000pt;}
.y8{bottom:156.666667pt;}
.y32{bottom:167.680000pt;}
.y7{bottom:176.666667pt;}
.y26{bottom:179.360000pt;}
.y31{bottom:190.720000pt;}
.y6{bottom:196.666667pt;}
.y25{bottom:202.240000pt;}
.y30{bottom:213.600000pt;}
.y6a{bottom:219.066667pt;}
.y3d{bottom:219.546667pt;}
.y5c{bottom:224.826667pt;}
.y24{bottom:225.146667pt;}
.y2f{bottom:236.506667pt;}
.y69{bottom:241.946667pt;}
.y3c{bottom:242.426667pt;}
.y5b{bottom:247.706667pt;}
.y23{bottom:248.186667pt;}
.y2e{bottom:259.386667pt;}
.y68{bottom:264.826667pt;}
.y3b{bottom:265.306667pt;}
.y5a{bottom:270.586667pt;}
.y22{bottom:271.066667pt;}
.y2d{bottom:282.426667pt;}
.y3a{bottom:287.706667pt;}
.y67{bottom:287.866667pt;}
.y59{bottom:293.666667pt;}
.y21{bottom:293.946667pt;}
.y1a{bottom:303.906667pt;}
.y66{bottom:310.786667pt;}
.y58{bottom:316.546667pt;}
.y20{bottom:316.826667pt;}
.y63{bottom:330.146667pt;}
.y57{bottom:339.426667pt;}
.y1f{bottom:339.866667pt;}
.y56{bottom:362.306667pt;}
.y1e{bottom:362.746667pt;}
.y62{bottom:381.346667pt;}
.y55{bottom:385.346667pt;}
.y1d{bottom:385.626667pt;}
.y54{bottom:408.226667pt;}
.y1c{bottom:408.506667pt;}
.y61{bottom:409.506667pt;}
.y53{bottom:431.106667pt;}
.y1b{bottom:431.546667pt;}
.y5f{bottom:437.826667pt;}
.y52{bottom:453.986667pt;}
.y5d{bottom:466.146667pt;}
.y51{bottom:477.026667pt;}
.y6d{bottom:499.426667pt;}
.y50{bottom:499.906667pt;}
.y6c{bottom:522.306667pt;}
.y4f{bottom:522.786667pt;}
.y6b{bottom:545.213333pt;}
.y4e{bottom:545.693333pt;}
.y4d{bottom:568.733333pt;}
.y4c{bottom:591.613333pt;}
.y2b{bottom:602.653333pt;}
.y4b{bottom:614.493333pt;}
.y4a{bottom:637.533333pt;}
.y27{bottom:641.533333pt;}
.y49{bottom:660.413333pt;}
.y48{bottom:683.293333pt;}
.y47{bottom:706.173333pt;}
.y18{bottom:728.093333pt;}
.y46{bottom:729.213333pt;}
.y45{bottom:752.093333pt;}
.y15{bottom:759.773333pt;}
.y44{bottom:775.013333pt;}
.y43{bottom:797.893333pt;}
.y14{bottom:820.933333pt;}
.y13{bottom:843.333333pt;}
.y42{bottom:843.813333pt;}
.y12{bottom:866.693333pt;}
.y11{bottom:889.093333pt;}
.y41{bottom:889.573333pt;}
.y10{bottom:912.133333pt;}
.y40{bottom:912.613333pt;}
.yf{bottom:935.013333pt;}
.y3f{bottom:935.493333pt;}
.ye{bottom:957.893333pt;}
.y3e{bottom:958.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.h14{height:22.866667pt;}
.h15{height:23.026667pt;}
.hb{height:31.040000pt;}
.hf{height:38.880000pt;}
.h12{height:45.746667pt;}
.h11{height:48.262500pt;}
.h13{height:48.768750pt;}
.hd{height:50.523750pt;}
.ha{height:53.780000pt;}
.h2{height:64.500000pt;}
.h9{height:67.803750pt;}
.h8{height:67.837500pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.he{height:85.920000pt;}
.h10{height:298.106667pt;}
.hc{height:455.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:126.430667pt;}
.w7{width:163.213333pt;}
.w6{width:166.266667pt;}
.w5{width:178.733333pt;}
.w2{width:186.257333pt;}
.w3{width:384.706667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x18{left:15.510667pt;}
.x15{left:17.910667pt;}
.x17{left:20.950667pt;}
.x16{left:22.705333pt;}
.x10{left:26.065333pt;}
.x12{left:30.865333pt;}
.x23{left:32.320000pt;}
.x1a{left:33.905333pt;}
.x26{left:34.910667pt;}
.x14{left:35.985333pt;}
.x13{left:38.385333pt;}
.x21{left:40.466667pt;}
.xd{left:42.385333pt;}
.x19{left:46.065333pt;}
.x25{left:49.466667pt;}
.x1b{left:51.025333pt;}
.xc{left:62.545333pt;}
.x1f{left:74.561333pt;}
.x1{left:75.520000pt;}
.x28{left:84.826667pt;}
.x27{left:86.426667pt;}
.x2{left:91.872000pt;}
.x1c{left:99.552000pt;}
.xb{left:111.401333pt;}
.x5{left:117.312000pt;}
.x4{left:127.552000pt;}
.x1d{left:132.512000pt;}
.xf{left:134.906667pt;}
.x20{left:204.360000pt;}
.x8{left:237.786667pt;}
.xa{left:240.826667pt;}
.x7{left:244.026667pt;}
.xe{left:297.666667pt;}
.x1e{left:309.186667pt;}
.x9{left:353.026667pt;}
.x22{left:386.466667pt;}
.x6{left:406.306667pt;}
.x29{left:408.866667pt;}
.x24{left:556.106667pt;}
.x3{left:692.133333pt;}
}




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