
    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_562e7d99e000b64042d3eae2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_74cd1ccd908079d03fde92e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_f87fe197e2bd4023f8e1ed03.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_696c314ff9d36e53e02d00ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_b74415b221e7ee060fb4008f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.550000;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_08b925be95651f1815f4d61c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_3f5f5b3bca494abfe4b79cdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.579000;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_59a0e2e5099474f466dab517.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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);}
.v1{vertical-align:-7.476000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:23.416800px;}
.ls3{letter-spacing:35.113473px;}
.ls4{letter-spacing:35.114400px;}
.ls1{letter-spacing:35.116800px;}
.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;}
}
.ws13{word-spacing:-16.519695px;}
.wsf{word-spacing:-14.280391px;}
.wsd{word-spacing:-0.071731px;}
.ws7{word-spacing:-0.035866px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:3.592514px;}
.ws8{word-spacing:5.501783px;}
.ws3{word-spacing:5.624884px;}
.ws5{word-spacing:5.684660px;}
.wsc{word-spacing:5.932170px;}
.ws10{word-spacing:6.290826px;}
.ws12{word-spacing:6.792945px;}
.ws1{word-spacing:6.864676px;}
.wsb{word-spacing:6.936407px;}
.ws11{word-spacing:8.237588px;}
.ws6{word-spacing:12.660557px;}
.ws4{word-spacing:32.227229px;}
.ws0{word-spacing:32.330521px;}
.ws9{word-spacing:37.701726px;}
.wsa{word-spacing:37.805018px;}
._5{margin-left:-4.958075px;}
._0{margin-left:-2.788895px;}
._2{margin-left:-1.084590px;}
._3{width:1.075968px;}
._1{width:2.479018px;}
._8{width:16.981673px;}
._4{width:24.388608px;}
._6{width:31.656412px;}
._7{width:35.088277px;}
.fc2{color:rgb(24,24,24);}
.fc1{color:rgb(20,100,142);}
.fc0{color:rgb(0,80,150);}
.fs3{font-size:35.865600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y6a{bottom:7.858500px;}
.y6b{bottom:15.604500px;}
.y69{bottom:18.319500px;}
.y45{bottom:20.394000px;}
.y68{bottom:28.780500px;}
.y5{bottom:34.569000px;}
.y67{bottom:39.241500px;}
.y44{bottom:43.930500px;}
.y15{bottom:49.669500px;}
.y36{bottom:50.716500px;}
.y9{bottom:65.410500px;}
.y24{bottom:65.857500px;}
.y43{bottom:67.983000px;}
.y14{bottom:71.337000px;}
.y35{bottom:74.769000px;}
.ya{bottom:80.016000px;}
.y8{bottom:87.079500px;}
.y4{bottom:87.127500px;}
.y23{bottom:89.395500px;}
.y42{bottom:89.652000px;}
.y61{bottom:93.648000px;}
.y34{bottom:98.307000px;}
.y78{bottom:100.923000px;}
.y13{bottom:101.509500px;}
.y22{bottom:109.195500px;}
.y41{bottom:111.321000px;}
.y55{bottom:112.483500px;}
.y33{bottom:122.359500px;}
.y77{bottom:122.592000px;}
.y12{bottom:123.178500px;}
.y60{bottom:123.820500px;}
.y21{bottom:132.732000px;}
.y40{bottom:134.857500px;}
.y54{bottom:135.273000px;}
.y80{bottom:137.517000px;}
.y76{bottom:144.259500px;}
.y32{bottom:145.896000px;}
.y5f{bottom:152.125500px;}
.y20{bottom:152.533500px;}
.y11{bottom:153.351000px;}
.y3f{bottom:158.910000px;}
.y53{bottom:159.841500px;}
.y17{bottom:163.854000px;}
.y4d{bottom:165.072000px;}
.y2a{bottom:165.697500px;}
.y7f{bottom:165.822000px;}
.y75{bottom:165.928500px;}
.y31{bottom:169.948500px;}
.y5e{bottom:170.058000px;}
.y1f{bottom:176.070000px;}
.y66{bottom:177.619500px;}
.y52{bottom:177.774000px;}
.y3e{bottom:180.579000px;}
.y10{bottom:183.523500px;}
.y4c{bottom:186.741000px;}
.y29{bottom:187.366500px;}
.y74{bottom:187.597500px;}
.y5d{bottom:187.990500px;}
.y7e{bottom:189.358500px;}
.y30{bottom:191.617500px;}
.y51{bottom:195.706500px;}
.y1e{bottom:195.870000px;}
.y3d{bottom:204.115500px;}
.y65{bottom:205.924500px;}
.y73{bottom:209.266500px;}
.y4b{bottom:210.277500px;}
.y5c{bottom:210.780000px;}
.y28{bottom:210.903000px;}
.yf{bottom:213.696000px;}
.y3{bottom:213.753000px;}
.y2f{bottom:215.154000px;}
.y1d{bottom:217.539000px;}
.y7d{bottom:217.663500px;}
.y6d{bottom:218.328000px;}
.y50{bottom:218.496000px;}
.y64{bottom:223.857000px;}
.y3c{bottom:228.168000px;}
.y72{bottom:230.935500px;}
.y27{bottom:234.955500px;}
.y5b{bottom:235.348500px;}
.y7c{bottom:235.596000px;}
.y4a{bottom:238.581000px;}
.y2e{bottom:239.208000px;}
.y16{bottom:239.250000px;}
.y1c{bottom:241.075500px;}
.y63{bottom:241.789500px;}
.y4f{bottom:243.064500px;}
.ye{bottom:243.868500px;}
.y6c{bottom:245.227500px;}
.y3b{bottom:249.837000px;}
.y71{bottom:252.604500px;}
.y5a{bottom:253.282500px;}
.y26{bottom:256.624500px;}
.y7b{bottom:258.385500px;}
.y2d{bottom:260.875500px;}
.y1b{bottom:260.877000px;}
.y49{bottom:262.119000px;}
.y62{bottom:264.579000px;}
.yd{bottom:265.537500px;}
.y4e{bottom:265.854000px;}
.y2{bottom:269.170500px;}
.y59{bottom:271.215000px;}
.y3a{bottom:273.373500px;}
.y70{bottom:274.272000px;}
.y25{bottom:280.161000px;}
.y1a{bottom:284.413500px;}
.y7a{bottom:284.823000px;}
.y58{bottom:289.147500px;}
.y48{bottom:290.422500px;}
.yc{bottom:295.710000px;}
.y6f{bottom:295.941000px;}
.y39{bottom:297.427500px;}
.y19{bottom:304.215000px;}
.y57{bottom:307.080000px;}
.y47{bottom:308.355000px;}
.y2c{bottom:308.466000px;}
.y79{bottom:314.995500px;}
.y6e{bottom:317.610000px;}
.y1{bottom:318.169500px;}
.y38{bottom:319.095000px;}
.yb{bottom:325.882500px;}
.y18{bottom:327.751500px;}
.y56{bottom:329.869500px;}
.y46{bottom:331.144500px;}
.y2b{bottom:332.002500px;}
.y37{bottom:342.633000px;}
.y7{bottom:348.268500px;}
.y6{bottom:372.178500px;}
.h5{height:26.899200px;}
.h4{height:44.831700px;}
.h7{height:46.322400px;}
.h8{height:46.328400px;}
.ha{height:51.287808px;}
.h3{height:53.798400px;}
.h9{height:64.557900px;}
.h6{height:73.957358px;}
.h2{height:77.366008px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x6{left:12.756000px;}
.xa{left:29.665500px;}
.xe{left:33.651000px;}
.x14{left:42.519000px;}
.x16{left:48.748500px;}
.x13{left:50.268000px;}
.x11{left:67.773000px;}
.x10{left:75.244500px;}
.xb{left:77.637000px;}
.x1{left:81.679500px;}
.x7{left:82.726500px;}
.x15{left:93.543000px;}
.x12{left:112.755000px;}
.x5{left:118.690500px;}
.xd{left:131.826000px;}
.x8{left:149.068500px;}
.x9{left:151.209000px;}
.xc{left:158.983500px;}
.xf{left:168.061500px;}
.x4{left:198.564000px;}
.x3{left:210.390000px;}
.x2{left:233.085000px;}
@media print{
.v1{vertical-align:-6.645333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:20.814933pt;}
.ls3{letter-spacing:31.211976pt;}
.ls4{letter-spacing:31.212800pt;}
.ls1{letter-spacing:31.214933pt;}
.ws13{word-spacing:-14.684174pt;}
.wsf{word-spacing:-12.693681pt;}
.wsd{word-spacing:-0.063761pt;}
.ws7{word-spacing:-0.031881pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:3.193345pt;}
.ws8{word-spacing:4.890474pt;}
.ws3{word-spacing:4.999897pt;}
.ws5{word-spacing:5.053031pt;}
.wsc{word-spacing:5.273040pt;}
.ws10{word-spacing:5.591846pt;}
.ws12{word-spacing:6.038173pt;}
.ws1{word-spacing:6.101934pt;}
.wsb{word-spacing:6.165695pt;}
.ws11{word-spacing:7.322300pt;}
.ws6{word-spacing:11.253828pt;}
.ws4{word-spacing:28.646426pt;}
.ws0{word-spacing:28.738241pt;}
.ws9{word-spacing:33.512645pt;}
.wsa{word-spacing:33.604461pt;}
._5{margin-left:-4.407178pt;}
._0{margin-left:-2.479018pt;}
._2{margin-left:-0.964080pt;}
._3{width:0.956416pt;}
._1{width:2.203571pt;}
._8{width:15.094820pt;}
._4{width:21.678763pt;}
._6{width:28.139033pt;}
._7{width:31.189580pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:6.985333pt;}
.y6b{bottom:13.870667pt;}
.y69{bottom:16.284000pt;}
.y45{bottom:18.128000pt;}
.y68{bottom:25.582667pt;}
.y5{bottom:30.728000pt;}
.y67{bottom:34.881333pt;}
.y44{bottom:39.049333pt;}
.y15{bottom:44.150667pt;}
.y36{bottom:45.081333pt;}
.y9{bottom:58.142667pt;}
.y24{bottom:58.540000pt;}
.y43{bottom:60.429333pt;}
.y14{bottom:63.410667pt;}
.y35{bottom:66.461333pt;}
.ya{bottom:71.125333pt;}
.y8{bottom:77.404000pt;}
.y4{bottom:77.446667pt;}
.y23{bottom:79.462667pt;}
.y42{bottom:79.690667pt;}
.y61{bottom:83.242667pt;}
.y34{bottom:87.384000pt;}
.y78{bottom:89.709333pt;}
.y13{bottom:90.230667pt;}
.y22{bottom:97.062667pt;}
.y41{bottom:98.952000pt;}
.y55{bottom:99.985333pt;}
.y33{bottom:108.764000pt;}
.y77{bottom:108.970667pt;}
.y12{bottom:109.492000pt;}
.y60{bottom:110.062667pt;}
.y21{bottom:117.984000pt;}
.y40{bottom:119.873333pt;}
.y54{bottom:120.242667pt;}
.y80{bottom:122.237333pt;}
.y76{bottom:128.230667pt;}
.y32{bottom:129.685333pt;}
.y5f{bottom:135.222667pt;}
.y20{bottom:135.585333pt;}
.y11{bottom:136.312000pt;}
.y3f{bottom:141.253333pt;}
.y53{bottom:142.081333pt;}
.y17{bottom:145.648000pt;}
.y4d{bottom:146.730667pt;}
.y2a{bottom:147.286667pt;}
.y7f{bottom:147.397333pt;}
.y75{bottom:147.492000pt;}
.y31{bottom:151.065333pt;}
.y5e{bottom:151.162667pt;}
.y1f{bottom:156.506667pt;}
.y66{bottom:157.884000pt;}
.y52{bottom:158.021333pt;}
.y3e{bottom:160.514667pt;}
.y10{bottom:163.132000pt;}
.y4c{bottom:165.992000pt;}
.y29{bottom:166.548000pt;}
.y74{bottom:166.753333pt;}
.y5d{bottom:167.102667pt;}
.y7e{bottom:168.318667pt;}
.y30{bottom:170.326667pt;}
.y51{bottom:173.961333pt;}
.y1e{bottom:174.106667pt;}
.y3d{bottom:181.436000pt;}
.y65{bottom:183.044000pt;}
.y73{bottom:186.014667pt;}
.y4b{bottom:186.913333pt;}
.y5c{bottom:187.360000pt;}
.y28{bottom:187.469333pt;}
.yf{bottom:189.952000pt;}
.y3{bottom:190.002667pt;}
.y2f{bottom:191.248000pt;}
.y1d{bottom:193.368000pt;}
.y7d{bottom:193.478667pt;}
.y6d{bottom:194.069333pt;}
.y50{bottom:194.218667pt;}
.y64{bottom:198.984000pt;}
.y3c{bottom:202.816000pt;}
.y72{bottom:205.276000pt;}
.y27{bottom:208.849333pt;}
.y5b{bottom:209.198667pt;}
.y7c{bottom:209.418667pt;}
.y4a{bottom:212.072000pt;}
.y2e{bottom:212.629333pt;}
.y16{bottom:212.666667pt;}
.y1c{bottom:214.289333pt;}
.y63{bottom:214.924000pt;}
.y4f{bottom:216.057333pt;}
.ye{bottom:216.772000pt;}
.y6c{bottom:217.980000pt;}
.y3b{bottom:222.077333pt;}
.y71{bottom:224.537333pt;}
.y5a{bottom:225.140000pt;}
.y26{bottom:228.110667pt;}
.y7b{bottom:229.676000pt;}
.y2d{bottom:231.889333pt;}
.y1b{bottom:231.890667pt;}
.y49{bottom:232.994667pt;}
.y62{bottom:235.181333pt;}
.yd{bottom:236.033333pt;}
.y4e{bottom:236.314667pt;}
.y2{bottom:239.262667pt;}
.y59{bottom:241.080000pt;}
.y3a{bottom:242.998667pt;}
.y70{bottom:243.797333pt;}
.y25{bottom:249.032000pt;}
.y1a{bottom:252.812000pt;}
.y7a{bottom:253.176000pt;}
.y58{bottom:257.020000pt;}
.y48{bottom:258.153333pt;}
.yc{bottom:262.853333pt;}
.y6f{bottom:263.058667pt;}
.y39{bottom:264.380000pt;}
.y19{bottom:270.413333pt;}
.y57{bottom:272.960000pt;}
.y47{bottom:274.093333pt;}
.y2c{bottom:274.192000pt;}
.y79{bottom:279.996000pt;}
.y6e{bottom:282.320000pt;}
.y1{bottom:282.817333pt;}
.y38{bottom:283.640000pt;}
.yb{bottom:289.673333pt;}
.y18{bottom:291.334667pt;}
.y56{bottom:293.217333pt;}
.y46{bottom:294.350667pt;}
.y2b{bottom:295.113333pt;}
.y37{bottom:304.562667pt;}
.y7{bottom:309.572000pt;}
.y6{bottom:330.825333pt;}
.h5{height:23.910400pt;}
.h4{height:39.850400pt;}
.h7{height:41.175467pt;}
.h8{height:41.180800pt;}
.ha{height:45.589163pt;}
.h3{height:47.820800pt;}
.h9{height:57.384800pt;}
.h6{height:65.739874pt;}
.h2{height:68.769785pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x6{left:11.338667pt;}
.xa{left:26.369333pt;}
.xe{left:29.912000pt;}
.x14{left:37.794667pt;}
.x16{left:43.332000pt;}
.x13{left:44.682667pt;}
.x11{left:60.242667pt;}
.x10{left:66.884000pt;}
.xb{left:69.010667pt;}
.x1{left:72.604000pt;}
.x7{left:73.534667pt;}
.x15{left:83.149333pt;}
.x12{left:100.226667pt;}
.x5{left:105.502667pt;}
.xd{left:117.178667pt;}
.x8{left:132.505333pt;}
.x9{left:134.408000pt;}
.xc{left:141.318667pt;}
.xf{left:149.388000pt;}
.x4{left:176.501333pt;}
.x3{left:187.013333pt;}
.x2{left:207.186667pt;}
}




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