
    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_bfc0c971055f2c8e5bcfe4e3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e618fda3c159e22e1109d818.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4247052a605f58b97565aab5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_d09f17318fdfd1de41037d6e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_e23c00b09ea391f856d8840a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_bcc285cdac203adf2cfbf697.woff')format("woff");}.ff7{font-family:ff7;line-height:0.769531;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;}
.v1{vertical-align:36.000000px;}
.ls2{letter-spacing:-0.229800px;}
.ls5{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.142560px;}
.ls6{letter-spacing:0.144288px;}
.ls3{letter-spacing:49.233600px;}
.ls4{letter-spacing:49.284000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(241,90,36),0 0.015em rgb(241,90,36),0.015em 0 rgb(241,90,36),0 -0.015em  rgb(241,90,36);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(241,90,36);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-54.218304px;}
.ws7{word-spacing:-43.446240px;}
.ws4{word-spacing:-24.408000px;}
.ws6{word-spacing:-19.070784px;}
.ws3{word-spacing:-19.038240px;}
.ws0{word-spacing:-18.808440px;}
.ws5{word-spacing:-16.613280px;}
.ws8{word-spacing:-0.264240px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-9.516672px;}
._2{margin-left:-7.413120px;}
._7{margin-left:-6.402240px;}
._4{margin-left:-4.555440px;}
._5{margin-left:-3.095856px;}
._0{margin-left:-1.853280px;}
._1{width:1.347840px;}
._8{width:2.358720px;}
._6{width:3.866400px;}
._3{width:55.754400px;}
._9{width:604.905600px;}
.fc8{color:rgb(5,99,193);}
.fc2{color:rgb(241,90,36);}
.fc1{color:transparent;}
.fc7{color:rgb(95,95,95);}
.fc6{color:rgb(247,172,194);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs0{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fsa{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs10{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fse{font-size:137.664000px;}
.fs5{font-size:167.760000px;}
.fs4{font-size:167.904000px;}
.fs8{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs2{font-size:239.760000px;}
.fs3{font-size:239.904000px;}
.fs11{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:21.420000px;}
.y2c{bottom:27.972000px;}
.yb{bottom:28.836000px;}
.y2a{bottom:30.564000px;}
.y2b{bottom:36.828000px;}
.y42{bottom:39.060000px;}
.y29{bottom:62.964000px;}
.y20{bottom:68.976000px;}
.y36{bottom:72.468000px;}
.y3c{bottom:74.592000px;}
.ya{bottom:84.924000px;}
.y28{bottom:86.400000px;}
.y26{bottom:90.324000px;}
.y4c{bottom:93.924000px;}
.y1f{bottom:94.176000px;}
.y35{bottom:106.380000px;}
.y25{bottom:115.524000px;}
.y1e{bottom:119.376000px;}
.y3d{bottom:120.600000px;}
.y47{bottom:135.648000px;}
.y24{bottom:140.724000px;}
.y1d{bottom:144.576000px;}
.y38{bottom:158.505000px;}
.y3b{bottom:165.315000px;}
.y23{bottom:165.960000px;}
.y1c{bottom:169.770000px;}
.y37{bottom:188.895000px;}
.y22{bottom:191.160000px;}
.y1b{bottom:195.015000px;}
.y4b{bottom:214.770000px;}
.y1a{bottom:220.215000px;}
.y31{bottom:221.685000px;}
.y4f{bottom:242.790000px;}
.y19{bottom:245.415000px;}
.y4a{bottom:250.770000px;}
.y34{bottom:257.835000px;}
.y18{bottom:270.615000px;}
.y5{bottom:275.430000px;}
.y41{bottom:279.465000px;}
.y9{bottom:289.830000px;}
.y50{bottom:294.330000px;}
.y46{bottom:295.740000px;}
.y17{bottom:295.815000px;}
.y2f{bottom:298.620000px;}
.y2e{bottom:331.020000px;}
.y4{bottom:338.475000px;}
.y40{bottom:339.585000px;}
.y3a{bottom:339.840000px;}
.y4e{bottom:344.085000px;}
.y16{bottom:345.165000px;}
.y8{bottom:350.130000px;}
.yf{bottom:356.070000px;}
.y32{bottom:369.930000px;}
.y15{bottom:370.365000px;}
.y49{bottom:372.675000px;}
.y4d{bottom:394.950000px;}
.y14{bottom:395.565000px;}
.y3f{bottom:399.705000px;}
.y3{bottom:401.475000px;}
.y30{bottom:405.690000px;}
.y48{bottom:408.705000px;}
.ye{bottom:409.575000px;}
.y7{bottom:410.655000px;}
.y13{bottom:420.810000px;}
.y2d{bottom:441.105000px;}
.y12{bottom:446.010000px;}
.y45{bottom:453.315000px;}
.yd{bottom:463.605000px;}
.y3e{bottom:463.965000px;}
.y11{bottom:471.210000px;}
.y21{bottom:476.025000px;}
.y33{bottom:476.565000px;}
.y2{bottom:488.550000px;}
.y6{bottom:499.785000px;}
.y44{bottom:515.190000px;}
.y1{bottom:520.050000px;}
.yc{bottom:527.790000px;}
.y10{bottom:549.900000px;}
.y27{bottom:554.940000px;}
.y39{bottom:561.060000px;}
.h17{height:43.681992px;}
.h14{height:59.439023px;}
.h9{height:59.582250px;}
.hf{height:63.961523px;}
.h2{height:71.613281px;}
.h8{height:71.756508px;}
.h10{height:83.787539px;}
.h11{height:83.930766px;}
.h1{height:86.255508px;}
.h12{height:86.402953px;}
.hd{height:107.419922px;}
.h15{height:107.563148px;}
.hc{height:110.583984px;}
.hb{height:110.731430px;}
.h19{height:119.594180px;}
.h18{height:119.737406px;}
.h16{height:136.924594px;}
.h13{height:146.731430px;}
.h7{height:166.858945px;}
.h6{height:167.002172px;}
.ha{height:191.207461px;}
.he{height:191.350688px;}
.h1a{height:201.147539px;}
.h5{height:238.615453px;}
.h3{height:245.496445px;}
.h4{height:245.643891px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:47.627984px;}
.xe{left:49.967984px;}
.x9{left:75.707984px;}
.x2{left:85.247984px;}
.xc{left:87.551984px;}
.x3{left:93.887984px;}
.x7{left:115.271984px;}
.x15{left:136.295984px;}
.xb{left:149.867984px;}
.x4{left:187.529984px;}
.x1{left:208.049984px;}
.x8{left:219.389984px;}
.x16{left:231.509984px;}
.x17{left:298.289984px;}
.x13{left:349.379984px;}
.xf{left:361.649984px;}
.x10{left:372.164984px;}
.x12{left:381.059984px;}
.x11{left:383.474984px;}
.x14{left:427.499984px;}
.xd{left:586.334984px;}
.xa{left:731.774984px;}
.x6{left:750.569984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.126720pt;}
.ls6{letter-spacing:0.128256pt;}
.ls3{letter-spacing:43.763200pt;}
.ls4{letter-spacing:43.808000pt;}
.ws2{word-spacing:-48.194048pt;}
.ws7{word-spacing:-38.618880pt;}
.ws4{word-spacing:-21.696000pt;}
.ws6{word-spacing:-16.951808pt;}
.ws3{word-spacing:-16.922880pt;}
.ws0{word-spacing:-16.718613pt;}
.ws5{word-spacing:-14.767360pt;}
.ws8{word-spacing:-0.234880pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-8.459264pt;}
._2{margin-left:-6.589440pt;}
._7{margin-left:-5.690880pt;}
._4{margin-left:-4.049280pt;}
._5{margin-left:-2.751872pt;}
._0{margin-left:-1.647360pt;}
._1{width:1.198080pt;}
._8{width:2.096640pt;}
._6{width:3.436800pt;}
._3{width:49.559467pt;}
._9{width:537.693867pt;}
.fsd{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs0{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fsa{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs10{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fse{font-size:122.368000pt;}
.fs5{font-size:149.120000pt;}
.fs4{font-size:149.248000pt;}
.fs8{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs2{font-size:213.120000pt;}
.fs3{font-size:213.248000pt;}
.fs11{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:19.040000pt;}
.y2c{bottom:24.864000pt;}
.yb{bottom:25.632000pt;}
.y2a{bottom:27.168000pt;}
.y2b{bottom:32.736000pt;}
.y42{bottom:34.720000pt;}
.y29{bottom:55.968000pt;}
.y20{bottom:61.312000pt;}
.y36{bottom:64.416000pt;}
.y3c{bottom:66.304000pt;}
.ya{bottom:75.488000pt;}
.y28{bottom:76.800000pt;}
.y26{bottom:80.288000pt;}
.y4c{bottom:83.488000pt;}
.y1f{bottom:83.712000pt;}
.y35{bottom:94.560000pt;}
.y25{bottom:102.688000pt;}
.y1e{bottom:106.112000pt;}
.y3d{bottom:107.200000pt;}
.y47{bottom:120.576000pt;}
.y24{bottom:125.088000pt;}
.y1d{bottom:128.512000pt;}
.y38{bottom:140.893333pt;}
.y3b{bottom:146.946667pt;}
.y23{bottom:147.520000pt;}
.y1c{bottom:150.906667pt;}
.y37{bottom:167.906667pt;}
.y22{bottom:169.920000pt;}
.y1b{bottom:173.346667pt;}
.y4b{bottom:190.906667pt;}
.y1a{bottom:195.746667pt;}
.y31{bottom:197.053333pt;}
.y4f{bottom:215.813333pt;}
.y19{bottom:218.146667pt;}
.y4a{bottom:222.906667pt;}
.y34{bottom:229.186667pt;}
.y18{bottom:240.546667pt;}
.y5{bottom:244.826667pt;}
.y41{bottom:248.413333pt;}
.y9{bottom:257.626667pt;}
.y50{bottom:261.626667pt;}
.y46{bottom:262.880000pt;}
.y17{bottom:262.946667pt;}
.y2f{bottom:265.440000pt;}
.y2e{bottom:294.240000pt;}
.y4{bottom:300.866667pt;}
.y40{bottom:301.853333pt;}
.y3a{bottom:302.080000pt;}
.y4e{bottom:305.853333pt;}
.y16{bottom:306.813333pt;}
.y8{bottom:311.226667pt;}
.yf{bottom:316.506667pt;}
.y32{bottom:328.826667pt;}
.y15{bottom:329.213333pt;}
.y49{bottom:331.266667pt;}
.y4d{bottom:351.066667pt;}
.y14{bottom:351.613333pt;}
.y3f{bottom:355.293333pt;}
.y3{bottom:356.866667pt;}
.y30{bottom:360.613333pt;}
.y48{bottom:363.293333pt;}
.ye{bottom:364.066667pt;}
.y7{bottom:365.026667pt;}
.y13{bottom:374.053333pt;}
.y2d{bottom:392.093333pt;}
.y12{bottom:396.453333pt;}
.y45{bottom:402.946667pt;}
.yd{bottom:412.093333pt;}
.y3e{bottom:412.413333pt;}
.y11{bottom:418.853333pt;}
.y21{bottom:423.133333pt;}
.y33{bottom:423.613333pt;}
.y2{bottom:434.266667pt;}
.y6{bottom:444.253333pt;}
.y44{bottom:457.946667pt;}
.y1{bottom:462.266667pt;}
.yc{bottom:469.146667pt;}
.y10{bottom:488.800000pt;}
.y27{bottom:493.280000pt;}
.y39{bottom:498.720000pt;}
.h17{height:38.828437pt;}
.h14{height:52.834688pt;}
.h9{height:52.962000pt;}
.hf{height:56.854687pt;}
.h2{height:63.656250pt;}
.h8{height:63.783562pt;}
.h10{height:74.477812pt;}
.h11{height:74.605125pt;}
.h1{height:76.671562pt;}
.h12{height:76.802625pt;}
.hd{height:95.484375pt;}
.h15{height:95.611688pt;}
.hc{height:98.296875pt;}
.hb{height:98.427937pt;}
.h19{height:106.305937pt;}
.h18{height:106.433250pt;}
.h16{height:121.710750pt;}
.h13{height:130.427937pt;}
.h7{height:148.319063pt;}
.h6{height:148.446375pt;}
.ha{height:169.962187pt;}
.he{height:170.089500pt;}
.h1a{height:178.797812pt;}
.h5{height:212.102625pt;}
.h3{height:218.219062pt;}
.h4{height:218.350125pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:42.335986pt;}
.xe{left:44.415986pt;}
.x9{left:67.295986pt;}
.x2{left:75.775986pt;}
.xc{left:77.823986pt;}
.x3{left:83.455986pt;}
.x7{left:102.463986pt;}
.x15{left:121.151986pt;}
.xb{left:133.215986pt;}
.x4{left:166.693319pt;}
.x1{left:184.933319pt;}
.x8{left:195.013319pt;}
.x16{left:205.786652pt;}
.x17{left:265.146652pt;}
.x13{left:310.559986pt;}
.xf{left:321.466652pt;}
.x10{left:330.813319pt;}
.x12{left:338.719986pt;}
.x11{left:340.866652pt;}
.x14{left:379.999986pt;}
.xd{left:521.186652pt;}
.xa{left:650.466652pt;}
.x6{left:667.173319pt;}
}




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