
    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_e4c6d0f840d17d66065d720d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30bc50ad50dcb39a0f5397c2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_60ffa3763d1015629907574b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_52abeaa79d3506576d4dc36b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910000;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;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:21.799621px;}
.ls0{letter-spacing:32.727300px;}
.ls2{letter-spacing:32.728321px;}
.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;}
}
.wsd{word-spacing:-36.358332px;}
.ws26{word-spacing:-20.084736px;}
.ws17{word-spacing:-18.327288px;}
.ws5{word-spacing:-17.229983px;}
.ws22{word-spacing:-2.945457px;}
.ws24{word-spacing:-1.440001px;}
.ws1b{word-spacing:-0.589091px;}
.ws16{word-spacing:-0.392728px;}
.ws1e{word-spacing:-0.130909px;}
.ws13{word-spacing:0.000000px;}
.ws21{word-spacing:1.047274px;}
.wsa{word-spacing:1.112728px;}
.ws20{word-spacing:2.749093px;}
.ws15{word-spacing:3.403639px;}
.ws18{word-spacing:3.463436px;}
.ws7{word-spacing:3.469094px;}
.ws19{word-spacing:3.473897px;}
.ws1f{word-spacing:3.796367px;}
.ws11{word-spacing:5.040004px;}
.ws1d{word-spacing:5.629096px;}
.ws2{word-spacing:5.666765px;}
.ws1a{word-spacing:5.694550px;}
.ws14{word-spacing:6.168883px;}
.ws1{word-spacing:6.240614px;}
.ws10{word-spacing:6.676369px;}
.wse{word-spacing:6.741824px;}
.ws8{word-spacing:6.938188px;}
.ws3{word-spacing:7.402639px;}
.ws23{word-spacing:7.854552px;}
.ws1c{word-spacing:8.247280px;}
.ws25{word-spacing:8.967280px;}
.ws0{word-spacing:10.661850px;}
.ws12{word-spacing:10.669100px;}
.wsf{word-spacing:11.258191px;}
.ws6{word-spacing:14.400012px;}
.ws4{word-spacing:24.127448px;}
.wsc{word-spacing:24.131769px;}
.wsb{word-spacing:24.144157px;}
.ws9{word-spacing:24.153763px;}
._5{margin-left:-38.094577px;}
._9{margin-left:-33.954338px;}
._6{margin-left:-32.727300px;}
._7{margin-left:-30.485244px;}
._8{margin-left:-15.815194px;}
._0{margin-left:-11.405700px;}
._16{margin-left:-10.309571px;}
._4{margin-left:-7.919102px;}
._d{margin-left:-5.367277px;}
._1{margin-left:-3.843225px;}
._3{margin-left:-2.223667px;}
._e{margin-left:-1.050852px;}
._18{width:1.176394px;}
._2{width:2.223667px;}
._17{width:8.393593px;}
._f{width:17.249141px;}
._13{width:20.745530px;}
._b{width:21.796382px;}
._1b{width:24.558760px;}
._14{width:26.396326px;}
._19{width:27.883660px;}
._c{width:29.061842px;}
._12{width:32.223252px;}
._11{width:33.296803px;}
._15{width:39.730942px;}
._1c{width:45.556402px;}
._1a{width:53.092091px;}
._a{width:75.222278px;}
._10{width:107.899154px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y19{bottom:138.829500px;}
.y37{bottom:237.535500px;}
.y54{bottom:257.679000px;}
.y36{bottom:257.859000px;}
.y35{bottom:278.184000px;}
.y34{bottom:298.507500px;}
.y53{bottom:298.744500px;}
.y18{bottom:311.836500px;}
.y33{bottom:339.571500px;}
.y17{bottom:342.321000px;}
.y52{bottom:352.749000px;}
.y16{bottom:362.646000px;}
.y32{bottom:392.979000px;}
.y15{bottom:393.130500px;}
.y51{bottom:393.813000px;}
.y31{bottom:413.302500px;}
.y14{bottom:423.616500px;}
.y13{bottom:443.940000px;}
.y50{bottom:447.819000px;}
.y30{bottom:454.368000px;}
.y4f{bottom:468.142500px;}
.y12{bottom:474.426000px;}
.y4e{bottom:488.466000px;}
.y11{bottom:504.912000px;}
.y2f{bottom:507.774000px;}
.y4d{bottom:508.789500px;}
.y10{bottom:525.235500px;}
.y2e{bottom:528.099000px;}
.y4c{bottom:529.113000px;}
.yf{bottom:545.559000px;}
.y2d{bottom:548.422500px;}
.y4b{bottom:549.436500px;}
.ye{bottom:565.882500px;}
.y2c{bottom:568.746000px;}
.y4a{bottom:569.761500px;}
.yd{bottom:586.207500px;}
.y2b{bottom:589.069500px;}
.yc{bottom:606.531000px;}
.y2a{bottom:609.393000px;}
.y49{bottom:610.825500px;}
.yb{bottom:626.854500px;}
.y29{bottom:629.718000px;}
.y48{bottom:631.149000px;}
.ya{bottom:647.178000px;}
.y28{bottom:650.041500px;}
.y9{bottom:667.501500px;}
.y27{bottom:670.365000px;}
.y47{bottom:684.556500px;}
.y8{bottom:687.826500px;}
.y26{bottom:690.688500px;}
.y46{bottom:704.880000px;}
.y7{bottom:708.150000px;}
.y25{bottom:711.012000px;}
.y45{bottom:725.205000px;}
.y6{bottom:728.473500px;}
.y44{bottom:745.528500px;}
.y24{bottom:752.077500px;}
.y43{bottom:765.852000px;}
.y5{bottom:775.180500px;}
.y42{bottom:786.175500px;}
.y23{bottom:805.485000px;}
.y41{bottom:806.499000px;}
.y22{bottom:825.808500px;}
.y40{bottom:826.822500px;}
.y21{bottom:846.132000px;}
.y3f{bottom:847.147500px;}
.y3e{bottom:867.471000px;}
.y20{bottom:887.197500px;}
.y3d{bottom:887.794500px;}
.y4{bottom:922.528500px;}
.y3c{bottom:928.860000px;}
.y1f{bottom:941.202000px;}
.y3{bottom:943.449000px;}
.y3b{bottom:949.183500px;}
.y1e{bottom:961.525500px;}
.y2{bottom:964.371000px;}
.y1d{bottom:981.849000px;}
.y1{bottom:993.474000px;}
.y1c{bottom:1002.172500px;}
.y3a{bottom:1002.589500px;}
.y1b{bottom:1022.497500px;}
.y39{bottom:1022.914500px;}
.y38{bottom:1043.238000px;}
.y1a{bottom:1063.561500px;}
.h6{height:45.818220px;}
.h7{height:46.145493px;}
.h8{height:46.865494px;}
.h4{height:49.090950px;}
.h5{height:49.096950px;}
.h2{height:51.359539px;}
.h3{height:61.631275px;}
.h1{height:88.766100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:125.182500px;}
.x1{left:136.432500px;}
.x9{left:145.177500px;}
.x5{left:149.727000px;}
.x2{left:161.316000px;}
.xa{left:166.090500px;}
.x6{left:187.363500px;}
.x7{left:239.727000px;}
.x4{left:320.182500px;}
.x8{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:19.377441pt;}
.ls0{letter-spacing:29.090933pt;}
.ls2{letter-spacing:29.091841pt;}
.wsd{word-spacing:-32.318517pt;}
.ws26{word-spacing:-17.853099pt;}
.ws17{word-spacing:-16.290923pt;}
.ws5{word-spacing:-15.315540pt;}
.ws22{word-spacing:-2.618184pt;}
.ws24{word-spacing:-1.280001pt;}
.ws1b{word-spacing:-0.523637pt;}
.ws16{word-spacing:-0.349091pt;}
.ws1e{word-spacing:-0.116364pt;}
.ws13{word-spacing:0.000000pt;}
.ws21{word-spacing:0.930910pt;}
.wsa{word-spacing:0.989092pt;}
.ws20{word-spacing:2.443638pt;}
.ws15{word-spacing:3.025457pt;}
.ws18{word-spacing:3.078610pt;}
.ws7{word-spacing:3.083639pt;}
.ws19{word-spacing:3.087908pt;}
.ws1f{word-spacing:3.374548pt;}
.ws11{word-spacing:4.480004pt;}
.ws1d{word-spacing:5.003641pt;}
.ws2{word-spacing:5.037124pt;}
.ws1a{word-spacing:5.061822pt;}
.ws14{word-spacing:5.483452pt;}
.ws1{word-spacing:5.547213pt;}
.ws10{word-spacing:5.934550pt;}
.wse{word-spacing:5.992732pt;}
.ws8{word-spacing:6.167278pt;}
.ws3{word-spacing:6.580124pt;}
.ws23{word-spacing:6.981824pt;}
.ws1c{word-spacing:7.330915pt;}
.ws25{word-spacing:7.970916pt;}
.ws0{word-spacing:9.477200pt;}
.ws12{word-spacing:9.483644pt;}
.wsf{word-spacing:10.007281pt;}
.ws6{word-spacing:12.800011pt;}
.ws4{word-spacing:21.446620pt;}
.wsc{word-spacing:21.450461pt;}
.wsb{word-spacing:21.461473pt;}
.ws9{word-spacing:21.470012pt;}
._5{margin-left:-33.861846pt;}
._9{margin-left:-30.181634pt;}
._6{margin-left:-29.090933pt;}
._7{margin-left:-27.097995pt;}
._8{margin-left:-14.057950pt;}
._0{margin-left:-10.138400pt;}
._16{margin-left:-9.164063pt;}
._4{margin-left:-7.039202pt;}
._d{margin-left:-4.770913pt;}
._1{margin-left:-3.416200pt;}
._3{margin-left:-1.976593pt;}
._e{margin-left:-0.934091pt;}
._18{width:1.045683pt;}
._2{width:1.976593pt;}
._17{width:7.460971pt;}
._f{width:15.332570pt;}
._13{width:18.440471pt;}
._b{width:19.374562pt;}
._1b{width:21.830009pt;}
._14{width:23.463401pt;}
._19{width:24.785475pt;}
._c{width:25.832749pt;}
._12{width:28.642891pt;}
._11{width:29.597158pt;}
._15{width:35.316393pt;}
._1c{width:40.494579pt;}
._1a{width:47.192970pt;}
._a{width:66.864247pt;}
._10{width:95.910359pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:123.404000pt;}
.y37{bottom:211.142667pt;}
.y54{bottom:229.048000pt;}
.y36{bottom:229.208000pt;}
.y35{bottom:247.274667pt;}
.y34{bottom:265.340000pt;}
.y53{bottom:265.550667pt;}
.y18{bottom:277.188000pt;}
.y33{bottom:301.841333pt;}
.y17{bottom:304.285333pt;}
.y52{bottom:313.554667pt;}
.y16{bottom:322.352000pt;}
.y32{bottom:349.314667pt;}
.y15{bottom:349.449333pt;}
.y51{bottom:350.056000pt;}
.y31{bottom:367.380000pt;}
.y14{bottom:376.548000pt;}
.y13{bottom:394.613333pt;}
.y50{bottom:398.061333pt;}
.y30{bottom:403.882667pt;}
.y4f{bottom:416.126667pt;}
.y12{bottom:421.712000pt;}
.y4e{bottom:434.192000pt;}
.y11{bottom:448.810667pt;}
.y2f{bottom:451.354667pt;}
.y4d{bottom:452.257333pt;}
.y10{bottom:466.876000pt;}
.y2e{bottom:469.421333pt;}
.y4c{bottom:470.322667pt;}
.yf{bottom:484.941333pt;}
.y2d{bottom:487.486667pt;}
.y4b{bottom:488.388000pt;}
.ye{bottom:503.006667pt;}
.y2c{bottom:505.552000pt;}
.y4a{bottom:506.454667pt;}
.yd{bottom:521.073333pt;}
.y2b{bottom:523.617333pt;}
.yc{bottom:539.138667pt;}
.y2a{bottom:541.682667pt;}
.y49{bottom:542.956000pt;}
.yb{bottom:557.204000pt;}
.y29{bottom:559.749333pt;}
.y48{bottom:561.021333pt;}
.ya{bottom:575.269333pt;}
.y28{bottom:577.814667pt;}
.y9{bottom:593.334667pt;}
.y27{bottom:595.880000pt;}
.y47{bottom:608.494667pt;}
.y8{bottom:611.401333pt;}
.y26{bottom:613.945333pt;}
.y46{bottom:626.560000pt;}
.y7{bottom:629.466667pt;}
.y25{bottom:632.010667pt;}
.y45{bottom:644.626667pt;}
.y6{bottom:647.532000pt;}
.y44{bottom:662.692000pt;}
.y24{bottom:668.513333pt;}
.y43{bottom:680.757333pt;}
.y5{bottom:689.049333pt;}
.y42{bottom:698.822667pt;}
.y23{bottom:715.986667pt;}
.y41{bottom:716.888000pt;}
.y22{bottom:734.052000pt;}
.y40{bottom:734.953333pt;}
.y21{bottom:752.117333pt;}
.y3f{bottom:753.020000pt;}
.y3e{bottom:771.085333pt;}
.y20{bottom:788.620000pt;}
.y3d{bottom:789.150667pt;}
.y4{bottom:820.025333pt;}
.y3c{bottom:825.653333pt;}
.y1f{bottom:836.624000pt;}
.y3{bottom:838.621333pt;}
.y3b{bottom:843.718667pt;}
.y1e{bottom:854.689333pt;}
.y2{bottom:857.218667pt;}
.y1d{bottom:872.754667pt;}
.y1{bottom:883.088000pt;}
.y1c{bottom:890.820000pt;}
.y3a{bottom:891.190667pt;}
.y1b{bottom:908.886667pt;}
.y39{bottom:909.257333pt;}
.y38{bottom:927.322667pt;}
.y1a{bottom:945.388000pt;}
.h6{height:40.727307pt;}
.h7{height:41.018216pt;}
.h8{height:41.658217pt;}
.h4{height:43.636400pt;}
.h5{height:43.641733pt;}
.h2{height:45.652924pt;}
.h3{height:54.783356pt;}
.h1{height:78.903200pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:111.273333pt;}
.x1{left:121.273333pt;}
.x9{left:129.046667pt;}
.x5{left:133.090667pt;}
.x2{left:143.392000pt;}
.xa{left:147.636000pt;}
.x6{left:166.545333pt;}
.x7{left:213.090667pt;}
.x4{left:284.606667pt;}
.x8{left:404.364000pt;}
}




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