
    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_b3559138d1aff9d58bbcefef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_c78f8a8b4b45dc41c035f286.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_86989d40c206c3b3b1c88ddd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d12235630c40aac51145651.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1e87b35373616e22302d65d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4e863325c44f78f8fd82a009.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_32e0f94cefb6ca13af184034.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_db50e53ac8561d8eb4f1fdb4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f702f75f63a273dbf78f00df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897461;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(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.226200px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.032400px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.315600px;}
.ls7{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.502800px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:4.500000px;}
.ls4{letter-spacing:23.940000px;}
.ls3{letter-spacing:24.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;}
}
.ws3{word-spacing:-21.401400px;}
.ws0{word-spacing:-18.251520px;}
.wsa{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.948000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-10.755600px;}
.wsc{word-spacing:-10.213800px;}
.ws4{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.919920px;}
._c{margin-left:-3.884400px;}
._b{margin-left:-2.868480px;}
._1{margin-left:-1.028000px;}
._0{width:1.015920px;}
._d{width:2.119440px;}
._9{width:3.482400px;}
._7{width:5.318640px;}
._8{width:6.932160px;}
._14{width:7.935520px;}
._a{width:8.964000px;}
._f{width:10.664640px;}
._10{width:11.862080px;}
._e{width:12.916800px;}
._15{width:14.241600px;}
._4{width:15.955920px;}
._16{width:19.290320px;}
._6{width:20.840400px;}
._5{width:22.186800px;}
._11{width:23.963760px;}
._13{width:25.104960px;}
._18{width:26.164800px;}
._1a{width:43.122240px;}
._19{width:44.314560px;}
._1b{width:45.912480px;}
._2{width:64.800000px;}
._17{width:165.798720px;}
._3{width:197.604000px;}
.fc5{color:rgb(73,74,76);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,102);}
.fc6{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs1{font-size:5.760000px;}
.fs8{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.360000px;}
.y29{bottom:12.060000px;}
.y18{bottom:12.240000px;}
.y43{bottom:16.020000px;}
.y2e{bottom:16.740000px;}
.y27{bottom:29.520000px;}
.ya{bottom:30.420000px;}
.y42{bottom:33.300000px;}
.y8{bottom:33.330000px;}
.y2d{bottom:43.050000px;}
.y26{bottom:46.830000px;}
.y41{bottom:50.580000px;}
.y4{bottom:57.636000px;}
.y25{bottom:64.110000px;}
.y40{bottom:67.860000px;}
.y2c{bottom:69.330000px;}
.y3{bottom:76.536000px;}
.y24{bottom:81.390000px;}
.y3e{bottom:93.816000px;}
.y98{bottom:95.076000px;}
.y2b{bottom:95.610000px;}
.y23{bottom:98.670000px;}
.yaf{bottom:100.476000px;}
.yf2{bottom:108.036000px;}
.y3d{bottom:111.096000px;}
.y61{bottom:111.636000px;}
.y22{bottom:115.770000px;}
.y7d{bottom:117.036000px;}
.ycd{bottom:119.736000px;}
.y97{bottom:123.516000px;}
.y3c{bottom:128.196000px;}
.yae{bottom:128.916000px;}
.ybb{bottom:131.256000px;}
.y6{bottom:132.510000px;}
.y21{bottom:133.050000px;}
.y3b{bottom:133.416000px;}
.yf1{bottom:136.656000px;}
.y60{bottom:140.076000px;}
.y7c{bottom:145.656000px;}
.y3a{bottom:146.916000px;}
.ycc{bottom:148.176000px;}
.y20{bottom:150.330000px;}
.y96{bottom:151.950000px;}
.yad{bottom:157.530000px;}
.yba{bottom:159.690000px;}
.yf0{bottom:165.090000px;}
.y1f{bottom:167.610000px;}
.y5f{bottom:168.510000px;}
.y7b{bottom:174.090000px;}
.ycb{bottom:176.610000px;}
.y95{bottom:180.390000px;}
.y1e{bottom:184.890000px;}
.yac{bottom:185.970000px;}
.yb9{bottom:188.130000px;}
.yef{bottom:193.530000px;}
.y5e{bottom:196.950000px;}
.y39{bottom:201.270000px;}
.y1d{bottom:202.170000px;}
.y7a{bottom:202.530000px;}
.yca{bottom:205.050000px;}
.y94{bottom:208.830000px;}
.yab{bottom:214.410000px;}
.y1b{bottom:214.770000px;}
.yb8{bottom:216.570000px;}
.y1c{bottom:219.270000px;}
.yee{bottom:221.970000px;}
.y5d{bottom:225.390000px;}
.y38{bottom:229.710000px;}
.y79{bottom:230.970000px;}
.yc9{bottom:233.490000px;}
.y93{bottom:237.270000px;}
.yb7{bottom:245.190000px;}
.yed{bottom:250.410000px;}
.yaa{bottom:253.110000px;}
.y5c{bottom:253.830000px;}
.y37{bottom:258.150000px;}
.y78{bottom:259.410000px;}
.yc8{bottom:261.930000px;}
.y92{bottom:265.890000px;}
.yb6{bottom:273.675000px;}
.yec{bottom:278.895000px;}
.y5b{bottom:282.315000px;}
.ya9{bottom:282.855000px;}
.y36{bottom:286.635000px;}
.y77{bottom:287.895000px;}
.yc7{bottom:290.415000px;}
.y91{bottom:294.375000px;}
.yb5{bottom:302.115000px;}
.yeb{bottom:307.335000px;}
.ya8{bottom:310.215000px;}
.y5a{bottom:310.755000px;}
.y35{bottom:315.075000px;}
.y76{bottom:316.335000px;}
.yc6{bottom:319.035000px;}
.y90{bottom:322.815000px;}
.yb4{bottom:330.555000px;}
.ya7{bottom:334.515000px;}
.yea{bottom:335.775000px;}
.y59{bottom:339.375000px;}
.y34{bottom:343.515000px;}
.y75{bottom:344.775000px;}
.yc5{bottom:347.475000px;}
.y8f{bottom:351.255000px;}
.yb3{bottom:358.995000px;}
.ye9{bottom:364.215000px;}
.y58{bottom:367.815000px;}
.y74{bottom:373.215000px;}
.yc4{bottom:375.915000px;}
.y8e{bottom:379.695000px;}
.y33{bottom:382.395000px;}
.yb2{bottom:387.435000px;}
.ye8{bottom:392.835000px;}
.y57{bottom:396.255000px;}
.yc3{bottom:404.355000px;}
.y8d{bottom:408.135000px;}
.y32{bottom:412.095000px;}
.yb1{bottom:415.875000px;}
.ye7{bottom:421.275000px;}
.y56{bottom:424.695000px;}
.y3f{bottom:430.455000px;}
.yc2{bottom:432.795000px;}
.y8c{bottom:436.575000px;}
.y31{bottom:439.275000px;}
.y73{bottom:443.055000px;}
.yb0{bottom:444.315000px;}
.ye6{bottom:449.715000px;}
.y55{bottom:453.135000px;}
.yc1{bottom:461.235000px;}
.y30{bottom:461.595000px;}
.y8b{bottom:465.015000px;}
.y72{bottom:472.755000px;}
.ye5{bottom:478.155000px;}
.y54{bottom:481.575000px;}
.y2f{bottom:483.555000px;}
.yc0{bottom:489.675000px;}
.y8a{bottom:493.455000px;}
.y71{bottom:501.375000px;}
.ye4{bottom:506.595000px;}
.y53{bottom:510.015000px;}
.ybf{bottom:518.115000px;}
.y1a{bottom:521.895000px;}
.y89{bottom:522.075000px;}
.ya6{bottom:525.315000px;}
.y70{bottom:529.815000px;}
.ye3{bottom:535.035000px;}
.y52{bottom:538.455000px;}
.ybe{bottom:546.555000px;}
.y88{bottom:550.515000px;}
.ya5{bottom:553.755000px;}
.y6f{bottom:558.285000px;}
.ye2{bottom:563.505000px;}
.y51{bottom:566.925000px;}
.ybd{bottom:575.205000px;}
.y87{bottom:578.985000px;}
.ya4{bottom:582.225000px;}
.y6e{bottom:586.725000px;}
.ye1{bottom:591.945000px;}
.y50{bottom:595.545000px;}
.y86{bottom:607.425000px;}
.ya3{bottom:610.845000px;}
.ybc{bottom:613.905000px;}
.y6d{bottom:615.165000px;}
.ye0{bottom:620.385000px;}
.y4f{bottom:623.985000px;}
.y85{bottom:635.865000px;}
.ya2{bottom:639.285000px;}
.y6c{bottom:643.605000px;}
.y2a{bottom:645.045000px;}
.ydf{bottom:649.005000px;}
.y4e{bottom:652.425000px;}
.y84{bottom:664.305000px;}
.ya1{bottom:667.725000px;}
.y6b{bottom:672.045000px;}
.yde{bottom:677.445000px;}
.y4d{bottom:679.785000px;}
.y28{bottom:684.825000px;}
.y83{bottom:692.745000px;}
.ya0{bottom:696.165000px;}
.y6a{bottom:700.485000px;}
.y4c{bottom:703.905000px;}
.ydd{bottom:705.885000px;}
.y82{bottom:721.185000px;}
.y19{bottom:724.425000px;}
.y9f{bottom:724.605000px;}
.y69{bottom:728.925000px;}
.ydc{bottom:734.325000px;}
.y81{bottom:749.625000px;}
.y9e{bottom:753.045000px;}
.y68{bottom:757.545000px;}
.ydb{bottom:762.765000px;}
.y17{bottom:764.205000px;}
.y80{bottom:779.685000px;}
.y9d{bottom:781.485000px;}
.y67{bottom:785.985000px;}
.yda{bottom:791.205000px;}
.y16{bottom:807.225000px;}
.y7f{bottom:807.405000px;}
.y9c{bottom:809.925000px;}
.y66{bottom:814.425000px;}
.yd9{bottom:819.645000px;}
.y15{bottom:824.505000px;}
.y7e{bottom:831.705000px;}
.y9b{bottom:838.365000px;}
.y14{bottom:842.550000px;}
.y65{bottom:842.910000px;}
.yd8{bottom:848.130000px;}
.y12{bottom:863.250000px;}
.y9a{bottom:865.770000px;}
.y13{bottom:870.090000px;}
.y64{bottom:871.350000px;}
.yd7{bottom:876.570000px;}
.y11{bottom:883.590000px;}
.y99{bottom:890.070000px;}
.y63{bottom:899.790000px;}
.y10{bottom:902.490000px;}
.yd6{bottom:905.190000px;}
.yf{bottom:922.470000px;}
.y62{bottom:928.230000px;}
.yd5{bottom:933.630000px;}
.ye{bottom:946.590000px;}
.y4b{bottom:956.670000px;}
.yd4{bottom:962.070000px;}
.yd{bottom:970.170000px;}
.y4a{bottom:985.110000px;}
.yd3{bottom:990.510000px;}
.yc{bottom:990.870000px;}
.yb{bottom:1011.570000px;}
.y49{bottom:1013.730000px;}
.yd2{bottom:1029.210000px;}
.y5{bottom:1032.810000px;}
.y48{bottom:1042.170000px;}
.yd1{bottom:1058.910000px;}
.y47{bottom:1070.610000px;}
.yd0{bottom:1087.530000px;}
.y7{bottom:1095.990000px;}
.y46{bottom:1099.050000px;}
.ycf{bottom:1115.970000px;}
.y45{bottom:1127.520000px;}
.yce{bottom:1154.700000px;}
.y44{bottom:1155.960000px;}
.y2{bottom:1176.120000px;}
.y1{bottom:1195.380000px;}
.h6{height:4.165313px;}
.h17{height:27.147656px;}
.h14{height:35.100000px;}
.hf{height:35.261367px;}
.h12{height:35.280000px;}
.h4{height:41.726953px;}
.h11{height:42.164648px;}
.h2{height:43.146720px;}
.h3{height:43.215117px;}
.h10{height:43.681992px;}
.hd{height:46.251562px;}
.h16{height:46.736719px;}
.h1a{height:48.418594px;}
.hb{height:50.273438px;}
.ha{height:50.800781px;}
.he{height:52.628906px;}
.h19{height:52.918594px;}
.hc{height:59.436914px;}
.h9{height:63.180000px;}
.h8{height:70.510781px;}
.h7{height:70.956000px;}
.h18{height:81.720000px;}
.h15{height:118.656000px;}
.h5{height:134.136000px;}
.h13{height:237.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:23.040000px;}
.w5{width:108.540000px;}
.w7{width:261.435000px;}
.w3{width:308.775000px;}
.w4{width:348.015000px;}
.w9{width:481.035000px;}
.wa{width:488.595000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.020000px;}
.x5{left:8.100000px;}
.x14{left:10.800000px;}
.x7{left:26.460000px;}
.x2{left:63.899987px;}
.x12{left:68.759987px;}
.xa{left:76.679987px;}
.x1d{left:106.415987px;}
.x1c{left:142.955987px;}
.x1a{left:144.035987px;}
.x18{left:213.689987px;}
.x10{left:214.769987px;}
.xc{left:225.389973px;}
.xd{left:231.509987px;}
.x11{left:279.929987px;}
.xb{left:298.469987px;}
.x16{left:322.994987px;}
.xe{left:325.335000px;}
.x1{left:338.834987px;}
.x13{left:345.855000px;}
.xf{left:348.375000px;}
.x6{left:372.675000px;}
.x3{left:439.094987px;}
.x4{left:446.654987px;}
.x17{left:654.224987px;}
.x19{left:676.364987px;}
.x8{left:720.690000px;}
.x1b{left:723.389987px;}
.x15{left:759.029987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.201067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.028800pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.280533pt;}
.ls7{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.446933pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:4.000000pt;}
.ls4{letter-spacing:21.280000pt;}
.ls3{letter-spacing:21.386667pt;}
.ws3{word-spacing:-19.023467pt;}
.ws0{word-spacing:-16.223573pt;}
.wsa{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.176000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-9.560533pt;}
.wsc{word-spacing:-9.078933pt;}
.ws4{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-4.373262pt;}
._c{margin-left:-3.452800pt;}
._b{margin-left:-2.549760pt;}
._1{margin-left:-0.913778pt;}
._0{width:0.903040pt;}
._d{width:1.883947pt;}
._9{width:3.095467pt;}
._7{width:4.727680pt;}
._8{width:6.161920pt;}
._14{width:7.053796pt;}
._a{width:7.968000pt;}
._f{width:9.479680pt;}
._10{width:10.544071pt;}
._e{width:11.481600pt;}
._15{width:12.659200pt;}
._4{width:14.183040pt;}
._16{width:17.146951pt;}
._6{width:18.524800pt;}
._5{width:19.721600pt;}
._11{width:21.301120pt;}
._13{width:22.315520pt;}
._18{width:23.257600pt;}
._1a{width:38.330880pt;}
._19{width:39.390720pt;}
._1b{width:40.811093pt;}
._2{width:57.600000pt;}
._17{width:147.376640pt;}
._3{width:175.648000pt;}
.fs1{font-size:5.120000pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.320000pt;}
.y29{bottom:10.720000pt;}
.y18{bottom:10.880000pt;}
.y43{bottom:14.240000pt;}
.y2e{bottom:14.880000pt;}
.y27{bottom:26.240000pt;}
.ya{bottom:27.040000pt;}
.y42{bottom:29.600000pt;}
.y8{bottom:29.626667pt;}
.y2d{bottom:38.266667pt;}
.y26{bottom:41.626667pt;}
.y41{bottom:44.960000pt;}
.y4{bottom:51.232000pt;}
.y25{bottom:56.986667pt;}
.y40{bottom:60.320000pt;}
.y2c{bottom:61.626667pt;}
.y3{bottom:68.032000pt;}
.y24{bottom:72.346667pt;}
.y3e{bottom:83.392000pt;}
.y98{bottom:84.512000pt;}
.y2b{bottom:84.986667pt;}
.y23{bottom:87.706667pt;}
.yaf{bottom:89.312000pt;}
.yf2{bottom:96.032000pt;}
.y3d{bottom:98.752000pt;}
.y61{bottom:99.232000pt;}
.y22{bottom:102.906667pt;}
.y7d{bottom:104.032000pt;}
.ycd{bottom:106.432000pt;}
.y97{bottom:109.792000pt;}
.y3c{bottom:113.952000pt;}
.yae{bottom:114.592000pt;}
.ybb{bottom:116.672000pt;}
.y6{bottom:117.786667pt;}
.y21{bottom:118.266667pt;}
.y3b{bottom:118.592000pt;}
.yf1{bottom:121.472000pt;}
.y60{bottom:124.512000pt;}
.y7c{bottom:129.472000pt;}
.y3a{bottom:130.592000pt;}
.ycc{bottom:131.712000pt;}
.y20{bottom:133.626667pt;}
.y96{bottom:135.066667pt;}
.yad{bottom:140.026667pt;}
.yba{bottom:141.946667pt;}
.yf0{bottom:146.746667pt;}
.y1f{bottom:148.986667pt;}
.y5f{bottom:149.786667pt;}
.y7b{bottom:154.746667pt;}
.ycb{bottom:156.986667pt;}
.y95{bottom:160.346667pt;}
.y1e{bottom:164.346667pt;}
.yac{bottom:165.306667pt;}
.yb9{bottom:167.226667pt;}
.yef{bottom:172.026667pt;}
.y5e{bottom:175.066667pt;}
.y39{bottom:178.906667pt;}
.y1d{bottom:179.706667pt;}
.y7a{bottom:180.026667pt;}
.yca{bottom:182.266667pt;}
.y94{bottom:185.626667pt;}
.yab{bottom:190.586667pt;}
.y1b{bottom:190.906667pt;}
.yb8{bottom:192.506667pt;}
.y1c{bottom:194.906667pt;}
.yee{bottom:197.306667pt;}
.y5d{bottom:200.346667pt;}
.y38{bottom:204.186667pt;}
.y79{bottom:205.306667pt;}
.yc9{bottom:207.546667pt;}
.y93{bottom:210.906667pt;}
.yb7{bottom:217.946667pt;}
.yed{bottom:222.586667pt;}
.yaa{bottom:224.986667pt;}
.y5c{bottom:225.626667pt;}
.y37{bottom:229.466667pt;}
.y78{bottom:230.586667pt;}
.yc8{bottom:232.826667pt;}
.y92{bottom:236.346667pt;}
.yb6{bottom:243.266667pt;}
.yec{bottom:247.906667pt;}
.y5b{bottom:250.946667pt;}
.ya9{bottom:251.426667pt;}
.y36{bottom:254.786667pt;}
.y77{bottom:255.906667pt;}
.yc7{bottom:258.146667pt;}
.y91{bottom:261.666667pt;}
.yb5{bottom:268.546667pt;}
.yeb{bottom:273.186667pt;}
.ya8{bottom:275.746667pt;}
.y5a{bottom:276.226667pt;}
.y35{bottom:280.066667pt;}
.y76{bottom:281.186667pt;}
.yc6{bottom:283.586667pt;}
.y90{bottom:286.946667pt;}
.yb4{bottom:293.826667pt;}
.ya7{bottom:297.346667pt;}
.yea{bottom:298.466667pt;}
.y59{bottom:301.666667pt;}
.y34{bottom:305.346667pt;}
.y75{bottom:306.466667pt;}
.yc5{bottom:308.866667pt;}
.y8f{bottom:312.226667pt;}
.yb3{bottom:319.106667pt;}
.ye9{bottom:323.746667pt;}
.y58{bottom:326.946667pt;}
.y74{bottom:331.746667pt;}
.yc4{bottom:334.146667pt;}
.y8e{bottom:337.506667pt;}
.y33{bottom:339.906667pt;}
.yb2{bottom:344.386667pt;}
.ye8{bottom:349.186667pt;}
.y57{bottom:352.226667pt;}
.yc3{bottom:359.426667pt;}
.y8d{bottom:362.786667pt;}
.y32{bottom:366.306667pt;}
.yb1{bottom:369.666667pt;}
.ye7{bottom:374.466667pt;}
.y56{bottom:377.506667pt;}
.y3f{bottom:382.626667pt;}
.yc2{bottom:384.706667pt;}
.y8c{bottom:388.066667pt;}
.y31{bottom:390.466667pt;}
.y73{bottom:393.826667pt;}
.yb0{bottom:394.946667pt;}
.ye6{bottom:399.746667pt;}
.y55{bottom:402.786667pt;}
.yc1{bottom:409.986667pt;}
.y30{bottom:410.306667pt;}
.y8b{bottom:413.346667pt;}
.y72{bottom:420.226667pt;}
.ye5{bottom:425.026667pt;}
.y54{bottom:428.066667pt;}
.y2f{bottom:429.826667pt;}
.yc0{bottom:435.266667pt;}
.y8a{bottom:438.626667pt;}
.y71{bottom:445.666667pt;}
.ye4{bottom:450.306667pt;}
.y53{bottom:453.346667pt;}
.ybf{bottom:460.546667pt;}
.y1a{bottom:463.906667pt;}
.y89{bottom:464.066667pt;}
.ya6{bottom:466.946667pt;}
.y70{bottom:470.946667pt;}
.ye3{bottom:475.586667pt;}
.y52{bottom:478.626667pt;}
.ybe{bottom:485.826667pt;}
.y88{bottom:489.346667pt;}
.ya5{bottom:492.226667pt;}
.y6f{bottom:496.253333pt;}
.ye2{bottom:500.893333pt;}
.y51{bottom:503.933333pt;}
.ybd{bottom:511.293333pt;}
.y87{bottom:514.653333pt;}
.ya4{bottom:517.533333pt;}
.y6e{bottom:521.533333pt;}
.ye1{bottom:526.173333pt;}
.y50{bottom:529.373333pt;}
.y86{bottom:539.933333pt;}
.ya3{bottom:542.973333pt;}
.ybc{bottom:545.693333pt;}
.y6d{bottom:546.813333pt;}
.ye0{bottom:551.453333pt;}
.y4f{bottom:554.653333pt;}
.y85{bottom:565.213333pt;}
.ya2{bottom:568.253333pt;}
.y6c{bottom:572.093333pt;}
.y2a{bottom:573.373333pt;}
.ydf{bottom:576.893333pt;}
.y4e{bottom:579.933333pt;}
.y84{bottom:590.493333pt;}
.ya1{bottom:593.533333pt;}
.y6b{bottom:597.373333pt;}
.yde{bottom:602.173333pt;}
.y4d{bottom:604.253333pt;}
.y28{bottom:608.733333pt;}
.y83{bottom:615.773333pt;}
.ya0{bottom:618.813333pt;}
.y6a{bottom:622.653333pt;}
.y4c{bottom:625.693333pt;}
.ydd{bottom:627.453333pt;}
.y82{bottom:641.053333pt;}
.y19{bottom:643.933333pt;}
.y9f{bottom:644.093333pt;}
.y69{bottom:647.933333pt;}
.ydc{bottom:652.733333pt;}
.y81{bottom:666.333333pt;}
.y9e{bottom:669.373333pt;}
.y68{bottom:673.373333pt;}
.ydb{bottom:678.013333pt;}
.y17{bottom:679.293333pt;}
.y80{bottom:693.053333pt;}
.y9d{bottom:694.653333pt;}
.y67{bottom:698.653333pt;}
.yda{bottom:703.293333pt;}
.y16{bottom:717.533333pt;}
.y7f{bottom:717.693333pt;}
.y9c{bottom:719.933333pt;}
.y66{bottom:723.933333pt;}
.yd9{bottom:728.573333pt;}
.y15{bottom:732.893333pt;}
.y7e{bottom:739.293333pt;}
.y9b{bottom:745.213333pt;}
.y14{bottom:748.933333pt;}
.y65{bottom:749.253333pt;}
.yd8{bottom:753.893333pt;}
.y12{bottom:767.333333pt;}
.y9a{bottom:769.573333pt;}
.y13{bottom:773.413333pt;}
.y64{bottom:774.533333pt;}
.yd7{bottom:779.173333pt;}
.y11{bottom:785.413333pt;}
.y99{bottom:791.173333pt;}
.y63{bottom:799.813333pt;}
.y10{bottom:802.213333pt;}
.yd6{bottom:804.613333pt;}
.yf{bottom:819.973333pt;}
.y62{bottom:825.093333pt;}
.yd5{bottom:829.893333pt;}
.ye{bottom:841.413333pt;}
.y4b{bottom:850.373333pt;}
.yd4{bottom:855.173333pt;}
.yd{bottom:862.373333pt;}
.y4a{bottom:875.653333pt;}
.yd3{bottom:880.453333pt;}
.yc{bottom:880.773333pt;}
.yb{bottom:899.173333pt;}
.y49{bottom:901.093333pt;}
.yd2{bottom:914.853333pt;}
.y5{bottom:918.053333pt;}
.y48{bottom:926.373333pt;}
.yd1{bottom:941.253333pt;}
.y47{bottom:951.653333pt;}
.yd0{bottom:966.693333pt;}
.y7{bottom:974.213333pt;}
.y46{bottom:976.933333pt;}
.ycf{bottom:991.973333pt;}
.y45{bottom:1002.240000pt;}
.yce{bottom:1026.400000pt;}
.y44{bottom:1027.520000pt;}
.y2{bottom:1045.440000pt;}
.y1{bottom:1062.560000pt;}
.h6{height:3.702500pt;}
.h17{height:24.131250pt;}
.h14{height:31.200000pt;}
.hf{height:31.343437pt;}
.h12{height:31.360000pt;}
.h4{height:37.090625pt;}
.h11{height:37.479688pt;}
.h2{height:38.352640pt;}
.h3{height:38.413438pt;}
.h10{height:38.828437pt;}
.hd{height:41.112500pt;}
.h16{height:41.543750pt;}
.h1a{height:43.038750pt;}
.hb{height:44.687500pt;}
.ha{height:45.156250pt;}
.he{height:46.781250pt;}
.h19{height:47.038750pt;}
.hc{height:52.832812pt;}
.h9{height:56.160000pt;}
.h8{height:62.676250pt;}
.h7{height:63.072000pt;}
.h18{height:72.640000pt;}
.h15{height:105.472000pt;}
.h5{height:119.232000pt;}
.h13{height:211.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:20.480000pt;}
.w5{width:96.480000pt;}
.w7{width:232.386667pt;}
.w3{width:274.466667pt;}
.w4{width:309.346667pt;}
.w9{width:427.586667pt;}
.wa{width:434.306667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.240000pt;}
.x5{left:7.200000pt;}
.x14{left:9.600000pt;}
.x7{left:23.520000pt;}
.x2{left:56.799988pt;}
.x12{left:61.119988pt;}
.xa{left:68.159988pt;}
.x1d{left:94.591988pt;}
.x1c{left:127.071988pt;}
.x1a{left:128.031988pt;}
.x18{left:189.946655pt;}
.x10{left:190.906655pt;}
.xc{left:200.346643pt;}
.xd{left:205.786655pt;}
.x11{left:248.826655pt;}
.xb{left:265.306655pt;}
.x16{left:287.106655pt;}
.xe{left:289.186667pt;}
.x1{left:301.186655pt;}
.x13{left:307.426667pt;}
.xf{left:309.666667pt;}
.x6{left:331.266667pt;}
.x3{left:390.306655pt;}
.x4{left:397.026655pt;}
.x17{left:581.533322pt;}
.x19{left:601.213322pt;}
.x8{left:640.613333pt;}
.x1b{left:643.013322pt;}
.x15{left:674.693322pt;}
}




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