
    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_01b17644981102a1f97a86b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_e93f725c2c19e5f388805589.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_65079442cfb960ca89e6db09.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_821eee0d3f252885b0e1e8ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_78b47b5d4e00318609a20883.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8d5e09accdedfeee27eb4af5.woff2')format("woff");}.ff7{font-family:ff7;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);}
.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);}
.v1{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.262200px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:34.865280px;}
.ls8{letter-spacing:38.465280px;}
.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;}
}
.ws6{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.297800px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-4.621920px;}
._11{margin-left:-3.395040px;}
._4{margin-left:-2.390400px;}
._2{margin-left:-1.254240px;}
._0{width:1.075680px;}
._1{width:2.203200px;}
._a{width:4.009920px;}
._9{width:5.438160px;}
._8{width:6.752880px;}
._f{width:7.966560px;}
._6{width:9.143280px;}
._5{width:10.458000px;}
._c{width:11.593440px;}
._10{width:12.682080px;}
._d{width:13.685040px;}
._14{width:14.881680px;}
._7{width:16.015680px;}
._b{width:17.390160px;}
._18{width:18.725760px;}
._15{width:19.872000px;}
._1e{width:20.901600px;}
._16{width:21.931200px;}
._1a{width:23.086080px;}
._19{width:25.038720px;}
._1d{width:26.160480px;}
._17{width:27.351360px;}
._13{width:28.611360px;}
._12{width:29.869920px;}
._1f{width:31.397760px;}
._1b{width:32.722560px;}
._1c{width:33.910560px;}
._23{width:35.239200px;}
._21{width:40.141440px;}
._22{width:41.798880px;}
._20{width:63.412320px;}
._3{width:1254.328800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.120000px;}
.y6{bottom:56.340000px;}
.y5{bottom:70.956000px;}
.y4{bottom:89.136000px;}
.y6d{bottom:113.796000px;}
.y6c{bottom:135.576000px;}
.y3d{bottom:137.016000px;}
.y6b{bottom:157.350000px;}
.y3c{bottom:158.790000px;}
.y6a{bottom:179.130000px;}
.y3b{bottom:180.570000px;}
.y69{bottom:201.090000px;}
.y3a{bottom:202.350000px;}
.y68{bottom:222.870000px;}
.y39{bottom:224.130000px;}
.y67{bottom:244.650000px;}
.y38{bottom:246.090000px;}
.y66{bottom:266.430000px;}
.y37{bottom:267.870000px;}
.y65{bottom:288.210000px;}
.y36{bottom:289.650000px;}
.y64{bottom:310.170000px;}
.y35{bottom:311.430000px;}
.y63{bottom:331.950000px;}
.y34{bottom:333.390000px;}
.y62{bottom:353.775000px;}
.y33{bottom:355.215000px;}
.y61{bottom:375.555000px;}
.y32{bottom:376.995000px;}
.y60{bottom:397.515000px;}
.y31{bottom:398.775000px;}
.y5f{bottom:419.295000px;}
.y30{bottom:420.555000px;}
.y5e{bottom:441.075000px;}
.y2f{bottom:442.515000px;}
.y2e{bottom:460.515000px;}
.y5d{bottom:462.855000px;}
.y2d{bottom:474.195000px;}
.y5c{bottom:484.635000px;}
.y2c{bottom:489.135000px;}
.y5b{bottom:506.595000px;}
.y2b{bottom:507.675000px;}
.y2a{bottom:524.955000px;}
.y5a{bottom:528.375000px;}
.y29{bottom:542.235000px;}
.y59{bottom:550.155000px;}
.y28{bottom:559.515000px;}
.y58{bottom:571.935000px;}
.y27{bottom:576.795000px;}
.y57{bottom:593.895000px;}
.y26{bottom:594.075000px;}
.y25{bottom:611.205000px;}
.y56{bottom:615.705000px;}
.y24{bottom:628.485000px;}
.y55{bottom:637.485000px;}
.y23{bottom:645.765000px;}
.y54{bottom:659.265000px;}
.y22{bottom:663.045000px;}
.y21{bottom:680.325000px;}
.y53{bottom:681.045000px;}
.y20{bottom:697.425000px;}
.y52{bottom:703.005000px;}
.y1f{bottom:714.705000px;}
.y51{bottom:724.785000px;}
.y1e{bottom:731.985000px;}
.y50{bottom:746.565000px;}
.y1d{bottom:749.265000px;}
.y1c{bottom:766.545000px;}
.y4f{bottom:768.345000px;}
.y1b{bottom:783.825000px;}
.y4e{bottom:790.125000px;}
.y1a{bottom:800.925000px;}
.y4d{bottom:812.085000px;}
.y19{bottom:818.205000px;}
.y4c{bottom:833.865000px;}
.y18{bottom:835.485000px;}
.y17{bottom:852.765000px;}
.y4b{bottom:855.645000px;}
.y16{bottom:870.045000px;}
.y4a{bottom:877.470000px;}
.y15{bottom:887.370000px;}
.y49{bottom:899.430000px;}
.y14{bottom:904.470000px;}
.y48{bottom:921.210000px;}
.y13{bottom:922.290000px;}
.y12{bottom:940.830000px;}
.y47{bottom:942.990000px;}
.y11{bottom:963.150000px;}
.y46{bottom:964.770000px;}
.y10{bottom:981.690000px;}
.y45{bottom:986.550000px;}
.yf{bottom:1000.590000px;}
.y44{bottom:1008.510000px;}
.ye{bottom:1014.090000px;}
.y43{bottom:1030.290000px;}
.yd{bottom:1036.590000px;}
.y42{bottom:1052.070000px;}
.yc{bottom:1057.290000px;}
.yb{bottom:1071.870000px;}
.y41{bottom:1073.850000px;}
.ya{bottom:1089.150000px;}
.y40{bottom:1095.810000px;}
.y9{bottom:1106.430000px;}
.y3f{bottom:1117.590000px;}
.y8{bottom:1123.530000px;}
.y3e{bottom:1139.400000px;}
.y7{bottom:1140.840000px;}
.y3{bottom:1170.000000px;}
.y1{bottom:1184.040000px;}
.h2{height:23.220000px;}
.hb{height:27.147656px;}
.h9{height:29.158594px;}
.ha{height:29.464453px;}
.hf{height:33.683203px;}
.h7{height:34.036523px;}
.h5{height:36.768867px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.h3{height:43.156758px;}
.hc{height:45.549492px;}
.he{height:46.251562px;}
.h10{height:46.736719px;}
.hd{height:47.836406px;}
.h12{height:48.224531px;}
.h11{height:50.488594px;}
.h8{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:606.165000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:11.520000px;}
.x1{left:108.036000px;}
.xb{left:122.615987px;}
.xe{left:129.275987px;}
.xf{left:135.035987px;}
.x7{left:138.815987px;}
.x10{left:140.075987px;}
.x3{left:161.130000px;}
.x9{left:269.489987px;}
.x8{left:292.934987px;}
.xa{left:363.674987px;}
.xd{left:419.654987px;}
.xc{left:420.734987px;}
.x6{left:446.474987px;}
.x5{left:785.129987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:30.991360pt;}
.ls8{letter-spacing:34.191360pt;}
.ws6{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.486933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-4.108373pt;}
._11{margin-left:-3.017813pt;}
._4{margin-left:-2.124800pt;}
._2{margin-left:-1.114880pt;}
._0{width:0.956160pt;}
._1{width:1.958400pt;}
._a{width:3.564373pt;}
._9{width:4.833920pt;}
._8{width:6.002560pt;}
._f{width:7.081387pt;}
._6{width:8.127360pt;}
._5{width:9.296000pt;}
._c{width:10.305280pt;}
._10{width:11.272960pt;}
._d{width:12.164480pt;}
._14{width:13.228160pt;}
._7{width:14.236160pt;}
._b{width:15.457920pt;}
._18{width:16.645120pt;}
._15{width:17.664000pt;}
._1e{width:18.579200pt;}
._16{width:19.494400pt;}
._1a{width:20.520960pt;}
._19{width:22.256640pt;}
._1d{width:23.253760pt;}
._17{width:24.312320pt;}
._13{width:25.432320pt;}
._12{width:26.551040pt;}
._1f{width:27.909120pt;}
._1b{width:29.086720pt;}
._1c{width:30.142720pt;}
._23{width:31.323733pt;}
._21{width:35.681280pt;}
._22{width:37.154560pt;}
._20{width:56.366507pt;}
._3{width:1114.958933pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.440000pt;}
.y6{bottom:50.080000pt;}
.y5{bottom:63.072000pt;}
.y4{bottom:79.232000pt;}
.y6d{bottom:101.152000pt;}
.y6c{bottom:120.512000pt;}
.y3d{bottom:121.792000pt;}
.y6b{bottom:139.866667pt;}
.y3c{bottom:141.146667pt;}
.y6a{bottom:159.226667pt;}
.y3b{bottom:160.506667pt;}
.y69{bottom:178.746667pt;}
.y3a{bottom:179.866667pt;}
.y68{bottom:198.106667pt;}
.y39{bottom:199.226667pt;}
.y67{bottom:217.466667pt;}
.y38{bottom:218.746667pt;}
.y66{bottom:236.826667pt;}
.y37{bottom:238.106667pt;}
.y65{bottom:256.186667pt;}
.y36{bottom:257.466667pt;}
.y64{bottom:275.706667pt;}
.y35{bottom:276.826667pt;}
.y63{bottom:295.066667pt;}
.y34{bottom:296.346667pt;}
.y62{bottom:314.466667pt;}
.y33{bottom:315.746667pt;}
.y61{bottom:333.826667pt;}
.y32{bottom:335.106667pt;}
.y60{bottom:353.346667pt;}
.y31{bottom:354.466667pt;}
.y5f{bottom:372.706667pt;}
.y30{bottom:373.826667pt;}
.y5e{bottom:392.066667pt;}
.y2f{bottom:393.346667pt;}
.y2e{bottom:409.346667pt;}
.y5d{bottom:411.426667pt;}
.y2d{bottom:421.506667pt;}
.y5c{bottom:430.786667pt;}
.y2c{bottom:434.786667pt;}
.y5b{bottom:450.306667pt;}
.y2b{bottom:451.266667pt;}
.y2a{bottom:466.626667pt;}
.y5a{bottom:469.666667pt;}
.y29{bottom:481.986667pt;}
.y59{bottom:489.026667pt;}
.y28{bottom:497.346667pt;}
.y58{bottom:508.386667pt;}
.y27{bottom:512.706667pt;}
.y57{bottom:527.906667pt;}
.y26{bottom:528.066667pt;}
.y25{bottom:543.293333pt;}
.y56{bottom:547.293333pt;}
.y24{bottom:558.653333pt;}
.y55{bottom:566.653333pt;}
.y23{bottom:574.013333pt;}
.y54{bottom:586.013333pt;}
.y22{bottom:589.373333pt;}
.y21{bottom:604.733333pt;}
.y53{bottom:605.373333pt;}
.y20{bottom:619.933333pt;}
.y52{bottom:624.893333pt;}
.y1f{bottom:635.293333pt;}
.y51{bottom:644.253333pt;}
.y1e{bottom:650.653333pt;}
.y50{bottom:663.613333pt;}
.y1d{bottom:666.013333pt;}
.y1c{bottom:681.373333pt;}
.y4f{bottom:682.973333pt;}
.y1b{bottom:696.733333pt;}
.y4e{bottom:702.333333pt;}
.y1a{bottom:711.933333pt;}
.y4d{bottom:721.853333pt;}
.y19{bottom:727.293333pt;}
.y4c{bottom:741.213333pt;}
.y18{bottom:742.653333pt;}
.y17{bottom:758.013333pt;}
.y4b{bottom:760.573333pt;}
.y16{bottom:773.373333pt;}
.y4a{bottom:779.973333pt;}
.y15{bottom:788.773333pt;}
.y49{bottom:799.493333pt;}
.y14{bottom:803.973333pt;}
.y48{bottom:818.853333pt;}
.y13{bottom:819.813333pt;}
.y12{bottom:836.293333pt;}
.y47{bottom:838.213333pt;}
.y11{bottom:856.133333pt;}
.y46{bottom:857.573333pt;}
.y10{bottom:872.613333pt;}
.y45{bottom:876.933333pt;}
.yf{bottom:889.413333pt;}
.y44{bottom:896.453333pt;}
.ye{bottom:901.413333pt;}
.y43{bottom:915.813333pt;}
.yd{bottom:921.413333pt;}
.y42{bottom:935.173333pt;}
.yc{bottom:939.813333pt;}
.yb{bottom:952.773333pt;}
.y41{bottom:954.533333pt;}
.ya{bottom:968.133333pt;}
.y40{bottom:974.053333pt;}
.y9{bottom:983.493333pt;}
.y3f{bottom:993.413333pt;}
.y8{bottom:998.693333pt;}
.y3e{bottom:1012.800000pt;}
.y7{bottom:1014.080000pt;}
.y3{bottom:1040.000000pt;}
.y1{bottom:1052.480000pt;}
.h2{height:20.640000pt;}
.hb{height:24.131250pt;}
.h9{height:25.918750pt;}
.ha{height:26.190625pt;}
.hf{height:29.940625pt;}
.h7{height:30.254687pt;}
.h5{height:32.683437pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.h3{height:38.361562pt;}
.hc{height:40.488438pt;}
.he{height:41.112500pt;}
.h10{height:41.543750pt;}
.hd{height:42.521250pt;}
.h12{height:42.866250pt;}
.h11{height:44.878750pt;}
.h8{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:538.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:10.240000pt;}
.x1{left:96.032000pt;}
.xb{left:108.991988pt;}
.xe{left:114.911988pt;}
.xf{left:120.031988pt;}
.x7{left:123.391988pt;}
.x10{left:124.511988pt;}
.x3{left:143.226667pt;}
.x9{left:239.546655pt;}
.x8{left:260.386655pt;}
.xa{left:323.266655pt;}
.xd{left:373.026655pt;}
.xc{left:373.986655pt;}
.x6{left:396.866655pt;}
.x5{left:697.893322pt;}
}




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