
    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_9b9767ede6574c8144c5f835.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_bb9a0dc107525b173bc64545.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_06c21441a424f3231abf8f9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_5cd32a73ab1fbe113aed07ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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;}
.ls14{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.021600px;}
.ls3{letter-spacing:0.206640px;}
.ls9{letter-spacing:0.218448px;}
.ls2{letter-spacing:0.220080px;}
.ls5{letter-spacing:0.225504px;}
.lsc{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.242208px;}
.ls11{letter-spacing:0.253872px;}
.ls0{letter-spacing:0.259080px;}
.ls15{letter-spacing:0.267264px;}
.lsf{letter-spacing:0.318816px;}
.lsd{letter-spacing:0.320280px;}
.lse{letter-spacing:0.383760px;}
.ls1{letter-spacing:0.442800px;}
.ls7{letter-spacing:0.478224px;}
.ls8{letter-spacing:0.519552px;}
.lsb{letter-spacing:0.554976px;}
.lsa{letter-spacing:0.578592px;}
.ls10{letter-spacing:0.702576px;}
.ls13{letter-spacing:0.738000px;}
.ls12{letter-spacing:0.861984px;}
.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;}
}
.ws3{word-spacing:-32.832000px;}
.ws4{word-spacing:-19.268064px;}
.ws8{word-spacing:-18.014400px;}
.ws7{word-spacing:-17.985600px;}
.ws6{word-spacing:-15.462576px;}
.ws0{word-spacing:-15.238224px;}
.ws1{word-spacing:-13.903920px;}
.ws2{word-spacing:-13.667760px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.065084px;}
._0{width:1.180800px;}
._22{width:2.361600px;}
._1f{width:4.173720px;}
._15{width:5.347140px;}
._1c{width:6.568860px;}
._c{width:7.587624px;}
._a{width:8.827200px;}
._b{width:9.961140px;}
._10{width:11.930400px;}
._19{width:13.369320px;}
._11{width:14.652540px;}
._d{width:15.948000px;}
._4{width:19.087200px;}
._21{width:20.450340px;}
._17{width:21.788940px;}
._8{width:22.939200px;}
._7{width:24.487200px;}
._23{width:25.948800px;}
._1d{width:27.043200px;}
._2d{width:28.159200px;}
._e{width:29.671200px;}
._29{width:30.794400px;}
._28{width:32.493600px;}
._1e{width:33.912000px;}
._14{width:34.920000px;}
._16{width:35.949600px;}
._2{width:37.180800px;}
._3{width:39.621600px;}
._13{width:42.292800px;}
._20{width:43.632000px;}
._26{width:44.798400px;}
._12{width:45.964800px;}
._1b{width:47.289600px;}
._1a{width:49.197600px;}
._27{width:50.220000px;}
._6{width:51.537600px;}
._2b{width:58.845600px;}
._f{width:60.559200px;}
._18{width:62.546340px;}
._2e{width:63.958140px;}
._2c{width:67.204800px;}
._5{width:69.983940px;}
._24{width:72.244800px;}
._25{width:81.100800px;}
._2a{width:86.623200px;}
._9{width:115.934400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.040000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y1{bottom:18.000000px;}
.y2{bottom:38.640030px;}
.y30{bottom:39.000030px;}
.y3{bottom:53.040030px;}
.y31{bottom:53.400030px;}
.y2b{bottom:95.160030px;}
.y2a{bottom:116.040030px;}
.y7c{bottom:130.800030px;}
.y29{bottom:136.560000px;}
.y7b{bottom:151.680000px;}
.y28{bottom:157.440000px;}
.y5b{bottom:168.960000px;}
.y7a{bottom:172.200000px;}
.y27{bottom:177.960000px;}
.y5a{bottom:189.480000px;}
.y79{bottom:193.080000px;}
.y26{bottom:198.840000px;}
.y59{bottom:210.360000px;}
.y78{bottom:213.600000px;}
.y58{bottom:230.880000px;}
.y25{bottom:237.360000px;}
.y57{bottom:251.760000px;}
.y77{bottom:252.480000px;}
.y24{bottom:258.240000px;}
.y56{bottom:272.280000px;}
.y76{bottom:273.000000px;}
.y23{bottom:278.760000px;}
.y55{bottom:293.160000px;}
.y75{bottom:293.880000px;}
.y22{bottom:299.640000px;}
.y74{bottom:314.400000px;}
.y21{bottom:320.160000px;}
.y54{bottom:323.400000px;}
.y73{bottom:335.280000px;}
.y20{bottom:341.040000px;}
.y72{bottom:355.800000px;}
.y1f{bottom:361.560000px;}
.y53{bottom:373.800000px;}
.y71{bottom:376.680000px;}
.y1e{bottom:382.440000px;}
.y52{bottom:394.680000px;}
.y70{bottom:397.200000px;}
.y1d{bottom:402.960000px;}
.y51{bottom:415.200000px;}
.y6f{bottom:418.080000px;}
.y1c{bottom:423.480000px;}
.y50{bottom:436.080000px;}
.y6e{bottom:438.600000px;}
.y1b{bottom:444.360000px;}
.y4f{bottom:456.600000px;}
.y4e{bottom:477.480000px;}
.y1a{bottom:482.880000px;}
.y4d{bottom:498.000000px;}
.y19{bottom:503.760000px;}
.y4c{bottom:518.880000px;}
.y18{bottom:524.280000px;}
.y4b{bottom:539.400000px;}
.y17{bottom:545.160000px;}
.y4a{bottom:560.280000px;}
.y16{bottom:565.680000px;}
.y49{bottom:580.800000px;}
.y6d{bottom:581.160000px;}
.y15{bottom:586.560000px;}
.y48{bottom:601.680000px;}
.y14{bottom:607.080000px;}
.y6c{bottom:611.040000px;}
.y47{bottom:622.200000px;}
.y13{bottom:627.960000px;}
.y46{bottom:643.080000px;}
.y12{bottom:658.200000px;}
.y6b{bottom:661.800000px;}
.y45{bottom:663.600000px;}
.y84{bottom:669.720000px;}
.y6a{bottom:682.320000px;}
.y44{bottom:684.480000px;}
.y69{bottom:703.200000px;}
.y43{bottom:705.000000px;}
.y11{bottom:708.600000px;}
.y68{bottom:723.720000px;}
.y42{bottom:725.880000px;}
.y67{bottom:744.600000px;}
.y41{bottom:746.400000px;}
.y83{bottom:747.120000px;}
.y10{bottom:747.480000px;}
.y66{bottom:765.120000px;}
.y40{bottom:767.280000px;}
.y82{bottom:768.000000px;}
.yf{bottom:786.000000px;}
.y3f{bottom:787.800000px;}
.y81{bottom:788.520000px;}
.y65{bottom:806.520000px;}
.y80{bottom:809.400000px;}
.ye{bottom:824.880000px;}
.y3e{bottom:826.680000px;}
.y7f{bottom:829.920000px;}
.y64{bottom:845.400000px;}
.y3d{bottom:847.200000px;}
.y7e{bottom:850.800000px;}
.y63{bottom:865.920000px;}
.yd{bottom:867.360000px;}
.y3c{bottom:868.080000px;}
.y62{bottom:886.800000px;}
.y3b{bottom:888.600000px;}
.y7d{bottom:889.320000px;}
.y61{bottom:907.320000px;}
.yc{bottom:908.400000px;}
.y3a{bottom:909.480000px;}
.y60{bottom:928.200000px;}
.y39{bottom:930.000000px;}
.y5f{bottom:948.720000px;}
.y38{bottom:950.880000px;}
.y5e{bottom:969.600000px;}
.y37{bottom:981.120000px;}
.y5d{bottom:990.120000px;}
.y5c{bottom:1011.000000px;}
.y36{bottom:1031.520000px;}
.ya{bottom:1035.480000px;}
.y35{bottom:1052.400000px;}
.y9{bottom:1052.760000px;}
.yb{bottom:1061.040000px;}
.y8{bottom:1070.040000px;}
.y34{bottom:1072.920000px;}
.y7{bottom:1087.320000px;}
.y33{bottom:1093.800000px;}
.y6{bottom:1104.240000px;}
.y5{bottom:1122.240000px;}
.y2f{bottom:1123.680000px;}
.y2e{bottom:1143.120000px;}
.y2d{bottom:1160.760000px;}
.y2c{bottom:1178.040000px;}
.ha{height:16.920000px;}
.h3{height:17.280000px;}
.h5{height:43.011563px;}
.h8{height:48.796875px;}
.h2{height:49.036641px;}
.h4{height:52.453125px;}
.h6{height:59.800781px;}
.h9{height:60.845625px;}
.h7{height:104.906250px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w2{width:15.119985px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x4{left:98.474850px;}
.x6{left:116.640015px;}
.x2{left:412.237500px;}
.x3{left:425.520000px;}
.x7{left:438.840000px;}
.x5{left:766.439850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.019200pt;}
.ls3{letter-spacing:0.183680pt;}
.ls9{letter-spacing:0.194176pt;}
.ls2{letter-spacing:0.195627pt;}
.ls5{letter-spacing:0.200448pt;}
.lsc{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.215296pt;}
.ls11{letter-spacing:0.225664pt;}
.ls0{letter-spacing:0.230293pt;}
.ls15{letter-spacing:0.237568pt;}
.lsf{letter-spacing:0.283392pt;}
.lsd{letter-spacing:0.284693pt;}
.lse{letter-spacing:0.341120pt;}
.ls1{letter-spacing:0.393600pt;}
.ls7{letter-spacing:0.425088pt;}
.ls8{letter-spacing:0.461824pt;}
.lsb{letter-spacing:0.493312pt;}
.lsa{letter-spacing:0.514304pt;}
.ls10{letter-spacing:0.624512pt;}
.ls13{letter-spacing:0.656000pt;}
.ls12{letter-spacing:0.766208pt;}
.ws3{word-spacing:-29.184000pt;}
.ws4{word-spacing:-17.127168pt;}
.ws8{word-spacing:-16.012800pt;}
.ws7{word-spacing:-15.987200pt;}
.ws6{word-spacing:-13.744512pt;}
.ws0{word-spacing:-13.545088pt;}
.ws1{word-spacing:-12.359040pt;}
.ws2{word-spacing:-12.149120pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.946741pt;}
._0{width:1.049600pt;}
._22{width:2.099200pt;}
._1f{width:3.709973pt;}
._15{width:4.753013pt;}
._1c{width:5.838987pt;}
._c{width:6.744555pt;}
._a{width:7.846400pt;}
._b{width:8.854347pt;}
._10{width:10.604800pt;}
._19{width:11.883840pt;}
._11{width:13.024480pt;}
._d{width:14.176000pt;}
._4{width:16.966400pt;}
._21{width:18.178080pt;}
._17{width:19.367947pt;}
._8{width:20.390400pt;}
._7{width:21.766400pt;}
._23{width:23.065600pt;}
._1d{width:24.038400pt;}
._2d{width:25.030400pt;}
._e{width:26.374400pt;}
._29{width:27.372800pt;}
._28{width:28.883200pt;}
._1e{width:30.144000pt;}
._14{width:31.040000pt;}
._16{width:31.955200pt;}
._2{width:33.049600pt;}
._3{width:35.219200pt;}
._13{width:37.593600pt;}
._20{width:38.784000pt;}
._26{width:39.820800pt;}
._12{width:40.857600pt;}
._1b{width:42.035200pt;}
._1a{width:43.731200pt;}
._27{width:44.640000pt;}
._6{width:45.811200pt;}
._2b{width:52.307200pt;}
._f{width:53.830400pt;}
._18{width:55.596747pt;}
._2e{width:56.851680pt;}
._2c{width:59.737600pt;}
._5{width:62.207947pt;}
._24{width:64.217600pt;}
._25{width:72.089600pt;}
._2a{width:76.998400pt;}
._9{width:103.052800pt;}
.fs0{font-size:52.480000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y1{bottom:16.000000pt;}
.y2{bottom:34.346693pt;}
.y30{bottom:34.666693pt;}
.y3{bottom:47.146693pt;}
.y31{bottom:47.466693pt;}
.y2b{bottom:84.586693pt;}
.y2a{bottom:103.146693pt;}
.y7c{bottom:116.266693pt;}
.y29{bottom:121.386667pt;}
.y7b{bottom:134.826667pt;}
.y28{bottom:139.946667pt;}
.y5b{bottom:150.186667pt;}
.y7a{bottom:153.066667pt;}
.y27{bottom:158.186667pt;}
.y5a{bottom:168.426667pt;}
.y79{bottom:171.626667pt;}
.y26{bottom:176.746667pt;}
.y59{bottom:186.986667pt;}
.y78{bottom:189.866667pt;}
.y58{bottom:205.226667pt;}
.y25{bottom:210.986667pt;}
.y57{bottom:223.786667pt;}
.y77{bottom:224.426667pt;}
.y24{bottom:229.546667pt;}
.y56{bottom:242.026667pt;}
.y76{bottom:242.666667pt;}
.y23{bottom:247.786667pt;}
.y55{bottom:260.586667pt;}
.y75{bottom:261.226667pt;}
.y22{bottom:266.346667pt;}
.y74{bottom:279.466667pt;}
.y21{bottom:284.586667pt;}
.y54{bottom:287.466667pt;}
.y73{bottom:298.026667pt;}
.y20{bottom:303.146667pt;}
.y72{bottom:316.266667pt;}
.y1f{bottom:321.386667pt;}
.y53{bottom:332.266667pt;}
.y71{bottom:334.826667pt;}
.y1e{bottom:339.946667pt;}
.y52{bottom:350.826667pt;}
.y70{bottom:353.066667pt;}
.y1d{bottom:358.186667pt;}
.y51{bottom:369.066667pt;}
.y6f{bottom:371.626667pt;}
.y1c{bottom:376.426667pt;}
.y50{bottom:387.626667pt;}
.y6e{bottom:389.866667pt;}
.y1b{bottom:394.986667pt;}
.y4f{bottom:405.866667pt;}
.y4e{bottom:424.426667pt;}
.y1a{bottom:429.226667pt;}
.y4d{bottom:442.666667pt;}
.y19{bottom:447.786667pt;}
.y4c{bottom:461.226667pt;}
.y18{bottom:466.026667pt;}
.y4b{bottom:479.466667pt;}
.y17{bottom:484.586667pt;}
.y4a{bottom:498.026667pt;}
.y16{bottom:502.826667pt;}
.y49{bottom:516.266667pt;}
.y6d{bottom:516.586667pt;}
.y15{bottom:521.386667pt;}
.y48{bottom:534.826667pt;}
.y14{bottom:539.626667pt;}
.y6c{bottom:543.146667pt;}
.y47{bottom:553.066667pt;}
.y13{bottom:558.186667pt;}
.y46{bottom:571.626667pt;}
.y12{bottom:585.066667pt;}
.y6b{bottom:588.266667pt;}
.y45{bottom:589.866667pt;}
.y84{bottom:595.306667pt;}
.y6a{bottom:606.506667pt;}
.y44{bottom:608.426667pt;}
.y69{bottom:625.066667pt;}
.y43{bottom:626.666667pt;}
.y11{bottom:629.866667pt;}
.y68{bottom:643.306667pt;}
.y42{bottom:645.226667pt;}
.y67{bottom:661.866667pt;}
.y41{bottom:663.466667pt;}
.y83{bottom:664.106667pt;}
.y10{bottom:664.426667pt;}
.y66{bottom:680.106667pt;}
.y40{bottom:682.026667pt;}
.y82{bottom:682.666667pt;}
.yf{bottom:698.666667pt;}
.y3f{bottom:700.266667pt;}
.y81{bottom:700.906667pt;}
.y65{bottom:716.906667pt;}
.y80{bottom:719.466667pt;}
.ye{bottom:733.226667pt;}
.y3e{bottom:734.826667pt;}
.y7f{bottom:737.706667pt;}
.y64{bottom:751.466667pt;}
.y3d{bottom:753.066667pt;}
.y7e{bottom:756.266667pt;}
.y63{bottom:769.706667pt;}
.yd{bottom:770.986667pt;}
.y3c{bottom:771.626667pt;}
.y62{bottom:788.266667pt;}
.y3b{bottom:789.866667pt;}
.y7d{bottom:790.506667pt;}
.y61{bottom:806.506667pt;}
.yc{bottom:807.466667pt;}
.y3a{bottom:808.426667pt;}
.y60{bottom:825.066667pt;}
.y39{bottom:826.666667pt;}
.y5f{bottom:843.306667pt;}
.y38{bottom:845.226667pt;}
.y5e{bottom:861.866667pt;}
.y37{bottom:872.106667pt;}
.y5d{bottom:880.106667pt;}
.y5c{bottom:898.666667pt;}
.y36{bottom:916.906667pt;}
.ya{bottom:920.426667pt;}
.y35{bottom:935.466667pt;}
.y9{bottom:935.786667pt;}
.yb{bottom:943.146667pt;}
.y8{bottom:951.146667pt;}
.y34{bottom:953.706667pt;}
.y7{bottom:966.506667pt;}
.y33{bottom:972.266667pt;}
.y6{bottom:981.546667pt;}
.y5{bottom:997.546667pt;}
.y2f{bottom:998.826667pt;}
.y2e{bottom:1016.106667pt;}
.y2d{bottom:1031.786667pt;}
.y2c{bottom:1047.146667pt;}
.ha{height:15.040000pt;}
.h3{height:15.360000pt;}
.h5{height:38.232500pt;}
.h8{height:43.375000pt;}
.h2{height:43.588125pt;}
.h4{height:46.625000pt;}
.h6{height:53.156250pt;}
.h9{height:54.085000pt;}
.h7{height:93.250000pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:13.439987pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x4{left:87.533200pt;}
.x6{left:103.680013pt;}
.x2{left:366.433333pt;}
.x3{left:378.240000pt;}
.x7{left:390.080000pt;}
.x5{left:681.279867pt;}
}




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