
    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_e5e7592bdff9575e06795301.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_4251083e27d9ec79472a966b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_757eb00c1356ca784bdc4e67.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_0a56a4e0ff66b8b06a2176a7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_29f47a306a973ed68d8474dc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_386f3f9156c71083bd018d2c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925781;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_ad5df14b93ab6fed9b1cbd57.woff')format("woff");}.ff8{font-family:ff8;line-height:0.925781;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_cb34c14246463dfb7b10e0a2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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;}
.ls10{letter-spacing:-5.274000px;}
.ls23{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.325200px;}
.ls14{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.207600px;}
.ls9{letter-spacing:-0.166800px;}
.ls15{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.015840px;}
.ls4{letter-spacing:0.063360px;}
.lsa{letter-spacing:0.063600px;}
.lsf{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.108720px;}
.ls5{letter-spacing:0.154800px;}
.ls1b{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.359280px;}
.ls1{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.786000px;}
.ls1a{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.368000px;}
.ls1c{letter-spacing:2.808000px;}
.ls16{letter-spacing:3.528000px;}
.ls1f{letter-spacing:4.248000px;}
.ls21{letter-spacing:6.408000px;}
.ls1d{letter-spacing:7.128000px;}
.ls7{letter-spacing:7.308000px;}
.ls13{letter-spacing:7.848000px;}
.ls3{letter-spacing:8.407440px;}
.ls18{letter-spacing:8.568000px;}
.ls20{letter-spacing:9.288000px;}
.ls11{letter-spacing:12.888000px;}
.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;}
}
.ws9{word-spacing:-20.232001px;}
.ws5{word-spacing:-20.232000px;}
.ws3{word-spacing:-18.613440px;}
.ws4{word-spacing:-18.288240px;}
.ws8{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.152560px;}
.wsd{word-spacing:-17.052360px;}
.ws6{word-spacing:-16.947360px;}
.ws1{word-spacing:-16.792560px;}
.ws0{word-spacing:-16.625760px;}
.ws2{word-spacing:-16.432560px;}
.wsb{word-spacing:-15.840720px;}
.wsc{word-spacing:-14.760720px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-6.776880px;}
._f{margin-left:-5.342400px;}
._9{margin-left:-4.233600px;}
._8{margin-left:-2.808000px;}
._6{margin-left:-1.195200px;}
._0{width:1.314720px;}
._2{width:2.813520px;}
._1{width:4.661280px;}
._3{width:6.095520px;}
._a{width:7.200000px;}
._7{width:8.270400px;}
._4{width:9.740880px;}
._5{width:11.095680px;}
._d{width:13.032000px;}
._e{width:15.007200px;}
._11{width:16.632000px;}
._c{width:17.795760px;}
._b{width:19.086480px;}
._13{width:21.562560px;}
._10{width:25.632000px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.170000px;}
.y4{bottom:25.590000px;}
.y3{bottom:47.190000px;}
.y2{bottom:68.610000px;}
.y34{bottom:76.176000px;}
.y11{bottom:93.456000px;}
.y33{bottom:95.256000px;}
.y10{bottom:113.616000px;}
.y60{bottom:116.136000px;}
.y75{bottom:116.496000px;}
.y74{bottom:121.716000px;}
.y5f{bottom:122.076000px;}
.y71{bottom:128.196000px;}
.yf{bottom:132.696000px;}
.y5e{bottom:137.736000px;}
.y6f{bottom:138.816000px;}
.y73{bottom:139.176000px;}
.y5d{bottom:143.676000px;}
.ye{bottom:153.570000px;}
.y70{bottom:154.110000px;}
.y6c{bottom:159.150000px;}
.y5c{bottom:160.230000px;}
.yd{bottom:175.170000px;}
.y6e{bottom:179.850000px;}
.y6b{bottom:180.750000px;}
.y6a{bottom:186.690000px;}
.yc{bottom:196.590000px;}
.y69{bottom:202.350000px;}
.y5b{bottom:205.770000px;}
.yb{bottom:218.190000px;}
.y68{bottom:223.770000px;}
.y5a{bottom:231.510000px;}
.ya{bottom:239.790000px;}
.y67{bottom:245.370000px;}
.y59{bottom:257.430000px;}
.y9{bottom:261.210000px;}
.y66{bottom:266.790000px;}
.y65{bottom:272.730000px;}
.y8{bottom:282.810000px;}
.y57{bottom:283.170000px;}
.y64{bottom:289.470000px;}
.y58{bottom:290.730000px;}
.y55{bottom:309.090000px;}
.y56{bottom:316.650000px;}
.y7{bottom:321.510000px;}
.y54{bottom:334.830000px;}
.y32{bottom:341.355000px;}
.y53{bottom:360.615000px;}
.y31{bottom:362.955000px;}
.y30{bottom:384.375000px;}
.y52{bottom:386.535000px;}
.y2f{bottom:390.315000px;}
.y2e{bottom:407.055000px;}
.y51{bottom:412.275000px;}
.y2d{bottom:435.315000px;}
.y50{bottom:438.195000px;}
.y2c{bottom:461.235000px;}
.y4f{bottom:463.935000px;}
.y2b{bottom:486.975000px;}
.y4e{bottom:489.855000px;}
.y2a{bottom:512.895000px;}
.y4d{bottom:515.595000px;}
.y29{bottom:538.635000px;}
.y4c{bottom:541.515000px;}
.y28{bottom:564.555000px;}
.y4b{bottom:567.255000px;}
.y27{bottom:590.295000px;}
.y4a{bottom:593.175000px;}
.y26{bottom:616.245000px;}
.y49{bottom:618.945000px;}
.y25{bottom:641.985000px;}
.y48{bottom:644.685000px;}
.y24{bottom:667.725000px;}
.y47{bottom:670.605000px;}
.y23{bottom:693.645000px;}
.y46{bottom:696.345000px;}
.y6d{bottom:703.905000px;}
.y22{bottom:719.385000px;}
.y45{bottom:722.265000px;}
.y21{bottom:744.405000px;}
.y44{bottom:748.005000px;}
.y63{bottom:755.565000px;}
.y20{bottom:766.005000px;}
.y43{bottom:773.925000px;}
.y1f{bottom:788.325000px;}
.y42{bottom:799.665000px;}
.y72{bottom:807.225000px;}
.y1e{bottom:813.705000px;}
.y41{bottom:825.585000px;}
.y62{bottom:833.145000px;}
.y1d{bottom:837.285000px;}
.y40{bottom:851.325000px;}
.y1c{bottom:861.045000px;}
.y3f{bottom:877.290000px;}
.y1b{bottom:884.670000px;}
.y3e{bottom:903.030000px;}
.y1a{bottom:908.430000px;}
.y3d{bottom:928.950000px;}
.y19{bottom:932.010000px;}
.y3c{bottom:954.690000px;}
.y18{bottom:955.770000px;}
.y17{bottom:978.990000px;}
.y3b{bottom:980.430000px;}
.y15{bottom:1002.030000px;}
.y3a{bottom:1006.350000px;}
.y16{bottom:1010.310000px;}
.y39{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.y38{bottom:1058.010000px;}
.y13{bottom:1062.330000px;}
.y37{bottom:1083.750000px;}
.y12{bottom:1091.310000px;}
.y36{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.y61{bottom:1117.230000px;}
.y1{bottom:1134.150000px;}
.y35{bottom:1135.410000px;}
.hc{height:30.568359px;}
.he{height:31.201172px;}
.hd{height:35.459297px;}
.h7{height:43.506914px;}
.ha{height:44.155898px;}
.h6{height:45.852539px;}
.h3{height:50.743477px;}
.h4{height:51.618867px;}
.hf{height:51.793945px;}
.h8{height:56.245781px;}
.hb{height:61.136719px;}
.h5{height:62.402344px;}
.h9{height:72.763945px;}
.h2{height:86.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.xd{left:110.915987px;}
.x15{left:153.389973px;}
.xb{left:159.509987px;}
.x16{left:160.769987px;}
.x13{left:164.909973px;}
.x14{left:170.129987px;}
.x2{left:185.799000px;}
.x17{left:236.909973px;}
.x18{left:242.129987px;}
.xc{left:322.454987px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x12{left:483.584973px;}
.x5{left:489.165000px;}
.x9{left:501.584973px;}
.xa{left:506.804987px;}
.xe{left:539.924973px;}
.xf{left:545.144987px;}
.x19{left:561.344973px;}
.x1a{left:566.564987px;}
.x10{left:620.204973px;}
.x11{left:625.424987px;}
.x6{left:777.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-4.688000pt;}
.ls23{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.289067pt;}
.ls14{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.184533pt;}
.ls9{letter-spacing:-0.148267pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.014080pt;}
.ls4{letter-spacing:0.056320pt;}
.lsa{letter-spacing:0.056533pt;}
.lsf{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.096640pt;}
.ls5{letter-spacing:0.137600pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.319360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.698667pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.216000pt;}
.ls1c{letter-spacing:2.496000pt;}
.ls16{letter-spacing:3.136000pt;}
.ls1f{letter-spacing:3.776000pt;}
.ls21{letter-spacing:5.696000pt;}
.ls1d{letter-spacing:6.336000pt;}
.ls7{letter-spacing:6.496000pt;}
.ls13{letter-spacing:6.976000pt;}
.ls3{letter-spacing:7.473280pt;}
.ls18{letter-spacing:7.616000pt;}
.ls20{letter-spacing:8.256000pt;}
.ls11{letter-spacing:11.456000pt;}
.ws9{word-spacing:-17.984001pt;}
.ws5{word-spacing:-17.984000pt;}
.ws3{word-spacing:-16.545280pt;}
.ws4{word-spacing:-16.256213pt;}
.ws8{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.246720pt;}
.wsd{word-spacing:-15.157653pt;}
.ws6{word-spacing:-15.064320pt;}
.ws1{word-spacing:-14.926720pt;}
.ws0{word-spacing:-14.778453pt;}
.ws2{word-spacing:-14.606720pt;}
.wsb{word-spacing:-14.080640pt;}
.wsc{word-spacing:-13.120640pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-6.023893pt;}
._f{margin-left:-4.748800pt;}
._9{margin-left:-3.763200pt;}
._8{margin-left:-2.496000pt;}
._6{margin-left:-1.062400pt;}
._0{width:1.168640pt;}
._2{width:2.500907pt;}
._1{width:4.143360pt;}
._3{width:5.418240pt;}
._a{width:6.400000pt;}
._7{width:7.351467pt;}
._4{width:8.658560pt;}
._5{width:9.862827pt;}
._d{width:11.584000pt;}
._e{width:13.339733pt;}
._11{width:14.784000pt;}
._c{width:15.818453pt;}
._b{width:16.965760pt;}
._13{width:19.166720pt;}
._10{width:22.784000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.706667pt;}
.y4{bottom:22.746667pt;}
.y3{bottom:41.946667pt;}
.y2{bottom:60.986667pt;}
.y34{bottom:67.712000pt;}
.y11{bottom:83.072000pt;}
.y33{bottom:84.672000pt;}
.y10{bottom:100.992000pt;}
.y60{bottom:103.232000pt;}
.y75{bottom:103.552000pt;}
.y74{bottom:108.192000pt;}
.y5f{bottom:108.512000pt;}
.y71{bottom:113.952000pt;}
.yf{bottom:117.952000pt;}
.y5e{bottom:122.432000pt;}
.y6f{bottom:123.392000pt;}
.y73{bottom:123.712000pt;}
.y5d{bottom:127.712000pt;}
.ye{bottom:136.506667pt;}
.y70{bottom:136.986667pt;}
.y6c{bottom:141.466667pt;}
.y5c{bottom:142.426667pt;}
.yd{bottom:155.706667pt;}
.y6e{bottom:159.866667pt;}
.y6b{bottom:160.666667pt;}
.y6a{bottom:165.946667pt;}
.yc{bottom:174.746667pt;}
.y69{bottom:179.866667pt;}
.y5b{bottom:182.906667pt;}
.yb{bottom:193.946667pt;}
.y68{bottom:198.906667pt;}
.y5a{bottom:205.786667pt;}
.ya{bottom:213.146667pt;}
.y67{bottom:218.106667pt;}
.y59{bottom:228.826667pt;}
.y9{bottom:232.186667pt;}
.y66{bottom:237.146667pt;}
.y65{bottom:242.426667pt;}
.y8{bottom:251.386667pt;}
.y57{bottom:251.706667pt;}
.y64{bottom:257.306667pt;}
.y58{bottom:258.426667pt;}
.y55{bottom:274.746667pt;}
.y56{bottom:281.466667pt;}
.y7{bottom:285.786667pt;}
.y54{bottom:297.626667pt;}
.y32{bottom:303.426667pt;}
.y53{bottom:320.546667pt;}
.y31{bottom:322.626667pt;}
.y30{bottom:341.666667pt;}
.y52{bottom:343.586667pt;}
.y2f{bottom:346.946667pt;}
.y2e{bottom:361.826667pt;}
.y51{bottom:366.466667pt;}
.y2d{bottom:386.946667pt;}
.y50{bottom:389.506667pt;}
.y2c{bottom:409.986667pt;}
.y4f{bottom:412.386667pt;}
.y2b{bottom:432.866667pt;}
.y4e{bottom:435.426667pt;}
.y2a{bottom:455.906667pt;}
.y4d{bottom:458.306667pt;}
.y29{bottom:478.786667pt;}
.y4c{bottom:481.346667pt;}
.y28{bottom:501.826667pt;}
.y4b{bottom:504.226667pt;}
.y27{bottom:524.706667pt;}
.y4a{bottom:527.266667pt;}
.y26{bottom:547.773333pt;}
.y49{bottom:550.173333pt;}
.y25{bottom:570.653333pt;}
.y48{bottom:573.053333pt;}
.y24{bottom:593.533333pt;}
.y47{bottom:596.093333pt;}
.y23{bottom:616.573333pt;}
.y46{bottom:618.973333pt;}
.y6d{bottom:625.693333pt;}
.y22{bottom:639.453333pt;}
.y45{bottom:642.013333pt;}
.y21{bottom:661.693333pt;}
.y44{bottom:664.893333pt;}
.y63{bottom:671.613333pt;}
.y20{bottom:680.893333pt;}
.y43{bottom:687.933333pt;}
.y1f{bottom:700.733333pt;}
.y42{bottom:710.813333pt;}
.y72{bottom:717.533333pt;}
.y1e{bottom:723.293333pt;}
.y41{bottom:733.853333pt;}
.y62{bottom:740.573333pt;}
.y1d{bottom:744.253333pt;}
.y40{bottom:756.733333pt;}
.y1c{bottom:765.373333pt;}
.y3f{bottom:779.813333pt;}
.y1b{bottom:786.373333pt;}
.y3e{bottom:802.693333pt;}
.y1a{bottom:807.493333pt;}
.y3d{bottom:825.733333pt;}
.y19{bottom:828.453333pt;}
.y3c{bottom:848.613333pt;}
.y18{bottom:849.573333pt;}
.y17{bottom:870.213333pt;}
.y3b{bottom:871.493333pt;}
.y15{bottom:890.693333pt;}
.y3a{bottom:894.533333pt;}
.y16{bottom:898.053333pt;}
.y39{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.y38{bottom:940.453333pt;}
.y13{bottom:944.293333pt;}
.y37{bottom:963.333333pt;}
.y12{bottom:970.053333pt;}
.y36{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.y61{bottom:993.093333pt;}
.y1{bottom:1008.133333pt;}
.y35{bottom:1009.253333pt;}
.hc{height:27.171875pt;}
.he{height:27.734375pt;}
.hd{height:31.519375pt;}
.h7{height:38.672812pt;}
.ha{height:39.249688pt;}
.h6{height:40.757812pt;}
.h3{height:45.105313pt;}
.h4{height:45.883437pt;}
.hf{height:46.039063pt;}
.h8{height:49.996250pt;}
.hb{height:54.343750pt;}
.h5{height:55.468750pt;}
.h9{height:64.679063pt;}
.h2{height:76.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.xd{left:98.591988pt;}
.x15{left:136.346643pt;}
.xb{left:141.786655pt;}
.x16{left:142.906655pt;}
.x13{left:146.586643pt;}
.x14{left:151.226655pt;}
.x2{left:165.154667pt;}
.x17{left:210.586643pt;}
.x18{left:215.226655pt;}
.xc{left:286.626655pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x12{left:429.853310pt;}
.x5{left:434.813333pt;}
.x9{left:445.853310pt;}
.xa{left:450.493322pt;}
.xe{left:479.933310pt;}
.xf{left:484.573322pt;}
.x19{left:498.973310pt;}
.x1a{left:503.613322pt;}
.x10{left:551.293310pt;}
.x11{left:555.933322pt;}
.x6{left:690.853322pt;}
}




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