
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_9e041c463132bd60af07555a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b231cd0cd983fe6a2c406c87.woff2')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_7cff299bc2f91f2e8f0a06a8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_75419e9aad7f78377be93400.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse{letter-spacing:-0.960000px;}
.ls13{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.431400px;}
.lsd{letter-spacing:-0.414000px;}
.ls16{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.226200px;}
.lsc{letter-spacing:-0.115800px;}
.ls14{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.038160px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.025200px;}
.ls12{letter-spacing:0.060600px;}
.ls21{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.210000px;}
.ls8{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.294240px;}
.ls1b{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.393600px;}
.ls22{letter-spacing:0.455520px;}
.ls17{letter-spacing:0.479520px;}
.ls18{letter-spacing:0.637200px;}
.lsb{letter-spacing:0.654000px;}
.ls1d{letter-spacing:0.888000px;}
.ls4{letter-spacing:0.894240px;}
.ls1e{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls20{letter-spacing:12.186720px;}
.ls1f{letter-spacing:42.426720px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.641760px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsd{word-spacing:-14.393760px;}
.ws9{word-spacing:-13.566360px;}
.wsb{word-spacing:-13.530960px;}
.ws5{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.467600px;}
.ws8{word-spacing:-13.447440px;}
.wse{word-spacing:-13.440960px;}
.wsa{word-spacing:-13.398360px;}
.ws6{word-spacing:-13.389960px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1461.320400px;}
._2{margin-left:-1339.637760px;}
._3{margin-left:-955.180800px;}
._5{margin-left:-592.236960px;}
._7{margin-left:-4.380480px;}
._6{margin-left:-3.312000px;}
._f{margin-left:-2.270160px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.834640px;}
._e{width:4.828800px;}
._d{width:5.959680px;}
._c{width:7.111440px;}
._9{width:8.464320px;}
._8{width:9.583200px;}
._b{width:10.914480px;}
._10{width:12.414000px;}
._11{width:15.059520px;}
._13{width:16.326720px;}
._12{width:17.555160px;}
._15{width:19.481760px;}
._16{width:20.517840px;}
._17{width:22.308720px;}
._19{width:25.240320px;}
._18{width:27.049680px;}
._14{width:32.688720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:2.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:6.660000px;}
.y6c{bottom:27.720000px;}
.y69{bottom:34.740000px;}
.y6b{bottom:48.780000px;}
.y6{bottom:61.596000px;}
.y6a{bottom:69.834000px;}
.y67{bottom:91.296000px;}
.y68{bottom:94.716000px;}
.y32{bottom:98.316000px;}
.y66{bottom:112.356000px;}
.y31{bottom:119.376000px;}
.y65{bottom:133.416000px;}
.y30{bottom:140.436000px;}
.y64{bottom:154.470000px;}
.y2f{bottom:161.490000px;}
.y63{bottom:175.530000px;}
.y2e{bottom:182.550000px;}
.y62{bottom:196.590000px;}
.y2d{bottom:203.610000px;}
.y61{bottom:217.650000px;}
.y2c{bottom:224.670000px;}
.y60{bottom:238.710000px;}
.y2b{bottom:245.730000px;}
.y5f{bottom:259.770000px;}
.y2a{bottom:266.790000px;}
.y5e{bottom:280.830000px;}
.y29{bottom:287.895000px;}
.y5d{bottom:301.935000px;}
.y28{bottom:308.955000px;}
.y5c{bottom:322.995000px;}
.y27{bottom:330.015000px;}
.y5b{bottom:344.055000px;}
.y26{bottom:351.075000px;}
.y5a{bottom:365.115000px;}
.y25{bottom:372.135000px;}
.y59{bottom:386.175000px;}
.y24{bottom:393.195000px;}
.y58{bottom:407.235000px;}
.y23{bottom:414.255000px;}
.y57{bottom:428.295000px;}
.y22{bottom:435.315000px;}
.y56{bottom:449.355000px;}
.y21{bottom:456.375000px;}
.y55{bottom:470.415000px;}
.y20{bottom:477.435000px;}
.y54{bottom:491.475000px;}
.y1f{bottom:498.495000px;}
.y53{bottom:512.535000px;}
.y1e{bottom:519.555000px;}
.y52{bottom:533.595000px;}
.y1d{bottom:540.615000px;}
.y51{bottom:554.655000px;}
.y1c{bottom:564.015000px;}
.y50{bottom:575.745000px;}
.y1b{bottom:593.925000px;}
.y4f{bottom:596.805000px;}
.y1a{bottom:614.985000px;}
.y4e{bottom:617.865000px;}
.y19{bottom:636.045000px;}
.y4d{bottom:638.925000px;}
.y18{bottom:657.105000px;}
.y4c{bottom:659.805000px;}
.y17{bottom:678.165000px;}
.y4b{bottom:680.865000px;}
.y16{bottom:699.225000px;}
.y4a{bottom:701.925000px;}
.y15{bottom:720.285000px;}
.y49{bottom:722.985000px;}
.y14{bottom:741.345000px;}
.y48{bottom:744.045000px;}
.y13{bottom:762.405000px;}
.y47{bottom:765.105000px;}
.y12{bottom:783.465000px;}
.y46{bottom:786.165000px;}
.y11{bottom:804.525000px;}
.y45{bottom:807.225000px;}
.y10{bottom:825.585000px;}
.y44{bottom:828.285000px;}
.yf{bottom:846.645000px;}
.y43{bottom:849.390000px;}
.ye{bottom:867.750000px;}
.y42{bottom:870.450000px;}
.yd{bottom:888.810000px;}
.y41{bottom:891.510000px;}
.yc{bottom:910.050000px;}
.y40{bottom:912.570000px;}
.yb{bottom:933.270000px;}
.y3f{bottom:933.630000px;}
.ya{bottom:954.330000px;}
.y3e{bottom:954.690000px;}
.y3d{bottom:975.750000px;}
.y9{bottom:976.110000px;}
.y3c{bottom:996.810000px;}
.y8{bottom:998.430000px;}
.y3b{bottom:1017.870000px;}
.y7{bottom:1023.630000px;}
.y3a{bottom:1038.930000px;}
.y39{bottom:1059.990000px;}
.y5{bottom:1063.230000px;}
.y38{bottom:1081.050000px;}
.y4{bottom:1094.730000px;}
.y37{bottom:1102.110000px;}
.y36{bottom:1123.170000px;}
.y3{bottom:1126.050000px;}
.y35{bottom:1144.260000px;}
.y2{bottom:1157.580000px;}
.y34{bottom:1165.320000px;}
.y1{bottom:1191.240000px;}
.y33{bottom:1193.220000px;}
.hb{height:2.864531px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h6{height:61.189805px;}
.h9{height:61.423863px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:83.787539px;}
.ha{height:84.240000px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x2{left:51.839987px;}
.x3{left:52.919987px;}
.x1{left:53.999987px;}
.x6{left:73.979987px;}
.x7{left:75.239987px;}
.x4{left:80.999987px;}
.x5{left:108.035987px;}
.x8{left:190.110000px;}
.x9{left:264.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.853333pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.383467pt;}
.lsd{letter-spacing:-0.368000pt;}
.ls16{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.201067pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls14{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.022400pt;}
.ls12{letter-spacing:0.053867pt;}
.ls21{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.186667pt;}
.ls8{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.261547pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.349867pt;}
.ls22{letter-spacing:0.404907pt;}
.ls17{letter-spacing:0.426240pt;}
.ls18{letter-spacing:0.566400pt;}
.lsb{letter-spacing:0.581333pt;}
.ls1d{letter-spacing:0.789333pt;}
.ls4{letter-spacing:0.794880pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls20{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:37.712640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.794453pt;}
.ws9{word-spacing:-12.058987pt;}
.wsb{word-spacing:-12.027520pt;}
.ws5{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.971200pt;}
.ws8{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.947520pt;}
.wsa{word-spacing:-11.909653pt;}
.ws6{word-spacing:-11.902187pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1298.951467pt;}
._2{margin-left:-1190.789120pt;}
._3{margin-left:-849.049600pt;}
._5{margin-left:-526.432853pt;}
._7{margin-left:-3.893760pt;}
._6{margin-left:-2.944000pt;}
._f{margin-left:-2.017920pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.519680pt;}
._e{width:4.292267pt;}
._d{width:5.297493pt;}
._c{width:6.321280pt;}
._9{width:7.523840pt;}
._8{width:8.518400pt;}
._b{width:9.701760pt;}
._10{width:11.034667pt;}
._11{width:13.386240pt;}
._13{width:14.512640pt;}
._12{width:15.604587pt;}
._15{width:17.317120pt;}
._16{width:18.238080pt;}
._17{width:19.829973pt;}
._19{width:22.435840pt;}
._18{width:24.044160pt;}
._14{width:29.056640pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:5.920000pt;}
.y6c{bottom:24.640000pt;}
.y69{bottom:30.880000pt;}
.y6b{bottom:43.360000pt;}
.y6{bottom:54.752000pt;}
.y6a{bottom:62.074667pt;}
.y67{bottom:81.152000pt;}
.y68{bottom:84.192000pt;}
.y32{bottom:87.392000pt;}
.y66{bottom:99.872000pt;}
.y31{bottom:106.112000pt;}
.y65{bottom:118.592000pt;}
.y30{bottom:124.832000pt;}
.y64{bottom:137.306667pt;}
.y2f{bottom:143.546667pt;}
.y63{bottom:156.026667pt;}
.y2e{bottom:162.266667pt;}
.y62{bottom:174.746667pt;}
.y2d{bottom:180.986667pt;}
.y61{bottom:193.466667pt;}
.y2c{bottom:199.706667pt;}
.y60{bottom:212.186667pt;}
.y2b{bottom:218.426667pt;}
.y5f{bottom:230.906667pt;}
.y2a{bottom:237.146667pt;}
.y5e{bottom:249.626667pt;}
.y29{bottom:255.906667pt;}
.y5d{bottom:268.386667pt;}
.y28{bottom:274.626667pt;}
.y5c{bottom:287.106667pt;}
.y27{bottom:293.346667pt;}
.y5b{bottom:305.826667pt;}
.y26{bottom:312.066667pt;}
.y5a{bottom:324.546667pt;}
.y25{bottom:330.786667pt;}
.y59{bottom:343.266667pt;}
.y24{bottom:349.506667pt;}
.y58{bottom:361.986667pt;}
.y23{bottom:368.226667pt;}
.y57{bottom:380.706667pt;}
.y22{bottom:386.946667pt;}
.y56{bottom:399.426667pt;}
.y21{bottom:405.666667pt;}
.y55{bottom:418.146667pt;}
.y20{bottom:424.386667pt;}
.y54{bottom:436.866667pt;}
.y1f{bottom:443.106667pt;}
.y53{bottom:455.586667pt;}
.y1e{bottom:461.826667pt;}
.y52{bottom:474.306667pt;}
.y1d{bottom:480.546667pt;}
.y51{bottom:493.026667pt;}
.y1c{bottom:501.346667pt;}
.y50{bottom:511.773333pt;}
.y1b{bottom:527.933333pt;}
.y4f{bottom:530.493333pt;}
.y1a{bottom:546.653333pt;}
.y4e{bottom:549.213333pt;}
.y19{bottom:565.373333pt;}
.y4d{bottom:567.933333pt;}
.y18{bottom:584.093333pt;}
.y4c{bottom:586.493333pt;}
.y17{bottom:602.813333pt;}
.y4b{bottom:605.213333pt;}
.y16{bottom:621.533333pt;}
.y4a{bottom:623.933333pt;}
.y15{bottom:640.253333pt;}
.y49{bottom:642.653333pt;}
.y14{bottom:658.973333pt;}
.y48{bottom:661.373333pt;}
.y13{bottom:677.693333pt;}
.y47{bottom:680.093333pt;}
.y12{bottom:696.413333pt;}
.y46{bottom:698.813333pt;}
.y11{bottom:715.133333pt;}
.y45{bottom:717.533333pt;}
.y10{bottom:733.853333pt;}
.y44{bottom:736.253333pt;}
.yf{bottom:752.573333pt;}
.y43{bottom:755.013333pt;}
.ye{bottom:771.333333pt;}
.y42{bottom:773.733333pt;}
.yd{bottom:790.053333pt;}
.y41{bottom:792.453333pt;}
.yc{bottom:808.933333pt;}
.y40{bottom:811.173333pt;}
.yb{bottom:829.573333pt;}
.y3f{bottom:829.893333pt;}
.ya{bottom:848.293333pt;}
.y3e{bottom:848.613333pt;}
.y3d{bottom:867.333333pt;}
.y9{bottom:867.653333pt;}
.y3c{bottom:886.053333pt;}
.y8{bottom:887.493333pt;}
.y3b{bottom:904.773333pt;}
.y7{bottom:909.893333pt;}
.y3a{bottom:923.493333pt;}
.y39{bottom:942.213333pt;}
.y5{bottom:945.093333pt;}
.y38{bottom:960.933333pt;}
.y4{bottom:973.093333pt;}
.y37{bottom:979.653333pt;}
.y36{bottom:998.373333pt;}
.y3{bottom:1000.933333pt;}
.y35{bottom:1017.120000pt;}
.y2{bottom:1028.960000pt;}
.y34{bottom:1035.840000pt;}
.y1{bottom:1058.880000pt;}
.y33{bottom:1060.640000pt;}
.hb{height:2.546250pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h6{height:54.390938pt;}
.h9{height:54.598989pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:74.477812pt;}
.ha{height:74.880000pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x2{left:46.079988pt;}
.x3{left:47.039988pt;}
.x1{left:47.999988pt;}
.x6{left:65.759988pt;}
.x7{left:66.879988pt;}
.x4{left:71.999988pt;}
.x5{left:96.031988pt;}
.x8{left:168.986667pt;}
.x9{left:235.386667pt;}
}




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