
    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_52497e7a894edd72c07ce3bd.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bf272c5ba9430e4ef1bc9efa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_ec99dd1e904ee7ad3d75a795.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_90203b014d8096f4dd923ed7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_78f29dec455cc12b6bec375e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_899cabea4ebf53f468fd51dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719238;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_df9c30ced92109469610b83e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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:ff8;src:url('chunks/assets/font_ad838c99d4be663a997c6caf.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:39.905280px;}
.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;}
}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-4.421760px;}
._9{margin-left:-3.125760px;}
._0{margin-left:-1.254240px;}
._2{width:1.254960px;}
._4{width:2.390400px;}
._3{width:3.645360px;}
._d{width:5.139360px;}
._7{width:6.991920px;}
._6{width:8.007840px;}
._e{width:9.321840px;}
._8{width:10.398240px;}
._f{width:11.534400px;}
._10{width:12.605040px;}
._a{width:13.894080px;}
._15{width:14.898720px;}
._5{width:16.075440px;}
._b{width:17.151120px;}
._c{width:18.226800px;}
._1d{width:19.359360px;}
._1b{width:20.476800px;}
._1a{width:21.722400px;}
._16{width:22.852800px;}
._17{width:24.048000px;}
._19{width:25.498080px;}
._18{width:27.887040px;}
._13{width:29.079360px;}
._12{width:30.134880px;}
._1c{width:31.355040px;}
._11{width:149.278080px;}
._1{width:1168.288800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:6.840000px;}
.y5{bottom:70.416000px;}
.y3c{bottom:123.156000px;}
.y69{bottom:129.636000px;}
.y3b{bottom:145.116000px;}
.y68{bottom:151.410000px;}
.y3a{bottom:166.890000px;}
.y67{bottom:173.190000px;}
.y39{bottom:188.670000px;}
.y66{bottom:194.970000px;}
.y38{bottom:210.450000px;}
.y65{bottom:216.930000px;}
.y37{bottom:232.230000px;}
.y64{bottom:238.710000px;}
.y36{bottom:254.190000px;}
.y63{bottom:260.490000px;}
.y35{bottom:275.970000px;}
.y62{bottom:282.270000px;}
.y34{bottom:295.050000px;}
.y61{bottom:304.230000px;}
.y33{bottom:314.850000px;}
.y60{bottom:326.010000px;}
.y32{bottom:330.870000px;}
.y31{bottom:345.495000px;}
.y5f{bottom:347.835000px;}
.y30{bottom:362.595000px;}
.y5e{bottom:369.615000px;}
.y2f{bottom:379.875000px;}
.y5d{bottom:391.395000px;}
.y2e{bottom:397.155000px;}
.y5c{bottom:413.355000px;}
.y2d{bottom:414.435000px;}
.y2c{bottom:431.715000px;}
.y5b{bottom:435.135000px;}
.y2b{bottom:448.995000px;}
.y5a{bottom:456.915000px;}
.y2a{bottom:466.095000px;}
.y59{bottom:478.695000px;}
.y29{bottom:483.375000px;}
.y28{bottom:500.655000px;}
.y27{bottom:517.935000px;}
.y58{bottom:522.435000px;}
.y26{bottom:535.215000px;}
.y57{bottom:544.215000px;}
.y25{bottom:552.495000px;}
.y56{bottom:565.995000px;}
.y24{bottom:569.595000px;}
.y23{bottom:586.875000px;}
.y55{bottom:587.775000px;}
.y22{bottom:604.185000px;}
.y54{bottom:609.765000px;}
.y21{bottom:621.465000px;}
.y53{bottom:631.545000px;}
.y20{bottom:638.745000px;}
.y52{bottom:653.325000px;}
.y1f{bottom:656.025000px;}
.y1e{bottom:673.125000px;}
.y51{bottom:675.105000px;}
.y1d{bottom:690.405000px;}
.y50{bottom:697.065000px;}
.y1c{bottom:707.685000px;}
.y4f{bottom:718.845000px;}
.y1b{bottom:724.965000px;}
.y4e{bottom:740.625000px;}
.y1a{bottom:742.245000px;}
.y19{bottom:759.345000px;}
.y4d{bottom:762.405000px;}
.y18{bottom:776.625000px;}
.y4c{bottom:784.185000px;}
.y17{bottom:793.905000px;}
.y4b{bottom:806.145000px;}
.y16{bottom:811.185000px;}
.y4a{bottom:827.925000px;}
.y15{bottom:828.825000px;}
.y49{bottom:849.705000px;}
.y14{bottom:852.585000px;}
.y13{bottom:869.865000px;}
.y48{bottom:871.530000px;}
.y12{bottom:882.330000px;}
.y47{bottom:893.310000px;}
.y11{bottom:901.410000px;}
.y46{bottom:915.270000px;}
.y10{bottom:920.310000px;}
.y45{bottom:937.050000px;}
.yf{bottom:939.210000px;}
.ye{bottom:958.650000px;}
.y44{bottom:958.830000px;}
.y43{bottom:980.610000px;}
.yd{bottom:981.150000px;}
.y42{bottom:1002.570000px;}
.yc{bottom:1003.650000px;}
.y41{bottom:1024.350000px;}
.yb{bottom:1025.610000px;}
.ya{bottom:1044.150000px;}
.y40{bottom:1046.130000px;}
.y9{bottom:1061.250000px;}
.y3f{bottom:1067.910000px;}
.y8{bottom:1078.530000px;}
.y3e{bottom:1089.690000px;}
.y7{bottom:1095.810000px;}
.y3d{bottom:1111.650000px;}
.y6{bottom:1113.090000px;}
.y4{bottom:1130.370000px;}
.y2{bottom:1144.440000px;}
.y1{bottom:1178.100000px;}
.h3{height:26.640000px;}
.hc{height:27.147656px;}
.h10{height:33.683203px;}
.hf{height:34.036523px;}
.h6{height:39.760312px;}
.h5{height:41.726953px;}
.h7{height:42.164648px;}
.h8{height:46.251562px;}
.hd{height:46.736719px;}
.h11{height:48.224531px;}
.he{height:49.255313px;}
.h2{height:50.273438px;}
.h4{height:50.414062px;}
.hb{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:53.100000px;}
.w4{width:606.165000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x1{left:127.655987px;}
.x5{left:129.995987px;}
.x7{left:155.009987px;}
.x10{left:159.689987px;}
.xf{left:170.129987px;}
.x4{left:172.829987px;}
.x3{left:180.750000px;}
.xc{left:197.129987px;}
.xa{left:219.269987px;}
.x8{left:295.994987px;}
.xb{left:317.234987px;}
.x6{left:417.674987px;}
.xe{left:429.194987px;}
.xd{left:430.814987px;}
.x9{left:457.094987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:35.471360pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-3.930453pt;}
._9{margin-left:-2.778453pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.115520pt;}
._4{width:2.124800pt;}
._3{width:3.240320pt;}
._d{width:4.568320pt;}
._7{width:6.215040pt;}
._6{width:7.118080pt;}
._e{width:8.286080pt;}
._8{width:9.242880pt;}
._f{width:10.252800pt;}
._10{width:11.204480pt;}
._a{width:12.350293pt;}
._15{width:13.243307pt;}
._5{width:14.289280pt;}
._b{width:15.245440pt;}
._c{width:16.201600pt;}
._1d{width:17.208320pt;}
._1b{width:18.201600pt;}
._1a{width:19.308800pt;}
._16{width:20.313600pt;}
._17{width:21.376000pt;}
._19{width:22.664960pt;}
._18{width:24.788480pt;}
._13{width:25.848320pt;}
._12{width:26.786560pt;}
._1c{width:27.871147pt;}
._11{width:132.691627pt;}
._1{width:1038.478933pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:6.080000pt;}
.y5{bottom:62.592000pt;}
.y3c{bottom:109.472000pt;}
.y69{bottom:115.232000pt;}
.y3b{bottom:128.992000pt;}
.y68{bottom:134.586667pt;}
.y3a{bottom:148.346667pt;}
.y67{bottom:153.946667pt;}
.y39{bottom:167.706667pt;}
.y66{bottom:173.306667pt;}
.y38{bottom:187.066667pt;}
.y65{bottom:192.826667pt;}
.y37{bottom:206.426667pt;}
.y64{bottom:212.186667pt;}
.y36{bottom:225.946667pt;}
.y63{bottom:231.546667pt;}
.y35{bottom:245.306667pt;}
.y62{bottom:250.906667pt;}
.y34{bottom:262.266667pt;}
.y61{bottom:270.426667pt;}
.y33{bottom:279.866667pt;}
.y60{bottom:289.786667pt;}
.y32{bottom:294.106667pt;}
.y31{bottom:307.106667pt;}
.y5f{bottom:309.186667pt;}
.y30{bottom:322.306667pt;}
.y5e{bottom:328.546667pt;}
.y2f{bottom:337.666667pt;}
.y5d{bottom:347.906667pt;}
.y2e{bottom:353.026667pt;}
.y5c{bottom:367.426667pt;}
.y2d{bottom:368.386667pt;}
.y2c{bottom:383.746667pt;}
.y5b{bottom:386.786667pt;}
.y2b{bottom:399.106667pt;}
.y5a{bottom:406.146667pt;}
.y2a{bottom:414.306667pt;}
.y59{bottom:425.506667pt;}
.y29{bottom:429.666667pt;}
.y28{bottom:445.026667pt;}
.y27{bottom:460.386667pt;}
.y58{bottom:464.386667pt;}
.y26{bottom:475.746667pt;}
.y57{bottom:483.746667pt;}
.y25{bottom:491.106667pt;}
.y56{bottom:503.106667pt;}
.y24{bottom:506.306667pt;}
.y23{bottom:521.666667pt;}
.y55{bottom:522.466667pt;}
.y22{bottom:537.053333pt;}
.y54{bottom:542.013333pt;}
.y21{bottom:552.413333pt;}
.y53{bottom:561.373333pt;}
.y20{bottom:567.773333pt;}
.y52{bottom:580.733333pt;}
.y1f{bottom:583.133333pt;}
.y1e{bottom:598.333333pt;}
.y51{bottom:600.093333pt;}
.y1d{bottom:613.693333pt;}
.y50{bottom:619.613333pt;}
.y1c{bottom:629.053333pt;}
.y4f{bottom:638.973333pt;}
.y1b{bottom:644.413333pt;}
.y4e{bottom:658.333333pt;}
.y1a{bottom:659.773333pt;}
.y19{bottom:674.973333pt;}
.y4d{bottom:677.693333pt;}
.y18{bottom:690.333333pt;}
.y4c{bottom:697.053333pt;}
.y17{bottom:705.693333pt;}
.y4b{bottom:716.573333pt;}
.y16{bottom:721.053333pt;}
.y4a{bottom:735.933333pt;}
.y15{bottom:736.733333pt;}
.y49{bottom:755.293333pt;}
.y14{bottom:757.853333pt;}
.y13{bottom:773.213333pt;}
.y48{bottom:774.693333pt;}
.y12{bottom:784.293333pt;}
.y47{bottom:794.053333pt;}
.y11{bottom:801.253333pt;}
.y46{bottom:813.573333pt;}
.y10{bottom:818.053333pt;}
.y45{bottom:832.933333pt;}
.yf{bottom:834.853333pt;}
.ye{bottom:852.133333pt;}
.y44{bottom:852.293333pt;}
.y43{bottom:871.653333pt;}
.yd{bottom:872.133333pt;}
.y42{bottom:891.173333pt;}
.yc{bottom:892.133333pt;}
.y41{bottom:910.533333pt;}
.yb{bottom:911.653333pt;}
.ya{bottom:928.133333pt;}
.y40{bottom:929.893333pt;}
.y9{bottom:943.333333pt;}
.y3f{bottom:949.253333pt;}
.y8{bottom:958.693333pt;}
.y3e{bottom:968.613333pt;}
.y7{bottom:974.053333pt;}
.y3d{bottom:988.133333pt;}
.y6{bottom:989.413333pt;}
.y4{bottom:1004.773333pt;}
.y2{bottom:1017.280000pt;}
.y1{bottom:1047.200000pt;}
.h3{height:23.680000pt;}
.hc{height:24.131250pt;}
.h10{height:29.940625pt;}
.hf{height:30.254687pt;}
.h6{height:35.342500pt;}
.h5{height:37.090625pt;}
.h7{height:37.479688pt;}
.h8{height:41.112500pt;}
.hd{height:41.543750pt;}
.h11{height:42.866250pt;}
.he{height:43.782500pt;}
.h2{height:44.687500pt;}
.h4{height:44.812500pt;}
.hb{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:47.200000pt;}
.w4{width:538.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x1{left:113.471988pt;}
.x5{left:115.551988pt;}
.x7{left:137.786655pt;}
.x10{left:141.946655pt;}
.xf{left:151.226655pt;}
.x4{left:153.626655pt;}
.x3{left:160.666667pt;}
.xc{left:175.226655pt;}
.xa{left:194.906655pt;}
.x8{left:263.106655pt;}
.xb{left:281.986655pt;}
.x6{left:371.266655pt;}
.xe{left:381.506655pt;}
.xd{left:382.946655pt;}
.x9{left:406.306655pt;}
}




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