
    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_f4593ff40c5f878d8cc748e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_533e0aaa8d1dfef3b02e8db9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179688;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_0916058d6ee2361322a45c9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.881836;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_6c7a7892546c82c9f11f1a3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.176270;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_cb7af4c3453bc4303aa070e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.004395;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_ee8f72e2712db5de9764a186.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls1b{letter-spacing:-0.072000px;}
.lse{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.242064px;}
.ls16{letter-spacing:0.253872px;}
.ls8{letter-spacing:0.267264px;}
.ls0{letter-spacing:0.292680px;}
.ls5{letter-spacing:0.293280px;}
.ls4{letter-spacing:0.319560px;}
.lsb{letter-spacing:0.319680px;}
.lsd{letter-spacing:0.320280px;}
.ls3{letter-spacing:0.345960px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.372840px;}
.ls13{letter-spacing:0.375840px;}
.ls19{letter-spacing:0.383760px;}
.ls1{letter-spacing:0.399240px;}
.ls11{letter-spacing:0.401760px;}
.ls15{letter-spacing:0.419184px;}
.lsc{letter-spacing:0.478224px;}
.ls14{letter-spacing:0.578592px;}
.ls17{letter-spacing:0.702576px;}
.ls2{letter-spacing:0.732240px;}
.ls12{letter-spacing:0.868320px;}
.ls10{letter-spacing:0.933120px;}
.lsf{letter-spacing:0.997920px;}
.ls1f{letter-spacing:1.454400px;}
.ls1d{letter-spacing:2.116800px;}
.ls7{letter-spacing:2.794800px;}
.ls1c{letter-spacing:3.391200px;}
.ls1a{letter-spacing:4.032000px;}
.ls20{letter-spacing:7.428000px;}
.ls1e{letter-spacing:13.629600px;}
.lsa{letter-spacing:14.626260px;}
.ls21{letter-spacing:17.774400px;}
.ls22{letter-spacing:36.061800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws0{word-spacing:-17.197920px;}
.ws1{word-spacing:-17.068320px;}
.ws3{word-spacing:-15.462576px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-13.297380px;}
._9{margin-left:-3.190200px;}
._0{margin-left:-1.338120px;}
._1{width:1.474800px;}
._4{width:3.081600px;}
._3{width:4.478400px;}
._7{width:5.902800px;}
._6{width:7.279200px;}
._b{width:8.800212px;}
._d{width:10.486488px;}
._1a{width:11.531112px;}
._11{width:12.623040px;}
._a{width:13.697280px;}
._f{width:14.889600px;}
._14{width:15.897600px;}
._e{width:16.904520px;}
._c{width:19.080000px;}
._10{width:20.131200px;}
._5{width:21.189600px;}
._12{width:22.771980px;}
._15{width:24.283800px;}
._8{width:25.509600px;}
._18{width:27.180000px;}
._19{width:28.749600px;}
._16{width:29.858400px;}
._1b{width:31.154100px;}
._13{width:32.443200px;}
._21{width:34.128000px;}
._17{width:35.337600px;}
._22{width:37.036800px;}
._26{width:38.075700px;}
._23{width:43.084800px;}
._1e{width:44.092800px;}
._1c{width:46.836000px;}
._1f{width:47.880000px;}
._1d{width:54.158400px;}
._24{width:55.605600px;}
._25{width:176.399700px;}
._2{width:194.399700px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:17.280000px;}
.fs3{font-size:25.920000px;}
.fs5{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.320015px;}
.y1{bottom:17.999970px;}
.y2{bottom:39.359970px;}
.y3{bottom:53.039925px;}
.y6c{bottom:94.799970px;}
.y26{bottom:109.199970px;}
.y49{bottom:114.599970px;}
.y6b{bottom:124.319970px;}
.y61{bottom:141.960030px;}
.y25{bottom:143.760030px;}
.y48{bottom:144.120030px;}
.y6a{bottom:154.200030px;}
.y60{bottom:171.480030px;}
.y47{bottom:174.000030px;}
.y24{bottom:178.320030px;}
.y69{bottom:183.719880px;}
.y5f{bottom:201.360030px;}
.y46{bottom:203.519880px;}
.y23{bottom:212.880030px;}
.y68{bottom:213.599880px;}
.y5e{bottom:230.880030px;}
.y45{bottom:233.400030px;}
.y67{bottom:243.120030px;}
.y22{bottom:251.760030px;}
.y5d{bottom:260.760030px;}
.y44{bottom:262.920030px;}
.y21{bottom:266.160030px;}
.y66{bottom:273.000030px;}
.y5c{bottom:290.280030px;}
.y20{bottom:292.080030px;}
.y43{bottom:292.800030px;}
.y65{bottom:302.519880px;}
.y5b{bottom:320.160030px;}
.y1f{bottom:321.599880px;}
.y42{bottom:322.320030px;}
.y64{bottom:332.399880px;}
.y5a{bottom:349.679880px;}
.y1e{bottom:351.479880px;}
.y41{bottom:352.200030px;}
.y63{bottom:361.920030px;}
.y59{bottom:379.559880px;}
.y1d{bottom:380.999880px;}
.y40{bottom:381.719880px;}
.y62{bottom:391.800030px;}
.y58{bottom:409.079880px;}
.y1c{bottom:410.880030px;}
.y3f{bottom:411.600030px;}
.y57{bottom:438.960030px;}
.y1b{bottom:440.399880px;}
.y3e{bottom:441.120030px;}
.y56{bottom:468.479880px;}
.y1a{bottom:470.280030px;}
.y3d{bottom:470.999880px;}
.y55{bottom:498.360030px;}
.y19{bottom:499.800030px;}
.y3c{bottom:500.520030px;}
.y54{bottom:527.880030px;}
.y18{bottom:529.680030px;}
.y3b{bottom:530.399880px;}
.y53{bottom:557.759880px;}
.y17{bottom:559.200030px;}
.y3a{bottom:559.919880px;}
.y52{bottom:587.280030px;}
.y16{bottom:589.079880px;}
.y39{bottom:589.800030px;}
.y51{bottom:617.159880px;}
.y15{bottom:618.599880px;}
.y38{bottom:619.319880px;}
.y50{bottom:646.679880px;}
.y14{bottom:648.479880px;}
.y37{bottom:649.200030px;}
.y4f{bottom:676.559880px;}
.y13{bottom:677.999880px;}
.y36{bottom:678.719880px;}
.y4e{bottom:706.079880px;}
.y12{bottom:707.880030px;}
.y35{bottom:708.599880px;}
.y4d{bottom:735.960030px;}
.y11{bottom:737.399880px;}
.y34{bottom:738.120030px;}
.y4c{bottom:765.479880px;}
.y10{bottom:767.280030px;}
.y33{bottom:767.999880px;}
.y4b{bottom:795.359880px;}
.yf{bottom:796.800030px;}
.y32{bottom:797.519880px;}
.y4a{bottom:825.240030px;}
.ye{bottom:826.679880px;}
.y31{bottom:827.399880px;}
.yd{bottom:854.760030px;}
.y30{bottom:856.920030px;}
.yc{bottom:882.120030px;}
.y2f{bottom:886.800030px;}
.yb{bottom:912.719880px;}
.y2e{bottom:916.319880px;}
.y2d{bottom:946.199880px;}
.ya{bottom:947.280030px;}
.y2c{bottom:975.719880px;}
.y9{bottom:982.199880px;}
.y2b{bottom:1005.600030px;}
.y8{bottom:1017.479880px;}
.y2a{bottom:1035.120030px;}
.y7{bottom:1052.039880px;}
.y29{bottom:1064.999880px;}
.y6{bottom:1086.960030px;}
.y28{bottom:1094.519880px;}
.y5{bottom:1121.519880px;}
.y27{bottom:1124.399880px;}
.h3{height:20.880000px;}
.h8{height:26.593594px;}
.h9{height:40.993594px;}
.h2{height:49.992188px;}
.h6{height:58.250391px;}
.h7{height:64.722656px;}
.ha{height:66.023438px;}
.h5{height:75.078281px;}
.h4{height:76.587188px;}
.h1{height:1226.999850px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w3{width:18.000000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x2{left:109.439925px;}
.x9{left:162.539850px;}
.x5{left:175.183950px;}
.xa{left:215.640000px;}
.x4{left:274.642500px;}
.x8{left:322.742700px;}
.x7{left:346.587900px;}
.x6{left:428.339700px;}
.xb{left:437.400000px;}
.x3{left:442.080000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lse{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.215168pt;}
.ls16{letter-spacing:0.225664pt;}
.ls8{letter-spacing:0.237568pt;}
.ls0{letter-spacing:0.260160pt;}
.ls5{letter-spacing:0.260693pt;}
.ls4{letter-spacing:0.284053pt;}
.lsb{letter-spacing:0.284160pt;}
.lsd{letter-spacing:0.284693pt;}
.ls3{letter-spacing:0.307520pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.331413pt;}
.ls13{letter-spacing:0.334080pt;}
.ls19{letter-spacing:0.341120pt;}
.ls1{letter-spacing:0.354880pt;}
.ls11{letter-spacing:0.357120pt;}
.ls15{letter-spacing:0.372608pt;}
.lsc{letter-spacing:0.425088pt;}
.ls14{letter-spacing:0.514304pt;}
.ls17{letter-spacing:0.624512pt;}
.ls2{letter-spacing:0.650880pt;}
.ls12{letter-spacing:0.771840pt;}
.ls10{letter-spacing:0.829440pt;}
.lsf{letter-spacing:0.887040pt;}
.ls1f{letter-spacing:1.292800pt;}
.ls1d{letter-spacing:1.881600pt;}
.ls7{letter-spacing:2.484267pt;}
.ls1c{letter-spacing:3.014400pt;}
.ls1a{letter-spacing:3.584000pt;}
.ls20{letter-spacing:6.602667pt;}
.ls1e{letter-spacing:12.115200pt;}
.lsa{letter-spacing:13.001120pt;}
.ls21{letter-spacing:15.799467pt;}
.ls22{letter-spacing:32.054933pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws0{word-spacing:-15.287040pt;}
.ws1{word-spacing:-15.171840pt;}
.ws3{word-spacing:-13.744512pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-11.819893pt;}
._9{margin-left:-2.835733pt;}
._0{margin-left:-1.189440pt;}
._1{width:1.310933pt;}
._4{width:2.739200pt;}
._3{width:3.980800pt;}
._7{width:5.246933pt;}
._6{width:6.470400pt;}
._b{width:7.822411pt;}
._d{width:9.321323pt;}
._1a{width:10.249877pt;}
._11{width:11.220480pt;}
._a{width:12.175360pt;}
._f{width:13.235200pt;}
._14{width:14.131200pt;}
._e{width:15.026240pt;}
._c{width:16.960000pt;}
._10{width:17.894400pt;}
._5{width:18.835200pt;}
._12{width:20.241760pt;}
._15{width:21.585600pt;}
._8{width:22.675200pt;}
._18{width:24.160000pt;}
._19{width:25.555200pt;}
._16{width:26.540800pt;}
._1b{width:27.692533pt;}
._13{width:28.838400pt;}
._21{width:30.336000pt;}
._17{width:31.411200pt;}
._22{width:32.921600pt;}
._26{width:33.845067pt;}
._23{width:38.297600pt;}
._1e{width:39.193600pt;}
._1c{width:41.632000pt;}
._1f{width:42.560000pt;}
._1d{width:48.140800pt;}
._24{width:49.427200pt;}
._25{width:156.799733pt;}
._2{width:172.799733pt;}
.fs4{font-size:15.360000pt;}
.fs3{font-size:23.040000pt;}
.fs5{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.840013pt;}
.y1{bottom:15.999973pt;}
.y2{bottom:34.986640pt;}
.y3{bottom:47.146600pt;}
.y6c{bottom:84.266640pt;}
.y26{bottom:97.066640pt;}
.y49{bottom:101.866640pt;}
.y6b{bottom:110.506640pt;}
.y61{bottom:126.186693pt;}
.y25{bottom:127.786693pt;}
.y48{bottom:128.106693pt;}
.y6a{bottom:137.066693pt;}
.y60{bottom:152.426693pt;}
.y47{bottom:154.666693pt;}
.y24{bottom:158.506693pt;}
.y69{bottom:163.306560pt;}
.y5f{bottom:178.986693pt;}
.y46{bottom:180.906560pt;}
.y23{bottom:189.226693pt;}
.y68{bottom:189.866560pt;}
.y5e{bottom:205.226693pt;}
.y45{bottom:207.466693pt;}
.y67{bottom:216.106693pt;}
.y22{bottom:223.786693pt;}
.y5d{bottom:231.786693pt;}
.y44{bottom:233.706693pt;}
.y21{bottom:236.586693pt;}
.y66{bottom:242.666693pt;}
.y5c{bottom:258.026693pt;}
.y20{bottom:259.626693pt;}
.y43{bottom:260.266693pt;}
.y65{bottom:268.906560pt;}
.y5b{bottom:284.586693pt;}
.y1f{bottom:285.866560pt;}
.y42{bottom:286.506693pt;}
.y64{bottom:295.466560pt;}
.y5a{bottom:310.826560pt;}
.y1e{bottom:312.426560pt;}
.y41{bottom:313.066693pt;}
.y63{bottom:321.706693pt;}
.y59{bottom:337.386560pt;}
.y1d{bottom:338.666560pt;}
.y40{bottom:339.306560pt;}
.y62{bottom:348.266693pt;}
.y58{bottom:363.626560pt;}
.y1c{bottom:365.226693pt;}
.y3f{bottom:365.866693pt;}
.y57{bottom:390.186693pt;}
.y1b{bottom:391.466560pt;}
.y3e{bottom:392.106693pt;}
.y56{bottom:416.426560pt;}
.y1a{bottom:418.026693pt;}
.y3d{bottom:418.666560pt;}
.y55{bottom:442.986693pt;}
.y19{bottom:444.266693pt;}
.y3c{bottom:444.906693pt;}
.y54{bottom:469.226693pt;}
.y18{bottom:470.826693pt;}
.y3b{bottom:471.466560pt;}
.y53{bottom:495.786560pt;}
.y17{bottom:497.066693pt;}
.y3a{bottom:497.706560pt;}
.y52{bottom:522.026693pt;}
.y16{bottom:523.626560pt;}
.y39{bottom:524.266693pt;}
.y51{bottom:548.586560pt;}
.y15{bottom:549.866560pt;}
.y38{bottom:550.506560pt;}
.y50{bottom:574.826560pt;}
.y14{bottom:576.426560pt;}
.y37{bottom:577.066693pt;}
.y4f{bottom:601.386560pt;}
.y13{bottom:602.666560pt;}
.y36{bottom:603.306560pt;}
.y4e{bottom:627.626560pt;}
.y12{bottom:629.226693pt;}
.y35{bottom:629.866560pt;}
.y4d{bottom:654.186693pt;}
.y11{bottom:655.466560pt;}
.y34{bottom:656.106693pt;}
.y4c{bottom:680.426560pt;}
.y10{bottom:682.026693pt;}
.y33{bottom:682.666560pt;}
.y4b{bottom:706.986560pt;}
.yf{bottom:708.266693pt;}
.y32{bottom:708.906560pt;}
.y4a{bottom:733.546693pt;}
.ye{bottom:734.826560pt;}
.y31{bottom:735.466560pt;}
.yd{bottom:759.786693pt;}
.y30{bottom:761.706693pt;}
.yc{bottom:784.106693pt;}
.y2f{bottom:788.266693pt;}
.yb{bottom:811.306560pt;}
.y2e{bottom:814.506560pt;}
.y2d{bottom:841.066560pt;}
.ya{bottom:842.026693pt;}
.y2c{bottom:867.306560pt;}
.y9{bottom:873.066560pt;}
.y2b{bottom:893.866693pt;}
.y8{bottom:904.426560pt;}
.y2a{bottom:920.106693pt;}
.y7{bottom:935.146560pt;}
.y29{bottom:946.666560pt;}
.y6{bottom:966.186693pt;}
.y28{bottom:972.906560pt;}
.y5{bottom:996.906560pt;}
.y27{bottom:999.466560pt;}
.h3{height:18.560000pt;}
.h8{height:23.638750pt;}
.h9{height:36.438750pt;}
.h2{height:44.437500pt;}
.h6{height:51.778125pt;}
.h7{height:57.531250pt;}
.ha{height:58.687500pt;}
.h5{height:66.736250pt;}
.h4{height:68.077500pt;}
.h1{height:1090.666533pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w3{width:16.000000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x2{left:97.279933pt;}
.x9{left:144.479867pt;}
.x5{left:155.719067pt;}
.xa{left:191.680000pt;}
.x4{left:244.126667pt;}
.x8{left:286.882400pt;}
.x7{left:308.078133pt;}
.x6{left:380.746400pt;}
.xb{left:388.800000pt;}
.x3{left:392.960000pt;}
}




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