
    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_a9a6b54a5a0d5b7560e56dbb.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_97c0869f3f8a693a54f705ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_bdbffabbe8c44a1cb6bfc41e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_012694690586f541dbac5f1f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_1ebeefce8cc1f1d8dcc948ab.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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;}
.ls4{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.720000px;}
.ls0{letter-spacing:198.000000px;}
.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;}
}
.ws3{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-4.536000px;}
._9{margin-left:-3.216000px;}
._d{margin-left:-2.124000px;}
._0{margin-left:-1.080000px;}
._1{width:1.488000px;}
._3{width:2.952000px;}
._10{width:3.960000px;}
._a{width:5.832000px;}
._b{width:6.840000px;}
._13{width:8.496000px;}
._4{width:10.080000px;}
._5{width:11.376000px;}
._c{width:13.176000px;}
._14{width:14.760000px;}
._19{width:15.768000px;}
._15{width:16.776000px;}
._e{width:19.728000px;}
._f{width:20.880000px;}
._6{width:22.032000px;}
._7{width:23.112000px;}
._1a{width:24.336000px;}
._18{width:25.488000px;}
._17{width:26.568000px;}
._16{width:27.936000px;}
._1d{width:29.952000px;}
._11{width:32.256000px;}
._12{width:33.348000px;}
._1b{width:35.124000px;}
._2{width:36.792000px;}
._1e{width:37.944000px;}
._1f{width:42.408000px;}
._20{width:43.632000px;}
._25{width:45.144000px;}
._1c{width:47.592000px;}
._21{width:49.176000px;}
._24{width:78.048000px;}
._27{width:85.104000px;}
._28{width:86.352000px;}
._26{width:93.312000px;}
._23{width:114.048000px;}
._29{width:144.288000px;}
._2a{width:230.256000px;}
._22{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y88{bottom:99.396000px;}
.y77{bottom:101.196000px;}
.y57{bottom:111.636000px;}
.y2f{bottom:112.176000px;}
.y76{bottom:121.896000px;}
.y56{bottom:132.156000px;}
.y2e{bottom:132.876000px;}
.y75{bottom:142.596000px;}
.y55{bottom:152.850000px;}
.y2d{bottom:153.570000px;}
.y74{bottom:163.290000px;}
.y54{bottom:173.550000px;}
.y2c{bottom:174.270000px;}
.y86{bottom:182.010000px;}
.y73{bottom:183.990000px;}
.y53{bottom:194.250000px;}
.y2b{bottom:194.970000px;}
.y72{bottom:204.690000px;}
.y52{bottom:214.950000px;}
.y2a{bottom:215.670000px;}
.y71{bottom:225.390000px;}
.y51{bottom:235.650000px;}
.y29{bottom:236.370000px;}
.y70{bottom:246.090000px;}
.y50{bottom:256.350000px;}
.y28{bottom:257.070000px;}
.y6f{bottom:266.790000px;}
.y4f{bottom:277.050000px;}
.y27{bottom:277.770000px;}
.y6e{bottom:287.490000px;}
.y26{bottom:296.535000px;}
.y4e{bottom:297.795000px;}
.y6d{bottom:308.235000px;}
.y25{bottom:308.775000px;}
.y79{bottom:316.695000px;}
.y4d{bottom:318.495000px;}
.y6c{bottom:328.935000px;}
.y24{bottom:329.475000px;}
.y4c{bottom:339.195000px;}
.y6b{bottom:349.635000px;}
.y23{bottom:350.175000px;}
.y4b{bottom:359.895000px;}
.y6a{bottom:370.335000px;}
.y22{bottom:370.875000px;}
.y4a{bottom:380.595000px;}
.y69{bottom:391.035000px;}
.y21{bottom:391.575000px;}
.y49{bottom:401.295000px;}
.y68{bottom:411.735000px;}
.y20{bottom:412.275000px;}
.y48{bottom:421.995000px;}
.y67{bottom:432.435000px;}
.y1f{bottom:432.975000px;}
.y7b{bottom:440.895000px;}
.y47{bottom:442.695000px;}
.y66{bottom:453.135000px;}
.y1e{bottom:453.675000px;}
.y87{bottom:461.595000px;}
.y46{bottom:463.395000px;}
.y65{bottom:473.835000px;}
.y1d{bottom:474.375000px;}
.y45{bottom:484.095000px;}
.y64{bottom:494.535000px;}
.y1c{bottom:495.075000px;}
.y44{bottom:504.795000px;}
.y63{bottom:515.235000px;}
.y1b{bottom:515.775000px;}
.y85{bottom:523.725000px;}
.y43{bottom:525.525000px;}
.y78{bottom:533.985000px;}
.y62{bottom:535.965000px;}
.y1a{bottom:536.505000px;}
.y42{bottom:546.225000px;}
.y61{bottom:556.665000px;}
.y19{bottom:557.205000px;}
.y41{bottom:566.925000px;}
.y60{bottom:577.365000px;}
.y18{bottom:577.905000px;}
.y40{bottom:587.625000px;}
.y5f{bottom:598.065000px;}
.y17{bottom:598.605000px;}
.y3f{bottom:608.325000px;}
.y89{bottom:616.785000px;}
.y5e{bottom:618.765000px;}
.y16{bottom:619.305000px;}
.y3e{bottom:629.025000px;}
.y5d{bottom:639.465000px;}
.y15{bottom:640.005000px;}
.y3d{bottom:649.725000px;}
.y5c{bottom:660.165000px;}
.y14{bottom:660.705000px;}
.y3c{bottom:670.425000px;}
.y5b{bottom:680.865000px;}
.y13{bottom:681.405000px;}
.y3b{bottom:691.125000px;}
.y7a{bottom:699.585000px;}
.y12{bottom:700.305000px;}
.y5a{bottom:701.565000px;}
.y3a{bottom:711.825000px;}
.y11{bottom:717.405000px;}
.y59{bottom:722.265000px;}
.y39{bottom:732.525000px;}
.y10{bottom:738.105000px;}
.y58{bottom:740.985000px;}
.y84{bottom:742.965000px;}
.y38{bottom:753.225000px;}
.yf{bottom:758.850000px;}
.y83{bottom:763.710000px;}
.y37{bottom:773.970000px;}
.ye{bottom:779.550000px;}
.y82{bottom:784.410000px;}
.y36{bottom:794.670000px;}
.yd{bottom:798.270000px;}
.y81{bottom:805.110000px;}
.yc{bottom:810.510000px;}
.y35{bottom:815.370000px;}
.y80{bottom:825.810000px;}
.yb{bottom:831.210000px;}
.y34{bottom:836.070000px;}
.y7f{bottom:846.510000px;}
.ya{bottom:850.110000px;}
.y33{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y7e{bottom:867.210000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y7d{bottom:887.910000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y7c{bottom:906.630000px;}
.y8c{bottom:908.610000px;}
.y30{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.y8b{bottom:929.310000px;}
.y5{bottom:939.570000px;}
.y8a{bottom:948.030000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.h4{height:25.400391px;}
.h3{height:50.800781px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xe{left:95.075988px;}
.xa{left:96.335988px;}
.x4{left:107.495988px;}
.xc{left:132.335988px;}
.x7{left:154.649988px;}
.x8{left:163.109988px;}
.xd{left:182.369988px;}
.x9{left:285.194988px;}
.xb{left:311.114988px;}
.x6{left:324.254988px;}
.x3{left:330.914988px;}
.x5{left:366.014988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls0{letter-spacing:176.000000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-4.032000pt;}
._9{margin-left:-2.858667pt;}
._d{margin-left:-1.888000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.322667pt;}
._3{width:2.624000pt;}
._10{width:3.520000pt;}
._a{width:5.184000pt;}
._b{width:6.080000pt;}
._13{width:7.552000pt;}
._4{width:8.960000pt;}
._5{width:10.112000pt;}
._c{width:11.712000pt;}
._14{width:13.120000pt;}
._19{width:14.016000pt;}
._15{width:14.912000pt;}
._e{width:17.536000pt;}
._f{width:18.560000pt;}
._6{width:19.584000pt;}
._7{width:20.544000pt;}
._1a{width:21.632000pt;}
._18{width:22.656000pt;}
._17{width:23.616000pt;}
._16{width:24.832000pt;}
._1d{width:26.624000pt;}
._11{width:28.672000pt;}
._12{width:29.642667pt;}
._1b{width:31.221333pt;}
._2{width:32.704000pt;}
._1e{width:33.728000pt;}
._1f{width:37.696000pt;}
._20{width:38.784000pt;}
._25{width:40.128000pt;}
._1c{width:42.304000pt;}
._21{width:43.712000pt;}
._24{width:69.376000pt;}
._27{width:75.648000pt;}
._28{width:76.757333pt;}
._26{width:82.944000pt;}
._23{width:101.376000pt;}
._29{width:128.256000pt;}
._2a{width:204.672000pt;}
._22{width:752.138667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y88{bottom:88.352000pt;}
.y77{bottom:89.952000pt;}
.y57{bottom:99.232000pt;}
.y2f{bottom:99.712000pt;}
.y76{bottom:108.352000pt;}
.y56{bottom:117.472000pt;}
.y2e{bottom:118.112000pt;}
.y75{bottom:126.752000pt;}
.y55{bottom:135.866667pt;}
.y2d{bottom:136.506667pt;}
.y74{bottom:145.146667pt;}
.y54{bottom:154.266667pt;}
.y2c{bottom:154.906667pt;}
.y86{bottom:161.786667pt;}
.y73{bottom:163.546667pt;}
.y53{bottom:172.666667pt;}
.y2b{bottom:173.306667pt;}
.y72{bottom:181.946667pt;}
.y52{bottom:191.066667pt;}
.y2a{bottom:191.706667pt;}
.y71{bottom:200.346667pt;}
.y51{bottom:209.466667pt;}
.y29{bottom:210.106667pt;}
.y70{bottom:218.746667pt;}
.y50{bottom:227.866667pt;}
.y28{bottom:228.506667pt;}
.y6f{bottom:237.146667pt;}
.y4f{bottom:246.266667pt;}
.y27{bottom:246.906667pt;}
.y6e{bottom:255.546667pt;}
.y26{bottom:263.586667pt;}
.y4e{bottom:264.706667pt;}
.y6d{bottom:273.986667pt;}
.y25{bottom:274.466667pt;}
.y79{bottom:281.506667pt;}
.y4d{bottom:283.106667pt;}
.y6c{bottom:292.386667pt;}
.y24{bottom:292.866667pt;}
.y4c{bottom:301.506667pt;}
.y6b{bottom:310.786667pt;}
.y23{bottom:311.266667pt;}
.y4b{bottom:319.906667pt;}
.y6a{bottom:329.186667pt;}
.y22{bottom:329.666667pt;}
.y4a{bottom:338.306667pt;}
.y69{bottom:347.586667pt;}
.y21{bottom:348.066667pt;}
.y49{bottom:356.706667pt;}
.y68{bottom:365.986667pt;}
.y20{bottom:366.466667pt;}
.y48{bottom:375.106667pt;}
.y67{bottom:384.386667pt;}
.y1f{bottom:384.866667pt;}
.y7b{bottom:391.906667pt;}
.y47{bottom:393.506667pt;}
.y66{bottom:402.786667pt;}
.y1e{bottom:403.266667pt;}
.y87{bottom:410.306667pt;}
.y46{bottom:411.906667pt;}
.y65{bottom:421.186667pt;}
.y1d{bottom:421.666667pt;}
.y45{bottom:430.306667pt;}
.y64{bottom:439.586667pt;}
.y1c{bottom:440.066667pt;}
.y44{bottom:448.706667pt;}
.y63{bottom:457.986667pt;}
.y1b{bottom:458.466667pt;}
.y85{bottom:465.533333pt;}
.y43{bottom:467.133333pt;}
.y78{bottom:474.653333pt;}
.y62{bottom:476.413333pt;}
.y1a{bottom:476.893333pt;}
.y42{bottom:485.533333pt;}
.y61{bottom:494.813333pt;}
.y19{bottom:495.293333pt;}
.y41{bottom:503.933333pt;}
.y60{bottom:513.213333pt;}
.y18{bottom:513.693333pt;}
.y40{bottom:522.333333pt;}
.y5f{bottom:531.613333pt;}
.y17{bottom:532.093333pt;}
.y3f{bottom:540.733333pt;}
.y89{bottom:548.253333pt;}
.y5e{bottom:550.013333pt;}
.y16{bottom:550.493333pt;}
.y3e{bottom:559.133333pt;}
.y5d{bottom:568.413333pt;}
.y15{bottom:568.893333pt;}
.y3d{bottom:577.533333pt;}
.y5c{bottom:586.813333pt;}
.y14{bottom:587.293333pt;}
.y3c{bottom:595.933333pt;}
.y5b{bottom:605.213333pt;}
.y13{bottom:605.693333pt;}
.y3b{bottom:614.333333pt;}
.y7a{bottom:621.853333pt;}
.y12{bottom:622.493333pt;}
.y5a{bottom:623.613333pt;}
.y3a{bottom:632.733333pt;}
.y11{bottom:637.693333pt;}
.y59{bottom:642.013333pt;}
.y39{bottom:651.133333pt;}
.y10{bottom:656.093333pt;}
.y58{bottom:658.653333pt;}
.y84{bottom:660.413333pt;}
.y38{bottom:669.533333pt;}
.yf{bottom:674.533333pt;}
.y83{bottom:678.853333pt;}
.y37{bottom:687.973333pt;}
.ye{bottom:692.933333pt;}
.y82{bottom:697.253333pt;}
.y36{bottom:706.373333pt;}
.yd{bottom:709.573333pt;}
.y81{bottom:715.653333pt;}
.yc{bottom:720.453333pt;}
.y35{bottom:724.773333pt;}
.y80{bottom:734.053333pt;}
.yb{bottom:738.853333pt;}
.y34{bottom:743.173333pt;}
.y7f{bottom:752.453333pt;}
.ya{bottom:755.653333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y7e{bottom:770.853333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y7d{bottom:789.253333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y7c{bottom:805.893333pt;}
.y8c{bottom:807.653333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.y8b{bottom:826.053333pt;}
.y5{bottom:835.173333pt;}
.y8a{bottom:842.693333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.h4{height:22.578125pt;}
.h3{height:45.156250pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xe{left:84.511990pt;}
.xa{left:85.631990pt;}
.x4{left:95.551990pt;}
.xc{left:117.631990pt;}
.x7{left:137.466656pt;}
.x8{left:144.986656pt;}
.xd{left:162.106656pt;}
.x9{left:253.506656pt;}
.xb{left:276.546656pt;}
.x6{left:288.226656pt;}
.x3{left:294.146656pt;}
.x5{left:325.346656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
}




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