
    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_f13f08158c73251bebf6b351.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_cdf1acf8259fd59bf249fcaa.woff')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_b9bc41f66e662cc895708534.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1359c0f0fb1c83605c4fc4a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_1545a6fdb2c5315624a68ac8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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;}
.ls5{letter-spacing:-2.724000px;}
.lsc{letter-spacing:-1.758000px;}
.ls2{letter-spacing:-1.482000px;}
.ls4{letter-spacing:-1.128000px;}
.ls3{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.468000px;}
.lsb{letter-spacing:-0.112200px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.468000px;}
.ls6{letter-spacing:1.776000px;}
.ls0{letter-spacing:2.250000px;}
.ls8{letter-spacing:13.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.468000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.532000px;}
.ws4{word-spacing:-17.031000px;}
.ws2{word-spacing:-16.875000px;}
.ws9{word-spacing:-15.768000px;}
.wsb{word-spacing:-15.255000px;}
.wsa{word-spacing:-15.142800px;}
.ws0{word-spacing:-14.625000px;}
.ws3{word-spacing:-12.531000px;}
.ws1{word-spacing:-12.204000px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-8.797350px;}
._4{margin-left:-6.817500px;}
._2{margin-left:-5.535000px;}
._e{margin-left:-4.351500px;}
._5{margin-left:-2.850000px;}
._1{margin-left:-1.552500px;}
._0{width:1.012500px;}
._3{width:2.767500px;}
._6{width:4.068000px;}
._7{width:5.265000px;}
._8{width:7.585500px;}
._a{width:8.850000px;}
._d{width:9.852000px;}
._18{width:12.535500px;}
._b{width:13.545000px;}
._c{width:16.965000px;}
._11{width:19.179000px;}
._10{width:20.538000px;}
._f{width:22.462500px;}
._13{width:26.430000px;}
._12{width:27.759000px;}
._17{width:30.591000px;}
._14{width:31.675500px;}
._19{width:35.661000px;}
._15{width:36.691500px;}
._16{width:40.665000px;}
._1a{width:44.797500px;}
._1c{width:49.953000px;}
._1b{width:52.507500px;}
._1d{width:53.968500px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:85.650000px;}
.fs5{font-size:108.150000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:4.500000px;}
.y6e{bottom:4.515000px;}
.y5{bottom:14.625000px;}
.y6a{bottom:23.670000px;}
.y6d{bottom:24.795000px;}
.y4{bottom:31.500000px;}
.y3{bottom:48.420000px;}
.y7{bottom:50.670000px;}
.yb{bottom:57.412500px;}
.y2{bottom:66.420000px;}
.y6{bottom:68.670000px;}
.ya{bottom:77.662500px;}
.y27{bottom:113.700000px;}
.y46{bottom:130.612500px;}
.y5f{bottom:135.112500px;}
.y89{bottom:138.487500px;}
.y26{bottom:144.112500px;}
.y88{bottom:160.995000px;}
.y45{bottom:162.120000px;}
.y5e{bottom:165.525000px;}
.y25{bottom:175.650000px;}
.y44{bottom:193.650000px;}
.y87{bottom:194.775000px;}
.y5d{bottom:197.025000px;}
.y24{bottom:206.070000px;}
.y86{bottom:217.320000px;}
.y43{bottom:224.070000px;}
.y79{bottom:227.445000px;}
.y23{bottom:237.570000px;}
.y5c{bottom:239.820000px;}
.y42{bottom:255.600000px;}
.y78{bottom:258.975000px;}
.y85{bottom:273.600000px;}
.y22{bottom:280.350000px;}
.y5b{bottom:281.475000px;}
.y41{bottom:285.975000px;}
.y77{bottom:289.380000px;}
.y84{bottom:296.130000px;}
.y40{bottom:317.505000px;}
.y76{bottom:320.880000px;}
.y21{bottom:322.020000px;}
.y83{bottom:331.050000px;}
.y5a{bottom:332.175000px;}
.y3f{bottom:349.050000px;}
.y75{bottom:352.425000px;}
.y82{bottom:353.550000px;}
.y59{bottom:363.675000px;}
.y20{bottom:364.800000px;}
.y81{bottom:376.095000px;}
.y3e{bottom:379.470000px;}
.y74{bottom:382.845000px;}
.y1f{bottom:386.220000px;}
.y58{bottom:395.205000px;}
.y3d{bottom:410.955000px;}
.y73{bottom:414.375000px;}
.y57{bottom:425.625000px;}
.y80{bottom:429.000000px;}
.y1e{bottom:440.250000px;}
.y3c{bottom:441.375000px;}
.y72{bottom:444.750000px;}
.y56{bottom:457.170000px;}
.y1d{bottom:469.545000px;}
.y3b{bottom:472.920000px;}
.y71{bottom:476.295000px;}
.y7f{bottom:480.795000px;}
.y55{bottom:487.545000px;}
.y1c{bottom:501.075000px;}
.y3a{bottom:506.700000px;}
.y70{bottom:512.325000px;}
.y54{bottom:519.075000px;}
.y6f{bottom:529.200000px;}
.y1b{bottom:531.450000px;}
.y7e{bottom:532.575000px;}
.y39{bottom:540.495000px;}
.y53{bottom:550.620000px;}
.y1a{bottom:562.995000px;}
.y6c{bottom:569.730000px;}
.y38{bottom:569.745000px;}
.y52{bottom:581.025000px;}
.y19{bottom:594.525000px;}
.y37{bottom:601.275000px;}
.y69{bottom:611.400000px;}
.y51{bottom:612.525000px;}
.y18{bottom:624.945000px;}
.y36{bottom:631.695000px;}
.y50{bottom:642.945000px;}
.y17{bottom:656.445000px;}
.y35{bottom:663.225000px;}
.y68{bottom:665.475000px;}
.y4f{bottom:674.475000px;}
.y16{bottom:686.850000px;}
.y34{bottom:694.725000px;}
.y67{bottom:695.850000px;}
.y4e{bottom:706.020000px;}
.y15{bottom:718.380000px;}
.y33{bottom:725.130000px;}
.y66{bottom:727.380000px;}
.y4d{bottom:736.395000px;}
.y14{bottom:749.925000px;}
.y32{bottom:756.675000px;}
.y65{bottom:757.800000px;}
.y4c{bottom:767.925000px;}
.y13{bottom:780.300000px;}
.y7d{bottom:781.425000px;}
.y31{bottom:787.080000px;}
.y64{bottom:789.330000px;}
.y4b{bottom:798.330000px;}
.y12{bottom:811.830000px;}
.y30{bottom:818.580000px;}
.y63{bottom:820.830000px;}
.y7c{bottom:825.330000px;}
.y4a{bottom:829.875000px;}
.y2f{bottom:850.125000px;}
.y62{bottom:851.250000px;}
.y7b{bottom:852.375000px;}
.y11{bottom:854.625000px;}
.y49{bottom:861.375000px;}
.y7a{bottom:879.420000px;}
.y2e{bottom:880.545000px;}
.y61{bottom:882.795000px;}
.y48{bottom:891.795000px;}
.y10{bottom:896.295000px;}
.y60{bottom:913.200000px;}
.y2d{bottom:914.325000px;}
.yf{bottom:937.950000px;}
.y2c{bottom:944.700000px;}
.y2b{bottom:976.245000px;}
.ye{bottom:979.620000px;}
.y47{bottom:986.370000px;}
.y2a{bottom:1006.650000px;}
.yd{bottom:1022.400000px;}
.y29{bottom:1038.195000px;}
.yc{bottom:1067.445000px;}
.y28{bottom:1068.570000px;}
.y9{bottom:1091.100000px;}
.y8{bottom:1111.350000px;}
.y1{bottom:1128.255000px;}
.hb{height:39.412500px;}
.hc{height:40.537500px;}
.hd{height:51.251221px;}
.h6{height:57.414551px;}
.h4{height:58.957031px;}
.h3{height:67.137451px;}
.h7{height:70.664062px;}
.h5{height:71.613281px;}
.ha{height:72.562500px;}
.h2{height:82.200000px;}
.h8{height:86.319141px;}
.h9{height:108.994922px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w4{width:135.150000px;}
.w5{width:135.187500px;}
.w6{width:136.312500px;}
.w2{width:265.830000px;}
.w1{width:415.650000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x10{left:9.000000px;}
.x1{left:108.150000px;}
.x9{left:139.687487px;}
.x16{left:144.187487px;}
.xd{left:147.562487px;}
.x14{left:150.929987px;}
.xa{left:203.894987px;}
.xe{left:243.300000px;}
.x6{left:287.249987px;}
.xc{left:319.904987px;}
.xb{left:373.994987px;}
.x5{left:376.244987px;}
.xf{left:378.495000px;}
.x13{left:379.619987px;}
.x8{left:396.524987px;}
.x15{left:405.524987px;}
.x4{left:442.694987px;}
.x7{left:447.194987px;}
.x11{left:514.800000px;}
.x3{left:523.800000px;}
.x12{left:649.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.421333pt;}
.lsc{letter-spacing:-1.562667pt;}
.ls2{letter-spacing:-1.317333pt;}
.ls4{letter-spacing:-1.002667pt;}
.ls3{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.416000pt;}
.lsb{letter-spacing:-0.099733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.416000pt;}
.ls6{letter-spacing:1.578667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls8{letter-spacing:12.000000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.416000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.584000pt;}
.ws4{word-spacing:-15.138667pt;}
.ws2{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.016000pt;}
.wsb{word-spacing:-13.560000pt;}
.wsa{word-spacing:-13.460267pt;}
.ws0{word-spacing:-13.000000pt;}
.ws3{word-spacing:-11.138667pt;}
.ws1{word-spacing:-10.848000pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-7.819867pt;}
._4{margin-left:-6.060000pt;}
._2{margin-left:-4.920000pt;}
._e{margin-left:-3.868000pt;}
._5{margin-left:-2.533333pt;}
._1{margin-left:-1.380000pt;}
._0{width:0.900000pt;}
._3{width:2.460000pt;}
._6{width:3.616000pt;}
._7{width:4.680000pt;}
._8{width:6.742667pt;}
._a{width:7.866667pt;}
._d{width:8.757333pt;}
._18{width:11.142667pt;}
._b{width:12.040000pt;}
._c{width:15.080000pt;}
._11{width:17.048000pt;}
._10{width:18.256000pt;}
._f{width:19.966667pt;}
._13{width:23.493333pt;}
._12{width:24.674667pt;}
._17{width:27.192000pt;}
._14{width:28.156000pt;}
._19{width:31.698667pt;}
._15{width:32.614667pt;}
._16{width:36.146667pt;}
._1a{width:39.820000pt;}
._1c{width:44.402667pt;}
._1b{width:46.673333pt;}
._1d{width:47.972000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:76.133333pt;}
.fs5{font-size:96.133333pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:4.000000pt;}
.y6e{bottom:4.013333pt;}
.y5{bottom:13.000000pt;}
.y6a{bottom:21.040000pt;}
.y6d{bottom:22.040000pt;}
.y4{bottom:28.000000pt;}
.y3{bottom:43.040000pt;}
.y7{bottom:45.040000pt;}
.yb{bottom:51.033333pt;}
.y2{bottom:59.040000pt;}
.y6{bottom:61.040000pt;}
.ya{bottom:69.033333pt;}
.y27{bottom:101.066667pt;}
.y46{bottom:116.100000pt;}
.y5f{bottom:120.100000pt;}
.y89{bottom:123.100000pt;}
.y26{bottom:128.100000pt;}
.y88{bottom:143.106667pt;}
.y45{bottom:144.106667pt;}
.y5e{bottom:147.133333pt;}
.y25{bottom:156.133333pt;}
.y44{bottom:172.133333pt;}
.y87{bottom:173.133333pt;}
.y5d{bottom:175.133333pt;}
.y24{bottom:183.173333pt;}
.y86{bottom:193.173333pt;}
.y43{bottom:199.173333pt;}
.y79{bottom:202.173333pt;}
.y23{bottom:211.173333pt;}
.y5c{bottom:213.173333pt;}
.y42{bottom:227.200000pt;}
.y78{bottom:230.200000pt;}
.y85{bottom:243.200000pt;}
.y22{bottom:249.200000pt;}
.y5b{bottom:250.200000pt;}
.y41{bottom:254.200000pt;}
.y77{bottom:257.226667pt;}
.y84{bottom:263.226667pt;}
.y40{bottom:282.226667pt;}
.y76{bottom:285.226667pt;}
.y21{bottom:286.240000pt;}
.y83{bottom:294.266667pt;}
.y5a{bottom:295.266667pt;}
.y3f{bottom:310.266667pt;}
.y75{bottom:313.266667pt;}
.y82{bottom:314.266667pt;}
.y59{bottom:323.266667pt;}
.y20{bottom:324.266667pt;}
.y81{bottom:334.306667pt;}
.y3e{bottom:337.306667pt;}
.y74{bottom:340.306667pt;}
.y1f{bottom:343.306667pt;}
.y58{bottom:351.293333pt;}
.y3d{bottom:365.293333pt;}
.y73{bottom:368.333333pt;}
.y57{bottom:378.333333pt;}
.y80{bottom:381.333333pt;}
.y1e{bottom:391.333333pt;}
.y3c{bottom:392.333333pt;}
.y72{bottom:395.333333pt;}
.y56{bottom:406.373333pt;}
.y1d{bottom:417.373333pt;}
.y3b{bottom:420.373333pt;}
.y71{bottom:423.373333pt;}
.y7f{bottom:427.373333pt;}
.y55{bottom:433.373333pt;}
.y1c{bottom:445.400000pt;}
.y3a{bottom:450.400000pt;}
.y70{bottom:455.400000pt;}
.y54{bottom:461.400000pt;}
.y6f{bottom:470.400000pt;}
.y1b{bottom:472.400000pt;}
.y7e{bottom:473.400000pt;}
.y39{bottom:480.440000pt;}
.y53{bottom:489.440000pt;}
.y1a{bottom:500.440000pt;}
.y6c{bottom:506.426667pt;}
.y38{bottom:506.440000pt;}
.y52{bottom:516.466667pt;}
.y19{bottom:528.466667pt;}
.y37{bottom:534.466667pt;}
.y69{bottom:543.466667pt;}
.y51{bottom:544.466667pt;}
.y18{bottom:555.506667pt;}
.y36{bottom:561.506667pt;}
.y50{bottom:571.506667pt;}
.y17{bottom:583.506667pt;}
.y35{bottom:589.533333pt;}
.y68{bottom:591.533333pt;}
.y4f{bottom:599.533333pt;}
.y16{bottom:610.533333pt;}
.y34{bottom:617.533333pt;}
.y67{bottom:618.533333pt;}
.y4e{bottom:627.573333pt;}
.y15{bottom:638.560000pt;}
.y33{bottom:644.560000pt;}
.y66{bottom:646.560000pt;}
.y4d{bottom:654.573333pt;}
.y14{bottom:666.600000pt;}
.y32{bottom:672.600000pt;}
.y65{bottom:673.600000pt;}
.y4c{bottom:682.600000pt;}
.y13{bottom:693.600000pt;}
.y7d{bottom:694.600000pt;}
.y31{bottom:699.626667pt;}
.y64{bottom:701.626667pt;}
.y4b{bottom:709.626667pt;}
.y12{bottom:721.626667pt;}
.y30{bottom:727.626667pt;}
.y63{bottom:729.626667pt;}
.y7c{bottom:733.626667pt;}
.y4a{bottom:737.666667pt;}
.y2f{bottom:755.666667pt;}
.y62{bottom:756.666667pt;}
.y7b{bottom:757.666667pt;}
.y11{bottom:759.666667pt;}
.y49{bottom:765.666667pt;}
.y7a{bottom:781.706667pt;}
.y2e{bottom:782.706667pt;}
.y61{bottom:784.706667pt;}
.y48{bottom:792.706667pt;}
.y10{bottom:796.706667pt;}
.y60{bottom:811.733333pt;}
.y2d{bottom:812.733333pt;}
.yf{bottom:833.733333pt;}
.y2c{bottom:839.733333pt;}
.y2b{bottom:867.773333pt;}
.ye{bottom:870.773333pt;}
.y47{bottom:876.773333pt;}
.y2a{bottom:894.800000pt;}
.yd{bottom:908.800000pt;}
.y29{bottom:922.840000pt;}
.yc{bottom:948.840000pt;}
.y28{bottom:949.840000pt;}
.y9{bottom:969.866667pt;}
.y8{bottom:987.866667pt;}
.y1{bottom:1002.893333pt;}
.hb{height:35.033333pt;}
.hc{height:36.033333pt;}
.hd{height:45.556641pt;}
.h6{height:51.035156pt;}
.h4{height:52.406250pt;}
.h3{height:59.677734pt;}
.h7{height:62.812500pt;}
.h5{height:63.656250pt;}
.ha{height:64.500000pt;}
.h2{height:73.066667pt;}
.h8{height:76.728125pt;}
.h9{height:96.884375pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w4{width:120.133333pt;}
.w5{width:120.166667pt;}
.w6{width:121.166667pt;}
.w2{width:236.293333pt;}
.w1{width:369.466667pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x10{left:8.000000pt;}
.x1{left:96.133333pt;}
.x9{left:124.166655pt;}
.x16{left:128.166655pt;}
.xd{left:131.166655pt;}
.x14{left:134.159988pt;}
.xa{left:181.239988pt;}
.xe{left:216.266667pt;}
.x6{left:255.333322pt;}
.xc{left:284.359988pt;}
.xb{left:332.439988pt;}
.x5{left:334.439988pt;}
.xf{left:336.440000pt;}
.x13{left:337.439988pt;}
.x8{left:352.466655pt;}
.x15{left:360.466655pt;}
.x4{left:393.506655pt;}
.x7{left:397.506655pt;}
.x11{left:457.600000pt;}
.x3{left:465.600000pt;}
.x12{left:577.733333pt;}
}




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