
    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_181032ab856c563e8ff9cf12.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07a9af3b1b0ae9a4997ce3c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991179;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_2fca07f087566f6d00697ace.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956055;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_76f42c3b81cd4f49bc4e82cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_9d3a6cf7623b40a54e9b03a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.183927;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_f5a01c84295931b6589774fb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d6ffe775772a06620e03fcac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_00ed631324721bbaeb737d44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-106.560000px;}
.v3{vertical-align:-90.720000px;}
.v2{vertical-align:-89.280000px;}
.v4{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.025920px;}
.ls7{letter-spacing:0.138000px;}
.ls2{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.148800px;}
.ls10{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.200400px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.lsf{letter-spacing:8.820000px;}
.lse{letter-spacing:21.546720px;}
.lsc{letter-spacing:1185.420000px;}
.ls8{letter-spacing:1188.840000px;}
.ls11{letter-spacing:1523.820000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-19.578000px;}
.wsa{word-spacing:-19.448640px;}
.ws6{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.431360px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.809280px;}
.ws5{word-spacing:-15.608880px;}
.wse{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.096000px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:9.411840px;}
.wsc{word-spacing:12.205440px;}
.wsb{word-spacing:42.599520px;}
._2f{margin-left:-2210.224800px;}
._b{margin-left:-2026.762560px;}
._27{margin-left:-1620.059520px;}
._28{margin-left:-1434.588480px;}
._14{margin-left:-1220.362560px;}
._12{margin-left:-1218.254880px;}
._d{margin-left:-1066.080960px;}
._e{margin-left:-871.776000px;}
._4{margin-left:-795.720000px;}
._6{margin-left:-787.176000px;}
._1a{margin-left:-516.677760px;}
._17{margin-left:-495.095040px;}
._29{margin-left:-448.669440px;}
._7{margin-left:-426.504000px;}
._16{margin-left:-413.894880px;}
._10{margin-left:-284.340960px;}
._1c{margin-left:-232.375680px;}
._f{margin-left:-223.523040px;}
._1f{margin-left:-189.941040px;}
._1e{margin-left:-176.834880px;}
._0{margin-left:-175.392000px;}
._1b{margin-left:-151.894080px;}
._21{margin-left:-142.560000px;}
._1d{margin-left:-138.620160px;}
._2{margin-left:-132.192000px;}
._a{margin-left:-117.480000px;}
._18{margin-left:-113.664960px;}
._9{margin-left:-101.376000px;}
._11{margin-left:-72.057600px;}
._19{margin-left:-70.444800px;}
._23{margin-left:-69.094080px;}
._3{margin-left:-60.336000px;}
._1{margin-left:-56.376000px;}
._8{margin-left:-53.952000px;}
._22{margin-left:-45.941280px;}
._20{margin-left:-44.614080px;}
._15{margin-left:-28.336320px;}
._c{margin-left:-11.709360px;}
._5{margin-left:-1.008000px;}
._13{width:1.010880px;}
._26{width:2.799360px;}
._25{width:3.816000px;}
._32{width:5.777280px;}
._24{width:7.153920px;}
._2e{width:8.553600px;}
._2c{width:11.427840px;}
._31{width:13.052160px;}
._33{width:14.405760px;}
._2b{width:21.271680px;}
._2a{width:22.536000px;}
._34{width:27.172800px;}
._35{width:674.927760px;}
._2d{width:733.323360px;}
._30{width:1282.182240px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y16{bottom:6.480000px;}
.yc{bottom:11.490000px;}
.y15{bottom:11.700000px;}
.y8{bottom:79.890000px;}
.y5{bottom:91.080000px;}
.y18{bottom:117.720000px;}
.y13{bottom:227.910000px;}
.y2c{bottom:257.790000px;}
.y51{bottom:275.070000px;}
.y50{bottom:293.970000px;}
.y2b{bottom:302.610000px;}
.y4f{bottom:313.050000px;}
.y2a{bottom:325.110000px;}
.y4e{bottom:331.950000px;}
.y29{bottom:347.610000px;}
.y4d{bottom:351.030000px;}
.y28{bottom:370.110000px;}
.y4c{bottom:388.830000px;}
.y4b{bottom:407.955000px;}
.y4a{bottom:426.855000px;}
.y27{bottom:437.655000px;}
.y26{bottom:460.155000px;}
.y2e{bottom:469.515000px;}
.y49{bottom:483.915000px;}
.y48{bottom:501.195000px;}
.y47{bottom:537.375000px;}
.y46{bottom:554.655000px;}
.y45{bottom:571.755000px;}
.y44{bottom:589.035000px;}
.y43{bottom:606.315000px;}
.y42{bottom:623.595000px;}
.y41{bottom:640.875000px;}
.y40{bottom:677.085000px;}
.y25{bottom:706.785000px;}
.y3f{bottom:714.885000px;}
.y20{bottom:737.925000px;}
.y1f{bottom:760.425000px;}
.y3e{bottom:760.605000px;}
.y3d{bottom:779.685000px;}
.y3c{bottom:798.585000px;}
.y3b{bottom:817.665000px;}
.y12{bottom:819.105000px;}
.y3a{bottom:836.565000px;}
.y24{bottom:841.425000px;}
.y11{bottom:848.445000px;}
.y56{bottom:849.705000px;}
.y39{bottom:855.645000px;}
.y38{bottom:874.545000px;}
.y55{bottom:887.685000px;}
.y37{bottom:893.445000px;}
.y1e{bottom:895.065000px;}
.y23{bottom:896.370000px;}
.y36{bottom:912.570000px;}
.y54{bottom:925.710000px;}
.y35{bottom:931.470000px;}
.y1d{bottom:940.110000px;}
.y34{bottom:950.550000px;}
.y10{bottom:955.410000px;}
.y1c{bottom:962.610000px;}
.y53{bottom:963.690000px;}
.y33{bottom:969.450000px;}
.y1b{bottom:985.110000px;}
.yf{bottom:988.350000px;}
.y32{bottom:988.530000px;}
.y52{bottom:1001.490000px;}
.y1a{bottom:1007.610000px;}
.y31{bottom:1009.230000px;}
.ye{bottom:1013.370000px;}
.yb{bottom:1018.080000px;}
.yd{bottom:1021.500000px;}
.y7{bottom:1024.920000px;}
.y30{bottom:1029.930000px;}
.y4{bottom:1030.650000px;}
.y2f{bottom:1050.630000px;}
.y19{bottom:1052.430000px;}
.ya{bottom:1054.230000px;}
.y3{bottom:1058.370000px;}
.y2d{bottom:1074.930000px;}
.y22{bottom:1075.830000px;}
.y9{bottom:1079.610000px;}
.y2{bottom:1085.910000px;}
.y21{bottom:1088.250000px;}
.y17{bottom:1100.850000px;}
.y6{bottom:1104.810000px;}
.y14{bottom:1110.570000px;}
.y1{bottom:1113.450000px;}
.h11{height:19.425000px;}
.h7{height:23.580000px;}
.hd{height:24.645000px;}
.hf{height:35.332031px;}
.h8{height:38.153884px;}
.h12{height:47.344922px;}
.h3{height:47.984319px;}
.he{height:51.823064px;}
.h5{height:53.296875px;}
.hc{height:57.560625px;}
.h18{height:58.651172px;}
.h17{height:61.423863px;}
.ha{height:65.010937px;}
.h9{height:66.626932px;}
.h15{height:66.757500px;}
.h16{height:68.084282px;}
.h13{height:72.562500px;}
.h6{height:74.004654px;}
.h14{height:74.953125px;}
.hb{height:75.738308px;}
.h10{height:76.317188px;}
.h2{height:93.983203px;}
.h4{height:96.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:96.300000px;}
.w4{width:103.860000px;}
.w8{width:159.495000px;}
.w5{width:276.015000px;}
.w6{width:276.855000px;}
.w7{width:393.375000px;}
.w2{width:570.240000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.305000px;}
.x22{left:39.420000px;}
.xa{left:53.310000px;}
.x16{left:117.165000px;}
.x14{left:153.570000px;}
.x3{left:161.460000px;}
.x9{left:163.620000px;}
.x15{left:170.145000px;}
.x6{left:173.775000px;}
.x1c{left:189.570000px;}
.x2a{left:194.970000px;}
.x31{left:197.130000px;}
.xe{left:200.550000px;}
.x2f{left:212.610000px;}
.x4{left:214.815000px;}
.x19{left:263.910000px;}
.x20{left:270.930000px;}
.x1d{left:307.695000px;}
.x2b{left:312.915000px;}
.xf{left:320.655000px;}
.x25{left:322.275000px;}
.x21{left:329.655000px;}
.x10{left:341.715000px;}
.x29{left:353.055000px;}
.x27{left:356.835000px;}
.x5{left:373.395000px;}
.x24{left:406.335000px;}
.xd{left:438.555000px;}
.x2{left:441.975000px;}
.x1f{left:445.215000px;}
.x13{left:447.015000px;}
.x1b{left:452.055000px;}
.x18{left:466.815000px;}
.x1a{left:491.115000px;}
.x2c{left:496.335000px;}
.x8{left:497.625000px;}
.x2d{left:532.365000px;}
.x7{left:534.705000px;}
.x26{left:556.305000px;}
.x2e{left:569.085000px;}
.x28{left:594.645000px;}
.xb{left:628.920000px;}
.x1e{left:663.585000px;}
.x32{left:691.125000px;}
.x30{left:695.985000px;}
.x11{left:707.010000px;}
.x12{left:708.450000px;}
.x1{left:712.230000px;}
.x23{left:717.630000px;}
.x17{left:719.070000px;}
@media print{
.v1{vertical-align:-94.720000pt;}
.v3{vertical-align:-80.640000pt;}
.v2{vertical-align:-79.360000pt;}
.v4{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.023040pt;}
.ls7{letter-spacing:0.122667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.132267pt;}
.ls10{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.178133pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.lsf{letter-spacing:7.840000pt;}
.lse{letter-spacing:19.152640pt;}
.lsc{letter-spacing:1053.706667pt;}
.ls8{letter-spacing:1056.746667pt;}
.ls11{letter-spacing:1354.506667pt;}
.ws8{word-spacing:-17.402667pt;}
.wsa{word-spacing:-17.287680pt;}
.ws6{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.272320pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.052693pt;}
.ws5{word-spacing:-13.874560pt;}
.wse{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.752000pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:8.366080pt;}
.wsc{word-spacing:10.849280pt;}
.wsb{word-spacing:37.866240pt;}
._2f{margin-left:-1964.644267pt;}
._b{margin-left:-1801.566720pt;}
._27{margin-left:-1440.052907pt;}
._28{margin-left:-1275.189760pt;}
._14{margin-left:-1084.766720pt;}
._12{margin-left:-1082.893227pt;}
._d{margin-left:-947.627520pt;}
._e{margin-left:-774.912000pt;}
._4{margin-left:-707.306667pt;}
._6{margin-left:-699.712000pt;}
._1a{margin-left:-459.269120pt;}
._17{margin-left:-440.084480pt;}
._29{margin-left:-398.817280pt;}
._7{margin-left:-379.114667pt;}
._16{margin-left:-367.906560pt;}
._10{margin-left:-252.747520pt;}
._1c{margin-left:-206.556160pt;}
._f{margin-left:-198.687147pt;}
._1f{margin-left:-168.836480pt;}
._1e{margin-left:-157.186560pt;}
._0{margin-left:-155.904000pt;}
._1b{margin-left:-135.016960pt;}
._21{margin-left:-126.720000pt;}
._1d{margin-left:-123.217920pt;}
._2{margin-left:-117.504000pt;}
._a{margin-left:-104.426667pt;}
._18{margin-left:-101.035520pt;}
._9{margin-left:-90.112000pt;}
._11{margin-left:-64.051200pt;}
._19{margin-left:-62.617600pt;}
._23{margin-left:-61.416960pt;}
._3{margin-left:-53.632000pt;}
._1{margin-left:-50.112000pt;}
._8{margin-left:-47.957333pt;}
._22{margin-left:-40.836693pt;}
._20{margin-left:-39.656960pt;}
._15{margin-left:-25.187840pt;}
._c{margin-left:-10.408320pt;}
._5{margin-left:-0.896000pt;}
._13{width:0.898560pt;}
._26{width:2.488320pt;}
._25{width:3.392000pt;}
._32{width:5.135360pt;}
._24{width:6.359040pt;}
._2e{width:7.603200pt;}
._2c{width:10.158080pt;}
._31{width:11.601920pt;}
._33{width:12.805120pt;}
._2b{width:18.908160pt;}
._2a{width:20.032000pt;}
._34{width:24.153600pt;}
._35{width:599.935787pt;}
._2d{width:651.842987pt;}
._30{width:1139.717547pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:5.760000pt;}
.yc{bottom:10.213333pt;}
.y15{bottom:10.400000pt;}
.y8{bottom:71.013333pt;}
.y5{bottom:80.960000pt;}
.y18{bottom:104.640000pt;}
.y13{bottom:202.586667pt;}
.y2c{bottom:229.146667pt;}
.y51{bottom:244.506667pt;}
.y50{bottom:261.306667pt;}
.y2b{bottom:268.986667pt;}
.y4f{bottom:278.266667pt;}
.y2a{bottom:288.986667pt;}
.y4e{bottom:295.066667pt;}
.y29{bottom:308.986667pt;}
.y4d{bottom:312.026667pt;}
.y28{bottom:328.986667pt;}
.y4c{bottom:345.626667pt;}
.y4b{bottom:362.626667pt;}
.y4a{bottom:379.426667pt;}
.y27{bottom:389.026667pt;}
.y26{bottom:409.026667pt;}
.y2e{bottom:417.346667pt;}
.y49{bottom:430.146667pt;}
.y48{bottom:445.506667pt;}
.y47{bottom:477.666667pt;}
.y46{bottom:493.026667pt;}
.y45{bottom:508.226667pt;}
.y44{bottom:523.586667pt;}
.y43{bottom:538.946667pt;}
.y42{bottom:554.306667pt;}
.y41{bottom:569.666667pt;}
.y40{bottom:601.853333pt;}
.y25{bottom:628.253333pt;}
.y3f{bottom:635.453333pt;}
.y20{bottom:655.933333pt;}
.y1f{bottom:675.933333pt;}
.y3e{bottom:676.093333pt;}
.y3d{bottom:693.053333pt;}
.y3c{bottom:709.853333pt;}
.y3b{bottom:726.813333pt;}
.y12{bottom:728.093333pt;}
.y3a{bottom:743.613333pt;}
.y24{bottom:747.933333pt;}
.y11{bottom:754.173333pt;}
.y56{bottom:755.293333pt;}
.y39{bottom:760.573333pt;}
.y38{bottom:777.373333pt;}
.y55{bottom:789.053333pt;}
.y37{bottom:794.173333pt;}
.y1e{bottom:795.613333pt;}
.y23{bottom:796.773333pt;}
.y36{bottom:811.173333pt;}
.y54{bottom:822.853333pt;}
.y35{bottom:827.973333pt;}
.y1d{bottom:835.653333pt;}
.y34{bottom:844.933333pt;}
.y10{bottom:849.253333pt;}
.y1c{bottom:855.653333pt;}
.y53{bottom:856.613333pt;}
.y33{bottom:861.733333pt;}
.y1b{bottom:875.653333pt;}
.yf{bottom:878.533333pt;}
.y32{bottom:878.693333pt;}
.y52{bottom:890.213333pt;}
.y1a{bottom:895.653333pt;}
.y31{bottom:897.093333pt;}
.ye{bottom:900.773333pt;}
.yb{bottom:904.960000pt;}
.yd{bottom:908.000000pt;}
.y7{bottom:911.040000pt;}
.y30{bottom:915.493333pt;}
.y4{bottom:916.133333pt;}
.y2f{bottom:933.893333pt;}
.y19{bottom:935.493333pt;}
.ya{bottom:937.093333pt;}
.y3{bottom:940.773333pt;}
.y2d{bottom:955.493333pt;}
.y22{bottom:956.293333pt;}
.y9{bottom:959.653333pt;}
.y2{bottom:965.253333pt;}
.y21{bottom:967.333333pt;}
.y17{bottom:978.533333pt;}
.y6{bottom:982.053333pt;}
.y14{bottom:987.173333pt;}
.y1{bottom:989.733333pt;}
.h11{height:17.266667pt;}
.h7{height:20.960000pt;}
.hd{height:21.906667pt;}
.hf{height:31.406250pt;}
.h8{height:33.914564pt;}
.h12{height:42.084375pt;}
.h3{height:42.652728pt;}
.he{height:46.064946pt;}
.h5{height:47.375000pt;}
.hc{height:51.165000pt;}
.h18{height:52.134375pt;}
.h17{height:54.598989pt;}
.ha{height:57.787500pt;}
.h9{height:59.223940pt;}
.h15{height:59.340000pt;}
.h16{height:60.519362pt;}
.h13{height:64.500000pt;}
.h6{height:65.781915pt;}
.h14{height:66.625000pt;}
.hb{height:67.322940pt;}
.h10{height:67.837500pt;}
.h2{height:83.540625pt;}
.h4{height:86.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:85.600000pt;}
.w4{width:92.320000pt;}
.w8{width:141.773333pt;}
.w5{width:245.346667pt;}
.w6{width:246.093333pt;}
.w7{width:349.666667pt;}
.w2{width:506.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.493333pt;}
.x22{left:35.040000pt;}
.xa{left:47.386667pt;}
.x16{left:104.146667pt;}
.x14{left:136.506667pt;}
.x3{left:143.520000pt;}
.x9{left:145.440000pt;}
.x15{left:151.240000pt;}
.x6{left:154.466667pt;}
.x1c{left:168.506667pt;}
.x2a{left:173.306667pt;}
.x31{left:175.226667pt;}
.xe{left:178.266667pt;}
.x2f{left:188.986667pt;}
.x4{left:190.946667pt;}
.x19{left:234.586667pt;}
.x20{left:240.826667pt;}
.x1d{left:273.506667pt;}
.x2b{left:278.146667pt;}
.xf{left:285.026667pt;}
.x25{left:286.466667pt;}
.x21{left:293.026667pt;}
.x10{left:303.746667pt;}
.x29{left:313.826667pt;}
.x27{left:317.186667pt;}
.x5{left:331.906667pt;}
.x24{left:361.186667pt;}
.xd{left:389.826667pt;}
.x2{left:392.866667pt;}
.x1f{left:395.746667pt;}
.x13{left:397.346667pt;}
.x1b{left:401.826667pt;}
.x18{left:414.946667pt;}
.x1a{left:436.546667pt;}
.x2c{left:441.186667pt;}
.x8{left:442.333333pt;}
.x2d{left:473.213333pt;}
.x7{left:475.293333pt;}
.x26{left:494.493333pt;}
.x2e{left:505.853333pt;}
.x28{left:528.573333pt;}
.xb{left:559.040000pt;}
.x1e{left:589.853333pt;}
.x32{left:614.333333pt;}
.x30{left:618.653333pt;}
.x11{left:628.453333pt;}
.x12{left:629.733333pt;}
.x1{left:633.093333pt;}
.x23{left:637.893333pt;}
.x17{left:639.173333pt;}
}




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