
    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_e9fdb875c8d4bc1218667301.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_e298acef423019a1fa31db80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924805;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_eeb857e5cc00d9f40665c24d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006836;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_e5f5d345f2d47bc0e787d20a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918945;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_e25b19e0a5ad39bce439c5d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:983.400000px;}
.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;}
}
.ws7{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:18.084000px;}
.ws1{word-spacing:396.480000px;}
.ws8{word-spacing:455.700000px;}
.ws3{word-spacing:527.520000px;}
.ws4{word-spacing:563.520000px;}
.ws2{word-spacing:655.464000px;}
.ws5{word-spacing:1641.960000px;}
._10{margin-left:-1782.036000px;}
._a{margin-left:-1314.396000px;}
._3{margin-left:-1110.840000px;}
._23{margin-left:-794.892000px;}
._c{margin-left:-764.784000px;}
._24{margin-left:-705.180000px;}
._2{margin-left:-603.396000px;}
._e{margin-left:-104.256000px;}
._11{margin-left:-97.956000px;}
._22{width:2.256000px;}
._0{width:8.268000px;}
._f{width:21.600000px;}
._d{width:28.872000px;}
._1{width:37.944000px;}
._b{width:41.106000px;}
._21{width:54.000000px;}
._19{width:82.800000px;}
._1b{width:283.908000px;}
._16{width:472.332000px;}
._1d{width:473.700000px;}
._17{width:498.684000px;}
._7{width:523.704000px;}
._18{width:531.156000px;}
._15{width:537.780000px;}
._5{width:549.624000px;}
._1f{width:622.032000px;}
._13{width:632.532000px;}
._20{width:648.384000px;}
._12{width:710.100000px;}
._1c{width:801.672000px;}
._1e{width:845.808000px;}
._4{width:878.280000px;}
._1a{width:882.096000px;}
._14{width:985.932000px;}
._8{width:987.288000px;}
._6{width:990.816000px;}
._9{width:1425.456000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y25{bottom:56.941500px;}
.y4a{bottom:112.666500px;}
.y6c{bottom:114.241500px;}
.y6b{bottom:134.941500px;}
.y49{bottom:151.366500px;}
.y8d{bottom:156.616500px;}
.y24{bottom:163.066500px;}
.y6a{bottom:164.641500px;}
.y48{bottom:172.066500px;}
.y8c{bottom:176.416500px;}
.y47{bottom:192.766500px;}
.y69{bottom:194.341500px;}
.y8b{bottom:196.216500px;}
.y23{bottom:203.191500px;}
.y8a{bottom:216.016500px;}
.y46{bottom:222.466500px;}
.y22{bottom:223.891500px;}
.y68{bottom:233.041500px;}
.y21{bottom:253.591500px;}
.y89{bottom:255.616500px;}
.y45{bottom:261.166500px;}
.y67{bottom:262.741500px;}
.y88{bottom:275.416500px;}
.y44{bottom:290.866500px;}
.y66{bottom:292.441500px;}
.y20{bottom:292.891500px;}
.y87{bottom:295.216500px;}
.y86{bottom:315.016500px;}
.y65{bottom:322.141500px;}
.y43{bottom:329.566500px;}
.y1f{bottom:343.441500px;}
.y42{bottom:350.266500px;}
.y64{bottom:351.841500px;}
.y85{bottom:354.616500px;}
.y1e{bottom:364.141500px;}
.y41{bottom:370.966500px;}
.y84{bottom:374.416500px;}
.y63{bottom:381.541500px;}
.y40{bottom:391.666500px;}
.y83{bottom:394.216500px;}
.y1d{bottom:403.141500px;}
.y82{bottom:414.016500px;}
.y62{bottom:420.841500px;}
.y3f{bottom:421.366500px;}
.y81{bottom:433.816500px;}
.y1c{bottom:443.266500px;}
.y80{bottom:453.616500px;}
.y3e{bottom:460.666500px;}
.y1b{bottom:463.966500px;}
.y61{bottom:471.391500px;}
.y60{bottom:492.091500px;}
.y7f{bottom:493.216500px;}
.y1a{bottom:493.666500px;}
.y3d{bottom:511.366500px;}
.y5f{bottom:512.791500px;}
.y7e{bottom:513.016500px;}
.y19{bottom:514.366500px;}
.y3c{bottom:532.216500px;}
.y7d{bottom:532.816500px;}
.y5e{bottom:533.491500px;}
.y18{bottom:535.066500px;}
.y7c{bottom:552.616500px;}
.y3b{bottom:553.066500px;}
.y17{bottom:555.766500px;}
.y7b{bottom:572.416500px;}
.y3a{bottom:573.916500px;}
.y16{bottom:576.466500px;}
.y5d{bottom:593.041500px;}
.y39{bottom:594.766500px;}
.y15{bottom:597.166500px;}
.y7a{bottom:612.016500px;}
.y5c{bottom:613.891500px;}
.y38{bottom:624.616500px;}
.y14{bottom:627.466500px;}
.y5b{bottom:634.741500px;}
.y79{bottom:636.166500px;}
.y5a{bottom:655.591500px;}
.y37{bottom:663.316500px;}
.y78{bottom:666.466500px;}
.y9d{bottom:671.266500px;}
.y59{bottom:676.441500px;}
.y13{bottom:677.716500px;}
.y36{bottom:684.016500px;}
.y12{bottom:696.691500px;}
.y9c{bottom:700.966500px;}
.y35{bottom:704.716500px;}
.y58{bottom:706.291500px;}
.y11{bottom:715.666500px;}
.y77{bottom:717.016500px;}
.y34{bottom:725.416500px;}
.y57{bottom:726.991500px;}
.y9b{bottom:730.666500px;}
.y10{bottom:734.641500px;}
.y76{bottom:737.716500px;}
.yf{bottom:753.616500px;}
.y75{bottom:758.416500px;}
.y9a{bottom:760.966500px;}
.y33{bottom:764.416500px;}
.y56{bottom:765.991500px;}
.ye{bottom:772.591500px;}
.y74{bottom:779.116500px;}
.yd{bottom:791.566500px;}
.y32{bottom:804.541500px;}
.y55{bottom:806.116500px;}
.yc{bottom:810.541500px;}
.y99{bottom:811.516500px;}
.y73{bottom:818.116500px;}
.y54{bottom:826.816500px;}
.yb{bottom:829.516500px;}
.y98{bottom:832.216500px;}
.y31{bottom:834.241500px;}
.y97{bottom:852.916500px;}
.y72{bottom:858.241500px;}
.ya{bottom:858.391500px;}
.y53{bottom:865.816500px;}
.y30{bottom:872.941500px;}
.y96{bottom:873.616500px;}
.y71{bottom:888.541500px;}
.y95{bottom:894.316500px;}
.y52{bottom:905.941500px;}
.y9{bottom:908.341500px;}
.y51{bottom:926.641500px;}
.y2f{bottom:932.491500px;}
.y94{bottom:933.316500px;}
.y8{bottom:934.966500px;}
.y70{bottom:939.091500px;}
.y2e{bottom:953.341500px;}
.y50{bottom:956.941500px;}
.y7{bottom:962.941500px;}
.y6f{bottom:968.791500px;}
.y93{bottom:973.441500px;}
.y2d{bottom:974.191500px;}
.y6{bottom:990.916500px;}
.y2c{bottom:995.041500px;}
.y6e{bottom:998.491500px;}
.y92{bottom:1003.741500px;}
.y4f{bottom:1007.491500px;}
.y2b{bottom:1015.891500px;}
.y5{bottom:1019.191500px;}
.y4e{bottom:1028.191500px;}
.y2a{bottom:1036.741500px;}
.y91{bottom:1054.441500px;}
.y29{bottom:1057.591500px;}
.y4d{bottom:1057.891500px;}
.y4{bottom:1061.791500px;}
.y90{bottom:1074.241500px;}
.y28{bottom:1078.441500px;}
.y4c{bottom:1087.591500px;}
.y8f{bottom:1094.041500px;}
.y6d{bottom:1096.591500px;}
.y27{bottom:1108.291500px;}
.y8e{bottom:1113.841500px;}
.y4b{bottom:1117.291500px;}
.y3{bottom:1121.191500px;}
.y26{bottom:1137.991500px;}
.y2{bottom:1195.666500px;}
.hc{height:39.128906px;}
.h3{height:42.246094px;}
.h8{height:46.470703px;}
.ha{height:50.695312px;}
.h6{height:52.207031px;}
.h9{height:54.919922px;}
.h5{height:56.953125px;}
.h7{height:59.144531px;}
.hb{height:61.699219px;}
.h4{height:101.390625px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.150000px;}
.xe{left:116.325000px;}
.x10{left:135.150000px;}
.x2{left:143.700000px;}
.xa{left:162.150000px;}
.xb{left:188.625000px;}
.xc{left:191.250000px;}
.x13{left:221.550000px;}
.x12{left:287.775000px;}
.x11{left:301.725000px;}
.x8{left:333.825000px;}
.xf{left:345.900000px;}
.x3{left:347.025000px;}
.x5{left:367.200000px;}
.x14{left:379.200000px;}
.x6{left:384.525000px;}
.x7{left:394.200000px;}
.x4{left:400.425000px;}
.xd{left:425.700000px;}
.x1{left:582.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:874.133333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:16.074667pt;}
.ws1{word-spacing:352.426667pt;}
.ws8{word-spacing:405.066667pt;}
.ws3{word-spacing:468.906667pt;}
.ws4{word-spacing:500.906667pt;}
.ws2{word-spacing:582.634667pt;}
.ws5{word-spacing:1459.520000pt;}
._10{margin-left:-1584.032000pt;}
._a{margin-left:-1168.352000pt;}
._3{margin-left:-987.413333pt;}
._23{margin-left:-706.570667pt;}
._c{margin-left:-679.808000pt;}
._24{margin-left:-626.826667pt;}
._2{margin-left:-536.352000pt;}
._e{margin-left:-92.672000pt;}
._11{margin-left:-87.072000pt;}
._22{width:2.005333pt;}
._0{width:7.349333pt;}
._f{width:19.200000pt;}
._d{width:25.664000pt;}
._1{width:33.728000pt;}
._b{width:36.538667pt;}
._21{width:48.000000pt;}
._19{width:73.600000pt;}
._1b{width:252.362667pt;}
._16{width:419.850667pt;}
._1d{width:421.066667pt;}
._17{width:443.274667pt;}
._7{width:465.514667pt;}
._18{width:472.138667pt;}
._15{width:478.026667pt;}
._5{width:488.554667pt;}
._1f{width:552.917333pt;}
._13{width:562.250667pt;}
._20{width:576.341333pt;}
._12{width:631.200000pt;}
._1c{width:712.597333pt;}
._1e{width:751.829333pt;}
._4{width:780.693333pt;}
._1a{width:784.085333pt;}
._14{width:876.384000pt;}
._8{width:877.589333pt;}
._6{width:880.725333pt;}
._9{width:1267.072000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y25{bottom:50.614667pt;}
.y4a{bottom:100.148000pt;}
.y6c{bottom:101.548000pt;}
.y6b{bottom:119.948000pt;}
.y49{bottom:134.548000pt;}
.y8d{bottom:139.214667pt;}
.y24{bottom:144.948000pt;}
.y6a{bottom:146.348000pt;}
.y48{bottom:152.948000pt;}
.y8c{bottom:156.814667pt;}
.y47{bottom:171.348000pt;}
.y69{bottom:172.748000pt;}
.y8b{bottom:174.414667pt;}
.y23{bottom:180.614667pt;}
.y8a{bottom:192.014667pt;}
.y46{bottom:197.748000pt;}
.y22{bottom:199.014667pt;}
.y68{bottom:207.148000pt;}
.y21{bottom:225.414667pt;}
.y89{bottom:227.214667pt;}
.y45{bottom:232.148000pt;}
.y67{bottom:233.548000pt;}
.y88{bottom:244.814667pt;}
.y44{bottom:258.548000pt;}
.y66{bottom:259.948000pt;}
.y20{bottom:260.348000pt;}
.y87{bottom:262.414667pt;}
.y86{bottom:280.014667pt;}
.y65{bottom:286.348000pt;}
.y43{bottom:292.948000pt;}
.y1f{bottom:305.281333pt;}
.y42{bottom:311.348000pt;}
.y64{bottom:312.748000pt;}
.y85{bottom:315.214667pt;}
.y1e{bottom:323.681333pt;}
.y41{bottom:329.748000pt;}
.y84{bottom:332.814667pt;}
.y63{bottom:339.148000pt;}
.y40{bottom:348.148000pt;}
.y83{bottom:350.414667pt;}
.y1d{bottom:358.348000pt;}
.y82{bottom:368.014667pt;}
.y62{bottom:374.081333pt;}
.y3f{bottom:374.548000pt;}
.y81{bottom:385.614667pt;}
.y1c{bottom:394.014667pt;}
.y80{bottom:403.214667pt;}
.y3e{bottom:409.481333pt;}
.y1b{bottom:412.414667pt;}
.y61{bottom:419.014667pt;}
.y60{bottom:437.414667pt;}
.y7f{bottom:438.414667pt;}
.y1a{bottom:438.814667pt;}
.y3d{bottom:454.548000pt;}
.y5f{bottom:455.814667pt;}
.y7e{bottom:456.014667pt;}
.y19{bottom:457.214667pt;}
.y3c{bottom:473.081333pt;}
.y7d{bottom:473.614667pt;}
.y5e{bottom:474.214667pt;}
.y18{bottom:475.614667pt;}
.y7c{bottom:491.214667pt;}
.y3b{bottom:491.614667pt;}
.y17{bottom:494.014667pt;}
.y7b{bottom:508.814667pt;}
.y3a{bottom:510.148000pt;}
.y16{bottom:512.414667pt;}
.y5d{bottom:527.148000pt;}
.y39{bottom:528.681333pt;}
.y15{bottom:530.814667pt;}
.y7a{bottom:544.014667pt;}
.y5c{bottom:545.681333pt;}
.y38{bottom:555.214667pt;}
.y14{bottom:557.748000pt;}
.y5b{bottom:564.214667pt;}
.y79{bottom:565.481333pt;}
.y5a{bottom:582.748000pt;}
.y37{bottom:589.614667pt;}
.y78{bottom:592.414667pt;}
.y9d{bottom:596.681333pt;}
.y59{bottom:601.281333pt;}
.y13{bottom:602.414667pt;}
.y36{bottom:608.014667pt;}
.y12{bottom:619.281333pt;}
.y9c{bottom:623.081333pt;}
.y35{bottom:626.414667pt;}
.y58{bottom:627.814667pt;}
.y11{bottom:636.148000pt;}
.y77{bottom:637.348000pt;}
.y34{bottom:644.814667pt;}
.y57{bottom:646.214667pt;}
.y9b{bottom:649.481333pt;}
.y10{bottom:653.014667pt;}
.y76{bottom:655.748000pt;}
.yf{bottom:669.881333pt;}
.y75{bottom:674.148000pt;}
.y9a{bottom:676.414667pt;}
.y33{bottom:679.481333pt;}
.y56{bottom:680.881333pt;}
.ye{bottom:686.748000pt;}
.y74{bottom:692.548000pt;}
.yd{bottom:703.614667pt;}
.y32{bottom:715.148000pt;}
.y55{bottom:716.548000pt;}
.yc{bottom:720.481333pt;}
.y99{bottom:721.348000pt;}
.y73{bottom:727.214667pt;}
.y54{bottom:734.948000pt;}
.yb{bottom:737.348000pt;}
.y98{bottom:739.748000pt;}
.y31{bottom:741.548000pt;}
.y97{bottom:758.148000pt;}
.y72{bottom:762.881333pt;}
.ya{bottom:763.014667pt;}
.y53{bottom:769.614667pt;}
.y30{bottom:775.948000pt;}
.y96{bottom:776.548000pt;}
.y71{bottom:789.814667pt;}
.y95{bottom:794.948000pt;}
.y52{bottom:805.281333pt;}
.y9{bottom:807.414667pt;}
.y51{bottom:823.681333pt;}
.y2f{bottom:828.881333pt;}
.y94{bottom:829.614667pt;}
.y8{bottom:831.081333pt;}
.y70{bottom:834.748000pt;}
.y2e{bottom:847.414667pt;}
.y50{bottom:850.614667pt;}
.y7{bottom:855.948000pt;}
.y6f{bottom:861.148000pt;}
.y93{bottom:865.281333pt;}
.y2d{bottom:865.948000pt;}
.y6{bottom:880.814667pt;}
.y2c{bottom:884.481333pt;}
.y6e{bottom:887.548000pt;}
.y92{bottom:892.214667pt;}
.y4f{bottom:895.548000pt;}
.y2b{bottom:903.014667pt;}
.y5{bottom:905.948000pt;}
.y4e{bottom:913.948000pt;}
.y2a{bottom:921.548000pt;}
.y91{bottom:937.281333pt;}
.y29{bottom:940.081333pt;}
.y4d{bottom:940.348000pt;}
.y4{bottom:943.814667pt;}
.y90{bottom:954.881333pt;}
.y28{bottom:958.614667pt;}
.y4c{bottom:966.748000pt;}
.y8f{bottom:972.481333pt;}
.y6d{bottom:974.748000pt;}
.y27{bottom:985.148000pt;}
.y8e{bottom:990.081333pt;}
.y4b{bottom:993.148000pt;}
.y3{bottom:996.614667pt;}
.y26{bottom:1011.548000pt;}
.y2{bottom:1062.814667pt;}
.hc{height:34.781250pt;}
.h3{height:37.552083pt;}
.h8{height:41.307292pt;}
.ha{height:45.062500pt;}
.h6{height:46.406250pt;}
.h9{height:48.817708pt;}
.h5{height:50.625000pt;}
.h7{height:52.572917pt;}
.hb{height:54.843750pt;}
.h4{height:90.125000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.133333pt;}
.xe{left:103.400000pt;}
.x10{left:120.133333pt;}
.x2{left:127.733333pt;}
.xa{left:144.133333pt;}
.xb{left:167.666667pt;}
.xc{left:170.000000pt;}
.x13{left:196.933333pt;}
.x12{left:255.800000pt;}
.x11{left:268.200000pt;}
.x8{left:296.733333pt;}
.xf{left:307.466667pt;}
.x3{left:308.466667pt;}
.x5{left:326.400000pt;}
.x14{left:337.066667pt;}
.x6{left:341.800000pt;}
.x7{left:350.400000pt;}
.x4{left:355.933333pt;}
.xd{left:378.400000pt;}
.x1{left:517.466667pt;}
}




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