
    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_d14a54a7954db63270fb1f2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_74681f78330d1097f0155ac4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_e331f6916f9f512655623a62.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_be192284419b07ce29857b8a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_214c138eb0e337ea19dc2d39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_ad478da2f09d0da7a2455a0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls1a{letter-spacing:-0.342144px;}
.lsc{letter-spacing:-0.310464px;}
.ls18{letter-spacing:-0.297792px;}
.ls26{letter-spacing:-0.285120px;}
.ls17{letter-spacing:-0.266112px;}
.lse{letter-spacing:-0.253440px;}
.ls19{letter-spacing:-0.234432px;}
.lsf{letter-spacing:-0.221760px;}
.ls15{letter-spacing:-0.215424px;}
.lsb{letter-spacing:-0.209088px;}
.ls20{letter-spacing:-0.202752px;}
.ls8{letter-spacing:-0.196416px;}
.ls7{letter-spacing:-0.190080px;}
.ls1e{letter-spacing:-0.183744px;}
.ls21{letter-spacing:-0.177408px;}
.ls10{letter-spacing:-0.171072px;}
.ls9{letter-spacing:-0.164736px;}
.ls16{letter-spacing:-0.158400px;}
.ls1f{letter-spacing:-0.152064px;}
.ls14{letter-spacing:-0.145728px;}
.ls23{letter-spacing:-0.139392px;}
.ls5{letter-spacing:-0.133056px;}
.ls30{letter-spacing:-0.126720px;}
.ls12{letter-spacing:-0.120384px;}
.ls34{letter-spacing:-0.107712px;}
.ls11{letter-spacing:-0.101376px;}
.lsd{letter-spacing:-0.095040px;}
.ls38{letter-spacing:-0.088704px;}
.ls2d{letter-spacing:-0.069696px;}
.ls22{letter-spacing:-0.063360px;}
.ls13{letter-spacing:-0.050688px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.114768px;}
.ls2{letter-spacing:0.115200px;}
.lsa{letter-spacing:0.283968px;}
.ls33{letter-spacing:0.872640px;}
.ls25{letter-spacing:1.507680px;}
.ls2b{letter-spacing:2.551248px;}
.ls35{letter-spacing:4.546080px;}
.ls28{letter-spacing:4.612320px;}
.ls27{letter-spacing:5.873760px;}
.ls4{letter-spacing:6.474096px;}
.ls29{letter-spacing:8.250912px;}
.ls2c{letter-spacing:8.843040px;}
.ls2a{letter-spacing:8.913600px;}
.ls31{letter-spacing:9.197424px;}
.ls37{letter-spacing:9.385920px;}
.ls2e{letter-spacing:9.898848px;}
.ls1c{letter-spacing:10.622448px;}
.ls32{letter-spacing:10.896480px;}
.ls1d{letter-spacing:10.935936px;}
.ls1b{letter-spacing:14.644800px;}
.ls24{letter-spacing:17.575200px;}
.ls2f{letter-spacing:72.393120px;}
.ls36{letter-spacing:131.858208px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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:-14.319360px;}
.wsa{word-spacing:-14.268672px;}
.ws9{word-spacing:-14.224320px;}
.ws8{word-spacing:-14.217984px;}
.ws5{word-spacing:-14.198976px;}
.wsd{word-spacing:-14.192640px;}
.ws7{word-spacing:-14.186304px;}
.wsf{word-spacing:-14.173632px;}
.wsb{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws4{word-spacing:-14.148288px;}
.ws0{word-spacing:-14.129280px;}
.wse{word-spacing:-14.110272px;}
.ws10{word-spacing:-14.103936px;}
.ws3{word-spacing:-14.097600px;}
.wsc{word-spacing:-14.084928px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-4.216320px;}
._12{margin-left:-3.111840px;}
._3{margin-left:-2.090880px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._a{width:2.154240px;}
._c{width:3.168000px;}
._b{width:4.181760px;}
._d{width:5.285952px;}
._4{width:6.313392px;}
._5{width:7.394976px;}
._7{width:8.403552px;}
._8{width:9.654048px;}
._f{width:10.705104px;}
._13{width:11.853792px;}
._6{width:13.058496px;}
._9{width:15.248448px;}
._e{width:16.917120px;}
._11{width:18.611712px;}
._10{width:19.831680px;}
._15{width:21.391488px;}
._14{width:22.556160px;}
._16{width:23.569920px;}
._18{width:25.407360px;}
._26{width:30.412800px;}
._1c{width:37.952640px;}
._25{width:48.090240px;}
._20{width:49.800960px;}
._21{width:55.249920px;}
._1f{width:62.318304px;}
._1e{width:63.360000px;}
._29{width:64.510128px;}
._1b{width:67.795200px;}
._1a{width:71.823456px;}
._19{width:72.936288px;}
._27{width:85.345920px;}
._24{width:89.081568px;}
._23{width:90.541440px;}
._1d{width:98.334720px;}
._22{width:132.105600px;}
._28{width:134.449920px;}
._1{width:2478.560832px;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.565950px;}
.y6e{bottom:104.725950px;}
.y36{bottom:113.005950px;}
.y6d{bottom:124.165950px;}
.y35{bottom:132.445950px;}
.y6c{bottom:143.245950px;}
.y34{bottom:151.525950px;}
.y6b{bottom:162.685950px;}
.y33{bottom:170.965950px;}
.y6a{bottom:181.765950px;}
.y32{bottom:190.045950px;}
.y69{bottom:200.845950px;}
.y31{bottom:209.125950px;}
.y68{bottom:220.285950px;}
.y30{bottom:228.565950px;}
.y67{bottom:239.365950px;}
.y2f{bottom:247.645950px;}
.y66{bottom:258.805950px;}
.y2e{bottom:267.085950px;}
.y65{bottom:277.885950px;}
.y2d{bottom:286.165950px;}
.y64{bottom:296.965950px;}
.y2c{bottom:305.245950px;}
.y63{bottom:316.405950px;}
.y2b{bottom:324.685950px;}
.y62{bottom:335.485950px;}
.y2a{bottom:343.765950px;}
.y61{bottom:354.925950px;}
.y29{bottom:363.205950px;}
.y60{bottom:374.005950px;}
.y28{bottom:382.285950px;}
.y5f{bottom:393.445950px;}
.y27{bottom:401.365950px;}
.y5e{bottom:412.525950px;}
.y26{bottom:420.805950px;}
.y5d{bottom:431.605950px;}
.y25{bottom:439.885950px;}
.y5c{bottom:451.045950px;}
.y24{bottom:459.325950px;}
.y5b{bottom:470.125950px;}
.y23{bottom:478.405950px;}
.y5a{bottom:489.565950px;}
.y22{bottom:497.845950px;}
.y59{bottom:508.645950px;}
.y21{bottom:516.925950px;}
.y58{bottom:527.725950px;}
.y20{bottom:536.005950px;}
.y57{bottom:547.165950px;}
.y1f{bottom:555.445950px;}
.y56{bottom:566.245950px;}
.y1e{bottom:574.525950px;}
.y55{bottom:585.685950px;}
.y1d{bottom:593.965950px;}
.y54{bottom:604.765950px;}
.y1c{bottom:613.045950px;}
.y53{bottom:623.845950px;}
.y1b{bottom:632.125950px;}
.y52{bottom:643.285950px;}
.y1a{bottom:651.565950px;}
.y51{bottom:662.365950px;}
.y19{bottom:670.645950px;}
.y50{bottom:681.805950px;}
.y18{bottom:690.085950px;}
.y4f{bottom:700.885950px;}
.y17{bottom:709.165950px;}
.y4e{bottom:719.965950px;}
.y16{bottom:728.245950px;}
.y4d{bottom:739.405950px;}
.y15{bottom:747.685950px;}
.y4c{bottom:758.485950px;}
.y14{bottom:766.765950px;}
.y4b{bottom:777.925950px;}
.y13{bottom:786.205950px;}
.y4a{bottom:797.005950px;}
.y12{bottom:805.285950px;}
.y49{bottom:816.085950px;}
.y11{bottom:824.365950px;}
.y48{bottom:835.525950px;}
.y10{bottom:843.805950px;}
.y47{bottom:854.605950px;}
.yf{bottom:868.285950px;}
.y46{bottom:874.045950px;}
.ye{bottom:882.325950px;}
.y45{bottom:893.125950px;}
.yd{bottom:906.805950px;}
.y44{bottom:912.205950px;}
.yc{bottom:920.485950px;}
.y43{bottom:931.645950px;}
.yb{bottom:940.285950px;}
.y42{bottom:950.725950px;}
.ya{bottom:959.365950px;}
.y41{bottom:970.165950px;}
.y9{bottom:978.805950px;}
.y40{bottom:989.245950px;}
.y8{bottom:998.965950px;}
.y3f{bottom:1008.685950px;}
.y7{bottom:1024.165950px;}
.y3e{bottom:1027.765950px;}
.y3d{bottom:1046.845950px;}
.y6{bottom:1049.005950px;}
.y3c{bottom:1066.285950px;}
.y5{bottom:1068.085950px;}
.y3b{bottom:1085.365950px;}
.y4{bottom:1087.165950px;}
.y3{bottom:1102.285950px;}
.y3a{bottom:1104.805950px;}
.y39{bottom:1123.885950px;}
.y38{bottom:1142.965950px;}
.y37{bottom:1162.405950px;}
.y1{bottom:1193.005950px;}
.h6{height:27.833203px;}
.h3{height:43.312500px;}
.h7{height:43.900313px;}
.h2{height:45.478125px;}
.h5{height:49.433203px;}
.h4{height:61.987500px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:62.718384px;}
.xd{left:85.668456px;}
.x5{left:100.142184px;}
.x4{left:106.893300px;}
.x3{left:181.773192px;}
.xc{left:201.871200px;}
.xb{left:204.062988px;}
.x6{left:206.434200px;}
.x9{left:362.662680px;}
.xa{left:400.368720px;}
.x2{left:443.594280px;}
.x8{left:619.726080px;}
.x7{left:632.022960px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls1a{letter-spacing:-0.304128pt;}
.lsc{letter-spacing:-0.275968pt;}
.ls18{letter-spacing:-0.264704pt;}
.ls26{letter-spacing:-0.253440pt;}
.ls17{letter-spacing:-0.236544pt;}
.lse{letter-spacing:-0.225280pt;}
.ls19{letter-spacing:-0.208384pt;}
.lsf{letter-spacing:-0.197120pt;}
.ls15{letter-spacing:-0.191488pt;}
.lsb{letter-spacing:-0.185856pt;}
.ls20{letter-spacing:-0.180224pt;}
.ls8{letter-spacing:-0.174592pt;}
.ls7{letter-spacing:-0.168960pt;}
.ls1e{letter-spacing:-0.163328pt;}
.ls21{letter-spacing:-0.157696pt;}
.ls10{letter-spacing:-0.152064pt;}
.ls9{letter-spacing:-0.146432pt;}
.ls16{letter-spacing:-0.140800pt;}
.ls1f{letter-spacing:-0.135168pt;}
.ls14{letter-spacing:-0.129536pt;}
.ls23{letter-spacing:-0.123904pt;}
.ls5{letter-spacing:-0.118272pt;}
.ls30{letter-spacing:-0.112640pt;}
.ls12{letter-spacing:-0.107008pt;}
.ls34{letter-spacing:-0.095744pt;}
.ls11{letter-spacing:-0.090112pt;}
.lsd{letter-spacing:-0.084480pt;}
.ls38{letter-spacing:-0.078848pt;}
.ls2d{letter-spacing:-0.061952pt;}
.ls22{letter-spacing:-0.056320pt;}
.ls13{letter-spacing:-0.045056pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.102016pt;}
.ls2{letter-spacing:0.102400pt;}
.lsa{letter-spacing:0.252416pt;}
.ls33{letter-spacing:0.775680pt;}
.ls25{letter-spacing:1.340160pt;}
.ls2b{letter-spacing:2.267776pt;}
.ls35{letter-spacing:4.040960pt;}
.ls28{letter-spacing:4.099840pt;}
.ls27{letter-spacing:5.221120pt;}
.ls4{letter-spacing:5.754752pt;}
.ls29{letter-spacing:7.334144pt;}
.ls2c{letter-spacing:7.860480pt;}
.ls2a{letter-spacing:7.923200pt;}
.ls31{letter-spacing:8.175488pt;}
.ls37{letter-spacing:8.343040pt;}
.ls2e{letter-spacing:8.798976pt;}
.ls1c{letter-spacing:9.442176pt;}
.ls32{letter-spacing:9.685760pt;}
.ls1d{letter-spacing:9.720832pt;}
.ls1b{letter-spacing:13.017600pt;}
.ls24{letter-spacing:15.622400pt;}
.ls2f{letter-spacing:64.349440pt;}
.ls36{letter-spacing:117.207296pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.wsa{word-spacing:-12.683264pt;}
.ws9{word-spacing:-12.643840pt;}
.ws8{word-spacing:-12.638208pt;}
.ws5{word-spacing:-12.621312pt;}
.wsd{word-spacing:-12.615680pt;}
.ws7{word-spacing:-12.610048pt;}
.wsf{word-spacing:-12.598784pt;}
.wsb{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws4{word-spacing:-12.576256pt;}
.ws0{word-spacing:-12.559360pt;}
.wse{word-spacing:-12.542464pt;}
.ws10{word-spacing:-12.536832pt;}
.ws3{word-spacing:-12.531200pt;}
.wsc{word-spacing:-12.519936pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-3.747840pt;}
._12{margin-left:-2.766080pt;}
._3{margin-left:-1.858560pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._a{width:1.914880pt;}
._c{width:2.816000pt;}
._b{width:3.717120pt;}
._d{width:4.698624pt;}
._4{width:5.611904pt;}
._5{width:6.573312pt;}
._7{width:7.469824pt;}
._8{width:8.581376pt;}
._f{width:9.515648pt;}
._13{width:10.536704pt;}
._6{width:11.607552pt;}
._9{width:13.554176pt;}
._e{width:15.037440pt;}
._11{width:16.543744pt;}
._10{width:17.628160pt;}
._15{width:19.014656pt;}
._14{width:20.049920pt;}
._16{width:20.951040pt;}
._18{width:22.584320pt;}
._26{width:27.033600pt;}
._1c{width:33.735680pt;}
._25{width:42.746880pt;}
._20{width:44.267520pt;}
._21{width:49.111040pt;}
._1f{width:55.394048pt;}
._1e{width:56.320000pt;}
._29{width:57.342336pt;}
._1b{width:60.262400pt;}
._1a{width:63.843072pt;}
._19{width:64.832256pt;}
._27{width:75.863040pt;}
._24{width:79.183616pt;}
._23{width:80.481280pt;}
._1d{width:87.408640pt;}
._22{width:117.427200pt;}
._28{width:119.511040pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.169733pt;}
.y6e{bottom:93.089733pt;}
.y36{bottom:100.449733pt;}
.y6d{bottom:110.369733pt;}
.y35{bottom:117.729733pt;}
.y6c{bottom:127.329733pt;}
.y34{bottom:134.689733pt;}
.y6b{bottom:144.609733pt;}
.y33{bottom:151.969733pt;}
.y6a{bottom:161.569733pt;}
.y32{bottom:168.929733pt;}
.y69{bottom:178.529733pt;}
.y31{bottom:185.889733pt;}
.y68{bottom:195.809733pt;}
.y30{bottom:203.169733pt;}
.y67{bottom:212.769733pt;}
.y2f{bottom:220.129733pt;}
.y66{bottom:230.049733pt;}
.y2e{bottom:237.409733pt;}
.y65{bottom:247.009733pt;}
.y2d{bottom:254.369733pt;}
.y64{bottom:263.969733pt;}
.y2c{bottom:271.329733pt;}
.y63{bottom:281.249733pt;}
.y2b{bottom:288.609733pt;}
.y62{bottom:298.209733pt;}
.y2a{bottom:305.569733pt;}
.y61{bottom:315.489733pt;}
.y29{bottom:322.849733pt;}
.y60{bottom:332.449733pt;}
.y28{bottom:339.809733pt;}
.y5f{bottom:349.729733pt;}
.y27{bottom:356.769733pt;}
.y5e{bottom:366.689733pt;}
.y26{bottom:374.049733pt;}
.y5d{bottom:383.649733pt;}
.y25{bottom:391.009733pt;}
.y5c{bottom:400.929733pt;}
.y24{bottom:408.289733pt;}
.y5b{bottom:417.889733pt;}
.y23{bottom:425.249733pt;}
.y5a{bottom:435.169733pt;}
.y22{bottom:442.529733pt;}
.y59{bottom:452.129733pt;}
.y21{bottom:459.489733pt;}
.y58{bottom:469.089733pt;}
.y20{bottom:476.449733pt;}
.y57{bottom:486.369733pt;}
.y1f{bottom:493.729733pt;}
.y56{bottom:503.329733pt;}
.y1e{bottom:510.689733pt;}
.y55{bottom:520.609733pt;}
.y1d{bottom:527.969733pt;}
.y54{bottom:537.569733pt;}
.y1c{bottom:544.929733pt;}
.y53{bottom:554.529733pt;}
.y1b{bottom:561.889733pt;}
.y52{bottom:571.809733pt;}
.y1a{bottom:579.169733pt;}
.y51{bottom:588.769733pt;}
.y19{bottom:596.129733pt;}
.y50{bottom:606.049733pt;}
.y18{bottom:613.409733pt;}
.y4f{bottom:623.009733pt;}
.y17{bottom:630.369733pt;}
.y4e{bottom:639.969733pt;}
.y16{bottom:647.329733pt;}
.y4d{bottom:657.249733pt;}
.y15{bottom:664.609733pt;}
.y4c{bottom:674.209733pt;}
.y14{bottom:681.569733pt;}
.y4b{bottom:691.489733pt;}
.y13{bottom:698.849733pt;}
.y4a{bottom:708.449733pt;}
.y12{bottom:715.809733pt;}
.y49{bottom:725.409733pt;}
.y11{bottom:732.769733pt;}
.y48{bottom:742.689733pt;}
.y10{bottom:750.049733pt;}
.y47{bottom:759.649733pt;}
.yf{bottom:771.809733pt;}
.y46{bottom:776.929733pt;}
.ye{bottom:784.289733pt;}
.y45{bottom:793.889733pt;}
.yd{bottom:806.049733pt;}
.y44{bottom:810.849733pt;}
.yc{bottom:818.209733pt;}
.y43{bottom:828.129733pt;}
.yb{bottom:835.809733pt;}
.y42{bottom:845.089733pt;}
.ya{bottom:852.769733pt;}
.y41{bottom:862.369733pt;}
.y9{bottom:870.049733pt;}
.y40{bottom:879.329733pt;}
.y8{bottom:887.969733pt;}
.y3f{bottom:896.609733pt;}
.y7{bottom:910.369733pt;}
.y3e{bottom:913.569733pt;}
.y3d{bottom:930.529733pt;}
.y6{bottom:932.449733pt;}
.y3c{bottom:947.809733pt;}
.y5{bottom:949.409733pt;}
.y3b{bottom:964.769733pt;}
.y4{bottom:966.369733pt;}
.y3{bottom:979.809733pt;}
.y3a{bottom:982.049733pt;}
.y39{bottom:999.009733pt;}
.y38{bottom:1015.969733pt;}
.y37{bottom:1033.249733pt;}
.y1{bottom:1060.449733pt;}
.h6{height:24.740625pt;}
.h3{height:38.500000pt;}
.h7{height:39.022500pt;}
.h2{height:40.425000pt;}
.h5{height:43.940625pt;}
.h4{height:55.100000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:55.749675pt;}
.xd{left:76.149739pt;}
.x5{left:89.015275pt;}
.x4{left:95.016267pt;}
.x3{left:161.576171pt;}
.xc{left:179.441067pt;}
.xb{left:181.389323pt;}
.x6{left:183.497067pt;}
.x9{left:322.366827pt;}
.xa{left:355.883307pt;}
.x2{left:394.306027pt;}
.x8{left:550.867627pt;}
.x7{left:561.798187pt;}
}




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