
    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_8aeb061c48f9ac35faa8e2fb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f649dd717ea32fc64cb2f65d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1a38ba11af9de2605a41bf94.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.ls3{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.040320px;}
.ls2{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.256200px;}
.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;}
}
.ws1{word-spacing:-15.226440px;}
.ws4{word-spacing:-15.010560px;}
.ws0{word-spacing:-14.970240px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.059840px;}
._1{width:1.215840px;}
._2{width:2.395680px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:7.005000px;}
.y51{bottom:7.012500px;}
.y5{bottom:7.020000px;}
.y52{bottom:108.763500px;}
.y8b{bottom:114.883500px;}
.y8a{bottom:121.716000px;}
.y50{bottom:131.983500px;}
.y89{bottom:138.103500px;}
.y27{bottom:152.490000px;}
.y4f{bottom:155.205000px;}
.y88{bottom:161.325000px;}
.y4e{bottom:178.425000px;}
.y32{bottom:182.370000px;}
.y87{bottom:184.725000px;}
.y26{bottom:190.650000px;}
.y3f{bottom:192.450000px;}
.y75{bottom:200.370000px;}
.y4d{bottom:201.825000px;}
.y86{bottom:207.945000px;}
.y31{bottom:220.530000px;}
.y4c{bottom:225.045000px;}
.y25{bottom:228.810000px;}
.y3e{bottom:230.610000px;}
.y85{bottom:231.165000px;}
.y74{bottom:238.530000px;}
.y4b{bottom:248.265000px;}
.y84{bottom:254.385000px;}
.y30{bottom:258.690000px;}
.y24{bottom:266.970000px;}
.y3d{bottom:268.770000px;}
.y49{bottom:271.485000px;}
.y73{bottom:276.690000px;}
.y83{bottom:277.605000px;}
.y48{bottom:294.735000px;}
.y2f{bottom:296.895000px;}
.y82{bottom:300.855000px;}
.y23{bottom:305.175000px;}
.y3c{bottom:306.975000px;}
.y72{bottom:314.895000px;}
.y47{bottom:317.955000px;}
.y81{bottom:324.255000px;}
.y97{bottom:326.415000px;}
.y2e{bottom:335.055000px;}
.y46{bottom:341.355000px;}
.y96{bottom:342.795000px;}
.y22{bottom:343.335000px;}
.y3b{bottom:345.135000px;}
.y80{bottom:347.475000px;}
.y71{bottom:353.055000px;}
.y45{bottom:364.575000px;}
.y95{bottom:366.015000px;}
.y7f{bottom:370.695000px;}
.y2d{bottom:373.215000px;}
.y21{bottom:381.495000px;}
.y3a{bottom:383.295000px;}
.y44{bottom:387.795000px;}
.y94{bottom:389.235000px;}
.y70{bottom:391.215000px;}
.y7e{bottom:393.915000px;}
.y43{bottom:411.015000px;}
.y2c{bottom:411.375000px;}
.y93{bottom:412.455000px;}
.y7d{bottom:417.135000px;}
.y20{bottom:419.655000px;}
.y39{bottom:421.455000px;}
.y6f{bottom:429.375000px;}
.y42{bottom:434.235000px;}
.y92{bottom:435.675000px;}
.y7c{bottom:440.355000px;}
.y2b{bottom:449.535000px;}
.y41{bottom:457.455000px;}
.y1f{bottom:457.815000px;}
.y91{bottom:459.075000px;}
.y38{bottom:459.615000px;}
.y7b{bottom:463.755000px;}
.y6e{bottom:467.535000px;}
.y40{bottom:480.855000px;}
.y90{bottom:482.295000px;}
.y7a{bottom:486.975000px;}
.y2a{bottom:487.695000px;}
.y1e{bottom:495.975000px;}
.y37{bottom:497.775000px;}
.y29{bottom:504.075000px;}
.y8f{bottom:505.515000px;}
.y6d{bottom:505.695000px;}
.y79{bottom:510.195000px;}
.y28{bottom:527.295000px;}
.y8e{bottom:528.735000px;}
.y78{bottom:533.415000px;}
.y1d{bottom:534.135000px;}
.y36{bottom:535.935000px;}
.y6c{bottom:543.855000px;}
.y1c{bottom:550.515000px;}
.y8d{bottom:551.955000px;}
.y77{bottom:556.635000px;}
.y1b{bottom:573.765000px;}
.y35{bottom:574.125000px;}
.y8c{bottom:575.205000px;}
.y6b{bottom:582.045000px;}
.y1a{bottom:596.985000px;}
.y6a{bottom:598.605000px;}
.y34{bottom:612.285000px;}
.y76{bottom:615.165000px;}
.y19{bottom:620.385000px;}
.y69{bottom:621.825000px;}
.y18{bottom:643.605000px;}
.y68{bottom:645.045000px;}
.y33{bottom:650.445000px;}
.y17{bottom:666.825000px;}
.y67{bottom:668.265000px;}
.y16{bottom:690.045000px;}
.y66{bottom:691.485000px;}
.y15{bottom:713.265000px;}
.y65{bottom:714.705000px;}
.y14{bottom:736.485000px;}
.y64{bottom:738.105000px;}
.y13{bottom:759.885000px;}
.y63{bottom:761.325000px;}
.y12{bottom:783.105000px;}
.y62{bottom:784.545000px;}
.y11{bottom:806.325000px;}
.y61{bottom:807.765000px;}
.y10{bottom:829.545000px;}
.y60{bottom:830.985000px;}
.yf{bottom:852.810000px;}
.y5f{bottom:854.250000px;}
.ye{bottom:876.030000px;}
.y5e{bottom:877.650000px;}
.yd{bottom:899.430000px;}
.y5d{bottom:900.870000px;}
.yc{bottom:922.650000px;}
.y5c{bottom:924.090000px;}
.yb{bottom:945.870000px;}
.y5b{bottom:947.310000px;}
.ya{bottom:969.090000px;}
.y5a{bottom:970.530000px;}
.y9{bottom:992.310000px;}
.y59{bottom:993.750000px;}
.y8{bottom:1015.530000px;}
.y58{bottom:1017.150000px;}
.y7{bottom:1038.930000px;}
.y57{bottom:1040.370000px;}
.y6{bottom:1062.150000px;}
.y56{bottom:1063.590000px;}
.y4{bottom:1085.370000px;}
.y55{bottom:1086.810000px;}
.y54{bottom:1110.030000px;}
.y3{bottom:1127.340000px;}
.y53{bottom:1133.280000px;}
.y2{bottom:1143.900000px;}
.y1{bottom:1194.300000px;}
.h4{height:22.485000px;}
.hb{height:22.492500px;}
.h8{height:22.500000px;}
.ha{height:22.521000px;}
.h7{height:22.522500px;}
.h9{height:22.530000px;}
.h2{height:50.294531px;}
.h3{height:55.291992px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:89.085000px;}
.w3{width:89.100000px;}
.w2{width:89.121000px;}
.w4{width:89.136000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.545000px;}
.x2{left:127.656000px;}
.x3{left:221.985000px;}
.x5{left:312.015000px;}
.x6{left:402.015000px;}
.x1{left:470.445000px;}
.x7{left:492.060000px;}
.x8{left:582.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.035840pt;}
.ls2{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.227733pt;}
.ws1{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.342720pt;}
.ws0{word-spacing:-13.306880pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.080747pt;}
._2{width:2.129493pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:6.226667pt;}
.y51{bottom:6.233333pt;}
.y5{bottom:6.240000pt;}
.y52{bottom:96.678667pt;}
.y8b{bottom:102.118667pt;}
.y8a{bottom:108.192000pt;}
.y50{bottom:117.318667pt;}
.y89{bottom:122.758667pt;}
.y27{bottom:135.546667pt;}
.y4f{bottom:137.960000pt;}
.y88{bottom:143.400000pt;}
.y4e{bottom:158.600000pt;}
.y32{bottom:162.106667pt;}
.y87{bottom:164.200000pt;}
.y26{bottom:169.466667pt;}
.y3f{bottom:171.066667pt;}
.y75{bottom:178.106667pt;}
.y4d{bottom:179.400000pt;}
.y86{bottom:184.840000pt;}
.y31{bottom:196.026667pt;}
.y4c{bottom:200.040000pt;}
.y25{bottom:203.386667pt;}
.y3e{bottom:204.986667pt;}
.y85{bottom:205.480000pt;}
.y74{bottom:212.026667pt;}
.y4b{bottom:220.680000pt;}
.y84{bottom:226.120000pt;}
.y30{bottom:229.946667pt;}
.y24{bottom:237.306667pt;}
.y3d{bottom:238.906667pt;}
.y49{bottom:241.320000pt;}
.y73{bottom:245.946667pt;}
.y83{bottom:246.760000pt;}
.y48{bottom:261.986667pt;}
.y2f{bottom:263.906667pt;}
.y82{bottom:267.426667pt;}
.y23{bottom:271.266667pt;}
.y3c{bottom:272.866667pt;}
.y72{bottom:279.906667pt;}
.y47{bottom:282.626667pt;}
.y81{bottom:288.226667pt;}
.y97{bottom:290.146667pt;}
.y2e{bottom:297.826667pt;}
.y46{bottom:303.426667pt;}
.y96{bottom:304.706667pt;}
.y22{bottom:305.186667pt;}
.y3b{bottom:306.786667pt;}
.y80{bottom:308.866667pt;}
.y71{bottom:313.826667pt;}
.y45{bottom:324.066667pt;}
.y95{bottom:325.346667pt;}
.y7f{bottom:329.506667pt;}
.y2d{bottom:331.746667pt;}
.y21{bottom:339.106667pt;}
.y3a{bottom:340.706667pt;}
.y44{bottom:344.706667pt;}
.y94{bottom:345.986667pt;}
.y70{bottom:347.746667pt;}
.y7e{bottom:350.146667pt;}
.y43{bottom:365.346667pt;}
.y2c{bottom:365.666667pt;}
.y93{bottom:366.626667pt;}
.y7d{bottom:370.786667pt;}
.y20{bottom:373.026667pt;}
.y39{bottom:374.626667pt;}
.y6f{bottom:381.666667pt;}
.y42{bottom:385.986667pt;}
.y92{bottom:387.266667pt;}
.y7c{bottom:391.426667pt;}
.y2b{bottom:399.586667pt;}
.y41{bottom:406.626667pt;}
.y1f{bottom:406.946667pt;}
.y91{bottom:408.066667pt;}
.y38{bottom:408.546667pt;}
.y7b{bottom:412.226667pt;}
.y6e{bottom:415.586667pt;}
.y40{bottom:427.426667pt;}
.y90{bottom:428.706667pt;}
.y7a{bottom:432.866667pt;}
.y2a{bottom:433.506667pt;}
.y1e{bottom:440.866667pt;}
.y37{bottom:442.466667pt;}
.y29{bottom:448.066667pt;}
.y8f{bottom:449.346667pt;}
.y6d{bottom:449.506667pt;}
.y79{bottom:453.506667pt;}
.y28{bottom:468.706667pt;}
.y8e{bottom:469.986667pt;}
.y78{bottom:474.146667pt;}
.y1d{bottom:474.786667pt;}
.y36{bottom:476.386667pt;}
.y6c{bottom:483.426667pt;}
.y1c{bottom:489.346667pt;}
.y8d{bottom:490.626667pt;}
.y77{bottom:494.786667pt;}
.y1b{bottom:510.013333pt;}
.y35{bottom:510.333333pt;}
.y8c{bottom:511.293333pt;}
.y6b{bottom:517.373333pt;}
.y1a{bottom:530.653333pt;}
.y6a{bottom:532.093333pt;}
.y34{bottom:544.253333pt;}
.y76{bottom:546.813333pt;}
.y19{bottom:551.453333pt;}
.y69{bottom:552.733333pt;}
.y18{bottom:572.093333pt;}
.y68{bottom:573.373333pt;}
.y33{bottom:578.173333pt;}
.y17{bottom:592.733333pt;}
.y67{bottom:594.013333pt;}
.y16{bottom:613.373333pt;}
.y66{bottom:614.653333pt;}
.y15{bottom:634.013333pt;}
.y65{bottom:635.293333pt;}
.y14{bottom:654.653333pt;}
.y64{bottom:656.093333pt;}
.y13{bottom:675.453333pt;}
.y63{bottom:676.733333pt;}
.y12{bottom:696.093333pt;}
.y62{bottom:697.373333pt;}
.y11{bottom:716.733333pt;}
.y61{bottom:718.013333pt;}
.y10{bottom:737.373333pt;}
.y60{bottom:738.653333pt;}
.yf{bottom:758.053333pt;}
.y5f{bottom:759.333333pt;}
.ye{bottom:778.693333pt;}
.y5e{bottom:780.133333pt;}
.yd{bottom:799.493333pt;}
.y5d{bottom:800.773333pt;}
.yc{bottom:820.133333pt;}
.y5c{bottom:821.413333pt;}
.yb{bottom:840.773333pt;}
.y5b{bottom:842.053333pt;}
.ya{bottom:861.413333pt;}
.y5a{bottom:862.693333pt;}
.y9{bottom:882.053333pt;}
.y59{bottom:883.333333pt;}
.y8{bottom:902.693333pt;}
.y58{bottom:904.133333pt;}
.y7{bottom:923.493333pt;}
.y57{bottom:924.773333pt;}
.y6{bottom:944.133333pt;}
.y56{bottom:945.413333pt;}
.y4{bottom:964.773333pt;}
.y55{bottom:966.053333pt;}
.y54{bottom:986.693333pt;}
.y3{bottom:1002.080000pt;}
.y53{bottom:1007.360000pt;}
.y2{bottom:1016.800000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:19.986667pt;}
.hb{height:19.993333pt;}
.h8{height:20.000000pt;}
.ha{height:20.018667pt;}
.h7{height:20.020000pt;}
.h9{height:20.026667pt;}
.h2{height:44.706250pt;}
.h3{height:49.148438pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:79.186667pt;}
.w3{width:79.200000pt;}
.w2{width:79.218667pt;}
.w4{width:79.232000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.706667pt;}
.x2{left:113.472000pt;}
.x3{left:197.320000pt;}
.x5{left:277.346667pt;}
.x6{left:357.346667pt;}
.x1{left:418.173333pt;}
.x7{left:437.386667pt;}
.x8{left:517.413333pt;}
}




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