
    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_db15014cd0d3bf6943abb2d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9639faa5c8e2edff37ef314f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_172a1772545c16af0b1d0862.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_c9793bfe26635261ff90320a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_6bf158a7f477387f853f301e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_ca9605532c51ac6677698fea.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_76190af9e42bd370acee1346.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919922;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_36f68ec9f60e05a2cca14c87.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.399680px;}
.ls21{letter-spacing:-0.847584px;}
.ls1a{letter-spacing:-0.769824px;}
.ls1c{letter-spacing:-0.738720px;}
.ls20{letter-spacing:-0.730944px;}
.ls1e{letter-spacing:-0.723168px;}
.ls1b{letter-spacing:-0.715392px;}
.ls1f{letter-spacing:-0.707616px;}
.ls1d{letter-spacing:-0.699840px;}
.ls18{letter-spacing:-0.692064px;}
.ls19{letter-spacing:-0.676512px;}
.ls2b{letter-spacing:-0.654480px;}
.ls2a{letter-spacing:-0.466560px;}
.ls2d{letter-spacing:-0.453600px;}
.ls24{letter-spacing:-0.447120px;}
.ls2c{letter-spacing:-0.343440px;}
.ls28{letter-spacing:-0.317520px;}
.ls29{letter-spacing:-0.298080px;}
.ls25{letter-spacing:-0.278640px;}
.ls26{letter-spacing:-0.252720px;}
.ls2e{letter-spacing:-0.246240px;}
.ls23{letter-spacing:-0.200880px;}
.ls14{letter-spacing:-0.178560px;}
.ls22{letter-spacing:-0.103680px;}
.ls8{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.006480px;}
.lsf{letter-spacing:0.125280px;}
.ls7{letter-spacing:0.157800px;}
.ls13{letter-spacing:0.214272px;}
.ls15{letter-spacing:0.232128px;}
.ls0{letter-spacing:0.242064px;}
.ls2{letter-spacing:0.334080px;}
.ls3{letter-spacing:0.347400px;}
.ls16{letter-spacing:0.383904px;}
.ls9{letter-spacing:0.402250px;}
.ls1{letter-spacing:0.434160px;}
.ls2f{letter-spacing:0.443520px;}
.lsc{letter-spacing:0.445536px;}
.ls17{letter-spacing:0.455328px;}
.ls4{letter-spacing:0.538200px;}
.lse{letter-spacing:0.707616px;}
.lsd{letter-spacing:0.746928px;}
.lsb{letter-spacing:0.760032px;}
.ls12{letter-spacing:0.807120px;}
.ls10{letter-spacing:0.820800px;}
.ls11{letter-spacing:1.080720px;}
.ls5{letter-spacing:155.502720px;}
.ls6{letter-spacing:402.615720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-44.167680px;}
.ws3{word-spacing:-41.163120px;}
.ws1{word-spacing:-39.154752px;}
.ws2{word-spacing:-24.805440px;}
.wsa{word-spacing:-22.107168px;}
.ws9{word-spacing:-22.091616px;}
.wsd{word-spacing:-22.083840px;}
.wsc{word-spacing:-22.044960px;}
.wsb{word-spacing:-22.013856px;}
.wse{word-spacing:-21.936096px;}
.ws11{word-spacing:-20.282400px;}
.ws10{word-spacing:-20.029680px;}
.wsf{word-spacing:-18.882720px;}
.ws8{word-spacing:-0.544608px;}
.ws7{word-spacing:-0.473184px;}
.ws6{word-spacing:-0.321408px;}
.ws4{word-spacing:-0.303552px;}
.ws12{word-spacing:0.000000px;}
.ws5{word-spacing:0.089280px;}
._7{margin-left:-22.824600px;}
._3{margin-left:-7.994064px;}
._2{margin-left:-3.660480px;}
._4{margin-left:-2.563433px;}
._0{margin-left:-1.097047px;}
._1{width:1.095432px;}
._c{width:2.345136px;}
._a{width:3.624247px;}
._10{width:4.730400px;}
._d{width:5.832000px;}
._e{width:7.063200px;}
._f{width:13.274606px;}
._9{width:14.320800px;}
._b{width:16.222573px;}
._8{width:27.790093px;}
._11{width:30.196800px;}
._12{width:31.239768px;}
._5{width:35.231016px;}
._6{width:189.615720px;}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(51,102,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:50.400000px;}
.fs0{font-size:59.040000px;}
.fsc{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs8{font-size:83.520000px;}
.fs4{font-size:89.280000px;}
.fsb{font-size:95.040000px;}
.fs2{font-size:96.697842px;}
.fs3{font-size:121.894056px;}
.fs7{font-size:131.040000px;}
.fs9{font-size:136.800000px;}
.fs6{font-size:155.520000px;}
.fs5{font-size:167.040000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.000000px;}
.y2a{bottom:44.640030px;}
.y29{bottom:59.400030px;}
.y4{bottom:59.720217px;}
.y28{bottom:79.560030px;}
.y27{bottom:99.360030px;}
.y26{bottom:119.160030px;}
.y25{bottom:139.320000px;}
.y24{bottom:159.120000px;}
.y23{bottom:178.920000px;}
.y22{bottom:199.080000px;}
.y21{bottom:218.880000px;}
.y20{bottom:238.680000px;}
.y1f{bottom:258.840000px;}
.y1e{bottom:278.640000px;}
.y1d{bottom:300.240000px;}
.y1c{bottom:328.320000px;}
.y1b{bottom:351.720000px;}
.y1a{bottom:375.480000px;}
.y19{bottom:398.880000px;}
.y18{bottom:422.280000px;}
.y17{bottom:446.400000px;}
.y16{bottom:471.600000px;}
.y15{bottom:497.520000px;}
.y14{bottom:524.160000px;}
.y13{bottom:550.440000px;}
.y12{bottom:576.720000px;}
.y11{bottom:605.520000px;}
.y10{bottom:643.320000px;}
.yf{bottom:666.000000px;}
.ye{bottom:691.560000px;}
.yd{bottom:739.080000px;}
.yc{bottom:779.400000px;}
.yb{bottom:819.360000px;}
.ya{bottom:878.040000px;}
.y9{bottom:902.880000px;}
.y8{bottom:950.760000px;}
.y7{bottom:997.200000px;}
.y6{bottom:1029.303243px;}
.y5{bottom:1060.920000px;}
.y3{bottom:1078.920000px;}
.y2{bottom:1146.960000px;}
.h2{height:47.988281px;}
.h12{height:49.549219px;}
.h11{height:53.029688px;}
.hc{height:55.054688px;}
.ha{height:55.666406px;}
.he{height:62.600625px;}
.hf{height:63.635625px;}
.h4{height:64.449489px;}
.h6{height:68.267813px;}
.hb{height:68.349375px;}
.h10{height:77.776875px;}
.h3{height:81.720000px;}
.h5{height:92.134765px;}
.h9{height:107.237813px;}
.hd{height:111.951563px;}
.h8{height:127.271250px;}
.h7{height:136.698750px;}
.h1{height:1226.160000px;}
.h0{height:1263.000000px;}
.w2{width:106.200000px;}
.w1{width:856.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x2{left:105.120000px;}
.x10{left:115.452645px;}
.xa{left:141.967050px;}
.x9{left:144.166500px;}
.x8{left:155.059050px;}
.xe{left:163.243200px;}
.x5{left:167.972850px;}
.xc{left:181.374300px;}
.x11{left:208.270200px;}
.xf{left:274.106250px;}
.x7{left:287.452350px;}
.xb{left:356.560050px;}
.xd{left:368.720400px;}
.x3{left:393.120000px;}
.x6{left:428.332200px;}
.x4{left:481.432500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.244160pt;}
.ls21{letter-spacing:-0.753408pt;}
.ls1a{letter-spacing:-0.684288pt;}
.ls1c{letter-spacing:-0.656640pt;}
.ls20{letter-spacing:-0.649728pt;}
.ls1e{letter-spacing:-0.642816pt;}
.ls1b{letter-spacing:-0.635904pt;}
.ls1f{letter-spacing:-0.628992pt;}
.ls1d{letter-spacing:-0.622080pt;}
.ls18{letter-spacing:-0.615168pt;}
.ls19{letter-spacing:-0.601344pt;}
.ls2b{letter-spacing:-0.581760pt;}
.ls2a{letter-spacing:-0.414720pt;}
.ls2d{letter-spacing:-0.403200pt;}
.ls24{letter-spacing:-0.397440pt;}
.ls2c{letter-spacing:-0.305280pt;}
.ls28{letter-spacing:-0.282240pt;}
.ls29{letter-spacing:-0.264960pt;}
.ls25{letter-spacing:-0.247680pt;}
.ls26{letter-spacing:-0.224640pt;}
.ls2e{letter-spacing:-0.218880pt;}
.ls23{letter-spacing:-0.178560pt;}
.ls14{letter-spacing:-0.158720pt;}
.ls22{letter-spacing:-0.092160pt;}
.ls8{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.005760pt;}
.lsf{letter-spacing:0.111360pt;}
.ls7{letter-spacing:0.140267pt;}
.ls13{letter-spacing:0.190464pt;}
.ls15{letter-spacing:0.206336pt;}
.ls0{letter-spacing:0.215168pt;}
.ls2{letter-spacing:0.296960pt;}
.ls3{letter-spacing:0.308800pt;}
.ls16{letter-spacing:0.341248pt;}
.ls9{letter-spacing:0.357556pt;}
.ls1{letter-spacing:0.385920pt;}
.ls2f{letter-spacing:0.394240pt;}
.lsc{letter-spacing:0.396032pt;}
.ls17{letter-spacing:0.404736pt;}
.ls4{letter-spacing:0.478400pt;}
.lse{letter-spacing:0.628992pt;}
.lsd{letter-spacing:0.663936pt;}
.lsb{letter-spacing:0.675584pt;}
.ls12{letter-spacing:0.717440pt;}
.ls10{letter-spacing:0.729600pt;}
.ls11{letter-spacing:0.960640pt;}
.ls5{letter-spacing:138.224640pt;}
.ls6{letter-spacing:357.880640pt;}
.ws0{word-spacing:-39.260160pt;}
.ws3{word-spacing:-36.589440pt;}
.ws1{word-spacing:-34.804224pt;}
.ws2{word-spacing:-22.049280pt;}
.wsa{word-spacing:-19.650816pt;}
.ws9{word-spacing:-19.636992pt;}
.wsd{word-spacing:-19.630080pt;}
.wsc{word-spacing:-19.595520pt;}
.wsb{word-spacing:-19.567872pt;}
.wse{word-spacing:-19.498752pt;}
.ws11{word-spacing:-18.028800pt;}
.ws10{word-spacing:-17.804160pt;}
.wsf{word-spacing:-16.784640pt;}
.ws8{word-spacing:-0.484096pt;}
.ws7{word-spacing:-0.420608pt;}
.ws6{word-spacing:-0.285696pt;}
.ws4{word-spacing:-0.269824pt;}
.ws12{word-spacing:0.000000pt;}
.ws5{word-spacing:0.079360pt;}
._7{margin-left:-20.288533pt;}
._3{margin-left:-7.105835pt;}
._2{margin-left:-3.253760pt;}
._4{margin-left:-2.278608pt;}
._0{margin-left:-0.975152pt;}
._1{width:0.973717pt;}
._c{width:2.084565pt;}
._a{width:3.221552pt;}
._10{width:4.204800pt;}
._d{width:5.184000pt;}
._e{width:6.278400pt;}
._f{width:11.799650pt;}
._9{width:12.729600pt;}
._b{width:14.420065pt;}
._8{width:24.702305pt;}
._11{width:26.841600pt;}
._12{width:27.768683pt;}
._5{width:31.316459pt;}
._6{width:168.547307pt;}
.fsd{font-size:44.800000pt;}
.fs0{font-size:52.480000pt;}
.fsc{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs8{font-size:74.240000pt;}
.fs4{font-size:79.360000pt;}
.fsb{font-size:84.480000pt;}
.fs2{font-size:85.953637pt;}
.fs3{font-size:108.350272pt;}
.fs7{font-size:116.480000pt;}
.fs9{font-size:121.600000pt;}
.fs6{font-size:138.240000pt;}
.fs5{font-size:148.480000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.000000pt;}
.y2a{bottom:39.680027pt;}
.y29{bottom:52.800027pt;}
.y4{bottom:53.084638pt;}
.y28{bottom:70.720027pt;}
.y27{bottom:88.320027pt;}
.y26{bottom:105.920027pt;}
.y25{bottom:123.840000pt;}
.y24{bottom:141.440000pt;}
.y23{bottom:159.040000pt;}
.y22{bottom:176.960000pt;}
.y21{bottom:194.560000pt;}
.y20{bottom:212.160000pt;}
.y1f{bottom:230.080000pt;}
.y1e{bottom:247.680000pt;}
.y1d{bottom:266.880000pt;}
.y1c{bottom:291.840000pt;}
.y1b{bottom:312.640000pt;}
.y1a{bottom:333.760000pt;}
.y19{bottom:354.560000pt;}
.y18{bottom:375.360000pt;}
.y17{bottom:396.800000pt;}
.y16{bottom:419.200000pt;}
.y15{bottom:442.240000pt;}
.y14{bottom:465.920000pt;}
.y13{bottom:489.280000pt;}
.y12{bottom:512.640000pt;}
.y11{bottom:538.240000pt;}
.y10{bottom:571.840000pt;}
.yf{bottom:592.000000pt;}
.ye{bottom:614.720000pt;}
.yd{bottom:656.960000pt;}
.yc{bottom:692.800000pt;}
.yb{bottom:728.320000pt;}
.ya{bottom:780.480000pt;}
.y9{bottom:802.560000pt;}
.y8{bottom:845.120000pt;}
.y7{bottom:886.400000pt;}
.y6{bottom:914.936216pt;}
.y5{bottom:943.040000pt;}
.y3{bottom:959.040000pt;}
.y2{bottom:1019.520000pt;}
.h2{height:42.656250pt;}
.h12{height:44.043750pt;}
.h11{height:47.137500pt;}
.hc{height:48.937500pt;}
.ha{height:49.481250pt;}
.he{height:55.645000pt;}
.hf{height:56.565000pt;}
.h4{height:57.288435pt;}
.h6{height:60.682500pt;}
.hb{height:60.755000pt;}
.h10{height:69.135000pt;}
.h3{height:72.640000pt;}
.h5{height:81.897569pt;}
.h9{height:95.322500pt;}
.hd{height:99.512500pt;}
.h8{height:113.130000pt;}
.h7{height:121.510000pt;}
.h1{height:1089.920000pt;}
.h0{height:1122.666667pt;}
.w2{width:94.400000pt;}
.w1{width:761.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x2{left:93.440000pt;}
.x10{left:102.624573pt;}
.xa{left:126.192933pt;}
.x9{left:128.148000pt;}
.x8{left:137.830267pt;}
.xe{left:145.105067pt;}
.x5{left:149.309200pt;}
.xc{left:161.221600pt;}
.x11{left:185.129067pt;}
.xf{left:243.650000pt;}
.x7{left:255.513200pt;}
.xb{left:316.942267pt;}
.xd{left:327.751467pt;}
.x3{left:349.440000pt;}
.x6{left:380.739733pt;}
.x4{left:427.940000pt;}
}




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