
    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_b39d2d42eb7851d097a08b24.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6b8170d185a3473184f54040.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_5912eee0ed71e8b6b7ec5217.woff')format("woff");}.ff3{font-family:ff3;line-height:1.144043;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_e9893500b1a0db65cedc1cff.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_38a124791e7deaadcc705692.woff')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_5efb745ae54878955293ad18.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_56930b53d8155879274a5868.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_c838721604bc9fb49c449363.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_c774922a25610c42582e8f3b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.v1{vertical-align:15.120000px;}
.ls6{letter-spacing:-0.351600px;}
.ls9{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.100800px;}
.ls3{letter-spacing:0.263400px;}
.ls1{letter-spacing:0.308400px;}
.ls8{letter-spacing:16.387200px;}
.ls7{letter-spacing:93.571200px;}
.ls0{letter-spacing:94.996800px;}
.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;}
}
.ws5{word-spacing:-14.881200px;}
.ws2{word-spacing:-14.673600px;}
.ws9{word-spacing:-14.595840px;}
.ws7{word-spacing:-14.572800px;}
.ws8{word-spacing:-14.503800px;}
.ws3{word-spacing:-14.221200px;}
.ws4{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.994280px;}
.ws1{word-spacing:-10.743840px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-3.628080px;}
._7{margin-left:-2.359440px;}
._1{margin-left:-1.166400px;}
._0{width:1.208160px;}
._2{width:2.294400px;}
._a{width:3.544800px;}
._4{width:5.019840px;}
._8{width:6.799680px;}
._c{width:7.826400px;}
._9{width:8.964000px;}
._3{width:10.398240px;}
._d{width:11.593440px;}
._f{width:12.650400px;}
._6{width:14.217600px;}
._5{width:15.682800px;}
._11{width:17.606400px;}
._17{width:18.770880px;}
._14{width:19.886400px;}
._12{width:21.196800px;}
._13{width:22.271760px;}
._16{width:26.112960px;}
._15{width:27.290880px;}
._b{width:93.571200px;}
._18{width:844.500000px;}
._10{width:849.727200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.fs4{font-size:94.867381px;}
.y0{bottom:0.000000px;}
.y5{bottom:36.900000px;}
.y4{bottom:57.060000px;}
.y37{bottom:79.740000px;}
.y67{bottom:82.800000px;}
.y36{bottom:99.180000px;}
.y66{bottom:102.060000px;}
.y35{bottom:118.476000px;}
.y65{bottom:121.536000px;}
.y34{bottom:137.916000px;}
.y64{bottom:140.796000px;}
.y33{bottom:157.170000px;}
.y63{bottom:160.230000px;}
.y32{bottom:176.610000px;}
.y62{bottom:179.490000px;}
.y31{bottom:195.870000px;}
.y61{bottom:198.750000px;}
.y30{bottom:215.310000px;}
.y60{bottom:218.190000px;}
.y2f{bottom:234.570000px;}
.y5f{bottom:237.450000px;}
.y2e{bottom:254.010000px;}
.y5e{bottom:256.890000px;}
.y2d{bottom:273.270000px;}
.y5d{bottom:276.150000px;}
.y2c{bottom:292.530000px;}
.y5c{bottom:295.590000px;}
.y2b{bottom:311.970000px;}
.y5b{bottom:314.850000px;}
.y2a{bottom:331.275000px;}
.y5a{bottom:334.335000px;}
.y29{bottom:350.715000px;}
.y59{bottom:353.595000px;}
.y28{bottom:369.975000px;}
.y58{bottom:373.035000px;}
.y27{bottom:389.415000px;}
.y57{bottom:392.295000px;}
.y26{bottom:408.675000px;}
.y56{bottom:411.735000px;}
.y25{bottom:428.115000px;}
.y55{bottom:430.995000px;}
.y24{bottom:447.375000px;}
.y54{bottom:450.435000px;}
.y23{bottom:466.815000px;}
.y53{bottom:469.695000px;}
.y22{bottom:486.075000px;}
.y52{bottom:488.955000px;}
.y21{bottom:505.515000px;}
.y51{bottom:508.395000px;}
.y20{bottom:524.775000px;}
.y50{bottom:527.655000px;}
.y1f{bottom:543.855000px;}
.y4f{bottom:547.125000px;}
.y1e{bottom:561.345000px;}
.y4e{bottom:566.385000px;}
.y1d{bottom:578.985000px;}
.y4d{bottom:585.825000px;}
.y1c{bottom:596.625000px;}
.y4c{bottom:605.085000px;}
.y1b{bottom:614.265000px;}
.y4b{bottom:624.525000px;}
.y1a{bottom:631.725000px;}
.y4a{bottom:643.785000px;}
.y19{bottom:649.365000px;}
.y49{bottom:663.225000px;}
.y18{bottom:667.005000px;}
.y68{bottom:676.905000px;}
.y48{bottom:682.485000px;}
.y17{bottom:684.465000px;}
.y47{bottom:701.925000px;}
.y16{bottom:702.105000px;}
.y15{bottom:719.745000px;}
.y46{bottom:721.185000px;}
.y14{bottom:737.565000px;}
.y45{bottom:740.625000px;}
.y13{bottom:756.645000px;}
.y44{bottom:759.885000px;}
.y12{bottom:774.330000px;}
.y43{bottom:779.190000px;}
.y11{bottom:791.790000px;}
.y42{bottom:798.630000px;}
.y10{bottom:809.430000px;}
.y41{bottom:817.890000px;}
.yf{bottom:827.250000px;}
.y40{bottom:837.330000px;}
.ye{bottom:846.690000px;}
.y3f{bottom:856.590000px;}
.yd{bottom:865.770000px;}
.y3e{bottom:876.030000px;}
.yc{bottom:883.230000px;}
.y3d{bottom:895.290000px;}
.yb{bottom:900.870000px;}
.y3c{bottom:914.730000px;}
.ya{bottom:918.690000px;}
.y3b{bottom:933.990000px;}
.y9{bottom:938.130000px;}
.y3a{bottom:953.430000px;}
.y7{bottom:959.190000px;}
.y8{bottom:966.030000px;}
.y39{bottom:972.690000px;}
.y6{bottom:986.220000px;}
.y38{bottom:992.160000px;}
.y3{bottom:1012.500000px;}
.y2{bottom:1031.400000px;}
.y1{bottom:1047.780000px;}
.h6{height:37.095469px;}
.h2{height:44.820000px;}
.h7{height:56.084062px;}
.ha{height:57.636562px;}
.h8{height:59.147227px;}
.h9{height:65.560781px;}
.h3{height:65.884219px;}
.hb{height:78.310547px;}
.h4{height:85.869141px;}
.h5{height:90.513117px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x9{left:54.000000px;}
.x12{left:81.036000px;}
.x6{left:100.116000px;}
.x2{left:101.736000px;}
.xc{left:129.636000px;}
.x7{left:265.575000px;}
.x5{left:374.685000px;}
.x4{left:387.285000px;}
.xb{left:399.165000px;}
.x1{left:437.505000px;}
.x11{left:451.005000px;}
.xf{left:455.685000px;}
.xd{left:481.425000px;}
.x8{left:508.830000px;}
.x10{left:539.790000px;}
.xe{left:602.610000px;}
.xa{left:639.720000px;}
.x3{left:720.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls6{letter-spacing:-0.312533pt;}
.ls9{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.089600pt;}
.ls3{letter-spacing:0.234133pt;}
.ls1{letter-spacing:0.274133pt;}
.ls8{letter-spacing:14.566400pt;}
.ls7{letter-spacing:83.174400pt;}
.ls0{letter-spacing:84.441600pt;}
.ws5{word-spacing:-13.227733pt;}
.ws2{word-spacing:-13.043200pt;}
.ws9{word-spacing:-12.974080pt;}
.ws7{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.892267pt;}
.ws3{word-spacing:-12.641067pt;}
.ws4{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.772693pt;}
.ws1{word-spacing:-9.550080pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-3.224960pt;}
._7{margin-left:-2.097280pt;}
._1{margin-left:-1.036800pt;}
._0{width:1.073920pt;}
._2{width:2.039467pt;}
._a{width:3.150933pt;}
._4{width:4.462080pt;}
._8{width:6.044160pt;}
._c{width:6.956800pt;}
._9{width:7.968000pt;}
._3{width:9.242880pt;}
._d{width:10.305280pt;}
._f{width:11.244800pt;}
._6{width:12.637867pt;}
._5{width:13.940267pt;}
._11{width:15.650133pt;}
._17{width:16.685227pt;}
._14{width:17.676800pt;}
._12{width:18.841600pt;}
._13{width:19.797120pt;}
._16{width:23.211520pt;}
._15{width:24.258560pt;}
._b{width:83.174400pt;}
._18{width:750.666667pt;}
._10{width:755.313067pt;}
.fs1{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.fs4{font-size:84.326561pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:32.800000pt;}
.y4{bottom:50.720000pt;}
.y37{bottom:70.880000pt;}
.y67{bottom:73.600000pt;}
.y36{bottom:88.160000pt;}
.y66{bottom:90.720000pt;}
.y35{bottom:105.312000pt;}
.y65{bottom:108.032000pt;}
.y34{bottom:122.592000pt;}
.y64{bottom:125.152000pt;}
.y33{bottom:139.706667pt;}
.y63{bottom:142.426667pt;}
.y32{bottom:156.986667pt;}
.y62{bottom:159.546667pt;}
.y31{bottom:174.106667pt;}
.y61{bottom:176.666667pt;}
.y30{bottom:191.386667pt;}
.y60{bottom:193.946667pt;}
.y2f{bottom:208.506667pt;}
.y5f{bottom:211.066667pt;}
.y2e{bottom:225.786667pt;}
.y5e{bottom:228.346667pt;}
.y2d{bottom:242.906667pt;}
.y5d{bottom:245.466667pt;}
.y2c{bottom:260.026667pt;}
.y5c{bottom:262.746667pt;}
.y2b{bottom:277.306667pt;}
.y5b{bottom:279.866667pt;}
.y2a{bottom:294.466667pt;}
.y5a{bottom:297.186667pt;}
.y29{bottom:311.746667pt;}
.y59{bottom:314.306667pt;}
.y28{bottom:328.866667pt;}
.y58{bottom:331.586667pt;}
.y27{bottom:346.146667pt;}
.y57{bottom:348.706667pt;}
.y26{bottom:363.266667pt;}
.y56{bottom:365.986667pt;}
.y25{bottom:380.546667pt;}
.y55{bottom:383.106667pt;}
.y24{bottom:397.666667pt;}
.y54{bottom:400.386667pt;}
.y23{bottom:414.946667pt;}
.y53{bottom:417.506667pt;}
.y22{bottom:432.066667pt;}
.y52{bottom:434.626667pt;}
.y21{bottom:449.346667pt;}
.y51{bottom:451.906667pt;}
.y20{bottom:466.466667pt;}
.y50{bottom:469.026667pt;}
.y1f{bottom:483.426667pt;}
.y4f{bottom:486.333333pt;}
.y1e{bottom:498.973333pt;}
.y4e{bottom:503.453333pt;}
.y1d{bottom:514.653333pt;}
.y4d{bottom:520.733333pt;}
.y1c{bottom:530.333333pt;}
.y4c{bottom:537.853333pt;}
.y1b{bottom:546.013333pt;}
.y4b{bottom:555.133333pt;}
.y1a{bottom:561.533333pt;}
.y4a{bottom:572.253333pt;}
.y19{bottom:577.213333pt;}
.y49{bottom:589.533333pt;}
.y18{bottom:592.893333pt;}
.y68{bottom:601.693333pt;}
.y48{bottom:606.653333pt;}
.y17{bottom:608.413333pt;}
.y47{bottom:623.933333pt;}
.y16{bottom:624.093333pt;}
.y15{bottom:639.773333pt;}
.y46{bottom:641.053333pt;}
.y14{bottom:655.613333pt;}
.y45{bottom:658.333333pt;}
.y13{bottom:672.573333pt;}
.y44{bottom:675.453333pt;}
.y12{bottom:688.293333pt;}
.y43{bottom:692.613333pt;}
.y11{bottom:703.813333pt;}
.y42{bottom:709.893333pt;}
.y10{bottom:719.493333pt;}
.y41{bottom:727.013333pt;}
.yf{bottom:735.333333pt;}
.y40{bottom:744.293333pt;}
.ye{bottom:752.613333pt;}
.y3f{bottom:761.413333pt;}
.yd{bottom:769.573333pt;}
.y3e{bottom:778.693333pt;}
.yc{bottom:785.093333pt;}
.y3d{bottom:795.813333pt;}
.yb{bottom:800.773333pt;}
.y3c{bottom:813.093333pt;}
.ya{bottom:816.613333pt;}
.y3b{bottom:830.213333pt;}
.y9{bottom:833.893333pt;}
.y3a{bottom:847.493333pt;}
.y7{bottom:852.613333pt;}
.y8{bottom:858.693333pt;}
.y39{bottom:864.613333pt;}
.y6{bottom:876.640000pt;}
.y38{bottom:881.920000pt;}
.y3{bottom:900.000000pt;}
.y2{bottom:916.800000pt;}
.y1{bottom:931.360000pt;}
.h6{height:32.973750pt;}
.h2{height:39.840000pt;}
.h7{height:49.852500pt;}
.ha{height:51.232500pt;}
.h8{height:52.575312pt;}
.h9{height:58.276250pt;}
.h3{height:58.563750pt;}
.hb{height:69.609375pt;}
.h4{height:76.328125pt;}
.h5{height:80.456104pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x9{left:48.000000pt;}
.x12{left:72.032000pt;}
.x6{left:88.992000pt;}
.x2{left:90.432000pt;}
.xc{left:115.232000pt;}
.x7{left:236.066667pt;}
.x5{left:333.053333pt;}
.x4{left:344.253333pt;}
.xb{left:354.813333pt;}
.x1{left:388.893333pt;}
.x11{left:400.893333pt;}
.xf{left:405.053333pt;}
.xd{left:427.933333pt;}
.x8{left:452.293333pt;}
.x10{left:479.813333pt;}
.xe{left:535.653333pt;}
.xa{left:568.640000pt;}
.x3{left:640.480000pt;}
}




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