
    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_8df7eeedb878bf1685637f72.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_89fcb3fbab3f2024b099c2a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ce42c5f8dcf28d3d9bde6903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_0b9b8fdbaed7f565132b7a10.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_915db12ad9c3b1cce5b4e317.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_e8a5a03abe63e2b9886fb75c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_60b0a2438cd543fbbccddc3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:18.000000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.229200px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.635040px;}
.ls0{letter-spacing:4.452000px;}
.lsb{letter-spacing:19.386720px;}
.ls5{letter-spacing:115.194720px;}
.ls3{letter-spacing:143.803200px;}
.lsc{letter-spacing:848.316000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws0{word-spacing:-36.907200px;}
.ws8{word-spacing:-36.000000px;}
.ws1{word-spacing:-22.984800px;}
.ws6{word-spacing:-16.200000px;}
.ws3{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.552000px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-15.408000px;}
._f{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._11{margin-left:-11.652000px;}
._10{margin-left:-8.362320px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._d{width:1.247760px;}
._c{width:2.267760px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._16{width:8.394960px;}
._1b{width:9.792000px;}
._14{width:11.232000px;}
._15{width:12.384000px;}
._1a{width:13.464960px;}
._17{width:14.483760px;}
._3{width:15.769440px;}
._19{width:16.992000px;}
._18{width:18.144000px;}
._6{width:24.492960px;}
._7{width:26.774640px;}
._13{width:843.088800px;}
._e{width:848.316000px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:5.400000px;}
.y3d{bottom:17.280000px;}
.y3c{bottom:35.460000px;}
.y3{bottom:57.780000px;}
.y3a{bottom:113.256000px;}
.y1d{bottom:129.096000px;}
.y39{bottom:137.376000px;}
.y1c{bottom:153.390000px;}
.y5e{bottom:164.730000px;}
.y38{bottom:174.810000px;}
.y1b{bottom:177.690000px;}
.y5d{bottom:196.410000px;}
.y1a{bottom:213.870000px;}
.y37{bottom:219.630000px;}
.y5c{bottom:220.710000px;}
.y19{bottom:238.170000px;}
.y5b{bottom:245.010000px;}
.y18{bottom:262.470000px;}
.y5a{bottom:269.310000px;}
.y59{bottom:293.610000px;}
.y17{bottom:300.090000px;}
.y16{bottom:327.135000px;}
.y58{bottom:329.835000px;}
.y15{bottom:352.335000px;}
.y57{bottom:366.195000px;}
.y14{bottom:388.695000px;}
.y56{bottom:390.495000px;}
.y55{bottom:414.615000px;}
.y13{bottom:424.875000px;}
.y54{bottom:438.915000px;}
.y12{bottom:461.235000px;}
.y53{bottom:463.215000px;}
.y52{bottom:487.515000px;}
.y11{bottom:497.415000px;}
.y51{bottom:511.815000px;}
.y10{bottom:533.775000px;}
.y50{bottom:547.995000px;}
.yf{bottom:569.985000px;}
.y4f{bottom:584.385000px;}
.ye{bottom:606.345000px;}
.y4e{bottom:608.505000px;}
.y2b{bottom:614.445000px;}
.y3b{bottom:620.565000px;}
.y4d{bottom:632.805000px;}
.yd{bottom:642.525000px;}
.y2a{bottom:652.065000px;}
.y4c{bottom:657.105000px;}
.yc{bottom:678.885000px;}
.y4b{bottom:681.405000px;}
.y29{bottom:683.745000px;}
.y68{bottom:697.785000px;}
.y4a{bottom:705.705000px;}
.yb{bottom:715.065000px;}
.y28{bottom:715.605000px;}
.y67{bottom:717.225000px;}
.y49{bottom:730.005000px;}
.y66{bottom:736.665000px;}
.y27{bottom:747.285000px;}
.ya{bottom:752.505000px;}
.y48{bottom:754.125000px;}
.y65{bottom:756.285000px;}
.y64{bottom:775.725000px;}
.y47{bottom:778.425000px;}
.y26{bottom:779.145000px;}
.y36{bottom:782.925000px;}
.y9{bottom:791.745000px;}
.y63{bottom:795.345000px;}
.y46{bottom:802.725000px;}
.y35{bottom:807.225000px;}
.y25{bottom:810.825000px;}
.y62{bottom:814.785000px;}
.y45{bottom:827.070000px;}
.y8{bottom:829.230000px;}
.y34{bottom:831.570000px;}
.y61{bottom:842.910000px;}
.y24{bottom:847.770000px;}
.y44{bottom:851.370000px;}
.y33{bottom:855.690000px;}
.y7{bottom:864.510000px;}
.y32{bottom:879.990000px;}
.y60{bottom:884.850000px;}
.y43{bottom:887.550000px;}
.y23{bottom:895.830000px;}
.y31{bottom:904.290000px;}
.y6{bottom:913.830000px;}
.y5f{bottom:916.530000px;}
.y42{bottom:923.910000px;}
.y30{bottom:928.590000px;}
.y22{bottom:937.050000px;}
.y41{bottom:948.210000px;}
.y2f{bottom:952.890000px;}
.y20{bottom:960.270000px;}
.y5{bottom:962.970000px;}
.y40{bottom:972.330000px;}
.y2e{bottom:977.190000px;}
.y3f{bottom:996.630000px;}
.y2d{bottom:1001.130000px;}
.y1f{bottom:1012.110000px;}
.y4{bottom:1012.290000px;}
.y2c{bottom:1029.210000px;}
.y3e{bottom:1029.390000px;}
.y1e{bottom:1034.970000px;}
.y69{bottom:1039.470000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.h4{height:22.500000px;}
.h8{height:39.830273px;}
.hb{height:45.720703px;}
.ha{height:48.240000px;}
.h1{height:60.960938px;}
.hc{height:61.423863px;}
.h3{height:71.324297px;}
.h9{height:74.004654px;}
.h6{height:81.078047px;}
.h5{height:98.051133px;}
.h7{height:98.426190px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w3{width:150.870000px;}
.w5{width:161.670000px;}
.w2{width:174.780000px;}
.w4{width:211.890000px;}
.w6{width:389.235000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.xb{left:10.800000px;}
.x4{left:100.296000px;}
.x2{left:108.035986px;}
.x9{left:124.595986px;}
.xd{left:135.035986px;}
.xc{left:162.029986px;}
.x1{left:266.609986px;}
.x6{left:275.790000px;}
.x3{left:322.814986px;}
.x7{left:427.395000px;}
.xa{left:481.965000px;}
.x8{left:640.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.203733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.564480pt;}
.ls0{letter-spacing:3.957333pt;}
.lsb{letter-spacing:17.232640pt;}
.ls5{letter-spacing:102.395307pt;}
.ls3{letter-spacing:127.825067pt;}
.lsc{letter-spacing:754.058667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-32.806400pt;}
.ws8{word-spacing:-32.000000pt;}
.ws1{word-spacing:-20.430933pt;}
.ws6{word-spacing:-14.400000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-13.696000pt;}
._f{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._11{margin-left:-10.357333pt;}
._10{margin-left:-7.433173pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._d{width:1.109120pt;}
._c{width:2.015787pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._16{width:7.462187pt;}
._1b{width:8.704000pt;}
._14{width:9.984000pt;}
._15{width:11.008000pt;}
._1a{width:11.968853pt;}
._17{width:12.874453pt;}
._3{width:14.017280pt;}
._19{width:15.104000pt;}
._18{width:16.128000pt;}
._6{width:21.771520pt;}
._7{width:23.799680pt;}
._13{width:749.412267pt;}
._e{width:754.058667pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:4.800000pt;}
.y3d{bottom:15.360000pt;}
.y3c{bottom:31.520000pt;}
.y3{bottom:51.360000pt;}
.y3a{bottom:100.672000pt;}
.y1d{bottom:114.752000pt;}
.y39{bottom:122.112000pt;}
.y1c{bottom:136.346667pt;}
.y5e{bottom:146.426667pt;}
.y38{bottom:155.386667pt;}
.y1b{bottom:157.946667pt;}
.y5d{bottom:174.586667pt;}
.y1a{bottom:190.106667pt;}
.y37{bottom:195.226667pt;}
.y5c{bottom:196.186667pt;}
.y19{bottom:211.706667pt;}
.y5b{bottom:217.786667pt;}
.y18{bottom:233.306667pt;}
.y5a{bottom:239.386667pt;}
.y59{bottom:260.986667pt;}
.y17{bottom:266.746667pt;}
.y16{bottom:290.786667pt;}
.y58{bottom:293.186667pt;}
.y15{bottom:313.186667pt;}
.y57{bottom:325.506667pt;}
.y14{bottom:345.506667pt;}
.y56{bottom:347.106667pt;}
.y55{bottom:368.546667pt;}
.y13{bottom:377.666667pt;}
.y54{bottom:390.146667pt;}
.y12{bottom:409.986667pt;}
.y53{bottom:411.746667pt;}
.y52{bottom:433.346667pt;}
.y11{bottom:442.146667pt;}
.y51{bottom:454.946667pt;}
.y10{bottom:474.466667pt;}
.y50{bottom:487.106667pt;}
.yf{bottom:506.653333pt;}
.y4f{bottom:519.453333pt;}
.ye{bottom:538.973333pt;}
.y4e{bottom:540.893333pt;}
.y2b{bottom:546.173333pt;}
.y3b{bottom:551.613333pt;}
.y4d{bottom:562.493333pt;}
.yd{bottom:571.133333pt;}
.y2a{bottom:579.613333pt;}
.y4c{bottom:584.093333pt;}
.yc{bottom:603.453333pt;}
.y4b{bottom:605.693333pt;}
.y29{bottom:607.773333pt;}
.y68{bottom:620.253333pt;}
.y4a{bottom:627.293333pt;}
.yb{bottom:635.613333pt;}
.y28{bottom:636.093333pt;}
.y67{bottom:637.533333pt;}
.y49{bottom:648.893333pt;}
.y66{bottom:654.813333pt;}
.y27{bottom:664.253333pt;}
.ya{bottom:668.893333pt;}
.y48{bottom:670.333333pt;}
.y65{bottom:672.253333pt;}
.y64{bottom:689.533333pt;}
.y47{bottom:691.933333pt;}
.y26{bottom:692.573333pt;}
.y36{bottom:695.933333pt;}
.y9{bottom:703.773333pt;}
.y63{bottom:706.973333pt;}
.y46{bottom:713.533333pt;}
.y35{bottom:717.533333pt;}
.y25{bottom:720.733333pt;}
.y62{bottom:724.253333pt;}
.y45{bottom:735.173333pt;}
.y8{bottom:737.093333pt;}
.y34{bottom:739.173333pt;}
.y61{bottom:749.253333pt;}
.y24{bottom:753.573333pt;}
.y44{bottom:756.773333pt;}
.y33{bottom:760.613333pt;}
.y7{bottom:768.453333pt;}
.y32{bottom:782.213333pt;}
.y60{bottom:786.533333pt;}
.y43{bottom:788.933333pt;}
.y23{bottom:796.293333pt;}
.y31{bottom:803.813333pt;}
.y6{bottom:812.293333pt;}
.y5f{bottom:814.693333pt;}
.y42{bottom:821.253333pt;}
.y30{bottom:825.413333pt;}
.y22{bottom:832.933333pt;}
.y41{bottom:842.853333pt;}
.y2f{bottom:847.013333pt;}
.y20{bottom:853.573333pt;}
.y5{bottom:855.973333pt;}
.y40{bottom:864.293333pt;}
.y2e{bottom:868.613333pt;}
.y3f{bottom:885.893333pt;}
.y2d{bottom:889.893333pt;}
.y1f{bottom:899.653333pt;}
.y4{bottom:899.813333pt;}
.y2c{bottom:914.853333pt;}
.y3e{bottom:915.013333pt;}
.y1e{bottom:919.973333pt;}
.y69{bottom:923.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.h4{height:20.000000pt;}
.h8{height:35.404688pt;}
.hb{height:40.640625pt;}
.ha{height:42.880000pt;}
.h1{height:54.187500pt;}
.hc{height:54.598989pt;}
.h3{height:63.399375pt;}
.h9{height:65.781915pt;}
.h6{height:72.069375pt;}
.h5{height:87.156562pt;}
.h7{height:87.489947pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w3{width:134.106667pt;}
.w5{width:143.706667pt;}
.w2{width:155.360000pt;}
.w4{width:188.346667pt;}
.w6{width:345.986667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.xb{left:9.600000pt;}
.x4{left:89.152000pt;}
.x2{left:96.031988pt;}
.x9{left:110.751988pt;}
.xd{left:120.031988pt;}
.xc{left:144.026655pt;}
.x1{left:236.986655pt;}
.x6{left:245.146667pt;}
.x3{left:286.946655pt;}
.x7{left:379.906667pt;}
.xa{left:428.413333pt;}
.x8{left:568.893333pt;}
}




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