
    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_7c83eb7c3d87765f816c589d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.805176;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_8def0f8d467dbc18487dc028.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_bc1317d9baeed1c65d8efe5f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_9e32c8dcceb503a21747c423.woff')format("woff");}.ff4{font-family:ff4;line-height:0.800781;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_60915bffecd5cb43f04141ea.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_98e1bc6b2e620300a8186d69.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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_1a2c4240b3fd6d9cc8d81ff3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_593f1f598fc5978d905ff2c0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-6.240000px;}
.ls3{letter-spacing:-0.648000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.342000px;}
.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:-36.000000px;}
.ws3{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.352000px;}
.ws6{word-spacing:-15.138000px;}
.ws7{word-spacing:-11.760000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-9.024000px;}
._c{margin-left:-7.824000px;}
._7{margin-left:-6.264000px;}
._9{margin-left:-5.112000px;}
._8{margin-left:-4.032000px;}
._b{margin-left:-2.736000px;}
._0{margin-left:-1.032000px;}
._1{width:1.200000px;}
._2{width:3.024000px;}
._3{width:4.536000px;}
._4{width:5.736000px;}
._6{width:7.752000px;}
._5{width:8.784000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:63.360000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:5.003850px;}
.y6{bottom:5.220000px;}
.y3d{bottom:5.250000px;}
.y30{bottom:5.580000px;}
.y2{bottom:9.360150px;}
.y33{bottom:16.920000px;}
.y3e{bottom:16.950000px;}
.y2d{bottom:17.280000px;}
.y28{bottom:23.400000px;}
.y1{bottom:27.756000px;}
.y32{bottom:28.620000px;}
.y3c{bottom:28.650000px;}
.y44{bottom:28.665000px;}
.y2f{bottom:28.980000px;}
.y4d{bottom:59.940000px;}
.y4c{bottom:83.340000px;}
.y4b{bottom:130.140000px;}
.y1f{bottom:132.696000px;}
.y1e{bottom:156.090000px;}
.y4a{bottom:176.940000px;}
.y1d{bottom:179.490000px;}
.y1c{bottom:202.890000px;}
.y49{bottom:223.740000px;}
.y1b{bottom:226.335000px;}
.y22{bottom:245.235000px;}
.y1a{bottom:249.735000px;}
.y21{bottom:268.635000px;}
.y48{bottom:270.570000px;}
.y19{bottom:273.135000px;}
.y20{bottom:292.035000px;}
.y18{bottom:296.535000px;}
.y17{bottom:315.435000px;}
.y47{bottom:317.370000px;}
.y24{bottom:319.935000px;}
.y16{bottom:338.835000px;}
.y23{bottom:343.335000px;}
.y15{bottom:362.235000px;}
.y46{bottom:364.170000px;}
.y27{bottom:366.735000px;}
.y14{bottom:385.635000px;}
.y26{bottom:390.135000px;}
.y13{bottom:409.065000px;}
.y45{bottom:410.970000px;}
.y25{bottom:413.565000px;}
.y12{bottom:432.465000px;}
.y11{bottom:455.865000px;}
.y43{bottom:457.770000px;}
.y5e{bottom:466.230000px;}
.y10{bottom:479.265000px;}
.y5d{bottom:483.375000px;}
.yf{bottom:502.665000px;}
.y42{bottom:504.615000px;}
.ye{bottom:526.065000px;}
.y5c{bottom:530.175000px;}
.yd{bottom:549.465000px;}
.y41{bottom:551.415000px;}
.yc{bottom:572.865000px;}
.y5b{bottom:576.975000px;}
.yb{bottom:596.265000px;}
.y40{bottom:598.215000px;}
.ya{bottom:619.710000px;}
.y5a{bottom:623.775000px;}
.y9{bottom:643.110000px;}
.y3f{bottom:645.015000px;}
.y8{bottom:666.510000px;}
.y59{bottom:670.575000px;}
.y7{bottom:689.910000px;}
.y3b{bottom:691.815000px;}
.y5{bottom:714.030000px;}
.y58{bottom:717.405000px;}
.y3a{bottom:738.645000px;}
.y4{bottom:743.370000px;}
.y57{bottom:764.205000px;}
.y3{bottom:766.770000px;}
.y39{bottom:785.445000px;}
.y56{bottom:811.005000px;}
.y38{bottom:832.245000px;}
.y55{bottom:857.805000px;}
.y37{bottom:879.045000px;}
.y54{bottom:904.605000px;}
.y36{bottom:925.890000px;}
.y53{bottom:951.450000px;}
.y35{bottom:972.690000px;}
.y52{bottom:998.250000px;}
.y34{bottom:1019.490000px;}
.y51{bottom:1045.050000px;}
.y31{bottom:1066.290000px;}
.y50{bottom:1091.850000px;}
.y2c{bottom:1113.810000px;}
.y2e{bottom:1137.930000px;}
.y4f{bottom:1138.650000px;}
.y2b{bottom:1167.300000px;}
.y4e{bottom:1185.480000px;}
.y2a{bottom:1190.700000px;}
.h5{height:23.400000px;}
.h6{height:23.436000px;}
.h2{height:40.842773px;}
.hc{height:46.800000px;}
.he{height:46.836000px;}
.ha{height:47.556000px;}
.hf{height:47.922187px;}
.hb{height:50.800781px;}
.h9{height:59.343750px;}
.hd{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h7{height:1262.880000px;}
.h8{height:1263.000000px;}
.w1a{width:61.236000px;}
.w1f{width:69.300000px;}
.w1e{width:85.680000px;}
.w1c{width:98.280000px;}
.w20{width:117.540000px;}
.w22{width:117.576000px;}
.w21{width:117.756000px;}
.w4{width:167.970000px;}
.w3{width:184.680000px;}
.w9{width:184.860000px;}
.w11{width:194.580000px;}
.wf{width:194.760000px;}
.w6{width:201.960000px;}
.w14{width:204.120000px;}
.wc{width:204.480000px;}
.w1b{width:235.290000px;}
.w1d{width:235.335000px;}
.w7{width:244.695000px;}
.wa{width:246.315000px;}
.w12{width:247.395000px;}
.wd{width:257.295000px;}
.w15{width:277.275000px;}
.w16{width:511.635000px;}
.we{width:531.255000px;}
.w8{width:542.235000px;}
.w13{width:551.055000px;}
.w10{width:551.955000px;}
.wb{width:561.855000px;}
.w5{width:640.365000px;}
.w19{width:892.979987px;}
.w17{width:892.980000px;}
.w18{width:893.250000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x2a{left:9.360000px;}
.x2c{left:10.800000px;}
.x25{left:13.140000px;}
.x2b{left:14.400000px;}
.x2d{left:15.840000px;}
.x13{left:22.680000px;}
.x27{left:26.100000px;}
.x23{left:27.360000px;}
.x28{left:31.140000px;}
.x24{left:32.400000px;}
.x29{left:36.540000px;}
.x22{left:37.620000px;}
.x26{left:41.220000px;}
.x17{left:43.560000px;}
.x18{left:45.540000px;}
.x20{left:49.140000px;}
.x21{left:50.400000px;}
.xf{left:53.999987px;}
.x1e{left:63.405000px;}
.x1a{left:66.774000px;}
.x1f{left:68.445000px;}
.x1d{left:81.354000px;}
.x11{left:86.574000px;}
.x1c{left:90.045000px;}
.x15{left:92.190000px;}
.x10{left:115.236000px;}
.x2{left:135.035981px;}
.x1b{left:232.770000px;}
.x4{left:319.710000px;}
.xb{left:329.790000px;}
.x6{left:336.990000px;}
.x9{left:339.510000px;}
.x12{left:350.535000px;}
.xe{left:439.454987px;}
.x14{left:448.815000px;}
.x5{left:487.695000px;}
.x8{left:566.205000px;}
.xc{left:576.105000px;}
.x7{left:581.685000px;}
.xa{left:596.805000px;}
.xd{left:616.425000px;}
.x1{left:627.944981px;}
.x16{left:684.150000px;}
.x19{left:769.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-5.546667pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.304000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws6{word-spacing:-13.456000pt;}
.ws7{word-spacing:-10.453333pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-8.021333pt;}
._c{margin-left:-6.954667pt;}
._7{margin-left:-5.568000pt;}
._9{margin-left:-4.544000pt;}
._8{margin-left:-3.584000pt;}
._b{margin-left:-2.432000pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.066667pt;}
._2{width:2.688000pt;}
._3{width:4.032000pt;}
._4{width:5.098667pt;}
._6{width:6.890667pt;}
._5{width:7.808000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:56.320000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:4.447867pt;}
.y6{bottom:4.640000pt;}
.y3d{bottom:4.666667pt;}
.y30{bottom:4.960000pt;}
.y2{bottom:8.320133pt;}
.y33{bottom:15.040000pt;}
.y3e{bottom:15.066667pt;}
.y2d{bottom:15.360000pt;}
.y28{bottom:20.800000pt;}
.y1{bottom:24.672000pt;}
.y32{bottom:25.440000pt;}
.y3c{bottom:25.466667pt;}
.y44{bottom:25.480000pt;}
.y2f{bottom:25.760000pt;}
.y4d{bottom:53.280000pt;}
.y4c{bottom:74.080000pt;}
.y4b{bottom:115.680000pt;}
.y1f{bottom:117.952000pt;}
.y1e{bottom:138.746667pt;}
.y4a{bottom:157.280000pt;}
.y1d{bottom:159.546667pt;}
.y1c{bottom:180.346667pt;}
.y49{bottom:198.880000pt;}
.y1b{bottom:201.186667pt;}
.y22{bottom:217.986667pt;}
.y1a{bottom:221.986667pt;}
.y21{bottom:238.786667pt;}
.y48{bottom:240.506667pt;}
.y19{bottom:242.786667pt;}
.y20{bottom:259.586667pt;}
.y18{bottom:263.586667pt;}
.y17{bottom:280.386667pt;}
.y47{bottom:282.106667pt;}
.y24{bottom:284.386667pt;}
.y16{bottom:301.186667pt;}
.y23{bottom:305.186667pt;}
.y15{bottom:321.986667pt;}
.y46{bottom:323.706667pt;}
.y27{bottom:325.986667pt;}
.y14{bottom:342.786667pt;}
.y26{bottom:346.786667pt;}
.y13{bottom:363.613333pt;}
.y45{bottom:365.306667pt;}
.y25{bottom:367.613333pt;}
.y12{bottom:384.413333pt;}
.y11{bottom:405.213333pt;}
.y43{bottom:406.906667pt;}
.y5e{bottom:414.426667pt;}
.y10{bottom:426.013333pt;}
.y5d{bottom:429.666667pt;}
.yf{bottom:446.813333pt;}
.y42{bottom:448.546667pt;}
.ye{bottom:467.613333pt;}
.y5c{bottom:471.266667pt;}
.yd{bottom:488.413333pt;}
.y41{bottom:490.146667pt;}
.yc{bottom:509.213333pt;}
.y5b{bottom:512.866667pt;}
.yb{bottom:530.013333pt;}
.y40{bottom:531.746667pt;}
.ya{bottom:550.853333pt;}
.y5a{bottom:554.466667pt;}
.y9{bottom:571.653333pt;}
.y3f{bottom:573.346667pt;}
.y8{bottom:592.453333pt;}
.y59{bottom:596.066667pt;}
.y7{bottom:613.253333pt;}
.y3b{bottom:614.946667pt;}
.y5{bottom:634.693333pt;}
.y58{bottom:637.693333pt;}
.y3a{bottom:656.573333pt;}
.y4{bottom:660.773333pt;}
.y57{bottom:679.293333pt;}
.y3{bottom:681.573333pt;}
.y39{bottom:698.173333pt;}
.y56{bottom:720.893333pt;}
.y38{bottom:739.773333pt;}
.y55{bottom:762.493333pt;}
.y37{bottom:781.373333pt;}
.y54{bottom:804.093333pt;}
.y36{bottom:823.013333pt;}
.y53{bottom:845.733333pt;}
.y35{bottom:864.613333pt;}
.y52{bottom:887.333333pt;}
.y34{bottom:906.213333pt;}
.y51{bottom:928.933333pt;}
.y31{bottom:947.813333pt;}
.y50{bottom:970.533333pt;}
.y2c{bottom:990.053333pt;}
.y2e{bottom:1011.493333pt;}
.y4f{bottom:1012.133333pt;}
.y2b{bottom:1037.600000pt;}
.y4e{bottom:1053.760000pt;}
.y2a{bottom:1058.400000pt;}
.h5{height:20.800000pt;}
.h6{height:20.832000pt;}
.h2{height:36.304688pt;}
.hc{height:41.600000pt;}
.he{height:41.632000pt;}
.ha{height:42.272000pt;}
.hf{height:42.597500pt;}
.hb{height:45.156250pt;}
.h9{height:52.750000pt;}
.hd{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h7{height:1122.560000pt;}
.h8{height:1122.666667pt;}
.w1a{width:54.432000pt;}
.w1f{width:61.600000pt;}
.w1e{width:76.160000pt;}
.w1c{width:87.360000pt;}
.w20{width:104.480000pt;}
.w22{width:104.512000pt;}
.w21{width:104.672000pt;}
.w4{width:149.306667pt;}
.w3{width:164.160000pt;}
.w9{width:164.320000pt;}
.w11{width:172.960000pt;}
.wf{width:173.120000pt;}
.w6{width:179.520000pt;}
.w14{width:181.440000pt;}
.wc{width:181.760000pt;}
.w1b{width:209.146667pt;}
.w1d{width:209.186667pt;}
.w7{width:217.506667pt;}
.wa{width:218.946667pt;}
.w12{width:219.906667pt;}
.wd{width:228.706667pt;}
.w15{width:246.466667pt;}
.w16{width:454.786667pt;}
.we{width:472.226667pt;}
.w8{width:481.986667pt;}
.w13{width:489.826667pt;}
.w10{width:490.626667pt;}
.wb{width:499.426667pt;}
.w5{width:569.213333pt;}
.w19{width:793.759988pt;}
.w17{width:793.760000pt;}
.w18{width:794.000000pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x2a{left:8.320000pt;}
.x2c{left:9.600000pt;}
.x25{left:11.680000pt;}
.x2b{left:12.800000pt;}
.x2d{left:14.080000pt;}
.x13{left:20.160000pt;}
.x27{left:23.200000pt;}
.x23{left:24.320000pt;}
.x28{left:27.680000pt;}
.x24{left:28.800000pt;}
.x29{left:32.480000pt;}
.x22{left:33.440000pt;}
.x26{left:36.640000pt;}
.x17{left:38.720000pt;}
.x18{left:40.480000pt;}
.x20{left:43.680000pt;}
.x21{left:44.800000pt;}
.xf{left:47.999988pt;}
.x1e{left:56.360000pt;}
.x1a{left:59.354667pt;}
.x1f{left:60.840000pt;}
.x1d{left:72.314667pt;}
.x11{left:76.954667pt;}
.x1c{left:80.040000pt;}
.x15{left:81.946667pt;}
.x10{left:102.432000pt;}
.x2{left:120.031983pt;}
.x1b{left:206.906667pt;}
.x4{left:284.186667pt;}
.xb{left:293.146667pt;}
.x6{left:299.546667pt;}
.x9{left:301.786667pt;}
.x12{left:311.586667pt;}
.xe{left:390.626655pt;}
.x14{left:398.946667pt;}
.x5{left:433.506667pt;}
.x8{left:503.293333pt;}
.xc{left:512.093333pt;}
.x7{left:517.053333pt;}
.xa{left:530.493333pt;}
.xd{left:547.933333pt;}
.x1{left:558.173317pt;}
.x16{left:608.133333pt;}
.x19{left:684.293333pt;}
}




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