
    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_c67e548df0f1ad5e5a7ba51a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_38b2daec25cd1ba9c2df5567.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8a83c7cdebbe73d8f6b60531.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_24977155b37113614bba0950.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6cb5395e4776037a8ba0af57.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_36e19ff30a9f508f13ee27b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_f44f1a4ccf9dea6d99841036.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca02253cf12ecffe4b36997f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_520295e44e7320adc7a29747.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_847ee43a652a2b3b4dfb1f21.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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:-79.200000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-4.680000px;}
.ls17{letter-spacing:-0.972000px;}
.ls33{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.684000px;}
.lsb{letter-spacing:-0.428400px;}
.ls24{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls2b{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.504000px;}
.ls30{letter-spacing:3.600000px;}
.ls2d{letter-spacing:5.040000px;}
.ls2f{letter-spacing:6.480000px;}
.lsd{letter-spacing:7.740000px;}
.ls19{letter-spacing:10.620000px;}
.ls1a{letter-spacing:11.340000px;}
.ls23{letter-spacing:14.940000px;}
.ls1d{letter-spacing:15.660000px;}
.ls8{letter-spacing:16.380000px;}
.ls18{letter-spacing:16.500000px;}
.ls1f{letter-spacing:17.820000px;}
.ls31{letter-spacing:18.144000px;}
.ls25{letter-spacing:18.540000px;}
.ls26{letter-spacing:19.260000px;}
.ls28{letter-spacing:19.980000px;}
.ls32{letter-spacing:21.600000px;}
.ls29{letter-spacing:25.740000px;}
.lsc{letter-spacing:28.620000px;}
.ls4{letter-spacing:34.380000px;}
.ls5{letter-spacing:35.820000px;}
.ls27{letter-spacing:36.000000px;}
.ls22{letter-spacing:37.260000px;}
.ls1e{letter-spacing:40.140000px;}
.lse{letter-spacing:42.420000px;}
.ls13{letter-spacing:49.500000px;}
.ls12{letter-spacing:50.220000px;}
.ls11{letter-spacing:50.940000px;}
.ls2a{letter-spacing:54.144000px;}
.ls16{letter-spacing:54.540000px;}
.ls6{letter-spacing:55.260000px;}
.ls1{letter-spacing:59.760000px;}
.ls1b{letter-spacing:63.180000px;}
.ls1c{letter-spacing:63.900000px;}
.ls14{letter-spacing:81.180000px;}
.ls15{letter-spacing:81.360000px;}
.ls0{letter-spacing:148.500000px;}
.lsf{letter-spacing:249.437280px;}
.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:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.380000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-4.717440px;}
._2{margin-left:-3.306240px;}
._1c{margin-left:-2.026800px;}
._1{margin-left:-1.010880px;}
._3{width:1.010880px;}
._7{width:2.906880px;}
._13{width:4.320000px;}
._14{width:5.832000px;}
._5{width:7.202880px;}
._4{width:8.400000px;}
._f{width:9.885120px;}
._19{width:11.234880px;}
._12{width:12.528000px;}
._1b{width:14.112000px;}
._22{width:15.336720px;}
._9{width:16.994880px;}
._2b{width:18.428400px;}
._8{width:19.653120px;}
._3e{width:20.819280px;}
._2f{width:22.165200px;}
._3a{width:23.592960px;}
._b{width:24.840000px;}
._a{width:25.920000px;}
._1a{width:27.936000px;}
._31{width:29.402400px;}
._18{width:30.960000px;}
._10{width:32.976000px;}
._29{width:34.159680px;}
._c{width:35.928000px;}
._d{width:37.224000px;}
._3d{width:38.312640px;}
._27{width:39.345120px;}
._28{width:40.356000px;}
._1d{width:41.530320px;}
._1e{width:42.635520px;}
._15{width:44.136000px;}
._16{width:45.429120px;}
._2c{width:46.818720px;}
._2e{width:48.634560px;}
._17{width:50.184000px;}
._34{width:51.582960px;}
._30{width:53.725440px;}
._6{width:54.792000px;}
._2a{width:55.904400px;}
._32{width:57.487680px;}
._11{width:59.328000px;}
._1f{width:60.798240px;}
._39{width:63.011520px;}
._e{width:64.370880px;}
._20{width:65.527200px;}
._21{width:66.655440px;}
._23{width:69.076800px;}
._24{width:70.266240px;}
._38{width:71.946000px;}
._2d{width:74.552400px;}
._35{width:80.310960px;}
._36{width:81.380880px;}
._37{width:82.664400px;}
._33{width:96.539040px;}
._3b{width:100.503360px;}
._3c{width:101.935440px;}
._25{width:130.577040px;}
._26{width:131.835600px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(7,57,118);}
.fc6{color:rgb(128,128,128);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.252500px;}
.y6{bottom:3.960000px;}
.y67{bottom:4.140000px;}
.y73{bottom:4.500000px;}
.y6a{bottom:7.380000px;}
.y9c{bottom:8.640000px;}
.y94{bottom:8.820000px;}
.y6e{bottom:9.000000px;}
.y64{bottom:14.400000px;}
.y98{bottom:14.760000px;}
.y96{bottom:14.940000px;}
.y6b{bottom:17.820000px;}
.y92{bottom:19.080000px;}
.y6f{bottom:19.440000px;}
.y3{bottom:23.983500px;}
.y66{bottom:24.840000px;}
.y72{bottom:25.200000px;}
.y76{bottom:25.245000px;}
.y69{bottom:28.080000px;}
.y9b{bottom:29.340000px;}
.y93{bottom:29.520000px;}
.y6d{bottom:29.700000px;}
.y2{bottom:31.716000px;}
.y63{bottom:35.130000px;}
.y65{bottom:45.570000px;}
.y71{bottom:45.900000px;}
.y75{bottom:45.945000px;}
.y8f{bottom:87.696000px;}
.y39{bottom:100.116000px;}
.ya4{bottom:108.576000px;}
.y5f{bottom:109.476000px;}
.y60{bottom:109.836000px;}
.y8e{bottom:115.596000px;}
.y38{bottom:120.816000px;}
.ya3{bottom:136.296000px;}
.y5e{bottom:137.556000px;}
.y37{bottom:141.516000px;}
.y8d{bottom:143.316000px;}
.y36{bottom:162.210000px;}
.ya2{bottom:164.010000px;}
.y5d{bottom:165.270000px;}
.y8c{bottom:171.030000px;}
.y35{bottom:182.910000px;}
.ya1{bottom:191.910000px;}
.y5c{bottom:193.170000px;}
.y8b{bottom:198.930000px;}
.y34{bottom:203.610000px;}
.ya0{bottom:219.630000px;}
.y5b{bottom:220.890000px;}
.y33{bottom:224.310000px;}
.y8a{bottom:226.650000px;}
.y32{bottom:245.010000px;}
.y9f{bottom:247.350000px;}
.y5a{bottom:248.610000px;}
.y89{bottom:254.370000px;}
.y31{bottom:265.710000px;}
.y9e{bottom:273.315000px;}
.y59{bottom:276.555000px;}
.y88{bottom:282.135000px;}
.y30{bottom:286.455000px;}
.y9d{bottom:294.735000px;}
.y58{bottom:304.275000px;}
.y2f{bottom:307.155000px;}
.y87{bottom:310.035000px;}
.ybc{bottom:314.715000px;}
.y2e{bottom:327.855000px;}
.y57{bottom:331.995000px;}
.y86{bottom:337.755000px;}
.ybb{bottom:342.615000px;}
.y9a{bottom:348.375000px;}
.y2d{bottom:348.555000px;}
.y56{bottom:359.715000px;}
.y85{bottom:365.475000px;}
.y2c{bottom:369.255000px;}
.yba{bottom:370.335000px;}
.y55{bottom:387.615000px;}
.y2b{bottom:389.955000px;}
.y84{bottom:393.375000px;}
.yb9{bottom:398.055000px;}
.y99{bottom:410.475000px;}
.y2a{bottom:410.655000px;}
.y54{bottom:415.335000px;}
.y83{bottom:421.095000px;}
.yb8{bottom:421.635000px;}
.y29{bottom:431.355000px;}
.yb7{bottom:442.335000px;}
.y53{bottom:443.055000px;}
.y82{bottom:448.815000px;}
.y28{bottom:452.055000px;}
.yb6{bottom:463.035000px;}
.y97{bottom:464.295000px;}
.y52{bottom:470.775000px;}
.y27{bottom:472.755000px;}
.y81{bottom:476.535000px;}
.yb5{bottom:483.735000px;}
.y26{bottom:493.455000px;}
.y51{bottom:498.675000px;}
.y80{bottom:504.435000px;}
.y25{bottom:514.155000px;}
.y95{bottom:517.935000px;}
.yb4{bottom:525.135000px;}
.y50{bottom:526.395000px;}
.y7f{bottom:532.155000px;}
.y24{bottom:534.855000px;}
.yb3{bottom:545.835000px;}
.y4f{bottom:554.115000px;}
.y23{bottom:555.555000px;}
.y7e{bottom:559.905000px;}
.yb2{bottom:566.565000px;}
.y91{bottom:571.785000px;}
.y22{bottom:576.285000px;}
.y4e{bottom:582.045000px;}
.yb1{bottom:587.265000px;}
.y7d{bottom:587.625000px;}
.y21{bottom:596.985000px;}
.yb0{bottom:607.965000px;}
.y4d{bottom:609.765000px;}
.y7c{bottom:615.525000px;}
.y20{bottom:617.685000px;}
.yaf{bottom:628.665000px;}
.y90{bottom:636.945000px;}
.y4c{bottom:637.485000px;}
.y1f{bottom:638.385000px;}
.y7b{bottom:643.245000px;}
.yae{bottom:649.365000px;}
.y1e{bottom:659.085000px;}
.y4b{bottom:665.205000px;}
.yad{bottom:670.065000px;}
.y7a{bottom:670.965000px;}
.y1d{bottom:679.785000px;}
.yac{bottom:690.765000px;}
.y4a{bottom:693.105000px;}
.y79{bottom:698.865000px;}
.y1c{bottom:700.485000px;}
.yab{bottom:711.465000px;}
.y49{bottom:720.825000px;}
.y1b{bottom:721.185000px;}
.y78{bottom:723.525000px;}
.yaa{bottom:732.165000px;}
.y1a{bottom:741.885000px;}
.y77{bottom:742.065000px;}
.y48{bottom:748.545000px;}
.ya9{bottom:752.865000px;}
.y19{bottom:762.585000px;}
.ya8{bottom:773.565000px;}
.y47{bottom:776.445000px;}
.y18{bottom:783.285000px;}
.ya7{bottom:794.265000px;}
.y17{bottom:803.985000px;}
.y46{bottom:804.165000px;}
.ya6{bottom:814.605000px;}
.y74{bottom:816.585000px;}
.y16{bottom:824.685000px;}
.y61{bottom:831.525000px;}
.y45{bottom:831.885000px;}
.ya5{bottom:837.285000px;}
.y15{bottom:845.430000px;}
.y44{bottom:859.650000px;}
.y14{bottom:866.130000px;}
.y13{bottom:886.830000px;}
.y43{bottom:887.550000px;}
.y70{bottom:891.150000px;}
.y12{bottom:907.530000px;}
.y42{bottom:915.270000px;}
.y11{bottom:928.230000px;}
.y41{bottom:942.990000px;}
.y6c{bottom:965.490000px;}
.y10{bottom:968.370000px;}
.y40{bottom:970.710000px;}
.yf{bottom:985.110000px;}
.y3f{bottom:998.610000px;}
.ye{bottom:1005.450000px;}
.yd{bottom:1024.890000px;}
.y3e{bottom:1026.330000px;}
.y68{bottom:1028.310000px;}
.yc{bottom:1040.190000px;}
.y3d{bottom:1054.050000px;}
.yb{bottom:1060.890000px;}
.ya{bottom:1081.230000px;}
.y3c{bottom:1081.950000px;}
.y62{bottom:1088.070000px;}
.y9{bottom:1099.950000px;}
.y3b{bottom:1109.670000px;}
.y8{bottom:1112.910000px;}
.y7{bottom:1137.060000px;}
.y3a{bottom:1137.420000px;}
.y1{bottom:1190.700000px;}
.y5{bottom:1237.500000px;}
.h3{height:20.692500px;}
.h5{height:23.220000px;}
.h7{height:36.281250px;}
.h1c{height:41.385000px;}
.h1b{height:41.430000px;}
.ha{height:47.321367px;}
.h12{height:47.325000px;}
.h1d{height:49.665000px;}
.h13{height:50.385000px;}
.h1a{height:50.580000px;}
.hd{height:52.628906px;}
.hb{height:52.971680px;}
.h17{height:52.998047px;}
.hc{height:58.429688px;}
.h1f{height:58.651172px;}
.he{height:59.066719px;}
.h14{height:62.085000px;}
.h16{height:62.100000px;}
.h15{height:62.122500px;}
.h10{height:62.130000px;}
.h1e{height:65.010937px;}
.h9{height:70.628906px;}
.h11{height:70.664062px;}
.h8{height:72.562500px;}
.h6{height:72.846211px;}
.h20{height:74.004654px;}
.h19{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h18{height:86.585445px;}
.hf{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:36.885000px;}
.w3{width:36.900000px;}
.w2{width:75.780000px;}
.wa{width:169.410000px;}
.w8{width:180.375000px;}
.w5{width:186.508500px;}
.wb{width:191.535000px;}
.w6{width:223.035000px;}
.w7{width:223.050000px;}
.w9{width:234.028500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:8.098500px;}
.x1e{left:10.438500px;}
.x17{left:12.060000px;}
.x5{left:13.140000px;}
.x1d{left:14.565000px;}
.x28{left:16.920000px;}
.x3{left:22.680000px;}
.x14{left:26.265000px;}
.x16{left:28.080000px;}
.x2b{left:32.565000px;}
.x20{left:34.558500px;}
.x1f{left:37.078500px;}
.x1a{left:38.910000px;}
.x21{left:40.678500px;}
.x22{left:41.758500px;}
.x12{left:45.538500px;}
.x11{left:47.341500px;}
.x2e{left:51.154500px;}
.x1{left:53.100000px;}
.x2d{left:56.194500px;}
.x7{left:58.860000px;}
.x2a{left:60.690000px;}
.x24{left:63.541500px;}
.x23{left:66.240000px;}
.x25{left:69.334500px;}
.x2c{left:71.674500px;}
.x18{left:77.790000px;}
.x10{left:85.140000px;}
.x1c{left:92.910000px;}
.xf{left:95.580000px;}
.xb{left:159.330000px;}
.x8{left:175.170000px;}
.xe{left:184.350000px;}
.x13{left:234.045000px;}
.xc{left:235.470000px;}
.xd{left:264.810000px;}
.xa{left:289.110000px;}
.x26{left:297.945000px;}
.x2f{left:314.355000px;}
.x2{left:406.695000px;}
.x4{left:420.015000px;}
.x9{left:446.475000px;}
.x15{left:457.455000px;}
.x27{left:478.695000px;}
.x6{left:499.980000px;}
.x29{left:648.300000px;}
.x19{left:680.700000px;}
@media print{
.v1{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-4.160000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls33{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.608000pt;}
.lsb{letter-spacing:-0.380800pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls30{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:5.760000pt;}
.lsd{letter-spacing:6.880000pt;}
.ls19{letter-spacing:9.440000pt;}
.ls1a{letter-spacing:10.080000pt;}
.ls23{letter-spacing:13.280000pt;}
.ls1d{letter-spacing:13.920000pt;}
.ls8{letter-spacing:14.560000pt;}
.ls18{letter-spacing:14.666667pt;}
.ls1f{letter-spacing:15.840000pt;}
.ls31{letter-spacing:16.128000pt;}
.ls25{letter-spacing:16.480000pt;}
.ls26{letter-spacing:17.120000pt;}
.ls28{letter-spacing:17.760000pt;}
.ls32{letter-spacing:19.200000pt;}
.ls29{letter-spacing:22.880000pt;}
.lsc{letter-spacing:25.440000pt;}
.ls4{letter-spacing:30.560000pt;}
.ls5{letter-spacing:31.840000pt;}
.ls27{letter-spacing:32.000000pt;}
.ls22{letter-spacing:33.120000pt;}
.ls1e{letter-spacing:35.680000pt;}
.lse{letter-spacing:37.706667pt;}
.ls13{letter-spacing:44.000000pt;}
.ls12{letter-spacing:44.640000pt;}
.ls11{letter-spacing:45.280000pt;}
.ls2a{letter-spacing:48.128000pt;}
.ls16{letter-spacing:48.480000pt;}
.ls6{letter-spacing:49.120000pt;}
.ls1{letter-spacing:53.120000pt;}
.ls1b{letter-spacing:56.160000pt;}
.ls1c{letter-spacing:56.800000pt;}
.ls14{letter-spacing:72.160000pt;}
.ls15{letter-spacing:72.320000pt;}
.ls0{letter-spacing:132.000000pt;}
.lsf{letter-spacing:221.722027pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.560000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-4.193280pt;}
._2{margin-left:-2.938880pt;}
._1c{margin-left:-1.801600pt;}
._1{margin-left:-0.898560pt;}
._3{width:0.898560pt;}
._7{width:2.583893pt;}
._13{width:3.840000pt;}
._14{width:5.184000pt;}
._5{width:6.402560pt;}
._4{width:7.466667pt;}
._f{width:8.786773pt;}
._19{width:9.986560pt;}
._12{width:11.136000pt;}
._1b{width:12.544000pt;}
._22{width:13.632640pt;}
._9{width:15.106560pt;}
._2b{width:16.380800pt;}
._8{width:17.469440pt;}
._3e{width:18.506027pt;}
._2f{width:19.702400pt;}
._3a{width:20.971520pt;}
._b{width:22.080000pt;}
._a{width:23.040000pt;}
._1a{width:24.832000pt;}
._31{width:26.135467pt;}
._18{width:27.520000pt;}
._10{width:29.312000pt;}
._29{width:30.364160pt;}
._c{width:31.936000pt;}
._d{width:33.088000pt;}
._3d{width:34.055680pt;}
._27{width:34.973440pt;}
._28{width:35.872000pt;}
._1d{width:36.915840pt;}
._1e{width:37.898240pt;}
._15{width:39.232000pt;}
._16{width:40.381440pt;}
._2c{width:41.616640pt;}
._2e{width:43.230720pt;}
._17{width:44.608000pt;}
._34{width:45.851520pt;}
._30{width:47.755947pt;}
._6{width:48.704000pt;}
._2a{width:49.692800pt;}
._32{width:51.100160pt;}
._11{width:52.736000pt;}
._1f{width:54.042880pt;}
._39{width:56.010240pt;}
._e{width:57.218560pt;}
._20{width:58.246400pt;}
._21{width:59.249280pt;}
._23{width:61.401600pt;}
._24{width:62.458880pt;}
._38{width:63.952000pt;}
._2d{width:66.268800pt;}
._35{width:71.387520pt;}
._36{width:72.338560pt;}
._37{width:73.479467pt;}
._33{width:85.812480pt;}
._3b{width:89.336320pt;}
._3c{width:90.609280pt;}
._25{width:116.068480pt;}
._26{width:117.187200pt;}
.fs1{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.113333pt;}
.y6{bottom:3.520000pt;}
.y67{bottom:3.680000pt;}
.y73{bottom:4.000000pt;}
.y6a{bottom:6.560000pt;}
.y9c{bottom:7.680000pt;}
.y94{bottom:7.840000pt;}
.y6e{bottom:8.000000pt;}
.y64{bottom:12.800000pt;}
.y98{bottom:13.120000pt;}
.y96{bottom:13.280000pt;}
.y6b{bottom:15.840000pt;}
.y92{bottom:16.960000pt;}
.y6f{bottom:17.280000pt;}
.y3{bottom:21.318667pt;}
.y66{bottom:22.080000pt;}
.y72{bottom:22.400000pt;}
.y76{bottom:22.440000pt;}
.y69{bottom:24.960000pt;}
.y9b{bottom:26.080000pt;}
.y93{bottom:26.240000pt;}
.y6d{bottom:26.400000pt;}
.y2{bottom:28.192000pt;}
.y63{bottom:31.226667pt;}
.y65{bottom:40.506667pt;}
.y71{bottom:40.800000pt;}
.y75{bottom:40.840000pt;}
.y8f{bottom:77.952000pt;}
.y39{bottom:88.992000pt;}
.ya4{bottom:96.512000pt;}
.y5f{bottom:97.312000pt;}
.y60{bottom:97.632000pt;}
.y8e{bottom:102.752000pt;}
.y38{bottom:107.392000pt;}
.ya3{bottom:121.152000pt;}
.y5e{bottom:122.272000pt;}
.y37{bottom:125.792000pt;}
.y8d{bottom:127.392000pt;}
.y36{bottom:144.186667pt;}
.ya2{bottom:145.786667pt;}
.y5d{bottom:146.906667pt;}
.y8c{bottom:152.026667pt;}
.y35{bottom:162.586667pt;}
.ya1{bottom:170.586667pt;}
.y5c{bottom:171.706667pt;}
.y8b{bottom:176.826667pt;}
.y34{bottom:180.986667pt;}
.ya0{bottom:195.226667pt;}
.y5b{bottom:196.346667pt;}
.y33{bottom:199.386667pt;}
.y8a{bottom:201.466667pt;}
.y32{bottom:217.786667pt;}
.y9f{bottom:219.866667pt;}
.y5a{bottom:220.986667pt;}
.y89{bottom:226.106667pt;}
.y31{bottom:236.186667pt;}
.y9e{bottom:242.946667pt;}
.y59{bottom:245.826667pt;}
.y88{bottom:250.786667pt;}
.y30{bottom:254.626667pt;}
.y9d{bottom:261.986667pt;}
.y58{bottom:270.466667pt;}
.y2f{bottom:273.026667pt;}
.y87{bottom:275.586667pt;}
.ybc{bottom:279.746667pt;}
.y2e{bottom:291.426667pt;}
.y57{bottom:295.106667pt;}
.y86{bottom:300.226667pt;}
.ybb{bottom:304.546667pt;}
.y9a{bottom:309.666667pt;}
.y2d{bottom:309.826667pt;}
.y56{bottom:319.746667pt;}
.y85{bottom:324.866667pt;}
.y2c{bottom:328.226667pt;}
.yba{bottom:329.186667pt;}
.y55{bottom:344.546667pt;}
.y2b{bottom:346.626667pt;}
.y84{bottom:349.666667pt;}
.yb9{bottom:353.826667pt;}
.y99{bottom:364.866667pt;}
.y2a{bottom:365.026667pt;}
.y54{bottom:369.186667pt;}
.y83{bottom:374.306667pt;}
.yb8{bottom:374.786667pt;}
.y29{bottom:383.426667pt;}
.yb7{bottom:393.186667pt;}
.y53{bottom:393.826667pt;}
.y82{bottom:398.946667pt;}
.y28{bottom:401.826667pt;}
.yb6{bottom:411.586667pt;}
.y97{bottom:412.706667pt;}
.y52{bottom:418.466667pt;}
.y27{bottom:420.226667pt;}
.y81{bottom:423.586667pt;}
.yb5{bottom:429.986667pt;}
.y26{bottom:438.626667pt;}
.y51{bottom:443.266667pt;}
.y80{bottom:448.386667pt;}
.y25{bottom:457.026667pt;}
.y95{bottom:460.386667pt;}
.yb4{bottom:466.786667pt;}
.y50{bottom:467.906667pt;}
.y7f{bottom:473.026667pt;}
.y24{bottom:475.426667pt;}
.yb3{bottom:485.186667pt;}
.y4f{bottom:492.546667pt;}
.y23{bottom:493.826667pt;}
.y7e{bottom:497.693333pt;}
.yb2{bottom:503.613333pt;}
.y91{bottom:508.253333pt;}
.y22{bottom:512.253333pt;}
.y4e{bottom:517.373333pt;}
.yb1{bottom:522.013333pt;}
.y7d{bottom:522.333333pt;}
.y21{bottom:530.653333pt;}
.yb0{bottom:540.413333pt;}
.y4d{bottom:542.013333pt;}
.y7c{bottom:547.133333pt;}
.y20{bottom:549.053333pt;}
.yaf{bottom:558.813333pt;}
.y90{bottom:566.173333pt;}
.y4c{bottom:566.653333pt;}
.y1f{bottom:567.453333pt;}
.y7b{bottom:571.773333pt;}
.yae{bottom:577.213333pt;}
.y1e{bottom:585.853333pt;}
.y4b{bottom:591.293333pt;}
.yad{bottom:595.613333pt;}
.y7a{bottom:596.413333pt;}
.y1d{bottom:604.253333pt;}
.yac{bottom:614.013333pt;}
.y4a{bottom:616.093333pt;}
.y79{bottom:621.213333pt;}
.y1c{bottom:622.653333pt;}
.yab{bottom:632.413333pt;}
.y49{bottom:640.733333pt;}
.y1b{bottom:641.053333pt;}
.y78{bottom:643.133333pt;}
.yaa{bottom:650.813333pt;}
.y1a{bottom:659.453333pt;}
.y77{bottom:659.613333pt;}
.y48{bottom:665.373333pt;}
.ya9{bottom:669.213333pt;}
.y19{bottom:677.853333pt;}
.ya8{bottom:687.613333pt;}
.y47{bottom:690.173333pt;}
.y18{bottom:696.253333pt;}
.ya7{bottom:706.013333pt;}
.y17{bottom:714.653333pt;}
.y46{bottom:714.813333pt;}
.ya6{bottom:724.093333pt;}
.y74{bottom:725.853333pt;}
.y16{bottom:733.053333pt;}
.y61{bottom:739.133333pt;}
.y45{bottom:739.453333pt;}
.ya5{bottom:744.253333pt;}
.y15{bottom:751.493333pt;}
.y44{bottom:764.133333pt;}
.y14{bottom:769.893333pt;}
.y13{bottom:788.293333pt;}
.y43{bottom:788.933333pt;}
.y70{bottom:792.133333pt;}
.y12{bottom:806.693333pt;}
.y42{bottom:813.573333pt;}
.y11{bottom:825.093333pt;}
.y41{bottom:838.213333pt;}
.y6c{bottom:858.213333pt;}
.y10{bottom:860.773333pt;}
.y40{bottom:862.853333pt;}
.yf{bottom:875.653333pt;}
.y3f{bottom:887.653333pt;}
.ye{bottom:893.733333pt;}
.yd{bottom:911.013333pt;}
.y3e{bottom:912.293333pt;}
.y68{bottom:914.053333pt;}
.yc{bottom:924.613333pt;}
.y3d{bottom:936.933333pt;}
.yb{bottom:943.013333pt;}
.ya{bottom:961.093333pt;}
.y3c{bottom:961.733333pt;}
.y62{bottom:967.173333pt;}
.y9{bottom:977.733333pt;}
.y3b{bottom:986.373333pt;}
.y8{bottom:989.253333pt;}
.y7{bottom:1010.720000pt;}
.y3a{bottom:1011.040000pt;}
.y1{bottom:1058.400000pt;}
.y5{bottom:1100.000000pt;}
.h3{height:18.393333pt;}
.h5{height:20.640000pt;}
.h7{height:32.250000pt;}
.h1c{height:36.786667pt;}
.h1b{height:36.826667pt;}
.ha{height:42.063437pt;}
.h12{height:42.066667pt;}
.h1d{height:44.146667pt;}
.h13{height:44.786667pt;}
.h1a{height:44.960000pt;}
.hd{height:46.781250pt;}
.hb{height:47.085938pt;}
.h17{height:47.109375pt;}
.hc{height:51.937500pt;}
.h1f{height:52.134375pt;}
.he{height:52.503750pt;}
.h14{height:55.186667pt;}
.h16{height:55.200000pt;}
.h15{height:55.220000pt;}
.h10{height:55.226667pt;}
.h1e{height:57.787500pt;}
.h9{height:62.781250pt;}
.h11{height:62.812500pt;}
.h8{height:64.500000pt;}
.h6{height:64.752187pt;}
.h20{height:65.781915pt;}
.h19{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h18{height:76.964840pt;}
.hf{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.786667pt;}
.w3{width:32.800000pt;}
.w2{width:67.360000pt;}
.wa{width:150.586667pt;}
.w8{width:160.333333pt;}
.w5{width:165.785333pt;}
.wb{width:170.253333pt;}
.w6{width:198.253333pt;}
.w7{width:198.266667pt;}
.w9{width:208.025333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.198667pt;}
.x1e{left:9.278667pt;}
.x17{left:10.720000pt;}
.x5{left:11.680000pt;}
.x1d{left:12.946667pt;}
.x28{left:15.040000pt;}
.x3{left:20.160000pt;}
.x14{left:23.346667pt;}
.x16{left:24.960000pt;}
.x2b{left:28.946667pt;}
.x20{left:30.718667pt;}
.x1f{left:32.958667pt;}
.x1a{left:34.586667pt;}
.x21{left:36.158667pt;}
.x22{left:37.118667pt;}
.x12{left:40.478667pt;}
.x11{left:42.081333pt;}
.x2e{left:45.470667pt;}
.x1{left:47.200000pt;}
.x2d{left:49.950667pt;}
.x7{left:52.320000pt;}
.x2a{left:53.946667pt;}
.x24{left:56.481333pt;}
.x23{left:58.880000pt;}
.x25{left:61.630667pt;}
.x2c{left:63.710667pt;}
.x18{left:69.146667pt;}
.x10{left:75.680000pt;}
.x1c{left:82.586667pt;}
.xf{left:84.960000pt;}
.xb{left:141.626667pt;}
.x8{left:155.706667pt;}
.xe{left:163.866667pt;}
.x13{left:208.040000pt;}
.xc{left:209.306667pt;}
.xd{left:235.386667pt;}
.xa{left:256.986667pt;}
.x26{left:264.840000pt;}
.x2f{left:279.426667pt;}
.x2{left:361.506667pt;}
.x4{left:373.346667pt;}
.x9{left:396.866667pt;}
.x15{left:406.626667pt;}
.x27{left:425.506667pt;}
.x6{left:444.426667pt;}
.x29{left:576.266667pt;}
.x19{left:605.066667pt;}
}




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