
    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_7e0e7aa01c855d93b52b50fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_39d0a0c5948efc62f609d7b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_461a7747519fbb3d56974ec3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.225000;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_69dcbf7e384f6f5aba4cfb38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203000;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_e4adff387a70e548fe657ab3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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:383.880000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.030000px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:12.894000px;}
.ls4{letter-spacing:17.762253px;}
.ls3{letter-spacing:19.292682px;}
.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:-148.219741px;}
.ws2{word-spacing:-125.034000px;}
.ws4{word-spacing:-60.048000px;}
.ws1{word-spacing:-44.520000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:55.451400px;}
._c{margin-left:-19.431812px;}
._d{margin-left:-18.226020px;}
._b{margin-left:-12.894000px;}
._2c{margin-left:-5.715000px;}
._16{margin-left:-4.608000px;}
._25{margin-left:-1.932000px;}
._2f{width:1.008000px;}
._24{width:5.551200px;}
._32{width:6.694800px;}
._13{width:8.238000px;}
._2{width:9.954000px;}
._27{width:11.718000px;}
._10{width:23.826000px;}
._a{width:26.334000px;}
._14{width:31.032000px;}
._18{width:37.380000px;}
._15{width:39.107400px;}
._8{width:41.433000px;}
._0{width:42.441000px;}
._12{width:45.840000px;}
._31{width:51.093000px;}
._17{width:59.663400px;}
._29{width:61.593000px;}
._19{width:63.840000px;}
._1a{width:65.625000px;}
._34{width:73.374000px;}
._2e{width:74.928000px;}
._3{width:76.251000px;}
._28{width:77.469000px;}
._20{width:79.317000px;}
._30{width:81.522000px;}
._2d{width:83.034000px;}
._1c{width:84.524400px;}
._35{width:90.636000px;}
._11{width:92.064000px;}
._33{width:112.560000px;}
._2a{width:117.684000px;}
._4{width:127.785000px;}
._5{width:133.770000px;}
._1{width:135.702000px;}
._26{width:138.768000px;}
._2b{width:148.224000px;}
._7{width:168.462000px;}
._1e{width:169.617000px;}
._9{width:185.178000px;}
._e{width:189.714000px;}
._1f{width:200.046000px;}
._1d{width:208.950000px;}
._6{width:224.525400px;}
._f{width:245.766000px;}
._1b{width:254.730000px;}
._21{width:286.293000px;}
._22{width:378.210000px;}
._23{width:7056.774000px;}
.fc2{color:rgb(134,17,65);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(134,16,65);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:108.000000px;}
.fs0{font-size:150.000000px;}
.fs5{font-size:180.000000px;}
.fs1{font-size:210.000000px;}
.fs7{font-size:216.000000px;}
.fs6{font-size:240.000000px;}
.fs2{font-size:420.000000px;}
.fs3{font-size:463.766400px;}
.fs8{font-size:690.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:57.801300px;}
.y1b{bottom:94.752750px;}
.y24{bottom:95.965650px;}
.y20{bottom:98.124450px;}
.y1f{bottom:128.124450px;}
.y23{bottom:133.465650px;}
.y1a{bottom:142.752750px;}
.y1e{bottom:158.124000px;}
.y22{bottom:170.965500px;}
.y19{bottom:172.752000px;}
.y1d{bottom:188.124000px;}
.y1c{bottom:232.275000px;}
.y26{bottom:379.896000px;}
.y25{bottom:385.239000px;}
.y18{bottom:648.838500px;}
.y4c{bottom:651.181500px;}
.y17{bottom:711.838500px;}
.y4b{bottom:714.181500px;}
.y7{bottom:741.730500px;}
.y16{bottom:774.838500px;}
.y4a{bottom:777.181500px;}
.y6{bottom:786.730500px;}
.y5{bottom:831.730500px;}
.y15{bottom:837.838500px;}
.y49{bottom:840.181500px;}
.y4{bottom:876.730500px;}
.y48{bottom:903.181500px;}
.y3{bottom:921.730500px;}
.y47{bottom:966.181500px;}
.y2{bottom:966.730500px;}
.y1{bottom:1011.730500px;}
.y46{bottom:1029.181500px;}
.y45{bottom:1092.181500px;}
.y44{bottom:1155.181500px;}
.y11{bottom:1202.641500px;}
.y43{bottom:1218.181500px;}
.y10{bottom:1265.641500px;}
.y42{bottom:1281.181500px;}
.yf{bottom:1328.641500px;}
.y41{bottom:1344.181500px;}
.ye{bottom:1391.641500px;}
.y40{bottom:1407.181500px;}
.yd{bottom:1454.641500px;}
.y2d{bottom:1482.069000px;}
.yc{bottom:1517.640000px;}
.yb{bottom:1580.640000px;}
.ya{bottom:1643.640000px;}
.y9{bottom:1706.640000px;}
.y8{bottom:1769.640000px;}
.y12{bottom:1896.600000px;}
.y3c{bottom:1919.265000px;}
.y54{bottom:2131.110000px;}
.y3b{bottom:2145.300000px;}
.y53{bottom:2194.110000px;}
.y3a{bottom:2208.300000px;}
.y52{bottom:2257.110000px;}
.y39{bottom:2271.300000px;}
.y51{bottom:2320.110000px;}
.y38{bottom:2334.300000px;}
.y50{bottom:2383.110000px;}
.y37{bottom:2397.300000px;}
.y4f{bottom:2446.110000px;}
.y36{bottom:2460.300000px;}
.y4e{bottom:2509.110000px;}
.y35{bottom:2523.300000px;}
.y4d{bottom:2572.110000px;}
.y34{bottom:2586.300000px;}
.y33{bottom:2649.300000px;}
.y14{bottom:2676.780000px;}
.y32{bottom:2712.300000px;}
.y31{bottom:2775.300000px;}
.y13{bottom:2815.920000px;}
.y30{bottom:2838.300000px;}
.y2f{bottom:2901.300000px;}
.y2e{bottom:2964.300000px;}
.y3e{bottom:3118.320000px;}
.y3d{bottom:3230.820000px;}
.y3f{bottom:3327.120000px;}
.y2c{bottom:3611.640000px;}
.y2b{bottom:3694.140000px;}
.y2a{bottom:3776.640000px;}
.y29{bottom:3859.140000px;}
.y28{bottom:3941.640000px;}
.y27{bottom:4073.280000px;}
.y56{bottom:4476.915000px;}
.y55{bottom:4666.665000px;}
.h7{height:101.196000px;}
.h8{height:101.736000px;}
.h2{height:141.300000px;}
.hd{height:154.617188px;}
.h9{height:171.000000px;}
.h3{height:197.820000px;}
.h4{height:199.500000px;}
.ha{height:226.080000px;}
.hb{height:228.000000px;}
.h6{height:331.973409px;}
.h5{height:395.640000px;}
.he{height:531.300000px;}
.hc{height:779.520000px;}
.h1{height:5055.750000px;}
.h0{height:5055.840000px;}
.w1{width:3576.000000px;}
.w0{width:3576.240000px;}
.x0{left:0.000000px;}
.xc{left:98.214150px;}
.x1{left:106.299150px;}
.xf{left:111.948150px;}
.x2{left:116.987100px;}
.x10{left:155.733000px;}
.xb{left:283.921500px;}
.x14{left:373.711500px;}
.x6{left:543.852000px;}
.x13{left:633.324000px;}
.x5{left:1234.039500px;}
.x4{left:1352.107500px;}
.x8{left:1396.531500px;}
.x7{left:1398.586500px;}
.xd{left:1477.236000px;}
.x3{left:1510.620000px;}
.x15{left:1619.385000px;}
.x11{left:2313.735000px;}
.x9{left:2389.830000px;}
.x12{left:2486.640000px;}
.xa{left:2577.825000px;}
.xe{left:2808.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:341.226667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.026667pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:11.461333pt;}
.ls4{letter-spacing:15.788669pt;}
.ls3{letter-spacing:17.149051pt;}
.ws0{word-spacing:-131.750881pt;}
.ws2{word-spacing:-111.141333pt;}
.ws4{word-spacing:-53.376000pt;}
.ws1{word-spacing:-39.573333pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:49.290133pt;}
._c{margin-left:-17.272722pt;}
._d{margin-left:-16.200906pt;}
._b{margin-left:-11.461333pt;}
._2c{margin-left:-5.080000pt;}
._16{margin-left:-4.096000pt;}
._25{margin-left:-1.717333pt;}
._2f{width:0.896000pt;}
._24{width:4.934400pt;}
._32{width:5.950933pt;}
._13{width:7.322667pt;}
._2{width:8.848000pt;}
._27{width:10.416000pt;}
._10{width:21.178667pt;}
._a{width:23.408000pt;}
._14{width:27.584000pt;}
._18{width:33.226667pt;}
._15{width:34.762133pt;}
._8{width:36.829333pt;}
._0{width:37.725333pt;}
._12{width:40.746667pt;}
._31{width:45.416000pt;}
._17{width:53.034133pt;}
._29{width:54.749333pt;}
._19{width:56.746667pt;}
._1a{width:58.333333pt;}
._34{width:65.221333pt;}
._2e{width:66.602667pt;}
._3{width:67.778667pt;}
._28{width:68.861333pt;}
._20{width:70.504000pt;}
._30{width:72.464000pt;}
._2d{width:73.808000pt;}
._1c{width:75.132800pt;}
._35{width:80.565333pt;}
._11{width:81.834667pt;}
._33{width:100.053333pt;}
._2a{width:104.608000pt;}
._4{width:113.586667pt;}
._5{width:118.906667pt;}
._1{width:120.624000pt;}
._26{width:123.349333pt;}
._2b{width:131.754667pt;}
._7{width:149.744000pt;}
._1e{width:150.770667pt;}
._9{width:164.602667pt;}
._e{width:168.634667pt;}
._1f{width:177.818667pt;}
._1d{width:185.733333pt;}
._6{width:199.578133pt;}
._f{width:218.458667pt;}
._1b{width:226.426667pt;}
._21{width:254.482667pt;}
._22{width:336.186667pt;}
._23{width:6272.688000pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:133.333333pt;}
.fs5{font-size:160.000000pt;}
.fs1{font-size:186.666667pt;}
.fs7{font-size:192.000000pt;}
.fs6{font-size:213.333333pt;}
.fs2{font-size:373.333333pt;}
.fs3{font-size:412.236800pt;}
.fs8{font-size:613.333333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:51.378933pt;}
.y1b{bottom:84.224667pt;}
.y24{bottom:85.302800pt;}
.y20{bottom:87.221733pt;}
.y1f{bottom:113.888400pt;}
.y23{bottom:118.636133pt;}
.y1a{bottom:126.891333pt;}
.y1e{bottom:140.554667pt;}
.y22{bottom:151.969333pt;}
.y19{bottom:153.557333pt;}
.y1d{bottom:167.221333pt;}
.y1c{bottom:206.466667pt;}
.y26{bottom:337.685333pt;}
.y25{bottom:342.434667pt;}
.y18{bottom:576.745333pt;}
.y4c{bottom:578.828000pt;}
.y17{bottom:632.745333pt;}
.y4b{bottom:634.828000pt;}
.y7{bottom:659.316000pt;}
.y16{bottom:688.745333pt;}
.y4a{bottom:690.828000pt;}
.y6{bottom:699.316000pt;}
.y5{bottom:739.316000pt;}
.y15{bottom:744.745333pt;}
.y49{bottom:746.828000pt;}
.y4{bottom:779.316000pt;}
.y48{bottom:802.828000pt;}
.y3{bottom:819.316000pt;}
.y47{bottom:858.828000pt;}
.y2{bottom:859.316000pt;}
.y1{bottom:899.316000pt;}
.y46{bottom:914.828000pt;}
.y45{bottom:970.828000pt;}
.y44{bottom:1026.828000pt;}
.y11{bottom:1069.014667pt;}
.y43{bottom:1082.828000pt;}
.y10{bottom:1125.014667pt;}
.y42{bottom:1138.828000pt;}
.yf{bottom:1181.014667pt;}
.y41{bottom:1194.828000pt;}
.ye{bottom:1237.014667pt;}
.y40{bottom:1250.828000pt;}
.yd{bottom:1293.014667pt;}
.y2d{bottom:1317.394667pt;}
.yc{bottom:1349.013333pt;}
.yb{bottom:1405.013333pt;}
.ya{bottom:1461.013333pt;}
.y9{bottom:1517.013333pt;}
.y8{bottom:1573.013333pt;}
.y12{bottom:1685.866667pt;}
.y3c{bottom:1706.013333pt;}
.y54{bottom:1894.320000pt;}
.y3b{bottom:1906.933333pt;}
.y53{bottom:1950.320000pt;}
.y3a{bottom:1962.933333pt;}
.y52{bottom:2006.320000pt;}
.y39{bottom:2018.933333pt;}
.y51{bottom:2062.320000pt;}
.y38{bottom:2074.933333pt;}
.y50{bottom:2118.320000pt;}
.y37{bottom:2130.933333pt;}
.y4f{bottom:2174.320000pt;}
.y36{bottom:2186.933333pt;}
.y4e{bottom:2230.320000pt;}
.y35{bottom:2242.933333pt;}
.y4d{bottom:2286.320000pt;}
.y34{bottom:2298.933333pt;}
.y33{bottom:2354.933333pt;}
.y14{bottom:2379.360000pt;}
.y32{bottom:2410.933333pt;}
.y31{bottom:2466.933333pt;}
.y13{bottom:2503.040000pt;}
.y30{bottom:2522.933333pt;}
.y2f{bottom:2578.933333pt;}
.y2e{bottom:2634.933333pt;}
.y3e{bottom:2771.840000pt;}
.y3d{bottom:2871.840000pt;}
.y3f{bottom:2957.440000pt;}
.y2c{bottom:3210.346667pt;}
.y2b{bottom:3283.680000pt;}
.y2a{bottom:3357.013333pt;}
.y29{bottom:3430.346667pt;}
.y28{bottom:3503.680000pt;}
.y27{bottom:3620.693333pt;}
.y56{bottom:3979.480000pt;}
.y55{bottom:4148.146667pt;}
.h7{height:89.952000pt;}
.h8{height:90.432000pt;}
.h2{height:125.600000pt;}
.hd{height:137.437500pt;}
.h9{height:152.000000pt;}
.h3{height:175.840000pt;}
.h4{height:177.333333pt;}
.ha{height:200.960000pt;}
.hb{height:202.666667pt;}
.h6{height:295.087475pt;}
.h5{height:351.680000pt;}
.he{height:472.266667pt;}
.hc{height:692.906667pt;}
.h1{height:4494.000000pt;}
.h0{height:4494.080000pt;}
.w1{width:3178.666667pt;}
.w0{width:3178.880000pt;}
.x0{left:0.000000pt;}
.xc{left:87.301467pt;}
.x1{left:94.488133pt;}
.xf{left:99.509467pt;}
.x2{left:103.988533pt;}
.x10{left:138.429333pt;}
.xb{left:252.374667pt;}
.x14{left:332.188000pt;}
.x6{left:483.424000pt;}
.x13{left:562.954667pt;}
.x5{left:1096.924000pt;}
.x4{left:1201.873333pt;}
.x8{left:1241.361333pt;}
.x7{left:1243.188000pt;}
.xd{left:1313.098667pt;}
.x3{left:1342.773333pt;}
.x15{left:1439.453333pt;}
.x11{left:2056.653333pt;}
.x9{left:2124.293333pt;}
.x12{left:2210.346667pt;}
.xa{left:2291.400000pt;}
.xe{left:2496.800000pt;}
}




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