
    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_3b245b7c6e57864d570538dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_d57dc8db6603edb4fbffcb53.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_2a83e93f68551b06891f2d9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.676270;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_720b43797b6be7e6474f17f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3fd9cd4cf54ffbdd8622c33c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931641;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);}
.v6{vertical-align:-33.510000px;}
.v5{vertical-align:-17.346000px;}
.v4{vertical-align:-12.078000px;}
.v1{vertical-align:-9.522000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.146000px;}
.v3{vertical-align:16.326000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144054px;}
.ls3{letter-spacing:86.670108px;}
.ls2{letter-spacing:1429.782000px;}
.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;}
}
.ws8{word-spacing:-38.395524px;}
.ws1{word-spacing:-36.559014px;}
.ws3{word-spacing:-29.916000px;}
.ws2{word-spacing:-0.084018px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:1316.940000px;}
.ws7{word-spacing:1323.000000px;}
.ws4{word-spacing:1333.770000px;}
.ws6{word-spacing:1376.652000px;}
._30{margin-left:-1646.538000px;}
._c{margin-left:-27.001620px;}
._29{margin-left:-21.695292px;}
._3c{margin-left:-12.475080px;}
._34{margin-left:-10.558560px;}
._4{margin-left:-9.248724px;}
._23{margin-left:-7.514724px;}
._6{margin-left:-6.485118px;}
._5{margin-left:-5.187864px;}
._3{margin-left:-3.602340px;}
._22{margin-left:-2.205276px;}
._2{margin-left:-1.065444px;}
._0{width:1.081608px;}
._1{width:2.326680px;}
._e{width:3.695496px;}
._d{width:4.751352px;}
._11{width:7.084602px;}
._2a{width:10.558560px;}
._2b{width:11.562912px;}
._2f{width:12.847314px;}
._3b{width:14.594856px;}
._3a{width:15.667440px;}
._1d{width:17.171154px;}
._2d{width:18.741444px;}
._2e{width:19.877778px;}
._b{width:22.436940px;}
._2c{width:23.624778px;}
._f{width:24.944598px;}
._10{width:26.991570px;}
._17{width:28.098252px;}
._16{width:29.178954px;}
._39{width:31.939644px;}
._38{width:33.259464px;}
._20{width:36.068820px;}
._18{width:37.584414px;}
._19{width:38.665116px;}
._21{width:51.513462px;}
._7{width:53.188746px;}
._1f{width:54.400236px;}
._37{width:56.909994px;}
._36{width:59.366148px;}
._a{width:62.049540px;}
._8{width:63.351360px;}
._9{width:65.408922px;}
._12{width:75.288906px;}
._33{width:106.245510px;}
._32{width:107.301366px;}
._1e{width:126.750684px;}
._13{width:134.487360px;}
._1c{width:138.089700px;}
._1b{width:145.054224px;}
._35{width:149.506986px;}
._15{width:179.395626px;}
._14{width:274.858542px;}
._1a{width:392.413998px;}
._26{width:995.466000px;}
._27{width:1053.180000px;}
._25{width:1063.854000px;}
._24{width:1171.728000px;}
._31{width:1416.816000px;}
._28{width:2623.218000px;}
.fc7{color:rgb(255,51,51);}
.fc6{color:rgb(255,0,255);}
.fc8{color:rgb(89,131,176);}
.fc4{color:rgb(102,102,255);}
.fc2{color:transparent;}
.fc5{color:rgb(0,120,38);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(180,199,220);}
.fsa{font-size:62.418000px;}
.fs4{font-size:84.018000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:120.078000px;}
.fs8{font-size:131.982000px;}
.fsb{font-size:138.612000px;}
.fs3{font-size:144.054000px;}
.fs1{font-size:155.964000px;}
.fs2{font-size:239.982000px;}
.fs9{font-size:287.946000px;}
.fs5{font-size:300.018000px;}
.fs0{font-size:360.054000px;}
.ye{bottom:-52.597500px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y5e{bottom:7.866000px;}
.y17{bottom:53.319000px;}
.y1b{bottom:57.954000px;}
.yf{bottom:60.675000px;}
.yd{bottom:62.631000px;}
.y2c{bottom:63.057000px;}
.y65{bottom:72.538500px;}
.y49{bottom:72.666000px;}
.y8c{bottom:83.763000px;}
.y1a{bottom:91.417500px;}
.y45{bottom:102.090000px;}
.y48{bottom:102.982500px;}
.y19{bottom:124.879500px;}
.yc{bottom:129.514500px;}
.y8b{bottom:131.002500px;}
.y26{bottom:131.173500px;}
.y47{bottom:133.129500px;}
.y44{bottom:135.510000px;}
.y54{bottom:148.266000px;}
.y31{bottom:160.851000px;}
.y50{bottom:161.914500px;}
.y46{bottom:163.402500px;}
.y43{bottom:168.973500px;}
.y8a{bottom:180.538500px;}
.y4f{bottom:192.231000px;}
.yb{bottom:196.440000px;}
.y42{bottom:202.435500px;}
.y89{bottom:219.358500px;}
.y4e{bottom:222.378000px;}
.y41{bottom:235.857000px;}
.y4c{bottom:236.323500px;}
.y20{bottom:236.622000px;}
.y4d{bottom:252.651000px;}
.y66{bottom:255.202500px;}
.ya{bottom:258.222000px;}
.y6c{bottom:265.407000px;}
.y88{bottom:266.640000px;}
.y40{bottom:269.319000px;}
.y9{bottom:298.402500px;}
.y3f{bottom:302.782500px;}
.y87{bottom:316.134000px;}
.y3e{bottom:336.202500px;}
.y8{bottom:338.457000px;}
.y1f{bottom:344.622000px;}
.y64{bottom:353.338500px;}
.y86{bottom:354.954000px;}
.y62{bottom:357.207000px;}
.y6b{bottom:367.582500px;}
.y3d{bottom:369.835500px;}
.y6a{bottom:371.451000px;}
.y16{bottom:374.767500px;}
.y7{bottom:383.910000px;}
.y57{bottom:386.461500px;}
.y85{bottom:393.987000px;}
.y3c{bottom:403.257000px;}
.y56{bottom:414.651000px;}
.y22{bottom:414.822000px;}
.y15{bottom:429.534000px;}
.y3b{bottom:436.719000px;}
.y84{bottom:441.226500px;}
.y6{bottom:446.329500px;}
.y14{bottom:462.954000px;}
.y3a{bottom:470.182500px;}
.y5{bottom:489.954000px;}
.y83{bottom:490.549500px;}
.y5d{bottom:492.207000px;}
.y1d{bottom:493.567500px;}
.y13{bottom:496.417500px;}
.y39{bottom:503.602500px;}
.y7c{bottom:512.022000px;}
.y72{bottom:519.802500px;}
.y5c{bottom:529.114500px;}
.y82{bottom:529.582500px;}
.y4b{bottom:532.558500px;}
.y52{bottom:536.767500px;}
.y38{bottom:537.066000px;}
.y2b{bottom:544.719000px;}
.y7b{bottom:548.929500px;}
.y1e{bottom:549.822000px;}
.y12{bottom:551.182500px;}
.y30{bottom:554.626500px;}
.y71{bottom:556.710000px;}
.y5b{bottom:566.022000px;}
.y37{bottom:570.529500px;}
.y4{bottom:573.378000px;}
.y53{bottom:576.354000px;}
.y81{bottom:576.822000px;}
.y2a{bottom:581.626500px;}
.y11{bottom:584.602500px;}
.y7a{bottom:585.835500px;}
.y2f{bottom:591.534000px;}
.y70{bottom:593.617500px;}
.y5a{bottom:602.929500px;}
.y36{bottom:603.949500px;}
.y29{bottom:618.534000px;}
.y79{bottom:622.701000px;}
.y1c{bottom:625.422000px;}
.y80{bottom:626.187000px;}
.y2e{bottom:628.440000px;}
.y6f{bottom:630.523500px;}
.y35{bottom:637.411500px;}
.y63{bottom:639.240000px;}
.y59{bottom:639.835500px;}
.y61{bottom:640.729500px;}
.y69{bottom:646.257000px;}
.y28{bottom:655.440000px;}
.y18{bottom:659.011500px;}
.y78{bottom:659.607000px;}
.y24{bottom:662.457000px;}
.y7f{bottom:665.178000px;}
.y2d{bottom:665.305500px;}
.y6e{bottom:667.431000px;}
.y21{bottom:667.558500px;}
.y34{bottom:670.875000px;}
.y3{bottom:674.022000px;}
.y58{bottom:676.701000px;}
.y51{bottom:681.378000px;}
.y27{bottom:692.305500px;}
.y77{bottom:696.514500px;}
.y23{bottom:699.363000px;}
.y33{bottom:704.338500px;}
.y7e{bottom:712.417500px;}
.y74{bottom:719.773500px;}
.y6d{bottom:732.061500px;}
.y76{bottom:733.422000px;}
.y73{bottom:745.411500px;}
.y55{bottom:753.235500px;}
.y10{bottom:756.679500px;}
.y25{bottom:757.701000px;}
.y60{bottom:771.817500px;}
.y2{bottom:774.666000px;}
.y32{bottom:774.963000px;}
.y75{bottom:780.534000px;}
.y4a{bottom:787.719000px;}
.y7d{bottom:789.973500px;}
.y68{bottom:793.119000px;}
.y5f{bottom:806.767500px;}
.y67{bottom:819.523500px;}
.h7{height:55.998325px;}
.ha{height:60.880230px;}
.h12{height:66.761555px;}
.h10{height:66.929555px;}
.h13{height:67.277555px;}
.h14{height:67.445555px;}
.hb{height:78.257812px;}
.hd{height:85.403812px;}
.h9{height:87.009645px;}
.he{height:94.583813px;}
.hc{height:95.635395px;}
.h11{height:100.439555px;}
.h6{height:104.382879px;}
.h4{height:113.012977px;}
.h5{height:173.893207px;}
.hf{height:208.648371px;}
.h8{height:217.395855px;}
.h3{height:260.898504px;}
.h2{height:892.870500px;}
.h0{height:892.913386px;}
.h1{height:893.250000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x9{left:-67.053000px;}
.x0{left:0.000000px;}
.x2b{left:11.097000px;}
.x2f{left:37.969500px;}
.x1c{left:64.800000px;}
.x21{left:73.219500px;}
.x25{left:74.536500px;}
.x37{left:79.639500px;}
.x8{left:84.147000px;}
.x23{left:91.332000px;}
.x10{left:94.180500px;}
.xc{left:100.048500px;}
.x14{left:117.013500px;}
.x1{left:124.668000px;}
.xb{left:134.830500px;}
.x22{left:140.400000px;}
.x13{left:146.692500px;}
.x39{left:175.053000px;}
.x1d{left:178.030500px;}
.x1e{left:229.521000px;}
.xf{left:244.488000px;}
.x15{left:257.839500px;}
.x2{left:271.956000px;}
.x2a{left:299.253000px;}
.x31{left:303.463500px;}
.x30{left:306.439500px;}
.x2c{left:324.765000px;}
.x3{left:327.019500px;}
.x6{left:344.239500px;}
.x11{left:385.653000px;}
.x20{left:408.912000px;}
.xa{left:415.332000px;}
.x4{left:422.263500px;}
.x1f{left:429.747000px;}
.x36{left:433.786500px;}
.x5{left:435.316500px;}
.x35{left:436.507500px;}
.x38{left:454.068000px;}
.x7{left:457.809000px;}
.xd{left:463.932000px;}
.x29{left:469.969500px;}
.x24{left:473.116500px;}
.x2e{left:479.112000px;}
.x26{left:485.830500px;}
.x27{left:519.888000px;}
.x12{left:524.991000px;}
.x16{left:561.430500px;}
.x18{left:572.230500px;}
.x33{left:621.892500px;}
.x34{left:637.200000px;}
.x17{left:647.830500px;}
.x19{left:653.103000px;}
.x1a{left:767.991000px;}
.x1b{left:799.030500px;}
.x32{left:840.912000px;}
.x2d{left:857.409000px;}
.x28{left:1109.721000px;}
.xe{left:1120.351500px;}
@media print{
.v6{vertical-align:-29.786667pt;}
.v5{vertical-align:-15.418667pt;}
.v4{vertical-align:-10.736000pt;}
.v1{vertical-align:-8.464000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.352000pt;}
.v3{vertical-align:14.512000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128048pt;}
.ls3{letter-spacing:77.040096pt;}
.ls2{letter-spacing:1270.917333pt;}
.ws8{word-spacing:-34.129355pt;}
.ws1{word-spacing:-32.496901pt;}
.ws3{word-spacing:-26.592000pt;}
.ws2{word-spacing:-0.074683pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:1170.613333pt;}
.ws7{word-spacing:1176.000000pt;}
.ws4{word-spacing:1185.573333pt;}
.ws6{word-spacing:1223.690667pt;}
._30{margin-left:-1463.589333pt;}
._c{margin-left:-24.001440pt;}
._29{margin-left:-19.284704pt;}
._3c{margin-left:-11.088960pt;}
._34{margin-left:-9.385387pt;}
._4{margin-left:-8.221088pt;}
._23{margin-left:-6.679755pt;}
._6{margin-left:-5.764549pt;}
._5{margin-left:-4.611435pt;}
._3{margin-left:-3.202080pt;}
._22{margin-left:-1.960245pt;}
._2{margin-left:-0.947061pt;}
._0{width:0.961429pt;}
._1{width:2.068160pt;}
._e{width:3.284885pt;}
._d{width:4.223424pt;}
._11{width:6.297424pt;}
._2a{width:9.385387pt;}
._2b{width:10.278144pt;}
._2f{width:11.419835pt;}
._3b{width:12.973205pt;}
._3a{width:13.926613pt;}
._1d{width:15.263248pt;}
._2d{width:16.659061pt;}
._2e{width:17.669136pt;}
._b{width:19.943947pt;}
._2c{width:20.999803pt;}
._f{width:22.172976pt;}
._10{width:23.992507pt;}
._17{width:24.976224pt;}
._16{width:25.936848pt;}
._39{width:28.390795pt;}
._38{width:29.563968pt;}
._20{width:32.061173pt;}
._18{width:33.408368pt;}
._19{width:34.368992pt;}
._21{width:45.789744pt;}
._7{width:47.278885pt;}
._1f{width:48.355765pt;}
._37{width:50.586661pt;}
._36{width:52.769909pt;}
._a{width:55.155147pt;}
._8{width:56.312320pt;}
._9{width:58.141264pt;}
._12{width:66.923472pt;}
._33{width:94.440453pt;}
._32{width:95.378992pt;}
._1e{width:112.667275pt;}
._13{width:119.544320pt;}
._1c{width:122.746400pt;}
._1b{width:128.937088pt;}
._35{width:132.895099pt;}
._15{width:159.462779pt;}
._14{width:244.318704pt;}
._1a{width:348.812443pt;}
._26{width:884.858667pt;}
._27{width:936.160000pt;}
._25{width:945.648000pt;}
._24{width:1041.536000pt;}
._31{width:1259.392000pt;}
._28{width:2331.749333pt;}
.fsa{font-size:55.482667pt;}
.fs4{font-size:74.682667pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:106.736000pt;}
.fs8{font-size:117.317333pt;}
.fsb{font-size:123.210667pt;}
.fs3{font-size:128.048000pt;}
.fs1{font-size:138.634667pt;}
.fs2{font-size:213.317333pt;}
.fs9{font-size:255.952000pt;}
.fs5{font-size:266.682667pt;}
.fs0{font-size:320.048000pt;}
.ye{bottom:-46.753333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y5e{bottom:6.992000pt;}
.y17{bottom:47.394667pt;}
.y1b{bottom:51.514667pt;}
.yf{bottom:53.933333pt;}
.yd{bottom:55.672000pt;}
.y2c{bottom:56.050667pt;}
.y65{bottom:64.478667pt;}
.y49{bottom:64.592000pt;}
.y8c{bottom:74.456000pt;}
.y1a{bottom:81.260000pt;}
.y45{bottom:90.746667pt;}
.y48{bottom:91.540000pt;}
.y19{bottom:111.004000pt;}
.yc{bottom:115.124000pt;}
.y8b{bottom:116.446667pt;}
.y26{bottom:116.598667pt;}
.y47{bottom:118.337333pt;}
.y44{bottom:120.453333pt;}
.y54{bottom:131.792000pt;}
.y31{bottom:142.978667pt;}
.y50{bottom:143.924000pt;}
.y46{bottom:145.246667pt;}
.y43{bottom:150.198667pt;}
.y8a{bottom:160.478667pt;}
.y4f{bottom:170.872000pt;}
.yb{bottom:174.613333pt;}
.y42{bottom:179.942667pt;}
.y89{bottom:194.985333pt;}
.y4e{bottom:197.669333pt;}
.y41{bottom:209.650667pt;}
.y4c{bottom:210.065333pt;}
.y20{bottom:210.330667pt;}
.y4d{bottom:224.578667pt;}
.y66{bottom:226.846667pt;}
.ya{bottom:229.530667pt;}
.y6c{bottom:235.917333pt;}
.y88{bottom:237.013333pt;}
.y40{bottom:239.394667pt;}
.y9{bottom:265.246667pt;}
.y3f{bottom:269.140000pt;}
.y87{bottom:281.008000pt;}
.y3e{bottom:298.846667pt;}
.y8{bottom:300.850667pt;}
.y1f{bottom:306.330667pt;}
.y64{bottom:314.078667pt;}
.y86{bottom:315.514667pt;}
.y62{bottom:317.517333pt;}
.y6b{bottom:326.740000pt;}
.y3d{bottom:328.742667pt;}
.y6a{bottom:330.178667pt;}
.y16{bottom:333.126667pt;}
.y7{bottom:341.253333pt;}
.y57{bottom:343.521333pt;}
.y85{bottom:350.210667pt;}
.y3c{bottom:358.450667pt;}
.y56{bottom:368.578667pt;}
.y22{bottom:368.730667pt;}
.y15{bottom:381.808000pt;}
.y3b{bottom:388.194667pt;}
.y84{bottom:392.201333pt;}
.y6{bottom:396.737333pt;}
.y14{bottom:411.514667pt;}
.y3a{bottom:417.940000pt;}
.y5{bottom:435.514667pt;}
.y83{bottom:436.044000pt;}
.y5d{bottom:437.517333pt;}
.y1d{bottom:438.726667pt;}
.y13{bottom:441.260000pt;}
.y39{bottom:447.646667pt;}
.y7c{bottom:455.130667pt;}
.y72{bottom:462.046667pt;}
.y5c{bottom:470.324000pt;}
.y82{bottom:470.740000pt;}
.y4b{bottom:473.385333pt;}
.y52{bottom:477.126667pt;}
.y38{bottom:477.392000pt;}
.y2b{bottom:484.194667pt;}
.y7b{bottom:487.937333pt;}
.y1e{bottom:488.730667pt;}
.y12{bottom:489.940000pt;}
.y30{bottom:493.001333pt;}
.y71{bottom:494.853333pt;}
.y5b{bottom:503.130667pt;}
.y37{bottom:507.137333pt;}
.y4{bottom:509.669333pt;}
.y53{bottom:512.314667pt;}
.y81{bottom:512.730667pt;}
.y2a{bottom:517.001333pt;}
.y11{bottom:519.646667pt;}
.y7a{bottom:520.742667pt;}
.y2f{bottom:525.808000pt;}
.y70{bottom:527.660000pt;}
.y5a{bottom:535.937333pt;}
.y36{bottom:536.844000pt;}
.y29{bottom:549.808000pt;}
.y79{bottom:553.512000pt;}
.y1c{bottom:555.930667pt;}
.y80{bottom:556.610667pt;}
.y2e{bottom:558.613333pt;}
.y6f{bottom:560.465333pt;}
.y35{bottom:566.588000pt;}
.y63{bottom:568.213333pt;}
.y59{bottom:568.742667pt;}
.y61{bottom:569.537333pt;}
.y69{bottom:574.450667pt;}
.y28{bottom:582.613333pt;}
.y18{bottom:585.788000pt;}
.y78{bottom:586.317333pt;}
.y24{bottom:588.850667pt;}
.y7f{bottom:591.269333pt;}
.y2d{bottom:591.382667pt;}
.y6e{bottom:593.272000pt;}
.y21{bottom:593.385333pt;}
.y34{bottom:596.333333pt;}
.y3{bottom:599.130667pt;}
.y58{bottom:601.512000pt;}
.y51{bottom:605.669333pt;}
.y27{bottom:615.382667pt;}
.y77{bottom:619.124000pt;}
.y23{bottom:621.656000pt;}
.y33{bottom:626.078667pt;}
.y7e{bottom:633.260000pt;}
.y74{bottom:639.798667pt;}
.y6d{bottom:650.721333pt;}
.y76{bottom:651.930667pt;}
.y73{bottom:662.588000pt;}
.y55{bottom:669.542667pt;}
.y10{bottom:672.604000pt;}
.y25{bottom:673.512000pt;}
.y60{bottom:686.060000pt;}
.y2{bottom:688.592000pt;}
.y32{bottom:688.856000pt;}
.y75{bottom:693.808000pt;}
.y4a{bottom:700.194667pt;}
.y7d{bottom:702.198667pt;}
.y68{bottom:704.994667pt;}
.y5f{bottom:717.126667pt;}
.y67{bottom:728.465333pt;}
.h7{height:49.776289pt;}
.ha{height:54.115760pt;}
.h12{height:59.343604pt;}
.h10{height:59.492938pt;}
.h13{height:59.802271pt;}
.h14{height:59.951604pt;}
.hb{height:69.562500pt;}
.hd{height:75.914500pt;}
.h9{height:77.341906pt;}
.he{height:84.074500pt;}
.hc{height:85.009240pt;}
.h11{height:89.279604pt;}
.h6{height:92.784781pt;}
.h4{height:100.455979pt;}
.h5{height:154.571740pt;}
.hf{height:185.465219pt;}
.h8{height:193.240760pt;}
.h3{height:231.909781pt;}
.h2{height:793.662667pt;}
.h0{height:793.700787pt;}
.h1{height:794.000000pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x9{left:-59.602667pt;}
.x0{left:0.000000pt;}
.x2b{left:9.864000pt;}
.x2f{left:33.750667pt;}
.x1c{left:57.600000pt;}
.x21{left:65.084000pt;}
.x25{left:66.254667pt;}
.x37{left:70.790667pt;}
.x8{left:74.797333pt;}
.x23{left:81.184000pt;}
.x10{left:83.716000pt;}
.xc{left:88.932000pt;}
.x14{left:104.012000pt;}
.x1{left:110.816000pt;}
.xb{left:119.849333pt;}
.x22{left:124.800000pt;}
.x13{left:130.393333pt;}
.x39{left:155.602667pt;}
.x1d{left:158.249333pt;}
.x1e{left:204.018667pt;}
.xf{left:217.322667pt;}
.x15{left:229.190667pt;}
.x2{left:241.738667pt;}
.x2a{left:266.002667pt;}
.x31{left:269.745333pt;}
.x30{left:272.390667pt;}
.x2c{left:288.680000pt;}
.x3{left:290.684000pt;}
.x6{left:305.990667pt;}
.x11{left:342.802667pt;}
.x20{left:363.477333pt;}
.xa{left:369.184000pt;}
.x4{left:375.345333pt;}
.x1f{left:381.997333pt;}
.x36{left:385.588000pt;}
.x5{left:386.948000pt;}
.x35{left:388.006667pt;}
.x38{left:403.616000pt;}
.x7{left:406.941333pt;}
.xd{left:412.384000pt;}
.x29{left:417.750667pt;}
.x24{left:420.548000pt;}
.x2e{left:425.877333pt;}
.x26{left:431.849333pt;}
.x27{left:462.122667pt;}
.x12{left:466.658667pt;}
.x16{left:499.049333pt;}
.x18{left:508.649333pt;}
.x33{left:552.793333pt;}
.x34{left:566.400000pt;}
.x17{left:575.849333pt;}
.x19{left:580.536000pt;}
.x1a{left:682.658667pt;}
.x1b{left:710.249333pt;}
.x32{left:747.477333pt;}
.x2d{left:762.141333pt;}
.x28{left:986.418667pt;}
.xe{left:995.868000pt;}
}




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