
    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_5942687b20120798bd27e0db.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_612b08635fc2c683a33868a8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bd45077826ad1ce861ac99cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.515000;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_fe5e76bb155452f47c7efbba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_92e2a3bb987b9723fadfb307.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:14.530990px;}
.ls3{letter-spacing:14.645654px;}
.ls2{letter-spacing:14.646461px;}
.ls5{letter-spacing:14.647546px;}
.ls4{letter-spacing:14.648160px;}
.ls0{letter-spacing:14.650570px;}
.ls6{letter-spacing:32.700486px;}
.ls8{letter-spacing:32.736328px;}
.ls7{letter-spacing:77.412328px;}
.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;}
}
.ws2{word-spacing:-81.443770px;}
.ws1{word-spacing:-79.686072px;}
.ws23{word-spacing:-39.277397px;}
.ws6{word-spacing:-14.648160px;}
.ws2f{word-spacing:-4.803710px;}
.ws18{word-spacing:-4.379854px;}
.ws1c{word-spacing:-3.955997px;}
.ws1d{word-spacing:-3.814711px;}
.ws2a{word-spacing:-3.532140px;}
.wse{word-spacing:-3.390854px;}
.ws10{word-spacing:-3.108283px;}
.ws19{word-spacing:-2.825712px;}
.ws36{word-spacing:-2.401855px;}
.ws1b{word-spacing:-0.988999px;}
.ws3d{word-spacing:-0.588879px;}
.ws2b{word-spacing:-0.565142px;}
.ws37{word-spacing:-0.203467px;}
.ws41{word-spacing:-0.123975px;}
.ws46{word-spacing:-0.026843px;}
.ws9{word-spacing:0.000000px;}
.ws38{word-spacing:1.130285px;}
.ws2c{word-spacing:1.554142px;}
.ws0{word-spacing:1.640596px;}
.ws3{word-spacing:1.723632px;}
.ws30{word-spacing:2.401855px;}
.ws3c{word-spacing:2.708843px;}
.ws11{word-spacing:2.825712px;}
.ws47{word-spacing:4.122153px;}
.ws39{word-spacing:4.238568px;}
.ws15{word-spacing:4.379854px;}
.ws2e{word-spacing:4.662425px;}
.ws45{word-spacing:4.828808px;}
.ws25{word-spacing:5.086282px;}
.ws21{word-spacing:5.368853px;}
.ws13{word-spacing:5.397018px;}
.ws14{word-spacing:5.421418px;}
.wsd{word-spacing:6.216566px;}
.ws24{word-spacing:6.357852px;}
.ws1f{word-spacing:6.499138px;}
.ws22{word-spacing:7.064280px;}
.ws33{word-spacing:7.205566px;}
.ws2d{word-spacing:7.911994px;}
.ws3a{word-spacing:8.477136px;}
.ws31{word-spacing:9.324850px;}
.ws32{word-spacing:9.466135px;}
.ws27{word-spacing:10.172563px;}
.ws12{word-spacing:10.878991px;}
.ws34{word-spacing:11.161562px;}
.ws3b{word-spacing:11.542028px;}
.ws1a{word-spacing:11.585419px;}
.ws1e{word-spacing:12.150562px;}
.wsc{word-spacing:12.998275px;}
.ws28{word-spacing:13.563418px;}
.ws16{word-spacing:14.693702px;}
.wsf{word-spacing:14.834988px;}
.ws3f{word-spacing:14.839751px;}
.ws26{word-spacing:15.400130px;}
.ws17{word-spacing:19.356127px;}
.ws20{word-spacing:20.486412px;}
.wsb{word-spacing:21.475411px;}
.ws35{word-spacing:21.757982px;}
.ws8{word-spacing:30.702575px;}
.ws5{word-spacing:30.750936px;}
.ws7{word-spacing:30.810631px;}
.ws4{word-spacing:30.871472px;}
.ws29{word-spacing:31.506689px;}
.ws3e{word-spacing:32.623897px;}
.ws48{word-spacing:36.746050px;}
.ws42{word-spacing:44.401477px;}
.ws44{word-spacing:46.738575px;}
.ws40{word-spacing:47.463647px;}
.wsa{word-spacing:56.360414px;}
.ws43{word-spacing:77.025373px;}
._7{margin-left:-31.660272px;}
._2{margin-left:-28.318571px;}
._8{margin-left:-18.120930px;}
._16{margin-left:-16.954272px;}
._9{margin-left:-14.314307px;}
._2b{margin-left:-11.708771px;}
._b{margin-left:-10.173360px;}
._21{margin-left:-8.024544px;}
._c{margin-left:-6.104016px;}
._0{margin-left:-4.921787px;}
._a{margin-left:-3.622651px;}
._15{margin-left:-2.490026px;}
._e{margin-left:-1.182229px;}
._19{width:1.272740px;}
._12{width:2.825712px;}
._d{width:4.069344px;}
._4{width:5.710513px;}
._5{width:7.499866px;}
._1{width:14.136626px;}
._3{width:15.245338px;}
._2c{width:19.476073px;}
._24{width:33.755894px;}
._20{width:35.986561px;}
._17{width:37.246284px;}
._26{width:39.841369px;}
._1b{width:44.854837px;}
._14{width:47.048105px;}
._1a{width:49.063800px;}
._27{width:51.203204px;}
._25{width:53.624034px;}
._11{width:55.615752px;}
._1c{width:57.361954px;}
._1e{width:58.627211px;}
._2a{width:62.365937px;}
._1f{width:64.090548px;}
._10{width:66.121661px;}
._28{width:70.430477px;}
._1d{width:78.903497px;}
._18{width:81.239220px;}
._23{width:86.190089px;}
._13{width:87.455786px;}
._f{width:91.181156px;}
._22{width:93.505891px;}
._6{width:100.869744px;}
._29{width:114.397604px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(16,24,32);}
.fs7{font-size:81.772800px;}
.fs5{font-size:98.127600px;}
.fs6{font-size:103.292400px;}
.fs8{font-size:117.775800px;}
.fs9{font-size:123.975000px;}
.fs4{font-size:141.285600px;}
.fs3{font-size:203.467200px;}
.fs1{font-size:234.370800px;}
.fs2{font-size:244.126800px;}
.fs0{font-size:292.963200px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.978760px;}
.y67{bottom:215.383740px;}
.y66{bottom:252.742740px;}
.y2c{bottom:262.270740px;}
.y65{bottom:302.058240px;}
.y2b{bottom:307.101240px;}
.y64{bottom:351.373740px;}
.y2a{bottom:351.933240px;}
.y49{bottom:352.837740px;}
.y63{bottom:388.732740px;}
.y29{bottom:396.765240px;}
.y48{bottom:397.669740px;}
.y62{bottom:426.093240px;}
.y28{bottom:441.597240px;}
.y47{bottom:442.501740px;}
.y61{bottom:475.408740px;}
.y46{bottom:487.333740px;}
.y60{bottom:512.767740px;}
.y27{bottom:519.306240px;}
.y45{bottom:532.165740px;}
.y5f{bottom:562.083240px;}
.y26{bottom:588.048240px;}
.y5e{bottom:599.442240px;}
.y44{bottom:621.829740px;}
.y5d{bottom:636.802740px;}
.y25{bottom:656.790240px;}
.y43{bottom:666.661740px;}
.y5c{bottom:686.118240px;}
.y24{bottom:701.622240px;}
.y42{bottom:711.493740px;}
.y5b{bottom:723.477240px;}
.y41{bottom:756.325740px;}
.y23{bottom:770.364240px;}
.y40{bottom:801.157740px;}
.y5a{bottom:828.363240px;}
.y22{bottom:839.107740px;}
.y3f{bottom:845.989740px;}
.y21{bottom:907.849740px;}
.y59{bottom:931.243740px;}
.y3e{bottom:935.652240px;}
.y58{bottom:976.075740px;}
.y20{bottom:976.591740px;}
.y3d{bottom:980.484240px;}
.y57{bottom:1020.907740px;}
.y1f{bottom:1021.423740px;}
.y3c{bottom:1025.316240px;}
.y56{bottom:1065.739740px;}
.y3b{bottom:1070.148240px;}
.y1e{bottom:1090.165740px;}
.y3a{bottom:1114.980240px;}
.y39{bottom:1159.812240px;}
.y1d{bottom:1167.874740px;}
.y55{bottom:1188.075240px;}
.y1c{bottom:1212.705240px;}
.y1b{bottom:1257.537240px;}
.y38{bottom:1272.841740px;}
.y54{bottom:1290.286740px;}
.y1a{bottom:1330.441740px;}
.y53{bottom:1335.118740px;}
.y19{bottom:1363.318740px;}
.y52{bottom:1379.949240px;}
.y51{bottom:1424.781240px;}
.y50{bottom:1469.613240px;}
.y18{bottom:1481.854740px;}
.y4f{bottom:1514.445240px;}
.y17{bottom:1514.731740px;}
.y4e{bottom:1559.277240px;}
.y4d{bottom:1604.109240px;}
.y16{bottom:1630.936740px;}
.y15{bottom:1663.812240px;}
.y4c{bottom:1715.763240px;}
.y14{bottom:1780.017240px;}
.y13{bottom:1812.894240px;}
.y4b{bottom:1848.450240px;}
.y12{bottom:1926.769740px;}
.y11{bottom:1959.645240px;}
.y10{bottom:2078.391240px;}
.yf{bottom:2123.223240px;}
.ye{bottom:2168.055240px;}
.y37{bottom:2177.911740px;}
.yd{bottom:2212.887240px;}
.y36{bottom:2222.743740px;}
.yc{bottom:2257.719240px;}
.y35{bottom:2267.575740px;}
.y34{bottom:2312.407740px;}
.y33{bottom:2357.239740px;}
.yb{bottom:2380.054740px;}
.y32{bottom:2446.903740px;}
.ya{bottom:2481.841740px;}
.y31{bottom:2491.734240px;}
.y9{bottom:2526.673740px;}
.y30{bottom:2536.566240px;}
.y8{bottom:2571.505740px;}
.y2f{bottom:2581.398240px;}
.y7{bottom:2616.336240px;}
.y2e{bottom:2626.230240px;}
.y6{bottom:2661.168240px;}
.y2d{bottom:2671.062240px;}
.y4a{bottom:2781.622740px;}
.y5{bottom:2782.716240px;}
.y4{bottom:3003.862740px;}
.y3{bottom:3085.792740px;}
.y2{bottom:3192.945240px;}
.h7{height:60.593645px;}
.h6{height:72.712552px;}
.h8{height:87.271868px;}
.h5{height:104.692630px;}
.h4{height:150.769195px;}
.h3{height:180.897959px;}
.h2{height:217.085731px;}
.h1{height:3294.042480px;}
.h0{height:3510.000000px;}
.w1{width:4320.055710px;}
.w0{width:4536.000000px;}
.x0{left:0.000000px;}
.x6{left:36.594855px;}
.x12{left:64.484355px;}
.x1{left:107.972145px;}
.x2{left:137.615355px;}
.x11{left:215.724855px;}
.x5{left:398.691855px;}
.xc{left:472.806855px;}
.xa{left:476.340855px;}
.x7{left:507.264855px;}
.x10{left:515.010855px;}
.xd{left:519.959355px;}
.xe{left:530.543355px;}
.xb{left:551.238855px;}
.xf{left:553.226355px;}
.x9{left:558.869355px;}
.x8{left:562.376355px;}
.x3{left:1355.456355px;}
.x14{left:1460.253855px;}
.x4{left:1594.826355px;}
.x15{left:2030.378355px;}
.x13{left:2076.699855px;}
.x19{left:3042.702855px;}
.x1c{left:3071.376855px;}
.x1a{left:3439.302855px;}
.x17{left:3524.928855px;}
.x1b{left:3526.259355px;}
.x18{left:3555.686355px;}
.x16{left:3598.133355px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:12.916435pt;}
.ls3{letter-spacing:13.018359pt;}
.ls2{letter-spacing:13.019076pt;}
.ls5{letter-spacing:13.020041pt;}
.ls4{letter-spacing:13.020587pt;}
.ls0{letter-spacing:13.022729pt;}
.ls6{letter-spacing:29.067098pt;}
.ls8{letter-spacing:29.098958pt;}
.ls7{letter-spacing:68.810958pt;}
.ws2{word-spacing:-72.394462pt;}
.ws1{word-spacing:-70.832064pt;}
.ws23{word-spacing:-34.913242pt;}
.ws6{word-spacing:-13.020587pt;}
.ws2f{word-spacing:-4.269965pt;}
.ws18{word-spacing:-3.893203pt;}
.ws1c{word-spacing:-3.516442pt;}
.ws1d{word-spacing:-3.390854pt;}
.ws2a{word-spacing:-3.139680pt;}
.wse{word-spacing:-3.014093pt;}
.ws10{word-spacing:-2.762918pt;}
.ws19{word-spacing:-2.511744pt;}
.ws36{word-spacing:-2.134982pt;}
.ws1b{word-spacing:-0.879110pt;}
.ws3d{word-spacing:-0.523448pt;}
.ws2b{word-spacing:-0.502349pt;}
.ws37{word-spacing:-0.180860pt;}
.ws41{word-spacing:-0.110200pt;}
.ws46{word-spacing:-0.023860pt;}
.ws9{word-spacing:0.000000pt;}
.ws38{word-spacing:1.004698pt;}
.ws2c{word-spacing:1.381459pt;}
.ws0{word-spacing:1.458307pt;}
.ws3{word-spacing:1.532117pt;}
.ws30{word-spacing:2.134982pt;}
.ws3c{word-spacing:2.407861pt;}
.ws11{word-spacing:2.511744pt;}
.ws47{word-spacing:3.664136pt;}
.ws39{word-spacing:3.767616pt;}
.ws15{word-spacing:3.893203pt;}
.ws2e{word-spacing:4.144378pt;}
.ws45{word-spacing:4.292274pt;}
.ws25{word-spacing:4.521139pt;}
.ws21{word-spacing:4.772314pt;}
.ws13{word-spacing:4.797349pt;}
.ws14{word-spacing:4.819038pt;}
.wsd{word-spacing:5.525837pt;}
.ws24{word-spacing:5.651424pt;}
.ws1f{word-spacing:5.777011pt;}
.ws22{word-spacing:6.279360pt;}
.ws33{word-spacing:6.404947pt;}
.ws2d{word-spacing:7.032883pt;}
.ws3a{word-spacing:7.535232pt;}
.ws31{word-spacing:8.288755pt;}
.ws32{word-spacing:8.414342pt;}
.ws27{word-spacing:9.042278pt;}
.ws12{word-spacing:9.670214pt;}
.ws34{word-spacing:9.921389pt;}
.ws3b{word-spacing:10.259581pt;}
.ws1a{word-spacing:10.298150pt;}
.ws1e{word-spacing:10.800499pt;}
.wsc{word-spacing:11.554022pt;}
.ws28{word-spacing:12.056371pt;}
.ws16{word-spacing:13.061069pt;}
.wsf{word-spacing:13.186656pt;}
.ws3f{word-spacing:13.190890pt;}
.ws26{word-spacing:13.689005pt;}
.ws17{word-spacing:17.205446pt;}
.ws20{word-spacing:18.210144pt;}
.wsb{word-spacing:19.089254pt;}
.ws35{word-spacing:19.340429pt;}
.ws8{word-spacing:27.291178pt;}
.ws5{word-spacing:27.334165pt;}
.ws7{word-spacing:27.387228pt;}
.ws4{word-spacing:27.441309pt;}
.ws29{word-spacing:28.005946pt;}
.ws3e{word-spacing:28.999019pt;}
.ws48{word-spacing:32.663155pt;}
.ws42{word-spacing:39.467979pt;}
.ws44{word-spacing:41.545400pt;}
.ws40{word-spacing:42.189909pt;}
.wsa{word-spacing:50.098146pt;}
.ws43{word-spacing:68.466998pt;}
._7{margin-left:-28.142464pt;}
._2{margin-left:-25.172063pt;}
._8{margin-left:-16.107493pt;}
._16{margin-left:-15.070464pt;}
._9{margin-left:-12.723828pt;}
._2b{margin-left:-10.407796pt;}
._b{margin-left:-9.042987pt;}
._21{margin-left:-7.132928pt;}
._c{margin-left:-5.425792pt;}
._0{margin-left:-4.374922pt;}
._a{margin-left:-3.220134pt;}
._15{margin-left:-2.213357pt;}
._e{margin-left:-1.050870pt;}
._19{width:1.131325pt;}
._12{width:2.511744pt;}
._d{width:3.617195pt;}
._4{width:5.076012pt;}
._5{width:6.666547pt;}
._1{width:12.565890pt;}
._3{width:13.551411pt;}
._2c{width:17.312065pt;}
._24{width:30.005239pt;}
._20{width:31.988054pt;}
._17{width:33.107808pt;}
._26{width:35.414550pt;}
._1b{width:39.870966pt;}
._14{width:41.820538pt;}
._1a{width:43.612267pt;}
._27{width:45.513959pt;}
._25{width:47.665808pt;}
._11{width:49.436224pt;}
._1c{width:50.988403pt;}
._1e{width:52.113076pt;}
._2a{width:55.436388pt;}
._1f{width:56.969376pt;}
._10{width:58.774810pt;}
._28{width:62.604868pt;}
._1d{width:70.136442pt;}
._18{width:72.212640pt;}
._23{width:76.613412pt;}
._13{width:77.738477pt;}
._f{width:81.049917pt;}
._22{width:83.116348pt;}
._6{width:89.661995pt;}
._29{width:101.686759pt;}
.fs7{font-size:72.686933pt;}
.fs5{font-size:87.224533pt;}
.fs6{font-size:91.815467pt;}
.fs8{font-size:104.689600pt;}
.fs9{font-size:110.200000pt;}
.fs4{font-size:125.587200pt;}
.fs3{font-size:180.859733pt;}
.fs1{font-size:208.329600pt;}
.fs2{font-size:217.001600pt;}
.fs0{font-size:260.411733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.981120pt;}
.y67{bottom:191.452213pt;}
.y66{bottom:224.660213pt;}
.y2c{bottom:233.129547pt;}
.y65{bottom:268.496213pt;}
.y2b{bottom:272.978880pt;}
.y64{bottom:312.332213pt;}
.y2a{bottom:312.829547pt;}
.y49{bottom:313.633547pt;}
.y63{bottom:345.540213pt;}
.y29{bottom:352.680213pt;}
.y48{bottom:353.484213pt;}
.y62{bottom:378.749547pt;}
.y28{bottom:392.530880pt;}
.y47{bottom:393.334880pt;}
.y61{bottom:422.585547pt;}
.y46{bottom:433.185547pt;}
.y60{bottom:455.793547pt;}
.y27{bottom:461.605547pt;}
.y45{bottom:473.036213pt;}
.y5f{bottom:499.629547pt;}
.y26{bottom:522.709547pt;}
.y5e{bottom:532.837547pt;}
.y44{bottom:552.737547pt;}
.y5d{bottom:566.046880pt;}
.y25{bottom:583.813547pt;}
.y43{bottom:592.588213pt;}
.y5c{bottom:609.882880pt;}
.y24{bottom:623.664213pt;}
.y42{bottom:632.438880pt;}
.y5b{bottom:643.090880pt;}
.y41{bottom:672.289547pt;}
.y23{bottom:684.768213pt;}
.y40{bottom:712.140213pt;}
.y5a{bottom:736.322880pt;}
.y22{bottom:745.873547pt;}
.y3f{bottom:751.990880pt;}
.y21{bottom:806.977547pt;}
.y59{bottom:827.772213pt;}
.y3e{bottom:831.690880pt;}
.y58{bottom:867.622880pt;}
.y20{bottom:868.081547pt;}
.y3d{bottom:871.541547pt;}
.y57{bottom:907.473547pt;}
.y1f{bottom:907.932213pt;}
.y3c{bottom:911.392213pt;}
.y56{bottom:947.324213pt;}
.y3b{bottom:951.242880pt;}
.y1e{bottom:969.036213pt;}
.y3a{bottom:991.093547pt;}
.y39{bottom:1030.944213pt;}
.y1d{bottom:1038.110880pt;}
.y55{bottom:1056.066880pt;}
.y1c{bottom:1077.960213pt;}
.y1b{bottom:1117.810880pt;}
.y38{bottom:1131.414880pt;}
.y54{bottom:1146.921547pt;}
.y1a{bottom:1182.614880pt;}
.y53{bottom:1186.772213pt;}
.y19{bottom:1211.838880pt;}
.y52{bottom:1226.621547pt;}
.y51{bottom:1266.472213pt;}
.y50{bottom:1306.322880pt;}
.y18{bottom:1317.204213pt;}
.y4f{bottom:1346.173547pt;}
.y17{bottom:1346.428213pt;}
.y4e{bottom:1386.024213pt;}
.y4d{bottom:1425.874880pt;}
.y16{bottom:1449.721547pt;}
.y15{bottom:1478.944213pt;}
.y4c{bottom:1525.122880pt;}
.y14{bottom:1582.237547pt;}
.y13{bottom:1611.461547pt;}
.y4b{bottom:1643.066880pt;}
.y12{bottom:1712.684213pt;}
.y11{bottom:1741.906880pt;}
.y10{bottom:1847.458880pt;}
.yf{bottom:1887.309547pt;}
.ye{bottom:1927.160213pt;}
.y37{bottom:1935.921547pt;}
.yd{bottom:1967.010880pt;}
.y36{bottom:1975.772213pt;}
.yc{bottom:2006.861547pt;}
.y35{bottom:2015.622880pt;}
.y34{bottom:2055.473547pt;}
.y33{bottom:2095.324213pt;}
.yb{bottom:2115.604213pt;}
.y32{bottom:2175.025547pt;}
.ya{bottom:2206.081547pt;}
.y31{bottom:2214.874880pt;}
.y9{bottom:2245.932213pt;}
.y30{bottom:2254.725547pt;}
.y8{bottom:2285.782880pt;}
.y2f{bottom:2294.576213pt;}
.y7{bottom:2325.632213pt;}
.y2e{bottom:2334.426880pt;}
.y6{bottom:2365.482880pt;}
.y2d{bottom:2374.277547pt;}
.y4a{bottom:2472.553547pt;}
.y5{bottom:2473.525547pt;}
.y4{bottom:2670.100213pt;}
.y3{bottom:2742.926880pt;}
.y2{bottom:2838.173547pt;}
.h7{height:53.861018pt;}
.h6{height:64.633379pt;}
.h8{height:77.574994pt;}
.h5{height:93.060115pt;}
.h4{height:134.017062pt;}
.h3{height:160.798186pt;}
.h2{height:192.965094pt;}
.h1{height:2928.037760pt;}
.h0{height:3120.000000pt;}
.w1{width:3840.049520pt;}
.w0{width:4032.000000pt;}
.x0{left:0.000000pt;}
.x6{left:32.528760pt;}
.x12{left:57.319427pt;}
.x1{left:95.975240pt;}
.x2{left:122.324760pt;}
.x11{left:191.755427pt;}
.x5{left:354.392760pt;}
.xc{left:420.272760pt;}
.xa{left:423.414093pt;}
.x7{left:450.902093pt;}
.x10{left:457.787427pt;}
.xd{left:462.186093pt;}
.xe{left:471.594093pt;}
.xb{left:489.990093pt;}
.xf{left:491.756760pt;}
.x9{left:496.772760pt;}
.x8{left:499.890093pt;}
.x3{left:1204.850093pt;}
.x14{left:1298.003427pt;}
.x4{left:1417.623427pt;}
.x15{left:1804.780760pt;}
.x13{left:1845.955427pt;}
.x19{left:2704.624760pt;}
.x1c{left:2730.112760pt;}
.x1a{left:3057.158093pt;}
.x17{left:3133.270093pt;}
.x1b{left:3134.452760pt;}
.x18{left:3160.610093pt;}
.x16{left:3198.340760pt;}
}




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