
    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_3c954daea0e316cff041d603.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_33323f934ec2719e47434abb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_6ada593835bdeb4e7449f50f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_0c2c68b2b456d5e13c386be0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_f9fc1840736dfd38850732eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_fba457a446092553bced2e3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.580000;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_7998bba8fd83d57ad6278b47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.110000px;}
.v1{vertical-align:23.754000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.985403px;}
.ls5{letter-spacing:3.246556px;}
.lse{letter-spacing:17.473621px;}
.lsc{letter-spacing:19.565412px;}
.lsb{letter-spacing:20.471412px;}
.lsa{letter-spacing:20.477412px;}
.ls7{letter-spacing:20.725621px;}
.lsd{letter-spacing:20.731621px;}
.ls6{letter-spacing:24.655621px;}
.ls8{letter-spacing:26.845621px;}
.ls9{letter-spacing:29.149621px;}
.ls4{letter-spacing:47.820141px;}
.ls0{letter-spacing:50.277746px;}
.ls1{letter-spacing:68.469746px;}
.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;}
}
.ws2a{word-spacing:-23.929462px;}
.ws28{word-spacing:-19.941274px;}
.ws2d{word-spacing:-18.196379px;}
.ws2e{word-spacing:-17.803692px;}
.ws18{word-spacing:-13.294127px;}
.ws3f{word-spacing:-3.600003px;}
.wsd{word-spacing:-3.012710px;}
.ws1b{word-spacing:-2.295398px;}
.ws3b{word-spacing:-2.160002px;}
.ws2{word-spacing:-0.932506px;}
.ws5{word-spacing:-0.789043px;}
.ws3c{word-spacing:-0.730000px;}
.ws3d{word-spacing:-0.720001px;}
.ws3e{word-spacing:-0.392728px;}
.ws1{word-spacing:-0.286925px;}
.ws2f{word-spacing:-0.065455px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.143462px;}
.ws1c{word-spacing:0.215194px;}
.ws16{word-spacing:1.291162px;}
.ws37{word-spacing:1.360315px;}
.ws38{word-spacing:1.364527px;}
.ws39{word-spacing:1.374547px;}
.ws32{word-spacing:2.487275px;}
.ws31{word-spacing:2.529727px;}
.ws30{word-spacing:2.552729px;}
.wsb{word-spacing:2.582323px;}
.ws14{word-spacing:2.725786px;}
.ws15{word-spacing:2.797517px;}
.ws2b{word-spacing:3.010912px;}
.ws1e{word-spacing:3.730022px;}
.ws1a{word-spacing:3.801754px;}
.ws23{word-spacing:3.873485px;}
.ws3a{word-spacing:4.162212px;}
.ws8{word-spacing:4.232141px;}
.ws7{word-spacing:4.447334px;}
.ws36{word-spacing:5.105459px;}
.ws22{word-spacing:5.236378px;}
.ws3{word-spacing:5.523302px;}
.wsc{word-spacing:6.097152px;}
.ws40{word-spacing:6.152732px;}
.ws2c{word-spacing:6.414551px;}
.ws12{word-spacing:6.671002px;}
.ws1d{word-spacing:7.531776px;}
.ws17{word-spacing:7.818701px;}
.ws21{word-spacing:8.392550px;}
.ws33{word-spacing:8.574553px;}
.ws34{word-spacing:8.640007px;}
.ws19{word-spacing:8.751206px;}
.ws11{word-spacing:8.894669px;}
.ws10{word-spacing:8.966400px;}
.wsf{word-spacing:9.253325px;}
.wse{word-spacing:9.325056px;}
.wsa{word-spacing:9.396787px;}
.ws20{word-spacing:9.468518px;}
.ws29{word-spacing:9.755443px;}
.ws26{word-spacing:9.827174px;}
.ws35{word-spacing:10.865464px;}
.ws25{word-spacing:10.903142px;}
.ws9{word-spacing:10.974874px;}
.ws13{word-spacing:11.261798px;}
.ws27{word-spacing:11.333530px;}
.ws1f{word-spacing:12.839885px;}
.ws6{word-spacing:13.700659px;}
.ws24{word-spacing:14.202778px;}
._1e{margin-left:-11.788231px;}
._5{margin-left:-9.337602px;}
._12{margin-left:-7.101389px;}
._8{margin-left:-5.630899px;}
._11{margin-left:-4.598002px;}
._3{margin-left:-3.098772px;}
._0{margin-left:-1.613952px;}
._2{width:1.344960px;}
._4{width:2.560794px;}
._1d{width:5.752768px;}
._6{width:7.103237px;}
._1f{width:8.957519px;}
._20{width:10.795530px;}
._1{width:17.699674px;}
._21{width:19.087976px;}
._7{width:20.562806px;}
._13{width:22.251002px;}
._a{width:24.550003px;}
._1c{width:26.135508px;}
._10{width:28.226227px;}
._d{width:30.736819px;}
._e{width:32.149908px;}
._18{width:33.527131px;}
._1a{width:34.610304px;}
._15{width:35.743673px;}
._9{width:41.173709px;}
._f{width:43.020787px;}
._14{width:48.001277px;}
._17{width:49.537519px;}
._19{width:54.085325px;}
._c{width:57.528422px;}
._16{width:62.926195px;}
._b{width:65.045862px;}
._1b{width:92.644855px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:52.363800px;}
.fs0{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y51{bottom:89.248500px;}
.y2a{bottom:91.191000px;}
.y50{bottom:109.573500px;}
.y29{bottom:112.113000px;}
.y28{bottom:133.035000px;}
.y4f{bottom:136.621500px;}
.y27{bottom:153.957000px;}
.y4e{bottom:156.945000px;}
.y26{bottom:174.877500px;}
.y4d{bottom:183.994500px;}
.y4c{bottom:204.318000px;}
.y25{bottom:204.766500px;}
.y4b{bottom:224.641500px;}
.y24{bottom:225.687000px;}
.y23{bottom:246.609000px;}
.y4a{bottom:251.689500px;}
.y22{bottom:267.531000px;}
.y49{bottom:272.014500px;}
.y21{bottom:288.451500px;}
.y48{bottom:292.338000px;}
.y20{bottom:309.373500px;}
.y47{bottom:321.627000px;}
.y1f{bottom:330.295500px;}
.y1e{bottom:351.216000px;}
.y1d{bottom:372.138000px;}
.y46{bottom:372.436500px;}
.y1c{bottom:402.025500px;}
.y45{bottom:409.797000px;}
.y1b{bottom:422.947500px;}
.y1a{bottom:443.869500px;}
.y44{bottom:460.606500px;}
.y19{bottom:464.791500px;}
.y43{bottom:481.528500px;}
.y18{bottom:485.712000px;}
.y17{bottom:506.634000px;}
.y42{bottom:518.887500px;}
.y16{bottom:527.556000px;}
.y15{bottom:557.443500px;}
.y41{bottom:569.697000px;}
.y14{bottom:578.365500px;}
.y13{bottom:599.286000px;}
.y40{bottom:607.057500px;}
.y12{bottom:620.208000px;}
.y11{bottom:641.130000px;}
.y3f{bottom:657.867000px;}
.y10{bottom:678.489000px;}
.y3e{bottom:695.226000px;}
.yf{bottom:732.288000px;}
.y3d{bottom:746.035500px;}
.ye{bottom:764.610000px;}
.y3c{bottom:766.957500px;}
.yd{bottom:786.085500px;}
.y3b{bottom:787.879500px;}
.yc{bottom:791.509500px;}
.y3a{bottom:808.801500px;}
.yb{bottom:812.985000px;}
.ya{bottom:818.407500px;}
.y39{bottom:829.722000px;}
.y9{bottom:857.817000px;}
.y38{bottom:859.611000px;}
.y8{bottom:878.140500px;}
.y37{bottom:880.531500px;}
.y36{bottom:901.453500px;}
.y35{bottom:922.375500px;}
.y7{bottom:925.363500px;}
.y34{bottom:943.296000px;}
.y5a{bottom:944.193000px;}
.y6{bottom:952.263000px;}
.y33{bottom:964.218000px;}
.y59{bottom:964.516500px;}
.y5{bottom:983.644500px;}
.y58{bottom:984.840000px;}
.y32{bottom:985.140000px;}
.y57{bottom:1005.165000px;}
.y31{bottom:1006.060500px;}
.y56{bottom:1032.213000px;}
.y30{bottom:1035.949500px;}
.y55{bottom:1052.536500px;}
.y2f{bottom:1056.870000px;}
.y4{bottom:1064.343000px;}
.y54{bottom:1072.860000px;}
.y2e{bottom:1077.792000px;}
.y3{bottom:1089.747000px;}
.y53{bottom:1093.185000px;}
.y2d{bottom:1098.714000px;}
.y2{bottom:1115.152500px;}
.y2c{bottom:1119.634500px;}
.y52{bottom:1120.233000px;}
.y1{bottom:1140.556500px;}
.y2b{bottom:1193.604000px;}
.h6{height:31.047358px;}
.hb{height:35.865450px;}
.h2{height:39.918413px;}
.h7{height:44.353495px;}
.h8{height:45.463495px;}
.hd{height:48.567313px;}
.hc{height:49.773313px;}
.he{height:49.779313px;}
.ha{height:53.224550px;}
.h5{height:59.236885px;}
.h9{height:63.783205px;}
.h4{height:63.869282px;}
.h3{height:76.539668px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:105.840000px;}
.xd{left:122.203500px;}
.x3{left:125.026500px;}
.x10{left:140.398500px;}
.x2{left:171.778500px;}
.x8{left:180.651000px;}
.x6{left:189.169500px;}
.xc{left:214.641000px;}
.x9{left:277.743000px;}
.x5{left:296.482500px;}
.x11{left:338.236500px;}
.xb{left:342.081000px;}
.x12{left:364.597500px;}
.xe{left:369.363000px;}
.x4{left:375.895500px;}
.x7{left:407.962500px;}
.xf{left:427.608000px;}
.xa{left:589.186500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.986667pt;}
.v1{vertical-align:21.114667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.653692pt;}
.ls5{letter-spacing:2.885827pt;}
.lse{letter-spacing:15.532108pt;}
.lsc{letter-spacing:17.391477pt;}
.lsb{letter-spacing:18.196811pt;}
.lsa{letter-spacing:18.202144pt;}
.ls7{letter-spacing:18.422774pt;}
.lsd{letter-spacing:18.428108pt;}
.ls6{letter-spacing:21.916108pt;}
.ls8{letter-spacing:23.862774pt;}
.ls9{letter-spacing:25.910774pt;}
.ls4{letter-spacing:42.506792pt;}
.ls0{letter-spacing:44.691330pt;}
.ls1{letter-spacing:60.861997pt;}
.ws2a{word-spacing:-21.270633pt;}
.ws28{word-spacing:-17.725577pt;}
.ws2d{word-spacing:-16.174559pt;}
.ws2e{word-spacing:-15.825504pt;}
.ws18{word-spacing:-11.817002pt;}
.ws3f{word-spacing:-3.200003pt;}
.wsd{word-spacing:-2.677965pt;}
.ws1b{word-spacing:-2.040354pt;}
.ws3b{word-spacing:-1.920002pt;}
.ws2{word-spacing:-0.828894pt;}
.ws5{word-spacing:-0.701372pt;}
.ws3c{word-spacing:-0.648889pt;}
.ws3d{word-spacing:-0.640001pt;}
.ws3e{word-spacing:-0.349091pt;}
.ws1{word-spacing:-0.255044pt;}
.ws2f{word-spacing:-0.058182pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.127522pt;}
.ws1c{word-spacing:0.191283pt;}
.ws16{word-spacing:1.147699pt;}
.ws37{word-spacing:1.209169pt;}
.ws38{word-spacing:1.212913pt;}
.ws39{word-spacing:1.221819pt;}
.ws32{word-spacing:2.210911pt;}
.ws31{word-spacing:2.248646pt;}
.ws30{word-spacing:2.269093pt;}
.wsb{word-spacing:2.295398pt;}
.ws14{word-spacing:2.422921pt;}
.ws15{word-spacing:2.486682pt;}
.ws2b{word-spacing:2.676366pt;}
.ws1e{word-spacing:3.315575pt;}
.ws1a{word-spacing:3.379337pt;}
.ws23{word-spacing:3.443098pt;}
.ws3a{word-spacing:3.699744pt;}
.ws8{word-spacing:3.761903pt;}
.ws7{word-spacing:3.953186pt;}
.ws36{word-spacing:4.538186pt;}
.ws22{word-spacing:4.654558pt;}
.ws3{word-spacing:4.909602pt;}
.wsc{word-spacing:5.419691pt;}
.ws40{word-spacing:5.469095pt;}
.ws2c{word-spacing:5.701823pt;}
.ws12{word-spacing:5.929779pt;}
.ws1d{word-spacing:6.694912pt;}
.ws17{word-spacing:6.949956pt;}
.ws21{word-spacing:7.460045pt;}
.ws33{word-spacing:7.621825pt;}
.ws34{word-spacing:7.680006pt;}
.ws19{word-spacing:7.778850pt;}
.ws11{word-spacing:7.906372pt;}
.ws10{word-spacing:7.970133pt;}
.wsf{word-spacing:8.225178pt;}
.wse{word-spacing:8.288939pt;}
.wsa{word-spacing:8.352700pt;}
.ws20{word-spacing:8.416461pt;}
.ws29{word-spacing:8.671505pt;}
.ws26{word-spacing:8.735266pt;}
.ws35{word-spacing:9.658190pt;}
.ws25{word-spacing:9.691682pt;}
.ws9{word-spacing:9.755443pt;}
.ws13{word-spacing:10.010487pt;}
.ws27{word-spacing:10.074249pt;}
.ws1f{word-spacing:11.413231pt;}
.ws6{word-spacing:12.178364pt;}
.ws24{word-spacing:12.624691pt;}
._1e{margin-left:-10.478427pt;}
._5{margin-left:-8.300091pt;}
._12{margin-left:-6.312346pt;}
._8{margin-left:-5.005244pt;}
._11{margin-left:-4.087113pt;}
._3{margin-left:-2.754464pt;}
._0{margin-left:-1.434624pt;}
._2{width:1.195520pt;}
._4{width:2.276261pt;}
._1d{width:5.113572pt;}
._6{width:6.313988pt;}
._1f{width:7.962239pt;}
._20{width:9.596027pt;}
._1{width:15.733043pt;}
._21{width:16.967090pt;}
._7{width:18.278050pt;}
._13{width:19.778669pt;}
._a{width:21.822225pt;}
._1c{width:23.231563pt;}
._10{width:25.089980pt;}
._d{width:27.321617pt;}
._e{width:28.577696pt;}
._18{width:29.801894pt;}
._1a{width:30.764715pt;}
._15{width:31.772154pt;}
._9{width:36.598852pt;}
._f{width:38.240700pt;}
._14{width:42.667802pt;}
._17{width:44.033350pt;}
._19{width:48.075844pt;}
._c{width:51.136375pt;}
._16{width:55.934396pt;}
._b{width:57.818544pt;}
._1b{width:82.350982pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:46.545600pt;}
.fs0{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:79.332000pt;}
.y2a{bottom:81.058667pt;}
.y50{bottom:97.398667pt;}
.y29{bottom:99.656000pt;}
.y28{bottom:118.253333pt;}
.y4f{bottom:121.441333pt;}
.y27{bottom:136.850667pt;}
.y4e{bottom:139.506667pt;}
.y26{bottom:155.446667pt;}
.y4d{bottom:163.550667pt;}
.y4c{bottom:181.616000pt;}
.y25{bottom:182.014667pt;}
.y4b{bottom:199.681333pt;}
.y24{bottom:200.610667pt;}
.y23{bottom:219.208000pt;}
.y4a{bottom:223.724000pt;}
.y22{bottom:237.805333pt;}
.y49{bottom:241.790667pt;}
.y21{bottom:256.401333pt;}
.y48{bottom:259.856000pt;}
.y20{bottom:274.998667pt;}
.y47{bottom:285.890667pt;}
.y1f{bottom:293.596000pt;}
.y1e{bottom:312.192000pt;}
.y1d{bottom:330.789333pt;}
.y46{bottom:331.054667pt;}
.y1c{bottom:357.356000pt;}
.y45{bottom:364.264000pt;}
.y1b{bottom:375.953333pt;}
.y1a{bottom:394.550667pt;}
.y44{bottom:409.428000pt;}
.y19{bottom:413.148000pt;}
.y43{bottom:428.025333pt;}
.y18{bottom:431.744000pt;}
.y17{bottom:450.341333pt;}
.y42{bottom:461.233333pt;}
.y16{bottom:468.938667pt;}
.y15{bottom:495.505333pt;}
.y41{bottom:506.397333pt;}
.y14{bottom:514.102667pt;}
.y13{bottom:532.698667pt;}
.y40{bottom:539.606667pt;}
.y12{bottom:551.296000pt;}
.y11{bottom:569.893333pt;}
.y3f{bottom:584.770667pt;}
.y10{bottom:603.101333pt;}
.y3e{bottom:617.978667pt;}
.yf{bottom:650.922667pt;}
.y3d{bottom:663.142667pt;}
.ye{bottom:679.653333pt;}
.y3c{bottom:681.740000pt;}
.yd{bottom:698.742667pt;}
.y3b{bottom:700.337333pt;}
.yc{bottom:703.564000pt;}
.y3a{bottom:718.934667pt;}
.yb{bottom:722.653333pt;}
.ya{bottom:727.473333pt;}
.y39{bottom:737.530667pt;}
.y9{bottom:762.504000pt;}
.y38{bottom:764.098667pt;}
.y8{bottom:780.569333pt;}
.y37{bottom:782.694667pt;}
.y36{bottom:801.292000pt;}
.y35{bottom:819.889333pt;}
.y7{bottom:822.545333pt;}
.y34{bottom:838.485333pt;}
.y5a{bottom:839.282667pt;}
.y6{bottom:846.456000pt;}
.y33{bottom:857.082667pt;}
.y59{bottom:857.348000pt;}
.y5{bottom:874.350667pt;}
.y58{bottom:875.413333pt;}
.y32{bottom:875.680000pt;}
.y57{bottom:893.480000pt;}
.y31{bottom:894.276000pt;}
.y56{bottom:917.522667pt;}
.y30{bottom:920.844000pt;}
.y55{bottom:935.588000pt;}
.y2f{bottom:939.440000pt;}
.y4{bottom:946.082667pt;}
.y54{bottom:953.653333pt;}
.y2e{bottom:958.037333pt;}
.y3{bottom:968.664000pt;}
.y53{bottom:971.720000pt;}
.y2d{bottom:976.634667pt;}
.y2{bottom:991.246667pt;}
.y2c{bottom:995.230667pt;}
.y52{bottom:995.762667pt;}
.y1{bottom:1013.828000pt;}
.y2b{bottom:1060.981333pt;}
.h6{height:27.597651pt;}
.hb{height:31.880400pt;}
.h2{height:35.483034pt;}
.h7{height:39.425329pt;}
.h8{height:40.411996pt;}
.hd{height:43.170945pt;}
.hc{height:44.242945pt;}
.he{height:44.248278pt;}
.ha{height:47.310711pt;}
.h5{height:52.655009pt;}
.h9{height:56.696182pt;}
.h4{height:56.772695pt;}
.h3{height:68.035261pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.080000pt;}
.xd{left:108.625333pt;}
.x3{left:111.134667pt;}
.x10{left:124.798667pt;}
.x2{left:152.692000pt;}
.x8{left:160.578667pt;}
.x6{left:168.150667pt;}
.xc{left:190.792000pt;}
.x9{left:246.882667pt;}
.x5{left:263.540000pt;}
.x11{left:300.654667pt;}
.xb{left:304.072000pt;}
.x12{left:324.086667pt;}
.xe{left:328.322667pt;}
.x4{left:334.129333pt;}
.x7{left:362.633333pt;}
.xf{left:380.096000pt;}
.xa{left:523.721333pt;}
}




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