
    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_b90201e136a9f74896f7287b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_95fc12c782b699b642ff0671.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_51e0fc0a056c20f5834d083a.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_f19890af585ea896026adf71.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b369ed05eeedbdf4bb9ae901.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_494528a4be5517e7edd0bcce.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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.026000px;}
.ls17{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.152400px;}
.lsf{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls16{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.ls15{letter-spacing:3.600000px;}
.ls13{letter-spacing:7.200000px;}
.lse{letter-spacing:7.920000px;}
.ls9{letter-spacing:8.640000px;}
.lsb{letter-spacing:10.800000px;}
.ls10{letter-spacing:13.680000px;}
.lsa{letter-spacing:20.160000px;}
.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;}
}
.wsd{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.wsc{word-spacing:-16.407600px;}
.wsa{word-spacing:-15.534000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._19{margin-left:-6.573120px;}
._12{margin-left:-5.036640px;}
._f{margin-left:-3.398640px;}
._10{margin-left:-2.330640px;}
._0{margin-left:-1.116000px;}
._3{width:1.374480px;}
._4{width:2.539920px;}
._7{width:3.654480px;}
._9{width:5.617440px;}
._a{width:6.740880px;}
._11{width:8.366400px;}
._13{width:9.650880px;}
._e{width:11.294640px;}
._8{width:12.310560px;}
._d{width:13.326480px;}
._16{width:14.492160px;}
._5{width:15.955920px;}
._6{width:17.070000px;}
._14{width:18.547200px;}
._15{width:19.643280px;}
._17{width:21.071280px;}
._b{width:22.795920px;}
._c{width:24.088320px;}
._18{width:25.213680px;}
._1d{width:27.092160px;}
._1e{width:28.236240px;}
._1f{width:29.591040px;}
._20{width:31.240080px;}
._1c{width:32.656320px;}
._1b{width:35.295840px;}
._1a{width:36.432000px;}
._2c{width:47.295360px;}
._2d{width:49.488960px;}
._21{width:65.710080px;}
._23{width:80.618400px;}
._24{width:82.109280px;}
._22{width:93.199680px;}
._28{width:110.554560px;}
._29{width:111.626640px;}
._26{width:126.905760px;}
._25{width:127.929600px;}
._27{width:162.829440px;}
._2e{width:227.004480px;}
._2{width:323.760000px;}
._2a{width:362.664000px;}
._2b{width:363.669840px;}
._1{width:451.018560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.840000px;}
.y4{bottom:70.416000px;}
.y3d{bottom:125.496000px;}
.y6c{bottom:131.616000px;}
.y3c{bottom:147.456000px;}
.y6b{bottom:153.390000px;}
.y3b{bottom:169.230000px;}
.y6a{bottom:175.170000px;}
.y3a{bottom:191.010000px;}
.y69{bottom:196.950000px;}
.y39{bottom:212.790000px;}
.y68{bottom:218.910000px;}
.y38{bottom:230.790000px;}
.y67{bottom:240.690000px;}
.y37{bottom:244.650000px;}
.y36{bottom:259.230000px;}
.y66{bottom:262.470000px;}
.y35{bottom:276.330000px;}
.y65{bottom:284.250000px;}
.y34{bottom:293.610000px;}
.y64{bottom:306.210000px;}
.y33{bottom:310.890000px;}
.y63{bottom:327.990000px;}
.y32{bottom:328.170000px;}
.y31{bottom:345.495000px;}
.y62{bottom:349.815000px;}
.y30{bottom:362.595000px;}
.y61{bottom:371.595000px;}
.y2f{bottom:379.875000px;}
.y60{bottom:393.375000px;}
.y2e{bottom:397.155000px;}
.y2d{bottom:414.435000px;}
.y5f{bottom:415.335000px;}
.y2c{bottom:431.715000px;}
.y5e{bottom:437.115000px;}
.y2b{bottom:448.995000px;}
.y5d{bottom:458.895000px;}
.y2a{bottom:466.095000px;}
.y5c{bottom:480.675000px;}
.y29{bottom:483.375000px;}
.y28{bottom:500.655000px;}
.y5b{bottom:502.635000px;}
.y27{bottom:517.935000px;}
.y5a{bottom:524.415000px;}
.y26{bottom:535.215000px;}
.y59{bottom:546.195000px;}
.y25{bottom:552.495000px;}
.y58{bottom:567.975000px;}
.y24{bottom:569.595000px;}
.y23{bottom:586.875000px;}
.y57{bottom:589.755000px;}
.y22{bottom:604.185000px;}
.y56{bottom:611.745000px;}
.y21{bottom:621.465000px;}
.y55{bottom:633.525000px;}
.y20{bottom:638.745000px;}
.y54{bottom:655.305000px;}
.y1f{bottom:655.845000px;}
.y1e{bottom:673.125000px;}
.y53{bottom:677.085000px;}
.y1d{bottom:690.405000px;}
.y52{bottom:699.045000px;}
.y1c{bottom:707.685000px;}
.y51{bottom:720.825000px;}
.y1b{bottom:724.965000px;}
.y1a{bottom:742.245000px;}
.y50{bottom:742.605000px;}
.y19{bottom:759.345000px;}
.y4f{bottom:764.385000px;}
.y18{bottom:776.625000px;}
.y4e{bottom:786.165000px;}
.y17{bottom:793.905000px;}
.y4d{bottom:808.125000px;}
.y16{bottom:811.185000px;}
.y15{bottom:828.465000px;}
.y4c{bottom:829.905000px;}
.y14{bottom:847.005000px;}
.y4b{bottom:851.685000px;}
.y13{bottom:863.565000px;}
.y4a{bottom:873.510000px;}
.y12{bottom:885.930000px;}
.y49{bottom:895.470000px;}
.y11{bottom:899.250000px;}
.y48{bottom:917.250000px;}
.y10{bottom:921.570000px;}
.yf{bottom:936.150000px;}
.y47{bottom:939.030000px;}
.ye{bottom:957.930000px;}
.y46{bottom:960.810000px;}
.yd{bottom:979.170000px;}
.y45{bottom:982.590000px;}
.yc{bottom:1000.770000px;}
.y44{bottom:1004.550000px;}
.y43{bottom:1026.330000px;}
.yb{bottom:1026.690000px;}
.y42{bottom:1048.110000px;}
.ya{bottom:1050.630000px;}
.y9{bottom:1067.910000px;}
.y41{bottom:1069.890000px;}
.y8{bottom:1085.190000px;}
.y40{bottom:1091.670000px;}
.y7{bottom:1102.290000px;}
.y3f{bottom:1113.630000px;}
.y6{bottom:1119.570000px;}
.y3e{bottom:1135.410000px;}
.y5{bottom:1136.850000px;}
.y3{bottom:1154.160000px;}
.y1{bottom:1168.200000px;}
.ha{height:25.136719px;}
.h2{height:26.640000px;}
.he{height:33.683203px;}
.hc{height:34.036523px;}
.hb{height:37.705078px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:46.251562px;}
.h10{height:46.736719px;}
.hd{height:49.255313px;}
.h7{height:50.273438px;}
.h3{height:50.414062px;}
.h9{height:53.224453px;}
.h11{height:54.596250px;}
.h8{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:606.165000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x1{left:108.036000px;}
.x9{left:110.735987px;}
.x4{left:133.415987px;}
.xb{left:146.015987px;}
.xf{left:150.509987px;}
.x3{left:161.130000px;}
.x7{left:183.449987px;}
.xa{left:194.249987px;}
.x5{left:219.269987px;}
.xc{left:307.334987px;}
.x8{left:352.154987px;}
.xe{left:418.574987px;}
.xd{left:420.194987px;}
.x6{left:446.474987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.135467pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls16{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls13{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.040000pt;}
.ls9{letter-spacing:7.680000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls10{letter-spacing:12.160000pt;}
.lsa{letter-spacing:17.920000pt;}
.wsd{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.wsc{word-spacing:-14.584533pt;}
.wsa{word-spacing:-13.808000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._19{margin-left:-5.842773pt;}
._12{margin-left:-4.477013pt;}
._f{margin-left:-3.021013pt;}
._10{margin-left:-2.071680pt;}
._0{margin-left:-0.992000pt;}
._3{width:1.221760pt;}
._4{width:2.257707pt;}
._7{width:3.248427pt;}
._9{width:4.993280pt;}
._a{width:5.991893pt;}
._11{width:7.436800pt;}
._13{width:8.578560pt;}
._e{width:10.039680pt;}
._8{width:10.942720pt;}
._d{width:11.845760pt;}
._16{width:12.881920pt;}
._5{width:14.183040pt;}
._6{width:15.173333pt;}
._14{width:16.486400pt;}
._15{width:17.460693pt;}
._17{width:18.730027pt;}
._b{width:20.263040pt;}
._c{width:21.411840pt;}
._18{width:22.412160pt;}
._1d{width:24.081920pt;}
._1e{width:25.098880pt;}
._1f{width:26.303147pt;}
._20{width:27.768960pt;}
._1c{width:29.027840pt;}
._1b{width:31.374080pt;}
._1a{width:32.384000pt;}
._2c{width:42.040320pt;}
._2d{width:43.990187pt;}
._21{width:58.408960pt;}
._23{width:71.660800pt;}
._24{width:72.986027pt;}
._22{width:82.844160pt;}
._28{width:98.270720pt;}
._29{width:99.223680pt;}
._26{width:112.805120pt;}
._25{width:113.715200pt;}
._27{width:144.737280pt;}
._2e{width:201.781760pt;}
._2{width:287.786667pt;}
._2a{width:322.368000pt;}
._2b{width:323.262080pt;}
._1{width:400.905387pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.080000pt;}
.y4{bottom:62.592000pt;}
.y3d{bottom:111.552000pt;}
.y6c{bottom:116.992000pt;}
.y3c{bottom:131.072000pt;}
.y6b{bottom:136.346667pt;}
.y3b{bottom:150.426667pt;}
.y6a{bottom:155.706667pt;}
.y3a{bottom:169.786667pt;}
.y69{bottom:175.066667pt;}
.y39{bottom:189.146667pt;}
.y68{bottom:194.586667pt;}
.y38{bottom:205.146667pt;}
.y67{bottom:213.946667pt;}
.y37{bottom:217.466667pt;}
.y36{bottom:230.426667pt;}
.y66{bottom:233.306667pt;}
.y35{bottom:245.626667pt;}
.y65{bottom:252.666667pt;}
.y34{bottom:260.986667pt;}
.y64{bottom:272.186667pt;}
.y33{bottom:276.346667pt;}
.y63{bottom:291.546667pt;}
.y32{bottom:291.706667pt;}
.y31{bottom:307.106667pt;}
.y62{bottom:310.946667pt;}
.y30{bottom:322.306667pt;}
.y61{bottom:330.306667pt;}
.y2f{bottom:337.666667pt;}
.y60{bottom:349.666667pt;}
.y2e{bottom:353.026667pt;}
.y2d{bottom:368.386667pt;}
.y5f{bottom:369.186667pt;}
.y2c{bottom:383.746667pt;}
.y5e{bottom:388.546667pt;}
.y2b{bottom:399.106667pt;}
.y5d{bottom:407.906667pt;}
.y2a{bottom:414.306667pt;}
.y5c{bottom:427.266667pt;}
.y29{bottom:429.666667pt;}
.y28{bottom:445.026667pt;}
.y5b{bottom:446.786667pt;}
.y27{bottom:460.386667pt;}
.y5a{bottom:466.146667pt;}
.y26{bottom:475.746667pt;}
.y59{bottom:485.506667pt;}
.y25{bottom:491.106667pt;}
.y58{bottom:504.866667pt;}
.y24{bottom:506.306667pt;}
.y23{bottom:521.666667pt;}
.y57{bottom:524.226667pt;}
.y22{bottom:537.053333pt;}
.y56{bottom:543.773333pt;}
.y21{bottom:552.413333pt;}
.y55{bottom:563.133333pt;}
.y20{bottom:567.773333pt;}
.y54{bottom:582.493333pt;}
.y1f{bottom:582.973333pt;}
.y1e{bottom:598.333333pt;}
.y53{bottom:601.853333pt;}
.y1d{bottom:613.693333pt;}
.y52{bottom:621.373333pt;}
.y1c{bottom:629.053333pt;}
.y51{bottom:640.733333pt;}
.y1b{bottom:644.413333pt;}
.y1a{bottom:659.773333pt;}
.y50{bottom:660.093333pt;}
.y19{bottom:674.973333pt;}
.y4f{bottom:679.453333pt;}
.y18{bottom:690.333333pt;}
.y4e{bottom:698.813333pt;}
.y17{bottom:705.693333pt;}
.y4d{bottom:718.333333pt;}
.y16{bottom:721.053333pt;}
.y15{bottom:736.413333pt;}
.y4c{bottom:737.693333pt;}
.y14{bottom:752.893333pt;}
.y4b{bottom:757.053333pt;}
.y13{bottom:767.613333pt;}
.y4a{bottom:776.453333pt;}
.y12{bottom:787.493333pt;}
.y49{bottom:795.973333pt;}
.y11{bottom:799.333333pt;}
.y48{bottom:815.333333pt;}
.y10{bottom:819.173333pt;}
.yf{bottom:832.133333pt;}
.y47{bottom:834.693333pt;}
.ye{bottom:851.493333pt;}
.y46{bottom:854.053333pt;}
.yd{bottom:870.373333pt;}
.y45{bottom:873.413333pt;}
.yc{bottom:889.573333pt;}
.y44{bottom:892.933333pt;}
.y43{bottom:912.293333pt;}
.yb{bottom:912.613333pt;}
.y42{bottom:931.653333pt;}
.ya{bottom:933.893333pt;}
.y9{bottom:949.253333pt;}
.y41{bottom:951.013333pt;}
.y8{bottom:964.613333pt;}
.y40{bottom:970.373333pt;}
.y7{bottom:979.813333pt;}
.y3f{bottom:989.893333pt;}
.y6{bottom:995.173333pt;}
.y3e{bottom:1009.253333pt;}
.y5{bottom:1010.533333pt;}
.y3{bottom:1025.920000pt;}
.y1{bottom:1038.400000pt;}
.ha{height:22.343750pt;}
.h2{height:23.680000pt;}
.he{height:29.940625pt;}
.hc{height:30.254687pt;}
.hb{height:33.515625pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:41.112500pt;}
.h10{height:41.543750pt;}
.hd{height:43.782500pt;}
.h7{height:44.687500pt;}
.h3{height:44.812500pt;}
.h9{height:47.310625pt;}
.h11{height:48.530000pt;}
.h8{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:538.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x1{left:96.032000pt;}
.x9{left:98.431988pt;}
.x4{left:118.591988pt;}
.xb{left:129.791988pt;}
.xf{left:133.786655pt;}
.x3{left:143.226667pt;}
.x7{left:163.066655pt;}
.xa{left:172.666655pt;}
.x5{left:194.906655pt;}
.xc{left:273.186655pt;}
.x8{left:313.026655pt;}
.xe{left:372.066655pt;}
.xd{left:373.506655pt;}
.x6{left:396.866655pt;}
}




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