
    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_142260899e7491027d0f4154.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_6aceba8a4d8801044c3bd68a.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_386235335c25d12bd7f4f922.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_d73005196f377683b6af02bc.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_1d781b5c395565a0074e1dd0.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_066c82be3363887af404ec02.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_6bfd6a51e117dcb3ec14676d.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1e2d23215fed3f86de2b7568.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.618000px;}
.lsf{letter-spacing:-0.597600px;}
.ls5{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.529200px;}
.lsc{letter-spacing:-0.478200px;}
.lse{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.270600px;}
.lsd{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.085200px;}
.ls9{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.023040px;}
.ls6{letter-spacing:0.100800px;}
.ls0{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls10{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.403200px;}
.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;}
}
.ws3{word-spacing:-14.595840px;}
.wsb{word-spacing:-14.572800px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.134600px;}
.wsa{word-spacing:-9.092400px;}
.ws7{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.884000px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-4.371840px;}
._1e{margin-left:-3.293280px;}
._2{margin-left:-1.476000px;}
._1{width:1.488000px;}
._a{width:2.761920px;}
._13{width:4.371840px;}
._11{width:6.274800px;}
._22{width:7.287600px;}
._6{width:8.306640px;}
._b{width:9.513840px;}
._9{width:10.703040px;}
._8{width:11.712960px;}
._12{width:13.115520px;}
._f{width:14.169120px;}
._1c{width:15.765120px;}
._1b{width:16.824960px;}
._23{width:18.108000px;}
._10{width:19.362240px;}
._7{width:20.856240px;}
._e{width:22.410000px;}
._c{width:23.425920px;}
._d{width:24.441840px;}
._14{width:26.141760px;}
._1f{width:28.218240px;}
._21{width:30.337920px;}
._17{width:33.120000px;}
._18{width:34.120320px;}
._24{width:36.167040px;}
._25{width:40.358880px;}
._15{width:42.062400px;}
._16{width:43.339680px;}
._20{width:45.067680px;}
._19{width:46.896480px;}
._0{width:75.000000px;}
._2b{width:76.470240px;}
._2a{width:77.549760px;}
._28{width:87.238080px;}
._26{width:110.952000px;}
._27{width:112.044960px;}
._29{width:141.157440px;}
._3{width:181.458000px;}
._4{width:194.109840px;}
._5{width:202.852800px;}
._2c{width:349.351200px;}
._1a{width:1112.887200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y55{bottom:-22.530000px;}
.y54{bottom:-1.800000px;}
.y0{bottom:0.000000px;}
.y53{bottom:16.920000px;}
.y52{bottom:27.540000px;}
.y51{bottom:38.160000px;}
.y50{bottom:48.600000px;}
.y7{bottom:56.520000px;}
.y4f{bottom:66.240000px;}
.y6{bottom:70.596000px;}
.y8c{bottom:113.796000px;}
.y4e{bottom:119.160000px;}
.y3d{bottom:130.896000px;}
.y4d{bottom:133.200000px;}
.y8b{bottom:133.236000px;}
.y4c{bottom:147.420000px;}
.y3c{bottom:150.330000px;}
.y8a{bottom:152.490000px;}
.y4b{bottom:161.460000px;}
.y3b{bottom:169.590000px;}
.y89{bottom:171.930000px;}
.y4a{bottom:175.500000px;}
.y3a{bottom:188.850000px;}
.y49{bottom:189.540000px;}
.y88{bottom:191.190000px;}
.y48{bottom:203.580000px;}
.y39{bottom:208.290000px;}
.y87{bottom:210.630000px;}
.y47{bottom:217.620000px;}
.y38{bottom:227.550000px;}
.y86{bottom:229.890000px;}
.y46{bottom:231.660000px;}
.y45{bottom:246.960000px;}
.y37{bottom:246.990000px;}
.y85{bottom:249.330000px;}
.y36{bottom:266.250000px;}
.y44{bottom:266.625000px;}
.y84{bottom:268.590000px;}
.y43{bottom:280.665000px;}
.y35{bottom:285.690000px;}
.y83{bottom:287.850000px;}
.y42{bottom:294.705000px;}
.y34{bottom:304.950000px;}
.y82{bottom:307.290000px;}
.y41{bottom:308.745000px;}
.y40{bottom:322.785000px;}
.y33{bottom:324.390000px;}
.y81{bottom:326.550000px;}
.y3f{bottom:337.185000px;}
.y32{bottom:343.695000px;}
.y80{bottom:346.035000px;}
.y31{bottom:363.135000px;}
.y7f{bottom:365.295000px;}
.y30{bottom:382.395000px;}
.y7e{bottom:384.735000px;}
.y2f{bottom:401.835000px;}
.y7d{bottom:403.995000px;}
.y2e{bottom:421.095000px;}
.y7c{bottom:423.435000px;}
.y2d{bottom:440.535000px;}
.y7b{bottom:442.695000px;}
.y2c{bottom:459.795000px;}
.y7a{bottom:462.135000px;}
.y2b{bottom:479.055000px;}
.y79{bottom:481.395000px;}
.y2a{bottom:498.495000px;}
.y78{bottom:500.835000px;}
.y29{bottom:517.575000px;}
.y77{bottom:520.095000px;}
.y28{bottom:535.215000px;}
.y76{bottom:539.535000px;}
.y27{bottom:552.675000px;}
.y75{bottom:558.795000px;}
.y26{bottom:570.315000px;}
.y74{bottom:578.055000px;}
.y25{bottom:587.955000px;}
.y73{bottom:597.495000px;}
.y24{bottom:605.445000px;}
.y72{bottom:616.785000px;}
.y3e{bottom:621.105000px;}
.y23{bottom:623.085000px;}
.y71{bottom:636.225000px;}
.y22{bottom:640.725000px;}
.y70{bottom:655.485000px;}
.y21{bottom:658.365000px;}
.y6f{bottom:674.925000px;}
.y20{bottom:675.825000px;}
.y1f{bottom:693.465000px;}
.y6e{bottom:694.185000px;}
.y1e{bottom:711.105000px;}
.y6d{bottom:713.625000px;}
.y1d{bottom:728.565000px;}
.y6c{bottom:732.885000px;}
.y1c{bottom:748.365000px;}
.y6b{bottom:752.325000px;}
.y1b{bottom:766.005000px;}
.y6a{bottom:771.585000px;}
.y1a{bottom:783.645000px;}
.y69{bottom:791.025000px;}
.y19{bottom:801.285000px;}
.y68{bottom:810.285000px;}
.y18{bottom:818.745000px;}
.y67{bottom:829.725000px;}
.y17{bottom:836.385000px;}
.y66{bottom:848.985000px;}
.y16{bottom:854.025000px;}
.y65{bottom:868.245000px;}
.y15{bottom:871.530000px;}
.y64{bottom:887.730000px;}
.y14{bottom:889.170000px;}
.y13{bottom:906.810000px;}
.y63{bottom:906.990000px;}
.y12{bottom:924.270000px;}
.y62{bottom:926.430000px;}
.y11{bottom:941.910000px;}
.y61{bottom:945.690000px;}
.y10{bottom:959.550000px;}
.y60{bottom:965.130000px;}
.yf{bottom:977.190000px;}
.y5f{bottom:984.390000px;}
.y90{bottom:991.230000px;}
.ye{bottom:994.290000px;}
.y5e{bottom:1003.830000px;}
.y8f{bottom:1008.870000px;}
.yd{bottom:1010.850000px;}
.y5d{bottom:1023.090000px;}
.y8e{bottom:1026.330000px;}
.yc{bottom:1029.930000px;}
.y5c{bottom:1042.530000px;}
.y8d{bottom:1043.970000px;}
.yb{bottom:1047.750000px;}
.y5b{bottom:1061.790000px;}
.ya{bottom:1067.730000px;}
.y5a{bottom:1081.230000px;}
.y9{bottom:1090.590000px;}
.y59{bottom:1100.490000px;}
.y8{bottom:1112.550000px;}
.y58{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y57{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y56{bottom:1197.540000px;}
.ha{height:30.480469px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.h7{height:56.084062px;}
.h6{height:65.837812px;}
.h8{height:349.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xb{left:113.616000px;}
.x5{left:117.395987px;}
.x7{left:132.695987px;}
.xc{left:134.994000px;}
.x3{left:142.235987px;}
.xa{left:161.129987px;}
.x6{left:265.529987px;}
.x9{left:336.494987px;}
.x4{left:378.434987px;}
.x2{left:448.274987px;}
.xd{left:475.484987px;}
.x8{left:562.424987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.549333pt;}
.lsf{letter-spacing:-0.531200pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.470400pt;}
.lsc{letter-spacing:-0.425067pt;}
.lse{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.240533pt;}
.lsd{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.020480pt;}
.ls6{letter-spacing:0.089600pt;}
.ls0{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls10{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.358400pt;}
.ws3{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.953600pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.008533pt;}
.wsa{word-spacing:-8.082133pt;}
.ws7{word-spacing:-7.040000pt;}
.ws6{word-spacing:-7.008000pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-3.886080pt;}
._1e{margin-left:-2.927360pt;}
._2{margin-left:-1.312000pt;}
._1{width:1.322667pt;}
._a{width:2.455040pt;}
._13{width:3.886080pt;}
._11{width:5.577600pt;}
._22{width:6.477867pt;}
._6{width:7.383680pt;}
._b{width:8.456747pt;}
._9{width:9.513813pt;}
._8{width:10.411520pt;}
._12{width:11.658240pt;}
._f{width:12.594773pt;}
._1c{width:14.013440pt;}
._1b{width:14.955520pt;}
._23{width:16.096000pt;}
._10{width:17.210880pt;}
._7{width:18.538880pt;}
._e{width:19.920000pt;}
._c{width:20.823040pt;}
._d{width:21.726080pt;}
._14{width:23.237120pt;}
._1f{width:25.082880pt;}
._21{width:26.967040pt;}
._17{width:29.440000pt;}
._18{width:30.329173pt;}
._24{width:32.148480pt;}
._25{width:35.874560pt;}
._15{width:37.388800pt;}
._16{width:38.524160pt;}
._20{width:40.060160pt;}
._19{width:41.685760pt;}
._0{width:66.666667pt;}
._2b{width:67.973547pt;}
._2a{width:68.933120pt;}
._28{width:77.544960pt;}
._26{width:98.624000pt;}
._27{width:99.595520pt;}
._29{width:125.473280pt;}
._3{width:161.296000pt;}
._4{width:172.542080pt;}
._5{width:180.313600pt;}
._2c{width:310.534400pt;}
._1a{width:989.233067pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y55{bottom:-20.026667pt;}
.y54{bottom:-1.600000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:15.040000pt;}
.y52{bottom:24.480000pt;}
.y51{bottom:33.920000pt;}
.y50{bottom:43.200000pt;}
.y7{bottom:50.240000pt;}
.y4f{bottom:58.880000pt;}
.y6{bottom:62.752000pt;}
.y8c{bottom:101.152000pt;}
.y4e{bottom:105.920000pt;}
.y3d{bottom:116.352000pt;}
.y4d{bottom:118.400000pt;}
.y8b{bottom:118.432000pt;}
.y4c{bottom:131.040000pt;}
.y3c{bottom:133.626667pt;}
.y8a{bottom:135.546667pt;}
.y4b{bottom:143.520000pt;}
.y3b{bottom:150.746667pt;}
.y89{bottom:152.826667pt;}
.y4a{bottom:156.000000pt;}
.y3a{bottom:167.866667pt;}
.y49{bottom:168.480000pt;}
.y88{bottom:169.946667pt;}
.y48{bottom:180.960000pt;}
.y39{bottom:185.146667pt;}
.y87{bottom:187.226667pt;}
.y47{bottom:193.440000pt;}
.y38{bottom:202.266667pt;}
.y86{bottom:204.346667pt;}
.y46{bottom:205.920000pt;}
.y45{bottom:219.520000pt;}
.y37{bottom:219.546667pt;}
.y85{bottom:221.626667pt;}
.y36{bottom:236.666667pt;}
.y44{bottom:237.000000pt;}
.y84{bottom:238.746667pt;}
.y43{bottom:249.480000pt;}
.y35{bottom:253.946667pt;}
.y83{bottom:255.866667pt;}
.y42{bottom:261.960000pt;}
.y34{bottom:271.066667pt;}
.y82{bottom:273.146667pt;}
.y41{bottom:274.440000pt;}
.y40{bottom:286.920000pt;}
.y33{bottom:288.346667pt;}
.y81{bottom:290.266667pt;}
.y3f{bottom:299.720000pt;}
.y32{bottom:305.506667pt;}
.y80{bottom:307.586667pt;}
.y31{bottom:322.786667pt;}
.y7f{bottom:324.706667pt;}
.y30{bottom:339.906667pt;}
.y7e{bottom:341.986667pt;}
.y2f{bottom:357.186667pt;}
.y7d{bottom:359.106667pt;}
.y2e{bottom:374.306667pt;}
.y7c{bottom:376.386667pt;}
.y2d{bottom:391.586667pt;}
.y7b{bottom:393.506667pt;}
.y2c{bottom:408.706667pt;}
.y7a{bottom:410.786667pt;}
.y2b{bottom:425.826667pt;}
.y79{bottom:427.906667pt;}
.y2a{bottom:443.106667pt;}
.y78{bottom:445.186667pt;}
.y29{bottom:460.066667pt;}
.y77{bottom:462.306667pt;}
.y28{bottom:475.746667pt;}
.y76{bottom:479.586667pt;}
.y27{bottom:491.266667pt;}
.y75{bottom:496.706667pt;}
.y26{bottom:506.946667pt;}
.y74{bottom:513.826667pt;}
.y25{bottom:522.626667pt;}
.y73{bottom:531.106667pt;}
.y24{bottom:538.173333pt;}
.y72{bottom:548.253333pt;}
.y3e{bottom:552.093333pt;}
.y23{bottom:553.853333pt;}
.y71{bottom:565.533333pt;}
.y22{bottom:569.533333pt;}
.y70{bottom:582.653333pt;}
.y21{bottom:585.213333pt;}
.y6f{bottom:599.933333pt;}
.y20{bottom:600.733333pt;}
.y1f{bottom:616.413333pt;}
.y6e{bottom:617.053333pt;}
.y1e{bottom:632.093333pt;}
.y6d{bottom:634.333333pt;}
.y1d{bottom:647.613333pt;}
.y6c{bottom:651.453333pt;}
.y1c{bottom:665.213333pt;}
.y6b{bottom:668.733333pt;}
.y1b{bottom:680.893333pt;}
.y6a{bottom:685.853333pt;}
.y1a{bottom:696.573333pt;}
.y69{bottom:703.133333pt;}
.y19{bottom:712.253333pt;}
.y68{bottom:720.253333pt;}
.y18{bottom:727.773333pt;}
.y67{bottom:737.533333pt;}
.y17{bottom:743.453333pt;}
.y66{bottom:754.653333pt;}
.y16{bottom:759.133333pt;}
.y65{bottom:771.773333pt;}
.y15{bottom:774.693333pt;}
.y64{bottom:789.093333pt;}
.y14{bottom:790.373333pt;}
.y13{bottom:806.053333pt;}
.y63{bottom:806.213333pt;}
.y12{bottom:821.573333pt;}
.y62{bottom:823.493333pt;}
.y11{bottom:837.253333pt;}
.y61{bottom:840.613333pt;}
.y10{bottom:852.933333pt;}
.y60{bottom:857.893333pt;}
.yf{bottom:868.613333pt;}
.y5f{bottom:875.013333pt;}
.y90{bottom:881.093333pt;}
.ye{bottom:883.813333pt;}
.y5e{bottom:892.293333pt;}
.y8f{bottom:896.773333pt;}
.yd{bottom:898.533333pt;}
.y5d{bottom:909.413333pt;}
.y8e{bottom:912.293333pt;}
.yc{bottom:915.493333pt;}
.y5c{bottom:926.693333pt;}
.y8d{bottom:927.973333pt;}
.yb{bottom:931.333333pt;}
.y5b{bottom:943.813333pt;}
.ya{bottom:949.093333pt;}
.y5a{bottom:961.093333pt;}
.y9{bottom:969.413333pt;}
.y59{bottom:978.213333pt;}
.y8{bottom:988.933333pt;}
.y58{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y57{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y56{bottom:1064.480000pt;}
.ha{height:27.093750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.h7{height:49.852500pt;}
.h6{height:58.522500pt;}
.h8{height:311.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xb{left:100.992000pt;}
.x5{left:104.351988pt;}
.x7{left:117.951988pt;}
.xc{left:119.994667pt;}
.x3{left:126.431988pt;}
.xa{left:143.226655pt;}
.x6{left:236.026655pt;}
.x9{left:299.106655pt;}
.x4{left:336.386655pt;}
.x2{left:398.466655pt;}
.xd{left:422.653322pt;}
.x8{left:499.933322pt;}
}




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