
    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_674e6d9add17f5fc088b9215.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0ebb282e6f4822cad6d68e64.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d8d456ace27d455860bdb253.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_efa4389efa12f5873b5d0189.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1c225abc3188c0a5b4da5b9f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_827892307bd032ecef0a8086.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_4973b2535ff18f178c8224b8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a3c6a1e3be6d040f657fd813.woff')format("woff");}.ff8{font-family:ff8;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1abc7a17885242f847522992.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fff4ec5580829f14e71e2964.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.288000px;}
.ls6{letter-spacing:1.152000px;}
.ls9{letter-spacing:17.424000px;}
.ls8{letter-spacing:53.424000px;}
.ls3{letter-spacing:61.090560px;}
.ls2{letter-spacing:66.850560px;}
.ls4{letter-spacing:144.586560px;}
.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:-72.000000px;}
.ws2{word-spacing:-60.480000px;}
.ws5{word-spacing:-19.152000px;}
.ws8{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.692480px;}
.ws6{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-4.818240px;}
._14{margin-left:-3.510720px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.410560px;}
._a{width:4.320000px;}
._b{width:5.650560px;}
._11{width:7.162560px;}
._27{width:8.222400px;}
._12{width:9.236160px;}
._15{width:10.658880px;}
._13{width:11.750400px;}
._d{width:13.320000px;}
._16{width:14.333760px;}
._c{width:15.840000px;}
._10{width:16.870560px;}
._17{width:19.621440px;}
._9{width:21.404160px;}
._7{width:22.795200px;}
._6{width:24.154560px;}
._8{width:25.309440px;}
._5{width:26.534400px;}
._4{width:28.270560px;}
._18{width:29.309760px;}
._e{width:30.600000px;}
._f{width:31.677120px;}
._24{width:33.122880px;}
._28{width:34.922880px;}
._26{width:36.702720px;}
._1b{width:38.020320px;}
._1a{width:39.225120px;}
._1c{width:44.649120px;}
._1d{width:45.951840px;}
._1f{width:49.046400px;}
._20{width:50.261760px;}
._23{width:52.997760px;}
._25{width:96.353280px;}
._22{width:167.976000px;}
._21{width:169.755840px;}
._1e{width:198.812160px;}
.fc5{color:transparent;}
.fc4{color:rgb(15,17,21);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y3d{bottom:-16.560000px;}
.y48{bottom:-0.360075px;}
.y0{bottom:0.000000px;}
.y45{bottom:0.719970px;}
.y40{bottom:4.716000px;}
.y4c{bottom:7.560000px;}
.y55{bottom:7.920000px;}
.y57{bottom:8.280000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y42{bottom:12.960000px;}
.y4d{bottom:19.440000px;}
.y47{bottom:21.240000px;}
.y44{bottom:22.320000px;}
.y3f{bottom:23.076000px;}
.y53{bottom:31.320000px;}
.y5b{bottom:31.350000px;}
.y4b{bottom:31.680000px;}
.y56{bottom:32.040000px;}
.y41{bottom:34.560000px;}
.y46{bottom:42.840000px;}
.y51{bottom:43.200000px;}
.y43{bottom:43.920000px;}
.y52{bottom:55.080000px;}
.y5c{bottom:55.110000px;}
.y59{bottom:55.440000px;}
.y62{bottom:55.485000px;}
.y8{bottom:57.240000px;}
.y5f{bottom:67.725000px;}
.y5{bottom:73.476000px;}
.y61{bottom:79.245000px;}
.y3e{bottom:83.160000px;}
.y34{bottom:107.676000px;}
.y6c{bottom:122.796000px;}
.y33{bottom:131.436000px;}
.y6b{bottom:146.556000px;}
.y32{bottom:155.190000px;}
.y6a{bottom:170.310000px;}
.y31{bottom:179.310000px;}
.y69{bottom:194.115000px;}
.y4f{bottom:200.220000px;}
.y30{bottom:203.115000px;}
.y68{bottom:217.875000px;}
.y2f{bottom:226.875000px;}
.y67{bottom:241.635000px;}
.y2e{bottom:250.635000px;}
.y66{bottom:265.395000px;}
.y2d{bottom:274.395000px;}
.y65{bottom:289.515000px;}
.y2c{bottom:298.155000px;}
.y64{bottom:313.275000px;}
.y2b{bottom:321.945000px;}
.y63{bottom:330.225000px;}
.y2a{bottom:345.705000px;}
.y29{bottom:369.825000px;}
.y28{bottom:393.585000px;}
.y5e{bottom:402.225000px;}
.y27{bottom:417.345000px;}
.y26{bottom:441.105000px;}
.y25{bottom:464.910000px;}
.y24{bottom:488.670000px;}
.y60{bottom:498.390000px;}
.y23{bottom:512.430000px;}
.y22{bottom:536.190000px;}
.y4e{bottom:546.630000px;}
.y21{bottom:559.950000px;}
.y20{bottom:584.100000px;}
.y1f{bottom:607.860000px;}
.y5d{bottom:618.660000px;}
.y1e{bottom:631.620000px;}
.y1d{bottom:655.380000px;}
.y1c{bottom:678.780000px;}
.y3c{bottom:679.140000px;}
.y5a{bottom:691.020000px;}
.y1b{bottom:702.930000px;}
.y1a{bottom:726.690000px;}
.y19{bottom:750.450000px;}
.y58{bottom:763.050000px;}
.y18{bottom:774.570000px;}
.y17{bottom:798.330000px;}
.y16{bottom:822.090000px;}
.y54{bottom:835.455000px;}
.y15{bottom:845.895000px;}
.y14{bottom:869.655000px;}
.y50{bottom:884.415000px;}
.y13{bottom:893.415000px;}
.y12{bottom:917.175000px;}
.y11{bottom:940.935000px;}
.y4a{bottom:956.445000px;}
.y10{bottom:965.085000px;}
.yf{bottom:988.485000px;}
.y3b{bottom:988.845000px;}
.y49{bottom:1012.245000px;}
.ye{bottom:1012.605000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y6e{bottom:1131.090000px;}
.y36{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y6d{bottom:1154.850000px;}
.y35{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.hc{height:37.440000px;}
.h19{height:47.520000px;}
.h12{height:47.880000px;}
.h15{height:48.240000px;}
.h7{height:50.229844px;}
.he{height:52.329375px;}
.h4{height:55.147500px;}
.hf{height:59.357813px;}
.h11{height:59.760000px;}
.h10{height:60.480000px;}
.hb{height:60.952487px;}
.hd{height:60.952500px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h1b{height:71.280000px;}
.h14{height:71.316000px;}
.h17{height:71.640000px;}
.h16{height:71.676000px;}
.h2{height:72.562500px;}
.h1c{height:74.004654px;}
.h1a{height:95.436000px;}
.h8{height:97.233750px;}
.h18{height:143.676000px;}
.ha{height:144.000000px;}
.h13{height:409.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:37.800000px;}
.w4{width:104.076000px;}
.w9{width:132.912000px;}
.wa{width:134.676000px;}
.w8{width:196.560000px;}
.w7{width:196.920000px;}
.w3{width:298.905000px;}
.wb{width:355.470000px;}
.w6{width:559.080000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x23{left:7.956000px;}
.x14{left:18.072000px;}
.x20{left:19.950000px;}
.x19{left:26.130000px;}
.x1b{left:28.290000px;}
.x8{left:38.550000px;}
.x1e{left:53.100000px;}
.x5{left:95.796000px;}
.x11{left:117.035987px;}
.x13{left:127.800000px;}
.xb{left:130.715987px;}
.x22{left:134.316000px;}
.x26{left:138.275987px;}
.xd{left:149.111987px;}
.xa{left:152.714987px;}
.x3{left:191.594987px;}
.x12{left:203.114987px;}
.x15{left:213.840000px;}
.x16{left:240.300000px;}
.x17{left:256.064987px;}
.x24{left:267.945000px;}
.xf{left:275.504987px;}
.x6{left:290.634000px;}
.x21{left:315.824987px;}
.x10{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x1d{left:373.680000px;}
.xc{left:386.789987px;}
.xe{left:390.749987px;}
.x7{left:394.710000px;}
.x25{left:403.350000px;}
.x1f{left:410.549987px;}
.x9{left:498.780000px;}
.x18{left:579.600000px;}
.x1a{left:598.529987px;}
.x1c{left:747.644987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.256000pt;}
.ls6{letter-spacing:1.024000pt;}
.ls9{letter-spacing:15.488000pt;}
.ls8{letter-spacing:47.488000pt;}
.ls3{letter-spacing:54.302720pt;}
.ls2{letter-spacing:59.422720pt;}
.ls4{letter-spacing:128.521387pt;}
.ws3{word-spacing:-64.000000pt;}
.ws2{word-spacing:-53.760000pt;}
.ws5{word-spacing:-17.024000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.837760pt;}
.ws6{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-4.282880pt;}
._14{margin-left:-3.120640pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.142720pt;}
._a{width:3.840000pt;}
._b{width:5.022720pt;}
._11{width:6.366720pt;}
._27{width:7.308800pt;}
._12{width:8.209920pt;}
._15{width:9.474560pt;}
._13{width:10.444800pt;}
._d{width:11.840000pt;}
._16{width:12.741120pt;}
._c{width:14.080000pt;}
._10{width:14.996053pt;}
._17{width:17.441280pt;}
._9{width:19.025920pt;}
._7{width:20.262400pt;}
._6{width:21.470720pt;}
._8{width:22.497280pt;}
._5{width:23.586133pt;}
._4{width:25.129387pt;}
._18{width:26.053120pt;}
._e{width:27.200000pt;}
._f{width:28.157440pt;}
._24{width:29.442560pt;}
._28{width:31.042560pt;}
._26{width:32.624640pt;}
._1b{width:33.795840pt;}
._1a{width:34.866773pt;}
._1c{width:39.688107pt;}
._1d{width:40.846080pt;}
._1f{width:43.596800pt;}
._20{width:44.677120pt;}
._23{width:47.109120pt;}
._25{width:85.647360pt;}
._22{width:149.312000pt;}
._21{width:150.894080pt;}
._1e{width:176.721920pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y3d{bottom:-14.720000pt;}
.y48{bottom:-0.320067pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:0.639973pt;}
.y40{bottom:4.192000pt;}
.y4c{bottom:6.720000pt;}
.y55{bottom:7.040000pt;}
.y57{bottom:7.360000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y42{bottom:11.520000pt;}
.y4d{bottom:17.280000pt;}
.y47{bottom:18.880000pt;}
.y44{bottom:19.840000pt;}
.y3f{bottom:20.512000pt;}
.y53{bottom:27.840000pt;}
.y5b{bottom:27.866667pt;}
.y4b{bottom:28.160000pt;}
.y56{bottom:28.480000pt;}
.y41{bottom:30.720000pt;}
.y46{bottom:38.080000pt;}
.y51{bottom:38.400000pt;}
.y43{bottom:39.040000pt;}
.y52{bottom:48.960000pt;}
.y5c{bottom:48.986667pt;}
.y59{bottom:49.280000pt;}
.y62{bottom:49.320000pt;}
.y8{bottom:50.880000pt;}
.y5f{bottom:60.200000pt;}
.y5{bottom:65.312000pt;}
.y61{bottom:70.440000pt;}
.y3e{bottom:73.920000pt;}
.y34{bottom:95.712000pt;}
.y6c{bottom:109.152000pt;}
.y33{bottom:116.832000pt;}
.y6b{bottom:130.272000pt;}
.y32{bottom:137.946667pt;}
.y6a{bottom:151.386667pt;}
.y31{bottom:159.386667pt;}
.y69{bottom:172.546667pt;}
.y4f{bottom:177.973333pt;}
.y30{bottom:180.546667pt;}
.y68{bottom:193.666667pt;}
.y2f{bottom:201.666667pt;}
.y67{bottom:214.786667pt;}
.y2e{bottom:222.786667pt;}
.y66{bottom:235.906667pt;}
.y2d{bottom:243.906667pt;}
.y65{bottom:257.346667pt;}
.y2c{bottom:265.026667pt;}
.y64{bottom:278.466667pt;}
.y2b{bottom:286.173333pt;}
.y63{bottom:293.533333pt;}
.y2a{bottom:307.293333pt;}
.y29{bottom:328.733333pt;}
.y28{bottom:349.853333pt;}
.y5e{bottom:357.533333pt;}
.y27{bottom:370.973333pt;}
.y26{bottom:392.093333pt;}
.y25{bottom:413.253333pt;}
.y24{bottom:434.373333pt;}
.y60{bottom:443.013333pt;}
.y23{bottom:455.493333pt;}
.y22{bottom:476.613333pt;}
.y4e{bottom:485.893333pt;}
.y21{bottom:497.733333pt;}
.y20{bottom:519.200000pt;}
.y1f{bottom:540.320000pt;}
.y5d{bottom:549.920000pt;}
.y1e{bottom:561.440000pt;}
.y1d{bottom:582.560000pt;}
.y1c{bottom:603.360000pt;}
.y3c{bottom:603.680000pt;}
.y5a{bottom:614.240000pt;}
.y1b{bottom:624.826667pt;}
.y1a{bottom:645.946667pt;}
.y19{bottom:667.066667pt;}
.y58{bottom:678.266667pt;}
.y18{bottom:688.506667pt;}
.y17{bottom:709.626667pt;}
.y16{bottom:730.746667pt;}
.y54{bottom:742.626667pt;}
.y15{bottom:751.906667pt;}
.y14{bottom:773.026667pt;}
.y50{bottom:786.146667pt;}
.y13{bottom:794.146667pt;}
.y12{bottom:815.266667pt;}
.y11{bottom:836.386667pt;}
.y4a{bottom:850.173333pt;}
.y10{bottom:857.853333pt;}
.yf{bottom:878.653333pt;}
.y3b{bottom:878.973333pt;}
.y49{bottom:899.773333pt;}
.ye{bottom:900.093333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y6e{bottom:1005.413333pt;}
.y36{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y6d{bottom:1026.533333pt;}
.y35{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.hc{height:33.280000pt;}
.h19{height:42.240000pt;}
.h12{height:42.560000pt;}
.h15{height:42.880000pt;}
.h7{height:44.648750pt;}
.he{height:46.515000pt;}
.h4{height:49.020000pt;}
.hf{height:52.762500pt;}
.h11{height:53.120000pt;}
.h10{height:53.760000pt;}
.hb{height:54.179988pt;}
.hd{height:54.180000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h1b{height:63.360000pt;}
.h14{height:63.392000pt;}
.h17{height:63.680000pt;}
.h16{height:63.712000pt;}
.h2{height:64.500000pt;}
.h1c{height:65.781915pt;}
.h1a{height:84.832000pt;}
.h8{height:86.430000pt;}
.h18{height:127.712000pt;}
.ha{height:128.000000pt;}
.h13{height:363.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:33.600000pt;}
.w4{width:92.512000pt;}
.w9{width:118.144000pt;}
.wa{width:119.712000pt;}
.w8{width:174.720000pt;}
.w7{width:175.040000pt;}
.w3{width:265.693333pt;}
.wb{width:315.973333pt;}
.w6{width:496.960000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x23{left:7.072000pt;}
.x14{left:16.064000pt;}
.x20{left:17.733333pt;}
.x19{left:23.226667pt;}
.x1b{left:25.146667pt;}
.x8{left:34.266667pt;}
.x1e{left:47.200000pt;}
.x5{left:85.152000pt;}
.x11{left:104.031988pt;}
.x13{left:113.600000pt;}
.xb{left:116.191988pt;}
.x22{left:119.392000pt;}
.x26{left:122.911988pt;}
.xd{left:132.543988pt;}
.xa{left:135.746655pt;}
.x3{left:170.306655pt;}
.x12{left:180.546655pt;}
.x15{left:190.080000pt;}
.x16{left:213.600000pt;}
.x17{left:227.613322pt;}
.x24{left:238.173333pt;}
.xf{left:244.893322pt;}
.x6{left:258.341333pt;}
.x21{left:280.733322pt;}
.x10{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x1d{left:332.160000pt;}
.xc{left:343.813322pt;}
.xe{left:347.333322pt;}
.x7{left:350.853333pt;}
.x25{left:358.533333pt;}
.x1f{left:364.933322pt;}
.x9{left:443.360000pt;}
.x18{left:515.200000pt;}
.x1a{left:532.026655pt;}
.x1c{left:664.573322pt;}
.x1{left:709.053322pt;}
}




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