
    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_b32ffb59f4351aaa6390b576.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_caf1fea72fd78f7a1742d132.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e427ef24953df605bd894fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_1e817c7948726da7aa491c7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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:ff6;src:url('chunks/assets/font_6133592d1759a60e6c9e0694.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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:ff7;src:url('chunks/assets/font_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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:ff8;src:url('chunks/assets/font_18f5d8a566ba504069d2b7b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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;}
.ls9{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.156000px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.560000px;}
.lsa{letter-spacing:53.424000px;}
.ls2{letter-spacing:75.749760px;}
.ls1{letter-spacing:111.869760px;}
.ls3{letter-spacing:136.944000px;}
.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:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-3.383040px;}
._6{margin-left:-2.181120px;}
._1{margin-left:-1.140480px;}
._0{width:1.045440px;}
._2{width:2.376000px;}
._e{width:3.486240px;}
._3{width:4.864800px;}
._5{width:6.790080px;}
._4{width:7.992480px;}
._18{width:9.177120px;}
._13{width:10.860480px;}
._8{width:12.091680px;}
._7{width:13.608000px;}
._f{width:15.264000px;}
._c{width:16.272000px;}
._b{width:19.463040px;}
._1e{width:20.516160px;}
._19{width:21.532800px;}
._1a{width:23.114880px;}
._1c{width:24.412800px;}
._1b{width:25.506240px;}
._a{width:27.381120px;}
._9{width:28.512000px;}
._1d{width:29.759040px;}
._15{width:32.177760px;}
._14{width:33.214080px;}
._1f{width:34.551360px;}
._20{width:35.744640px;}
._17{width:41.490240px;}
._16{width:43.221120px;}
._11{width:45.741120px;}
._12{width:47.554560px;}
._10{width:48.600000px;}
.fc7{color:rgb(91,155,213);}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc1{color:rgb(47,84,150);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y2{bottom:-16.155000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.760000px;}
.y22{bottom:6.150000px;}
.y5{bottom:10.800000px;}
.y6{bottom:11.520000px;}
.y11{bottom:28.470000px;}
.y10{bottom:50.790000px;}
.y7{bottom:51.876000px;}
.y4{bottom:68.796000px;}
.yf{bottom:72.750000px;}
.y21{bottom:73.110000px;}
.y20{bottom:95.430000px;}
.y1f{bottom:117.750000px;}
.y5d{bottom:137.952000px;}
.y1e{bottom:140.100000px;}
.y5c{bottom:161.715000px;}
.y1d{bottom:162.420000px;}
.y31{bottom:173.595000px;}
.y1c{bottom:184.740000px;}
.y5b{bottom:185.475000px;}
.y88{bottom:187.635000px;}
.y30{bottom:197.355000px;}
.y1b{bottom:207.060000px;}
.y5a{bottom:209.235000px;}
.y87{bottom:211.395000px;}
.y2f{bottom:221.115000px;}
.y1a{bottom:229.380000px;}
.y59{bottom:232.995000px;}
.y86{bottom:235.155000px;}
.y2e{bottom:244.875000px;}
.y19{bottom:251.700000px;}
.y58{bottom:256.755000px;}
.y85{bottom:258.915000px;}
.y2d{bottom:269.025000px;}
.y18{bottom:274.065000px;}
.y57{bottom:280.545000px;}
.y84{bottom:282.705000px;}
.y2c{bottom:292.785000px;}
.y17{bottom:296.385000px;}
.y56{bottom:304.305000px;}
.y83{bottom:306.465000px;}
.y2b{bottom:316.545000px;}
.y16{bottom:318.705000px;}
.y55{bottom:328.425000px;}
.y82{bottom:330.585000px;}
.y2a{bottom:340.305000px;}
.y54{bottom:352.185000px;}
.y81{bottom:354.345000px;}
.y29{bottom:364.065000px;}
.y53{bottom:375.945000px;}
.y80{bottom:378.105000px;}
.y28{bottom:387.825000px;}
.y52{bottom:399.750000px;}
.y7f{bottom:401.910000px;}
.y27{bottom:411.630000px;}
.y51{bottom:423.510000px;}
.y7e{bottom:425.670000px;}
.y26{bottom:435.390000px;}
.y6b{bottom:442.950000px;}
.y50{bottom:447.270000px;}
.y7d{bottom:449.430000px;}
.y25{bottom:459.150000px;}
.y6a{bottom:462.390000px;}
.y4f{bottom:471.030000px;}
.y7c{bottom:473.190000px;}
.y24{bottom:483.270000px;}
.y4e{bottom:494.790000px;}
.y7b{bottom:496.950000px;}
.y23{bottom:507.030000px;}
.y4d{bottom:518.910000px;}
.y7a{bottom:521.070000px;}
.y15{bottom:523.230000px;}
.y4c{bottom:542.700000px;}
.y79{bottom:544.860000px;}
.y4b{bottom:566.460000px;}
.y78{bottom:568.620000px;}
.y4a{bottom:590.220000px;}
.y77{bottom:592.380000px;}
.y49{bottom:613.980000px;}
.y76{bottom:616.140000px;}
.y48{bottom:637.740000px;}
.y75{bottom:639.900000px;}
.y47{bottom:661.530000px;}
.y74{bottom:663.690000px;}
.y46{bottom:685.290000px;}
.y73{bottom:687.450000px;}
.y45{bottom:709.050000px;}
.y72{bottom:711.210000px;}
.y44{bottom:733.170000px;}
.y71{bottom:735.330000px;}
.y43{bottom:756.930000px;}
.y70{bottom:759.090000px;}
.y42{bottom:780.690000px;}
.y6f{bottom:782.850000px;}
.y41{bottom:804.495000px;}
.y6e{bottom:806.655000px;}
.y40{bottom:828.255000px;}
.y6d{bottom:830.415000px;}
.y69{bottom:840.135000px;}
.y6c{bottom:850.215000px;}
.y3f{bottom:852.015000px;}
.y68{bottom:863.895000px;}
.y14{bottom:866.055000px;}
.y3e{bottom:875.775000px;}
.y67{bottom:887.655000px;}
.y13{bottom:889.815000px;}
.y3d{bottom:899.535000px;}
.ye{bottom:906.015000px;}
.y66{bottom:911.415000px;}
.y3c{bottom:923.655000px;}
.y65{bottom:935.205000px;}
.y3b{bottom:947.445000px;}
.y64{bottom:958.965000px;}
.y3a{bottom:971.205000px;}
.y63{bottom:983.085000px;}
.y39{bottom:994.965000px;}
.yd{bottom:1002.885000px;}
.y62{bottom:1006.845000px;}
.y38{bottom:1018.725000px;}
.yc{bottom:1028.445000px;}
.y61{bottom:1030.605000px;}
.y37{bottom:1042.485000px;}
.y60{bottom:1054.365000px;}
.yb{bottom:1060.125000px;}
.y36{bottom:1066.290000px;}
.y5f{bottom:1078.170000px;}
.y35{bottom:1090.050000px;}
.ya{bottom:1091.850000px;}
.y5e{bottom:1113.810000px;}
.y34{bottom:1114.170000px;}
.y9{bottom:1123.890000px;}
.y89{bottom:1137.570000px;}
.y33{bottom:1137.930000px;}
.y8{bottom:1155.570000px;}
.y32{bottom:1161.690000px;}
.y1{bottom:1190.085000px;}
.y3{bottom:1200.600000px;}
.h2{height:0.036003px;}
.h5{height:27.000000px;}
.h4{height:33.528516px;}
.h3{height:50.273438px;}
.h9{height:50.800781px;}
.hb{height:51.996094px;}
.hd{height:52.417969px;}
.ha{height:59.343750px;}
.h6{height:65.884219px;}
.h7{height:68.073047px;}
.h8{height:89.316000px;}
.hc{height:334.905000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:105.516000px;}
.w6{width:305.430000px;}
.w4{width:305.745000px;}
.w7{width:419.580000px;}
.w8{width:714.525000px;}
.w1{width:892.500000px;}
.w2{width:892.799973px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:4.680000px;}
.x6{left:7.560000px;}
.x12{left:57.996000px;}
.xe{left:62.310000px;}
.x3{left:87.516000px;}
.x11{left:91.116000px;}
.x8{left:95.795987px;}
.x10{left:113.430000px;}
.xa{left:120.995987px;}
.x18{left:127.835987px;}
.x14{left:149.111987px;}
.xd{left:153.780000px;}
.x2{left:179.354987px;}
.xf{left:231.945000px;}
.xb{left:294.944987px;}
.x4{left:297.834000px;}
.xc{left:382.830000px;}
.x17{left:386.069987px;}
.x5{left:393.990000px;}
.x1{left:437.579973px;}
.x9{left:446.579987px;}
.x7{left:500.220000px;}
.x16{left:697.964987px;}
.x15{left:745.124987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.138667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.386667pt;}
.lsa{letter-spacing:47.488000pt;}
.ls2{letter-spacing:67.333120pt;}
.ls1{letter-spacing:99.439787pt;}
.ls3{letter-spacing:121.728000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-3.007147pt;}
._6{margin-left:-1.938773pt;}
._1{margin-left:-1.013760pt;}
._0{width:0.929280pt;}
._2{width:2.112000pt;}
._e{width:3.098880pt;}
._3{width:4.324267pt;}
._5{width:6.035627pt;}
._4{width:7.104427pt;}
._18{width:8.157440pt;}
._13{width:9.653760pt;}
._8{width:10.748160pt;}
._7{width:12.096000pt;}
._f{width:13.568000pt;}
._c{width:14.464000pt;}
._b{width:17.300480pt;}
._1e{width:18.236587pt;}
._19{width:19.140267pt;}
._1a{width:20.546560pt;}
._1c{width:21.700267pt;}
._1b{width:22.672213pt;}
._a{width:24.338773pt;}
._9{width:25.344000pt;}
._1d{width:26.452480pt;}
._15{width:28.602453pt;}
._14{width:29.523627pt;}
._1f{width:30.712320pt;}
._20{width:31.773013pt;}
._17{width:36.880213pt;}
._16{width:38.418773pt;}
._11{width:40.658773pt;}
._12{width:42.270720pt;}
._10{width:43.200000pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y2{bottom:-14.360000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:5.120000pt;}
.y22{bottom:5.466667pt;}
.y5{bottom:9.600000pt;}
.y6{bottom:10.240000pt;}
.y11{bottom:25.306667pt;}
.y10{bottom:45.146667pt;}
.y7{bottom:46.112000pt;}
.y4{bottom:61.152000pt;}
.yf{bottom:64.666667pt;}
.y21{bottom:64.986667pt;}
.y20{bottom:84.826667pt;}
.y1f{bottom:104.666667pt;}
.y5d{bottom:122.624000pt;}
.y1e{bottom:124.533333pt;}
.y5c{bottom:143.746667pt;}
.y1d{bottom:144.373333pt;}
.y31{bottom:154.306667pt;}
.y1c{bottom:164.213333pt;}
.y5b{bottom:164.866667pt;}
.y88{bottom:166.786667pt;}
.y30{bottom:175.426667pt;}
.y1b{bottom:184.053333pt;}
.y5a{bottom:185.986667pt;}
.y87{bottom:187.906667pt;}
.y2f{bottom:196.546667pt;}
.y1a{bottom:203.893333pt;}
.y59{bottom:207.106667pt;}
.y86{bottom:209.026667pt;}
.y2e{bottom:217.666667pt;}
.y19{bottom:223.733333pt;}
.y58{bottom:228.226667pt;}
.y85{bottom:230.146667pt;}
.y2d{bottom:239.133333pt;}
.y18{bottom:243.613333pt;}
.y57{bottom:249.373333pt;}
.y84{bottom:251.293333pt;}
.y2c{bottom:260.253333pt;}
.y17{bottom:263.453333pt;}
.y56{bottom:270.493333pt;}
.y83{bottom:272.413333pt;}
.y2b{bottom:281.373333pt;}
.y16{bottom:283.293333pt;}
.y55{bottom:291.933333pt;}
.y82{bottom:293.853333pt;}
.y2a{bottom:302.493333pt;}
.y54{bottom:313.053333pt;}
.y81{bottom:314.973333pt;}
.y29{bottom:323.613333pt;}
.y53{bottom:334.173333pt;}
.y80{bottom:336.093333pt;}
.y28{bottom:344.733333pt;}
.y52{bottom:355.333333pt;}
.y7f{bottom:357.253333pt;}
.y27{bottom:365.893333pt;}
.y51{bottom:376.453333pt;}
.y7e{bottom:378.373333pt;}
.y26{bottom:387.013333pt;}
.y6b{bottom:393.733333pt;}
.y50{bottom:397.573333pt;}
.y7d{bottom:399.493333pt;}
.y25{bottom:408.133333pt;}
.y6a{bottom:411.013333pt;}
.y4f{bottom:418.693333pt;}
.y7c{bottom:420.613333pt;}
.y24{bottom:429.573333pt;}
.y4e{bottom:439.813333pt;}
.y7b{bottom:441.733333pt;}
.y23{bottom:450.693333pt;}
.y4d{bottom:461.253333pt;}
.y7a{bottom:463.173333pt;}
.y15{bottom:465.093333pt;}
.y4c{bottom:482.400000pt;}
.y79{bottom:484.320000pt;}
.y4b{bottom:503.520000pt;}
.y78{bottom:505.440000pt;}
.y4a{bottom:524.640000pt;}
.y77{bottom:526.560000pt;}
.y49{bottom:545.760000pt;}
.y76{bottom:547.680000pt;}
.y48{bottom:566.880000pt;}
.y75{bottom:568.800000pt;}
.y47{bottom:588.026667pt;}
.y74{bottom:589.946667pt;}
.y46{bottom:609.146667pt;}
.y73{bottom:611.066667pt;}
.y45{bottom:630.266667pt;}
.y72{bottom:632.186667pt;}
.y44{bottom:651.706667pt;}
.y71{bottom:653.626667pt;}
.y43{bottom:672.826667pt;}
.y70{bottom:674.746667pt;}
.y42{bottom:693.946667pt;}
.y6f{bottom:695.866667pt;}
.y41{bottom:715.106667pt;}
.y6e{bottom:717.026667pt;}
.y40{bottom:736.226667pt;}
.y6d{bottom:738.146667pt;}
.y69{bottom:746.786667pt;}
.y6c{bottom:755.746667pt;}
.y3f{bottom:757.346667pt;}
.y68{bottom:767.906667pt;}
.y14{bottom:769.826667pt;}
.y3e{bottom:778.466667pt;}
.y67{bottom:789.026667pt;}
.y13{bottom:790.946667pt;}
.y3d{bottom:799.586667pt;}
.ye{bottom:805.346667pt;}
.y66{bottom:810.146667pt;}
.y3c{bottom:821.026667pt;}
.y65{bottom:831.293333pt;}
.y3b{bottom:842.173333pt;}
.y64{bottom:852.413333pt;}
.y3a{bottom:863.293333pt;}
.y63{bottom:873.853333pt;}
.y39{bottom:884.413333pt;}
.yd{bottom:891.453333pt;}
.y62{bottom:894.973333pt;}
.y38{bottom:905.533333pt;}
.yc{bottom:914.173333pt;}
.y61{bottom:916.093333pt;}
.y37{bottom:926.653333pt;}
.y60{bottom:937.213333pt;}
.yb{bottom:942.333333pt;}
.y36{bottom:947.813333pt;}
.y5f{bottom:958.373333pt;}
.y35{bottom:968.933333pt;}
.ya{bottom:970.533333pt;}
.y5e{bottom:990.053333pt;}
.y34{bottom:990.373333pt;}
.y9{bottom:999.013333pt;}
.y89{bottom:1011.173333pt;}
.y33{bottom:1011.493333pt;}
.y8{bottom:1027.173333pt;}
.y32{bottom:1032.613333pt;}
.y1{bottom:1057.853333pt;}
.y3{bottom:1067.200000pt;}
.h2{height:0.032003pt;}
.h5{height:24.000000pt;}
.h4{height:29.803125pt;}
.h3{height:44.687500pt;}
.h9{height:45.156250pt;}
.hb{height:46.218750pt;}
.hd{height:46.593750pt;}
.ha{height:52.750000pt;}
.h6{height:58.563750pt;}
.h7{height:60.509375pt;}
.h8{height:79.392000pt;}
.hc{height:297.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:93.792000pt;}
.w6{width:271.493333pt;}
.w4{width:271.773333pt;}
.w7{width:372.960000pt;}
.w8{width:635.133333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599976pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:4.160000pt;}
.x6{left:6.720000pt;}
.x12{left:51.552000pt;}
.xe{left:55.386667pt;}
.x3{left:77.792000pt;}
.x11{left:80.992000pt;}
.x8{left:85.151988pt;}
.x10{left:100.826667pt;}
.xa{left:107.551988pt;}
.x18{left:113.631988pt;}
.x14{left:132.543988pt;}
.xd{left:136.693333pt;}
.x2{left:159.426655pt;}
.xf{left:206.173333pt;}
.xb{left:262.173322pt;}
.x4{left:264.741333pt;}
.xc{left:340.293333pt;}
.x17{left:343.173322pt;}
.x5{left:350.213333pt;}
.x1{left:388.959976pt;}
.x9{left:396.959988pt;}
.x7{left:444.640000pt;}
.x16{left:620.413322pt;}
.x15{left:662.333322pt;}
}




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