
    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_c4531128bb54157b7bbf1d84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.872559;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_e9c267a38627d8a47557f3f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903320;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_c0c134ddf82ed48dd338acdc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.855469;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_df97d6bb18e74191483a0e6b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907227;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_9c081b25b1659da906b5764c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975586;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_adbea60c8b737265ff9fef76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_04b2068b16b6466436a7f65a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-65.478000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:64.800000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.155964px;}
.ls3{letter-spacing:0.180924px;}
.ls2{letter-spacing:0.186924px;}
.ls4{letter-spacing:0.194016px;}
.ls1{letter-spacing:0.673512px;}
.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:-59.995500px;}
.ws0{word-spacing:-54.235932px;}
.ws4{word-spacing:-48.816000px;}
.ws7{word-spacing:-39.902958px;}
.ws1{word-spacing:-35.247864px;}
.ws3{word-spacing:-28.328196px;}
.ws5{word-spacing:-20.487804px;}
.ws2{word-spacing:-0.090654px;}
.ws8{word-spacing:0.000000px;}
._3c{margin-left:-17.404170px;}
._3d{margin-left:-15.692004px;}
._3e{margin-left:-14.643924px;}
._8{margin-left:-13.508508px;}
._2e{margin-left:-12.222744px;}
._6{margin-left:-9.992796px;}
._3f{margin-left:-8.931348px;}
._3a{margin-left:-7.512036px;}
._f{margin-left:-5.458740px;}
._3b{margin-left:-4.402350px;}
._1{margin-left:-3.359748px;}
._0{margin-left:-1.919856px;}
._4{width:1.127964px;}
._25{width:2.162268px;}
._1e{width:3.766308px;}
._7{width:5.614704px;}
._2f{width:6.681336px;}
._23{width:8.027568px;}
._9{width:9.825732px;}
._a{width:11.014056px;}
._22{width:12.021300px;}
._29{width:14.300400px;}
._28{width:15.992832px;}
._38{width:21.967752px;}
._37{width:22.987068px;}
._24{width:24.916704px;}
._18{width:26.658744px;}
._c{width:27.917556px;}
._d{width:29.033448px;}
._2d{width:30.125196px;}
._19{width:31.192800px;}
._1a{width:32.454144px;}
._31{width:33.881376px;}
._5{width:37.130532px;}
._3{width:38.259468px;}
._35{width:40.754892px;}
._12{width:42.002604px;}
._11{width:43.046064px;}
._34{width:44.617776px;}
._1b{width:46.789200px;}
._27{width:55.631832px;}
._26{width:56.926860px;}
._36{width:58.174572px;}
._1c{width:59.902248px;}
._21{width:63.789276px;}
._20{width:65.036988px;}
._10{width:67.220484px;}
._e{width:68.624160px;}
._17{width:72.044268px;}
._13{width:78.449892px;}
._1d{width:88.096488px;}
._1f{width:90.124020px;}
._39{width:91.599156px;}
._b{width:95.654220px;}
._30{width:104.339916px;}
._14{width:107.939160px;}
._2c{width:109.523916px;}
._2a{width:120.092280px;}
._15{width:125.479560px;}
._2{width:137.092356px;}
._2b{width:152.425116px;}
._33{width:226.533852px;}
._32{width:227.719512px;}
._16{width:260.303916px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:90.654000px;}
.fs8{font-size:108.000000px;}
.fs5{font-size:125.346000px;}
.fs9{font-size:144.054000px;}
.fs1{font-size:155.964000px;}
.fsa{font-size:168.036000px;}
.fs7{font-size:179.946000px;}
.fs4{font-size:216.000000px;}
.fs0{font-size:239.982000px;}
.fs3{font-size:300.018000px;}
.fs6{font-size:336.078000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y84{bottom:21.940500px;}
.y80{bottom:44.433000px;}
.y7f{bottom:98.433000px;}
.y81{bottom:99.156000px;}
.y7e{bottom:152.433000px;}
.y8e{bottom:197.121000px;}
.y7d{bottom:206.433000px;}
.y8d{bottom:251.121000px;}
.y7c{bottom:260.263500px;}
.y8c{bottom:305.121000px;}
.y7b{bottom:314.263500px;}
.y8b{bottom:358.951500px;}
.y7a{bottom:368.263500px;}
.y47{bottom:517.380000px;}
.y46{bottom:564.151500px;}
.y72{bottom:605.140500px;}
.y45{bottom:610.965000px;}
.y71{bottom:651.912000px;}
.y44{bottom:657.609000px;}
.y70{bottom:698.725500px;}
.y43{bottom:704.424000px;}
.y78{bottom:711.184500px;}
.y6f{bottom:745.540500px;}
.y42{bottom:751.237500px;}
.y77{bottom:757.956000px;}
.y6e{bottom:792.312000px;}
.y41{bottom:798.009000px;}
.y76{bottom:804.769500px;}
.y6d{bottom:838.956000px;}
.y40{bottom:844.824000px;}
.y75{bottom:851.584500px;}
.y6c{bottom:885.769500px;}
.y3f{bottom:891.637500px;}
.y74{bottom:898.356000px;}
.y6b{bottom:932.584500px;}
.y3e{bottom:938.281500px;}
.y73{bottom:945.042000px;}
.y3d{bottom:985.053000px;}
.y3c{bottom:1031.868000px;}
.y3b{bottom:1154.877000px;}
.y89{bottom:1183.536000px;}
.y88{bottom:1226.736000px;}
.y3a{bottom:1269.340500px;}
.y39{bottom:1316.112000px;}
.y38{bottom:1362.925500px;}
.y8a{bottom:1370.281500px;}
.y37{bottom:1409.740500px;}
.y36{bottom:1456.512000px;}
.y35{bottom:1503.156000px;}
.y34{bottom:1549.969500px;}
.y33{bottom:1596.784500px;}
.y32{bottom:1643.556000px;}
.y31{bottom:1690.369500px;}
.y30{bottom:1750.237500px;}
.y2f{bottom:1797.009000px;}
.y2e{bottom:1843.653000px;}
.y2d{bottom:1890.468000px;}
.y2c{bottom:1937.281500px;}
.y2b{bottom:1984.053000px;}
.y2a{bottom:2030.868000px;}
.y29{bottom:2077.512000px;}
.y28{bottom:2200.521000px;}
.y27{bottom:2315.112000px;}
.y58{bottom:2320.809000px;}
.y26{bottom:2361.925500px;}
.y57{bottom:2367.624000px;}
.y25{bottom:2408.740500px;}
.y56{bottom:2414.437500px;}
.y24{bottom:2455.384500px;}
.y55{bottom:2461.081500px;}
.y23{bottom:2502.156000px;}
.y54{bottom:2507.853000px;}
.y22{bottom:2548.969500px;}
.y53{bottom:2554.668000px;}
.y21{bottom:2595.784500px;}
.y20{bottom:2642.556000px;}
.y1f{bottom:2689.242000px;}
.y1e{bottom:2736.013500px;}
.y1d{bottom:2782.828500px;}
.y85{bottom:2812.677000px;}
.y1c{bottom:2829.642000px;}
.y86{bottom:2855.112000px;}
.y1b{bottom:2876.413500px;}
.y8f{bottom:2911.833000px;}
.y1a{bottom:2923.059000px;}
.y6a{bottom:2936.877000px;}
.y19{bottom:2969.872500px;}
.y18{bottom:3016.686000px;}
.y69{bottom:3030.463500px;}
.y17{bottom:3063.459000px;}
.y68{bottom:3077.277000px;}
.y16{bottom:3110.272500px;}
.y67{bottom:3124.092000px;}
.y66{bottom:3170.736000px;}
.y65{bottom:3217.507500px;}
.y15{bottom:3233.112000px;}
.y64{bottom:3264.321000px;}
.y63{bottom:3311.136000px;}
.y14{bottom:3347.703000px;}
.y62{bottom:3357.907500px;}
.y13{bottom:3394.516500px;}
.y61{bottom:3404.551500px;}
.y12{bottom:3441.331500px;}
.y60{bottom:3451.365000px;}
.y11{bottom:3488.103000px;}
.y5f{bottom:3498.180000px;}
.y10{bottom:3534.789000px;}
.y5e{bottom:3544.951500px;}
.yf{bottom:3581.560500px;}
.y5d{bottom:3591.765000px;}
.ye{bottom:3628.375500px;}
.y87{bottom:3635.560500px;}
.y5c{bottom:3638.409000px;}
.yd{bottom:3675.189000px;}
.y5b{bottom:3685.224000px;}
.yc{bottom:3721.960500px;}
.y5a{bottom:3732.037500px;}
.yb{bottom:3768.604500px;}
.y59{bottom:3778.809000px;}
.ya{bottom:3815.419500px;}
.y9{bottom:3862.233000px;}
.y8{bottom:3909.004500px;}
.y83{bottom:3931.965000px;}
.y7{bottom:3955.819500px;}
.y82{bottom:3964.365000px;}
.y6{bottom:4002.633000px;}
.y4a{bottom:4036.819500px;}
.y5{bottom:4049.277000px;}
.y4{bottom:4096.092000px;}
.y49{bottom:4108.209000px;}
.y3{bottom:4142.863500px;}
.y48{bottom:4198.224000px;}
.y2{bottom:4265.872500px;}
.y52{bottom:4378.677000px;}
.y51{bottom:4443.477000px;}
.y50{bottom:4508.277000px;}
.y4f{bottom:4573.077000px;}
.y4e{bottom:4637.877000px;}
.y4d{bottom:4702.677000px;}
.y4c{bottom:4767.477000px;}
.y79{bottom:4824.028500px;}
.y4b{bottom:4912.980000px;}
.hd{height:78.996094px;}
.he{height:104.382879px;}
.h4{height:114.079137px;}
.hf{height:130.390559px;}
.hb{height:131.620658px;}
.h9{height:131.792443px;}
.h6{height:152.933906px;}
.h8{height:157.992188px;}
.h3{height:168.737344px;}
.hc{height:168.971701px;}
.ha{height:211.243143px;}
.h5{height:227.943363px;}
.h7{height:236.304844px;}
.h1{height:5064.750000px;}
.h2{height:5065.071000px;}
.h0{height:5065.114961px;}
.w2{width:3574.842000px;}
.w0{width:3574.885039px;}
.w1{width:3575.250000px;}
.x0{left:0.000000px;}
.x1{left:10.630500px;}
.x7{left:36.312000px;}
.x2{left:63.736500px;}
.x1d{left:324.468000px;}
.x1c{left:644.088000px;}
.x6{left:837.468000px;}
.x10{left:878.413500px;}
.xc{left:880.497000px;}
.xf{left:898.951500px;}
.x11{left:908.986500px;}
.x13{left:913.365000px;}
.x12{left:919.786500px;}
.x9{left:923.697000px;}
.xa{left:942.448500px;}
.xb{left:950.103000px;}
.x8{left:960.732000px;}
.x4{left:1061.716500px;}
.x3{left:1068.903000px;}
.x14{left:1314.283500px;}
.x1e{left:1398.132000px;}
.x21{left:1418.116500px;}
.xd{left:1447.965000px;}
.x5{left:1492.780500px;}
.x1b{left:1615.365000px;}
.x1f{left:1646.703000px;}
.x25{left:2207.536500px;}
.x17{left:2221.951500px;}
.x18{left:2227.819500px;}
.x19{left:2233.813500px;}
.xe{left:2238.619500px;}
.x15{left:2240.830500px;}
.x16{left:2268.169500px;}
.x24{left:2489.569500px;}
.x23{left:2689.369500px;}
.x1a{left:2711.268000px;}
.x26{left:2867.995500px;}
.x22{left:2893.507500px;}
.x20{left:3079.488000px;}
@media print{
.v1{vertical-align:-58.202667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:57.600000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.138635pt;}
.ls3{letter-spacing:0.160821pt;}
.ls2{letter-spacing:0.166155pt;}
.ls4{letter-spacing:0.172459pt;}
.ls1{letter-spacing:0.598677pt;}
.ws6{word-spacing:-53.329333pt;}
.ws0{word-spacing:-48.209717pt;}
.ws4{word-spacing:-43.392000pt;}
.ws7{word-spacing:-35.469296pt;}
.ws1{word-spacing:-31.331435pt;}
.ws3{word-spacing:-25.180619pt;}
.ws5{word-spacing:-18.211381pt;}
.ws2{word-spacing:-0.080581pt;}
.ws8{word-spacing:0.000000pt;}
._3c{margin-left:-15.470373pt;}
._3d{margin-left:-13.948448pt;}
._3e{margin-left:-13.016821pt;}
._8{margin-left:-12.007563pt;}
._2e{margin-left:-10.864661pt;}
._6{margin-left:-8.882485pt;}
._3f{margin-left:-7.938976pt;}
._3a{margin-left:-6.677365pt;}
._f{margin-left:-4.852213pt;}
._3b{margin-left:-3.913200pt;}
._1{margin-left:-2.986443pt;}
._0{margin-left:-1.706539pt;}
._4{width:1.002635pt;}
._25{width:1.922016pt;}
._1e{width:3.347829pt;}
._7{width:4.990848pt;}
._2f{width:5.938965pt;}
._23{width:7.135616pt;}
._9{width:8.733984pt;}
._a{width:9.790272pt;}
._22{width:10.685600pt;}
._29{width:12.711467pt;}
._28{width:14.215851pt;}
._38{width:19.526891pt;}
._37{width:20.432949pt;}
._24{width:22.148181pt;}
._18{width:23.696661pt;}
._c{width:24.815605pt;}
._d{width:25.807509pt;}
._2d{width:26.777952pt;}
._19{width:27.726933pt;}
._1a{width:28.848128pt;}
._31{width:30.116779pt;}
._5{width:33.004917pt;}
._3{width:34.008416pt;}
._35{width:36.226571pt;}
._12{width:37.335648pt;}
._11{width:38.263168pt;}
._34{width:39.660245pt;}
._1b{width:41.590400pt;}
._27{width:49.450517pt;}
._26{width:50.601653pt;}
._36{width:51.710731pt;}
._1c{width:53.246443pt;}
._21{width:56.701579pt;}
._20{width:57.810656pt;}
._10{width:59.751541pt;}
._e{width:60.999253pt;}
._17{width:64.039349pt;}
._13{width:69.733237pt;}
._1d{width:78.307989pt;}
._1f{width:80.110240pt;}
._39{width:81.421472pt;}
._b{width:85.025973pt;}
._30{width:92.746592pt;}
._14{width:95.945920pt;}
._2c{width:97.354592pt;}
._2a{width:106.748693pt;}
._15{width:111.537387pt;}
._2{width:121.859872pt;}
._2b{width:135.488992pt;}
._33{width:201.363424pt;}
._32{width:202.417344pt;}
._16{width:231.381259pt;}
.fs2{font-size:80.581333pt;}
.fs8{font-size:96.000000pt;}
.fs5{font-size:111.418667pt;}
.fs9{font-size:128.048000pt;}
.fs1{font-size:138.634667pt;}
.fsa{font-size:149.365333pt;}
.fs7{font-size:159.952000pt;}
.fs4{font-size:192.000000pt;}
.fs0{font-size:213.317333pt;}
.fs3{font-size:266.682667pt;}
.fs6{font-size:298.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y84{bottom:19.502667pt;}
.y80{bottom:39.496000pt;}
.y7f{bottom:87.496000pt;}
.y81{bottom:88.138667pt;}
.y7e{bottom:135.496000pt;}
.y8e{bottom:175.218667pt;}
.y7d{bottom:183.496000pt;}
.y8d{bottom:223.218667pt;}
.y7c{bottom:231.345333pt;}
.y8c{bottom:271.218667pt;}
.y7b{bottom:279.345333pt;}
.y8b{bottom:319.068000pt;}
.y7a{bottom:327.345333pt;}
.y47{bottom:459.893333pt;}
.y46{bottom:501.468000pt;}
.y72{bottom:537.902667pt;}
.y45{bottom:543.080000pt;}
.y71{bottom:579.477333pt;}
.y44{bottom:584.541333pt;}
.y70{bottom:621.089333pt;}
.y43{bottom:626.154667pt;}
.y78{bottom:632.164000pt;}
.y6f{bottom:662.702667pt;}
.y42{bottom:667.766667pt;}
.y77{bottom:673.738667pt;}
.y6e{bottom:704.277333pt;}
.y41{bottom:709.341333pt;}
.y76{bottom:715.350667pt;}
.y6d{bottom:745.738667pt;}
.y40{bottom:750.954667pt;}
.y75{bottom:756.964000pt;}
.y6c{bottom:787.350667pt;}
.y3f{bottom:792.566667pt;}
.y74{bottom:798.538667pt;}
.y6b{bottom:828.964000pt;}
.y3e{bottom:834.028000pt;}
.y73{bottom:840.037333pt;}
.y3d{bottom:875.602667pt;}
.y3c{bottom:917.216000pt;}
.y3b{bottom:1026.557333pt;}
.y89{bottom:1052.032000pt;}
.y88{bottom:1090.432000pt;}
.y3a{bottom:1128.302667pt;}
.y39{bottom:1169.877333pt;}
.y38{bottom:1211.489333pt;}
.y8a{bottom:1218.028000pt;}
.y37{bottom:1253.102667pt;}
.y36{bottom:1294.677333pt;}
.y35{bottom:1336.138667pt;}
.y34{bottom:1377.750667pt;}
.y33{bottom:1419.364000pt;}
.y32{bottom:1460.938667pt;}
.y31{bottom:1502.550667pt;}
.y30{bottom:1555.766667pt;}
.y2f{bottom:1597.341333pt;}
.y2e{bottom:1638.802667pt;}
.y2d{bottom:1680.416000pt;}
.y2c{bottom:1722.028000pt;}
.y2b{bottom:1763.602667pt;}
.y2a{bottom:1805.216000pt;}
.y29{bottom:1846.677333pt;}
.y28{bottom:1956.018667pt;}
.y27{bottom:2057.877333pt;}
.y58{bottom:2062.941333pt;}
.y26{bottom:2099.489333pt;}
.y57{bottom:2104.554667pt;}
.y25{bottom:2141.102667pt;}
.y56{bottom:2146.166667pt;}
.y24{bottom:2182.564000pt;}
.y55{bottom:2187.628000pt;}
.y23{bottom:2224.138667pt;}
.y54{bottom:2229.202667pt;}
.y22{bottom:2265.750667pt;}
.y53{bottom:2270.816000pt;}
.y21{bottom:2307.364000pt;}
.y20{bottom:2348.938667pt;}
.y1f{bottom:2390.437333pt;}
.y1e{bottom:2432.012000pt;}
.y1d{bottom:2473.625333pt;}
.y85{bottom:2500.157333pt;}
.y1c{bottom:2515.237333pt;}
.y86{bottom:2537.877333pt;}
.y1b{bottom:2556.812000pt;}
.y8f{bottom:2588.296000pt;}
.y1a{bottom:2598.274667pt;}
.y6a{bottom:2610.557333pt;}
.y19{bottom:2639.886667pt;}
.y18{bottom:2681.498667pt;}
.y69{bottom:2693.745333pt;}
.y17{bottom:2723.074667pt;}
.y68{bottom:2735.357333pt;}
.y16{bottom:2764.686667pt;}
.y67{bottom:2776.970667pt;}
.y66{bottom:2818.432000pt;}
.y65{bottom:2860.006667pt;}
.y15{bottom:2873.877333pt;}
.y64{bottom:2901.618667pt;}
.y63{bottom:2943.232000pt;}
.y14{bottom:2975.736000pt;}
.y62{bottom:2984.806667pt;}
.y13{bottom:3017.348000pt;}
.y61{bottom:3026.268000pt;}
.y12{bottom:3058.961333pt;}
.y60{bottom:3067.880000pt;}
.y11{bottom:3100.536000pt;}
.y5f{bottom:3109.493333pt;}
.y10{bottom:3142.034667pt;}
.y5e{bottom:3151.068000pt;}
.yf{bottom:3183.609333pt;}
.y5d{bottom:3192.680000pt;}
.ye{bottom:3225.222667pt;}
.y87{bottom:3231.609333pt;}
.y5c{bottom:3234.141333pt;}
.yd{bottom:3266.834667pt;}
.y5b{bottom:3275.754667pt;}
.yc{bottom:3308.409333pt;}
.y5a{bottom:3317.366667pt;}
.yb{bottom:3349.870667pt;}
.y59{bottom:3358.941333pt;}
.ya{bottom:3391.484000pt;}
.y9{bottom:3433.096000pt;}
.y8{bottom:3474.670667pt;}
.y83{bottom:3495.080000pt;}
.y7{bottom:3516.284000pt;}
.y82{bottom:3523.880000pt;}
.y6{bottom:3557.896000pt;}
.y4a{bottom:3588.284000pt;}
.y5{bottom:3599.357333pt;}
.y4{bottom:3640.970667pt;}
.y49{bottom:3651.741333pt;}
.y3{bottom:3682.545333pt;}
.y48{bottom:3731.754667pt;}
.y2{bottom:3791.886667pt;}
.y52{bottom:3892.157333pt;}
.y51{bottom:3949.757333pt;}
.y50{bottom:4007.357333pt;}
.y4f{bottom:4064.957333pt;}
.y4e{bottom:4122.557333pt;}
.y4d{bottom:4180.157333pt;}
.y4c{bottom:4237.757333pt;}
.y79{bottom:4288.025333pt;}
.y4b{bottom:4367.093333pt;}
.hd{height:70.218750pt;}
.he{height:92.784781pt;}
.h4{height:101.403677pt;}
.hf{height:115.902719pt;}
.hb{height:116.996141pt;}
.h9{height:117.148839pt;}
.h6{height:135.941250pt;}
.h8{height:140.437500pt;}
.h3{height:149.988750pt;}
.hc{height:150.197068pt;}
.ha{height:187.771682pt;}
.h5{height:202.616323pt;}
.h7{height:210.048750pt;}
.h1{height:4502.000000pt;}
.h2{height:4502.285333pt;}
.h0{height:4502.324409pt;}
.w2{width:3177.637333pt;}
.w0{width:3177.675591pt;}
.w1{width:3178.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.449333pt;}
.x7{left:32.277333pt;}
.x2{left:56.654667pt;}
.x1d{left:288.416000pt;}
.x1c{left:572.522667pt;}
.x6{left:744.416000pt;}
.x10{left:780.812000pt;}
.xc{left:782.664000pt;}
.xf{left:799.068000pt;}
.x11{left:807.988000pt;}
.x13{left:811.880000pt;}
.x12{left:817.588000pt;}
.x9{left:821.064000pt;}
.xa{left:837.732000pt;}
.xb{left:844.536000pt;}
.x8{left:853.984000pt;}
.x4{left:943.748000pt;}
.x3{left:950.136000pt;}
.x14{left:1168.252000pt;}
.x1e{left:1242.784000pt;}
.x21{left:1260.548000pt;}
.xd{left:1287.080000pt;}
.x5{left:1326.916000pt;}
.x1b{left:1435.880000pt;}
.x1f{left:1463.736000pt;}
.x25{left:1962.254667pt;}
.x17{left:1975.068000pt;}
.x18{left:1980.284000pt;}
.x19{left:1985.612000pt;}
.xe{left:1989.884000pt;}
.x15{left:1991.849333pt;}
.x16{left:2016.150667pt;}
.x24{left:2212.950667pt;}
.x23{left:2390.550667pt;}
.x1a{left:2410.016000pt;}
.x26{left:2549.329333pt;}
.x22{left:2572.006667pt;}
.x20{left:2737.322667pt;}
}




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