
    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_7cc212c8fbcaebe9138a3220.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_eed3b4bf106b7033cb6ae6d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_a27d6f4df7f246b636685991.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8643e718f1d3cc094a48d40d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_64d6e65cfeee7ea8439933d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_71e0b3125ecf1789ab5615b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_ffd8fdcbb06571207012e033.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.618000px;}
.ls13{letter-spacing:-0.529200px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.270600px;}
.lsf{letter-spacing:-0.241800px;}
.lsa{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.233400px;}
.lse{letter-spacing:-0.152400px;}
.lsd{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.023040px;}
.ls6{letter-spacing:0.100800px;}
.ls14{letter-spacing:0.122400px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.187200px;}
.ls16{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.328200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:2.707200px;}
.ls2{letter-spacing:202.852800px;}
.ls3{letter-spacing:378.163200px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws11{word-spacing:-14.595840px;}
.wsb{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.463600px;}
.wsd{word-spacing:-14.420400px;}
.wsf{word-spacing:-14.339400px;}
.wse{word-spacing:-14.331000px;}
.ws4{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.342200px;}
.ws2{word-spacing:-9.187200px;}
.wsa{word-spacing:-9.092400px;}
.ws3{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws6{word-spacing:-7.632000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-202.672800px;}
._5{margin-left:-8.390160px;}
._29{margin-left:-4.777200px;}
._18{margin-left:-3.775680px;}
._13{margin-left:-2.718480px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.496000px;}
._16{width:4.287840px;}
._15{width:5.385840px;}
._14{width:7.351200px;}
._c{width:8.373840px;}
._d{width:9.382320px;}
._9{width:10.697040px;}
._11{width:12.138720px;}
._17{width:13.343520px;}
._8{width:15.955920px;}
._7{width:17.509680px;}
._1d{width:19.209600px;}
._12{width:20.744160px;}
._24{width:21.969600px;}
._28{width:23.316480px;}
._f{width:24.329760px;}
._10{width:25.362720px;}
._23{width:26.390160px;}
._20{width:28.085760px;}
._25{width:30.150720px;}
._1b{width:31.265280px;}
._1f{width:33.120000px;}
._1e{width:35.040960px;}
._b{width:36.042480px;}
._a{width:37.148400px;}
._27{width:38.154000px;}
._1c{width:39.214080px;}
._21{width:40.472640px;}
._22{width:41.929920px;}
._26{width:44.115840px;}
._2d{width:46.221480px;}
._19{width:47.635080px;}
._2a{width:51.733440px;}
._0{width:75.000000px;}
._e{width:78.464880px;}
._2c{width:87.269520px;}
._2b{width:88.297920px;}
._3{width:181.620000px;}
._1a{width:1069.687200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y52{bottom:6.840000px;}
.y51{bottom:20.160000px;}
.y50{bottom:30.780000px;}
.y4f{bottom:41.220000px;}
.y8{bottom:56.520000px;}
.y4e{bottom:58.860000px;}
.y84{bottom:70.200000px;}
.y7{bottom:70.416000px;}
.y6{bottom:84.276000px;}
.y4d{bottom:102.060000px;}
.y4c{bottom:116.100000px;}
.y81{bottom:117.216000px;}
.y4b{bottom:130.320000px;}
.y80{bottom:139.536000px;}
.y3d{bottom:142.416000px;}
.y4a{bottom:144.360000px;}
.y49{bottom:158.400000px;}
.y7f{bottom:161.670000px;}
.y3c{bottom:164.730000px;}
.y48{bottom:172.440000px;}
.y7e{bottom:183.990000px;}
.y47{bottom:186.480000px;}
.y3b{bottom:187.050000px;}
.y46{bottom:199.125000px;}
.y7d{bottom:206.310000px;}
.y45{bottom:207.585000px;}
.y3a{bottom:209.190000px;}
.y44{bottom:221.805000px;}
.y7c{bottom:228.450000px;}
.y39{bottom:231.510000px;}
.y43{bottom:235.845000px;}
.y42{bottom:249.885000px;}
.y7b{bottom:250.770000px;}
.y38{bottom:253.650000px;}
.y41{bottom:263.925000px;}
.y7a{bottom:272.910000px;}
.y37{bottom:275.970000px;}
.y40{bottom:276.525000px;}
.y3f{bottom:287.685000px;}
.y79{bottom:295.230000px;}
.y36{bottom:298.290000px;}
.y78{bottom:317.370000px;}
.y35{bottom:320.430000px;}
.y34{bottom:339.735000px;}
.y33{bottom:359.535000px;}
.y77{bottom:362.055000px;}
.y32{bottom:377.175000px;}
.y76{bottom:384.195000px;}
.y31{bottom:394.815000px;}
.y75{bottom:406.515000px;}
.y30{bottom:412.275000px;}
.y74{bottom:428.655000px;}
.y2f{bottom:429.915000px;}
.y2e{bottom:447.555000px;}
.y73{bottom:450.975000px;}
.y85{bottom:452.595000px;}
.y2d{bottom:465.195000px;}
.y72{bottom:473.295000px;}
.y2c{bottom:482.655000px;}
.y71{bottom:495.435000px;}
.y2b{bottom:500.295000px;}
.y70{bottom:517.755000px;}
.y2a{bottom:517.935000px;}
.y29{bottom:535.395000px;}
.y6f{bottom:539.895000px;}
.y28{bottom:553.035000px;}
.y6e{bottom:562.215000px;}
.y27{bottom:570.675000px;}
.y6d{bottom:584.535000px;}
.y26{bottom:590.475000px;}
.y6c{bottom:606.705000px;}
.y25{bottom:608.145000px;}
.y24{bottom:625.605000px;}
.y6b{bottom:629.025000px;}
.y23{bottom:643.245000px;}
.y6a{bottom:651.165000px;}
.y22{bottom:660.885000px;}
.y3e{bottom:672.585000px;}
.y69{bottom:673.485000px;}
.y21{bottom:678.345000px;}
.y68{bottom:695.625000px;}
.y20{bottom:695.985000px;}
.y1f{bottom:713.625000px;}
.y67{bottom:717.945000px;}
.y1e{bottom:731.265000px;}
.y66{bottom:740.265000px;}
.y1d{bottom:748.725000px;}
.y65{bottom:762.405000px;}
.y1c{bottom:766.365000px;}
.y1b{bottom:784.005000px;}
.y64{bottom:784.725000px;}
.y1a{bottom:801.465000px;}
.y63{bottom:806.865000px;}
.y19{bottom:819.105000px;}
.y62{bottom:829.185000px;}
.y18{bottom:836.745000px;}
.y61{bottom:851.505000px;}
.y17{bottom:854.205000px;}
.y16{bottom:871.890000px;}
.y60{bottom:873.690000px;}
.y15{bottom:889.530000px;}
.y5f{bottom:896.010000px;}
.y14{bottom:906.990000px;}
.y5e{bottom:918.150000px;}
.y13{bottom:924.630000px;}
.y5d{bottom:940.470000px;}
.y12{bottom:942.270000px;}
.y11{bottom:959.910000px;}
.y5c{bottom:962.610000px;}
.y10{bottom:977.370000px;}
.y5b{bottom:984.930000px;}
.yf{bottom:994.650000px;}
.y5a{bottom:1007.250000px;}
.ye{bottom:1013.550000px;}
.yd{bottom:1026.870000px;}
.y59{bottom:1029.390000px;}
.yc{bottom:1046.310000px;}
.y58{bottom:1051.710000px;}
.yb{bottom:1066.290000px;}
.y57{bottom:1073.850000px;}
.ya{bottom:1089.150000px;}
.y56{bottom:1096.170000px;}
.y9{bottom:1111.110000px;}
.y55{bottom:1118.490000px;}
.y5{bottom:1131.990000px;}
.y54{bottom:1140.660000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y83{bottom:1168.380000px;}
.y82{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y53{bottom:1197.540000px;}
.hb{height:20.117109px;}
.hd{height:30.480469px;}
.h9{height:33.480703px;}
.h5{height:33.683203px;}
.h11{height:35.694141px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.hf{height:50.273438px;}
.h6{height:50.597578px;}
.h8{height:56.084062px;}
.he{height:58.819922px;}
.hc{height:60.960938px;}
.h7{height:65.837812px;}
.h10{height:81.000000px;}
.ha{height:300.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.415987px;}
.x1{left:108.035987px;}
.x2{left:116.135987px;}
.x7{left:120.455987px;}
.xc{left:148.895987px;}
.xa{left:159.509987px;}
.x3{left:174.629987px;}
.x4{left:259.949987px;}
.x6{left:300.854987px;}
.x8{left:344.414987px;}
.x5{left:446.474987px;}
.xb{left:565.124987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.549333pt;}
.ls13{letter-spacing:-0.470400pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.240533pt;}
.lsf{letter-spacing:-0.214933pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.207467pt;}
.lse{letter-spacing:-0.135467pt;}
.lsd{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.020480pt;}
.ls6{letter-spacing:0.089600pt;}
.ls14{letter-spacing:0.108800pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.166400pt;}
.ls16{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.291733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:2.406400pt;}
.ls2{letter-spacing:180.313600pt;}
.ls3{letter-spacing:336.145067pt;}
.ws10{word-spacing:-58.880000pt;}
.ws11{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.856533pt;}
.wsd{word-spacing:-12.818133pt;}
.wsf{word-spacing:-12.746133pt;}
.wse{word-spacing:-12.738667pt;}
.ws4{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.193067pt;}
.ws2{word-spacing:-8.166400pt;}
.wsa{word-spacing:-8.082133pt;}
.ws3{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws6{word-spacing:-6.784000pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-180.153600pt;}
._5{margin-left:-7.457920pt;}
._29{margin-left:-4.246400pt;}
._18{margin-left:-3.356160pt;}
._13{margin-left:-2.416427pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.218667pt;}
._16{width:3.811413pt;}
._15{width:4.787413pt;}
._14{width:6.534400pt;}
._c{width:7.443413pt;}
._d{width:8.339840pt;}
._9{width:9.508480pt;}
._11{width:10.789973pt;}
._17{width:11.860907pt;}
._8{width:14.183040pt;}
._7{width:15.564160pt;}
._1d{width:17.075200pt;}
._12{width:18.439253pt;}
._24{width:19.528533pt;}
._28{width:20.725760pt;}
._f{width:21.626453pt;}
._10{width:22.544640pt;}
._23{width:23.457920pt;}
._20{width:24.965120pt;}
._25{width:26.800640pt;}
._1b{width:27.791360pt;}
._1f{width:29.440000pt;}
._1e{width:31.147520pt;}
._b{width:32.037760pt;}
._a{width:33.020800pt;}
._27{width:33.914667pt;}
._1c{width:34.856960pt;}
._21{width:35.975680pt;}
._22{width:37.271040pt;}
._26{width:39.214080pt;}
._2d{width:41.085760pt;}
._19{width:42.342293pt;}
._2a{width:45.985280pt;}
._0{width:66.666667pt;}
._e{width:69.746560pt;}
._2c{width:77.572907pt;}
._2b{width:78.487040pt;}
._3{width:161.440000pt;}
._1a{width:950.833067pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:6.080000pt;}
.y51{bottom:17.920000pt;}
.y50{bottom:27.360000pt;}
.y4f{bottom:36.640000pt;}
.y8{bottom:50.240000pt;}
.y4e{bottom:52.320000pt;}
.y84{bottom:62.400000pt;}
.y7{bottom:62.592000pt;}
.y6{bottom:74.912000pt;}
.y4d{bottom:90.720000pt;}
.y4c{bottom:103.200000pt;}
.y81{bottom:104.192000pt;}
.y4b{bottom:115.840000pt;}
.y80{bottom:124.032000pt;}
.y3d{bottom:126.592000pt;}
.y4a{bottom:128.320000pt;}
.y49{bottom:140.800000pt;}
.y7f{bottom:143.706667pt;}
.y3c{bottom:146.426667pt;}
.y48{bottom:153.280000pt;}
.y7e{bottom:163.546667pt;}
.y47{bottom:165.760000pt;}
.y3b{bottom:166.266667pt;}
.y46{bottom:177.000000pt;}
.y7d{bottom:183.386667pt;}
.y45{bottom:184.520000pt;}
.y3a{bottom:185.946667pt;}
.y44{bottom:197.160000pt;}
.y7c{bottom:203.066667pt;}
.y39{bottom:205.786667pt;}
.y43{bottom:209.640000pt;}
.y42{bottom:222.120000pt;}
.y7b{bottom:222.906667pt;}
.y38{bottom:225.466667pt;}
.y41{bottom:234.600000pt;}
.y7a{bottom:242.586667pt;}
.y37{bottom:245.306667pt;}
.y40{bottom:245.800000pt;}
.y3f{bottom:255.720000pt;}
.y79{bottom:262.426667pt;}
.y36{bottom:265.146667pt;}
.y78{bottom:282.106667pt;}
.y35{bottom:284.826667pt;}
.y34{bottom:301.986667pt;}
.y33{bottom:319.586667pt;}
.y77{bottom:321.826667pt;}
.y32{bottom:335.266667pt;}
.y76{bottom:341.506667pt;}
.y31{bottom:350.946667pt;}
.y75{bottom:361.346667pt;}
.y30{bottom:366.466667pt;}
.y74{bottom:381.026667pt;}
.y2f{bottom:382.146667pt;}
.y2e{bottom:397.826667pt;}
.y73{bottom:400.866667pt;}
.y85{bottom:402.306667pt;}
.y2d{bottom:413.506667pt;}
.y72{bottom:420.706667pt;}
.y2c{bottom:429.026667pt;}
.y71{bottom:440.386667pt;}
.y2b{bottom:444.706667pt;}
.y70{bottom:460.226667pt;}
.y2a{bottom:460.386667pt;}
.y29{bottom:475.906667pt;}
.y6f{bottom:479.906667pt;}
.y28{bottom:491.586667pt;}
.y6e{bottom:499.746667pt;}
.y27{bottom:507.266667pt;}
.y6d{bottom:519.586667pt;}
.y26{bottom:524.866667pt;}
.y6c{bottom:539.293333pt;}
.y25{bottom:540.573333pt;}
.y24{bottom:556.093333pt;}
.y6b{bottom:559.133333pt;}
.y23{bottom:571.773333pt;}
.y6a{bottom:578.813333pt;}
.y22{bottom:587.453333pt;}
.y3e{bottom:597.853333pt;}
.y69{bottom:598.653333pt;}
.y21{bottom:602.973333pt;}
.y68{bottom:618.333333pt;}
.y20{bottom:618.653333pt;}
.y1f{bottom:634.333333pt;}
.y67{bottom:638.173333pt;}
.y1e{bottom:650.013333pt;}
.y66{bottom:658.013333pt;}
.y1d{bottom:665.533333pt;}
.y65{bottom:677.693333pt;}
.y1c{bottom:681.213333pt;}
.y1b{bottom:696.893333pt;}
.y64{bottom:697.533333pt;}
.y1a{bottom:712.413333pt;}
.y63{bottom:717.213333pt;}
.y19{bottom:728.093333pt;}
.y62{bottom:737.053333pt;}
.y18{bottom:743.773333pt;}
.y61{bottom:756.893333pt;}
.y17{bottom:759.293333pt;}
.y16{bottom:775.013333pt;}
.y60{bottom:776.613333pt;}
.y15{bottom:790.693333pt;}
.y5f{bottom:796.453333pt;}
.y14{bottom:806.213333pt;}
.y5e{bottom:816.133333pt;}
.y13{bottom:821.893333pt;}
.y5d{bottom:835.973333pt;}
.y12{bottom:837.573333pt;}
.y11{bottom:853.253333pt;}
.y5c{bottom:855.653333pt;}
.y10{bottom:868.773333pt;}
.y5b{bottom:875.493333pt;}
.yf{bottom:884.133333pt;}
.y5a{bottom:895.333333pt;}
.ye{bottom:900.933333pt;}
.yd{bottom:912.773333pt;}
.y59{bottom:915.013333pt;}
.yc{bottom:930.053333pt;}
.y58{bottom:934.853333pt;}
.yb{bottom:947.813333pt;}
.y57{bottom:954.533333pt;}
.ya{bottom:968.133333pt;}
.y56{bottom:974.373333pt;}
.y9{bottom:987.653333pt;}
.y55{bottom:994.213333pt;}
.y5{bottom:1006.213333pt;}
.y54{bottom:1013.920000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y83{bottom:1038.560000pt;}
.y82{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y53{bottom:1064.480000pt;}
.hb{height:17.881875pt;}
.hd{height:27.093750pt;}
.h9{height:29.760625pt;}
.h5{height:29.940625pt;}
.h11{height:31.728125pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.hf{height:44.687500pt;}
.h6{height:44.975625pt;}
.h8{height:49.852500pt;}
.he{height:52.284375pt;}
.hc{height:54.187500pt;}
.h7{height:58.522500pt;}
.h10{height:72.000000pt;}
.ha{height:267.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.591988pt;}
.x1{left:96.031988pt;}
.x2{left:103.231988pt;}
.x7{left:107.071988pt;}
.xc{left:132.351988pt;}
.xa{left:141.786655pt;}
.x3{left:155.226655pt;}
.x4{left:231.066655pt;}
.x6{left:267.426655pt;}
.x8{left:306.146655pt;}
.x5{left:396.866655pt;}
.xb{left:502.333322pt;}
}




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