
    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_1eb1fed6fca5fe5e8e5be903.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dfd4f9183ed93043dc5f18af.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_880f702be892048174b38348.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_0e82c9a042c2f8616e4aa6e6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8a4d9cbc91d38d6677c6eaa1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')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;}
.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;}
.lsd{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.567600px;}
.ls10{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lsa{letter-spacing:16.865280px;}
.lsb{letter-spacing:19.440000px;}
.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;}
}
.ws1{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.992400px;}
.ws7{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.482000px;}
.ws5{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-5.094720px;}
._10{margin-left:-3.820800px;}
._2{margin-left:-2.395200px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._d{width:2.322000px;}
._a{width:3.834000px;}
._9{width:5.562000px;}
._3{width:6.600000px;}
._b{width:8.694000px;}
._e{width:10.638000px;}
._4{width:11.826000px;}
._f{width:13.181760px;}
._8{width:14.526000px;}
._5{width:15.552000px;}
._c{width:16.889040px;}
._1a{width:17.910000px;}
._6{width:19.062000px;}
._17{width:20.998080px;}
._16{width:22.057920px;}
._18{width:23.515200px;}
._1b{width:24.773760px;}
._1f{width:26.562240px;}
._7{width:27.972000px;}
._12{width:29.476800px;}
._13{width:30.934080px;}
._1c{width:32.325120px;}
._19{width:35.703360px;}
._14{width:36.763200px;}
._15{width:38.066880px;}
._1d{width:195.010560px;}
._1e{width:196.217040px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:2.880000px;}
.y37{bottom:3.060000px;}
.y2{bottom:6.480000px;}
.y45{bottom:9.360000px;}
.y9{bottom:11.700000px;}
.y46{bottom:18.360000px;}
.y36{bottom:18.585000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y35{bottom:34.065000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y34{bottom:49.545000px;}
.yb{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y33{bottom:65.205000px;}
.y32{bottom:80.685000px;}
.y31{bottom:96.165000px;}
.y57{bottom:110.340000px;}
.y30{bottom:111.645000px;}
.y8a{bottom:114.840000px;}
.y56{bottom:124.200000px;}
.y90{bottom:125.280000px;}
.y2f{bottom:127.305000px;}
.y55{bottom:128.700000px;}
.y91{bottom:132.480000px;}
.y54{bottom:138.096000px;}
.y89{bottom:142.596000px;}
.y2e{bottom:142.785000px;}
.y53{bottom:151.770000px;}
.y8f{bottom:154.290000px;}
.y52{bottom:156.270000px;}
.y2d{bottom:158.265000px;}
.y88{bottom:165.630000px;}
.y51{bottom:166.710000px;}
.y2c{bottom:173.745000px;}
.y8e{bottom:176.070000px;}
.y87{bottom:179.490000px;}
.y2b{bottom:189.405000px;}
.y86{bottom:193.170000px;}
.y85{bottom:197.670000px;}
.y8d{bottom:198.030000px;}
.y4f{bottom:200.190000px;}
.y2a{bottom:204.885000px;}
.y50{bottom:206.130000px;}
.y84{bottom:208.110000px;}
.y43{bottom:209.565000px;}
.y8c{bottom:219.810000px;}
.y29{bottom:220.365000px;}
.y4d{bottom:221.970000px;}
.y42{bottom:223.425000px;}
.y4e{bottom:227.910000px;}
.y28{bottom:235.845000px;}
.y41{bottom:237.285000px;}
.y83{bottom:241.590000px;}
.y4c{bottom:243.750000px;}
.y40{bottom:250.965000px;}
.y27{bottom:251.505000px;}
.y82{bottom:263.370000px;}
.y3f{bottom:264.855000px;}
.y4b{bottom:265.530000px;}
.y26{bottom:267.015000px;}
.y3e{bottom:278.715000px;}
.y25{bottom:282.495000px;}
.y81{bottom:285.150000px;}
.y4a{bottom:287.310000px;}
.y3d{bottom:292.395000px;}
.y24{bottom:297.975000px;}
.y3c{bottom:306.255000px;}
.y7f{bottom:307.110000px;}
.y49{bottom:309.270000px;}
.y80{bottom:313.050000px;}
.y23{bottom:313.455000px;}
.y3b{bottom:320.115000px;}
.y7e{bottom:328.890000px;}
.y22{bottom:329.115000px;}
.y48{bottom:331.050000px;}
.y3a{bottom:333.795000px;}
.y21{bottom:344.595000px;}
.y44{bottom:346.530000px;}
.y39{bottom:347.655000px;}
.y7d{bottom:350.670000px;}
.y20{bottom:360.075000px;}
.y38{bottom:361.515000px;}
.y7c{bottom:372.450000px;}
.y1f{bottom:375.555000px;}
.y16{bottom:377.490000px;}
.y1e{bottom:391.215000px;}
.y7b{bottom:394.455000px;}
.y1d{bottom:406.695000px;}
.y7a{bottom:416.235000px;}
.y1c{bottom:422.175000px;}
.y1b{bottom:437.655000px;}
.y79{bottom:438.015000px;}
.y1a{bottom:453.315000px;}
.y78{bottom:459.795000px;}
.y19{bottom:468.795000px;}
.y77{bottom:481.575000px;}
.y18{bottom:484.275000px;}
.y17{bottom:499.755000px;}
.y76{bottom:503.535000px;}
.y75{bottom:525.315000px;}
.y74{bottom:547.095000px;}
.y73{bottom:568.875000px;}
.y72{bottom:590.835000px;}
.y71{bottom:612.615000px;}
.y70{bottom:634.395000px;}
.y6e{bottom:656.205000px;}
.y6f{bottom:662.145000px;}
.y6d{bottom:677.985000px;}
.y6c{bottom:699.945000px;}
.y6a{bottom:721.725000px;}
.y6b{bottom:727.665000px;}
.y69{bottom:743.505000px;}
.y68{bottom:765.285000px;}
.y67{bottom:787.245000px;}
.y65{bottom:809.025000px;}
.y66{bottom:814.965000px;}
.y64{bottom:830.805000px;}
.y8b{bottom:836.745000px;}
.y63{bottom:852.585000px;}
.y62{bottom:874.365000px;}
.y15{bottom:895.830000px;}
.y61{bottom:896.370000px;}
.y14{bottom:915.630000px;}
.y60{bottom:918.150000px;}
.y13{bottom:935.430000px;}
.y5f{bottom:939.930000px;}
.y12{bottom:955.770000px;}
.y5e{bottom:961.710000px;}
.y11{bottom:975.750000px;}
.y5d{bottom:983.490000px;}
.y10{bottom:993.570000px;}
.y5c{bottom:1005.450000px;}
.yf{bottom:1015.350000px;}
.y5b{bottom:1027.230000px;}
.ye{bottom:1038.390000px;}
.y5a{bottom:1049.010000px;}
.yd{bottom:1064.130000px;}
.y59{bottom:1070.790000px;}
.yc{bottom:1090.050000px;}
.y58{bottom:1092.750000px;}
.ya{bottom:1111.830000px;}
.y1{bottom:1131.630000px;}
.h13{height:21.114844px;}
.h12{height:29.158594px;}
.h11{height:30.960000px;}
.h14{height:33.683203px;}
.hb{height:34.036523px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h8{height:39.147891px;}
.h10{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.hf{height:44.507812px;}
.h7{height:46.251562px;}
.h4{height:46.736719px;}
.h15{height:48.224531px;}
.h6{height:49.255313px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:77.436000px;}
.hc{height:512.355000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:228.135000px;}
.w3{width:427.965000px;}
.w6{width:467.175000px;}
.w1{width:893.250000px;}
.w8{width:893.339973px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x6{left:18.540000px;}
.x15{left:29.520000px;}
.x2{left:58.494000px;}
.x7{left:85.680000px;}
.x1{left:99.936000px;}
.x9{left:104.400000px;}
.xa{left:108.035987px;}
.x1b{left:111.815987px;}
.xc{left:116.135987px;}
.xd{left:128.375987px;}
.x8{left:132.300000px;}
.x16{left:150.509987px;}
.x17{left:155.369987px;}
.x22{left:161.129987px;}
.x3{left:171.930000px;}
.x20{left:176.789973px;}
.x21{left:182.009987px;}
.x1c{left:183.089973px;}
.x1d{left:188.309987px;}
.x1e{left:207.389973px;}
.x1f{left:212.609987px;}
.x12{left:243.389987px;}
.xf{left:267.374987px;}
.x1a{left:324.074987px;}
.x13{left:336.494987px;}
.x11{left:360.074987px;}
.xe{left:396.434987px;}
.x18{left:418.064973px;}
.x19{left:423.284987px;}
.x10{left:445.424987px;}
.xb{left:500.504987px;}
.x14{left:575.205000px;}
.x25{left:576.464973px;}
.x26{left:581.684987px;}
.x5{left:599.910000px;}
.x23{left:775.979973px;}
.x24{left:781.199987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls10{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsa{letter-spacing:14.991360pt;}
.lsb{letter-spacing:17.280000pt;}
.ws1{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.215467pt;}
.ws7{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.984000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-4.528640pt;}
._10{margin-left:-3.396267pt;}
._2{margin-left:-2.129067pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._d{width:2.064000pt;}
._a{width:3.408000pt;}
._9{width:4.944000pt;}
._3{width:5.866667pt;}
._b{width:7.728000pt;}
._e{width:9.456000pt;}
._4{width:10.512000pt;}
._f{width:11.717120pt;}
._8{width:12.912000pt;}
._5{width:13.824000pt;}
._c{width:15.012480pt;}
._1a{width:15.920000pt;}
._6{width:16.944000pt;}
._17{width:18.664960pt;}
._16{width:19.607040pt;}
._18{width:20.902400pt;}
._1b{width:22.021120pt;}
._1f{width:23.610880pt;}
._7{width:24.864000pt;}
._12{width:26.201600pt;}
._13{width:27.496960pt;}
._1c{width:28.733440pt;}
._19{width:31.736320pt;}
._14{width:32.678400pt;}
._15{width:33.837227pt;}
._1d{width:173.342720pt;}
._1e{width:174.415147pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.560000pt;}
.y37{bottom:2.720000pt;}
.y2{bottom:5.760000pt;}
.y45{bottom:8.320000pt;}
.y9{bottom:10.400000pt;}
.y46{bottom:16.320000pt;}
.y36{bottom:16.520000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y35{bottom:30.280000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y34{bottom:44.040000pt;}
.yb{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y33{bottom:57.960000pt;}
.y32{bottom:71.720000pt;}
.y31{bottom:85.480000pt;}
.y57{bottom:98.080000pt;}
.y30{bottom:99.240000pt;}
.y8a{bottom:102.080000pt;}
.y56{bottom:110.400000pt;}
.y90{bottom:111.360000pt;}
.y2f{bottom:113.160000pt;}
.y55{bottom:114.400000pt;}
.y91{bottom:117.760000pt;}
.y54{bottom:122.752000pt;}
.y89{bottom:126.752000pt;}
.y2e{bottom:126.920000pt;}
.y53{bottom:134.906667pt;}
.y8f{bottom:137.146667pt;}
.y52{bottom:138.906667pt;}
.y2d{bottom:140.680000pt;}
.y88{bottom:147.226667pt;}
.y51{bottom:148.186667pt;}
.y2c{bottom:154.440000pt;}
.y8e{bottom:156.506667pt;}
.y87{bottom:159.546667pt;}
.y2b{bottom:168.360000pt;}
.y86{bottom:171.706667pt;}
.y85{bottom:175.706667pt;}
.y8d{bottom:176.026667pt;}
.y4f{bottom:177.946667pt;}
.y2a{bottom:182.120000pt;}
.y50{bottom:183.226667pt;}
.y84{bottom:184.986667pt;}
.y43{bottom:186.280000pt;}
.y8c{bottom:195.386667pt;}
.y29{bottom:195.880000pt;}
.y4d{bottom:197.306667pt;}
.y42{bottom:198.600000pt;}
.y4e{bottom:202.586667pt;}
.y28{bottom:209.640000pt;}
.y41{bottom:210.920000pt;}
.y83{bottom:214.746667pt;}
.y4c{bottom:216.666667pt;}
.y40{bottom:223.080000pt;}
.y27{bottom:223.560000pt;}
.y82{bottom:234.106667pt;}
.y3f{bottom:235.426667pt;}
.y4b{bottom:236.026667pt;}
.y26{bottom:237.346667pt;}
.y3e{bottom:247.746667pt;}
.y25{bottom:251.106667pt;}
.y81{bottom:253.466667pt;}
.y4a{bottom:255.386667pt;}
.y3d{bottom:259.906667pt;}
.y24{bottom:264.866667pt;}
.y3c{bottom:272.226667pt;}
.y7f{bottom:272.986667pt;}
.y49{bottom:274.906667pt;}
.y80{bottom:278.266667pt;}
.y23{bottom:278.626667pt;}
.y3b{bottom:284.546667pt;}
.y7e{bottom:292.346667pt;}
.y22{bottom:292.546667pt;}
.y48{bottom:294.266667pt;}
.y3a{bottom:296.706667pt;}
.y21{bottom:306.306667pt;}
.y44{bottom:308.026667pt;}
.y39{bottom:309.026667pt;}
.y7d{bottom:311.706667pt;}
.y20{bottom:320.066667pt;}
.y38{bottom:321.346667pt;}
.y7c{bottom:331.066667pt;}
.y1f{bottom:333.826667pt;}
.y16{bottom:335.546667pt;}
.y1e{bottom:347.746667pt;}
.y7b{bottom:350.626667pt;}
.y1d{bottom:361.506667pt;}
.y7a{bottom:369.986667pt;}
.y1c{bottom:375.266667pt;}
.y1b{bottom:389.026667pt;}
.y79{bottom:389.346667pt;}
.y1a{bottom:402.946667pt;}
.y78{bottom:408.706667pt;}
.y19{bottom:416.706667pt;}
.y77{bottom:428.066667pt;}
.y18{bottom:430.466667pt;}
.y17{bottom:444.226667pt;}
.y76{bottom:447.586667pt;}
.y75{bottom:466.946667pt;}
.y74{bottom:486.306667pt;}
.y73{bottom:505.666667pt;}
.y72{bottom:525.186667pt;}
.y71{bottom:544.546667pt;}
.y70{bottom:563.906667pt;}
.y6e{bottom:583.293333pt;}
.y6f{bottom:588.573333pt;}
.y6d{bottom:602.653333pt;}
.y6c{bottom:622.173333pt;}
.y6a{bottom:641.533333pt;}
.y6b{bottom:646.813333pt;}
.y69{bottom:660.893333pt;}
.y68{bottom:680.253333pt;}
.y67{bottom:699.773333pt;}
.y65{bottom:719.133333pt;}
.y66{bottom:724.413333pt;}
.y64{bottom:738.493333pt;}
.y8b{bottom:743.773333pt;}
.y63{bottom:757.853333pt;}
.y62{bottom:777.213333pt;}
.y15{bottom:796.293333pt;}
.y61{bottom:796.773333pt;}
.y14{bottom:813.893333pt;}
.y60{bottom:816.133333pt;}
.y13{bottom:831.493333pt;}
.y5f{bottom:835.493333pt;}
.y12{bottom:849.573333pt;}
.y5e{bottom:854.853333pt;}
.y11{bottom:867.333333pt;}
.y5d{bottom:874.213333pt;}
.y10{bottom:883.173333pt;}
.y5c{bottom:893.733333pt;}
.yf{bottom:902.533333pt;}
.y5b{bottom:913.093333pt;}
.ye{bottom:923.013333pt;}
.y5a{bottom:932.453333pt;}
.yd{bottom:945.893333pt;}
.y59{bottom:951.813333pt;}
.yc{bottom:968.933333pt;}
.y58{bottom:971.333333pt;}
.ya{bottom:988.293333pt;}
.y1{bottom:1005.893333pt;}
.h13{height:18.768750pt;}
.h12{height:25.918750pt;}
.h11{height:27.520000pt;}
.h14{height:29.940625pt;}
.hb{height:30.254687pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h8{height:34.798125pt;}
.h10{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.hf{height:39.562500pt;}
.h7{height:41.112500pt;}
.h4{height:41.543750pt;}
.h15{height:42.866250pt;}
.h6{height:43.782500pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:68.832000pt;}
.hc{height:455.426667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:202.786667pt;}
.w3{width:380.413333pt;}
.w6{width:415.266667pt;}
.w1{width:794.000000pt;}
.w8{width:794.079976pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x6{left:16.480000pt;}
.x15{left:26.240000pt;}
.x2{left:51.994667pt;}
.x7{left:76.160000pt;}
.x1{left:88.832000pt;}
.x9{left:92.800000pt;}
.xa{left:96.031988pt;}
.x1b{left:99.391988pt;}
.xc{left:103.231988pt;}
.xd{left:114.111988pt;}
.x8{left:117.600000pt;}
.x16{left:133.786655pt;}
.x17{left:138.106655pt;}
.x22{left:143.226655pt;}
.x3{left:152.826667pt;}
.x20{left:157.146643pt;}
.x21{left:161.786655pt;}
.x1c{left:162.746643pt;}
.x1d{left:167.386655pt;}
.x1e{left:184.346643pt;}
.x1f{left:188.986655pt;}
.x12{left:216.346655pt;}
.xf{left:237.666655pt;}
.x1a{left:288.066655pt;}
.x13{left:299.106655pt;}
.x11{left:320.066655pt;}
.xe{left:352.386655pt;}
.x18{left:371.613310pt;}
.x19{left:376.253321pt;}
.x10{left:395.933321pt;}
.xb{left:444.893321pt;}
.x14{left:511.293333pt;}
.x25{left:512.413310pt;}
.x26{left:517.053321pt;}
.x5{left:533.253333pt;}
.x23{left:689.759976pt;}
.x24{left:694.399988pt;}
}




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