
    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_06fd94d25cfe55868af95b01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.718750;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_a7210a2abdf66cb8f536eae7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_6bd9dfdb8b5ce93e2b8c7890.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_2c22a245746d24357ac90319.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_483799a65de7a22f70745fac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c47852d472493e57a196da21.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_233cdde2bdac7f1336487e42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_bdf641d6c6160f3ec9bdafe9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_e04d15729a627552157778d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_a65d9a3be65fba7709673206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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:ffb;src:url('chunks/assets/font_8e15a306d6c942a028bb56df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-0.689472px;}
.ls24{letter-spacing:-0.393984px;}
.ls1d{letter-spacing:-0.291456px;}
.ls16{letter-spacing:-0.247104px;}
.ls19{letter-spacing:-0.240768px;}
.ls14{letter-spacing:-0.228096px;}
.ls1b{letter-spacing:-0.198720px;}
.ls15{letter-spacing:-0.190080px;}
.ls17{letter-spacing:-0.177408px;}
.lsf{letter-spacing:-0.158976px;}
.ls23{letter-spacing:-0.139104px;}
.ls10{letter-spacing:-0.125856px;}
.ls1a{letter-spacing:-0.120384px;}
.ls11{letter-spacing:-0.119232px;}
.ls12{letter-spacing:-0.079488px;}
.ls18{letter-spacing:-0.069696px;}
.ls1c{letter-spacing:-0.039744px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.126720px;}
.lsd{letter-spacing:0.131472px;}
.lse{letter-spacing:0.155376px;}
.ls21{letter-spacing:0.233856px;}
.ls20{letter-spacing:0.242208px;}
.ls8{letter-spacing:0.279648px;}
.ls9{letter-spacing:0.283968px;}
.ls3{letter-spacing:0.285120px;}
.ls1{letter-spacing:0.286848px;}
.ls0{letter-spacing:0.319248px;}
.ls1f{letter-spacing:0.319536px;}
.ls13{letter-spacing:0.359136px;}
.lsa{letter-spacing:0.875664px;}
.lsb{letter-spacing:0.876960px;}
.ls6{letter-spacing:1.716480px;}
.ls22{letter-spacing:10.441296px;}
.ls1e{letter-spacing:59.227920px;}
.ls7{letter-spacing:61.408368px;}
.ls4{letter-spacing:182.773440px;}
.ls5{letter-spacing:197.585280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-33.381936px;}
.ws0{word-spacing:-33.358032px;}
.ws5{word-spacing:-23.577696px;}
.wsf{word-spacing:-23.460768px;}
.ws10{word-spacing:-23.452416px;}
.ws7{word-spacing:-18.414720px;}
.wse{word-spacing:-18.335232px;}
.ws3{word-spacing:-18.295488px;}
.ws2{word-spacing:-18.288864px;}
.ws4{word-spacing:-18.255744px;}
.ws6{word-spacing:-17.614080px;}
.wsb{word-spacing:-17.544384px;}
.wsa{word-spacing:-17.424000px;}
.ws9{word-spacing:-17.366976px;}
.ws11{word-spacing:-15.212160px;}
.ws12{word-spacing:-14.818176px;}
.wsd{word-spacing:-0.066240px;}
.ws8{word-spacing:-0.063360px;}
.wsc{word-spacing:0.000000px;}
._5{margin-left:-197.585280px;}
._2{margin-left:-182.773440px;}
._1{margin-left:-35.363664px;}
._a{margin-left:-4.495968px;}
._c{margin-left:-2.600352px;}
._0{margin-left:-1.079712px;}
._4{width:1.052784px;}
._8{width:2.797488px;}
._7{width:4.371840px;}
._6{width:5.829120px;}
._13{width:7.337232px;}
._16{width:9.484992px;}
._15{width:10.797120px;}
._f{width:13.983552px;}
._e{width:15.102720px;}
._17{width:19.597104px;}
._11{width:20.765664px;}
._10{width:21.792960px;}
._14{width:24.398640px;}
._9{width:25.534080px;}
._3{width:28.946880px;}
._b{width:30.476160px;}
._12{width:59.114880px;}
._d{width:61.240320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.760000px;}
.y23{bottom:117.360000px;}
.y4a{bottom:130.320000px;}
.y22{bottom:139.320000px;}
.y49{bottom:147.960000px;}
.y48{bottom:165.960000px;}
.y21{bottom:168.840000px;}
.y47{bottom:181.800000px;}
.y46{bottom:217.800000px;}
.y20{bottom:218.160000px;}
.y45{bottom:239.760000px;}
.y1f{bottom:240.480000px;}
.y44{bottom:261.360000px;}
.y1e{bottom:262.440000px;}
.y43{bottom:283.320000px;}
.y1d{bottom:284.400000px;}
.y42{bottom:305.280000px;}
.y1c{bottom:306.000000px;}
.y41{bottom:326.520000px;}
.y1b{bottom:335.880000px;}
.y40{bottom:346.680000px;}
.y3f{bottom:368.640000px;}
.y1a{bottom:386.280000px;}
.y3e{bottom:390.600000px;}
.y19{bottom:407.880000px;}
.y3d{bottom:412.200000px;}
.y18{bottom:429.840000px;}
.y3c{bottom:434.160000px;}
.y17{bottom:451.440000px;}
.y3b{bottom:455.760000px;}
.y16{bottom:473.400000px;}
.y3a{bottom:477.720000px;}
.y15{bottom:495.360000px;}
.y39{bottom:499.680000px;}
.y14{bottom:516.960000px;}
.y38{bottom:521.280000px;}
.y13{bottom:538.920000px;}
.y37{bottom:543.240000px;}
.y12{bottom:560.520000px;}
.y36{bottom:564.840000px;}
.y35{bottom:586.800000px;}
.y11{bottom:587.880000px;}
.y34{bottom:608.760000px;}
.y10{bottom:609.120000px;}
.yf{bottom:630.000000px;}
.y33{bottom:630.360000px;}
.ye{bottom:650.880000px;}
.y32{bottom:652.320000px;}
.yd{bottom:671.400000px;}
.y31{bottom:674.280000px;}
.yc{bottom:692.280000px;}
.y30{bottom:703.440000px;}
.yb{bottom:713.160000px;}
.ya{bottom:734.040000px;}
.y2f{bottom:753.120000px;}
.y9{bottom:754.920000px;}
.y2e{bottom:774.360000px;}
.y8{bottom:775.800000px;}
.y2d{bottom:795.240000px;}
.y7{bottom:822.240000px;}
.y2c{bottom:841.680000px;}
.y6{bottom:872.640000px;}
.y2b{bottom:892.080000px;}
.y5{bottom:894.240000px;}
.y2a{bottom:913.680000px;}
.y4{bottom:916.200000px;}
.y29{bottom:936.720000px;}
.y3{bottom:951.840000px;}
.y28{bottom:958.680000px;}
.y27{bottom:981.360000px;}
.y26{bottom:1003.320000px;}
.y2{bottom:1021.680000px;}
.y25{bottom:1042.560000px;}
.y24{bottom:1064.520000px;}
.h7{height:39.837656px;}
.h1{height:43.470000px;}
.h6{height:44.149219px;}
.h5{height:46.158750px;}
.h3{height:48.289219px;}
.h4{height:60.804844px;}
.h2{height:87.013828px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:192.239856px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.612864pt;}
.ls24{letter-spacing:-0.350208pt;}
.ls1d{letter-spacing:-0.259072pt;}
.ls16{letter-spacing:-0.219648pt;}
.ls19{letter-spacing:-0.214016pt;}
.ls14{letter-spacing:-0.202752pt;}
.ls1b{letter-spacing:-0.176640pt;}
.ls15{letter-spacing:-0.168960pt;}
.ls17{letter-spacing:-0.157696pt;}
.lsf{letter-spacing:-0.141312pt;}
.ls23{letter-spacing:-0.123648pt;}
.ls10{letter-spacing:-0.111872pt;}
.ls1a{letter-spacing:-0.107008pt;}
.ls11{letter-spacing:-0.105984pt;}
.ls12{letter-spacing:-0.070656pt;}
.ls18{letter-spacing:-0.061952pt;}
.ls1c{letter-spacing:-0.035328pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.112640pt;}
.lsd{letter-spacing:0.116864pt;}
.lse{letter-spacing:0.138112pt;}
.ls21{letter-spacing:0.207872pt;}
.ls20{letter-spacing:0.215296pt;}
.ls8{letter-spacing:0.248576pt;}
.ls9{letter-spacing:0.252416pt;}
.ls3{letter-spacing:0.253440pt;}
.ls1{letter-spacing:0.254976pt;}
.ls0{letter-spacing:0.283776pt;}
.ls1f{letter-spacing:0.284032pt;}
.ls13{letter-spacing:0.319232pt;}
.lsa{letter-spacing:0.778368pt;}
.lsb{letter-spacing:0.779520pt;}
.ls6{letter-spacing:1.525760pt;}
.ls22{letter-spacing:9.281152pt;}
.ls1e{letter-spacing:52.647040pt;}
.ls7{letter-spacing:54.585216pt;}
.ls4{letter-spacing:162.465280pt;}
.ls5{letter-spacing:175.631360pt;}
.ws1{word-spacing:-29.672832pt;}
.ws0{word-spacing:-29.651584pt;}
.ws5{word-spacing:-20.957952pt;}
.wsf{word-spacing:-20.854016pt;}
.ws10{word-spacing:-20.846592pt;}
.ws7{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.297984pt;}
.ws3{word-spacing:-16.262656pt;}
.ws2{word-spacing:-16.256768pt;}
.ws4{word-spacing:-16.227328pt;}
.ws6{word-spacing:-15.656960pt;}
.wsb{word-spacing:-15.595008pt;}
.wsa{word-spacing:-15.488000pt;}
.ws9{word-spacing:-15.437312pt;}
.ws11{word-spacing:-13.521920pt;}
.ws12{word-spacing:-13.171712pt;}
.wsd{word-spacing:-0.058880pt;}
.ws8{word-spacing:-0.056320pt;}
.wsc{word-spacing:0.000000pt;}
._5{margin-left:-175.631360pt;}
._2{margin-left:-162.465280pt;}
._1{margin-left:-31.434368pt;}
._a{margin-left:-3.996416pt;}
._c{margin-left:-2.311424pt;}
._0{margin-left:-0.959744pt;}
._4{width:0.935808pt;}
._8{width:2.486656pt;}
._7{width:3.886080pt;}
._6{width:5.181440pt;}
._13{width:6.521984pt;}
._16{width:8.431104pt;}
._15{width:9.597440pt;}
._f{width:12.429824pt;}
._e{width:13.424640pt;}
._17{width:17.419648pt;}
._11{width:18.458368pt;}
._10{width:19.371520pt;}
._14{width:21.687680pt;}
._9{width:22.696960pt;}
._3{width:25.730560pt;}
._b{width:27.089920pt;}
._12{width:52.546560pt;}
._d{width:54.435840pt;}
.fs5{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.120000pt;}
.y23{bottom:104.320000pt;}
.y4a{bottom:115.840000pt;}
.y22{bottom:123.840000pt;}
.y49{bottom:131.520000pt;}
.y48{bottom:147.520000pt;}
.y21{bottom:150.080000pt;}
.y47{bottom:161.600000pt;}
.y46{bottom:193.600000pt;}
.y20{bottom:193.920000pt;}
.y45{bottom:213.120000pt;}
.y1f{bottom:213.760000pt;}
.y44{bottom:232.320000pt;}
.y1e{bottom:233.280000pt;}
.y43{bottom:251.840000pt;}
.y1d{bottom:252.800000pt;}
.y42{bottom:271.360000pt;}
.y1c{bottom:272.000000pt;}
.y41{bottom:290.240000pt;}
.y1b{bottom:298.560000pt;}
.y40{bottom:308.160000pt;}
.y3f{bottom:327.680000pt;}
.y1a{bottom:343.360000pt;}
.y3e{bottom:347.200000pt;}
.y19{bottom:362.560000pt;}
.y3d{bottom:366.400000pt;}
.y18{bottom:382.080000pt;}
.y3c{bottom:385.920000pt;}
.y17{bottom:401.280000pt;}
.y3b{bottom:405.120000pt;}
.y16{bottom:420.800000pt;}
.y3a{bottom:424.640000pt;}
.y15{bottom:440.320000pt;}
.y39{bottom:444.160000pt;}
.y14{bottom:459.520000pt;}
.y38{bottom:463.360000pt;}
.y13{bottom:479.040000pt;}
.y37{bottom:482.880000pt;}
.y12{bottom:498.240000pt;}
.y36{bottom:502.080000pt;}
.y35{bottom:521.600000pt;}
.y11{bottom:522.560000pt;}
.y34{bottom:541.120000pt;}
.y10{bottom:541.440000pt;}
.yf{bottom:560.000000pt;}
.y33{bottom:560.320000pt;}
.ye{bottom:578.560000pt;}
.y32{bottom:579.840000pt;}
.yd{bottom:596.800000pt;}
.y31{bottom:599.360000pt;}
.yc{bottom:615.360000pt;}
.y30{bottom:625.280000pt;}
.yb{bottom:633.920000pt;}
.ya{bottom:652.480000pt;}
.y2f{bottom:669.440000pt;}
.y9{bottom:671.040000pt;}
.y2e{bottom:688.320000pt;}
.y8{bottom:689.600000pt;}
.y2d{bottom:706.880000pt;}
.y7{bottom:730.880000pt;}
.y2c{bottom:748.160000pt;}
.y6{bottom:775.680000pt;}
.y2b{bottom:792.960000pt;}
.y5{bottom:794.880000pt;}
.y2a{bottom:812.160000pt;}
.y4{bottom:814.400000pt;}
.y29{bottom:832.640000pt;}
.y3{bottom:846.080000pt;}
.y28{bottom:852.160000pt;}
.y27{bottom:872.320000pt;}
.y26{bottom:891.840000pt;}
.y2{bottom:908.160000pt;}
.y25{bottom:926.720000pt;}
.y24{bottom:946.240000pt;}
.h7{height:35.411250pt;}
.h1{height:38.640000pt;}
.h6{height:39.243750pt;}
.h5{height:41.030000pt;}
.h3{height:42.923750pt;}
.h4{height:54.048750pt;}
.h2{height:77.345625pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:170.879872pt;}
}




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