
    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_3efe56098b83e04135915216.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100586;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_3b6b6a37861257439ef109b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_c0c06915704216fddd38722d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_4c569fe5b09c72290a9a729a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f0c4ee34244f6772cae9c24e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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_b8331d55e34555ca7f7305c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100586;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;}
.ls6{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-0.082800px;}
.ls7{letter-spacing:-0.075000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.067200px;}
.ls1{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.795000px;}
.ls2{letter-spacing:1.822500px;}
.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:-475.365000px;}
.ws7{word-spacing:-202.297500px;}
.ws1{word-spacing:-113.850000px;}
.ws4{word-spacing:-99.150000px;}
.wsa{word-spacing:-99.082500px;}
.ws3{word-spacing:-99.000000px;}
.ws8{word-spacing:-98.999700px;}
.ws2{word-spacing:-74.250000px;}
.ws5{word-spacing:-53.793000px;}
.ws9{word-spacing:-0.247350px;}
.wsb{word-spacing:0.000000px;}
.ws6{word-spacing:3.090000px;}
._6{margin-left:-17.433000px;}
._9{margin-left:-15.648600px;}
._a{margin-left:-13.249050px;}
._7{margin-left:-12.142800px;}
._8{margin-left:-8.886300px;}
._c{margin-left:-5.429400px;}
._4{margin-left:-3.535800px;}
._2{margin-left:-2.457900px;}
._1{margin-left:-1.143900px;}
._3{width:1.216650px;}
._0{width:2.592900px;}
._5{width:3.943200px;}
._d{width:6.244350px;}
._b{width:7.564950px;}
.fc6{color:transparent;}
.fc5{color:rgb(49,133,156);}
.fc4{color:rgb(31,73,125);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs11{font-size:45.000000px;}
.fs9{font-size:85.650000px;}
.fs2{font-size:103.500000px;}
.fs3{font-size:135.000000px;}
.fs4{font-size:135.150000px;}
.fsb{font-size:139.500000px;}
.fsc{font-size:139.650000px;}
.fs10{font-size:175.500000px;}
.fsf{font-size:175.650000px;}
.fs6{font-size:180.000000px;}
.fs7{font-size:180.150000px;}
.fsa{font-size:193.500000px;}
.fs1{font-size:207.000000px;}
.fs5{font-size:216.000000px;}
.fs8{font-size:216.150000px;}
.fse{font-size:364.500000px;}
.fsd{font-size:364.650000px;}
.fs0{font-size:864.300000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:30.825000px;}
.y2d{bottom:103.950000px;}
.y2c{bottom:145.612500px;}
.y2b{bottom:187.230000px;}
.y2a{bottom:228.870000px;}
.y29{bottom:437.070000px;}
.y28{bottom:501.195000px;}
.y27{bottom:780.270000px;}
.y26{bottom:833.175000px;}
.y25{bottom:924.300000px;}
.y24{bottom:978.345000px;}
.y23{bottom:1032.345000px;}
.y22{bottom:1086.345000px;}
.y21{bottom:1140.375000px;}
.y20{bottom:1194.375000px;}
.y1f{bottom:1250.655000px;}
.y1e{bottom:1366.575000px;}
.y1d{bottom:1420.575000px;}
.y1c{bottom:1474.575000px;}
.y1b{bottom:1528.620000px;}
.y1a{bottom:1582.620000px;}
.y19{bottom:1636.650000px;}
.y18{bottom:1690.650000px;}
.y17{bottom:1744.650000px;}
.y16{bottom:1798.695000px;}
.y15{bottom:1854.945000px;}
.y14{bottom:1920.225000px;}
.y13{bottom:2036.130000px;}
.y12{bottom:2090.130000px;}
.y11{bottom:2144.130000px;}
.y10{bottom:2198.175000px;}
.yf{bottom:2252.175000px;}
.ye{bottom:2309.580000px;}
.yd{bottom:2425.500000px;}
.yc{bottom:2479.500000px;}
.yb{bottom:2533.500000px;}
.ya{bottom:2587.530000px;}
.y9{bottom:2643.795000px;}
.y8{bottom:2760.825000px;}
.y7{bottom:2814.855000px;}
.y6{bottom:2868.855000px;}
.y5{bottom:2925.105000px;}
.y38{bottom:3122.475000px;}
.y3d{bottom:3127.005000px;}
.y37{bottom:3158.475000px;}
.y36{bottom:3179.850000px;}
.y3c{bottom:3181.050000px;}
.y35{bottom:3233.880000px;}
.y3b{bottom:3235.050000px;}
.y3a{bottom:3289.080000px;}
.y34{bottom:3312.630000px;}
.y39{bottom:3343.080000px;}
.y33{bottom:3440.955000px;}
.y4{bottom:3475.575000px;}
.y32{bottom:3514.080000px;}
.y3{bottom:3522.825000px;}
.y2{bottom:3575.700000px;}
.y31{bottom:3587.250000px;}
.y30{bottom:3671.625000px;}
.y1{bottom:3699.300000px;}
.y2f{bottom:3781.905000px;}
.h10{height:39.177246px;}
.h9{height:74.567358px;}
.h3{height:117.531738px;}
.h4{height:117.662329px;}
.h11{height:121.449463px;}
.ha{height:138.750732px;}
.hb{height:138.899927px;}
.hf{height:152.791260px;}
.he{height:152.921851px;}
.h6{height:156.708984px;}
.h7{height:156.839575px;}
.h2{height:181.731445px;}
.h5{height:189.632812px;}
.h8{height:189.764502px;}
.hd{height:320.005371px;}
.hc{height:320.137061px;}
.h1{height:752.464307px;}
.h0{height:3888.000000px;}
.w1{width:2591.999961px;}
.w0{width:2592.000000px;}
.x0{left:0.000000px;}
.x18{left:65.212461px;}
.x1f{left:75.524961px;}
.x10{left:85.462461px;}
.x17{left:91.462461px;}
.x6{left:97.837461px;}
.x1e{left:108.562461px;}
.x7{left:110.212461px;}
.xe{left:121.087461px;}
.xb{left:122.587461px;}
.xd{left:135.899961px;}
.xa{left:147.337461px;}
.x9{left:150.704961px;}
.x8{left:159.719961px;}
.x16{left:178.769961px;}
.x11{left:196.874961px;}
.x5{left:209.999961px;}
.xf{left:224.819961px;}
.x13{left:233.999961px;}
.x14{left:246.374961px;}
.x4{left:253.049961px;}
.x1{left:282.899961px;}
.xc{left:320.654961px;}
.x12{left:357.824961px;}
.x3{left:438.749961px;}
.x2{left:458.549961px;}
.x15{left:506.369961px;}
.x19{left:1270.094961px;}
.x21{left:1344.974961px;}
.x20{left:1382.099961px;}
.x22{left:1394.519961px;}
.x1a{left:1471.154961px;}
.x1b{left:1513.199961px;}
.x1c{left:1561.199961px;}
.x23{left:1592.579961px;}
.x1d{left:1597.199961px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.073600pt;}
.ls7{letter-spacing:-0.066667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.059733pt;}
.ls1{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.706667pt;}
.ls2{letter-spacing:1.620000pt;}
.ws0{word-spacing:-422.546667pt;}
.ws7{word-spacing:-179.820000pt;}
.ws1{word-spacing:-101.200000pt;}
.ws4{word-spacing:-88.133333pt;}
.wsa{word-spacing:-88.073333pt;}
.ws3{word-spacing:-88.000000pt;}
.ws8{word-spacing:-87.999733pt;}
.ws2{word-spacing:-66.000000pt;}
.ws5{word-spacing:-47.816000pt;}
.ws9{word-spacing:-0.219867pt;}
.wsb{word-spacing:0.000000pt;}
.ws6{word-spacing:2.746667pt;}
._6{margin-left:-15.496000pt;}
._9{margin-left:-13.909867pt;}
._a{margin-left:-11.776933pt;}
._7{margin-left:-10.793600pt;}
._8{margin-left:-7.898933pt;}
._c{margin-left:-4.826133pt;}
._4{margin-left:-3.142933pt;}
._2{margin-left:-2.184800pt;}
._1{margin-left:-1.016800pt;}
._3{width:1.081467pt;}
._0{width:2.304800pt;}
._5{width:3.505067pt;}
._d{width:5.550533pt;}
._b{width:6.724400pt;}
.fs11{font-size:40.000000pt;}
.fs9{font-size:76.133333pt;}
.fs2{font-size:92.000000pt;}
.fs3{font-size:120.000000pt;}
.fs4{font-size:120.133333pt;}
.fsb{font-size:124.000000pt;}
.fsc{font-size:124.133333pt;}
.fs10{font-size:156.000000pt;}
.fsf{font-size:156.133333pt;}
.fs6{font-size:160.000000pt;}
.fs7{font-size:160.133333pt;}
.fsa{font-size:172.000000pt;}
.fs1{font-size:184.000000pt;}
.fs5{font-size:192.000000pt;}
.fs8{font-size:192.133333pt;}
.fse{font-size:324.000000pt;}
.fsd{font-size:324.133333pt;}
.fs0{font-size:768.266667pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:27.400000pt;}
.y2d{bottom:92.400000pt;}
.y2c{bottom:129.433333pt;}
.y2b{bottom:166.426667pt;}
.y2a{bottom:203.440000pt;}
.y29{bottom:388.506667pt;}
.y28{bottom:445.506667pt;}
.y27{bottom:693.573333pt;}
.y26{bottom:740.600000pt;}
.y25{bottom:821.600000pt;}
.y24{bottom:869.640000pt;}
.y23{bottom:917.640000pt;}
.y22{bottom:965.640000pt;}
.y21{bottom:1013.666667pt;}
.y20{bottom:1061.666667pt;}
.y1f{bottom:1111.693333pt;}
.y1e{bottom:1214.733333pt;}
.y1d{bottom:1262.733333pt;}
.y1c{bottom:1310.733333pt;}
.y1b{bottom:1358.773333pt;}
.y1a{bottom:1406.773333pt;}
.y19{bottom:1454.800000pt;}
.y18{bottom:1502.800000pt;}
.y17{bottom:1550.800000pt;}
.y16{bottom:1598.840000pt;}
.y15{bottom:1648.840000pt;}
.y14{bottom:1706.866667pt;}
.y13{bottom:1809.893333pt;}
.y12{bottom:1857.893333pt;}
.y11{bottom:1905.893333pt;}
.y10{bottom:1953.933333pt;}
.yf{bottom:2001.933333pt;}
.ye{bottom:2052.960000pt;}
.yd{bottom:2156.000000pt;}
.yc{bottom:2204.000000pt;}
.yb{bottom:2252.000000pt;}
.ya{bottom:2300.026667pt;}
.y9{bottom:2350.040000pt;}
.y8{bottom:2454.066667pt;}
.y7{bottom:2502.093333pt;}
.y6{bottom:2550.093333pt;}
.y5{bottom:2600.093333pt;}
.y38{bottom:2775.533333pt;}
.y3d{bottom:2779.560000pt;}
.y37{bottom:2807.533333pt;}
.y36{bottom:2826.533333pt;}
.y3c{bottom:2827.600000pt;}
.y35{bottom:2874.560000pt;}
.y3b{bottom:2875.600000pt;}
.y3a{bottom:2923.626667pt;}
.y34{bottom:2944.560000pt;}
.y39{bottom:2971.626667pt;}
.y33{bottom:3058.626667pt;}
.y4{bottom:3089.400000pt;}
.y32{bottom:3123.626667pt;}
.y3{bottom:3131.400000pt;}
.y2{bottom:3178.400000pt;}
.y31{bottom:3188.666667pt;}
.y30{bottom:3263.666667pt;}
.y1{bottom:3288.266667pt;}
.y2f{bottom:3361.693333pt;}
.h10{height:34.824219pt;}
.h9{height:66.282096pt;}
.h3{height:104.472656pt;}
.h4{height:104.588737pt;}
.h11{height:107.955078pt;}
.ha{height:123.333984pt;}
.hb{height:123.466602pt;}
.hf{height:135.814453pt;}
.he{height:135.930534pt;}
.h6{height:139.296875pt;}
.h7{height:139.412956pt;}
.h2{height:161.539062pt;}
.h5{height:168.562500pt;}
.h8{height:168.679557pt;}
.hd{height:284.449219pt;}
.hc{height:284.566276pt;}
.h1{height:668.857161pt;}
.h0{height:3456.000000pt;}
.w1{width:2303.999966pt;}
.w0{width:2304.000000pt;}
.x0{left:0.000000pt;}
.x18{left:57.966632pt;}
.x1f{left:67.133299pt;}
.x10{left:75.966632pt;}
.x17{left:81.299966pt;}
.x6{left:86.966632pt;}
.x1e{left:96.499966pt;}
.x7{left:97.966632pt;}
.xe{left:107.633299pt;}
.xb{left:108.966632pt;}
.xd{left:120.799966pt;}
.xa{left:130.966632pt;}
.x9{left:133.959966pt;}
.x8{left:141.973299pt;}
.x16{left:158.906632pt;}
.x11{left:174.999966pt;}
.x5{left:186.666632pt;}
.xf{left:199.839966pt;}
.x13{left:207.999966pt;}
.x14{left:218.999966pt;}
.x4{left:224.933299pt;}
.x1{left:251.466632pt;}
.xc{left:285.026632pt;}
.x12{left:318.066632pt;}
.x3{left:389.999966pt;}
.x2{left:407.599966pt;}
.x15{left:450.106632pt;}
.x19{left:1128.973299pt;}
.x21{left:1195.533299pt;}
.x20{left:1228.533299pt;}
.x22{left:1239.573299pt;}
.x1a{left:1307.693299pt;}
.x1b{left:1345.066632pt;}
.x1c{left:1387.733299pt;}
.x23{left:1415.626632pt;}
.x1d{left:1419.733299pt;}
}




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