
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_88a4b88d94eeefd666ab059a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2d8c04fc917d28f7dcb9dc87.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_df03c54247c1254f7ec7d979.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')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_ad2d7e8f002a07dbc4f46ab8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6f131a3a668cef0ac0bfca77.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_2f55c5cf1610a21469b1048c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_571a320b08c78d8dfc783299.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_6665f4aeb373f09cf4525344.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_8e6d9523f95e3032573cb5f2.woff')format("woff");}.fff{font-family:fff;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;}
.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:-77.760000px;}
.v4{vertical-align:-66.240000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsa{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.089400px;}
.ls5{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.720000px;}
.lsb{letter-spacing:16.306560px;}
.ls9{letter-spacing:46.546560px;}
.ls7{letter-spacing:63.826560px;}
.ls1{letter-spacing:201.060000px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.ws9{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.120000px;}
.wsb{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._18{margin-left:-3.121920px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._1a{width:4.438080px;}
._f{width:5.509440px;}
._10{width:6.518400px;}
._e{width:7.773120px;}
._d{width:9.345600px;}
._b{width:10.396800px;}
._c{width:11.422080px;}
._11{width:12.597120px;}
._1e{width:13.694880px;}
._a{width:17.026560px;}
._17{width:18.688320px;}
._16{width:20.266560px;}
._1b{width:21.648960px;}
._1d{width:23.118720px;}
._1c{width:24.194880px;}
._19{width:25.551360px;}
._13{width:26.565120px;}
._12{width:27.817920px;}
._14{width:28.820640px;}
._15{width:30.384000px;}
._20{width:56.188800px;}
._1f{width:57.274560px;}
._6{width:69.989760px;}
._9{width:94.680000px;}
._8{width:222.996000px;}
._7{width:678.625920px;}
._5{width:980.525760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.875500px;}
.y41{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y5c{bottom:5.370000px;}
.y5a{bottom:5.395500px;}
.y2{bottom:10.080000px;}
.y4b{bottom:10.435500px;}
.y40{bottom:21.240000px;}
.y59{bottom:21.991500px;}
.y4{bottom:23.400000px;}
.y58{bottom:37.474500px;}
.y3f{bottom:38.520000px;}
.y4a{bottom:39.994500px;}
.y3{bottom:47.880000px;}
.y49{bottom:52.234500px;}
.y57{bottom:54.754500px;}
.y3e{bottom:55.800000px;}
.y48{bottom:65.194500px;}
.y56{bottom:70.594500px;}
.y8{bottom:71.676000px;}
.y3d{bottom:73.125000px;}
.y47{bottom:78.154500px;}
.y55{bottom:86.074500px;}
.y3c{bottom:90.405000px;}
.y46{bottom:91.114500px;}
.y7{bottom:91.476000px;}
.y54{bottom:101.554500px;}
.y3b{bottom:107.325000px;}
.y45{bottom:110.914500px;}
.y53{bottom:114.514500px;}
.y92{bottom:115.236000px;}
.yca{bottom:117.756000px;}
.y52{bottom:120.994500px;}
.y42{bottom:123.880500px;}
.y3a{bottom:124.605000px;}
.yf7{bottom:125.676000px;}
.y91{bottom:133.236000px;}
.yc9{bottom:135.036000px;}
.y51{bottom:136.834500px;}
.y39{bottom:141.885000px;}
.yf6{bottom:142.992000px;}
.y90{bottom:150.915000px;}
.y50{bottom:152.344500px;}
.yc8{bottom:152.355000px;}
.y38{bottom:159.165000px;}
.yf5{bottom:160.275000px;}
.y4f{bottom:167.824500px;}
.y8f{bottom:168.195000px;}
.yc7{bottom:169.635000px;}
.y44{bottom:172.864500px;}
.y37{bottom:176.445000px;}
.yf4{bottom:177.555000px;}
.y4e{bottom:183.304500px;}
.y43{bottom:183.664500px;}
.y8e{bottom:186.195000px;}
.yc6{bottom:186.915000px;}
.y36{bottom:193.725000px;}
.yf3{bottom:194.835000px;}
.y4d{bottom:198.424500px;}
.y8d{bottom:203.475000px;}
.yc5{bottom:204.195000px;}
.y35{bottom:211.035000px;}
.yf2{bottom:212.115000px;}
.yc4{bottom:221.475000px;}
.y34{bottom:228.315000px;}
.yf1{bottom:229.035000px;}
.y8c{bottom:230.115000px;}
.yc3{bottom:238.395000px;}
.y33{bottom:245.595000px;}
.y20{bottom:245.955000px;}
.y8b{bottom:247.035000px;}
.yc2{bottom:255.675000px;}
.y32{bottom:262.875000px;}
.y8a{bottom:265.395000px;}
.y1f{bottom:270.075000px;}
.yf0{bottom:272.595000px;}
.yc1{bottom:272.955000px;}
.y31{bottom:280.155000px;}
.y89{bottom:282.705000px;}
.yef{bottom:289.905000px;}
.yc0{bottom:290.265000px;}
.y1e{bottom:294.195000px;}
.y30{bottom:297.075000px;}
.y88{bottom:301.065000px;}
.yee{bottom:307.185000px;}
.ybf{bottom:307.545000px;}
.y1d{bottom:318.315000px;}
.y87{bottom:318.345000px;}
.y2f{bottom:322.995000px;}
.yed{bottom:324.465000px;}
.ybe{bottom:324.825000px;}
.y86{bottom:336.705000px;}
.y12{bottom:337.065000px;}
.y2e{bottom:338.505000px;}
.yec{bottom:341.745000px;}
.ybd{bottom:342.105000px;}
.y1c{bottom:342.465000px;}
.y2d{bottom:353.985000px;}
.yeb{bottom:359.025000px;}
.ybc{bottom:359.385000px;}
.y1b{bottom:366.585000px;}
.y2c{bottom:369.465000px;}
.y85{bottom:371.265000px;}
.yea{bottom:376.305000px;}
.ybb{bottom:376.665000px;}
.y2b{bottom:384.945000px;}
.y84{bottom:389.625000px;}
.y1a{bottom:390.705000px;}
.ye9{bottom:393.585000px;}
.yba{bottom:393.945000px;}
.y2a{bottom:400.425000px;}
.y83{bottom:406.950000px;}
.ye8{bottom:410.550000px;}
.yb9{bottom:411.270000px;}
.y19{bottom:414.825000px;}
.y29{bottom:415.905000px;}
.y82{bottom:424.230000px;}
.ye7{bottom:427.830000px;}
.yb8{bottom:428.190000px;}
.y28{bottom:431.745000px;}
.y18{bottom:438.945000px;}
.y81{bottom:442.230000px;}
.ye6{bottom:445.110000px;}
.yb7{bottom:445.470000px;}
.y27{bottom:447.225000px;}
.y80{bottom:459.510000px;}
.y26{bottom:462.705000px;}
.yb6{bottom:462.750000px;}
.y17{bottom:463.425000px;}
.ye5{bottom:463.470000px;}
.y7f{bottom:476.430000px;}
.y25{bottom:478.230000px;}
.yb5{bottom:479.670000px;}
.ye4{bottom:481.830000px;}
.y16{bottom:487.590000px;}
.y24{bottom:493.710000px;}
.yb4{bottom:497.310000px;}
.ye3{bottom:500.190000px;}
.y7e{bottom:503.070000px;}
.y23{bottom:509.190000px;}
.y15{bottom:511.710000px;}
.yb3{bottom:514.590000px;}
.ye2{bottom:518.550000px;}
.y7d{bottom:520.350000px;}
.y22{bottom:524.670000px;}
.yb2{bottom:531.870000px;}
.y14{bottom:535.830000px;}
.ye1{bottom:536.910000px;}
.y7c{bottom:537.660000px;}
.yb1{bottom:549.180000px;}
.y7b{bottom:554.940000px;}
.ye0{bottom:555.300000px;}
.y21{bottom:556.710000px;}
.y13{bottom:559.950000px;}
.yb0{bottom:566.460000px;}
.y7a{bottom:571.860000px;}
.ydf{bottom:573.300000px;}
.yaf{bottom:583.740000px;}
.y79{bottom:589.500000px;}
.yde{bottom:599.940000px;}
.yae{bottom:601.020000px;}
.y78{bottom:607.860000px;}
.yad{bottom:618.300000px;}
.y77{bottom:625.140000px;}
.yac{bottom:635.220000px;}
.ydd{bottom:636.300000px;}
.y76{bottom:643.140000px;}
.yab{bottom:652.500000px;}
.ydc{bottom:654.660000px;}
.y75{bottom:660.420000px;}
.yaa{bottom:669.810000px;}
.ydb{bottom:673.050000px;}
.y74{bottom:678.810000px;}
.ya9{bottom:687.090000px;}
.yda{bottom:691.410000px;}
.y73{bottom:695.730000px;}
.ya8{bottom:704.370000px;}
.yd9{bottom:709.410000px;}
.y72{bottom:713.370000px;}
.ya7{bottom:721.650000px;}
.yd8{bottom:726.690000px;}
.y71{bottom:730.650000px;}
.ya6{bottom:738.930000px;}
.y70{bottom:749.010000px;}
.yd7{bottom:753.330000px;}
.ya5{bottom:755.850000px;}
.y6f{bottom:766.290000px;}
.yd6{bottom:770.610000px;}
.ya4{bottom:782.490000px;}
.y6e{bottom:783.570000px;}
.yd5{bottom:787.890000px;}
.ya3{bottom:799.770000px;}
.y6d{bottom:800.490000px;}
.yd4{bottom:805.215000px;}
.ya2{bottom:817.095000px;}
.y6c{bottom:818.175000px;}
.yd3{bottom:822.495000px;}
.ya1{bottom:834.015000px;}
.y6b{bottom:836.175000px;}
.yd2{bottom:839.415000px;}
.ya0{bottom:851.295000px;}
.y6a{bottom:854.535000px;}
.yd1{bottom:856.695000px;}
.y9f{bottom:868.575000px;}
.y69{bottom:872.895000px;}
.yd0{bottom:873.975000px;}
.y9e{bottom:885.855000px;}
.y68{bottom:891.255000px;}
.y9d{bottom:903.135000px;}
.ycf{bottom:908.175000px;}
.y67{bottom:908.535000px;}
.y11{bottom:909.255000px;}
.y10{bottom:914.655000px;}
.yf8{bottom:917.175000px;}
.y9c{bottom:920.415000px;}
.y66{bottom:925.815000px;}
.yf{bottom:931.935000px;}
.yce{bottom:934.845000px;}
.y9b{bottom:937.365000px;}
.y65{bottom:943.125000px;}
.ycd{bottom:952.125000px;}
.ye{bottom:955.725000px;}
.y64{bottom:960.045000px;}
.y9a{bottom:964.005000px;}
.yd{bottom:966.165000px;}
.ycc{bottom:969.405000px;}
.y63{bottom:977.325000px;}
.y99{bottom:981.285000px;}
.ycb{bottom:986.685000px;}
.yc{bottom:990.285000px;}
.y98{bottom:999.645000px;}
.y62{bottom:1003.965000px;}
.y97{bottom:1018.005000px;}
.yb{bottom:1019.805000px;}
.y61{bottom:1021.245000px;}
.y96{bottom:1034.925000px;}
.y60{bottom:1038.165000px;}
.ya{bottom:1044.285000px;}
.y95{bottom:1053.285000px;}
.y5f{bottom:1055.445000px;}
.y94{bottom:1070.610000px;}
.y9{bottom:1072.050000px;}
.y5e{bottom:1072.770000px;}
.y5b{bottom:1075.320000px;}
.y93{bottom:1088.970000px;}
.y5d{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.165313px;}
.h15{height:5.650313px;}
.h17{height:27.720000px;}
.h13{height:29.678906px;}
.h9{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.hf{height:53.677969px;}
.h14{height:55.147500px;}
.h16{height:59.328281px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.h10{height:61.927031px;}
.h19{height:62.163910px;}
.h18{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h12{height:70.664062px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h11{height:212.445000px;}
.hc{height:569.310000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x14{left:8.266500px;}
.x4{left:13.305000px;}
.x1a{left:16.546500px;}
.x17{left:17.626500px;}
.x19{left:19.786500px;}
.x18{left:26.266500px;}
.x1e{left:29.146500px;}
.x6{left:35.265000px;}
.x11{left:43.906500px;}
.x1d{left:47.542500px;}
.x12{left:50.782500px;}
.x10{left:55.102500px;}
.x20{left:57.262500px;}
.x1f{left:66.265500px;}
.x15{left:73.105500px;}
.x1{left:78.529500px;}
.x16{left:80.305500px;}
.x7{left:86.436000px;}
.xa{left:90.756000px;}
.x2{left:95.425500px;}
.x21{left:102.985500px;}
.x1c{left:106.945500px;}
.x24{left:113.436000px;}
.x13{left:124.585500px;}
.x23{left:140.472000px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.xc{left:184.035000px;}
.x1b{left:218.970000px;}
.xd{left:268.665000px;}
.xb{left:432.540000px;}
.xe{left:554.610000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v4{vertical-align:-58.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsb{letter-spacing:14.494720pt;}
.ls9{letter-spacing:41.374720pt;}
.ls7{letter-spacing:56.734720pt;}
.ls1{letter-spacing:178.720000pt;}
.ws5{word-spacing:-53.760000pt;}
.ws9{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._18{margin-left:-2.775040pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._1a{width:3.944960pt;}
._f{width:4.897280pt;}
._10{width:5.794133pt;}
._e{width:6.909440pt;}
._d{width:8.307200pt;}
._b{width:9.241600pt;}
._c{width:10.152960pt;}
._11{width:11.197440pt;}
._1e{width:12.173227pt;}
._a{width:15.134720pt;}
._17{width:16.611840pt;}
._16{width:18.014720pt;}
._1b{width:19.243520pt;}
._1d{width:20.549973pt;}
._1c{width:21.506560pt;}
._19{width:22.712320pt;}
._13{width:23.613440pt;}
._12{width:24.727040pt;}
._14{width:25.618347pt;}
._15{width:27.008000pt;}
._20{width:49.945600pt;}
._1f{width:50.910720pt;}
._6{width:62.213120pt;}
._9{width:84.160000pt;}
._8{width:198.218667pt;}
._7{width:603.223040pt;}
._5{width:871.578453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.556000pt;}
.y41{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y5c{bottom:4.773333pt;}
.y5a{bottom:4.796000pt;}
.y2{bottom:8.960000pt;}
.y4b{bottom:9.276000pt;}
.y40{bottom:18.880000pt;}
.y59{bottom:19.548000pt;}
.y4{bottom:20.800000pt;}
.y58{bottom:33.310667pt;}
.y3f{bottom:34.240000pt;}
.y4a{bottom:35.550667pt;}
.y3{bottom:42.560000pt;}
.y49{bottom:46.430667pt;}
.y57{bottom:48.670667pt;}
.y3e{bottom:49.600000pt;}
.y48{bottom:57.950667pt;}
.y56{bottom:62.750667pt;}
.y8{bottom:63.712000pt;}
.y3d{bottom:65.000000pt;}
.y47{bottom:69.470667pt;}
.y55{bottom:76.510667pt;}
.y3c{bottom:80.360000pt;}
.y46{bottom:80.990667pt;}
.y7{bottom:81.312000pt;}
.y54{bottom:90.270667pt;}
.y3b{bottom:95.400000pt;}
.y45{bottom:98.590667pt;}
.y53{bottom:101.790667pt;}
.y92{bottom:102.432000pt;}
.yca{bottom:104.672000pt;}
.y52{bottom:107.550667pt;}
.y42{bottom:110.116000pt;}
.y3a{bottom:110.760000pt;}
.yf7{bottom:111.712000pt;}
.y91{bottom:118.432000pt;}
.yc9{bottom:120.032000pt;}
.y51{bottom:121.630667pt;}
.y39{bottom:126.120000pt;}
.yf6{bottom:127.104000pt;}
.y90{bottom:134.146667pt;}
.y50{bottom:135.417333pt;}
.yc8{bottom:135.426667pt;}
.y38{bottom:141.480000pt;}
.yf5{bottom:142.466667pt;}
.y4f{bottom:149.177333pt;}
.y8f{bottom:149.506667pt;}
.yc7{bottom:150.786667pt;}
.y44{bottom:153.657333pt;}
.y37{bottom:156.840000pt;}
.yf4{bottom:157.826667pt;}
.y4e{bottom:162.937333pt;}
.y43{bottom:163.257333pt;}
.y8e{bottom:165.506667pt;}
.yc6{bottom:166.146667pt;}
.y36{bottom:172.200000pt;}
.yf3{bottom:173.186667pt;}
.y4d{bottom:176.377333pt;}
.y8d{bottom:180.866667pt;}
.yc5{bottom:181.506667pt;}
.y35{bottom:187.586667pt;}
.yf2{bottom:188.546667pt;}
.yc4{bottom:196.866667pt;}
.y34{bottom:202.946667pt;}
.yf1{bottom:203.586667pt;}
.y8c{bottom:204.546667pt;}
.yc3{bottom:211.906667pt;}
.y33{bottom:218.306667pt;}
.y20{bottom:218.626667pt;}
.y8b{bottom:219.586667pt;}
.yc2{bottom:227.266667pt;}
.y32{bottom:233.666667pt;}
.y8a{bottom:235.906667pt;}
.y1f{bottom:240.066667pt;}
.yf0{bottom:242.306667pt;}
.yc1{bottom:242.626667pt;}
.y31{bottom:249.026667pt;}
.y89{bottom:251.293333pt;}
.yef{bottom:257.693333pt;}
.yc0{bottom:258.013333pt;}
.y1e{bottom:261.506667pt;}
.y30{bottom:264.066667pt;}
.y88{bottom:267.613333pt;}
.yee{bottom:273.053333pt;}
.ybf{bottom:273.373333pt;}
.y1d{bottom:282.946667pt;}
.y87{bottom:282.973333pt;}
.y2f{bottom:287.106667pt;}
.yed{bottom:288.413333pt;}
.ybe{bottom:288.733333pt;}
.y86{bottom:299.293333pt;}
.y12{bottom:299.613333pt;}
.y2e{bottom:300.893333pt;}
.yec{bottom:303.773333pt;}
.ybd{bottom:304.093333pt;}
.y1c{bottom:304.413333pt;}
.y2d{bottom:314.653333pt;}
.yeb{bottom:319.133333pt;}
.ybc{bottom:319.453333pt;}
.y1b{bottom:325.853333pt;}
.y2c{bottom:328.413333pt;}
.y85{bottom:330.013333pt;}
.yea{bottom:334.493333pt;}
.ybb{bottom:334.813333pt;}
.y2b{bottom:342.173333pt;}
.y84{bottom:346.333333pt;}
.y1a{bottom:347.293333pt;}
.ye9{bottom:349.853333pt;}
.yba{bottom:350.173333pt;}
.y2a{bottom:355.933333pt;}
.y83{bottom:361.733333pt;}
.ye8{bottom:364.933333pt;}
.yb9{bottom:365.573333pt;}
.y19{bottom:368.733333pt;}
.y29{bottom:369.693333pt;}
.y82{bottom:377.093333pt;}
.ye7{bottom:380.293333pt;}
.yb8{bottom:380.613333pt;}
.y28{bottom:383.773333pt;}
.y18{bottom:390.173333pt;}
.y81{bottom:393.093333pt;}
.ye6{bottom:395.653333pt;}
.yb7{bottom:395.973333pt;}
.y27{bottom:397.533333pt;}
.y80{bottom:408.453333pt;}
.y26{bottom:411.293333pt;}
.yb6{bottom:411.333333pt;}
.y17{bottom:411.933333pt;}
.ye5{bottom:411.973333pt;}
.y7f{bottom:423.493333pt;}
.y25{bottom:425.093333pt;}
.yb5{bottom:426.373333pt;}
.ye4{bottom:428.293333pt;}
.y16{bottom:433.413333pt;}
.y24{bottom:438.853333pt;}
.yb4{bottom:442.053333pt;}
.ye3{bottom:444.613333pt;}
.y7e{bottom:447.173333pt;}
.y23{bottom:452.613333pt;}
.y15{bottom:454.853333pt;}
.yb3{bottom:457.413333pt;}
.ye2{bottom:460.933333pt;}
.y7d{bottom:462.533333pt;}
.y22{bottom:466.373333pt;}
.yb2{bottom:472.773333pt;}
.y14{bottom:476.293333pt;}
.ye1{bottom:477.253333pt;}
.y7c{bottom:477.920000pt;}
.yb1{bottom:488.160000pt;}
.y7b{bottom:493.280000pt;}
.ye0{bottom:493.600000pt;}
.y21{bottom:494.853333pt;}
.y13{bottom:497.733333pt;}
.yb0{bottom:503.520000pt;}
.y7a{bottom:508.320000pt;}
.ydf{bottom:509.600000pt;}
.yaf{bottom:518.880000pt;}
.y79{bottom:524.000000pt;}
.yde{bottom:533.280000pt;}
.yae{bottom:534.240000pt;}
.y78{bottom:540.320000pt;}
.yad{bottom:549.600000pt;}
.y77{bottom:555.680000pt;}
.yac{bottom:564.640000pt;}
.ydd{bottom:565.600000pt;}
.y76{bottom:571.680000pt;}
.yab{bottom:580.000000pt;}
.ydc{bottom:581.920000pt;}
.y75{bottom:587.040000pt;}
.yaa{bottom:595.386667pt;}
.ydb{bottom:598.266667pt;}
.y74{bottom:603.386667pt;}
.ya9{bottom:610.746667pt;}
.yda{bottom:614.586667pt;}
.y73{bottom:618.426667pt;}
.ya8{bottom:626.106667pt;}
.yd9{bottom:630.586667pt;}
.y72{bottom:634.106667pt;}
.ya7{bottom:641.466667pt;}
.yd8{bottom:645.946667pt;}
.y71{bottom:649.466667pt;}
.ya6{bottom:656.826667pt;}
.y70{bottom:665.786667pt;}
.yd7{bottom:669.626667pt;}
.ya5{bottom:671.866667pt;}
.y6f{bottom:681.146667pt;}
.yd6{bottom:684.986667pt;}
.ya4{bottom:695.546667pt;}
.y6e{bottom:696.506667pt;}
.yd5{bottom:700.346667pt;}
.ya3{bottom:710.906667pt;}
.y6d{bottom:711.546667pt;}
.yd4{bottom:715.746667pt;}
.ya2{bottom:726.306667pt;}
.y6c{bottom:727.266667pt;}
.yd3{bottom:731.106667pt;}
.ya1{bottom:741.346667pt;}
.y6b{bottom:743.266667pt;}
.yd2{bottom:746.146667pt;}
.ya0{bottom:756.706667pt;}
.y6a{bottom:759.586667pt;}
.yd1{bottom:761.506667pt;}
.y9f{bottom:772.066667pt;}
.y69{bottom:775.906667pt;}
.yd0{bottom:776.866667pt;}
.y9e{bottom:787.426667pt;}
.y68{bottom:792.226667pt;}
.y9d{bottom:802.786667pt;}
.ycf{bottom:807.266667pt;}
.y67{bottom:807.586667pt;}
.y11{bottom:808.226667pt;}
.y10{bottom:813.026667pt;}
.yf8{bottom:815.266667pt;}
.y9c{bottom:818.146667pt;}
.y66{bottom:822.946667pt;}
.yf{bottom:828.386667pt;}
.yce{bottom:830.973333pt;}
.y9b{bottom:833.213333pt;}
.y65{bottom:838.333333pt;}
.ycd{bottom:846.333333pt;}
.ye{bottom:849.533333pt;}
.y64{bottom:853.373333pt;}
.y9a{bottom:856.893333pt;}
.yd{bottom:858.813333pt;}
.ycc{bottom:861.693333pt;}
.y63{bottom:868.733333pt;}
.y99{bottom:872.253333pt;}
.ycb{bottom:877.053333pt;}
.yc{bottom:880.253333pt;}
.y98{bottom:888.573333pt;}
.y62{bottom:892.413333pt;}
.y97{bottom:904.893333pt;}
.yb{bottom:906.493333pt;}
.y61{bottom:907.773333pt;}
.y96{bottom:919.933333pt;}
.y60{bottom:922.813333pt;}
.ya{bottom:928.253333pt;}
.y95{bottom:936.253333pt;}
.y5f{bottom:938.173333pt;}
.y94{bottom:951.653333pt;}
.y9{bottom:952.933333pt;}
.y5e{bottom:953.573333pt;}
.y5b{bottom:955.840000pt;}
.y93{bottom:967.973333pt;}
.y5d{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.702500pt;}
.h15{height:5.022500pt;}
.h17{height:24.640000pt;}
.h13{height:26.381250pt;}
.h9{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.hf{height:47.713750pt;}
.h14{height:49.020000pt;}
.h16{height:52.736250pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.h10{height:55.046250pt;}
.h19{height:55.256809pt;}
.h18{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h12{height:62.812500pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h11{height:188.840000pt;}
.hc{height:506.053333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x14{left:7.348000pt;}
.x4{left:11.826667pt;}
.x1a{left:14.708000pt;}
.x17{left:15.668000pt;}
.x19{left:17.588000pt;}
.x18{left:23.348000pt;}
.x1e{left:25.908000pt;}
.x6{left:31.346667pt;}
.x11{left:39.028000pt;}
.x1d{left:42.260000pt;}
.x12{left:45.140000pt;}
.x10{left:48.980000pt;}
.x20{left:50.900000pt;}
.x1f{left:58.902667pt;}
.x15{left:64.982667pt;}
.x1{left:69.804000pt;}
.x16{left:71.382667pt;}
.x7{left:76.832000pt;}
.xa{left:80.672000pt;}
.x2{left:84.822667pt;}
.x21{left:91.542667pt;}
.x1c{left:95.062667pt;}
.x24{left:100.832000pt;}
.x13{left:110.742667pt;}
.x23{left:124.864000pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.xc{left:163.586667pt;}
.x1b{left:194.640000pt;}
.xd{left:238.813333pt;}
.xb{left:384.480000pt;}
.xe{left:492.986667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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