
    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_5ffcea097f8181dc1bc8977d.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_bb3e568cc1eb3acfa728e8be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_22843e8e2a787332d9055201.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073242;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_78c3b0c7085a928765293eb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_8cbe36be9ab0bdaefc3d42fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_f8579f5b844d40710950756c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_467f8550d5ee8366c2308fcb.woff2')format("woff");}.ff7{font-family:ff7;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls2{letter-spacing:-11.929500px;}
.ls1{letter-spacing:-10.098000px;}
.ls3{letter-spacing:-3.630000px;}
.ls5{letter-spacing:-0.924000px;}
.ls4{letter-spacing:-0.264000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.500000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:7.821000px;}
.ws2{word-spacing:11.484000px;}
._14{margin-left:-7.656000px;}
._11{margin-left:-6.048000px;}
._1{margin-left:-4.536000px;}
._a{margin-left:-3.438000px;}
._0{margin-left:-1.512000px;}
._6{width:1.641600px;}
._4{width:2.773200px;}
._2{width:4.024800px;}
._e{width:5.478000px;}
._b{width:6.864000px;}
._5{width:8.184000px;}
._8{width:9.438000px;}
._d{width:10.626000px;}
._7{width:11.748000px;}
._13{width:12.870000px;}
._10{width:14.058000px;}
._9{width:15.312000px;}
._15{width:16.488000px;}
._12{width:17.622000px;}
._f{width:20.592000px;}
._3{width:49.368000px;}
._c{width:68.508000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:transparent;}
.fs0{font-size:6.000000px;}
.fs5{font-size:34.800000px;}
.fs4{font-size:49.500000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.837500px;}
.y2{bottom:42.532050px;}
.y27{bottom:85.051800px;}
.ya8{bottom:85.547550px;}
.y5f{bottom:86.525550px;}
.y94{bottom:86.608050px;}
.y29{bottom:88.433250px;}
.ya7{bottom:103.547550px;}
.y5e{bottom:106.474050px;}
.y93{bottom:106.556550px;}
.y28{bottom:108.381750px;}
.ya6{bottom:121.547550px;}
.y5d{bottom:126.422550px;}
.y92{bottom:126.505050px;}
.y26{bottom:128.330250px;}
.ya5{bottom:139.547550px;}
.y5c{bottom:146.371050px;}
.y91{bottom:146.453550px;}
.y25{bottom:148.278750px;}
.ya4{bottom:157.547550px;}
.y5b{bottom:166.319550px;}
.y90{bottom:166.402050px;}
.y24{bottom:168.227250px;}
.ya3{bottom:175.547550px;}
.y5a{bottom:186.268050px;}
.y8f{bottom:186.350550px;}
.y23{bottom:188.175750px;}
.ya2{bottom:193.547550px;}
.y59{bottom:206.216550px;}
.y8e{bottom:206.299050px;}
.y22{bottom:208.124250px;}
.ya1{bottom:211.547550px;}
.y58{bottom:226.165050px;}
.y8d{bottom:226.247550px;}
.y21{bottom:228.072750px;}
.ya0{bottom:229.547550px;}
.y57{bottom:246.113550px;}
.y8c{bottom:246.196050px;}
.y9f{bottom:247.547550px;}
.y20{bottom:248.021250px;}
.y9e{bottom:265.547550px;}
.y56{bottom:266.062050px;}
.y8b{bottom:266.144550px;}
.y1f{bottom:267.969750px;}
.y9d{bottom:283.547550px;}
.y55{bottom:286.010550px;}
.y8a{bottom:286.093050px;}
.y1e{bottom:287.918250px;}
.y9c{bottom:301.547550px;}
.y54{bottom:305.959050px;}
.y89{bottom:306.041550px;}
.y1d{bottom:307.866750px;}
.y9b{bottom:319.547550px;}
.y53{bottom:325.907550px;}
.y88{bottom:325.990050px;}
.y1c{bottom:327.815250px;}
.y9a{bottom:337.547550px;}
.y52{bottom:345.856050px;}
.y87{bottom:345.938550px;}
.y1b{bottom:347.763750px;}
.y99{bottom:355.547550px;}
.y51{bottom:365.804550px;}
.y86{bottom:365.887050px;}
.y1a{bottom:367.712250px;}
.y98{bottom:373.547550px;}
.y50{bottom:385.753050px;}
.y85{bottom:385.835550px;}
.y19{bottom:387.660750px;}
.y97{bottom:391.547550px;}
.y4f{bottom:405.701550px;}
.y84{bottom:405.784050px;}
.y18{bottom:407.609250px;}
.y96{bottom:409.547550px;}
.y4e{bottom:425.650050px;}
.y83{bottom:425.732550px;}
.y95{bottom:427.547550px;}
.y17{bottom:427.557750px;}
.y4d{bottom:445.598550px;}
.y82{bottom:445.681050px;}
.y16{bottom:447.506250px;}
.y4c{bottom:465.547050px;}
.y81{bottom:465.629550px;}
.y15{bottom:467.454750px;}
.y4b{bottom:485.495550px;}
.y80{bottom:485.578050px;}
.y14{bottom:487.403250px;}
.y4a{bottom:505.444050px;}
.y7f{bottom:505.526550px;}
.y13{bottom:507.351750px;}
.y49{bottom:525.392550px;}
.y7e{bottom:525.475050px;}
.y12{bottom:527.300250px;}
.y48{bottom:545.341050px;}
.y7d{bottom:545.423550px;}
.y11{bottom:547.248750px;}
.y47{bottom:565.289550px;}
.y7c{bottom:565.372050px;}
.y10{bottom:567.197250px;}
.y46{bottom:585.238050px;}
.y7b{bottom:585.320550px;}
.yf{bottom:587.145750px;}
.y45{bottom:605.186550px;}
.y7a{bottom:605.269050px;}
.ye{bottom:607.094250px;}
.y44{bottom:625.135050px;}
.y79{bottom:625.217550px;}
.yd{bottom:627.042750px;}
.y43{bottom:645.083550px;}
.y78{bottom:645.166050px;}
.yc{bottom:646.991250px;}
.y42{bottom:665.032050px;}
.y77{bottom:665.114550px;}
.yb{bottom:666.939750px;}
.y41{bottom:684.980550px;}
.y76{bottom:685.063050px;}
.ya{bottom:686.888250px;}
.y40{bottom:704.929050px;}
.y75{bottom:705.011550px;}
.y9{bottom:706.836750px;}
.y3f{bottom:724.877550px;}
.y74{bottom:724.960050px;}
.y8{bottom:726.785250px;}
.y3e{bottom:744.826050px;}
.y73{bottom:744.908550px;}
.y7{bottom:746.733750px;}
.y3d{bottom:764.774550px;}
.y72{bottom:764.857050px;}
.y6{bottom:766.682250px;}
.y3c{bottom:784.723050px;}
.y71{bottom:784.805550px;}
.y3b{bottom:804.671550px;}
.y70{bottom:804.754050px;}
.y3a{bottom:824.620050px;}
.y6f{bottom:824.702550px;}
.y39{bottom:844.568550px;}
.y6e{bottom:844.651050px;}
.y38{bottom:864.517050px;}
.y6d{bottom:864.599550px;}
.y37{bottom:884.465550px;}
.y6c{bottom:884.548050px;}
.y5{bottom:893.868450px;}
.y36{bottom:904.414050px;}
.y6b{bottom:904.496550px;}
.y4{bottom:913.818450px;}
.y35{bottom:924.362550px;}
.y6a{bottom:924.445050px;}
.y34{bottom:944.311050px;}
.y69{bottom:944.393550px;}
.y33{bottom:964.259550px;}
.y68{bottom:964.342050px;}
.yb1{bottom:978.007500px;}
.yba{bottom:978.037500px;}
.y32{bottom:984.208050px;}
.y67{bottom:984.290550px;}
.y3{bottom:993.168300px;}
.yb0{bottom:996.367500px;}
.yb9{bottom:996.397500px;}
.y31{bottom:1004.156550px;}
.y66{bottom:1004.239050px;}
.yaf{bottom:1014.727500px;}
.yb8{bottom:1014.757500px;}
.y30{bottom:1024.105050px;}
.y65{bottom:1024.187550px;}
.yae{bottom:1033.087500px;}
.yb7{bottom:1033.117500px;}
.y2f{bottom:1044.053550px;}
.y64{bottom:1044.136050px;}
.yad{bottom:1051.447500px;}
.yb6{bottom:1051.477500px;}
.y2e{bottom:1064.002050px;}
.y63{bottom:1064.084550px;}
.yac{bottom:1069.807500px;}
.yb5{bottom:1069.837500px;}
.y2d{bottom:1083.950550px;}
.y62{bottom:1084.033050px;}
.yab{bottom:1088.167500px;}
.yb4{bottom:1088.197500px;}
.y2c{bottom:1103.899050px;}
.y61{bottom:1103.981550px;}
.yaa{bottom:1106.527500px;}
.yb3{bottom:1106.557500px;}
.y2b{bottom:1123.847550px;}
.y60{bottom:1123.930050px;}
.ya9{bottom:1124.887500px;}
.yb2{bottom:1124.917500px;}
.y2a{bottom:1189.707150px;}
.h2{height:4.446000px;}
.h8{height:52.998047px;}
.h5{height:57.911133px;}
.h6{height:58.857422px;}
.h3{height:58.886719px;}
.h7{height:64.775391px;}
.h9{height:66.515625px;}
.h4{height:82.441406px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.252740px;}
.x7{left:85.039350px;}
.x6{left:89.824350px;}
.x8{left:106.299150px;}
.xd{left:114.803100px;}
.x3{left:155.250900px;}
.x4{left:267.521700px;}
.xb{left:322.933050px;}
.x5{left:349.715100px;}
.xa{left:412.706700px;}
.x2{left:435.206700px;}
.x9{left:467.716500px;}
.xc{left:497.476500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls2{letter-spacing:-10.604000pt;}
.ls1{letter-spacing:-8.976000pt;}
.ls3{letter-spacing:-3.226667pt;}
.ls5{letter-spacing:-0.821333pt;}
.ls4{letter-spacing:-0.234667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.333333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:6.952000pt;}
.ws2{word-spacing:10.208000pt;}
._14{margin-left:-6.805333pt;}
._11{margin-left:-5.376000pt;}
._1{margin-left:-4.032000pt;}
._a{margin-left:-3.056000pt;}
._0{margin-left:-1.344000pt;}
._6{width:1.459200pt;}
._4{width:2.465067pt;}
._2{width:3.577600pt;}
._e{width:4.869333pt;}
._b{width:6.101333pt;}
._5{width:7.274667pt;}
._8{width:8.389333pt;}
._d{width:9.445333pt;}
._7{width:10.442667pt;}
._13{width:11.440000pt;}
._10{width:12.496000pt;}
._9{width:13.610667pt;}
._15{width:14.656000pt;}
._12{width:15.664000pt;}
._f{width:18.304000pt;}
._3{width:43.882667pt;}
._c{width:60.896000pt;}
.fs0{font-size:5.333333pt;}
.fs5{font-size:30.933333pt;}
.fs4{font-size:44.000000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.633333pt;}
.y2{bottom:37.806267pt;}
.y27{bottom:75.601600pt;}
.ya8{bottom:76.042267pt;}
.y5f{bottom:76.911600pt;}
.y94{bottom:76.984933pt;}
.y29{bottom:78.607333pt;}
.ya7{bottom:92.042267pt;}
.y5e{bottom:94.643600pt;}
.y93{bottom:94.716933pt;}
.y28{bottom:96.339333pt;}
.ya6{bottom:108.042267pt;}
.y5d{bottom:112.375600pt;}
.y92{bottom:112.448933pt;}
.y26{bottom:114.071333pt;}
.ya5{bottom:124.042267pt;}
.y5c{bottom:130.107600pt;}
.y91{bottom:130.180933pt;}
.y25{bottom:131.803333pt;}
.ya4{bottom:140.042267pt;}
.y5b{bottom:147.839600pt;}
.y90{bottom:147.912933pt;}
.y24{bottom:149.535333pt;}
.ya3{bottom:156.042267pt;}
.y5a{bottom:165.571600pt;}
.y8f{bottom:165.644933pt;}
.y23{bottom:167.267333pt;}
.ya2{bottom:172.042267pt;}
.y59{bottom:183.303600pt;}
.y8e{bottom:183.376933pt;}
.y22{bottom:184.999333pt;}
.ya1{bottom:188.042267pt;}
.y58{bottom:201.035600pt;}
.y8d{bottom:201.108933pt;}
.y21{bottom:202.731333pt;}
.ya0{bottom:204.042267pt;}
.y57{bottom:218.767600pt;}
.y8c{bottom:218.840933pt;}
.y9f{bottom:220.042267pt;}
.y20{bottom:220.463333pt;}
.y9e{bottom:236.042267pt;}
.y56{bottom:236.499600pt;}
.y8b{bottom:236.572933pt;}
.y1f{bottom:238.195333pt;}
.y9d{bottom:252.042267pt;}
.y55{bottom:254.231600pt;}
.y8a{bottom:254.304933pt;}
.y1e{bottom:255.927333pt;}
.y9c{bottom:268.042267pt;}
.y54{bottom:271.963600pt;}
.y89{bottom:272.036933pt;}
.y1d{bottom:273.659333pt;}
.y9b{bottom:284.042267pt;}
.y53{bottom:289.695600pt;}
.y88{bottom:289.768933pt;}
.y1c{bottom:291.391333pt;}
.y9a{bottom:300.042267pt;}
.y52{bottom:307.427600pt;}
.y87{bottom:307.500933pt;}
.y1b{bottom:309.123333pt;}
.y99{bottom:316.042267pt;}
.y51{bottom:325.159600pt;}
.y86{bottom:325.232933pt;}
.y1a{bottom:326.855333pt;}
.y98{bottom:332.042267pt;}
.y50{bottom:342.891600pt;}
.y85{bottom:342.964933pt;}
.y19{bottom:344.587333pt;}
.y97{bottom:348.042267pt;}
.y4f{bottom:360.623600pt;}
.y84{bottom:360.696933pt;}
.y18{bottom:362.319333pt;}
.y96{bottom:364.042267pt;}
.y4e{bottom:378.355600pt;}
.y83{bottom:378.428933pt;}
.y95{bottom:380.042267pt;}
.y17{bottom:380.051333pt;}
.y4d{bottom:396.087600pt;}
.y82{bottom:396.160933pt;}
.y16{bottom:397.783333pt;}
.y4c{bottom:413.819600pt;}
.y81{bottom:413.892933pt;}
.y15{bottom:415.515333pt;}
.y4b{bottom:431.551600pt;}
.y80{bottom:431.624933pt;}
.y14{bottom:433.247333pt;}
.y4a{bottom:449.283600pt;}
.y7f{bottom:449.356933pt;}
.y13{bottom:450.979333pt;}
.y49{bottom:467.015600pt;}
.y7e{bottom:467.088933pt;}
.y12{bottom:468.711333pt;}
.y48{bottom:484.747600pt;}
.y7d{bottom:484.820933pt;}
.y11{bottom:486.443333pt;}
.y47{bottom:502.479600pt;}
.y7c{bottom:502.552933pt;}
.y10{bottom:504.175333pt;}
.y46{bottom:520.211600pt;}
.y7b{bottom:520.284933pt;}
.yf{bottom:521.907333pt;}
.y45{bottom:537.943600pt;}
.y7a{bottom:538.016933pt;}
.ye{bottom:539.639333pt;}
.y44{bottom:555.675600pt;}
.y79{bottom:555.748933pt;}
.yd{bottom:557.371333pt;}
.y43{bottom:573.407600pt;}
.y78{bottom:573.480933pt;}
.yc{bottom:575.103333pt;}
.y42{bottom:591.139600pt;}
.y77{bottom:591.212933pt;}
.yb{bottom:592.835333pt;}
.y41{bottom:608.871600pt;}
.y76{bottom:608.944933pt;}
.ya{bottom:610.567333pt;}
.y40{bottom:626.603600pt;}
.y75{bottom:626.676933pt;}
.y9{bottom:628.299333pt;}
.y3f{bottom:644.335600pt;}
.y74{bottom:644.408933pt;}
.y8{bottom:646.031333pt;}
.y3e{bottom:662.067600pt;}
.y73{bottom:662.140933pt;}
.y7{bottom:663.763333pt;}
.y3d{bottom:679.799600pt;}
.y72{bottom:679.872933pt;}
.y6{bottom:681.495333pt;}
.y3c{bottom:697.531600pt;}
.y71{bottom:697.604933pt;}
.y3b{bottom:715.263600pt;}
.y70{bottom:715.336933pt;}
.y3a{bottom:732.995600pt;}
.y6f{bottom:733.068933pt;}
.y39{bottom:750.727600pt;}
.y6e{bottom:750.800933pt;}
.y38{bottom:768.459600pt;}
.y6d{bottom:768.532933pt;}
.y37{bottom:786.191600pt;}
.y6c{bottom:786.264933pt;}
.y5{bottom:794.549733pt;}
.y36{bottom:803.923600pt;}
.y6b{bottom:803.996933pt;}
.y4{bottom:812.283067pt;}
.y35{bottom:821.655600pt;}
.y6a{bottom:821.728933pt;}
.y34{bottom:839.387600pt;}
.y69{bottom:839.460933pt;}
.y33{bottom:857.119600pt;}
.y68{bottom:857.192933pt;}
.yb1{bottom:869.340000pt;}
.yba{bottom:869.366667pt;}
.y32{bottom:874.851600pt;}
.y67{bottom:874.924933pt;}
.y3{bottom:882.816267pt;}
.yb0{bottom:885.660000pt;}
.yb9{bottom:885.686667pt;}
.y31{bottom:892.583600pt;}
.y66{bottom:892.656933pt;}
.yaf{bottom:901.980000pt;}
.yb8{bottom:902.006667pt;}
.y30{bottom:910.315600pt;}
.y65{bottom:910.388933pt;}
.yae{bottom:918.300000pt;}
.yb7{bottom:918.326667pt;}
.y2f{bottom:928.047600pt;}
.y64{bottom:928.120933pt;}
.yad{bottom:934.620000pt;}
.yb6{bottom:934.646667pt;}
.y2e{bottom:945.779600pt;}
.y63{bottom:945.852933pt;}
.yac{bottom:950.940000pt;}
.yb5{bottom:950.966667pt;}
.y2d{bottom:963.511600pt;}
.y62{bottom:963.584933pt;}
.yab{bottom:967.260000pt;}
.yb4{bottom:967.286667pt;}
.y2c{bottom:981.243600pt;}
.y61{bottom:981.316933pt;}
.yaa{bottom:983.580000pt;}
.yb3{bottom:983.606667pt;}
.y2b{bottom:998.975600pt;}
.y60{bottom:999.048933pt;}
.ya9{bottom:999.900000pt;}
.yb2{bottom:999.926667pt;}
.y2a{bottom:1057.517467pt;}
.h2{height:3.952000pt;}
.h8{height:47.109375pt;}
.h5{height:51.476562pt;}
.h6{height:52.317708pt;}
.h3{height:52.343750pt;}
.h7{height:57.578125pt;}
.h9{height:59.125000pt;}
.h4{height:73.281250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.780213pt;}
.x7{left:75.590533pt;}
.x6{left:79.843867pt;}
.x8{left:94.488133pt;}
.xd{left:102.047200pt;}
.x3{left:138.000800pt;}
.x4{left:237.797067pt;}
.xb{left:287.051600pt;}
.x5{left:310.857867pt;}
.xa{left:366.850400pt;}
.x2{left:386.850400pt;}
.x9{left:415.748000pt;}
.xc{left:442.201333pt;}
}




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