
    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_dd893532b8cdf30b5eecd835.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_229b922ba0dc5bcb95f59317.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_de2e6d2a3f9b88f0220796b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_072c3554c4156ce6b6d85172.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ea2e5084192fb1e7a4c00634.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:13.680000px;}
.ls0{letter-spacing:64.397280px;}
.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:-72.000000px;}
.ws4{word-spacing:-40.608000px;}
.ws2{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-4.752000px;}
._8{margin-left:-3.007680px;}
._0{margin-left:-1.589760px;}
._1{width:1.532160px;}
._9{width:2.839680px;}
._b{width:3.965760px;}
._a{width:5.328000px;}
._c{width:6.478080px;}
._e{width:7.680000px;}
._4{width:9.408000px;}
._5{width:10.536000px;}
._7{width:12.432000px;}
._11{width:13.944000px;}
._d{width:15.672000px;}
._12{width:16.824000px;}
._6{width:19.584000px;}
._10{width:20.808000px;}
._18{width:22.392000px;}
._13{width:24.552000px;}
._17{width:25.560000px;}
._16{width:27.216000px;}
._14{width:30.888000px;}
._15{width:31.968000px;}
._1f{width:35.928000px;}
._2{width:69.426000px;}
._3{width:70.479360px;}
._1a{width:113.400000px;}
._1b{width:114.492000px;}
._1c{width:197.856000px;}
._1e{width:222.436320px;}
._1d{width:223.565760px;}
._19{width:1134.120000px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(113,96,232);}
.fc6{color:rgb(191,191,191);}
.fc5{color:rgb(58,58,58);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:102.636000px;}
.y3{bottom:121.536000px;}
.y2{bottom:146.736000px;}
.y5b{bottom:181.830000px;}
.y42{bottom:187.050000px;}
.y5a{bottom:212.790000px;}
.y41{bottom:218.010000px;}
.y2f{bottom:223.230000px;}
.y59{bottom:243.930000px;}
.y40{bottom:249.150000px;}
.y2e{bottom:254.190000px;}
.y5e{bottom:265.890000px;}
.y58{bottom:274.890000px;}
.y3f{bottom:280.110000px;}
.y2d{bottom:287.670000px;}
.y5d{bottom:293.070000px;}
.y57{bottom:306.030000px;}
.y2c{bottom:311.250000px;}
.y82{bottom:331.050000px;}
.y2b{bottom:331.950000px;}
.y56{bottom:337.035000px;}
.y3e{bottom:342.255000px;}
.y66{bottom:344.595000px;}
.y81{bottom:351.795000px;}
.y2a{bottom:352.695000px;}
.y55{bottom:368.175000px;}
.y80{bottom:372.495000px;}
.y29{bottom:373.395000px;}
.y65{bottom:378.435000px;}
.y7f{bottom:393.195000px;}
.y28{bottom:394.095000px;}
.y54{bottom:399.135000px;}
.y3d{bottom:404.355000px;}
.y64{bottom:409.575000px;}
.y7e{bottom:413.895000px;}
.y27{bottom:414.795000px;}
.y53{bottom:430.275000px;}
.y7d{bottom:434.595000px;}
.y26{bottom:435.495000px;}
.y63{bottom:436.575000px;}
.y7c{bottom:455.115000px;}
.y25{bottom:456.195000px;}
.y52{bottom:461.235000px;}
.y3c{bottom:466.455000px;}
.y7b{bottom:475.815000px;}
.y24{bottom:476.895000px;}
.y51{bottom:492.375000px;}
.y7a{bottom:496.695000px;}
.y23{bottom:497.595000px;}
.y79{bottom:517.395000px;}
.y22{bottom:518.295000px;}
.y50{bottom:523.335000px;}
.y3b{bottom:528.555000px;}
.y78{bottom:538.095000px;}
.y21{bottom:538.995000px;}
.y4f{bottom:554.475000px;}
.y77{bottom:558.795000px;}
.y20{bottom:559.695000px;}
.y76{bottom:579.495000px;}
.y1f{bottom:580.395000px;}
.y4e{bottom:585.435000px;}
.y3a{bottom:590.655000px;}
.y75{bottom:600.195000px;}
.y1e{bottom:601.095000px;}
.y4d{bottom:616.605000px;}
.y74{bottom:620.925000px;}
.y1d{bottom:621.645000px;}
.y73{bottom:641.625000px;}
.y1c{bottom:642.345000px;}
.y4c{bottom:647.565000px;}
.y39{bottom:652.785000px;}
.y72{bottom:662.325000px;}
.y1b{bottom:663.045000px;}
.y4b{bottom:678.705000px;}
.y71{bottom:683.025000px;}
.y1a{bottom:683.745000px;}
.y70{bottom:703.725000px;}
.y19{bottom:704.445000px;}
.y4a{bottom:709.665000px;}
.y38{bottom:714.885000px;}
.y6f{bottom:724.425000px;}
.y18{bottom:725.145000px;}
.y49{bottom:740.805000px;}
.y62{bottom:743.685000px;}
.y17{bottom:745.845000px;}
.y6e{bottom:751.245000px;}
.y16{bottom:766.545000px;}
.y48{bottom:771.765000px;}
.y61{bottom:774.645000px;}
.y37{bottom:776.985000px;}
.y6d{bottom:777.885000px;}
.y15{bottom:787.245000px;}
.y6c{bottom:798.585000px;}
.y47{bottom:802.905000px;}
.y60{bottom:805.785000px;}
.y14{bottom:807.945000px;}
.y6b{bottom:819.285000px;}
.y13{bottom:828.645000px;}
.y5f{bottom:832.785000px;}
.y46{bottom:833.865000px;}
.y36{bottom:839.085000px;}
.y6a{bottom:839.985000px;}
.y12{bottom:849.345000px;}
.y69{bottom:860.685000px;}
.y45{bottom:865.005000px;}
.y5c{bottom:867.165000px;}
.y11{bottom:870.045000px;}
.y68{bottom:887.370000px;}
.y10{bottom:890.790000px;}
.y44{bottom:896.010000px;}
.y35{bottom:901.230000px;}
.y67{bottom:908.610000px;}
.yf{bottom:911.490000px;}
.y43{bottom:929.310000px;}
.ye{bottom:932.190000px;}
.yd{bottom:952.890000px;}
.y34{bottom:963.330000px;}
.yc{bottom:973.590000px;}
.yb{bottom:994.290000px;}
.ya{bottom:1016.430000px;}
.y33{bottom:1025.430000px;}
.y9{bottom:1042.710000px;}
.y32{bottom:1056.390000px;}
.y8{bottom:1064.670000px;}
.y31{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.y6{bottom:1118.310000px;}
.y30{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h4{height:52.417969px;}
.h6{height:54.773438px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xf{left:160.049987px;}
.x3{left:170.129987px;}
.x9{left:181.649987px;}
.x7{left:244.469987px;}
.x8{left:298.514987px;}
.x5{left:299.954987px;}
.xc{left:321.554987px;}
.xa{left:337.934987px;}
.xd{left:370.334987px;}
.x4{left:467.924987px;}
.x1{left:489.164987px;}
.xb{left:578.084987px;}
.xe{left:634.244987px;}
.x6{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:12.160000pt;}
.ls0{letter-spacing:57.242027pt;}
.ws0{word-spacing:-64.000000pt;}
.ws4{word-spacing:-36.096000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-4.224000pt;}
._8{margin-left:-2.673493pt;}
._0{margin-left:-1.413120pt;}
._1{width:1.361920pt;}
._9{width:2.524160pt;}
._b{width:3.525120pt;}
._a{width:4.736000pt;}
._c{width:5.758293pt;}
._e{width:6.826667pt;}
._4{width:8.362667pt;}
._5{width:9.365333pt;}
._7{width:11.050667pt;}
._11{width:12.394667pt;}
._d{width:13.930667pt;}
._12{width:14.954667pt;}
._6{width:17.408000pt;}
._10{width:18.496000pt;}
._18{width:19.904000pt;}
._13{width:21.824000pt;}
._17{width:22.720000pt;}
._16{width:24.192000pt;}
._14{width:27.456000pt;}
._15{width:28.416000pt;}
._1f{width:31.936000pt;}
._2{width:61.712000pt;}
._3{width:62.648320pt;}
._1a{width:100.800000pt;}
._1b{width:101.770667pt;}
._1c{width:175.872000pt;}
._1e{width:197.721173pt;}
._1d{width:198.725120pt;}
._19{width:1008.106667pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:91.232000pt;}
.y3{bottom:108.032000pt;}
.y2{bottom:130.432000pt;}
.y5b{bottom:161.626667pt;}
.y42{bottom:166.266667pt;}
.y5a{bottom:189.146667pt;}
.y41{bottom:193.786667pt;}
.y2f{bottom:198.426667pt;}
.y59{bottom:216.826667pt;}
.y40{bottom:221.466667pt;}
.y2e{bottom:225.946667pt;}
.y5e{bottom:236.346667pt;}
.y58{bottom:244.346667pt;}
.y3f{bottom:248.986667pt;}
.y2d{bottom:255.706667pt;}
.y5d{bottom:260.506667pt;}
.y57{bottom:272.026667pt;}
.y2c{bottom:276.666667pt;}
.y82{bottom:294.266667pt;}
.y2b{bottom:295.066667pt;}
.y56{bottom:299.586667pt;}
.y3e{bottom:304.226667pt;}
.y66{bottom:306.306667pt;}
.y81{bottom:312.706667pt;}
.y2a{bottom:313.506667pt;}
.y55{bottom:327.266667pt;}
.y80{bottom:331.106667pt;}
.y29{bottom:331.906667pt;}
.y65{bottom:336.386667pt;}
.y7f{bottom:349.506667pt;}
.y28{bottom:350.306667pt;}
.y54{bottom:354.786667pt;}
.y3d{bottom:359.426667pt;}
.y64{bottom:364.066667pt;}
.y7e{bottom:367.906667pt;}
.y27{bottom:368.706667pt;}
.y53{bottom:382.466667pt;}
.y7d{bottom:386.306667pt;}
.y26{bottom:387.106667pt;}
.y63{bottom:388.066667pt;}
.y7c{bottom:404.546667pt;}
.y25{bottom:405.506667pt;}
.y52{bottom:409.986667pt;}
.y3c{bottom:414.626667pt;}
.y7b{bottom:422.946667pt;}
.y24{bottom:423.906667pt;}
.y51{bottom:437.666667pt;}
.y7a{bottom:441.506667pt;}
.y23{bottom:442.306667pt;}
.y79{bottom:459.906667pt;}
.y22{bottom:460.706667pt;}
.y50{bottom:465.186667pt;}
.y3b{bottom:469.826667pt;}
.y78{bottom:478.306667pt;}
.y21{bottom:479.106667pt;}
.y4f{bottom:492.866667pt;}
.y77{bottom:496.706667pt;}
.y20{bottom:497.506667pt;}
.y76{bottom:515.106667pt;}
.y1f{bottom:515.906667pt;}
.y4e{bottom:520.386667pt;}
.y3a{bottom:525.026667pt;}
.y75{bottom:533.506667pt;}
.y1e{bottom:534.306667pt;}
.y4d{bottom:548.093333pt;}
.y74{bottom:551.933333pt;}
.y1d{bottom:552.573333pt;}
.y73{bottom:570.333333pt;}
.y1c{bottom:570.973333pt;}
.y4c{bottom:575.613333pt;}
.y39{bottom:580.253333pt;}
.y72{bottom:588.733333pt;}
.y1b{bottom:589.373333pt;}
.y4b{bottom:603.293333pt;}
.y71{bottom:607.133333pt;}
.y1a{bottom:607.773333pt;}
.y70{bottom:625.533333pt;}
.y19{bottom:626.173333pt;}
.y4a{bottom:630.813333pt;}
.y38{bottom:635.453333pt;}
.y6f{bottom:643.933333pt;}
.y18{bottom:644.573333pt;}
.y49{bottom:658.493333pt;}
.y62{bottom:661.053333pt;}
.y17{bottom:662.973333pt;}
.y6e{bottom:667.773333pt;}
.y16{bottom:681.373333pt;}
.y48{bottom:686.013333pt;}
.y61{bottom:688.573333pt;}
.y37{bottom:690.653333pt;}
.y6d{bottom:691.453333pt;}
.y15{bottom:699.773333pt;}
.y6c{bottom:709.853333pt;}
.y47{bottom:713.693333pt;}
.y60{bottom:716.253333pt;}
.y14{bottom:718.173333pt;}
.y6b{bottom:728.253333pt;}
.y13{bottom:736.573333pt;}
.y5f{bottom:740.253333pt;}
.y46{bottom:741.213333pt;}
.y36{bottom:745.853333pt;}
.y6a{bottom:746.653333pt;}
.y12{bottom:754.973333pt;}
.y69{bottom:765.053333pt;}
.y45{bottom:768.893333pt;}
.y5c{bottom:770.813333pt;}
.y11{bottom:773.373333pt;}
.y68{bottom:788.773333pt;}
.y10{bottom:791.813333pt;}
.y44{bottom:796.453333pt;}
.y35{bottom:801.093333pt;}
.y67{bottom:807.653333pt;}
.yf{bottom:810.213333pt;}
.y43{bottom:826.053333pt;}
.ye{bottom:828.613333pt;}
.yd{bottom:847.013333pt;}
.y34{bottom:856.293333pt;}
.yc{bottom:865.413333pt;}
.yb{bottom:883.813333pt;}
.ya{bottom:903.493333pt;}
.y33{bottom:911.493333pt;}
.y9{bottom:926.853333pt;}
.y32{bottom:939.013333pt;}
.y8{bottom:946.373333pt;}
.y31{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.y6{bottom:994.053333pt;}
.y30{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h4{height:46.593750pt;}
.h6{height:48.687500pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xf{left:142.266655pt;}
.x3{left:151.226655pt;}
.x9{left:161.466655pt;}
.x7{left:217.306655pt;}
.x8{left:265.346655pt;}
.x5{left:266.626655pt;}
.xc{left:285.826655pt;}
.xa{left:300.386655pt;}
.xd{left:329.186655pt;}
.x4{left:415.933322pt;}
.x1{left:434.813322pt;}
.xb{left:513.853322pt;}
.xe{left:563.773322pt;}
.x6{left:718.373322pt;}
}




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