
    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_ce34093e5c4328477acc726d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.004883;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_c85eccba3f5f68eccb2c7ed9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004883;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_ec816fe4400a6147149ccd48.woff')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_856f8ce88ede0396e3ef0f7b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_6f809a5dd2e3a3419febaa2a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_8c5b962859a163fb713c52cc.woff')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;}
.m1{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls3{letter-spacing:-2.388000px;}
.ls2{letter-spacing:-1.668000px;}
.ls4{letter-spacing:-1.662000px;}
.ls5{letter-spacing:-1.548000px;}
.lsa{letter-spacing:-1.236000px;}
.ls9{letter-spacing:-0.948000px;}
.ls7{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.513600px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:1.746000px;}
.ls8{letter-spacing:5.940000px;}
.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;}
}
.wsa{word-spacing:-54.000000px;}
.ws0{word-spacing:-25.560000px;}
.ws8{word-spacing:-16.686000px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.426400px;}
.ws9{word-spacing:-14.328000px;}
.wsc{word-spacing:-13.992000px;}
.wsd{word-spacing:-13.704000px;}
.ws7{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.278000px;}
.ws4{word-spacing:-13.272000px;}
.ws5{word-spacing:-12.552000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._d{margin-left:-14.843760px;}
._1{margin-left:-4.600800px;}
._0{margin-left:-3.271680px;}
._2{margin-left:-1.942560px;}
._e{width:1.075680px;}
._4{width:2.165760px;}
._5{width:3.241920px;}
._3{width:4.316880px;}
._6{width:6.737760px;}
._8{width:8.073600px;}
._b{width:13.105680px;}
._7{width:16.217760px;}
._c{width:17.219520px;}
._9{width:22.086480px;}
._a{width:23.535600px;}
.fc2{color:rgb(0,176,240);}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:102.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:15.300000px;}
.y16{bottom:15.480000px;}
.y11{bottom:15.660000px;}
.y17{bottom:15.840000px;}
.y28{bottom:16.020000px;}
.y30{bottom:50.040000px;}
.y14{bottom:50.220000px;}
.y20{bottom:50.265000px;}
.y25{bottom:50.400000px;}
.y2c{bottom:74.016000px;}
.y13{bottom:86.400000px;}
.y34{bottom:86.760000px;}
.y38{bottom:86.940000px;}
.y1b{bottom:87.120000px;}
.y1f{bottom:87.345000px;}
.y3c{bottom:87.480000px;}
.y24{bottom:87.660000px;}
.y2b{bottom:137.016000px;}
.y2a{bottom:163.830000px;}
.y29{bottom:169.050000px;}
.y23{bottom:200.910000px;}
.y27{bottom:234.930000px;}
.y26{bottom:268.050000px;}
.y1e{bottom:304.950000px;}
.y22{bottom:338.475000px;}
.y21{bottom:371.595000px;}
.y1a{bottom:408.675000px;}
.y46{bottom:416.415000px;}
.y45{bottom:434.055000px;}
.y1d{bottom:441.975000px;}
.y44{bottom:467.895000px;}
.y1c{bottom:475.095000px;}
.y43{bottom:501.015000px;}
.y12{bottom:512.175000px;}
.y42{bottom:533.955000px;}
.y18{bottom:545.115000px;}
.y41{bottom:570.675000px;}
.y15{bottom:578.235000px;}
.y10{bottom:614.985000px;}
.y40{bottom:623.985000px;}
.y3f{bottom:658.725000px;}
.yf{bottom:668.445000px;}
.y3b{bottom:675.645000px;}
.ye{bottom:697.065000px;}
.y3e{bottom:709.665000px;}
.yd{bottom:726.765000px;}
.y3d{bottom:742.785000px;}
.yc{bottom:760.425000px;}
.y37{bottom:779.685000px;}
.yb{bottom:781.845000px;}
.ya{bottom:803.265000px;}
.y3a{bottom:813.165000px;}
.y9{bottom:837.105000px;}
.y39{bottom:846.285000px;}
.y8{bottom:871.890000px;}
.y33{bottom:883.230000px;}
.y7{bottom:908.790000px;}
.y36{bottom:916.530000px;}
.y6{bottom:939.390000px;}
.y35{bottom:949.650000px;}
.y5{bottom:970.350000px;}
.y2f{bottom:986.550000px;}
.y4{bottom:1010.310000px;}
.y32{bottom:1019.670000px;}
.y3{bottom:1048.650000px;}
.y31{bottom:1052.610000px;}
.y2{bottom:1086.990000px;}
.y2e{bottom:1089.330000px;}
.y1{bottom:1133.610000px;}
.y2d{bottom:1142.640000px;}
.hd{height:32.940000px;}
.hb{height:33.120000px;}
.h10{height:33.300000px;}
.h1f{height:33.480000px;}
.h12{height:33.516000px;}
.h21{height:33.840000px;}
.h15{height:34.020000px;}
.h5{height:35.355586px;}
.h1b{height:36.000000px;}
.ha{height:36.036000px;}
.h14{height:36.180000px;}
.h1e{height:36.216000px;}
.hf{height:36.360000px;}
.h8{height:36.540000px;}
.h20{height:36.576000px;}
.h17{height:39.076172px;}
.h18{height:39.577148px;}
.h7{height:43.244297px;}
.h4{height:43.623633px;}
.hc{height:43.798711px;}
.h16{height:45.509766px;}
.h6{height:45.849375px;}
.h19{height:50.321250px;}
.h2{height:73.984219px;}
.h3{height:78.837891px;}
.h1a{height:102.060000px;}
.h9{height:102.096000px;}
.h1c{height:102.600000px;}
.he{height:102.780000px;}
.h1d{height:102.816000px;}
.h11{height:102.996000px;}
.h13{height:103.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:69.300000px;}
.wa{width:69.480000px;}
.w3{width:69.660000px;}
.w11{width:72.756000px;}
.w12{width:77.220000px;}
.w4{width:77.436000px;}
.wb{width:77.616000px;}
.w9{width:77.760000px;}
.w8{width:81.576000px;}
.w7{width:81.900000px;}
.w10{width:94.860000px;}
.w6{width:95.436000px;}
.wd{width:95.616000px;}
.wc{width:97.560000px;}
.wf{width:97.596000px;}
.w5{width:97.740000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:9.180000px;}
.x13{left:11.340000px;}
.x18{left:13.680000px;}
.x19{left:14.760000px;}
.x16{left:16.740000px;}
.x11{left:18.540000px;}
.x17{left:19.800000px;}
.x1a{left:21.060000px;}
.x15{left:22.500000px;}
.x1d{left:24.840000px;}
.x1f{left:26.100000px;}
.x25{left:28.080000px;}
.x20{left:54.900000px;}
.x1c{left:57.240000px;}
.x1e{left:62.100000px;}
.x1b{left:64.440000px;}
.x8{left:108.035987px;}
.x9{left:109.115987px;}
.x21{left:114.155987px;}
.x7{left:127.475987px;}
.x26{left:133.955987px;}
.x22{left:135.215987px;}
.x3{left:148.895987px;}
.xb{left:155.730000px;}
.x2{left:176.249987px;}
.x5{left:190.829987px;}
.xa{left:192.629987px;}
.x28{left:201.810000px;}
.x24{left:219.629987px;}
.xd{left:225.390000px;}
.x6{left:253.469987px;}
.x29{left:271.110000px;}
.x4{left:278.534987px;}
.x27{left:284.114987px;}
.x1{left:295.454987px;}
.xe{left:302.835000px;}
.x2a{left:368.715000px;}
.xf{left:400.575000px;}
.x23{left:442.514987px;}
.x2b{left:463.575000px;}
.x10{left:496.005000px;}
.x2c{left:536.325000px;}
.x12{left:577.905000px;}
.x2d{left:613.545000px;}
.x14{left:659.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls3{letter-spacing:-2.122667pt;}
.ls2{letter-spacing:-1.482667pt;}
.ls4{letter-spacing:-1.477333pt;}
.ls5{letter-spacing:-1.376000pt;}
.lsa{letter-spacing:-1.098667pt;}
.ls9{letter-spacing:-0.842667pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.456533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:1.552000pt;}
.ls8{letter-spacing:5.280000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws0{word-spacing:-22.720000pt;}
.ws8{word-spacing:-14.832000pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.823467pt;}
.ws9{word-spacing:-12.736000pt;}
.wsc{word-spacing:-12.437333pt;}
.wsd{word-spacing:-12.181333pt;}
.ws7{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.802667pt;}
.ws4{word-spacing:-11.797333pt;}
.ws5{word-spacing:-11.157333pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._d{margin-left:-13.194453pt;}
._1{margin-left:-4.089600pt;}
._0{margin-left:-2.908160pt;}
._2{margin-left:-1.726720pt;}
._e{width:0.956160pt;}
._4{width:1.925120pt;}
._5{width:2.881707pt;}
._3{width:3.837227pt;}
._6{width:5.989120pt;}
._8{width:7.176533pt;}
._b{width:11.649493pt;}
._7{width:14.415787pt;}
._c{width:15.306240pt;}
._9{width:19.632427pt;}
._a{width:20.920533pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:90.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:13.600000pt;}
.y16{bottom:13.760000pt;}
.y11{bottom:13.920000pt;}
.y17{bottom:14.080000pt;}
.y28{bottom:14.240000pt;}
.y30{bottom:44.480000pt;}
.y14{bottom:44.640000pt;}
.y20{bottom:44.680000pt;}
.y25{bottom:44.800000pt;}
.y2c{bottom:65.792000pt;}
.y13{bottom:76.800000pt;}
.y34{bottom:77.120000pt;}
.y38{bottom:77.280000pt;}
.y1b{bottom:77.440000pt;}
.y1f{bottom:77.640000pt;}
.y3c{bottom:77.760000pt;}
.y24{bottom:77.920000pt;}
.y2b{bottom:121.792000pt;}
.y2a{bottom:145.626667pt;}
.y29{bottom:150.266667pt;}
.y23{bottom:178.586667pt;}
.y27{bottom:208.826667pt;}
.y26{bottom:238.266667pt;}
.y1e{bottom:271.066667pt;}
.y22{bottom:300.866667pt;}
.y21{bottom:330.306667pt;}
.y1a{bottom:363.266667pt;}
.y46{bottom:370.146667pt;}
.y45{bottom:385.826667pt;}
.y1d{bottom:392.866667pt;}
.y44{bottom:415.906667pt;}
.y1c{bottom:422.306667pt;}
.y43{bottom:445.346667pt;}
.y12{bottom:455.266667pt;}
.y42{bottom:474.626667pt;}
.y18{bottom:484.546667pt;}
.y41{bottom:507.266667pt;}
.y15{bottom:513.986667pt;}
.y10{bottom:546.653333pt;}
.y40{bottom:554.653333pt;}
.y3f{bottom:585.533333pt;}
.yf{bottom:594.173333pt;}
.y3b{bottom:600.573333pt;}
.ye{bottom:619.613333pt;}
.y3e{bottom:630.813333pt;}
.yd{bottom:646.013333pt;}
.y3d{bottom:660.253333pt;}
.yc{bottom:675.933333pt;}
.y37{bottom:693.053333pt;}
.yb{bottom:694.973333pt;}
.ya{bottom:714.013333pt;}
.y3a{bottom:722.813333pt;}
.y9{bottom:744.093333pt;}
.y39{bottom:752.253333pt;}
.y8{bottom:775.013333pt;}
.y33{bottom:785.093333pt;}
.y7{bottom:807.813333pt;}
.y36{bottom:814.693333pt;}
.y6{bottom:835.013333pt;}
.y35{bottom:844.133333pt;}
.y5{bottom:862.533333pt;}
.y2f{bottom:876.933333pt;}
.y4{bottom:898.053333pt;}
.y32{bottom:906.373333pt;}
.y3{bottom:932.133333pt;}
.y31{bottom:935.653333pt;}
.y2{bottom:966.213333pt;}
.y2e{bottom:968.293333pt;}
.y1{bottom:1007.653333pt;}
.y2d{bottom:1015.680000pt;}
.hd{height:29.280000pt;}
.hb{height:29.440000pt;}
.h10{height:29.600000pt;}
.h1f{height:29.760000pt;}
.h12{height:29.792000pt;}
.h21{height:30.080000pt;}
.h15{height:30.240000pt;}
.h5{height:31.427187pt;}
.h1b{height:32.000000pt;}
.ha{height:32.032000pt;}
.h14{height:32.160000pt;}
.h1e{height:32.192000pt;}
.hf{height:32.320000pt;}
.h8{height:32.480000pt;}
.h20{height:32.512000pt;}
.h17{height:34.734375pt;}
.h18{height:35.179688pt;}
.h7{height:38.439375pt;}
.h4{height:38.776563pt;}
.hc{height:38.932188pt;}
.h16{height:40.453125pt;}
.h6{height:40.755000pt;}
.h19{height:44.730000pt;}
.h2{height:65.763750pt;}
.h3{height:70.078125pt;}
.h1a{height:90.720000pt;}
.h9{height:90.752000pt;}
.h1c{height:91.200000pt;}
.he{height:91.360000pt;}
.h1d{height:91.392000pt;}
.h11{height:91.552000pt;}
.h13{height:91.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:61.600000pt;}
.wa{width:61.760000pt;}
.w3{width:61.920000pt;}
.w11{width:64.672000pt;}
.w12{width:68.640000pt;}
.w4{width:68.832000pt;}
.wb{width:68.992000pt;}
.w9{width:69.120000pt;}
.w8{width:72.512000pt;}
.w7{width:72.800000pt;}
.w10{width:84.320000pt;}
.w6{width:84.832000pt;}
.wd{width:84.992000pt;}
.wc{width:86.720000pt;}
.wf{width:86.752000pt;}
.w5{width:86.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:8.160000pt;}
.x13{left:10.080000pt;}
.x18{left:12.160000pt;}
.x19{left:13.120000pt;}
.x16{left:14.880000pt;}
.x11{left:16.480000pt;}
.x17{left:17.600000pt;}
.x1a{left:18.720000pt;}
.x15{left:20.000000pt;}
.x1d{left:22.080000pt;}
.x1f{left:23.200000pt;}
.x25{left:24.960000pt;}
.x20{left:48.800000pt;}
.x1c{left:50.880000pt;}
.x1e{left:55.200000pt;}
.x1b{left:57.280000pt;}
.x8{left:96.031988pt;}
.x9{left:96.991988pt;}
.x21{left:101.471988pt;}
.x7{left:113.311988pt;}
.x26{left:119.071988pt;}
.x22{left:120.191988pt;}
.x3{left:132.351988pt;}
.xb{left:138.426667pt;}
.x2{left:156.666655pt;}
.x5{left:169.626655pt;}
.xa{left:171.226655pt;}
.x28{left:179.386667pt;}
.x24{left:195.226655pt;}
.xd{left:200.346667pt;}
.x6{left:225.306655pt;}
.x29{left:240.986667pt;}
.x4{left:247.586655pt;}
.x27{left:252.546655pt;}
.x1{left:262.626655pt;}
.xe{left:269.186667pt;}
.x2a{left:327.746667pt;}
.xf{left:356.066667pt;}
.x23{left:393.346655pt;}
.x2b{left:412.066667pt;}
.x10{left:440.893333pt;}
.x2c{left:476.733333pt;}
.x12{left:513.693333pt;}
.x2d{left:545.373333pt;}
.x14{left:586.213333pt;}
}




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