
    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_a668212adeec3d50dba4f6b6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_13a402c8e474b6a5c1070b4f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_4642412043f40f8563fb42b6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_cc17c4fd3d3fe0791046a24c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_da00100aa1c5837154b8cc03.woff')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.516000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.342000px;}
.ls2{letter-spacing:0.558000px;}
.ls5{letter-spacing:59.622000px;}
.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:-66.000000px;}
.ws2{word-spacing:-15.054000px;}
.ws0{word-spacing:-14.916000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-6.270000px;}
._0{margin-left:-5.082000px;}
._3{margin-left:-3.828000px;}
._5{margin-left:-2.244000px;}
._2{margin-left:-1.188000px;}
._1{width:1.122000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:4.485000px;}
.y7c{bottom:4.492500px;}
.y1e{bottom:4.500000px;}
.y77{bottom:4.515000px;}
.yd7{bottom:4.530000px;}
.yad{bottom:4.785000px;}
.y2a{bottom:4.800000px;}
.y4a{bottom:4.815000px;}
.y59{bottom:4.845000px;}
.y31{bottom:5.700000px;}
.y10{bottom:5.985000px;}
.y5{bottom:6.000000px;}
.y3{bottom:6.015000px;}
.y3c{bottom:6.030000px;}
.y2d{bottom:6.045000px;}
.y54{bottom:24.585000px;}
.y2f{bottom:24.592500px;}
.y4f{bottom:24.600000px;}
.y22{bottom:24.615000px;}
.y7e{bottom:24.630000px;}
.y7b{bottom:24.637500px;}
.y43{bottom:24.645000px;}
.yae{bottom:24.885000px;}
.y1d{bottom:24.900000px;}
.y49{bottom:24.915000px;}
.y58{bottom:24.930000px;}
.y81{bottom:24.937500px;}
.y92{bottom:24.945000px;}
.ya0{bottom:109.537500px;}
.yd4{bottom:110.437500px;}
.yc8{bottom:116.437500px;}
.yab{bottom:118.237500px;}
.y2e{bottom:125.737500px;}
.y74{bottom:127.537500px;}
.y9f{bottom:131.737500px;}
.yc7{bottom:138.937500px;}
.yaa{bottom:140.737500px;}
.y52{bottom:144.337500px;}
.y7a{bottom:147.937500px;}
.yd3{bottom:151.245000px;}
.y9d{bottom:154.245000px;}
.yc6{bottom:161.130000px;}
.y73{bottom:161.430000px;}
.ya9{bottom:162.930000px;}
.y2c{bottom:166.530000px;}
.y9c{bottom:176.475000px;}
.y72{bottom:177.675000px;}
.yc5{bottom:183.675000px;}
.y51{bottom:185.475000px;}
.y2b{bottom:189.075000px;}
.yd2{bottom:192.375000px;}
.y9b{bottom:198.975000px;}
.yc4{bottom:205.875000px;}
.y50{bottom:207.675000px;}
.y29{bottom:211.275000px;}
.y80{bottom:211.575000px;}
.y71{bottom:218.775000px;}
.y4e{bottom:230.175000px;}
.yd1{bottom:233.475000px;}
.y79{bottom:233.775000px;}
.y9a{bottom:239.475000px;}
.y70{bottom:241.275000px;}
.yc3{bottom:246.975000px;}
.y28{bottom:252.375000px;}
.y4d{bottom:271.275000px;}
.y99{bottom:273.075000px;}
.yd0{bottom:274.575000px;}
.y78{bottom:274.875000px;}
.y6f{bottom:282.075000px;}
.yc2{bottom:288.075000px;}
.y98{bottom:289.575000px;}
.y27{bottom:293.475000px;}
.y7f{bottom:297.075000px;}
.y6e{bottom:304.575000px;}
.y97{bottom:311.775000px;}
.ycf{bottom:315.375000px;}
.y26{bottom:315.975000px;}
.y7d{bottom:319.575000px;}
.y6d{bottom:326.775000px;}
.yc1{bottom:329.205000px;}
.y96{bottom:334.320000px;}
.y25{bottom:338.205000px;}
.yb0{bottom:341.820000px;}
.y6c{bottom:349.320000px;}
.yc0{bottom:351.405000px;}
.yce{bottom:356.505000px;}
.y4c{bottom:356.820000px;}
.y24{bottom:360.705000px;}
.yaf{bottom:364.320000px;}
.y6b{bottom:371.505000px;}
.ybf{bottom:373.905000px;}
.y95{bottom:375.405000px;}
.y4b{bottom:379.320000px;}
.y23{bottom:382.905000px;}
.ybe{bottom:396.120000px;}
.ycd{bottom:397.620000px;}
.y48{bottom:401.505000px;}
.y21{bottom:405.405000px;}
.y6a{bottom:412.620000px;}
.y94{bottom:416.205000px;}
.ybd{bottom:418.620000px;}
.y76{bottom:427.605000px;}
.y93{bottom:438.720000px;}
.ybc{bottom:440.820000px;}
.y47{bottom:442.605000px;}
.y20{bottom:446.220000px;}
.y69{bottom:453.720000px;}
.y91{bottom:460.905000px;}
.ybb{bottom:463.320000px;}
.y46{bottom:465.105000px;}
.y1f{bottom:468.720000px;}
.y68{bottom:475.905000px;}
.ycc{bottom:479.820000px;}
.yba{bottom:485.550000px;}
.y45{bottom:487.350000px;}
.y1c{bottom:490.950000px;}
.y67{bottom:498.450000px;}
.y90{bottom:502.050000px;}
.yb9{bottom:508.050000px;}
.y44{bottom:509.850000px;}
.y75{bottom:513.450000px;}
.y66{bottom:520.650000px;}
.y8f{bottom:524.550000px;}
.yb8{bottom:530.250000px;}
.y1b{bottom:532.050000px;}
.y65{bottom:543.150000px;}
.y8e{bottom:546.750000px;}
.y1a{bottom:554.550000px;}
.ycb{bottom:561.750000px;}
.y64{bottom:565.350000px;}
.yb7{bottom:571.350000px;}
.y19{bottom:576.750000px;}
.y8d{bottom:587.850000px;}
.y18{bottom:599.250000px;}
.yca{bottom:602.850000px;}
.y63{bottom:606.450000px;}
.y8c{bottom:610.050000px;}
.yb6{bottom:612.450000px;}
.y17{bottom:621.450000px;}
.y62{bottom:628.950000px;}
.y8b{bottom:632.550000px;}
.y16{bottom:643.980000px;}
.y61{bottom:651.195000px;}
.yb5{bottom:653.280000px;}
.y8a{bottom:654.780000px;}
.y42{bottom:662.595000px;}
.y15{bottom:666.195000px;}
.y60{bottom:673.695000px;}
.y89{bottom:677.280000px;}
.y41{bottom:684.780000px;}
.y14{bottom:688.695000px;}
.ydb{bottom:690.195000px;}
.yb4{bottom:693.780000px;}
.y5f{bottom:695.880000px;}
.y88{bottom:699.480000px;}
.y40{bottom:707.280000px;}
.y13{bottom:710.880000px;}
.y5e{bottom:718.380000px;}
.yda{bottom:724.095000px;}
.yb3{bottom:727.695000px;}
.y3f{bottom:729.480000px;}
.y12{bottom:733.380000px;}
.y87{bottom:740.595000px;}
.yd9{bottom:745.695000px;}
.yb2{bottom:749.280000px;}
.y3e{bottom:751.980000px;}
.y11{bottom:755.595000px;}
.y5d{bottom:759.195000px;}
.y86{bottom:763.095000px;}
.y3d{bottom:774.195000px;}
.ya8{bottom:778.080000px;}
.yf{bottom:778.095000px;}
.yd8{bottom:780.195000px;}
.y5c{bottom:781.695000px;}
.yb1{bottom:784.080000px;}
.y85{bottom:785.295000px;}
.y3b{bottom:796.695000px;}
.ye{bottom:800.325000px;}
.y5b{bottom:803.925000px;}
.y3a{bottom:818.925000px;}
.yd{bottom:822.825000px;}
.y84{bottom:826.425000px;}
.y39{bottom:841.425000px;}
.yc{bottom:845.025000px;}
.y83{bottom:848.625000px;}
.ya7{bottom:860.025000px;}
.y38{bottom:863.625000px;}
.yb{bottom:867.525000px;}
.y82{bottom:871.125000px;}
.y37{bottom:886.125000px;}
.ya{bottom:889.725000px;}
.ya6{bottom:901.125000px;}
.yac{bottom:904.725000px;}
.y36{bottom:908.325000px;}
.y9{bottom:912.225000px;}
.ya5{bottom:923.625000px;}
.yc9{bottom:927.225000px;}
.y5a{bottom:930.825000px;}
.y8{bottom:934.425000px;}
.ya4{bottom:945.825000px;}
.y35{bottom:949.425000px;}
.y57{bottom:953.025000px;}
.y7{bottom:956.955000px;}
.ya3{bottom:968.355000px;}
.y34{bottom:971.955000px;}
.yd6{bottom:975.570000px;}
.y6{bottom:979.155000px;}
.ya2{bottom:990.570000px;}
.y56{bottom:994.155000px;}
.y33{bottom:994.170000px;}
.yd5{bottom:997.755000px;}
.y4{bottom:1001.670000px;}
.ya1{bottom:1013.070000px;}
.y55{bottom:1016.670000px;}
.y2{bottom:1023.855000px;}
.y32{bottom:1035.255000px;}
.y53{bottom:1038.870000px;}
.y30{bottom:1057.755000px;}
.y1{bottom:1064.370000px;}
.h8{height:21.300000px;}
.h3{height:21.585000px;}
.h2{height:21.600000px;}
.h5{height:21.637500px;}
.h7{height:40.200000px;}
.hc{height:40.222500px;}
.ha{height:40.237500px;}
.h9{height:40.485000px;}
.h6{height:40.500000px;}
.hb{height:40.537500px;}
.h4{height:65.645508px;}
.h1{height:67.579102px;}
.h0{height:1188.000000px;}
.w1e{width:71.100000px;}
.w1f{width:71.137500px;}
.w1a{width:71.737500px;}
.w19{width:72.000000px;}
.w15{width:80.100000px;}
.w10{width:80.700000px;}
.w14{width:98.137500px;}
.wf{width:99.037500px;}
.w7{width:100.237500px;}
.w9{width:104.437500px;}
.w4{width:107.137500px;}
.w5{width:109.237500px;}
.w6{width:114.337500px;}
.wa{width:117.937500px;}
.wb{width:118.237500px;}
.w12{width:119.137500px;}
.wd{width:120.037500px;}
.w3{width:120.937500px;}
.w1c{width:134.137500px;}
.w17{width:135.075000px;}
.w8{width:141.337500px;}
.w1d{width:144.637500px;}
.w18{width:145.537500px;}
.w13{width:147.637500px;}
.we{width:148.537500px;}
.w1b{width:186.645000px;}
.w16{width:186.930000px;}
.w11{width:207.675000px;}
.wc{width:207.975000px;}
.w2{width:361.620000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:7.500000px;}
.x17{left:8.985000px;}
.x10{left:17.700000px;}
.xf{left:35.700000px;}
.x1{left:108.037486px;}
.x11{left:135.037486px;}
.x12{left:162.029986px;}
.x6{left:224.175000px;}
.x13{left:295.875000px;}
.xb{left:316.920000px;}
.x7{left:325.020000px;}
.x14{left:430.950000px;}
.xc{left:436.950000px;}
.x8{left:467.250000px;}
.x3{left:471.150000px;}
.x9{left:572.595000px;}
.x15{left:576.495000px;}
.xd{left:585.495000px;}
.x4{left:592.695000px;}
.x16{left:648.495000px;}
.xe{left:684.525000px;}
.xa{left:691.425000px;}
.x5{left:700.425000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.458667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.304000pt;}
.ls2{letter-spacing:0.496000pt;}
.ls5{letter-spacing:52.997333pt;}
.ws3{word-spacing:-58.666667pt;}
.ws2{word-spacing:-13.381333pt;}
.ws0{word-spacing:-13.258667pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-5.573333pt;}
._0{margin-left:-4.517333pt;}
._3{margin-left:-3.402667pt;}
._5{margin-left:-1.994667pt;}
._2{margin-left:-1.056000pt;}
._1{width:0.997333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:3.986667pt;}
.y7c{bottom:3.993333pt;}
.y1e{bottom:4.000000pt;}
.y77{bottom:4.013333pt;}
.yd7{bottom:4.026667pt;}
.yad{bottom:4.253333pt;}
.y2a{bottom:4.266667pt;}
.y4a{bottom:4.280000pt;}
.y59{bottom:4.306667pt;}
.y31{bottom:5.066667pt;}
.y10{bottom:5.320000pt;}
.y5{bottom:5.333333pt;}
.y3{bottom:5.346667pt;}
.y3c{bottom:5.360000pt;}
.y2d{bottom:5.373333pt;}
.y54{bottom:21.853333pt;}
.y2f{bottom:21.860000pt;}
.y4f{bottom:21.866667pt;}
.y22{bottom:21.880000pt;}
.y7e{bottom:21.893333pt;}
.y7b{bottom:21.900000pt;}
.y43{bottom:21.906667pt;}
.yae{bottom:22.120000pt;}
.y1d{bottom:22.133333pt;}
.y49{bottom:22.146667pt;}
.y58{bottom:22.160000pt;}
.y81{bottom:22.166667pt;}
.y92{bottom:22.173333pt;}
.ya0{bottom:97.366667pt;}
.yd4{bottom:98.166667pt;}
.yc8{bottom:103.500000pt;}
.yab{bottom:105.100000pt;}
.y2e{bottom:111.766667pt;}
.y74{bottom:113.366667pt;}
.y9f{bottom:117.100000pt;}
.yc7{bottom:123.500000pt;}
.yaa{bottom:125.100000pt;}
.y52{bottom:128.300000pt;}
.y7a{bottom:131.500000pt;}
.yd3{bottom:134.440000pt;}
.y9d{bottom:137.106667pt;}
.yc6{bottom:143.226667pt;}
.y73{bottom:143.493333pt;}
.ya9{bottom:144.826667pt;}
.y2c{bottom:148.026667pt;}
.y9c{bottom:156.866667pt;}
.y72{bottom:157.933333pt;}
.yc5{bottom:163.266667pt;}
.y51{bottom:164.866667pt;}
.y2b{bottom:168.066667pt;}
.yd2{bottom:171.000000pt;}
.y9b{bottom:176.866667pt;}
.yc4{bottom:183.000000pt;}
.y50{bottom:184.600000pt;}
.y29{bottom:187.800000pt;}
.y80{bottom:188.066667pt;}
.y71{bottom:194.466667pt;}
.y4e{bottom:204.600000pt;}
.yd1{bottom:207.533333pt;}
.y79{bottom:207.800000pt;}
.y9a{bottom:212.866667pt;}
.y70{bottom:214.466667pt;}
.yc3{bottom:219.533333pt;}
.y28{bottom:224.333333pt;}
.y4d{bottom:241.133333pt;}
.y99{bottom:242.733333pt;}
.yd0{bottom:244.066667pt;}
.y78{bottom:244.333333pt;}
.y6f{bottom:250.733333pt;}
.yc2{bottom:256.066667pt;}
.y98{bottom:257.400000pt;}
.y27{bottom:260.866667pt;}
.y7f{bottom:264.066667pt;}
.y6e{bottom:270.733333pt;}
.y97{bottom:277.133333pt;}
.ycf{bottom:280.333333pt;}
.y26{bottom:280.866667pt;}
.y7d{bottom:284.066667pt;}
.y6d{bottom:290.466667pt;}
.yc1{bottom:292.626667pt;}
.y96{bottom:297.173333pt;}
.y25{bottom:300.626667pt;}
.yb0{bottom:303.840000pt;}
.y6c{bottom:310.506667pt;}
.yc0{bottom:312.360000pt;}
.yce{bottom:316.893333pt;}
.y4c{bottom:317.173333pt;}
.y24{bottom:320.626667pt;}
.yaf{bottom:323.840000pt;}
.y6b{bottom:330.226667pt;}
.ybf{bottom:332.360000pt;}
.y95{bottom:333.693333pt;}
.y4b{bottom:337.173333pt;}
.y23{bottom:340.360000pt;}
.ybe{bottom:352.106667pt;}
.ycd{bottom:353.440000pt;}
.y48{bottom:356.893333pt;}
.y21{bottom:360.360000pt;}
.y6a{bottom:366.773333pt;}
.y94{bottom:369.960000pt;}
.ybd{bottom:372.106667pt;}
.y76{bottom:380.093333pt;}
.y93{bottom:389.973333pt;}
.ybc{bottom:391.840000pt;}
.y47{bottom:393.426667pt;}
.y20{bottom:396.640000pt;}
.y69{bottom:403.306667pt;}
.y91{bottom:409.693333pt;}
.ybb{bottom:411.840000pt;}
.y46{bottom:413.426667pt;}
.y1f{bottom:416.640000pt;}
.y68{bottom:423.026667pt;}
.ycc{bottom:426.506667pt;}
.yba{bottom:431.600000pt;}
.y45{bottom:433.200000pt;}
.y1c{bottom:436.400000pt;}
.y67{bottom:443.066667pt;}
.y90{bottom:446.266667pt;}
.yb9{bottom:451.600000pt;}
.y44{bottom:453.200000pt;}
.y75{bottom:456.400000pt;}
.y66{bottom:462.800000pt;}
.y8f{bottom:466.266667pt;}
.yb8{bottom:471.333333pt;}
.y1b{bottom:472.933333pt;}
.y65{bottom:482.800000pt;}
.y8e{bottom:486.000000pt;}
.y1a{bottom:492.933333pt;}
.ycb{bottom:499.333333pt;}
.y64{bottom:502.533333pt;}
.yb7{bottom:507.866667pt;}
.y19{bottom:512.666667pt;}
.y8d{bottom:522.533333pt;}
.y18{bottom:532.666667pt;}
.yca{bottom:535.866667pt;}
.y63{bottom:539.066667pt;}
.y8c{bottom:542.266667pt;}
.yb6{bottom:544.400000pt;}
.y17{bottom:552.400000pt;}
.y62{bottom:559.066667pt;}
.y8b{bottom:562.266667pt;}
.y16{bottom:572.426667pt;}
.y61{bottom:578.840000pt;}
.yb5{bottom:580.693333pt;}
.y8a{bottom:582.026667pt;}
.y42{bottom:588.973333pt;}
.y15{bottom:592.173333pt;}
.y60{bottom:598.840000pt;}
.y89{bottom:602.026667pt;}
.y41{bottom:608.693333pt;}
.y14{bottom:612.173333pt;}
.ydb{bottom:613.506667pt;}
.yb4{bottom:616.693333pt;}
.y5f{bottom:618.560000pt;}
.y88{bottom:621.760000pt;}
.y40{bottom:628.693333pt;}
.y13{bottom:631.893333pt;}
.y5e{bottom:638.560000pt;}
.yda{bottom:643.640000pt;}
.yb3{bottom:646.840000pt;}
.y3f{bottom:648.426667pt;}
.y12{bottom:651.893333pt;}
.y87{bottom:658.306667pt;}
.yd9{bottom:662.840000pt;}
.yb2{bottom:666.026667pt;}
.y3e{bottom:668.426667pt;}
.y11{bottom:671.640000pt;}
.y5d{bottom:674.840000pt;}
.y86{bottom:678.306667pt;}
.y3d{bottom:688.173333pt;}
.ya8{bottom:691.626667pt;}
.yf{bottom:691.640000pt;}
.yd8{bottom:693.506667pt;}
.y5c{bottom:694.840000pt;}
.yb1{bottom:696.960000pt;}
.y85{bottom:698.040000pt;}
.y3b{bottom:708.173333pt;}
.ye{bottom:711.400000pt;}
.y5b{bottom:714.600000pt;}
.y3a{bottom:727.933333pt;}
.yd{bottom:731.400000pt;}
.y84{bottom:734.600000pt;}
.y39{bottom:747.933333pt;}
.yc{bottom:751.133333pt;}
.y83{bottom:754.333333pt;}
.ya7{bottom:764.466667pt;}
.y38{bottom:767.666667pt;}
.yb{bottom:771.133333pt;}
.y82{bottom:774.333333pt;}
.y37{bottom:787.666667pt;}
.ya{bottom:790.866667pt;}
.ya6{bottom:801.000000pt;}
.yac{bottom:804.200000pt;}
.y36{bottom:807.400000pt;}
.y9{bottom:810.866667pt;}
.ya5{bottom:821.000000pt;}
.yc9{bottom:824.200000pt;}
.y5a{bottom:827.400000pt;}
.y8{bottom:830.600000pt;}
.ya4{bottom:840.733333pt;}
.y35{bottom:843.933333pt;}
.y57{bottom:847.133333pt;}
.y7{bottom:850.626667pt;}
.ya3{bottom:860.760000pt;}
.y34{bottom:863.960000pt;}
.yd6{bottom:867.173333pt;}
.y6{bottom:870.360000pt;}
.ya2{bottom:880.506667pt;}
.y56{bottom:883.693333pt;}
.y33{bottom:883.706667pt;}
.yd5{bottom:886.893333pt;}
.y4{bottom:890.373333pt;}
.ya1{bottom:900.506667pt;}
.y55{bottom:903.706667pt;}
.y2{bottom:910.093333pt;}
.y32{bottom:920.226667pt;}
.y53{bottom:923.440000pt;}
.y30{bottom:940.226667pt;}
.y1{bottom:946.106667pt;}
.h8{height:18.933333pt;}
.h3{height:19.186667pt;}
.h2{height:19.200000pt;}
.h5{height:19.233333pt;}
.h7{height:35.733333pt;}
.hc{height:35.753333pt;}
.ha{height:35.766667pt;}
.h9{height:35.986667pt;}
.h6{height:36.000000pt;}
.hb{height:36.033333pt;}
.h4{height:58.351562pt;}
.h1{height:60.070312pt;}
.h0{height:1056.000000pt;}
.w1e{width:63.200000pt;}
.w1f{width:63.233333pt;}
.w1a{width:63.766667pt;}
.w19{width:64.000000pt;}
.w15{width:71.200000pt;}
.w10{width:71.733333pt;}
.w14{width:87.233333pt;}
.wf{width:88.033333pt;}
.w7{width:89.100000pt;}
.w9{width:92.833333pt;}
.w4{width:95.233333pt;}
.w5{width:97.100000pt;}
.w6{width:101.633333pt;}
.wa{width:104.833333pt;}
.wb{width:105.100000pt;}
.w12{width:105.900000pt;}
.wd{width:106.700000pt;}
.w3{width:107.500000pt;}
.w1c{width:119.233333pt;}
.w17{width:120.066667pt;}
.w8{width:125.633333pt;}
.w1d{width:128.566667pt;}
.w18{width:129.366667pt;}
.w13{width:131.233333pt;}
.we{width:132.033333pt;}
.w1b{width:165.906667pt;}
.w16{width:166.160000pt;}
.w11{width:184.600000pt;}
.wc{width:184.866667pt;}
.w2{width:321.440000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.666667pt;}
.x17{left:7.986667pt;}
.x10{left:15.733333pt;}
.xf{left:31.733333pt;}
.x1{left:96.033321pt;}
.x11{left:120.033321pt;}
.x12{left:144.026655pt;}
.x6{left:199.266667pt;}
.x13{left:263.000000pt;}
.xb{left:281.706667pt;}
.x7{left:288.906667pt;}
.x14{left:383.066667pt;}
.xc{left:388.400000pt;}
.x8{left:415.333333pt;}
.x3{left:418.800000pt;}
.x9{left:508.973333pt;}
.x15{left:512.440000pt;}
.xd{left:520.440000pt;}
.x4{left:526.840000pt;}
.x16{left:576.440000pt;}
.xe{left:608.466667pt;}
.xa{left:614.600000pt;}
.x5{left:622.600000pt;}
}




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