
    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_a6c9afeec5340548933daf23.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c864fb5d7be403ffcba26690.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_50ed6155ea9c3b4fcf63c9a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_f29b4d19c0aa66243301707a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_67a4f4942d8f2079a0fbfd5f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.741699;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_5012d37bd8f7ea760fbc1666.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_cec8feb1d534a69548a4b063.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_8d370a62bc453e07308bd10f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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:ff9;src:url('chunks/assets/font_544a57f00140ea0defe7add4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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:ffa;src:url('chunks/assets/font_f8e700f3ad00198b994f4375.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_897d8bc0cea72b9d535d8daf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_459b363f388ff4c9dfe1798c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.213600px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.504000px;}
.ls16{letter-spacing:1.440000px;}
.ls1{letter-spacing:3.600000px;}
.lsd{letter-spacing:5.760000px;}
.ls3{letter-spacing:7.200000px;}
.ls13{letter-spacing:20.160000px;}
.ls2{letter-spacing:30.960000px;}
.ls11{letter-spacing:40.320000px;}
.ls15{letter-spacing:42.480000px;}
.ls14{letter-spacing:43.200000px;}
.ls12{letter-spacing:47.520000px;}
.lse{letter-spacing:87.840000px;}
.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;}
}
.ws4{word-spacing:-28.378320px;}
.ws9{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.228000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-15.012000px;}
.ws1{word-spacing:-14.508000px;}
.ws8{word-spacing:0.000000px;}
._73{margin-left:-15.360000px;}
._2a{margin-left:-2.255040px;}
._0{margin-left:-1.242000px;}
._1{width:1.301760px;}
._c{width:2.336640px;}
._2{width:3.576000px;}
._d{width:4.584000px;}
._3{width:5.904000px;}
._4{width:6.996000px;}
._a{width:8.064000px;}
._5{width:9.144000px;}
._6{width:10.560000px;}
._3c{width:11.681280px;}
._32{width:12.948000px;}
._19{width:15.138000px;}
._2c{width:16.176240px;}
._b{width:19.584000px;}
._34{width:20.736000px;}
._1a{width:22.680000px;}
._1b{width:23.832000px;}
._8{width:25.848000px;}
._12{width:27.432000px;}
._57{width:28.440000px;}
._24{width:29.448000px;}
._9{width:31.176000px;}
._53{width:32.184000px;}
._2d{width:33.336000px;}
._13{width:35.442000px;}
._25{width:36.720000px;}
._1c{width:37.962000px;}
._2f{width:39.510000px;}
._28{width:40.512000px;}
._1e{width:41.742000px;}
._1d{width:43.002000px;}
._39{width:44.496000px;}
._35{width:45.504000px;}
._2e{width:47.016000px;}
._5a{width:48.168000px;}
._47{width:49.432320px;}
._46{width:50.688000px;}
._40{width:52.794000px;}
._22{width:55.656000px;}
._59{width:57.456000px;}
._56{width:58.968000px;}
._36{width:60.336000px;}
._37{width:61.344000px;}
._62{width:62.424000px;}
._2b{width:63.504000px;}
._18{width:64.668240px;}
._38{width:66.546000px;}
._5e{width:67.680000px;}
._33{width:69.480000px;}
._3d{width:72.792000px;}
._58{width:74.088000px;}
._66{width:75.600000px;}
._5c{width:76.824000px;}
._44{width:78.768000px;}
._48{width:80.136000px;}
._49{width:81.144000px;}
._50{width:82.872000px;}
._64{width:84.324240px;}
._30{width:86.256000px;}
._31{width:87.336000px;}
._69{width:88.554240px;}
._23{width:90.018000px;}
._15{width:91.242000px;}
._14{width:92.736000px;}
._7{width:93.960000px;}
._29{width:95.832000px;}
._26{width:97.932240px;}
._27{width:99.288000px;}
._67{width:100.440000px;}
._5b{width:101.520000px;}
._54{width:103.392000px;}
._55{width:104.904000px;}
._45{width:105.912000px;}
._41{width:107.136000px;}
._43{width:108.720000px;}
._20{width:111.744000px;}
._21{width:112.968000px;}
._6a{width:114.120000px;}
._52{width:116.352000px;}
._4b{width:117.624000px;}
._1f{width:119.664000px;}
._65{width:121.536000px;}
._10{width:123.768000px;}
._f{width:125.154000px;}
._3e{width:126.720000px;}
._3f{width:128.160000px;}
._4e{width:130.248000px;}
._4f{width:131.832000px;}
._6d{width:133.128000px;}
._5f{width:142.992000px;}
._11{width:144.504000px;}
._4c{width:146.604000px;}
._5d{width:149.832000px;}
._4a{width:151.128000px;}
._3b{width:154.728000px;}
._3a{width:156.114000px;}
._72{width:173.304000px;}
._e{width:174.312000px;}
._17{width:185.202000px;}
._16{width:187.122000px;}
._71{width:194.400000px;}
._60{width:198.720000px;}
._68{width:207.378000px;}
._42{width:210.024000px;}
._70{width:217.224000px;}
._6f{width:253.385280px;}
._6e{width:255.042000px;}
._6b{width:278.064000px;}
._6c{width:292.464000px;}
._61{width:293.976000px;}
._63{width:354.600000px;}
._51{width:390.888000px;}
._4d{width:734.688000px;}
._74{width:846.300000px;}
.fc6{color:rgb(238,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(32,33,34);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,95,145);}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:7.020000px;}
.y4e{bottom:7.365000px;}
.y54{bottom:7.366500px;}
.y58{bottom:7.372500px;}
.y5b{bottom:7.380000px;}
.y63{bottom:7.560000px;}
.y69{bottom:7.605000px;}
.y56{bottom:19.252500px;}
.y6c{bottom:19.260000px;}
.y67{bottom:19.485000px;}
.y7{bottom:22.356000px;}
.y6f{bottom:30.780000px;}
.y53{bottom:31.126500px;}
.y57{bottom:31.132500px;}
.y5a{bottom:31.140000px;}
.y4c{bottom:31.170000px;}
.y62{bottom:31.320000px;}
.y65{bottom:31.365000px;}
.y50{bottom:43.006500px;}
.y6b{bottom:43.020000px;}
.y5f{bottom:43.200000px;}
.y66{bottom:43.245000px;}
.y9{bottom:52.920000px;}
.y52{bottom:54.886500px;}
.y6d{bottom:54.900000px;}
.y4d{bottom:54.930000px;}
.y5d{bottom:55.080000px;}
.y68{bottom:55.125000px;}
.y6{bottom:60.516000px;}
.y5e{bottom:66.960000px;}
.y51{bottom:78.646500px;}
.y61{bottom:78.840000px;}
.y43{bottom:88.956000px;}
.y55{bottom:94.363500px;}
.y42{bottom:96.516000px;}
.y60{bottom:102.780000px;}
.y33{bottom:104.796000px;}
.y41{bottom:107.856000px;}
.y88{bottom:124.056000px;}
.y32{bottom:128.556000px;}
.y4f{bottom:142.783500px;}
.y87{bottom:147.816000px;}
.y31{bottom:152.310000px;}
.y86{bottom:171.570000px;}
.y30{bottom:176.070000px;}
.y85{bottom:195.510000px;}
.y2f{bottom:200.010000px;}
.y84{bottom:219.270000px;}
.y2e{bottom:223.770000px;}
.y40{bottom:232.050000px;}
.y4b{bottom:238.725000px;}
.y83{bottom:243.030000px;}
.y2d{bottom:247.530000px;}
.y82{bottom:266.790000px;}
.y2c{bottom:271.335000px;}
.y81{bottom:290.415000px;}
.y2b{bottom:295.275000px;}
.y49{bottom:310.935000px;}
.y80{bottom:314.175000px;}
.y2a{bottom:318.675000px;}
.y34{bottom:319.035000px;}
.y7f{bottom:337.935000px;}
.y48{bottom:342.435000px;}
.y29{bottom:342.795000px;}
.y7d{bottom:362.055000px;}
.y47{bottom:366.195000px;}
.y28{bottom:366.555000px;}
.y7c{bottom:385.995000px;}
.y46{bottom:390.135000px;}
.y27{bottom:390.495000px;}
.y7b{bottom:409.755000px;}
.y26{bottom:414.255000px;}
.y7a{bottom:433.515000px;}
.y3f{bottom:437.655000px;}
.y25{bottom:438.015000px;}
.y79{bottom:457.275000px;}
.y3e{bottom:461.415000px;}
.y24{bottom:461.775000px;}
.y78{bottom:481.215000px;}
.y3d{bottom:485.355000px;}
.y23{bottom:485.715000px;}
.y77{bottom:504.975000px;}
.y22{bottom:509.115000px;}
.y3c{bottom:509.475000px;}
.y76{bottom:528.735000px;}
.y21{bottom:533.235000px;}
.y75{bottom:552.525000px;}
.y20{bottom:557.025000px;}
.y74{bottom:576.465000px;}
.y1f{bottom:580.965000px;}
.y73{bottom:600.225000px;}
.y1e{bottom:604.725000px;}
.y72{bottom:623.985000px;}
.y44{bottom:628.125000px;}
.y1d{bottom:628.485000px;}
.y71{bottom:647.385000px;}
.y7e{bottom:647.745000px;}
.y1c{bottom:652.245000px;}
.y70{bottom:671.505000px;}
.y1b{bottom:676.005000px;}
.y6e{bottom:688.785000px;}
.y1a{bottom:699.945000px;}
.y19{bottom:723.705000px;}
.y18{bottom:747.465000px;}
.y6a{bottom:760.965000px;}
.y17{bottom:771.225000px;}
.y16{bottom:795.165000px;}
.y15{bottom:818.925000px;}
.y64{bottom:832.965000px;}
.y14{bottom:842.730000px;}
.y89{bottom:866.130000px;}
.y13{bottom:866.490000px;}
.y12{bottom:890.070000px;}
.y3b{bottom:890.430000px;}
.y5c{bottom:905.190000px;}
.y45{bottom:913.830000px;}
.y11{bottom:914.190000px;}
.y10{bottom:937.590000px;}
.y3a{bottom:937.950000px;}
.yf{bottom:961.350000px;}
.y39{bottom:961.710000px;}
.ye{bottom:985.290000px;}
.y38{bottom:985.650000px;}
.yd{bottom:1009.050000px;}
.y37{bottom:1009.410000px;}
.y59{bottom:1025.070000px;}
.yc{bottom:1032.810000px;}
.y36{bottom:1033.170000px;}
.yb{bottom:1056.570000px;}
.y35{bottom:1056.930000px;}
.y5{bottom:1087.530000px;}
.y8{bottom:1108.260000px;}
.y4{bottom:1125.900000px;}
.ya{bottom:1130.580000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1178.640000px;}
.y1{bottom:1229.400000px;}
.h13{height:23.745000px;}
.h11{height:38.671172px;}
.h10{height:47.344922px;}
.h17{height:47.505000px;}
.h16{height:47.512500px;}
.h5{height:50.035781px;}
.hd{height:52.628906px;}
.h2{height:56.320312px;}
.h12{height:59.439023px;}
.he{height:63.457031px;}
.h9{height:65.010937px;}
.h4{height:65.884219px;}
.h6{height:67.824844px;}
.hb{height:70.628906px;}
.hc{height:70.664062px;}
.h1a{height:71.280000px;}
.h14{height:71.301000px;}
.h19{height:71.482500px;}
.ha{height:72.562500px;}
.h7{height:84.240000px;}
.h15{height:95.032500px;}
.h8{height:95.217187px;}
.h3{height:112.640625px;}
.h18{height:119.145000px;}
.hf{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:26.674500px;}
.w5{width:31.140000px;}
.w8{width:258.499500px;}
.w4{width:285.913500px;}
.w6{width:382.065000px;}
.w2{width:582.660000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.x5{left:37.110000px;}
.x15{left:50.074500px;}
.x14{left:77.401500px;}
.x2{left:84.960000px;}
.x12{left:89.856000px;}
.x18{left:104.806500px;}
.xd{left:127.476000px;}
.x7{left:137.736000px;}
.x4{left:162.540000px;}
.xf{left:232.588125px;}
.x10{left:238.710000px;}
.xc{left:290.055000px;}
.x11{left:301.035000px;}
.xa{left:308.055000px;}
.x1{left:324.435000px;}
.x16{left:364.035000px;}
.x8{left:392.655000px;}
.x17{left:396.075000px;}
.xb{left:403.275000px;}
.x6{left:404.895000px;}
.x3{left:441.285000px;}
.x9{left:462.345000px;}
.xe{left:467.925000px;}
.x13{left:510.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.189867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls1{letter-spacing:3.200000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls13{letter-spacing:17.920000pt;}
.ls2{letter-spacing:27.520000pt;}
.ls11{letter-spacing:35.840000pt;}
.ls15{letter-spacing:37.760000pt;}
.ls14{letter-spacing:38.400000pt;}
.ls12{letter-spacing:42.240000pt;}
.lse{letter-spacing:78.080000pt;}
.ws4{word-spacing:-25.225173pt;}
.ws9{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.536000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.344000pt;}
.ws1{word-spacing:-12.896000pt;}
.ws8{word-spacing:0.000000pt;}
._73{margin-left:-13.653333pt;}
._2a{margin-left:-2.004480pt;}
._0{margin-left:-1.104000pt;}
._1{width:1.157120pt;}
._c{width:2.077013pt;}
._2{width:3.178667pt;}
._d{width:4.074667pt;}
._3{width:5.248000pt;}
._4{width:6.218667pt;}
._a{width:7.168000pt;}
._5{width:8.128000pt;}
._6{width:9.386667pt;}
._3c{width:10.383360pt;}
._32{width:11.509333pt;}
._19{width:13.456000pt;}
._2c{width:14.378880pt;}
._b{width:17.408000pt;}
._34{width:18.432000pt;}
._1a{width:20.160000pt;}
._1b{width:21.184000pt;}
._8{width:22.976000pt;}
._12{width:24.384000pt;}
._57{width:25.280000pt;}
._24{width:26.176000pt;}
._9{width:27.712000pt;}
._53{width:28.608000pt;}
._2d{width:29.632000pt;}
._13{width:31.504000pt;}
._25{width:32.640000pt;}
._1c{width:33.744000pt;}
._2f{width:35.120000pt;}
._28{width:36.010667pt;}
._1e{width:37.104000pt;}
._1d{width:38.224000pt;}
._39{width:39.552000pt;}
._35{width:40.448000pt;}
._2e{width:41.792000pt;}
._5a{width:42.816000pt;}
._47{width:43.939840pt;}
._46{width:45.056000pt;}
._40{width:46.928000pt;}
._22{width:49.472000pt;}
._59{width:51.072000pt;}
._56{width:52.416000pt;}
._36{width:53.632000pt;}
._37{width:54.528000pt;}
._62{width:55.488000pt;}
._2b{width:56.448000pt;}
._18{width:57.482880pt;}
._38{width:59.152000pt;}
._5e{width:60.160000pt;}
._33{width:61.760000pt;}
._3d{width:64.704000pt;}
._58{width:65.856000pt;}
._66{width:67.200000pt;}
._5c{width:68.288000pt;}
._44{width:70.016000pt;}
._48{width:71.232000pt;}
._49{width:72.128000pt;}
._50{width:73.664000pt;}
._64{width:74.954880pt;}
._30{width:76.672000pt;}
._31{width:77.632000pt;}
._69{width:78.714880pt;}
._23{width:80.016000pt;}
._15{width:81.104000pt;}
._14{width:82.432000pt;}
._7{width:83.520000pt;}
._29{width:85.184000pt;}
._26{width:87.050880pt;}
._27{width:88.256000pt;}
._67{width:89.280000pt;}
._5b{width:90.240000pt;}
._54{width:91.904000pt;}
._55{width:93.248000pt;}
._45{width:94.144000pt;}
._41{width:95.232000pt;}
._43{width:96.640000pt;}
._20{width:99.328000pt;}
._21{width:100.416000pt;}
._6a{width:101.440000pt;}
._52{width:103.424000pt;}
._4b{width:104.554667pt;}
._1f{width:106.368000pt;}
._65{width:108.032000pt;}
._10{width:110.016000pt;}
._f{width:111.248000pt;}
._3e{width:112.640000pt;}
._3f{width:113.920000pt;}
._4e{width:115.776000pt;}
._4f{width:117.184000pt;}
._6d{width:118.336000pt;}
._5f{width:127.104000pt;}
._11{width:128.448000pt;}
._4c{width:130.314667pt;}
._5d{width:133.184000pt;}
._4a{width:134.336000pt;}
._3b{width:137.536000pt;}
._3a{width:138.768000pt;}
._72{width:154.048000pt;}
._e{width:154.944000pt;}
._17{width:164.624000pt;}
._16{width:166.330667pt;}
._71{width:172.800000pt;}
._60{width:176.640000pt;}
._68{width:184.336000pt;}
._42{width:186.688000pt;}
._70{width:193.088000pt;}
._6f{width:225.231360pt;}
._6e{width:226.704000pt;}
._6b{width:247.168000pt;}
._6c{width:259.968000pt;}
._61{width:261.312000pt;}
._63{width:315.200000pt;}
._51{width:347.456000pt;}
._4d{width:653.056000pt;}
._74{width:752.266667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:6.240000pt;}
.y4e{bottom:6.546667pt;}
.y54{bottom:6.548000pt;}
.y58{bottom:6.553333pt;}
.y5b{bottom:6.560000pt;}
.y63{bottom:6.720000pt;}
.y69{bottom:6.760000pt;}
.y56{bottom:17.113333pt;}
.y6c{bottom:17.120000pt;}
.y67{bottom:17.320000pt;}
.y7{bottom:19.872000pt;}
.y6f{bottom:27.360000pt;}
.y53{bottom:27.668000pt;}
.y57{bottom:27.673333pt;}
.y5a{bottom:27.680000pt;}
.y4c{bottom:27.706667pt;}
.y62{bottom:27.840000pt;}
.y65{bottom:27.880000pt;}
.y50{bottom:38.228000pt;}
.y6b{bottom:38.240000pt;}
.y5f{bottom:38.400000pt;}
.y66{bottom:38.440000pt;}
.y9{bottom:47.040000pt;}
.y52{bottom:48.788000pt;}
.y6d{bottom:48.800000pt;}
.y4d{bottom:48.826667pt;}
.y5d{bottom:48.960000pt;}
.y68{bottom:49.000000pt;}
.y6{bottom:53.792000pt;}
.y5e{bottom:59.520000pt;}
.y51{bottom:69.908000pt;}
.y61{bottom:70.080000pt;}
.y43{bottom:79.072000pt;}
.y55{bottom:83.878667pt;}
.y42{bottom:85.792000pt;}
.y60{bottom:91.360000pt;}
.y33{bottom:93.152000pt;}
.y41{bottom:95.872000pt;}
.y88{bottom:110.272000pt;}
.y32{bottom:114.272000pt;}
.y4f{bottom:126.918667pt;}
.y87{bottom:131.392000pt;}
.y31{bottom:135.386667pt;}
.y86{bottom:152.506667pt;}
.y30{bottom:156.506667pt;}
.y85{bottom:173.786667pt;}
.y2f{bottom:177.786667pt;}
.y84{bottom:194.906667pt;}
.y2e{bottom:198.906667pt;}
.y40{bottom:206.266667pt;}
.y4b{bottom:212.200000pt;}
.y83{bottom:216.026667pt;}
.y2d{bottom:220.026667pt;}
.y82{bottom:237.146667pt;}
.y2c{bottom:241.186667pt;}
.y81{bottom:258.146667pt;}
.y2b{bottom:262.466667pt;}
.y49{bottom:276.386667pt;}
.y80{bottom:279.266667pt;}
.y2a{bottom:283.266667pt;}
.y34{bottom:283.586667pt;}
.y7f{bottom:300.386667pt;}
.y48{bottom:304.386667pt;}
.y29{bottom:304.706667pt;}
.y7d{bottom:321.826667pt;}
.y47{bottom:325.506667pt;}
.y28{bottom:325.826667pt;}
.y7c{bottom:343.106667pt;}
.y46{bottom:346.786667pt;}
.y27{bottom:347.106667pt;}
.y7b{bottom:364.226667pt;}
.y26{bottom:368.226667pt;}
.y7a{bottom:385.346667pt;}
.y3f{bottom:389.026667pt;}
.y25{bottom:389.346667pt;}
.y79{bottom:406.466667pt;}
.y3e{bottom:410.146667pt;}
.y24{bottom:410.466667pt;}
.y78{bottom:427.746667pt;}
.y3d{bottom:431.426667pt;}
.y23{bottom:431.746667pt;}
.y77{bottom:448.866667pt;}
.y22{bottom:452.546667pt;}
.y3c{bottom:452.866667pt;}
.y76{bottom:469.986667pt;}
.y21{bottom:473.986667pt;}
.y75{bottom:491.133333pt;}
.y20{bottom:495.133333pt;}
.y74{bottom:512.413333pt;}
.y1f{bottom:516.413333pt;}
.y73{bottom:533.533333pt;}
.y1e{bottom:537.533333pt;}
.y72{bottom:554.653333pt;}
.y44{bottom:558.333333pt;}
.y1d{bottom:558.653333pt;}
.y71{bottom:575.453333pt;}
.y7e{bottom:575.773333pt;}
.y1c{bottom:579.773333pt;}
.y70{bottom:596.893333pt;}
.y1b{bottom:600.893333pt;}
.y6e{bottom:612.253333pt;}
.y1a{bottom:622.173333pt;}
.y19{bottom:643.293333pt;}
.y18{bottom:664.413333pt;}
.y6a{bottom:676.413333pt;}
.y17{bottom:685.533333pt;}
.y16{bottom:706.813333pt;}
.y15{bottom:727.933333pt;}
.y64{bottom:740.413333pt;}
.y14{bottom:749.093333pt;}
.y89{bottom:769.893333pt;}
.y13{bottom:770.213333pt;}
.y12{bottom:791.173333pt;}
.y3b{bottom:791.493333pt;}
.y5c{bottom:804.613333pt;}
.y45{bottom:812.293333pt;}
.y11{bottom:812.613333pt;}
.y10{bottom:833.413333pt;}
.y3a{bottom:833.733333pt;}
.yf{bottom:854.533333pt;}
.y39{bottom:854.853333pt;}
.ye{bottom:875.813333pt;}
.y38{bottom:876.133333pt;}
.yd{bottom:896.933333pt;}
.y37{bottom:897.253333pt;}
.y59{bottom:911.173333pt;}
.yc{bottom:918.053333pt;}
.y36{bottom:918.373333pt;}
.yb{bottom:939.173333pt;}
.y35{bottom:939.493333pt;}
.y5{bottom:966.693333pt;}
.y8{bottom:985.120000pt;}
.y4{bottom:1000.800000pt;}
.ya{bottom:1004.960000pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1047.680000pt;}
.y1{bottom:1092.800000pt;}
.h13{height:21.106667pt;}
.h11{height:34.374375pt;}
.h10{height:42.084375pt;}
.h17{height:42.226667pt;}
.h16{height:42.233333pt;}
.h5{height:44.476250pt;}
.hd{height:46.781250pt;}
.h2{height:50.062500pt;}
.h12{height:52.834688pt;}
.he{height:56.406250pt;}
.h9{height:57.787500pt;}
.h4{height:58.563750pt;}
.h6{height:60.288750pt;}
.hb{height:62.781250pt;}
.hc{height:62.812500pt;}
.h1a{height:63.360000pt;}
.h14{height:63.378667pt;}
.h19{height:63.540000pt;}
.ha{height:64.500000pt;}
.h7{height:74.880000pt;}
.h15{height:84.473333pt;}
.h8{height:84.637500pt;}
.h3{height:100.125000pt;}
.h18{height:105.906667pt;}
.hf{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:23.710667pt;}
.w5{width:27.680000pt;}
.w8{width:229.777333pt;}
.w4{width:254.145333pt;}
.w6{width:339.613333pt;}
.w2{width:517.920000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.x5{left:32.986667pt;}
.x15{left:44.510667pt;}
.x14{left:68.801333pt;}
.x2{left:75.520000pt;}
.x12{left:79.872000pt;}
.x18{left:93.161333pt;}
.xd{left:113.312000pt;}
.x7{left:122.432000pt;}
.x4{left:144.480000pt;}
.xf{left:206.745000pt;}
.x10{left:212.186667pt;}
.xc{left:257.826667pt;}
.x11{left:267.586667pt;}
.xa{left:273.826667pt;}
.x1{left:288.386667pt;}
.x16{left:323.586667pt;}
.x8{left:349.026667pt;}
.x17{left:352.066667pt;}
.xb{left:358.466667pt;}
.x6{left:359.906667pt;}
.x3{left:392.253333pt;}
.x9{left:410.973333pt;}
.xe{left:415.933333pt;}
.x13{left:453.693333pt;}
}




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