
    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_3bc50400e3d365077a258e10.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_1092701534c5c3191796d33e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_a50bc8c11094fbcc59d7a53a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_14e8be9dfe3e3f3acd58c683.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_81155bb5c3f1e8b1f86eb9ad.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700195;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_4bf6b081c75750ac6ee70fc0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.688477;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);}
.v4{vertical-align:-59.052000px;}
.v5{vertical-align:-11.712000px;}
.v2{vertical-align:-10.098000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:48.954000px;}
.v1{vertical-align:52.248000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017106px;}
.ls2{letter-spacing:0.037608px;}
.ls3{letter-spacing:0.179982px;}
.ls1{letter-spacing:0.304560px;}
.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;}
}
.ws1{word-spacing:-42.542214px;}
.ws0{word-spacing:-39.902958px;}
.ws2{word-spacing:-23.096814px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-28.772076px;}
._5{margin-left:-23.756760px;}
._4{margin-left:-19.269372px;}
._2c{margin-left:-17.354766px;}
._e{margin-left:-16.279692px;}
._25{margin-left:-10.804050px;}
._6{margin-left:-9.238740px;}
._9{margin-left:-7.992000px;}
._3{margin-left:-6.120918px;}
._1c{margin-left:-4.322592px;}
._15{margin-left:-2.692302px;}
._d{margin-left:-1.075074px;}
._1b{width:1.079028px;}
._33{width:2.279154px;}
._c{width:3.532386px;}
._16{width:4.534638px;}
._1{width:5.760864px;}
._f{width:7.447188px;}
._7{width:9.392256px;}
._1a{width:10.804050px;}
._1f{width:12.244590px;}
._27{width:13.895616px;}
._10{width:15.358200px;}
._2b{width:17.508348px;}
._17{width:19.303236px;}
._2{width:20.523078px;}
._a{width:22.730136px;}
._b{width:23.958792px;}
._21{width:25.451730px;}
._26{width:27.370260px;}
._24{width:28.522692px;}
._1e{width:30.257334px;}
._1d{width:31.328748px;}
._19{width:33.292122px;}
._18{width:34.353882px;}
._32{width:35.517804px;}
._35{width:36.552516px;}
._12{width:37.781172px;}
._3a{width:38.811684px;}
._13{width:40.084902px;}
._11{width:41.159976px;}
._34{width:43.770870px;}
._39{width:47.537820px;}
._38{width:49.266468px;}
._28{width:51.427278px;}
._37{width:53.155926px;}
._14{width:56.518176px;}
._2e{width:59.743398px;}
._2d{width:62.200710px;}
._23{width:66.552948px;}
._22{width:68.857812px;}
._20{width:74.475918px;}
._2f{width:85.391592px;}
._30{width:86.466666px;}
._2a{width:98.496000px;}
._31{width:114.725754px;}
._29{width:125.064000px;}
._36{width:131.312610px;}
._0{width:6258.643500px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(102,153,153);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:60.036000px;}
.fsa{font-size:83.382000px;}
.fs0{font-size:84.018000px;}
.fs9{font-size:88.740000px;}
.fsc{font-size:97.122000px;}
.fs6{font-size:122.454000px;}
.fs5{font-size:144.054000px;}
.fs4{font-size:153.582000px;}
.fs8{font-size:155.964000px;}
.fsb{font-size:168.036000px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:263.964000px;}
.fs1{font-size:360.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2a{bottom:54.466500px;}
.y6a{bottom:62.035500px;}
.y29{bottom:71.220000px;}
.y69{bottom:78.789000px;}
.y1e{bottom:85.336500px;}
.y28{bottom:87.972000px;}
.y68{bottom:95.541000px;}
.y27{bottom:104.725500px;}
.y67{bottom:112.294500px;}
.y26{bottom:121.477500px;}
.y1d{bottom:125.475000px;}
.y66{bottom:129.046500px;}
.y25{bottom:138.231000px;}
.y65{bottom:145.800000px;}
.y24{bottom:154.983000px;}
.y64{bottom:162.552000px;}
.y1c{bottom:165.613500px;}
.y23{bottom:171.736500px;}
.y63{bottom:179.305500px;}
.y22{bottom:188.488500px;}
.y62{bottom:196.057500px;}
.y21{bottom:205.242000px;}
.y61{bottom:212.811000px;}
.y20{bottom:221.994000px;}
.y60{bottom:246.316500px;}
.y1f{bottom:255.501000px;}
.y5f{bottom:441.439500px;}
.y2{bottom:466.228500px;}
.y5e{bottom:484.299000px;}
.y5d{bottom:527.158500px;}
.y5c{bottom:570.018000px;}
.y5b{bottom:612.877500px;}
.y5a{bottom:655.738500px;}
.y59{bottom:698.598000px;}
.y94{bottom:705.954000px;}
.y58{bottom:741.457500px;}
.y93{bottom:746.092500px;}
.y57{bottom:784.317000px;}
.y92{bottom:1070.815500px;}
.y91{bottom:1110.954000px;}
.y90{bottom:1151.092500px;}
.y8f{bottom:1191.231000px;}
.y8e{bottom:1231.369500px;}
.y8d{bottom:1271.508000px;}
.y8c{bottom:1311.646500px;}
.y8b{bottom:1351.785000px;}
.y56{bottom:1452.217500px;}
.y55{bottom:1495.077000px;}
.y41{bottom:1509.363000px;}
.y54{bottom:1537.936500px;}
.y40{bottom:1549.501500px;}
.y53{bottom:1580.796000px;}
.y3f{bottom:1589.640000px;}
.y52{bottom:1623.655500px;}
.y3e{bottom:1633.734000px;}
.y51{bottom:1666.516500px;}
.y50{bottom:1709.376000px;}
.y3d{bottom:1744.752000px;}
.y3c{bottom:1784.890500px;}
.y4f{bottom:1812.954000px;}
.y3b{bottom:1825.029000px;}
.y4e{bottom:1855.813500px;}
.y3a{bottom:1865.167500px;}
.y4d{bottom:1898.673000px;}
.y39{bottom:1905.306000px;}
.y4c{bottom:1941.534000px;}
.y38{bottom:1945.444500px;}
.y4b{bottom:1984.393500px;}
.y37{bottom:1985.583000px;}
.y36{bottom:2025.723000px;}
.y4a{bottom:2027.253000px;}
.y35{bottom:2065.861500px;}
.y49{bottom:2070.112500px;}
.y34{bottom:2109.954000px;}
.y48{bottom:2112.972000px;}
.y47{bottom:2155.833000px;}
.y46{bottom:2198.692500px;}
.y45{bottom:2287.813500px;}
.y44{bottom:2348.277000px;}
.y8a{bottom:2392.411500px;}
.y43{bottom:2408.739000px;}
.y89{bottom:2432.550000px;}
.y88{bottom:2472.688500px;}
.y87{bottom:2512.828500px;}
.y86{bottom:2552.967000px;}
.y85{bottom:2593.105500px;}
.y83{bottom:2600.631000px;}
.y84{bottom:2637.198000px;}
.y82{bottom:2682.183000px;}
.y33{bottom:2764.629000px;}
.y32{bottom:2804.767500px;}
.y31{bottom:2844.906000px;}
.y78{bottom:2861.872500px;}
.y30{bottom:2885.044500px;}
.y77{bottom:2902.011000px;}
.y76{bottom:2942.149500px;}
.y2f{bottom:2965.323000px;}
.y2e{bottom:3005.461500px;}
.y75{bottom:3022.426500px;}
.y2d{bottom:3045.600000px;}
.y2c{bottom:3085.738500px;}
.y2b{bottom:3125.877000px;}
.y42{bottom:3135.571500px;}
.y81{bottom:3151.176000px;}
.y80{bottom:3191.314500px;}
.y1b{bottom:3203.560500px;}
.y7f{bottom:3231.453000px;}
.y1a{bottom:3243.699000px;}
.y7e{bottom:3271.591500px;}
.y19{bottom:3283.837500px;}
.y7d{bottom:3311.730000px;}
.y18{bottom:3323.976000px;}
.y7c{bottom:3351.868500px;}
.y17{bottom:3364.242000px;}
.y7b{bottom:3392.007000px;}
.y16{bottom:3404.380500px;}
.y7a{bottom:3432.145500px;}
.y15{bottom:3444.519000px;}
.y79{bottom:3472.284000px;}
.y14{bottom:3484.657500px;}
.y13{bottom:3524.796000px;}
.y12{bottom:3564.934500px;}
.y74{bottom:3577.308000px;}
.y11{bottom:3605.073000px;}
.y73{bottom:3617.446500px;}
.y10{bottom:3645.765000px;}
.y72{bottom:3657.585000px;}
.yf{bottom:3688.624500px;}
.y71{bottom:3697.723500px;}
.ye{bottom:3731.484000px;}
.y70{bottom:3737.862000px;}
.yd{bottom:3774.345000px;}
.y6f{bottom:3778.000500px;}
.yc{bottom:3817.204500px;}
.y6e{bottom:3818.139000px;}
.y6d{bottom:3858.277500px;}
.yb{bottom:3860.064000px;}
.y6c{bottom:3898.417500px;}
.ya{bottom:3902.923500px;}
.y6b{bottom:3942.510000px;}
.y9{bottom:3989.323500px;}
.y8{bottom:4085.971500px;}
.y7{bottom:4146.433500px;}
.y6{bottom:4206.897000px;}
.y5{bottom:4269.912000px;}
.y4{bottom:4592.890500px;}
.y3{bottom:4802.980500px;}
.hb{height:43.737164px;}
.h3{height:55.998325px;}
.h9{height:104.945590px;}
.ha{height:105.455590px;}
.h12{height:109.657090px;}
.h10{height:109.693090px;}
.he{height:109.699090px;}
.hf{height:109.783090px;}
.h8{height:111.886887px;}
.hc{height:113.622211px;}
.hd{height:116.896477px;}
.h11{height:122.416852px;}
.h7{height:157.359375px;}
.h6{height:192.301898px;}
.h4{height:262.129157px;}
.h5{height:262.304965px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x16{left:37.758000px;}
.xe{left:38.778000px;}
.x8{left:44.646000px;}
.x17{left:65.565000px;}
.x9{left:87.123000px;}
.x18{left:104.173500px;}
.x1{left:217.063500px;}
.xb{left:348.789000px;}
.xa{left:443.523000px;}
.xc{left:522.991500px;}
.x7{left:722.112000px;}
.x2{left:852.349500px;}
.x4{left:859.323000px;}
.x6{left:939.642000px;}
.x5{left:1174.180500px;}
.xd{left:1302.336000px;}
.x13{left:1320.235500px;}
.xf{left:1324.275000px;}
.x3{left:1383.336000px;}
.x12{left:2450.835000px;}
.x15{left:2578.819500px;}
.x14{left:2583.921000px;}
.x11{left:2587.323000px;}
.x10{left:2927.481000px;}
@media print{
.v4{vertical-align:-52.490667pt;}
.v5{vertical-align:-10.410667pt;}
.v2{vertical-align:-8.976000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:43.514667pt;}
.v1{vertical-align:46.442667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015205pt;}
.ls2{letter-spacing:0.033429pt;}
.ls3{letter-spacing:0.159984pt;}
.ls1{letter-spacing:0.270720pt;}
.ws1{word-spacing:-37.815301pt;}
.ws0{word-spacing:-35.469296pt;}
.ws2{word-spacing:-20.530501pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-25.575179pt;}
._5{margin-left:-21.117120pt;}
._4{margin-left:-17.128331pt;}
._2c{margin-left:-15.426459pt;}
._e{margin-left:-14.470837pt;}
._25{margin-left:-9.603600pt;}
._6{margin-left:-8.212213pt;}
._9{margin-left:-7.104000pt;}
._3{margin-left:-5.440816pt;}
._1c{margin-left:-3.842304pt;}
._15{margin-left:-2.393157pt;}
._d{margin-left:-0.955621pt;}
._1b{width:0.959136pt;}
._33{width:2.025915pt;}
._c{width:3.139899pt;}
._16{width:4.030789pt;}
._1{width:5.120768pt;}
._f{width:6.619723pt;}
._7{width:8.348672pt;}
._1a{width:9.603600pt;}
._1f{width:10.884080pt;}
._27{width:12.351659pt;}
._10{width:13.651733pt;}
._2b{width:15.562976pt;}
._17{width:17.158432pt;}
._2{width:18.242736pt;}
._a{width:20.204565pt;}
._b{width:21.296704pt;}
._21{width:22.623760pt;}
._26{width:24.329120pt;}
._24{width:25.353504pt;}
._1e{width:26.895408pt;}
._1d{width:27.847776pt;}
._19{width:29.592997pt;}
._18{width:30.536784pt;}
._32{width:31.571381pt;}
._35{width:32.491125pt;}
._12{width:33.583264pt;}
._3a{width:34.499275pt;}
._13{width:35.631024pt;}
._11{width:36.586645pt;}
._34{width:38.907440pt;}
._39{width:42.255840pt;}
._38{width:43.792416pt;}
._28{width:45.713136pt;}
._37{width:47.249712pt;}
._14{width:50.238379pt;}
._2e{width:53.105243pt;}
._2d{width:55.289520pt;}
._23{width:59.158176pt;}
._22{width:61.206944pt;}
._20{width:66.200816pt;}
._2f{width:75.903637pt;}
._30{width:76.859259pt;}
._2a{width:87.552000pt;}
._31{width:101.978448pt;}
._29{width:111.168000pt;}
._36{width:116.722320pt;}
._0{width:5563.238667pt;}
.fs7{font-size:53.365333pt;}
.fsa{font-size:74.117333pt;}
.fs0{font-size:74.682667pt;}
.fs9{font-size:78.880000pt;}
.fsc{font-size:86.330667pt;}
.fs6{font-size:108.848000pt;}
.fs5{font-size:128.048000pt;}
.fs4{font-size:136.517333pt;}
.fs8{font-size:138.634667pt;}
.fsb{font-size:149.365333pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:234.634667pt;}
.fs1{font-size:320.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2a{bottom:48.414667pt;}
.y6a{bottom:55.142667pt;}
.y29{bottom:63.306667pt;}
.y69{bottom:70.034667pt;}
.y1e{bottom:75.854667pt;}
.y28{bottom:78.197333pt;}
.y68{bottom:84.925333pt;}
.y27{bottom:93.089333pt;}
.y67{bottom:99.817333pt;}
.y26{bottom:107.980000pt;}
.y1d{bottom:111.533333pt;}
.y66{bottom:114.708000pt;}
.y25{bottom:122.872000pt;}
.y65{bottom:129.600000pt;}
.y24{bottom:137.762667pt;}
.y64{bottom:144.490667pt;}
.y1c{bottom:147.212000pt;}
.y23{bottom:152.654667pt;}
.y63{bottom:159.382667pt;}
.y22{bottom:167.545333pt;}
.y62{bottom:174.273333pt;}
.y21{bottom:182.437333pt;}
.y61{bottom:189.165333pt;}
.y20{bottom:197.328000pt;}
.y60{bottom:218.948000pt;}
.y1f{bottom:227.112000pt;}
.y5f{bottom:392.390667pt;}
.y2{bottom:414.425333pt;}
.y5e{bottom:430.488000pt;}
.y5d{bottom:468.585333pt;}
.y5c{bottom:506.682667pt;}
.y5b{bottom:544.780000pt;}
.y5a{bottom:582.878667pt;}
.y59{bottom:620.976000pt;}
.y94{bottom:627.514667pt;}
.y58{bottom:659.073333pt;}
.y93{bottom:663.193333pt;}
.y57{bottom:697.170667pt;}
.y92{bottom:951.836000pt;}
.y91{bottom:987.514667pt;}
.y90{bottom:1023.193333pt;}
.y8f{bottom:1058.872000pt;}
.y8e{bottom:1094.550667pt;}
.y8d{bottom:1130.229333pt;}
.y8c{bottom:1165.908000pt;}
.y8b{bottom:1201.586667pt;}
.y56{bottom:1290.860000pt;}
.y55{bottom:1328.957333pt;}
.y41{bottom:1341.656000pt;}
.y54{bottom:1367.054667pt;}
.y40{bottom:1377.334667pt;}
.y53{bottom:1405.152000pt;}
.y3f{bottom:1413.013333pt;}
.y52{bottom:1443.249333pt;}
.y3e{bottom:1452.208000pt;}
.y51{bottom:1481.348000pt;}
.y50{bottom:1519.445333pt;}
.y3d{bottom:1550.890667pt;}
.y3c{bottom:1586.569333pt;}
.y4f{bottom:1611.514667pt;}
.y3b{bottom:1622.248000pt;}
.y4e{bottom:1649.612000pt;}
.y3a{bottom:1657.926667pt;}
.y4d{bottom:1687.709333pt;}
.y39{bottom:1693.605333pt;}
.y4c{bottom:1725.808000pt;}
.y38{bottom:1729.284000pt;}
.y4b{bottom:1763.905333pt;}
.y37{bottom:1764.962667pt;}
.y36{bottom:1800.642667pt;}
.y4a{bottom:1802.002667pt;}
.y35{bottom:1836.321333pt;}
.y49{bottom:1840.100000pt;}
.y34{bottom:1875.514667pt;}
.y48{bottom:1878.197333pt;}
.y47{bottom:1916.296000pt;}
.y46{bottom:1954.393333pt;}
.y45{bottom:2033.612000pt;}
.y44{bottom:2087.357333pt;}
.y8a{bottom:2126.588000pt;}
.y43{bottom:2141.101333pt;}
.y89{bottom:2162.266667pt;}
.y88{bottom:2197.945333pt;}
.y87{bottom:2233.625333pt;}
.y86{bottom:2269.304000pt;}
.y85{bottom:2304.982667pt;}
.y83{bottom:2311.672000pt;}
.y84{bottom:2344.176000pt;}
.y82{bottom:2384.162667pt;}
.y33{bottom:2457.448000pt;}
.y32{bottom:2493.126667pt;}
.y31{bottom:2528.805333pt;}
.y78{bottom:2543.886667pt;}
.y30{bottom:2564.484000pt;}
.y77{bottom:2579.565333pt;}
.y76{bottom:2615.244000pt;}
.y2f{bottom:2635.842667pt;}
.y2e{bottom:2671.521333pt;}
.y75{bottom:2686.601333pt;}
.y2d{bottom:2707.200000pt;}
.y2c{bottom:2742.878667pt;}
.y2b{bottom:2778.557333pt;}
.y42{bottom:2787.174667pt;}
.y81{bottom:2801.045333pt;}
.y80{bottom:2836.724000pt;}
.y1b{bottom:2847.609333pt;}
.y7f{bottom:2872.402667pt;}
.y1a{bottom:2883.288000pt;}
.y7e{bottom:2908.081333pt;}
.y19{bottom:2918.966667pt;}
.y7d{bottom:2943.760000pt;}
.y18{bottom:2954.645333pt;}
.y7c{bottom:2979.438667pt;}
.y17{bottom:2990.437333pt;}
.y7b{bottom:3015.117333pt;}
.y16{bottom:3026.116000pt;}
.y7a{bottom:3050.796000pt;}
.y15{bottom:3061.794667pt;}
.y79{bottom:3086.474667pt;}
.y14{bottom:3097.473333pt;}
.y13{bottom:3133.152000pt;}
.y12{bottom:3168.830667pt;}
.y74{bottom:3179.829333pt;}
.y11{bottom:3204.509333pt;}
.y73{bottom:3215.508000pt;}
.y10{bottom:3240.680000pt;}
.y72{bottom:3251.186667pt;}
.yf{bottom:3278.777333pt;}
.y71{bottom:3286.865333pt;}
.ye{bottom:3316.874667pt;}
.y70{bottom:3322.544000pt;}
.yd{bottom:3354.973333pt;}
.y6f{bottom:3358.222667pt;}
.yc{bottom:3393.070667pt;}
.y6e{bottom:3393.901333pt;}
.y6d{bottom:3429.580000pt;}
.yb{bottom:3431.168000pt;}
.y6c{bottom:3465.260000pt;}
.ya{bottom:3469.265333pt;}
.y6b{bottom:3504.453333pt;}
.y9{bottom:3546.065333pt;}
.y8{bottom:3631.974667pt;}
.y7{bottom:3685.718667pt;}
.y6{bottom:3739.464000pt;}
.y5{bottom:3795.477333pt;}
.y4{bottom:4082.569333pt;}
.y3{bottom:4269.316000pt;}
.hb{height:38.877479pt;}
.h3{height:49.776289pt;}
.h9{height:93.284969pt;}
.ha{height:93.738302pt;}
.h12{height:97.472969pt;}
.h10{height:97.504969pt;}
.he{height:97.510302pt;}
.hf{height:97.584969pt;}
.h8{height:99.455010pt;}
.hc{height:100.997521pt;}
.hd{height:103.907979pt;}
.h11{height:108.814979pt;}
.h7{height:139.875000pt;}
.h6{height:170.935021pt;}
.h4{height:233.003695pt;}
.h5{height:233.159969pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x16{left:33.562667pt;}
.xe{left:34.469333pt;}
.x8{left:39.685333pt;}
.x17{left:58.280000pt;}
.x9{left:77.442667pt;}
.x18{left:92.598667pt;}
.x1{left:192.945333pt;}
.xb{left:310.034667pt;}
.xa{left:394.242667pt;}
.xc{left:464.881333pt;}
.x7{left:641.877333pt;}
.x2{left:757.644000pt;}
.x4{left:763.842667pt;}
.x6{left:835.237333pt;}
.x5{left:1043.716000pt;}
.xd{left:1157.632000pt;}
.x13{left:1173.542667pt;}
.xf{left:1177.133333pt;}
.x3{left:1229.632000pt;}
.x12{left:2178.520000pt;}
.x15{left:2292.284000pt;}
.x14{left:2296.818667pt;}
.x11{left:2299.842667pt;}
.x10{left:2602.205333pt;}
}




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