
    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_da256e8be10ca3a1bc3898fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892090;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_223b204f4899a6749388ff0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861328;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_2bd836929f08ed56c7ee62df.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861328;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_5e6fb0737db73be69aab25b9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1ea609565a213622befdd60c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1540159a8ecbcb82cfa1e123.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_51a2fbbc59e4f6cf0f393508.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_76ad1dc1aa6f78678bf342a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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:ffa;src:url('chunks/assets/font_057b03cfe314603e03724af9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_543f41d0f993fae7333c9bd3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892090;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.259800px;}
.ls3{letter-spacing:15.120000px;}
.ls4{letter-spacing:15.269760px;}
.lsb{letter-spacing:18.979920px;}
.ls1{letter-spacing:33.984000px;}
.ls5{letter-spacing:34.709760px;}
.ls6{letter-spacing:34.829760px;}
.ls2{letter-spacing:38.304000px;}
.ls0{letter-spacing:54.840000px;}
.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:-84.240000px;}
.ws1{word-spacing:-72.000000px;}
.ws9{word-spacing:-20.159880px;}
.ws6{word-spacing:-19.900080px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws8{word-spacing:-14.970240px;}
.ws2{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._1a{margin-left:-5.040000px;}
._c{margin-left:-2.187840px;}
._0{margin-left:-1.134240px;}
._1{width:1.434240px;}
._18{width:2.448000px;}
._6{width:3.942240px;}
._5{width:5.040000px;}
._3{width:6.857280px;}
._2{width:8.190240px;}
._4{width:9.343680px;}
._9{width:10.404000px;}
._7{width:11.448000px;}
._8{width:13.068000px;}
._f{width:15.096000px;}
._10{width:16.560000px;}
._1b{width:19.024920px;}
._14{width:20.121600px;}
._d{width:21.600000px;}
._e{width:22.608000px;}
._17{width:24.096000px;}
._a{width:26.136000px;}
._b{width:27.480000px;}
._11{width:33.984000px;}
._12{width:35.280000px;}
._15{width:96.493440px;}
._16{width:151.592880px;}
._13{width:405.213600px;}
._19{width:846.171360px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:4.500000px;}
.y33{bottom:4.680000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.y2f{bottom:134.100000px;}
.y2e{bottom:172.080000px;}
.y2d{bottom:193.350000px;}
.y2c{bottom:214.410000px;}
.y2b{bottom:253.650000px;}
.y59{bottom:264.630000px;}
.y1e{bottom:281.190000px;}
.y58{bottom:285.510000px;}
.y2a{bottom:295.770000px;}
.y1d{bottom:301.890000px;}
.y1c{bottom:322.770000px;}
.y29{bottom:333.570000px;}
.y1b{bottom:344.190000px;}
.y28{bottom:354.450000px;}
.y1a{bottom:365.790000px;}
.y27{bottom:375.510000px;}
.y19{bottom:387.030000px;}
.y57{bottom:389.010000px;}
.y18{bottom:407.910000px;}
.y56{bottom:409.710000px;}
.y26{bottom:414.930000px;}
.y55{bottom:451.515000px;}
.y25{bottom:454.215000px;}
.y54{bottom:474.735000px;}
.y24{bottom:475.095000px;}
.y53{bottom:497.955000px;}
.y23{bottom:516.135000px;}
.y52{bottom:520.995000px;}
.y22{bottom:540.435000px;}
.y51{bottom:544.215000px;}
.y50{bottom:578.955000px;}
.y21{bottom:582.375000px;}
.y4f{bottom:599.835000px;}
.y17{bottom:619.815000px;}
.y4e{bottom:620.535000px;}
.y5e{bottom:632.235000px;}
.y16{bottom:640.515000px;}
.y4d{bottom:641.235000px;}
.y5d{bottom:648.435000px;}
.y15{bottom:661.215000px;}
.y4c{bottom:661.935000px;}
.y4b{bottom:682.665000px;}
.y5f{bottom:685.185000px;}
.y14{bottom:696.705000px;}
.y4a{bottom:703.365000px;}
.y60{bottom:711.105000px;}
.y5a{bottom:717.405000px;}
.y13{bottom:717.585000px;}
.y49{bottom:724.065000px;}
.y12{bottom:738.285000px;}
.y48{bottom:744.765000px;}
.y5c{bottom:748.905000px;}
.y47{bottom:765.465000px;}
.y20{bottom:767.625000px;}
.y11{bottom:773.925000px;}
.y46{bottom:786.165000px;}
.y1f{bottom:788.505000px;}
.y10{bottom:794.805000px;}
.y45{bottom:806.865000px;}
.yf{bottom:815.505000px;}
.y44{bottom:827.565000px;}
.ye{bottom:836.205000px;}
.y30{bottom:838.365000px;}
.y43{bottom:848.265000px;}
.yd{bottom:856.905000px;}
.y42{bottom:868.965000px;}
.y34{bottom:870.405000px;}
.y41{bottom:889.665000px;}
.yc{bottom:895.605000px;}
.y40{bottom:910.410000px;}
.yb{bottom:916.350000px;}
.y3f{bottom:931.110000px;}
.ya{bottom:936.870000px;}
.y3e{bottom:951.810000px;}
.y9{bottom:959.010000px;}
.y3d{bottom:972.510000px;}
.y5b{bottom:979.530000px;}
.y8{bottom:979.710000px;}
.y3c{bottom:993.210000px;}
.y7{bottom:1000.230000px;}
.y61{bottom:1004.730000px;}
.y3b{bottom:1013.910000px;}
.y3a{bottom:1034.610000px;}
.y6{bottom:1037.130000px;}
.y32{bottom:1048.650000px;}
.y39{bottom:1055.310000px;}
.y5{bottom:1058.010000px;}
.y38{bottom:1076.010000px;}
.y4{bottom:1096.710000px;}
.y37{bottom:1096.890000px;}
.y36{bottom:1118.310000px;}
.y3{bottom:1136.670000px;}
.y35{bottom:1139.910000px;}
.h9{height:20.160000px;}
.ha{height:20.325000px;}
.hb{height:20.340000px;}
.h7{height:43.506914px;}
.h2{height:47.318906px;}
.h8{height:50.027344px;}
.h3{height:57.544805px;}
.h4{height:70.664062px;}
.h6{height:72.562500px;}
.h5{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:32.385000px;}
.w4{width:32.400000px;}
.w2{width:32.421000px;}
.w5{width:32.430000px;}
.w7{width:32.565000px;}
.w3{width:32.580000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:12.045000px;}
.x2{left:106.236000px;}
.x5{left:116.856000px;}
.x3{left:133.236000px;}
.x6{left:143.856000px;}
.x4{left:160.230000px;}
.x7{left:170.850000px;}
.x9{left:371.775000px;}
.x15{left:471.540000px;}
.xd{left:533.280000px;}
.x11{left:542.460000px;}
.xc{left:570.390000px;}
.xa{left:583.890000px;}
.x8{left:670.110000px;}
.x16{left:685.770000px;}
.x14{left:710.430000px;}
.x12{left:718.350000px;}
.xf{left:725.580000px;}
.xb{left:755.100000px;}
.x10{left:766.080000px;}
.x13{left:771.300000px;}
.x1{left:778.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls3{letter-spacing:13.440000pt;}
.ls4{letter-spacing:13.573120pt;}
.lsb{letter-spacing:16.871040pt;}
.ls1{letter-spacing:30.208000pt;}
.ls5{letter-spacing:30.853120pt;}
.ls6{letter-spacing:30.959787pt;}
.ls2{letter-spacing:34.048000pt;}
.ls0{letter-spacing:48.746667pt;}
.ws0{word-spacing:-74.880000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws9{word-spacing:-17.919893pt;}
.ws6{word-spacing:-17.688960pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.306880pt;}
.ws2{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._1a{margin-left:-4.480000pt;}
._c{margin-left:-1.944747pt;}
._0{margin-left:-1.008213pt;}
._1{width:1.274880pt;}
._18{width:2.176000pt;}
._6{width:3.504213pt;}
._5{width:4.480000pt;}
._3{width:6.095360pt;}
._2{width:7.280213pt;}
._4{width:8.305493pt;}
._9{width:9.248000pt;}
._7{width:10.176000pt;}
._8{width:11.616000pt;}
._f{width:13.418667pt;}
._10{width:14.720000pt;}
._1b{width:16.911040pt;}
._14{width:17.885867pt;}
._d{width:19.200000pt;}
._e{width:20.096000pt;}
._17{width:21.418667pt;}
._a{width:23.232000pt;}
._b{width:24.426667pt;}
._11{width:30.208000pt;}
._12{width:31.360000pt;}
._15{width:85.771947pt;}
._16{width:134.749227pt;}
._13{width:360.189867pt;}
._19{width:752.152320pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:4.000000pt;}
.y33{bottom:4.160000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.y2f{bottom:119.200000pt;}
.y2e{bottom:152.960000pt;}
.y2d{bottom:171.866667pt;}
.y2c{bottom:190.586667pt;}
.y2b{bottom:225.466667pt;}
.y59{bottom:235.226667pt;}
.y1e{bottom:249.946667pt;}
.y58{bottom:253.786667pt;}
.y2a{bottom:262.906667pt;}
.y1d{bottom:268.346667pt;}
.y1c{bottom:286.906667pt;}
.y29{bottom:296.506667pt;}
.y1b{bottom:305.946667pt;}
.y28{bottom:315.066667pt;}
.y1a{bottom:325.146667pt;}
.y27{bottom:333.786667pt;}
.y19{bottom:344.026667pt;}
.y57{bottom:345.786667pt;}
.y18{bottom:362.586667pt;}
.y56{bottom:364.186667pt;}
.y26{bottom:368.826667pt;}
.y55{bottom:401.346667pt;}
.y25{bottom:403.746667pt;}
.y54{bottom:421.986667pt;}
.y24{bottom:422.306667pt;}
.y53{bottom:442.626667pt;}
.y23{bottom:458.786667pt;}
.y52{bottom:463.106667pt;}
.y22{bottom:480.386667pt;}
.y51{bottom:483.746667pt;}
.y50{bottom:514.626667pt;}
.y21{bottom:517.666667pt;}
.y4f{bottom:533.186667pt;}
.y17{bottom:550.946667pt;}
.y4e{bottom:551.586667pt;}
.y5e{bottom:561.986667pt;}
.y16{bottom:569.346667pt;}
.y4d{bottom:569.986667pt;}
.y5d{bottom:576.386667pt;}
.y15{bottom:587.746667pt;}
.y4c{bottom:588.386667pt;}
.y4b{bottom:606.813333pt;}
.y5f{bottom:609.053333pt;}
.y14{bottom:619.293333pt;}
.y4a{bottom:625.213333pt;}
.y60{bottom:632.093333pt;}
.y5a{bottom:637.693333pt;}
.y13{bottom:637.853333pt;}
.y49{bottom:643.613333pt;}
.y12{bottom:656.253333pt;}
.y48{bottom:662.013333pt;}
.y5c{bottom:665.693333pt;}
.y47{bottom:680.413333pt;}
.y20{bottom:682.333333pt;}
.y11{bottom:687.933333pt;}
.y46{bottom:698.813333pt;}
.y1f{bottom:700.893333pt;}
.y10{bottom:706.493333pt;}
.y45{bottom:717.213333pt;}
.yf{bottom:724.893333pt;}
.y44{bottom:735.613333pt;}
.ye{bottom:743.293333pt;}
.y30{bottom:745.213333pt;}
.y43{bottom:754.013333pt;}
.yd{bottom:761.693333pt;}
.y42{bottom:772.413333pt;}
.y34{bottom:773.693333pt;}
.y41{bottom:790.813333pt;}
.yc{bottom:796.093333pt;}
.y40{bottom:809.253333pt;}
.yb{bottom:814.533333pt;}
.y3f{bottom:827.653333pt;}
.ya{bottom:832.773333pt;}
.y3e{bottom:846.053333pt;}
.y9{bottom:852.453333pt;}
.y3d{bottom:864.453333pt;}
.y5b{bottom:870.693333pt;}
.y8{bottom:870.853333pt;}
.y3c{bottom:882.853333pt;}
.y7{bottom:889.093333pt;}
.y61{bottom:893.093333pt;}
.y3b{bottom:901.253333pt;}
.y3a{bottom:919.653333pt;}
.y6{bottom:921.893333pt;}
.y32{bottom:932.133333pt;}
.y39{bottom:938.053333pt;}
.y5{bottom:940.453333pt;}
.y38{bottom:956.453333pt;}
.y4{bottom:974.853333pt;}
.y37{bottom:975.013333pt;}
.y36{bottom:994.053333pt;}
.y3{bottom:1010.373333pt;}
.y35{bottom:1013.253333pt;}
.h9{height:17.920000pt;}
.ha{height:18.066667pt;}
.hb{height:18.080000pt;}
.h7{height:38.672812pt;}
.h2{height:42.061250pt;}
.h8{height:44.468750pt;}
.h3{height:51.150937pt;}
.h4{height:62.812500pt;}
.h6{height:64.500000pt;}
.h5{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:28.786667pt;}
.w4{width:28.800000pt;}
.w2{width:28.818667pt;}
.w5{width:28.826667pt;}
.w7{width:28.946667pt;}
.w3{width:28.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:10.706667pt;}
.x2{left:94.432000pt;}
.x5{left:103.872000pt;}
.x3{left:118.432000pt;}
.x6{left:127.872000pt;}
.x4{left:142.426667pt;}
.x7{left:151.866667pt;}
.x9{left:330.466667pt;}
.x15{left:419.146667pt;}
.xd{left:474.026667pt;}
.x11{left:482.186667pt;}
.xc{left:507.013333pt;}
.xa{left:519.013333pt;}
.x8{left:595.653333pt;}
.x16{left:609.573333pt;}
.x14{left:631.493333pt;}
.x12{left:638.533333pt;}
.xf{left:644.960000pt;}
.xb{left:671.200000pt;}
.x10{left:680.960000pt;}
.x13{left:685.600000pt;}
.x1{left:692.000000pt;}
}




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