
    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_a838e8846146314d7fceaad3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_59760eac6645b89645681ead.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_7c3cd46360b5929359a96b6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.853027;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_dfe829633691c95514fc927e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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);}
.v1{vertical-align:-38.760000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-17.040000px;}
.ls1c{letter-spacing:-15.060000px;}
.ls29{letter-spacing:-5.160000px;}
.ls15{letter-spacing:-4.752000px;}
.ls2b{letter-spacing:-2.526000px;}
.lsc{letter-spacing:-2.376000px;}
.ls25{letter-spacing:-2.004000px;}
.ls22{letter-spacing:-1.656000px;}
.ls23{letter-spacing:-1.278000px;}
.ls24{letter-spacing:-0.996000px;}
.ls19{letter-spacing:-0.894000px;}
.ls1a{letter-spacing:-0.888000px;}
.ls14{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.276600px;}
.ls18{letter-spacing:-0.264000px;}
.ls27{letter-spacing:-0.220200px;}
.ls10{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.211800px;}
.ls1e{letter-spacing:-0.173400px;}
.ls20{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.132600px;}
.ls16{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.100200px;}
.ls1b{letter-spacing:0.134400px;}
.ls6{letter-spacing:0.153600px;}
.ls1d{letter-spacing:0.160800px;}
.ls7{letter-spacing:0.171600px;}
.lsf{letter-spacing:0.181800px;}
.lse{letter-spacing:0.208800px;}
.ls11{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.303600px;}
.ls2a{letter-spacing:0.417600px;}
.ls2{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.008000px;}
.ls3{letter-spacing:1.295280px;}
.ls2c{letter-spacing:2.736000px;}
.ls8{letter-spacing:3.455280px;}
.ls5{letter-spacing:6.335280px;}
.ls0{letter-spacing:31.032000px;}
.lsa{letter-spacing:42.306048px;}
.ls9{letter-spacing:64.872000px;}
.ls1{letter-spacing:194.400000px;}
.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;}
}
.ws7{word-spacing:-44.856000px;}
.ws6{word-spacing:-44.568000px;}
.ws1{word-spacing:-44.136000px;}
.ws2{word-spacing:-44.086032px;}
.ws5{word-spacing:-44.064000px;}
.ws3{word-spacing:-44.059032px;}
.ws9{word-spacing:-43.848000px;}
.wsb{word-spacing:-43.776000px;}
.ws1c{word-spacing:-43.704000px;}
.ws4{word-spacing:-43.632000px;}
.ws8{word-spacing:-43.200000px;}
.ws1e{word-spacing:-42.192000px;}
.ws0{word-spacing:-41.472000px;}
.ws27{word-spacing:-39.442320px;}
.ws10{word-spacing:-39.328320px;}
.ws17{word-spacing:-39.196320px;}
.ws13{word-spacing:-39.185520px;}
.ws16{word-spacing:-39.178320px;}
.ws11{word-spacing:-39.159120px;}
.ws24{word-spacing:-39.154152px;}
.wsa{word-spacing:-39.096000px;}
.ws15{word-spacing:-38.892120px;}
.ws14{word-spacing:-38.851320px;}
.ws22{word-spacing:-38.842152px;}
.ws23{word-spacing:-38.833752px;}
.wsd{word-spacing:-38.760720px;}
.wsc{word-spacing:-38.748120px;}
.wsf{word-spacing:-38.136720px;}
.wse{word-spacing:-38.130720px;}
.ws20{word-spacing:-38.028720px;}
.ws1f{word-spacing:-37.746720px;}
.ws21{word-spacing:-37.020720px;}
.ws28{word-spacing:-36.498720px;}
.ws26{word-spacing:-33.864720px;}
.ws1d{word-spacing:-26.808000px;}
.ws12{word-spacing:-23.964720px;}
.ws1a{word-spacing:-0.447840px;}
.ws29{word-spacing:0.000000px;}
.ws18{word-spacing:2.914560px;}
.ws19{word-spacing:3.152160px;}
.ws1b{word-spacing:3038.444400px;}
.ws25{word-spacing:3234.584400px;}
._34{margin-left:-18.144000px;}
._f{margin-left:-17.105760px;}
._22{margin-left:-14.840160px;}
._3{margin-left:-12.155040px;}
._6{margin-left:-10.785600px;}
._b{margin-left:-9.294192px;}
._e{margin-left:-7.546560px;}
._5{margin-left:-6.048000px;}
._2{margin-left:-4.227840px;}
._0{margin-left:-2.642400px;}
._1{margin-left:-1.585440px;}
._4{width:1.585440px;}
._7{width:2.604000px;}
._15{width:4.680000px;}
._24{width:5.789280px;}
._18{width:6.816960px;}
._17{width:7.924800px;}
._1a{width:12.528000px;}
._1b{width:13.656000px;}
._1e{width:14.908224px;}
._28{width:17.649600px;}
._2e{width:19.153920px;}
._16{width:23.112000px;}
._13{width:24.696000px;}
._14{width:25.968000px;}
._33{width:27.371040px;}
._2f{width:28.627920px;}
._11{width:29.643840px;}
._12{width:30.672000px;}
._10{width:32.292000px;}
._8{width:33.552000px;}
._1d{width:34.649760px;}
._2c{width:35.785440px;}
._2b{width:36.938592px;}
._9{width:38.476800px;}
._a{width:39.489600px;}
._30{width:41.352864px;}
._1f{width:42.774240px;}
._32{width:45.010560px;}
._31{width:46.626720px;}
._1c{width:49.032000px;}
._21{width:51.500160px;}
._20{width:53.231040px;}
._23{width:54.280800px;}
._25{width:56.935920px;}
._c{width:58.370400px;}
._d{width:59.972160px;}
._27{width:63.230400px;}
._26{width:64.800000px;}
._19{width:66.564000px;}
._2d{width:79.775040px;}
._29{width:84.888000px;}
._2a{width:86.674080px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:144.000000px;}
.fs4{font-size:192.240000px;}
.fs5{font-size:192.384000px;}
.fs2{font-size:216.000000px;}
.fs3{font-size:216.144000px;}
.fs0{font-size:264.240000px;}
.fs6{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:64.116000px;}
.y3b{bottom:121.716000px;}
.y1b{bottom:151.275000px;}
.y3a{bottom:179.310000px;}
.y1a{bottom:208.875000px;}
.y39{bottom:236.910000px;}
.y38{bottom:294.510000px;}
.y37{bottom:352.110000px;}
.y36{bottom:445.965000px;}
.y26{bottom:687.990000px;}
.y25{bottom:745.590000px;}
.y24{bottom:803.190000px;}
.y23{bottom:860.790000px;}
.y22{bottom:918.390000px;}
.y21{bottom:975.990000px;}
.y20{bottom:1033.590000px;}
.y1f{bottom:1091.190000px;}
.y27{bottom:1197.150000px;}
.y1e{bottom:1871.925000px;}
.y1d{bottom:1929.525000px;}
.y1c{bottom:1987.125000px;}
.y35{bottom:2192.115000px;}
.y33{bottom:2315.055000px;}
.y32{bottom:2372.685000px;}
.y31{bottom:2430.285000px;}
.y18{bottom:2443.605000px;}
.y30{bottom:2487.885000px;}
.y17{bottom:2508.405000px;}
.y2f{bottom:2545.485000px;}
.y16{bottom:2573.250000px;}
.y2e{bottom:2603.085000px;}
.y15{bottom:2638.050000px;}
.y2d{bottom:2660.685000px;}
.y14{bottom:2702.850000px;}
.y2c{bottom:2718.285000px;}
.y2b{bottom:2775.885000px;}
.y34{bottom:2855.730000px;}
.y13{bottom:3350.850000px;}
.y2a{bottom:3368.010000px;}
.y12{bottom:3415.650000px;}
.y29{bottom:3432.810000px;}
.y11{bottom:3480.450000px;}
.y28{bottom:3497.610000px;}
.y10{bottom:3545.250000px;}
.yf{bottom:3610.050000px;}
.y19{bottom:3700.590000px;}
.yd{bottom:3821.610000px;}
.yc{bottom:3886.410000px;}
.yb{bottom:3951.210000px;}
.ya{bottom:4016.010000px;}
.y9{bottom:4080.810000px;}
.y8{bottom:4145.610000px;}
.y7{bottom:4210.455000px;}
.y6{bottom:4275.255000px;}
.y5{bottom:4340.055000px;}
.ye{bottom:4430.550000px;}
.y4{bottom:4563.975000px;}
.y3{bottom:4606.995000px;}
.y2{bottom:4650.375000px;}
.y1{bottom:4702.035000px;}
.y3d{bottom:5143.170000px;}
.h3{height:121.710938px;}
.h7{height:166.614258px;}
.h8{height:166.739063px;}
.h6{height:182.566406px;}
.h9{height:182.688117px;}
.h4{height:187.207031px;}
.h5{height:187.331836px;}
.h2{height:223.339570px;}
.ha{height:374.414062px;}
.h1{height:5054.250000px;}
.h0{height:5054.400000px;}
.w1{width:3574.500000px;}
.w2{width:3574.799947px;}
.w0{width:3574.800000px;}
.x10{left:-10.620053px;}
.x0{left:0.000000px;}
.x5{left:33.299947px;}
.x9{left:78.443947px;}
.x7{left:99.647947px;}
.x6{left:100.799947px;}
.x8{left:275.324947px;}
.x1{left:451.694947px;}
.xa{left:456.299947px;}
.x2{left:936.104947px;}
.x3{left:1078.484947px;}
.x4{left:1540.949947px;}
.xb{left:1817.384947px;}
.xd{left:1848.269947px;}
.xc{left:1884.884947px;}
.xe{left:1909.109947px;}
.xf{left:2213.789947px;}
@media print{
.v1{vertical-align:-34.453333pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-15.146667pt;}
.ls1c{letter-spacing:-13.386667pt;}
.ls29{letter-spacing:-4.586667pt;}
.ls15{letter-spacing:-4.224000pt;}
.ls2b{letter-spacing:-2.245333pt;}
.lsc{letter-spacing:-2.112000pt;}
.ls25{letter-spacing:-1.781333pt;}
.ls22{letter-spacing:-1.472000pt;}
.ls23{letter-spacing:-1.136000pt;}
.ls24{letter-spacing:-0.885333pt;}
.ls19{letter-spacing:-0.794667pt;}
.ls1a{letter-spacing:-0.789333pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.245867pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls27{letter-spacing:-0.195733pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.188267pt;}
.ls1e{letter-spacing:-0.154133pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.117867pt;}
.ls16{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.089067pt;}
.ls1b{letter-spacing:0.119467pt;}
.ls6{letter-spacing:0.136533pt;}
.ls1d{letter-spacing:0.142933pt;}
.ls7{letter-spacing:0.152533pt;}
.lsf{letter-spacing:0.161600pt;}
.lse{letter-spacing:0.185600pt;}
.ls11{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.269867pt;}
.ls2a{letter-spacing:0.371200pt;}
.ls2{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.896000pt;}
.ls3{letter-spacing:1.151360pt;}
.ls2c{letter-spacing:2.432000pt;}
.ls8{letter-spacing:3.071360pt;}
.ls5{letter-spacing:5.631360pt;}
.ls0{letter-spacing:27.584000pt;}
.lsa{letter-spacing:37.605376pt;}
.ls9{letter-spacing:57.664000pt;}
.ls1{letter-spacing:172.800000pt;}
.ws7{word-spacing:-39.872000pt;}
.ws6{word-spacing:-39.616000pt;}
.ws1{word-spacing:-39.232000pt;}
.ws2{word-spacing:-39.187584pt;}
.ws5{word-spacing:-39.168000pt;}
.ws3{word-spacing:-39.163584pt;}
.ws9{word-spacing:-38.976000pt;}
.wsb{word-spacing:-38.912000pt;}
.ws1c{word-spacing:-38.848000pt;}
.ws4{word-spacing:-38.784000pt;}
.ws8{word-spacing:-38.400000pt;}
.ws1e{word-spacing:-37.504000pt;}
.ws0{word-spacing:-36.864000pt;}
.ws27{word-spacing:-35.059840pt;}
.ws10{word-spacing:-34.958507pt;}
.ws17{word-spacing:-34.841173pt;}
.ws13{word-spacing:-34.831573pt;}
.ws16{word-spacing:-34.825173pt;}
.ws11{word-spacing:-34.808107pt;}
.ws24{word-spacing:-34.803691pt;}
.wsa{word-spacing:-34.752000pt;}
.ws15{word-spacing:-34.570773pt;}
.ws14{word-spacing:-34.534507pt;}
.ws22{word-spacing:-34.526357pt;}
.ws23{word-spacing:-34.518891pt;}
.wsd{word-spacing:-34.453973pt;}
.wsc{word-spacing:-34.442773pt;}
.wsf{word-spacing:-33.899307pt;}
.wse{word-spacing:-33.893973pt;}
.ws20{word-spacing:-33.803307pt;}
.ws1f{word-spacing:-33.552640pt;}
.ws21{word-spacing:-32.907307pt;}
.ws28{word-spacing:-32.443307pt;}
.ws26{word-spacing:-30.101973pt;}
.ws1d{word-spacing:-23.829333pt;}
.ws12{word-spacing:-21.301973pt;}
.ws1a{word-spacing:-0.398080pt;}
.ws29{word-spacing:0.000000pt;}
.ws18{word-spacing:2.590720pt;}
.ws19{word-spacing:2.801920pt;}
.ws1b{word-spacing:2700.839467pt;}
.ws25{word-spacing:2875.186133pt;}
._34{margin-left:-16.128000pt;}
._f{margin-left:-15.205120pt;}
._22{margin-left:-13.191253pt;}
._3{margin-left:-10.804480pt;}
._6{margin-left:-9.587200pt;}
._b{margin-left:-8.261504pt;}
._e{margin-left:-6.708053pt;}
._5{margin-left:-5.376000pt;}
._2{margin-left:-3.758080pt;}
._0{margin-left:-2.348800pt;}
._1{margin-left:-1.409280pt;}
._4{width:1.409280pt;}
._7{width:2.314667pt;}
._15{width:4.160000pt;}
._24{width:5.146027pt;}
._18{width:6.059520pt;}
._17{width:7.044267pt;}
._1a{width:11.136000pt;}
._1b{width:12.138667pt;}
._1e{width:13.251755pt;}
._28{width:15.688533pt;}
._2e{width:17.025707pt;}
._16{width:20.544000pt;}
._13{width:21.952000pt;}
._14{width:23.082667pt;}
._33{width:24.329813pt;}
._2f{width:25.447040pt;}
._11{width:26.350080pt;}
._12{width:27.264000pt;}
._10{width:28.704000pt;}
._8{width:29.824000pt;}
._1d{width:30.799787pt;}
._2c{width:31.809280pt;}
._2b{width:32.834304pt;}
._9{width:34.201600pt;}
._a{width:35.101867pt;}
._30{width:36.758101pt;}
._1f{width:38.021547pt;}
._32{width:40.009387pt;}
._31{width:41.445973pt;}
._1c{width:43.584000pt;}
._21{width:45.777920pt;}
._20{width:47.316480pt;}
._23{width:48.249600pt;}
._25{width:50.609707pt;}
._c{width:51.884800pt;}
._d{width:53.308587pt;}
._27{width:56.204800pt;}
._26{width:57.600000pt;}
._19{width:59.168000pt;}
._2d{width:70.911147pt;}
._29{width:75.456000pt;}
._2a{width:77.043627pt;}
.fs1{font-size:128.000000pt;}
.fs4{font-size:170.880000pt;}
.fs5{font-size:171.008000pt;}
.fs2{font-size:192.000000pt;}
.fs3{font-size:192.128000pt;}
.fs0{font-size:234.880000pt;}
.fs6{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:56.992000pt;}
.y3b{bottom:108.192000pt;}
.y1b{bottom:134.466667pt;}
.y3a{bottom:159.386667pt;}
.y1a{bottom:185.666667pt;}
.y39{bottom:210.586667pt;}
.y38{bottom:261.786667pt;}
.y37{bottom:312.986667pt;}
.y36{bottom:396.413333pt;}
.y26{bottom:611.546667pt;}
.y25{bottom:662.746667pt;}
.y24{bottom:713.946667pt;}
.y23{bottom:765.146667pt;}
.y22{bottom:816.346667pt;}
.y21{bottom:867.546667pt;}
.y20{bottom:918.746667pt;}
.y1f{bottom:969.946667pt;}
.y27{bottom:1064.133333pt;}
.y1e{bottom:1663.933333pt;}
.y1d{bottom:1715.133333pt;}
.y1c{bottom:1766.333333pt;}
.y35{bottom:1948.546667pt;}
.y33{bottom:2057.826667pt;}
.y32{bottom:2109.053333pt;}
.y31{bottom:2160.253333pt;}
.y18{bottom:2172.093333pt;}
.y30{bottom:2211.453333pt;}
.y17{bottom:2229.693333pt;}
.y2f{bottom:2262.653333pt;}
.y16{bottom:2287.333333pt;}
.y2e{bottom:2313.853333pt;}
.y15{bottom:2344.933333pt;}
.y2d{bottom:2365.053333pt;}
.y14{bottom:2402.533333pt;}
.y2c{bottom:2416.253333pt;}
.y2b{bottom:2467.453333pt;}
.y34{bottom:2538.426667pt;}
.y13{bottom:2978.533333pt;}
.y2a{bottom:2993.786667pt;}
.y12{bottom:3036.133333pt;}
.y29{bottom:3051.386667pt;}
.y11{bottom:3093.733333pt;}
.y28{bottom:3108.986667pt;}
.y10{bottom:3151.333333pt;}
.yf{bottom:3208.933333pt;}
.y19{bottom:3289.413333pt;}
.yd{bottom:3396.986667pt;}
.yc{bottom:3454.586667pt;}
.yb{bottom:3512.186667pt;}
.ya{bottom:3569.786667pt;}
.y9{bottom:3627.386667pt;}
.y8{bottom:3684.986667pt;}
.y7{bottom:3742.626667pt;}
.y6{bottom:3800.226667pt;}
.y5{bottom:3857.826667pt;}
.ye{bottom:3938.266667pt;}
.y4{bottom:4056.866667pt;}
.y3{bottom:4095.106667pt;}
.y2{bottom:4133.666667pt;}
.y1{bottom:4179.586667pt;}
.y3d{bottom:4571.706667pt;}
.h3{height:108.187500pt;}
.h7{height:148.101562pt;}
.h8{height:148.212500pt;}
.h6{height:162.281250pt;}
.h9{height:162.389438pt;}
.h4{height:166.406250pt;}
.h5{height:166.517188pt;}
.h2{height:198.524062pt;}
.ha{height:332.812500pt;}
.h1{height:4492.666667pt;}
.h0{height:4492.800000pt;}
.w1{width:3177.333333pt;}
.w2{width:3177.599953pt;}
.w0{width:3177.600000pt;}
.x10{left:-9.440047pt;}
.x0{left:0.000000pt;}
.x5{left:29.599953pt;}
.x9{left:69.727953pt;}
.x7{left:88.575953pt;}
.x6{left:89.599953pt;}
.x8{left:244.733286pt;}
.x1{left:401.506619pt;}
.xa{left:405.599953pt;}
.x2{left:832.093286pt;}
.x3{left:958.653286pt;}
.x4{left:1369.733286pt;}
.xb{left:1615.453286pt;}
.xd{left:1642.906619pt;}
.xc{left:1675.453286pt;}
.xe{left:1696.986619pt;}
.xf{left:1967.813286pt;}
}




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