
    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_51d3e6019bef193ceaa068a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_82ca3f3e50981e816d1139e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.072266;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_7133a2d0948c63cf69dace2e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.072266;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_f9126c45bc919d970030ef5b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c96d180c5b28ad28caefa5c9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsc{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.106800px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:21.546720px;}
.ls4{letter-spacing:46.002720px;}
.ls6{letter-spacing:55.386720px;}
.ls9{letter-spacing:64.002720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-8.197440px;}
._0{margin-left:-1.021200px;}
._1{width:1.004400px;}
._8{width:2.283600px;}
._2{width:3.530400px;}
._c{width:4.739280px;}
._d{width:5.746800px;}
._6{width:7.194240px;}
._5{width:8.426160px;}
._7{width:9.573120px;}
._18{width:10.887840px;}
._b{width:12.322080px;}
._a{width:13.636800px;}
._f{width:16.505280px;}
._e{width:17.629200px;}
._14{width:18.955440px;}
._10{width:21.943440px;}
._16{width:24.023520px;}
._15{width:25.398000px;}
._17{width:27.680400px;}
._19{width:29.054880px;}
._12{width:32.868000px;}
._11{width:34.122960px;}
._9{width:35.796240px;}
._13{width:37.290240px;}
._4{width:98.256000px;}
._3{width:700.986000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:35.100000px;}
.ya{bottom:50.580000px;}
.y75{bottom:119.016000px;}
.y3f{bottom:130.716000px;}
.y85{bottom:131.976000px;}
.y74{bottom:136.296000px;}
.y3e{bottom:147.996000px;}
.y84{bottom:149.256000px;}
.y73{bottom:153.570000px;}
.y3d{bottom:165.270000px;}
.y83{bottom:166.350000px;}
.y72{bottom:170.670000px;}
.y3c{bottom:182.550000px;}
.y82{bottom:183.630000px;}
.yaa{bottom:184.710000px;}
.y71{bottom:187.950000px;}
.y3b{bottom:199.830000px;}
.y81{bottom:200.910000px;}
.ya9{bottom:201.990000px;}
.y70{bottom:205.230000px;}
.y3a{bottom:216.930000px;}
.y80{bottom:218.190000px;}
.ya8{bottom:219.270000px;}
.y6f{bottom:222.510000px;}
.y39{bottom:234.210000px;}
.y7f{bottom:235.470000px;}
.ya7{bottom:236.550000px;}
.y6e{bottom:239.790000px;}
.y38{bottom:251.490000px;}
.y7e{bottom:252.750000px;}
.ya6{bottom:253.830000px;}
.y6d{bottom:256.890000px;}
.y37{bottom:268.770000px;}
.y7d{bottom:269.850000px;}
.ya5{bottom:270.930000px;}
.y6c{bottom:274.170000px;}
.y36{bottom:286.050000px;}
.y7c{bottom:287.130000px;}
.ya4{bottom:288.210000px;}
.y6b{bottom:291.450000px;}
.y35{bottom:303.330000px;}
.y7b{bottom:305.490000px;}
.y6a{bottom:308.730000px;}
.y34{bottom:320.430000px;}
.y7a{bottom:322.770000px;}
.y69{bottom:326.010000px;}
.y33{bottom:337.755000px;}
.ya3{bottom:340.095000px;}
.y79{bottom:341.175000px;}
.y68{bottom:343.335000px;}
.y32{bottom:355.035000px;}
.ya2{bottom:357.375000px;}
.y78{bottom:358.275000px;}
.y67{bottom:360.435000px;}
.y31{bottom:372.315000px;}
.ya1{bottom:374.475000px;}
.y77{bottom:376.635000px;}
.y66{bottom:377.715000px;}
.y30{bottom:389.595000px;}
.ya0{bottom:391.755000px;}
.y76{bottom:393.915000px;}
.y65{bottom:394.995000px;}
.y2f{bottom:406.875000px;}
.y9f{bottom:409.035000px;}
.y64{bottom:412.275000px;}
.y2e{bottom:423.975000px;}
.y9e{bottom:426.315000px;}
.y63{bottom:429.555000px;}
.y2d{bottom:441.255000px;}
.y9d{bottom:443.595000px;}
.y62{bottom:446.835000px;}
.y2c{bottom:458.535000px;}
.y9c{bottom:460.695000px;}
.y61{bottom:463.935000px;}
.y2b{bottom:475.815000px;}
.y9b{bottom:477.975000px;}
.y60{bottom:481.215000px;}
.y2a{bottom:493.095000px;}
.y9a{bottom:495.255000px;}
.y5f{bottom:498.495000px;}
.y29{bottom:510.195000px;}
.y99{bottom:512.535000px;}
.y5e{bottom:515.775000px;}
.y28{bottom:527.475000px;}
.y98{bottom:529.815000px;}
.y5d{bottom:533.055000px;}
.y27{bottom:544.755000px;}
.y97{bottom:547.095000px;}
.y5c{bottom:550.335000px;}
.y26{bottom:562.035000px;}
.y96{bottom:564.195000px;}
.y5b{bottom:567.435000px;}
.y95{bottom:581.475000px;}
.y25{bottom:581.835000px;}
.y5a{bottom:584.715000px;}
.y94{bottom:598.755000px;}
.y24{bottom:599.115000px;}
.y59{bottom:601.995000px;}
.y93{bottom:616.065000px;}
.y23{bottom:616.425000px;}
.y58{bottom:619.305000px;}
.y92{bottom:633.345000px;}
.y22{bottom:633.705000px;}
.y57{bottom:636.585000px;}
.y91{bottom:650.625000px;}
.y21{bottom:650.985000px;}
.y56{bottom:653.685000px;}
.y90{bottom:667.725000px;}
.y20{bottom:668.085000px;}
.y55{bottom:670.965000px;}
.y8f{bottom:685.005000px;}
.y1f{bottom:685.365000px;}
.y54{bottom:688.245000px;}
.y8e{bottom:702.285000px;}
.y1e{bottom:702.645000px;}
.y53{bottom:705.525000px;}
.y8d{bottom:719.565000px;}
.y1d{bottom:719.925000px;}
.y52{bottom:722.805000px;}
.y8c{bottom:736.845000px;}
.y1c{bottom:737.205000px;}
.y51{bottom:740.085000px;}
.y8b{bottom:753.945000px;}
.y1b{bottom:754.485000px;}
.y50{bottom:757.185000px;}
.y8a{bottom:771.225000px;}
.y1a{bottom:771.585000px;}
.y4f{bottom:774.465000px;}
.y89{bottom:788.505000px;}
.y19{bottom:788.865000px;}
.y4e{bottom:791.745000px;}
.y88{bottom:805.785000px;}
.y18{bottom:806.145000px;}
.y4d{bottom:809.025000px;}
.y17{bottom:823.425000px;}
.y87{bottom:824.145000px;}
.y4c{bottom:826.305000px;}
.y16{bottom:840.705000px;}
.y86{bottom:842.505000px;}
.y4b{bottom:843.585000px;}
.y15{bottom:857.985000px;}
.y4a{bottom:860.685000px;}
.y14{bottom:876.210000px;}
.y49{bottom:878.010000px;}
.y13{bottom:894.030000px;}
.y48{bottom:895.290000px;}
.y47{bottom:912.570000px;}
.y12{bottom:912.930000px;}
.y46{bottom:929.850000px;}
.y11{bottom:932.010000px;}
.y45{bottom:947.130000px;}
.y10{bottom:950.910000px;}
.y44{bottom:964.230000px;}
.yf{bottom:969.810000px;}
.y43{bottom:981.510000px;}
.ye{bottom:989.070000px;}
.y42{bottom:998.790000px;}
.yd{bottom:1009.770000px;}
.y41{bottom:1016.070000px;}
.yc{bottom:1030.470000px;}
.y40{bottom:1033.350000px;}
.y9{bottom:1051.710000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1087.890000px;}
.y6{bottom:1105.890000px;}
.y5{bottom:1122.630000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:48.410156px;}
.h5{height:51.181172px;}
.h2{height:53.573906px;}
.h8{height:56.730937px;}
.h3{height:59.383125px;}
.h4{height:61.664062px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x8{left:112.535987px;}
.x9{left:116.135987px;}
.x1{left:127.655987px;}
.xc{left:133.595987px;}
.xf{left:135.035987px;}
.x14{left:162.029987px;}
.x5{left:167.069987px;}
.x10{left:189.029987px;}
.x11{left:216.029987px;}
.x13{left:346.394987px;}
.xb{left:368.174987px;}
.x12{left:384.554987px;}
.x7{left:386.354987px;}
.x15{left:395.714987px;}
.xe{left:398.954987px;}
.xd{left:403.454987px;}
.xa{left:405.974987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:19.152640pt;}
.ls4{letter-spacing:40.891307pt;}
.ls6{letter-spacing:49.232640pt;}
.ls9{letter-spacing:56.891307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-7.286613pt;}
._0{margin-left:-0.907733pt;}
._1{width:0.892800pt;}
._8{width:2.029867pt;}
._2{width:3.138133pt;}
._c{width:4.212693pt;}
._d{width:5.108267pt;}
._6{width:6.394880pt;}
._5{width:7.489920pt;}
._7{width:8.509440pt;}
._18{width:9.678080pt;}
._b{width:10.952960pt;}
._a{width:12.121600pt;}
._f{width:14.671360pt;}
._e{width:15.670400pt;}
._14{width:16.849280pt;}
._10{width:19.505280pt;}
._16{width:21.354240pt;}
._15{width:22.576000pt;}
._17{width:24.604800pt;}
._19{width:25.826560pt;}
._12{width:29.216000pt;}
._11{width:30.331520pt;}
._9{width:31.818880pt;}
._13{width:33.146880pt;}
._4{width:87.338667pt;}
._3{width:623.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:31.200000pt;}
.ya{bottom:44.960000pt;}
.y75{bottom:105.792000pt;}
.y3f{bottom:116.192000pt;}
.y85{bottom:117.312000pt;}
.y74{bottom:121.152000pt;}
.y3e{bottom:131.552000pt;}
.y84{bottom:132.672000pt;}
.y73{bottom:136.506667pt;}
.y3d{bottom:146.906667pt;}
.y83{bottom:147.866667pt;}
.y72{bottom:151.706667pt;}
.y3c{bottom:162.266667pt;}
.y82{bottom:163.226667pt;}
.yaa{bottom:164.186667pt;}
.y71{bottom:167.066667pt;}
.y3b{bottom:177.626667pt;}
.y81{bottom:178.586667pt;}
.ya9{bottom:179.546667pt;}
.y70{bottom:182.426667pt;}
.y3a{bottom:192.826667pt;}
.y80{bottom:193.946667pt;}
.ya8{bottom:194.906667pt;}
.y6f{bottom:197.786667pt;}
.y39{bottom:208.186667pt;}
.y7f{bottom:209.306667pt;}
.ya7{bottom:210.266667pt;}
.y6e{bottom:213.146667pt;}
.y38{bottom:223.546667pt;}
.y7e{bottom:224.666667pt;}
.ya6{bottom:225.626667pt;}
.y6d{bottom:228.346667pt;}
.y37{bottom:238.906667pt;}
.y7d{bottom:239.866667pt;}
.ya5{bottom:240.826667pt;}
.y6c{bottom:243.706667pt;}
.y36{bottom:254.266667pt;}
.y7c{bottom:255.226667pt;}
.ya4{bottom:256.186667pt;}
.y6b{bottom:259.066667pt;}
.y35{bottom:269.626667pt;}
.y7b{bottom:271.546667pt;}
.y6a{bottom:274.426667pt;}
.y34{bottom:284.826667pt;}
.y7a{bottom:286.906667pt;}
.y69{bottom:289.786667pt;}
.y33{bottom:300.226667pt;}
.ya3{bottom:302.306667pt;}
.y79{bottom:303.266667pt;}
.y68{bottom:305.186667pt;}
.y32{bottom:315.586667pt;}
.ya2{bottom:317.666667pt;}
.y78{bottom:318.466667pt;}
.y67{bottom:320.386667pt;}
.y31{bottom:330.946667pt;}
.ya1{bottom:332.866667pt;}
.y77{bottom:334.786667pt;}
.y66{bottom:335.746667pt;}
.y30{bottom:346.306667pt;}
.ya0{bottom:348.226667pt;}
.y76{bottom:350.146667pt;}
.y65{bottom:351.106667pt;}
.y2f{bottom:361.666667pt;}
.y9f{bottom:363.586667pt;}
.y64{bottom:366.466667pt;}
.y2e{bottom:376.866667pt;}
.y9e{bottom:378.946667pt;}
.y63{bottom:381.826667pt;}
.y2d{bottom:392.226667pt;}
.y9d{bottom:394.306667pt;}
.y62{bottom:397.186667pt;}
.y2c{bottom:407.586667pt;}
.y9c{bottom:409.506667pt;}
.y61{bottom:412.386667pt;}
.y2b{bottom:422.946667pt;}
.y9b{bottom:424.866667pt;}
.y60{bottom:427.746667pt;}
.y2a{bottom:438.306667pt;}
.y9a{bottom:440.226667pt;}
.y5f{bottom:443.106667pt;}
.y29{bottom:453.506667pt;}
.y99{bottom:455.586667pt;}
.y5e{bottom:458.466667pt;}
.y28{bottom:468.866667pt;}
.y98{bottom:470.946667pt;}
.y5d{bottom:473.826667pt;}
.y27{bottom:484.226667pt;}
.y97{bottom:486.306667pt;}
.y5c{bottom:489.186667pt;}
.y26{bottom:499.586667pt;}
.y96{bottom:501.506667pt;}
.y5b{bottom:504.386667pt;}
.y95{bottom:516.866667pt;}
.y25{bottom:517.186667pt;}
.y5a{bottom:519.746667pt;}
.y94{bottom:532.226667pt;}
.y24{bottom:532.546667pt;}
.y59{bottom:535.106667pt;}
.y93{bottom:547.613333pt;}
.y23{bottom:547.933333pt;}
.y58{bottom:550.493333pt;}
.y92{bottom:562.973333pt;}
.y22{bottom:563.293333pt;}
.y57{bottom:565.853333pt;}
.y91{bottom:578.333333pt;}
.y21{bottom:578.653333pt;}
.y56{bottom:581.053333pt;}
.y90{bottom:593.533333pt;}
.y20{bottom:593.853333pt;}
.y55{bottom:596.413333pt;}
.y8f{bottom:608.893333pt;}
.y1f{bottom:609.213333pt;}
.y54{bottom:611.773333pt;}
.y8e{bottom:624.253333pt;}
.y1e{bottom:624.573333pt;}
.y53{bottom:627.133333pt;}
.y8d{bottom:639.613333pt;}
.y1d{bottom:639.933333pt;}
.y52{bottom:642.493333pt;}
.y8c{bottom:654.973333pt;}
.y1c{bottom:655.293333pt;}
.y51{bottom:657.853333pt;}
.y8b{bottom:670.173333pt;}
.y1b{bottom:670.653333pt;}
.y50{bottom:673.053333pt;}
.y8a{bottom:685.533333pt;}
.y1a{bottom:685.853333pt;}
.y4f{bottom:688.413333pt;}
.y89{bottom:700.893333pt;}
.y19{bottom:701.213333pt;}
.y4e{bottom:703.773333pt;}
.y88{bottom:716.253333pt;}
.y18{bottom:716.573333pt;}
.y4d{bottom:719.133333pt;}
.y17{bottom:731.933333pt;}
.y87{bottom:732.573333pt;}
.y4c{bottom:734.493333pt;}
.y16{bottom:747.293333pt;}
.y86{bottom:748.893333pt;}
.y4b{bottom:749.853333pt;}
.y15{bottom:762.653333pt;}
.y4a{bottom:765.053333pt;}
.y14{bottom:778.853333pt;}
.y49{bottom:780.453333pt;}
.y13{bottom:794.693333pt;}
.y48{bottom:795.813333pt;}
.y47{bottom:811.173333pt;}
.y12{bottom:811.493333pt;}
.y46{bottom:826.533333pt;}
.y11{bottom:828.453333pt;}
.y45{bottom:841.893333pt;}
.y10{bottom:845.253333pt;}
.y44{bottom:857.093333pt;}
.yf{bottom:862.053333pt;}
.y43{bottom:872.453333pt;}
.ye{bottom:879.173333pt;}
.y42{bottom:887.813333pt;}
.yd{bottom:897.573333pt;}
.y41{bottom:903.173333pt;}
.yc{bottom:915.973333pt;}
.y40{bottom:918.533333pt;}
.y9{bottom:934.853333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.013333pt;}
.y6{bottom:983.013333pt;}
.y5{bottom:997.893333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:43.031250pt;}
.h5{height:45.494375pt;}
.h2{height:47.621250pt;}
.h8{height:50.427500pt;}
.h3{height:52.785000pt;}
.h4{height:54.812500pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x8{left:100.031988pt;}
.x9{left:103.231988pt;}
.x1{left:113.471988pt;}
.xc{left:118.751988pt;}
.xf{left:120.031988pt;}
.x14{left:144.026655pt;}
.x5{left:148.506655pt;}
.x10{left:168.026655pt;}
.x11{left:192.026655pt;}
.x13{left:307.906655pt;}
.xb{left:327.266655pt;}
.x12{left:341.826655pt;}
.x7{left:343.426655pt;}
.x15{left:351.746655pt;}
.xe{left:354.626655pt;}
.xd{left:358.626655pt;}
.xa{left:360.866655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
}




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