
    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_3b01dcf495b8f7ce1be690ef.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1314cc375cfa2474ed650916.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_aba03d57d927285acec6b9d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.915527;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_5bd536483dd61573070e0c2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_725f9e1bf646899716f9d540.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_10184fdf4273fff438df162e.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000600px;}
.ls13{letter-spacing:0.010800px;}
.ls5{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.050400px;}
.ls3{letter-spacing:0.054120px;}
.ls4{letter-spacing:0.163296px;}
.ls9{letter-spacing:0.186624px;}
.ls1{letter-spacing:0.191160px;}
.lsa{letter-spacing:0.225504px;}
.ls10{letter-spacing:0.275616px;}
.ls11{letter-spacing:0.283968px;}
.ls0{letter-spacing:0.410256px;}
.ls2{letter-spacing:0.479640px;}
.ls7{letter-spacing:0.527472px;}
.lsd{letter-spacing:0.551232px;}
.lsf{letter-spacing:0.712800px;}
.lse{letter-spacing:0.760320px;}
.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;}
}
.wsa{word-spacing:-27.133920px;}
.ws2{word-spacing:-21.803904px;}
.ws3{word-spacing:-20.066400px;}
.ws6{word-spacing:-20.052000px;}
.ws5{word-spacing:-20.030400px;}
.ws9{word-spacing:-20.016000px;}
.ws8{word-spacing:-20.001600px;}
.ws0{word-spacing:-15.339312px;}
.ws1{word-spacing:-15.222096px;}
.ws7{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._23{margin-left:-14.326260px;}
._8{margin-left:-4.158396px;}
._0{margin-left:-1.010868px;}
._4{width:1.005432px;}
._17{width:2.066880px;}
._3{width:3.084168px;}
._2{width:4.236900px;}
._e{width:5.322000px;}
._14{width:6.585600px;}
._a{width:8.258400px;}
._b{width:9.372300px;}
._6{width:11.066400px;}
._f{width:12.124800px;}
._13{width:13.204800px;}
._19{width:14.241600px;}
._7{width:15.415200px;}
._1f{width:16.512300px;}
._1{width:17.733600px;}
._1c{width:18.763200px;}
._12{width:21.146400px;}
._c{width:22.161600px;}
._20{width:23.191200px;}
._1e{width:24.592200px;}
._15{width:26.013600px;}
._18{width:27.338400px;}
._1a{width:29.181600px;}
._26{width:30.521700px;}
._1b{width:34.012800px;}
._2c{width:36.158400px;}
._9{width:37.476000px;}
._24{width:38.685600px;}
._16{width:41.580000px;}
._27{width:43.135200px;}
._2d{width:44.751600px;}
._11{width:46.365000px;}
._1d{width:48.585600px;}
._d{width:51.563400px;}
._10{width:54.843000px;}
._5{width:64.836000px;}
._25{width:66.153600px;}
._22{width:68.549400px;}
._21{width:73.464600px;}
._2b{width:152.841600px;}
._29{width:205.057200px;}
._2a{width:477.026400px;}
._2e{width:532.764000px;}
._28{width:1818.482400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:53.280000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.600030px;}
.y3{bottom:119.999955px;}
.y52{bottom:169.319970px;}
.y99{bottom:170.039970px;}
.y71{bottom:176.879970px;}
.y3e{bottom:177.599970px;}
.y27{bottom:193.079970px;}
.y68{bottom:193.439970px;}
.y86{bottom:196.679970px;}
.y98{bottom:200.999970px;}
.ya8{bottom:209.999970px;}
.y10{bottom:210.359970px;}
.y51{bottom:217.559970px;}
.y26{bottom:224.039970px;}
.y67{bottom:224.759970px;}
.y3d{bottom:226.919970px;}
.y85{bottom:227.639970px;}
.y97{bottom:232.319970px;}
.y50{bottom:248.519970px;}
.ya7{bottom:251.039970px;}
.yf{bottom:258.239970px;}
.y84{bottom:258.599970px;}
.y25{bottom:272.279970px;}
.y66{bottom:272.999970px;}
.y3c{bottom:275.879970px;}
.y96{bottom:281.279970px;}
.y83{bottom:289.919970px;}
.y4f{bottom:296.399970px;}
.ye{bottom:306.479970px;}
.y3b{bottom:306.839970px;}
.ya6{bottom:309.719970px;}
.y95{bottom:312.239970px;}
.y24{bottom:321.239970px;}
.y65{bottom:321.959970px;}
.y4e{bottom:327.719970px;}
.y3a{bottom:338.159970px;}
.y94{bottom:343.559970px;}
.y82{bottom:346.799970px;}
.ya5{bottom:351.119970px;}
.yd{bottom:354.359970px;}
.y23{bottom:369.479970px;}
.y64{bottom:371.279970px;}
.y93{bottom:374.879970px;}
.y4d{bottom:375.599970px;}
.y81{bottom:377.759970px;}
.y39{bottom:387.119970px;}
.ya4{bottom:392.159970px;}
.y22{bottom:400.439970px;}
.yc{bottom:402.599970px;}
.y4c{bottom:406.919970px;}
.y80{bottom:408.719970px;}
.y38{bottom:418.439970px;}
.y63{bottom:420.599970px;}
.y92{bottom:423.839970px;}
.y21{bottom:431.399970px;}
.y7f{bottom:440.039970px;}
.y37{bottom:449.399970px;}
.yb{bottom:450.839970px;}
.y62{bottom:451.559970px;}
.y4b{bottom:454.799970px;}
.y20{bottom:462.359970px;}
.y7e{bottom:479.999970px;}
.y36{bottom:480.719970px;}
.y61{bottom:482.519970px;}
.y4a{bottom:485.759970px;}
.y91{bottom:486.119970px;}
.ya3{bottom:492.239970px;}
.y1f{bottom:493.679970px;}
.ya{bottom:498.719970px;}
.y7d{bottom:510.959970px;}
.y60{bottom:513.839970px;}
.y49{bottom:516.719970px;}
.y35{bottom:529.679970px;}
.ya2{bottom:533.639970px;}
.y90{bottom:535.079970px;}
.y1e{bottom:541.919970px;}
.y9{bottom:546.959970px;}
.y48{bottom:548.039970px;}
.y70{bottom:550.919970px;}
.y34{bottom:560.639970px;}
.y5f{bottom:562.799970px;}
.y8f{bottom:566.399970px;}
.y7c{bottom:573.239970px;}
.y47{bottom:578.999970px;}
.y6f{bottom:582.239970px;}
.y1d{bottom:590.879970px;}
.y33{bottom:591.959970px;}
.ya1{bottom:592.319970px;}
.y5e{bottom:593.759970px;}
.y8{bottom:594.839970px;}
.y7b{bottom:604.199970px;}
.y46{bottom:610.319970px;}
.y6e{bottom:613.199970px;}
.y8e{bottom:614.279970px;}
.y1c{bottom:622.199970px;}
.y5d{bottom:625.079970px;}
.ya0{bottom:633.719970px;}
.y32{bottom:641.279970px;}
.y7{bottom:643.079970px;}
.y6d{bottom:644.159970px;}
.y8d{bottom:645.239970px;}
.y7a{bottom:646.319970px;}
.y5c{bottom:656.039970px;}
.y45{bottom:658.199970px;}
.y1b{bottom:670.079970px;}
.y9f{bottom:674.759970px;}
.y6c{bottom:675.119970px;}
.y8c{bottom:676.199970px;}
.y5b{bottom:686.999970px;}
.y31{bottom:689.159970px;}
.y6{bottom:690.959970px;}
.y79{bottom:698.519970px;}
.y1a{bottom:701.039970px;}
.y6b{bottom:706.439970px;}
.y8b{bottom:707.519970px;}
.y5a{bottom:717.959970px;}
.y30{bottom:720.119970px;}
.y44{bottom:720.479970px;}
.y78{bottom:729.479970px;}
.y19{bottom:732.359970px;}
.y9e{bottom:733.439970px;}
.y6a{bottom:737.399970px;}
.y8a{bottom:738.479970px;}
.y5{bottom:748.919970px;}
.y59{bottom:749.279970px;}
.y2f{bottom:751.079970px;}
.y77{bottom:760.439970px;}
.y43{bottom:768.359970px;}
.y9d{bottom:774.479970px;}
.y2e{bottom:782.399970px;}
.y89{bottom:786.359970px;}
.y76{bottom:791.759970px;}
.y18{bottom:793.919970px;}
.y4{bottom:795.719970px;}
.y42{bottom:799.319970px;}
.y58{bottom:810.839970px;}
.y88{bottom:817.679970px;}
.y69{bottom:827.759970px;}
.y2d{bottom:830.279970px;}
.y9c{bottom:836.399970px;}
.y75{bottom:839.639970px;}
.y17{bottom:848.639970px;}
.yab{bottom:852.239970px;}
.y2c{bottom:861.239970px;}
.y41{bottom:861.599970px;}
.y57{bottom:865.559970px;}
.y74{bottom:870.599970px;}
.y16{bottom:879.599970px;}
.y9b{bottom:891.479970px;}
.y2b{bottom:892.559970px;}
.y56{bottom:896.519970px;}
.y73{bottom:901.559970px;}
.y40{bottom:909.479970px;}
.y15{bottom:910.559970px;}
.y87{bottom:910.919970px;}
.y2a{bottom:923.519970px;}
.y55{bottom:927.839970px;}
.y72{bottom:932.879970px;}
.y3f{bottom:940.439970px;}
.y14{bottom:941.879970px;}
.yaa{bottom:951.959970px;}
.y54{bottom:958.799970px;}
.y29{bottom:971.759970px;}
.y13{bottom:972.839970px;}
.y53{bottom:989.759970px;}
.y9a{bottom:1002.719970px;}
.y12{bottom:1003.799970px;}
.ya9{bottom:1010.639970px;}
.y28{bottom:1020.719970px;}
.y11{bottom:1052.039820px;}
.y2{bottom:1100.639970px;}
.h2{height:38.789297px;}
.h3{height:64.546875px;}
.h5{height:65.003906px;}
.h4{height:70.204219px;}
.h7{height:75.486094px;}
.h6{height:85.805156px;}
.h1{height:1219.800000px;}
.h0{height:1263.000000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x2{left:100.439925px;}
.x6{left:127.440000px;}
.x8{left:132.614850px;}
.x7{left:154.440000px;}
.x9{left:164.265000px;}
.x5{left:178.223100px;}
.xc{left:319.234500px;}
.xb{left:379.272600px;}
.xd{left:398.296500px;}
.x3{left:403.301850px;}
.xa{left:689.356200px;}
.x4{left:738.395850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000533pt;}
.ls13{letter-spacing:0.009600pt;}
.ls5{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.044800pt;}
.ls3{letter-spacing:0.048107pt;}
.ls4{letter-spacing:0.145152pt;}
.ls9{letter-spacing:0.165888pt;}
.ls1{letter-spacing:0.169920pt;}
.lsa{letter-spacing:0.200448pt;}
.ls10{letter-spacing:0.244992pt;}
.ls11{letter-spacing:0.252416pt;}
.ls0{letter-spacing:0.364672pt;}
.ls2{letter-spacing:0.426347pt;}
.ls7{letter-spacing:0.468864pt;}
.lsd{letter-spacing:0.489984pt;}
.lsf{letter-spacing:0.633600pt;}
.lse{letter-spacing:0.675840pt;}
.wsa{word-spacing:-24.119040pt;}
.ws2{word-spacing:-19.381248pt;}
.ws3{word-spacing:-17.836800pt;}
.ws6{word-spacing:-17.824000pt;}
.ws5{word-spacing:-17.804800pt;}
.ws9{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.779200pt;}
.ws0{word-spacing:-13.634944pt;}
.ws1{word-spacing:-13.530752pt;}
.ws7{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._23{margin-left:-12.734453pt;}
._8{margin-left:-3.696352pt;}
._0{margin-left:-0.898549pt;}
._4{width:0.893717pt;}
._17{width:1.837227pt;}
._3{width:2.741483pt;}
._2{width:3.766133pt;}
._e{width:4.730667pt;}
._14{width:5.853867pt;}
._a{width:7.340800pt;}
._b{width:8.330933pt;}
._6{width:9.836800pt;}
._f{width:10.777600pt;}
._13{width:11.737600pt;}
._19{width:12.659200pt;}
._7{width:13.702400pt;}
._1f{width:14.677600pt;}
._1{width:15.763200pt;}
._1c{width:16.678400pt;}
._12{width:18.796800pt;}
._c{width:19.699200pt;}
._20{width:20.614400pt;}
._1e{width:21.859733pt;}
._15{width:23.123200pt;}
._18{width:24.300800pt;}
._1a{width:25.939200pt;}
._26{width:27.130400pt;}
._1b{width:30.233600pt;}
._2c{width:32.140800pt;}
._9{width:33.312000pt;}
._24{width:34.387200pt;}
._16{width:36.960000pt;}
._27{width:38.342400pt;}
._2d{width:39.779200pt;}
._11{width:41.213333pt;}
._1d{width:43.187200pt;}
._d{width:45.834133pt;}
._10{width:48.749333pt;}
._5{width:57.632000pt;}
._25{width:58.803200pt;}
._22{width:60.932800pt;}
._21{width:65.301867pt;}
._2b{width:135.859200pt;}
._29{width:182.273067pt;}
._2a{width:424.023467pt;}
._2e{width:473.568000pt;}
._28{width:1616.428800pt;}
.fs0{font-size:47.360000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:19.200027pt;}
.y3{bottom:106.666627pt;}
.y52{bottom:150.506640pt;}
.y99{bottom:151.146640pt;}
.y71{bottom:157.226640pt;}
.y3e{bottom:157.866640pt;}
.y27{bottom:171.626640pt;}
.y68{bottom:171.946640pt;}
.y86{bottom:174.826640pt;}
.y98{bottom:178.666640pt;}
.ya8{bottom:186.666640pt;}
.y10{bottom:186.986640pt;}
.y51{bottom:193.386640pt;}
.y26{bottom:199.146640pt;}
.y67{bottom:199.786640pt;}
.y3d{bottom:201.706640pt;}
.y85{bottom:202.346640pt;}
.y97{bottom:206.506640pt;}
.y50{bottom:220.906640pt;}
.ya7{bottom:223.146640pt;}
.yf{bottom:229.546640pt;}
.y84{bottom:229.866640pt;}
.y25{bottom:242.026640pt;}
.y66{bottom:242.666640pt;}
.y3c{bottom:245.226640pt;}
.y96{bottom:250.026640pt;}
.y83{bottom:257.706640pt;}
.y4f{bottom:263.466640pt;}
.ye{bottom:272.426640pt;}
.y3b{bottom:272.746640pt;}
.ya6{bottom:275.306640pt;}
.y95{bottom:277.546640pt;}
.y24{bottom:285.546640pt;}
.y65{bottom:286.186640pt;}
.y4e{bottom:291.306640pt;}
.y3a{bottom:300.586640pt;}
.y94{bottom:305.386640pt;}
.y82{bottom:308.266640pt;}
.ya5{bottom:312.106640pt;}
.yd{bottom:314.986640pt;}
.y23{bottom:328.426640pt;}
.y64{bottom:330.026640pt;}
.y93{bottom:333.226640pt;}
.y4d{bottom:333.866640pt;}
.y81{bottom:335.786640pt;}
.y39{bottom:344.106640pt;}
.ya4{bottom:348.586640pt;}
.y22{bottom:355.946640pt;}
.yc{bottom:357.866640pt;}
.y4c{bottom:361.706640pt;}
.y80{bottom:363.306640pt;}
.y38{bottom:371.946640pt;}
.y63{bottom:373.866640pt;}
.y92{bottom:376.746640pt;}
.y21{bottom:383.466640pt;}
.y7f{bottom:391.146640pt;}
.y37{bottom:399.466640pt;}
.yb{bottom:400.746640pt;}
.y62{bottom:401.386640pt;}
.y4b{bottom:404.266640pt;}
.y20{bottom:410.986640pt;}
.y7e{bottom:426.666640pt;}
.y36{bottom:427.306640pt;}
.y61{bottom:428.906640pt;}
.y4a{bottom:431.786640pt;}
.y91{bottom:432.106640pt;}
.ya3{bottom:437.546640pt;}
.y1f{bottom:438.826640pt;}
.ya{bottom:443.306640pt;}
.y7d{bottom:454.186640pt;}
.y60{bottom:456.746640pt;}
.y49{bottom:459.306640pt;}
.y35{bottom:470.826640pt;}
.ya2{bottom:474.346640pt;}
.y90{bottom:475.626640pt;}
.y1e{bottom:481.706640pt;}
.y9{bottom:486.186640pt;}
.y48{bottom:487.146640pt;}
.y70{bottom:489.706640pt;}
.y34{bottom:498.346640pt;}
.y5f{bottom:500.266640pt;}
.y8f{bottom:503.466640pt;}
.y7c{bottom:509.546640pt;}
.y47{bottom:514.666640pt;}
.y6f{bottom:517.546640pt;}
.y1d{bottom:525.226640pt;}
.y33{bottom:526.186640pt;}
.ya1{bottom:526.506640pt;}
.y5e{bottom:527.786640pt;}
.y8{bottom:528.746640pt;}
.y7b{bottom:537.066640pt;}
.y46{bottom:542.506640pt;}
.y6e{bottom:545.066640pt;}
.y8e{bottom:546.026640pt;}
.y1c{bottom:553.066640pt;}
.y5d{bottom:555.626640pt;}
.ya0{bottom:563.306640pt;}
.y32{bottom:570.026640pt;}
.y7{bottom:571.626640pt;}
.y6d{bottom:572.586640pt;}
.y8d{bottom:573.546640pt;}
.y7a{bottom:574.506640pt;}
.y5c{bottom:583.146640pt;}
.y45{bottom:585.066640pt;}
.y1b{bottom:595.626640pt;}
.y9f{bottom:599.786640pt;}
.y6c{bottom:600.106640pt;}
.y8c{bottom:601.066640pt;}
.y5b{bottom:610.666640pt;}
.y31{bottom:612.586640pt;}
.y6{bottom:614.186640pt;}
.y79{bottom:620.906640pt;}
.y1a{bottom:623.146640pt;}
.y6b{bottom:627.946640pt;}
.y8b{bottom:628.906640pt;}
.y5a{bottom:638.186640pt;}
.y30{bottom:640.106640pt;}
.y44{bottom:640.426640pt;}
.y78{bottom:648.426640pt;}
.y19{bottom:650.986640pt;}
.y9e{bottom:651.946640pt;}
.y6a{bottom:655.466640pt;}
.y8a{bottom:656.426640pt;}
.y5{bottom:665.706640pt;}
.y59{bottom:666.026640pt;}
.y2f{bottom:667.626640pt;}
.y77{bottom:675.946640pt;}
.y43{bottom:682.986640pt;}
.y9d{bottom:688.426640pt;}
.y2e{bottom:695.466640pt;}
.y89{bottom:698.986640pt;}
.y76{bottom:703.786640pt;}
.y18{bottom:705.706640pt;}
.y4{bottom:707.306640pt;}
.y42{bottom:710.506640pt;}
.y58{bottom:720.746640pt;}
.y88{bottom:726.826640pt;}
.y69{bottom:735.786640pt;}
.y2d{bottom:738.026640pt;}
.y9c{bottom:743.466640pt;}
.y75{bottom:746.346640pt;}
.y17{bottom:754.346640pt;}
.yab{bottom:757.546640pt;}
.y2c{bottom:765.546640pt;}
.y41{bottom:765.866640pt;}
.y57{bottom:769.386640pt;}
.y74{bottom:773.866640pt;}
.y16{bottom:781.866640pt;}
.y9b{bottom:792.426640pt;}
.y2b{bottom:793.386640pt;}
.y56{bottom:796.906640pt;}
.y73{bottom:801.386640pt;}
.y40{bottom:808.426640pt;}
.y15{bottom:809.386640pt;}
.y87{bottom:809.706640pt;}
.y2a{bottom:820.906640pt;}
.y55{bottom:824.746640pt;}
.y72{bottom:829.226640pt;}
.y3f{bottom:835.946640pt;}
.y14{bottom:837.226640pt;}
.yaa{bottom:846.186640pt;}
.y54{bottom:852.266640pt;}
.y29{bottom:863.786640pt;}
.y13{bottom:864.746640pt;}
.y53{bottom:879.786640pt;}
.y9a{bottom:891.306640pt;}
.y12{bottom:892.266640pt;}
.ya9{bottom:898.346640pt;}
.y28{bottom:907.306640pt;}
.y11{bottom:935.146507pt;}
.y2{bottom:978.346640pt;}
.h2{height:34.479375pt;}
.h3{height:57.375000pt;}
.h5{height:57.781250pt;}
.h4{height:62.403750pt;}
.h7{height:67.098750pt;}
.h6{height:76.271250pt;}
.h1{height:1084.266667pt;}
.h0{height:1122.666667pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x2{left:89.279933pt;}
.x6{left:113.280000pt;}
.x8{left:117.879867pt;}
.x7{left:137.280000pt;}
.x9{left:146.013333pt;}
.x5{left:158.420533pt;}
.xc{left:283.764000pt;}
.xb{left:337.131200pt;}
.xd{left:354.041333pt;}
.x3{left:358.490533pt;}
.xa{left:612.761067pt;}
.x4{left:656.351867pt;}
}




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