
    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_2b010746b76034f5a8cacbc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_e9915d4b098ab20d8b0bbf8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d71623cc90d7b992fd3ab13e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_270e4ced0f3098e7b7051481.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_2f88ae3db90d445225abbf28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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:33.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.132000px;}
.ls5{letter-spacing:0.168000px;}
.ls1{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.228000px;}
.ls6{letter-spacing:0.432000px;}
.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:-21.000000px;}
.ws3{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:75.000000px;}
._18{margin-left:-9.996000px;}
._f{margin-left:-7.728000px;}
._c{margin-left:-5.796000px;}
._0{margin-left:-4.452000px;}
._10{margin-left:-3.120000px;}
._1{margin-left:-1.848000px;}
._2{width:1.260000px;}
._6{width:3.024000px;}
._b{width:4.332000px;}
._d{width:5.496000px;}
._e{width:6.600000px;}
._8{width:7.728000px;}
._5{width:8.988000px;}
._4{width:9.996000px;}
._19{width:11.004000px;}
._7{width:12.012000px;}
._17{width:13.272000px;}
._11{width:14.280000px;}
._a{width:15.372000px;}
._9{width:16.632000px;}
._16{width:17.700000px;}
._12{width:18.756000px;}
._3{width:19.812000px;}
._1a{width:22.596000px;}
._15{width:23.940000px;}
._14{width:25.116000px;}
._22{width:26.208000px;}
._23{width:28.956000px;}
._21{width:30.120000px;}
._20{width:31.500000px;}
._1d{width:33.012000px;}
._1e{width:35.364000px;}
._1f{width:36.456000px;}
._1c{width:43.848000px;}
._1b{width:45.360000px;}
._13{width:72.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.600000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1d{bottom:88.350000px;}
.y91{bottom:89.550000px;}
.y4d{bottom:90.600000px;}
.y63{bottom:96.450000px;}
.y1c{bottom:105.600000px;}
.y3e{bottom:107.550000px;}
.y55{bottom:114.150000px;}
.y28{bottom:119.250000px;}
.y66{bottom:120.750000px;}
.y4c{bottom:126.900000px;}
.y62{bottom:132.600000px;}
.y65{bottom:141.450000px;}
.y3d{bottom:143.850000px;}
.y54{bottom:150.450000px;}
.y27{bottom:155.550000px;}
.y90{bottom:162.000000px;}
.y4b{bottom:163.050000px;}
.y1b{bottom:168.000000px;}
.y61{bottom:168.900000px;}
.y3c{bottom:180.000000px;}
.y64{bottom:182.850000px;}
.y53{bottom:186.600000px;}
.y26{bottom:191.700000px;}
.y8f{bottom:198.150000px;}
.y4a{bottom:199.350000px;}
.y1a{bottom:204.150000px;}
.y60{bottom:205.050000px;}
.y3b{bottom:216.300000px;}
.y52{bottom:222.900000px;}
.y25{bottom:228.000000px;}
.y8e{bottom:234.450000px;}
.y49{bottom:235.500000px;}
.y19{bottom:240.450000px;}
.y5f{bottom:241.350000px;}
.y3a{bottom:252.450000px;}
.y51{bottom:259.050000px;}
.y85{bottom:261.750000px;}
.y24{bottom:264.150000px;}
.y8d{bottom:270.600000px;}
.y48{bottom:271.800000px;}
.y18{bottom:276.600000px;}
.y5e{bottom:277.500000px;}
.y39{bottom:288.750000px;}
.y50{bottom:295.350000px;}
.y84{bottom:298.050000px;}
.y23{bottom:300.450000px;}
.y47{bottom:307.950000px;}
.y17{bottom:312.900000px;}
.y5d{bottom:313.800000px;}
.y38{bottom:324.900000px;}
.y4f{bottom:331.500000px;}
.y83{bottom:334.200000px;}
.y22{bottom:336.600000px;}
.y8c{bottom:343.050000px;}
.y46{bottom:344.250000px;}
.y16{bottom:349.050000px;}
.y37{bottom:361.200000px;}
.y4e{bottom:367.800000px;}
.y82{bottom:370.500000px;}
.y21{bottom:372.900000px;}
.y8b{bottom:379.350000px;}
.y45{bottom:380.400000px;}
.y15{bottom:385.350000px;}
.y36{bottom:397.350000px;}
.y81{bottom:406.650000px;}
.y20{bottom:409.050000px;}
.y8a{bottom:415.500000px;}
.y44{bottom:416.700000px;}
.y14{bottom:421.500000px;}
.y35{bottom:433.650000px;}
.y80{bottom:442.950000px;}
.y89{bottom:451.800000px;}
.y43{bottom:452.850000px;}
.y13{bottom:457.800000px;}
.y34{bottom:469.800000px;}
.y7f{bottom:479.100000px;}
.y88{bottom:487.950000px;}
.y42{bottom:489.150000px;}
.y12{bottom:493.950000px;}
.y33{bottom:506.100000px;}
.y7e{bottom:515.400000px;}
.y87{bottom:524.250000px;}
.y41{bottom:525.300000px;}
.y11{bottom:530.250000px;}
.y32{bottom:542.250000px;}
.y7d{bottom:551.550000px;}
.y86{bottom:560.400000px;}
.y40{bottom:561.600000px;}
.y10{bottom:566.400000px;}
.y31{bottom:578.550000px;}
.y3f{bottom:597.750000px;}
.y7c{bottom:599.250000px;}
.y30{bottom:614.700000px;}
.y7b{bottom:619.950000px;}
.yf{bottom:638.850000px;}
.y2f{bottom:651.000000px;}
.y7a{bottom:661.350000px;}
.ye{bottom:675.150000px;}
.y79{bottom:682.050000px;}
.y2e{bottom:687.150000px;}
.yd{bottom:711.300000px;}
.y2d{bottom:723.450000px;}
.y78{bottom:744.150000px;}
.yc{bottom:747.600000px;}
.y2c{bottom:759.600000px;}
.y77{bottom:764.850000px;}
.yb{bottom:783.750000px;}
.y76{bottom:785.550000px;}
.y2b{bottom:795.900000px;}
.y75{bottom:806.250000px;}
.ya{bottom:820.050000px;}
.y74{bottom:826.950000px;}
.y2a{bottom:832.050000px;}
.y73{bottom:847.650000px;}
.y9{bottom:856.200000px;}
.y29{bottom:868.350000px;}
.y72{bottom:889.050000px;}
.y8{bottom:892.500000px;}
.y5c{bottom:893.400000px;}
.y1f{bottom:904.500000px;}
.y71{bottom:909.750000px;}
.y5b{bottom:929.550000px;}
.y70{bottom:930.450000px;}
.y1e{bottom:940.800000px;}
.y6f{bottom:951.150000px;}
.y5a{bottom:965.850000px;}
.y6e{bottom:971.850000px;}
.y7{bottom:976.950000px;}
.y6d{bottom:993.900000px;}
.y59{bottom:1002.000000px;}
.y6{bottom:1013.250000px;}
.y6c{bottom:1016.100000px;}
.y58{bottom:1041.450000px;}
.y5{bottom:1049.400000px;}
.y6b{bottom:1057.500000px;}
.y6a{bottom:1078.200000px;}
.y57{bottom:1080.900000px;}
.y4{bottom:1085.700000px;}
.y69{bottom:1098.900000px;}
.y56{bottom:1118.700000px;}
.y3{bottom:1121.850000px;}
.y68{bottom:1140.300000px;}
.y2{bottom:1158.150000px;}
.y67{bottom:1161.000000px;}
.h5{height:52.646484px;}
.h7{height:63.175781px;}
.h8{height:66.691406px;}
.h4{height:73.705078px;}
.h2{height:74.607422px;}
.h3{height:76.765723px;}
.h6{height:77.806641px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:85.200000px;}
.x9{left:110.700000px;}
.x7{left:127.800000px;}
.xb{left:138.450000px;}
.x1{left:171.300000px;}
.x2{left:180.750000px;}
.x5{left:186.450000px;}
.x6{left:269.100000px;}
.x3{left:335.400000px;}
.x4{left:364.650000px;}
.xa{left:609.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.866667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.117333pt;}
.ls5{letter-spacing:0.149333pt;}
.ls1{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.202667pt;}
.ls6{letter-spacing:0.384000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:66.666667pt;}
._18{margin-left:-8.885333pt;}
._f{margin-left:-6.869333pt;}
._c{margin-left:-5.152000pt;}
._0{margin-left:-3.957333pt;}
._10{margin-left:-2.773333pt;}
._1{margin-left:-1.642667pt;}
._2{width:1.120000pt;}
._6{width:2.688000pt;}
._b{width:3.850667pt;}
._d{width:4.885333pt;}
._e{width:5.866667pt;}
._8{width:6.869333pt;}
._5{width:7.989333pt;}
._4{width:8.885333pt;}
._19{width:9.781333pt;}
._7{width:10.677333pt;}
._17{width:11.797333pt;}
._11{width:12.693333pt;}
._a{width:13.664000pt;}
._9{width:14.784000pt;}
._16{width:15.733333pt;}
._12{width:16.672000pt;}
._3{width:17.610667pt;}
._1a{width:20.085333pt;}
._15{width:21.280000pt;}
._14{width:22.325333pt;}
._22{width:23.296000pt;}
._23{width:25.738667pt;}
._21{width:26.773333pt;}
._20{width:28.000000pt;}
._1d{width:29.344000pt;}
._1e{width:31.434667pt;}
._1f{width:32.405333pt;}
._1c{width:38.976000pt;}
._1b{width:40.320000pt;}
._13{width:64.000000pt;}
.fs1{font-size:43.200000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1d{bottom:78.533333pt;}
.y91{bottom:79.600000pt;}
.y4d{bottom:80.533333pt;}
.y63{bottom:85.733333pt;}
.y1c{bottom:93.866667pt;}
.y3e{bottom:95.600000pt;}
.y55{bottom:101.466667pt;}
.y28{bottom:106.000000pt;}
.y66{bottom:107.333333pt;}
.y4c{bottom:112.800000pt;}
.y62{bottom:117.866667pt;}
.y65{bottom:125.733333pt;}
.y3d{bottom:127.866667pt;}
.y54{bottom:133.733333pt;}
.y27{bottom:138.266667pt;}
.y90{bottom:144.000000pt;}
.y4b{bottom:144.933333pt;}
.y1b{bottom:149.333333pt;}
.y61{bottom:150.133333pt;}
.y3c{bottom:160.000000pt;}
.y64{bottom:162.533333pt;}
.y53{bottom:165.866667pt;}
.y26{bottom:170.400000pt;}
.y8f{bottom:176.133333pt;}
.y4a{bottom:177.200000pt;}
.y1a{bottom:181.466667pt;}
.y60{bottom:182.266667pt;}
.y3b{bottom:192.266667pt;}
.y52{bottom:198.133333pt;}
.y25{bottom:202.666667pt;}
.y8e{bottom:208.400000pt;}
.y49{bottom:209.333333pt;}
.y19{bottom:213.733333pt;}
.y5f{bottom:214.533333pt;}
.y3a{bottom:224.400000pt;}
.y51{bottom:230.266667pt;}
.y85{bottom:232.666667pt;}
.y24{bottom:234.800000pt;}
.y8d{bottom:240.533333pt;}
.y48{bottom:241.600000pt;}
.y18{bottom:245.866667pt;}
.y5e{bottom:246.666667pt;}
.y39{bottom:256.666667pt;}
.y50{bottom:262.533333pt;}
.y84{bottom:264.933333pt;}
.y23{bottom:267.066667pt;}
.y47{bottom:273.733333pt;}
.y17{bottom:278.133333pt;}
.y5d{bottom:278.933333pt;}
.y38{bottom:288.800000pt;}
.y4f{bottom:294.666667pt;}
.y83{bottom:297.066667pt;}
.y22{bottom:299.200000pt;}
.y8c{bottom:304.933333pt;}
.y46{bottom:306.000000pt;}
.y16{bottom:310.266667pt;}
.y37{bottom:321.066667pt;}
.y4e{bottom:326.933333pt;}
.y82{bottom:329.333333pt;}
.y21{bottom:331.466667pt;}
.y8b{bottom:337.200000pt;}
.y45{bottom:338.133333pt;}
.y15{bottom:342.533333pt;}
.y36{bottom:353.200000pt;}
.y81{bottom:361.466667pt;}
.y20{bottom:363.600000pt;}
.y8a{bottom:369.333333pt;}
.y44{bottom:370.400000pt;}
.y14{bottom:374.666667pt;}
.y35{bottom:385.466667pt;}
.y80{bottom:393.733333pt;}
.y89{bottom:401.600000pt;}
.y43{bottom:402.533333pt;}
.y13{bottom:406.933333pt;}
.y34{bottom:417.600000pt;}
.y7f{bottom:425.866667pt;}
.y88{bottom:433.733333pt;}
.y42{bottom:434.800000pt;}
.y12{bottom:439.066667pt;}
.y33{bottom:449.866667pt;}
.y7e{bottom:458.133333pt;}
.y87{bottom:466.000000pt;}
.y41{bottom:466.933333pt;}
.y11{bottom:471.333333pt;}
.y32{bottom:482.000000pt;}
.y7d{bottom:490.266667pt;}
.y86{bottom:498.133333pt;}
.y40{bottom:499.200000pt;}
.y10{bottom:503.466667pt;}
.y31{bottom:514.266667pt;}
.y3f{bottom:531.333333pt;}
.y7c{bottom:532.666667pt;}
.y30{bottom:546.400000pt;}
.y7b{bottom:551.066667pt;}
.yf{bottom:567.866667pt;}
.y2f{bottom:578.666667pt;}
.y7a{bottom:587.866667pt;}
.ye{bottom:600.133333pt;}
.y79{bottom:606.266667pt;}
.y2e{bottom:610.800000pt;}
.yd{bottom:632.266667pt;}
.y2d{bottom:643.066667pt;}
.y78{bottom:661.466667pt;}
.yc{bottom:664.533333pt;}
.y2c{bottom:675.200000pt;}
.y77{bottom:679.866667pt;}
.yb{bottom:696.666667pt;}
.y76{bottom:698.266667pt;}
.y2b{bottom:707.466667pt;}
.y75{bottom:716.666667pt;}
.ya{bottom:728.933333pt;}
.y74{bottom:735.066667pt;}
.y2a{bottom:739.600000pt;}
.y73{bottom:753.466667pt;}
.y9{bottom:761.066667pt;}
.y29{bottom:771.866667pt;}
.y72{bottom:790.266667pt;}
.y8{bottom:793.333333pt;}
.y5c{bottom:794.133333pt;}
.y1f{bottom:804.000000pt;}
.y71{bottom:808.666667pt;}
.y5b{bottom:826.266667pt;}
.y70{bottom:827.066667pt;}
.y1e{bottom:836.266667pt;}
.y6f{bottom:845.466667pt;}
.y5a{bottom:858.533333pt;}
.y6e{bottom:863.866667pt;}
.y7{bottom:868.400000pt;}
.y6d{bottom:883.466667pt;}
.y59{bottom:890.666667pt;}
.y6{bottom:900.666667pt;}
.y6c{bottom:903.200000pt;}
.y58{bottom:925.733333pt;}
.y5{bottom:932.800000pt;}
.y6b{bottom:940.000000pt;}
.y6a{bottom:958.400000pt;}
.y57{bottom:960.800000pt;}
.y4{bottom:965.066667pt;}
.y69{bottom:976.800000pt;}
.y56{bottom:994.400000pt;}
.y3{bottom:997.200000pt;}
.y68{bottom:1013.600000pt;}
.y2{bottom:1029.466667pt;}
.y67{bottom:1032.000000pt;}
.h5{height:46.796875pt;}
.h7{height:56.156250pt;}
.h8{height:59.281250pt;}
.h4{height:65.515625pt;}
.h2{height:66.317708pt;}
.h3{height:68.236198pt;}
.h6{height:69.161458pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.733333pt;}
.x9{left:98.400000pt;}
.x7{left:113.600000pt;}
.xb{left:123.066667pt;}
.x1{left:152.266667pt;}
.x2{left:160.666667pt;}
.x5{left:165.733333pt;}
.x6{left:239.200000pt;}
.x3{left:298.133333pt;}
.x4{left:324.133333pt;}
.xa{left:541.600000pt;}
}




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