
    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_9045419a39aba1f7bc36bbac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_e162b8d5c45093fd96482d26.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_c517a493fce538de0ec96f2d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.020020;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_d6bddb300e09c29cce40b065.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0c1c3669f31e352afca3369d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.011719;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_e6acfdabe4f2a0c057c0ac3e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.100586;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.290000px;}
.ls7{letter-spacing:-1.206000px;}
.ls5{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.140000px;}
.lsf{letter-spacing:-1.128000px;}
.ls8{letter-spacing:-1.056000px;}
.ls10{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.502800px;}
.ls1{letter-spacing:-0.476400px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:1.893000px;}
.ls4{letter-spacing:2.328000px;}
.ls2{letter-spacing:49.770000px;}
.lsd{letter-spacing:49.822500px;}
.lsb{letter-spacing:52.920000px;}
.lsa{letter-spacing:52.972500px;}
.ls3{letter-spacing:57.727500px;}
.lse{letter-spacing:62.452500px;}
.ls12{letter-spacing:183.172500px;}
.ls13{letter-spacing:183.225000px;}
.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;}
}
.ws7{word-spacing:-157.650000px;}
.wsd{word-spacing:-91.740000px;}
.ws11{word-spacing:-91.657500px;}
.wsf{word-spacing:-86.790000px;}
.ws8{word-spacing:-86.707500px;}
.wsa{word-spacing:-85.651500px;}
.wsb{word-spacing:-85.650000px;}
.ws9{word-spacing:-85.501500px;}
.wse{word-spacing:-85.500000px;}
.ws10{word-spacing:-69.566850px;}
.ws19{word-spacing:-59.482500px;}
.ws1b{word-spacing:-53.950500px;}
.ws3{word-spacing:-51.299400px;}
.ws16{word-spacing:-37.207500px;}
.ws13{word-spacing:-37.125000px;}
.ws18{word-spacing:-36.153000px;}
.ws17{word-spacing:-36.151500px;}
.ws15{word-spacing:-36.001500px;}
.ws14{word-spacing:-35.997000px;}
.ws1a{word-spacing:-33.829950px;}
.ws4{word-spacing:-31.590450px;}
.wsc{word-spacing:-29.292900px;}
.ws1{word-spacing:-29.262450px;}
.ws0{word-spacing:-28.786050px;}
.ws12{word-spacing:-26.521950px;}
.ws5{word-spacing:-21.954450px;}
.ws6{word-spacing:-20.754450px;}
.ws1c{word-spacing:-19.213950px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-27.766200px;}
._d{margin-left:-15.175350px;}
._16{margin-left:-13.606200px;}
._c{margin-left:-12.343200px;}
._b{margin-left:-10.425600px;}
._e{margin-left:-8.584800px;}
._f{margin-left:-7.569600px;}
._7{margin-left:-6.200250px;}
._8{margin-left:-5.078250px;}
._6{margin-left:-4.036200px;}
._2{margin-left:-2.163600px;}
._3{margin-left:-1.081800px;}
._1{width:1.081800px;}
._4{width:2.524200px;}
._5{width:3.532350px;}
._a{width:5.377350px;}
._13{width:6.583950px;}
._10{width:8.843250px;}
._11{width:15.915300px;}
._9{width:39.398250px;}
._12{width:50.307450px;}
._14{width:70.875000px;}
._15{width:215.055000px;}
.fc2{color:rgb(118,118,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:67.500000px;}
.fsf{font-size:67.650000px;}
.fsa{font-size:85.500000px;}
.fsb{font-size:85.650000px;}
.fs12{font-size:94.500000px;}
.fs11{font-size:94.650000px;}
.fs5{font-size:108.150000px;}
.fsd{font-size:130.650000px;}
.fse{font-size:130.800000px;}
.fs1{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fs6{font-size:157.650000px;}
.fs7{font-size:157.800000px;}
.fs4{font-size:166.650000px;}
.fs3{font-size:166.800000px;}
.fs2{font-size:265.800000px;}
.fsc{font-size:265.950000px;}
.fs8{font-size:360.450000px;}
.fs0{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y83{bottom:22.762500px;}
.y52{bottom:33.562500px;}
.y2e{bottom:35.287500px;}
.y39{bottom:35.962500px;}
.y74{bottom:43.162500px;}
.y82{bottom:50.925000px;}
.y51{bottom:58.350000px;}
.y2d{bottom:61.200000px;}
.y73{bottom:75.825000px;}
.y81{bottom:80.212500px;}
.y50{bottom:84.262500px;}
.y62{bottom:96.562500px;}
.y44{bottom:102.187500px;}
.y1b{bottom:104.250000px;}
.y16{bottom:105.345000px;}
.y18{bottom:105.375000px;}
.y80{bottom:109.500000px;}
.y38{bottom:110.062500px;}
.y14{bottom:112.312500px;}
.y26{bottom:117.975000px;}
.y61{bottom:130.350000px;}
.y7f{bottom:137.662500px;}
.yd{bottom:139.380000px;}
.yb{bottom:139.470000px;}
.y9{bottom:139.545000px;}
.y7{bottom:139.620000px;}
.y72{bottom:141.187500px;}
.y43{bottom:142.725000px;}
.y37{bottom:148.387500px;}
.y4f{bottom:152.895000px;}
.y25{bottom:155.130000px;}
.y13{bottom:158.505000px;}
.y7e{bottom:166.950000px;}
.y60{bottom:176.550000px;}
.y42{bottom:182.175000px;}
.y36{bottom:185.550000px;}
.y4e{bottom:193.425000px;}
.y7d{bottom:195.120000px;}
.y5f{bottom:204.705000px;}
.y12{bottom:206.970000px;}
.yc{bottom:217.125000px;}
.y4{bottom:218.580000px;}
.y35{bottom:222.720000px;}
.y7c{bottom:224.400000px;}
.y1c{bottom:226.125000px;}
.y5e{bottom:231.750000px;}
.y29{bottom:232.500000px;}
.y4d{bottom:234.000000px;}
.y41{bottom:238.500000px;}
.y7b{bottom:253.725000px;}
.y24{bottom:259.905000px;}
.y11{bottom:266.655000px;}
.y71{bottom:267.795000px;}
.y1a{bottom:270.000000px;}
.ya{bottom:271.125000px;}
.y34{bottom:275.655000px;}
.y40{bottom:277.920000px;}
.y7a{bottom:281.880000px;}
.y70{bottom:286.950000px;}
.y4c{bottom:289.200000px;}
.y5d{bottom:294.825000px;}
.y23{bottom:298.200000px;}
.y28{bottom:300.975000px;}
.y6f{bottom:307.200000px;}
.y79{bottom:311.175000px;}
.y76{bottom:311.745000px;}
.y17{bottom:312.750000px;}
.y33{bottom:312.855000px;}
.y3{bottom:317.730000px;}
.y8{bottom:325.125000px;}
.y6e{bottom:326.355000px;}
.y4b{bottom:329.730000px;}
.y5c{bottom:331.995000px;}
.y3f{bottom:334.245000px;}
.y22{bottom:335.400000px;}
.y78{bottom:339.345000px;}
.y6b{bottom:346.650000px;}
.y2{bottom:352.650000px;}
.y15{bottom:356.625000px;}
.y75{bottom:356.775000px;}
.y5b{bottom:364.695000px;}
.y32{bottom:365.820000px;}
.y6a{bottom:366.945000px;}
.y21{bottom:372.570000px;}
.y3e{bottom:373.695000px;}
.y6{bottom:379.125000px;}
.y4a{bottom:384.945000px;}
.y69{bottom:386.070000px;}
.y5a{bottom:397.350000px;}
.y27{bottom:397.875000px;}
.y2c{bottom:402.975000px;}
.y68{bottom:406.350000px;}
.y20{bottom:410.850000px;}
.y19{bottom:418.125000px;}
.y1{bottom:425.025000px;}
.y49{bottom:425.505000px;}
.y3d{bottom:430.005000px;}
.y31{bottom:440.130000px;}
.y67{bottom:445.800000px;}
.y2b{bottom:448.050000px;}
.y59{bottom:462.675000px;}
.y66{bottom:466.050000px;}
.y30{bottom:478.470000px;}
.y48{bottom:480.720000px;}
.y3c{bottom:485.220000px;}
.y77{bottom:493.080000px;}
.y6d{bottom:505.500000px;}
.y10{bottom:508.875000px;}
.y58{bottom:510.000000px;}
.y1f{bottom:515.625000px;}
.y47{bottom:521.250000px;}
.y65{bottom:524.625000px;}
.y3b{bottom:525.780000px;}
.y2f{bottom:530.280000px;}
.y57{bottom:543.780000px;}
.y64{bottom:544.920000px;}
.y2a{bottom:553.950000px;}
.y46{bottom:561.825000px;}
.y63{bottom:565.200000px;}
.y3a{bottom:566.325000px;}
.y1e{bottom:567.450000px;}
.yf{bottom:568.575000px;}
.y56{bottom:576.450000px;}
.y6c{bottom:584.370000px;}
.ye{bottom:614.775000px;}
.y45{bottom:617.025000px;}
.y1d{bottom:620.400000px;}
.y55{bottom:623.775000px;}
.y54{bottom:678.945000px;}
.y5{bottom:714.195000px;}
.y53{bottom:749.880000px;}
.h1a{height:58.765869px;}
.h19{height:58.896460px;}
.h13{height:74.102783px;}
.h15{height:74.232788px;}
.h1e{height:81.903076px;}
.h1c{height:82.033081px;}
.h1d{height:82.402808px;}
.h9{height:91.409985px;}
.ha{height:93.733521px;}
.h1b{height:94.155981px;}
.h17{height:113.234253px;}
.h18{height:113.364258px;}
.h5{height:121.837720px;}
.h2{height:124.934692px;}
.h11{height:125.064697px;}
.hc{height:136.635132px;}
.he{height:136.765137px;}
.hd{height:137.250952px;}
.hf{height:137.381543px;}
.h7{height:144.435425px;}
.h6{height:144.565430px;}
.h14{height:145.086401px;}
.h12{height:145.216992px;}
.h3{height:224.658105px;}
.h16{height:224.784888px;}
.hb{height:227.250000px;}
.h8{height:228.375000px;}
.h4{height:303.750000px;}
.h10{height:304.657690px;}
.h1{height:304.784473px;}
.h0{height:810.000000px;}
.w4{width:300.375000px;}
.w5{width:301.500000px;}
.w2{width:367.875000px;}
.w6{width:541.125000px;}
.w3{width:868.500000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:11.625000px;}
.x18{left:22.049979px;}
.x15{left:37.837479px;}
.x19{left:76.124979px;}
.x10{left:88.349979px;}
.xf{left:94.537479px;}
.x17{left:100.874979px;}
.x6{left:102.375000px;}
.x5{left:109.874979px;}
.x12{left:120.412479px;}
.x9{left:136.912479px;}
.xb{left:149.625000px;}
.xa{left:163.904979px;}
.x13{left:170.219979px;}
.x11{left:178.229979px;}
.x14{left:190.949979px;}
.x2{left:197.654979px;}
.x3{left:261.944979px;}
.x1{left:409.649979px;}
.xc{left:448.875000px;}
.x8{left:469.125000px;}
.x4{left:485.594979px;}
.xd{left:749.250000px;}
.x16{left:758.399979px;}
.xe{left:821.699979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.146667pt;}
.ls7{letter-spacing:-1.072000pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-1.013333pt;}
.lsf{letter-spacing:-1.002667pt;}
.ls8{letter-spacing:-0.938667pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.446933pt;}
.ls1{letter-spacing:-0.423467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:1.682667pt;}
.ls4{letter-spacing:2.069333pt;}
.ls2{letter-spacing:44.240000pt;}
.lsd{letter-spacing:44.286667pt;}
.lsb{letter-spacing:47.040000pt;}
.lsa{letter-spacing:47.086667pt;}
.ls3{letter-spacing:51.313333pt;}
.lse{letter-spacing:55.513333pt;}
.ls12{letter-spacing:162.820000pt;}
.ls13{letter-spacing:162.866667pt;}
.ws7{word-spacing:-140.133333pt;}
.wsd{word-spacing:-81.546667pt;}
.ws11{word-spacing:-81.473333pt;}
.wsf{word-spacing:-77.146667pt;}
.ws8{word-spacing:-77.073333pt;}
.wsa{word-spacing:-76.134667pt;}
.wsb{word-spacing:-76.133333pt;}
.ws9{word-spacing:-76.001333pt;}
.wse{word-spacing:-76.000000pt;}
.ws10{word-spacing:-61.837200pt;}
.ws19{word-spacing:-52.873333pt;}
.ws1b{word-spacing:-47.956000pt;}
.ws3{word-spacing:-45.599467pt;}
.ws16{word-spacing:-33.073333pt;}
.ws13{word-spacing:-33.000000pt;}
.ws18{word-spacing:-32.136000pt;}
.ws17{word-spacing:-32.134667pt;}
.ws15{word-spacing:-32.001333pt;}
.ws14{word-spacing:-31.997333pt;}
.ws1a{word-spacing:-30.071067pt;}
.ws4{word-spacing:-28.080400pt;}
.wsc{word-spacing:-26.038133pt;}
.ws1{word-spacing:-26.011067pt;}
.ws0{word-spacing:-25.587600pt;}
.ws12{word-spacing:-23.575067pt;}
.ws5{word-spacing:-19.515067pt;}
.ws6{word-spacing:-18.448400pt;}
.ws1c{word-spacing:-17.079067pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-24.681067pt;}
._d{margin-left:-13.489200pt;}
._16{margin-left:-12.094400pt;}
._c{margin-left:-10.971733pt;}
._b{margin-left:-9.267200pt;}
._e{margin-left:-7.630933pt;}
._f{margin-left:-6.728533pt;}
._7{margin-left:-5.511333pt;}
._8{margin-left:-4.514000pt;}
._6{margin-left:-3.587733pt;}
._2{margin-left:-1.923200pt;}
._3{margin-left:-0.961600pt;}
._1{width:0.961600pt;}
._4{width:2.243733pt;}
._5{width:3.139867pt;}
._a{width:4.779867pt;}
._13{width:5.852400pt;}
._10{width:7.860667pt;}
._11{width:14.146933pt;}
._9{width:35.020667pt;}
._12{width:44.717733pt;}
._14{width:63.000000pt;}
._15{width:191.160000pt;}
.fs10{font-size:60.000000pt;}
.fsf{font-size:60.133333pt;}
.fsa{font-size:76.000000pt;}
.fsb{font-size:76.133333pt;}
.fs12{font-size:84.000000pt;}
.fs11{font-size:84.133333pt;}
.fs5{font-size:96.133333pt;}
.fsd{font-size:116.133333pt;}
.fse{font-size:116.266667pt;}
.fs1{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fs6{font-size:140.133333pt;}
.fs7{font-size:140.266667pt;}
.fs4{font-size:148.133333pt;}
.fs3{font-size:148.266667pt;}
.fs2{font-size:236.266667pt;}
.fsc{font-size:236.400000pt;}
.fs8{font-size:320.400000pt;}
.fs0{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:20.233333pt;}
.y52{bottom:29.833333pt;}
.y2e{bottom:31.366667pt;}
.y39{bottom:31.966667pt;}
.y74{bottom:38.366667pt;}
.y82{bottom:45.266667pt;}
.y51{bottom:51.866667pt;}
.y2d{bottom:54.400000pt;}
.y73{bottom:67.400000pt;}
.y81{bottom:71.300000pt;}
.y50{bottom:74.900000pt;}
.y62{bottom:85.833333pt;}
.y44{bottom:90.833333pt;}
.y1b{bottom:92.666667pt;}
.y16{bottom:93.640000pt;}
.y18{bottom:93.666667pt;}
.y80{bottom:97.333333pt;}
.y38{bottom:97.833333pt;}
.y14{bottom:99.833333pt;}
.y26{bottom:104.866667pt;}
.y61{bottom:115.866667pt;}
.y7f{bottom:122.366667pt;}
.yd{bottom:123.893333pt;}
.yb{bottom:123.973333pt;}
.y9{bottom:124.040000pt;}
.y7{bottom:124.106667pt;}
.y72{bottom:125.500000pt;}
.y43{bottom:126.866667pt;}
.y37{bottom:131.900000pt;}
.y4f{bottom:135.906667pt;}
.y25{bottom:137.893333pt;}
.y13{bottom:140.893333pt;}
.y7e{bottom:148.400000pt;}
.y60{bottom:156.933333pt;}
.y42{bottom:161.933333pt;}
.y36{bottom:164.933333pt;}
.y4e{bottom:171.933333pt;}
.y7d{bottom:173.440000pt;}
.y5f{bottom:181.960000pt;}
.y12{bottom:183.973333pt;}
.yc{bottom:193.000000pt;}
.y4{bottom:194.293333pt;}
.y35{bottom:197.973333pt;}
.y7c{bottom:199.466667pt;}
.y1c{bottom:201.000000pt;}
.y5e{bottom:206.000000pt;}
.y29{bottom:206.666667pt;}
.y4d{bottom:208.000000pt;}
.y41{bottom:212.000000pt;}
.y7b{bottom:225.533333pt;}
.y24{bottom:231.026667pt;}
.y11{bottom:237.026667pt;}
.y71{bottom:238.040000pt;}
.y1a{bottom:240.000000pt;}
.ya{bottom:241.000000pt;}
.y34{bottom:245.026667pt;}
.y40{bottom:247.040000pt;}
.y7a{bottom:250.560000pt;}
.y70{bottom:255.066667pt;}
.y4c{bottom:257.066667pt;}
.y5d{bottom:262.066667pt;}
.y23{bottom:265.066667pt;}
.y28{bottom:267.533333pt;}
.y6f{bottom:273.066667pt;}
.y79{bottom:276.600000pt;}
.y76{bottom:277.106667pt;}
.y17{bottom:278.000000pt;}
.y33{bottom:278.093333pt;}
.y3{bottom:282.426667pt;}
.y8{bottom:289.000000pt;}
.y6e{bottom:290.093333pt;}
.y4b{bottom:293.093333pt;}
.y5c{bottom:295.106667pt;}
.y3f{bottom:297.106667pt;}
.y22{bottom:298.133333pt;}
.y78{bottom:301.640000pt;}
.y6b{bottom:308.133333pt;}
.y2{bottom:313.466667pt;}
.y15{bottom:317.000000pt;}
.y75{bottom:317.133333pt;}
.y5b{bottom:324.173333pt;}
.y32{bottom:325.173333pt;}
.y6a{bottom:326.173333pt;}
.y21{bottom:331.173333pt;}
.y3e{bottom:332.173333pt;}
.y6{bottom:337.000000pt;}
.y4a{bottom:342.173333pt;}
.y69{bottom:343.173333pt;}
.y5a{bottom:353.200000pt;}
.y27{bottom:353.666667pt;}
.y2c{bottom:358.200000pt;}
.y68{bottom:361.200000pt;}
.y20{bottom:365.200000pt;}
.y19{bottom:371.666667pt;}
.y1{bottom:377.800000pt;}
.y49{bottom:378.226667pt;}
.y3d{bottom:382.226667pt;}
.y31{bottom:391.226667pt;}
.y67{bottom:396.266667pt;}
.y2b{bottom:398.266667pt;}
.y59{bottom:411.266667pt;}
.y66{bottom:414.266667pt;}
.y30{bottom:425.306667pt;}
.y48{bottom:427.306667pt;}
.y3c{bottom:431.306667pt;}
.y77{bottom:438.293333pt;}
.y6d{bottom:449.333333pt;}
.y10{bottom:452.333333pt;}
.y58{bottom:453.333333pt;}
.y1f{bottom:458.333333pt;}
.y47{bottom:463.333333pt;}
.y65{bottom:466.333333pt;}
.y3b{bottom:467.360000pt;}
.y2f{bottom:471.360000pt;}
.y57{bottom:483.360000pt;}
.y64{bottom:484.373333pt;}
.y2a{bottom:492.400000pt;}
.y46{bottom:499.400000pt;}
.y63{bottom:502.400000pt;}
.y3a{bottom:503.400000pt;}
.y1e{bottom:504.400000pt;}
.yf{bottom:505.400000pt;}
.y56{bottom:512.400000pt;}
.y6c{bottom:519.440000pt;}
.ye{bottom:546.466667pt;}
.y45{bottom:548.466667pt;}
.y1d{bottom:551.466667pt;}
.y55{bottom:554.466667pt;}
.y54{bottom:603.506667pt;}
.y5{bottom:634.840000pt;}
.y53{bottom:666.560000pt;}
.h1a{height:52.236328pt;}
.h19{height:52.352409pt;}
.h13{height:65.869141pt;}
.h15{height:65.984701pt;}
.h1e{height:72.802734pt;}
.h1c{height:72.918294pt;}
.h1d{height:73.246940pt;}
.h9{height:81.253320pt;}
.ha{height:83.318685pt;}
.h1b{height:83.694206pt;}
.h17{height:100.652669pt;}
.h18{height:100.768229pt;}
.h5{height:108.300195pt;}
.h2{height:111.053060pt;}
.h11{height:111.168620pt;}
.hc{height:121.453451pt;}
.he{height:121.569010pt;}
.hd{height:122.000846pt;}
.hf{height:122.116927pt;}
.h7{height:128.387044pt;}
.h6{height:128.502604pt;}
.h14{height:128.965690pt;}
.h12{height:129.081771pt;}
.h3{height:199.696094pt;}
.h16{height:199.808789pt;}
.hb{height:202.000000pt;}
.h8{height:203.000000pt;}
.h4{height:270.000000pt;}
.h10{height:270.806836pt;}
.h1{height:270.919531pt;}
.h0{height:720.000000pt;}
.w4{width:267.000000pt;}
.w5{width:268.000000pt;}
.w2{width:327.000000pt;}
.w6{width:481.000000pt;}
.w3{width:772.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:10.333333pt;}
.x18{left:19.599981pt;}
.x15{left:33.633314pt;}
.x19{left:67.666648pt;}
.x10{left:78.533314pt;}
.xf{left:84.033314pt;}
.x17{left:89.666648pt;}
.x6{left:91.000000pt;}
.x5{left:97.666648pt;}
.x12{left:107.033314pt;}
.x9{left:121.699981pt;}
.xb{left:133.000000pt;}
.xa{left:145.693314pt;}
.x13{left:151.306648pt;}
.x11{left:158.426648pt;}
.x14{left:169.733314pt;}
.x2{left:175.693314pt;}
.x3{left:232.839981pt;}
.x1{left:364.133314pt;}
.xc{left:399.000000pt;}
.x8{left:417.000000pt;}
.x4{left:431.639981pt;}
.xd{left:666.000000pt;}
.x16{left:674.133314pt;}
.xe{left:730.399981pt;}
}




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