
    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_ac3d54fef2d94f76a38a888f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_39c2cc0cd89c4ccda72b6ad5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136230;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_45b7eb86fc0ad32414b0b6ea.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb6402ec6fb2ca34a792d7e7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_931023d3ff7b9d31b9f7176b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_76e6423d1ba0991146ebcfde.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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);}
.v1{vertical-align:-70.680000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.513600px;}
.ls7{letter-spacing:7.380000px;}
.ls6{letter-spacing:7.560000px;}
.lsa{letter-spacing:31.602720px;}
.lsb{letter-spacing:31.626720px;}
.ls0{letter-spacing:954.480000px;}
.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;}
}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.479800px;}
.ws5{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-3.466080px;}
._7{margin-left:-2.330640px;}
._3{margin-left:-1.075680px;}
._1{width:1.015920px;}
._2{width:2.031840px;}
._4{width:3.255360px;}
._5{width:4.274400px;}
._6{width:6.095520px;}
._8{width:7.111440px;}
._9{width:8.124240px;}
._b{width:9.203040px;}
._a{width:10.458000px;}
._c{width:11.593440px;}
._f{width:13.625280px;}
._16{width:16.194960px;}
._14{width:17.928000px;}
._10{width:19.362240px;}
._13{width:21.390960px;}
._19{width:22.621920px;}
._12{width:23.844240px;}
._11{width:25.398000px;}
._15{width:26.832240px;}
._1a{width:49.780080px;}
._18{width:100.576080px;}
._17{width:849.360000px;}
._0{width:1732.050240px;}
._e{width:1733.318160px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y43{bottom:88.200000px;}
.y71{bottom:92.700000px;}
.y42{bottom:103.680000px;}
.y41{bottom:108.180000px;}
.y40{bottom:119.160000px;}
.y5f{bottom:123.660000px;}
.y3f{bottom:134.820000px;}
.y3e{bottom:139.320000px;}
.y5e{bottom:150.300000px;}
.y3d{bottom:150.660000px;}
.y5d{bottom:165.810000px;}
.y5c{bottom:170.310000px;}
.y3c{bottom:174.270000px;}
.y5b{bottom:181.290000px;}
.y66{bottom:185.790000px;}
.y3b{bottom:191.370000px;}
.y5a{bottom:196.950000px;}
.y3a{bottom:208.650000px;}
.y59{bottom:212.430000px;}
.y58{bottom:216.930000px;}
.y39{bottom:225.930000px;}
.y57{bottom:227.910000px;}
.y65{bottom:232.410000px;}
.y38{bottom:243.210000px;}
.y56{bottom:243.390000px;}
.y6a{bottom:243.750000px;}
.y55{bottom:247.890000px;}
.y54{bottom:259.050000px;}
.y37{bottom:260.490000px;}
.y48{bottom:265.710000px;}
.y53{bottom:274.530000px;}
.y36{bottom:277.770000px;}
.y52{bottom:279.030000px;}
.y51{bottom:290.370000px;}
.y35{bottom:294.870000px;}
.y70{bottom:311.790000px;}
.y34{bottom:312.150000px;}
.y6f{bottom:329.070000px;}
.y33{bottom:329.430000px;}
.y32{bottom:346.710000px;}
.y64{bottom:351.930000px;}
.y30{bottom:363.990000px;}
.y31{bottom:369.210000px;}
.y2f{bottom:381.090000px;}
.y6e{bottom:386.310000px;}
.y2e{bottom:398.370000px;}
.y47{bottom:403.590000px;}
.y2d{bottom:415.695000px;}
.y2c{bottom:432.975000px;}
.y2b{bottom:450.255000px;}
.y2a{bottom:467.535000px;}
.y29{bottom:484.635000px;}
.y69{bottom:489.855000px;}
.y28{bottom:501.915000px;}
.y27{bottom:519.195000px;}
.y46{bottom:524.415000px;}
.y26{bottom:536.475000px;}
.y6d{bottom:541.695000px;}
.y25{bottom:553.755000px;}
.y63{bottom:558.975000px;}
.y24{bottom:571.035000px;}
.y23{bottom:588.135000px;}
.y22{bottom:605.415000px;}
.y21{bottom:622.335000px;}
.y45{bottom:622.695000px;}
.y20{bottom:639.615000px;}
.y44{bottom:639.975000px;}
.y1f{bottom:656.925000px;}
.y50{bottom:657.285000px;}
.y1e{bottom:674.385000px;}
.y4f{bottom:679.605000px;}
.y1d{bottom:691.665000px;}
.y62{bottom:696.885000px;}
.y1c{bottom:708.945000px;}
.y1b{bottom:726.225000px;}
.y68{bottom:731.445000px;}
.y1a{bottom:743.505000px;}
.y19{bottom:760.785000px;}
.y67{bottom:766.005000px;}
.y18{bottom:777.885000px;}
.y17{bottom:795.165000px;}
.y61{bottom:800.385000px;}
.y16{bottom:812.445000px;}
.y15{bottom:829.725000px;}
.y14{bottom:847.005000px;}
.y13{bottom:864.285000px;}
.y12{bottom:881.385000px;}
.y11{bottom:898.710000px;}
.y4e{bottom:903.930000px;}
.y72{bottom:915.630000px;}
.y10{bottom:915.990000px;}
.yf{bottom:933.270000px;}
.ye{bottom:950.550000px;}
.y6c{bottom:955.770000px;}
.yd{bottom:967.830000px;}
.yc{bottom:984.930000px;}
.yb{bottom:1002.210000px;}
.ya{bottom:1019.490000px;}
.y60{bottom:1024.710000px;}
.y9{bottom:1036.770000px;}
.y4d{bottom:1041.990000px;}
.y8{bottom:1053.690000px;}
.y4c{bottom:1054.050000px;}
.y7{bottom:1071.150000px;}
.y4b{bottom:1076.370000px;}
.y6{bottom:1088.430000px;}
.y5{bottom:1105.710000px;}
.y4{bottom:1122.990000px;}
.y4a{bottom:1140.270000px;}
.y3{bottom:1157.580000px;}
.y2{bottom:1174.320000px;}
.y49{bottom:1174.680000px;}
.y6b{bottom:1179.900000px;}
.y1{bottom:1195.380000px;}
.h7{height:35.332031px;}
.h6{height:38.158594px;}
.h9{height:39.183750px;}
.hb{height:47.592773px;}
.ha{height:52.669336px;}
.h8{height:52.998047px;}
.h5{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.hc{height:61.423863px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.xb{left:115.415987px;}
.x15{left:123.155973px;}
.x1b{left:131.435973px;}
.x16{left:132.875987px;}
.x7{left:136.115987px;}
.x1c{left:141.155987px;}
.x8{left:143.855973px;}
.x9{left:153.569987px;}
.x26{left:161.849973px;}
.x27{left:171.569987px;}
.x2{left:240.689987px;}
.x19{left:241.769973px;}
.x17{left:246.449973px;}
.x38{left:248.429987px;}
.x1a{left:251.489987px;}
.x18{left:256.169987px;}
.x2a{left:259.049973px;}
.x4{left:263.909987px;}
.x2b{left:268.769987px;}
.x28{left:311.294973px;}
.x29{left:321.014987px;}
.xa{left:352.154987px;}
.x2c{left:379.334973px;}
.x2d{left:389.054987px;}
.xc{left:457.274987px;}
.x3{left:461.414987px;}
.x14{left:466.274987px;}
.xd{left:487.004987px;}
.x5{left:537.944987px;}
.x10{left:565.124973px;}
.x36{left:566.204973px;}
.x11{left:574.844987px;}
.x37{left:575.924987px;}
.x1f{left:584.924987px;}
.x24{left:600.944973px;}
.x25{left:610.664987px;}
.x1d{left:637.664973px;}
.x1e{left:647.384987px;}
.x34{left:654.944973px;}
.x20{left:660.704973px;}
.x35{left:664.664987px;}
.x21{left:670.469987px;}
.x12{left:704.849973px;}
.x22{left:706.829973px;}
.x13{left:714.569987px;}
.x23{left:716.549987px;}
.x2e{left:734.369973px;}
.x32{left:739.409973px;}
.x2f{left:744.089987px;}
.xe{left:747.689973px;}
.x33{left:749.129987px;}
.xf{left:757.409987px;}
.x30{left:773.429973px;}
.x31{left:783.149987px;}
.x6{left:786.749987px;}
@media print{
.v1{vertical-align:-62.826667pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.456533pt;}
.ls7{letter-spacing:6.560000pt;}
.ls6{letter-spacing:6.720000pt;}
.lsa{letter-spacing:28.091307pt;}
.lsb{letter-spacing:28.112640pt;}
.ls0{letter-spacing:848.426667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.320000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-3.080960pt;}
._7{margin-left:-2.071680pt;}
._3{margin-left:-0.956160pt;}
._1{width:0.903040pt;}
._2{width:1.806080pt;}
._4{width:2.893653pt;}
._5{width:3.799467pt;}
._6{width:5.418240pt;}
._8{width:6.321280pt;}
._9{width:7.221547pt;}
._b{width:8.180480pt;}
._a{width:9.296000pt;}
._c{width:10.305280pt;}
._f{width:12.111360pt;}
._16{width:14.395520pt;}
._14{width:15.936000pt;}
._10{width:17.210880pt;}
._13{width:19.014187pt;}
._19{width:20.108373pt;}
._12{width:21.194880pt;}
._11{width:22.576000pt;}
._15{width:23.850880pt;}
._1a{width:44.248960pt;}
._18{width:89.400960pt;}
._17{width:754.986667pt;}
._0{width:1539.600213pt;}
._e{width:1540.727253pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:78.400000pt;}
.y71{bottom:82.400000pt;}
.y42{bottom:92.160000pt;}
.y41{bottom:96.160000pt;}
.y40{bottom:105.920000pt;}
.y5f{bottom:109.920000pt;}
.y3f{bottom:119.840000pt;}
.y3e{bottom:123.840000pt;}
.y5e{bottom:133.600000pt;}
.y3d{bottom:133.920000pt;}
.y5d{bottom:147.386667pt;}
.y5c{bottom:151.386667pt;}
.y3c{bottom:154.906667pt;}
.y5b{bottom:161.146667pt;}
.y66{bottom:165.146667pt;}
.y3b{bottom:170.106667pt;}
.y5a{bottom:175.066667pt;}
.y3a{bottom:185.466667pt;}
.y59{bottom:188.826667pt;}
.y58{bottom:192.826667pt;}
.y39{bottom:200.826667pt;}
.y57{bottom:202.586667pt;}
.y65{bottom:206.586667pt;}
.y38{bottom:216.186667pt;}
.y56{bottom:216.346667pt;}
.y6a{bottom:216.666667pt;}
.y55{bottom:220.346667pt;}
.y54{bottom:230.266667pt;}
.y37{bottom:231.546667pt;}
.y48{bottom:236.186667pt;}
.y53{bottom:244.026667pt;}
.y36{bottom:246.906667pt;}
.y52{bottom:248.026667pt;}
.y51{bottom:258.106667pt;}
.y35{bottom:262.106667pt;}
.y70{bottom:277.146667pt;}
.y34{bottom:277.466667pt;}
.y6f{bottom:292.506667pt;}
.y33{bottom:292.826667pt;}
.y32{bottom:308.186667pt;}
.y64{bottom:312.826667pt;}
.y30{bottom:323.546667pt;}
.y31{bottom:328.186667pt;}
.y2f{bottom:338.746667pt;}
.y6e{bottom:343.386667pt;}
.y2e{bottom:354.106667pt;}
.y47{bottom:358.746667pt;}
.y2d{bottom:369.506667pt;}
.y2c{bottom:384.866667pt;}
.y2b{bottom:400.226667pt;}
.y2a{bottom:415.586667pt;}
.y29{bottom:430.786667pt;}
.y69{bottom:435.426667pt;}
.y28{bottom:446.146667pt;}
.y27{bottom:461.506667pt;}
.y46{bottom:466.146667pt;}
.y26{bottom:476.866667pt;}
.y6d{bottom:481.506667pt;}
.y25{bottom:492.226667pt;}
.y63{bottom:496.866667pt;}
.y24{bottom:507.586667pt;}
.y23{bottom:522.786667pt;}
.y22{bottom:538.146667pt;}
.y21{bottom:553.186667pt;}
.y45{bottom:553.506667pt;}
.y20{bottom:568.546667pt;}
.y44{bottom:568.866667pt;}
.y1f{bottom:583.933333pt;}
.y50{bottom:584.253333pt;}
.y1e{bottom:599.453333pt;}
.y4f{bottom:604.093333pt;}
.y1d{bottom:614.813333pt;}
.y62{bottom:619.453333pt;}
.y1c{bottom:630.173333pt;}
.y1b{bottom:645.533333pt;}
.y68{bottom:650.173333pt;}
.y1a{bottom:660.893333pt;}
.y19{bottom:676.253333pt;}
.y67{bottom:680.893333pt;}
.y18{bottom:691.453333pt;}
.y17{bottom:706.813333pt;}
.y61{bottom:711.453333pt;}
.y16{bottom:722.173333pt;}
.y15{bottom:737.533333pt;}
.y14{bottom:752.893333pt;}
.y13{bottom:768.253333pt;}
.y12{bottom:783.453333pt;}
.y11{bottom:798.853333pt;}
.y4e{bottom:803.493333pt;}
.y72{bottom:813.893333pt;}
.y10{bottom:814.213333pt;}
.yf{bottom:829.573333pt;}
.ye{bottom:844.933333pt;}
.y6c{bottom:849.573333pt;}
.yd{bottom:860.293333pt;}
.yc{bottom:875.493333pt;}
.yb{bottom:890.853333pt;}
.ya{bottom:906.213333pt;}
.y60{bottom:910.853333pt;}
.y9{bottom:921.573333pt;}
.y4d{bottom:926.213333pt;}
.y8{bottom:936.613333pt;}
.y4c{bottom:936.933333pt;}
.y7{bottom:952.133333pt;}
.y4b{bottom:956.773333pt;}
.y6{bottom:967.493333pt;}
.y5{bottom:982.853333pt;}
.y4{bottom:998.213333pt;}
.y4a{bottom:1013.573333pt;}
.y3{bottom:1028.960000pt;}
.y2{bottom:1043.840000pt;}
.y49{bottom:1044.160000pt;}
.y6b{bottom:1048.800000pt;}
.y1{bottom:1062.560000pt;}
.h7{height:31.406250pt;}
.h6{height:33.918750pt;}
.h9{height:34.830000pt;}
.hb{height:42.304688pt;}
.ha{height:46.817187pt;}
.h8{height:47.109375pt;}
.h5{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.hc{height:54.598989pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.xb{left:102.591988pt;}
.x15{left:109.471976pt;}
.x1b{left:116.831976pt;}
.x16{left:118.111988pt;}
.x7{left:120.991988pt;}
.x1c{left:125.471988pt;}
.x8{left:127.871976pt;}
.x9{left:136.506655pt;}
.x26{left:143.866643pt;}
.x27{left:152.506655pt;}
.x2{left:213.946655pt;}
.x19{left:214.906643pt;}
.x17{left:219.066643pt;}
.x38{left:220.826655pt;}
.x1a{left:223.546655pt;}
.x18{left:227.706655pt;}
.x2a{left:230.266643pt;}
.x4{left:234.586655pt;}
.x2b{left:238.906655pt;}
.x28{left:276.706643pt;}
.x29{left:285.346655pt;}
.xa{left:313.026655pt;}
.x2c{left:337.186643pt;}
.x2d{left:345.826655pt;}
.xc{left:406.466655pt;}
.x3{left:410.146655pt;}
.x14{left:414.466655pt;}
.xd{left:432.893322pt;}
.x5{left:478.173322pt;}
.x10{left:502.333310pt;}
.x36{left:503.293310pt;}
.x11{left:510.973322pt;}
.x37{left:511.933322pt;}
.x1f{left:519.933322pt;}
.x24{left:534.173310pt;}
.x25{left:542.813322pt;}
.x1d{left:566.813310pt;}
.x1e{left:575.453322pt;}
.x34{left:582.173310pt;}
.x20{left:587.293310pt;}
.x35{left:590.813322pt;}
.x21{left:595.973322pt;}
.x12{left:626.533310pt;}
.x22{left:628.293310pt;}
.x13{left:635.173322pt;}
.x23{left:636.933322pt;}
.x2e{left:652.773310pt;}
.x32{left:657.253310pt;}
.x2f{left:661.413322pt;}
.xe{left:664.613310pt;}
.x33{left:665.893322pt;}
.xf{left:673.253322pt;}
.x30{left:687.493310pt;}
.x31{left:696.133322pt;}
.x6{left:699.333322pt;}
}




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