
    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_5b35c5a5519b84979dcc269e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_36ffc39ac1bcd84164658b9a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b3d9aae1d469e26809ca6af4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c01ff8ca0444fd5c75cd858d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.329590;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_890691ba91420ecf3c6c3a90.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_0258d32ff9887fdb13108e4f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.347656;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_e9a2ebc18c81cddfb02e18fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.864258;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_d60398bfce6dc04006d03d31.woff')format("woff");}.ff9{font-family:ff9;line-height:1.329590;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_59c517336c79b347652981a6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_589bfced6e48f21f70ac640e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.347656;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_986c2aef96a9eeff4f283568.woff')format("woff");}.ffd{font-family:ffd;line-height:0.970215;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.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);}
.v4{vertical-align:-6.840000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v5{vertical-align:6.840000px;}
.v1{vertical-align:18.000000px;}
.lsf{letter-spacing:-1.824000px;}
.ls12{letter-spacing:-0.445800px;}
.ls1f{letter-spacing:-0.364800px;}
.ls1c{letter-spacing:-0.139800px;}
.ls10{letter-spacing:-0.111600px;}
.ls11{letter-spacing:-0.092400px;}
.ls13{letter-spacing:-0.085800px;}
.ls1a{letter-spacing:-0.073200px;}
.ls18{letter-spacing:-0.009000px;}
.ls19{letter-spacing:-0.004680px;}
.lsb{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.025200px;}
.ls9{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.076800px;}
.lsa{letter-spacing:0.087120px;}
.ls5{letter-spacing:0.108000px;}
.lse{letter-spacing:0.109414px;}
.lsc{letter-spacing:0.139800px;}
.ls17{letter-spacing:0.172080px;}
.ls1e{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.191520px;}
.ls1b{letter-spacing:0.274200px;}
.ls3{letter-spacing:4.286880px;}
.ls16{letter-spacing:8.280000px;}
.ls2{letter-spacing:9.000000px;}
.ls1{letter-spacing:9.360000px;}
.ls8{letter-spacing:18.576000px;}
.ls7{letter-spacing:36.926640px;}
.ls6{letter-spacing:41.148000px;}
.ls1d{letter-spacing:45.926640px;}
.ls0{letter-spacing:992.730000px;}
.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;}
}
.ws7{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.259680px;}
.ws3{word-spacing:-18.051120px;}
.wsa{word-spacing:-16.618320px;}
.ws4{word-spacing:-16.593120px;}
.ws5{word-spacing:-16.472880px;}
.wse{word-spacing:-16.468200px;}
.wsc{word-spacing:-16.453320px;}
.wsb{word-spacing:-16.399680px;}
.wsf{word-spacing:-16.108080px;}
.ws0{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.796000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.wsd{word-spacing:-0.060120px;}
.ws9{word-spacing:0.000000px;}
._a{margin-left:-20.225160px;}
._1d{margin-left:-19.183680px;}
._13{margin-left:-18.144000px;}
._3{margin-left:-14.954040px;}
._1e{margin-left:-10.863720px;}
._e{margin-left:-9.461160px;}
._c{margin-left:-8.037360px;}
._17{margin-left:-6.492480px;}
._5{margin-left:-5.410440px;}
._8{margin-left:-3.348000px;}
._16{margin-left:-2.344680px;}
._0{margin-left:-1.202400px;}
._7{width:1.087920px;}
._9{width:2.808000px;}
._f{width:4.118760px;}
._6{width:5.362560px;}
._18{width:6.793560px;}
._d{width:7.839720px;}
._1a{width:9.258480px;}
._1c{width:10.622880px;}
._15{width:11.967120px;}
._19{width:13.602000px;}
._12{width:14.790240px;}
._4{width:15.800400px;}
._11{width:17.526240px;}
._10{width:19.160160px;}
._b{width:20.422800px;}
._1b{width:21.462840px;}
._20{width:22.767480px;}
._1f{width:25.851600px;}
._14{width:30.240000px;}
._21{width:44.106840px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:29.880000px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:50.469447px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs7{font-size:69.442923px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:2.610000px;}
.y7{bottom:2.700000px;}
.y33{bottom:2.880000px;}
.y14{bottom:3.780000px;}
.y15{bottom:5.940000px;}
.y2c{bottom:6.030000px;}
.y5{bottom:9.540000px;}
.ya{bottom:14.040000px;}
.y31{bottom:15.930000px;}
.y73{bottom:16.470000px;}
.y6{bottom:16.830000px;}
.y2a{bottom:19.350000px;}
.y72{bottom:30.240000px;}
.y30{bottom:33.840000px;}
.y8{bottom:35.550000px;}
.y29{bottom:35.760000px;}
.y71{bottom:44.010000px;}
.y28{bottom:51.330000px;}
.y2f{bottom:51.840000px;}
.y70{bottom:57.870000px;}
.y4{bottom:58.140000px;}
.y27{bottom:66.810000px;}
.y2e{bottom:69.750000px;}
.y26{bottom:82.380000px;}
.y25{bottom:97.860000px;}
.y32{bottom:106.200000px;}
.y24{bottom:113.430000px;}
.y3{bottom:115.650000px;}
.y23{bottom:128.910000px;}
.y69{bottom:152.730000px;}
.y3c{bottom:152.820000px;}
.y21{bottom:156.060000px;}
.y7e{bottom:164.910000px;}
.y3b{bottom:172.740000px;}
.y20{bottom:173.880000px;}
.y7d{bottom:182.100000px;}
.y68{bottom:192.630000px;}
.y3a{bottom:192.720000px;}
.y1f{bottom:193.770000px;}
.y7c{bottom:199.380000px;}
.y67{bottom:212.610000px;}
.y39{bottom:212.700000px;}
.y1e{bottom:213.750000px;}
.y7b{bottom:216.660000px;}
.y38{bottom:232.590000px;}
.y1d{bottom:233.730000px;}
.y7a{bottom:233.850000px;}
.y79{bottom:251.130000px;}
.y66{bottom:252.480000px;}
.y37{bottom:252.570000px;}
.y1c{bottom:253.650000px;}
.y78{bottom:268.320000px;}
.y36{bottom:272.010000px;}
.y65{bottom:272.460000px;}
.y1b{bottom:273.630000px;}
.y77{bottom:285.600000px;}
.y35{bottom:291.270000px;}
.y64{bottom:292.440000px;}
.y1a{bottom:293.610000px;}
.y76{bottom:302.880000px;}
.y34{bottom:312.060000px;}
.y63{bottom:312.330000px;}
.y19{bottom:313.500000px;}
.y75{bottom:320.070000px;}
.y16{bottom:326.910000px;}
.y62{bottom:332.310000px;}
.y18{bottom:333.480000px;}
.y74{bottom:337.350000px;}
.y6f{bottom:352.110000px;}
.y61{bottom:352.290000px;}
.y17{bottom:352.920000px;}
.y60{bottom:372.270000px;}
.y5f{bottom:392.160000px;}
.y5e{bottom:412.140000px;}
.y6d{bottom:421.860000px;}
.y5d{bottom:432.120000px;}
.y6c{bottom:439.680000px;}
.y2d{bottom:446.430000px;}
.y5c{bottom:452.010000px;}
.y6b{bottom:456.870000px;}
.y5b{bottom:471.990000px;}
.y6a{bottom:474.150000px;}
.y5a{bottom:491.970000px;}
.y59{bottom:511.860000px;}
.y2b{bottom:531.480000px;}
.y58{bottom:531.840000px;}
.y57{bottom:551.820000px;}
.y22{bottom:552.270000px;}
.y56{bottom:571.710000px;}
.y55{bottom:591.720000px;}
.y54{bottom:611.700000px;}
.y53{bottom:631.590000px;}
.y52{bottom:651.570000px;}
.y51{bottom:671.550000px;}
.y50{bottom:691.440000px;}
.y13{bottom:694.590000px;}
.y4f{bottom:711.420000px;}
.y4e{bottom:731.400000px;}
.y12{bottom:732.570000px;}
.y4d{bottom:751.290000px;}
.y11{bottom:755.520000px;}
.y4c{bottom:771.270000px;}
.y10{bottom:788.820000px;}
.y4b{bottom:791.250000px;}
.yf{bottom:810.780000px;}
.y4a{bottom:811.140000px;}
.y49{bottom:831.120000px;}
.ye{bottom:834.450000px;}
.y48{bottom:851.100000px;}
.yd{bottom:866.400000px;}
.y47{bottom:871.080000px;}
.y46{bottom:890.970000px;}
.yc{bottom:901.410000px;}
.y45{bottom:910.950000px;}
.yb{bottom:930.210000px;}
.y44{bottom:930.930000px;}
.y9{bottom:945.600000px;}
.y43{bottom:950.820000px;}
.y42{bottom:970.800000px;}
.y41{bottom:990.780000px;}
.y40{bottom:1010.700000px;}
.y3f{bottom:1030.680000px;}
.y3e{bottom:1050.660000px;}
.y3d{bottom:1070.550000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h21{height:13.770000px;}
.h13{height:19.890000px;}
.h19{height:19.980000px;}
.h4{height:29.790000px;}
.h8{height:33.431836px;}
.h22{height:33.782520px;}
.h7{height:37.359219px;}
.h1f{height:37.705078px;}
.h1e{height:38.100586px;}
.h9{height:39.082324px;}
.h17{height:39.999023px;}
.h5{height:41.978320px;}
.h1c{height:42.134458px;}
.h14{height:42.418652px;}
.h20{height:44.502891px;}
.h18{height:44.532246px;}
.h2{height:45.295488px;}
.hb{height:46.000195px;}
.hc{height:49.635176px;}
.h1{height:50.800781px;}
.h10{height:51.404039px;}
.h6{height:51.667383px;}
.h1b{height:58.271484px;}
.h12{height:64.875586px;}
.h3{height:65.526152px;}
.h23{height:69.030000px;}
.hf{height:71.091211px;}
.hd{height:76.201172px;}
.h11{height:79.945312px;}
.h1a{height:84.330000px;}
.he{height:116.542969px;}
.h1d{height:118.800000px;}
.h16{height:141.510000px;}
.ha{height:153.930000px;}
.h15{height:366.870000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w6{width:220.350000px;}
.w7{width:329.160000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:6.660000px;}
.x4{left:8.640000px;}
.x25{left:20.160000px;}
.x2b{left:27.630000px;}
.x27{left:34.110000px;}
.x2a{left:36.090000px;}
.x8{left:45.540000px;}
.x2{left:53.999986px;}
.x2c{left:56.969986px;}
.x2e{left:59.669986px;}
.x1{left:60.749986px;}
.x2d{left:65.429986px;}
.x32{left:80.130000px;}
.x31{left:85.140000px;}
.x30{left:88.199986px;}
.x5{left:100.890000px;}
.x3{left:107.999986px;}
.x6{left:127.110000px;}
.x7{left:129.720000px;}
.x28{left:148.500000px;}
.x29{left:159.780000px;}
.x11{left:192.719986px;}
.xb{left:196.319986px;}
.x12{left:306.479986px;}
.x13{left:314.579986px;}
.x14{left:396.389986px;}
.x15{left:400.889986px;}
.xd{left:405.029986px;}
.x16{left:413.219986px;}
.x17{left:416.819986px;}
.xe{left:426.809986px;}
.x18{left:429.779986px;}
.xf{left:431.399986px;}
.x19{left:451.019986px;}
.xa{left:459.029986px;}
.xc{left:464.159986px;}
.x23{left:465.239986px;}
.x2f{left:478.229986px;}
.x1a{left:501.809986px;}
.x1b{left:509.909986px;}
.x10{left:525.389986px;}
.x1c{left:560.849986px;}
.x1d{left:565.349986px;}
.x1e{left:629.429986px;}
.x1f{left:633.929986px;}
.x24{left:642.210000px;}
.x20{left:698.909986px;}
.x21{left:703.499986px;}
.x22{left:737.789986px;}
.x9{left:812.430000px;}
@media print{
.v4{vertical-align:-6.080000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v5{vertical-align:6.080000pt;}
.v1{vertical-align:16.000000pt;}
.lsf{letter-spacing:-1.621333pt;}
.ls12{letter-spacing:-0.396267pt;}
.ls1f{letter-spacing:-0.324267pt;}
.ls1c{letter-spacing:-0.124267pt;}
.ls10{letter-spacing:-0.099200pt;}
.ls11{letter-spacing:-0.082133pt;}
.ls13{letter-spacing:-0.076267pt;}
.ls1a{letter-spacing:-0.065067pt;}
.ls18{letter-spacing:-0.008000pt;}
.ls19{letter-spacing:-0.004160pt;}
.lsb{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.022400pt;}
.ls9{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.068267pt;}
.lsa{letter-spacing:0.077440pt;}
.ls5{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.097257pt;}
.lsc{letter-spacing:0.124267pt;}
.ls17{letter-spacing:0.152960pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.170240pt;}
.ls1b{letter-spacing:0.243733pt;}
.ls3{letter-spacing:3.810560pt;}
.ls16{letter-spacing:7.360000pt;}
.ls2{letter-spacing:8.000000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls8{letter-spacing:16.512000pt;}
.ls7{letter-spacing:32.823680pt;}
.ls6{letter-spacing:36.576000pt;}
.ls1d{letter-spacing:40.823680pt;}
.ls0{letter-spacing:882.426667pt;}
.ws7{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.230827pt;}
.ws3{word-spacing:-16.045440pt;}
.wsa{word-spacing:-14.771840pt;}
.ws4{word-spacing:-14.749440pt;}
.ws5{word-spacing:-14.642560pt;}
.wse{word-spacing:-14.638400pt;}
.wsc{word-spacing:-14.625173pt;}
.wsb{word-spacing:-14.577493pt;}
.wsf{word-spacing:-14.318293pt;}
.ws0{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.152000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.wsd{word-spacing:-0.053440pt;}
.ws9{word-spacing:0.000000pt;}
._a{margin-left:-17.977920pt;}
._1d{margin-left:-17.052160pt;}
._13{margin-left:-16.128000pt;}
._3{margin-left:-13.292480pt;}
._1e{margin-left:-9.656640pt;}
._e{margin-left:-8.409920pt;}
._c{margin-left:-7.144320pt;}
._17{margin-left:-5.771093pt;}
._5{margin-left:-4.809280pt;}
._8{margin-left:-2.976000pt;}
._16{margin-left:-2.084160pt;}
._0{margin-left:-1.068800pt;}
._7{width:0.967040pt;}
._9{width:2.496000pt;}
._f{width:3.661120pt;}
._6{width:4.766720pt;}
._18{width:6.038720pt;}
._d{width:6.968640pt;}
._1a{width:8.229760pt;}
._1c{width:9.442560pt;}
._15{width:10.637440pt;}
._19{width:12.090667pt;}
._12{width:13.146880pt;}
._4{width:14.044800pt;}
._11{width:15.578880pt;}
._10{width:17.031253pt;}
._b{width:18.153600pt;}
._1b{width:19.078080pt;}
._20{width:20.237760pt;}
._1f{width:22.979200pt;}
._14{width:26.880000pt;}
._21{width:39.206080pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
.fs5{font-size:26.560000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:44.861730pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs7{font-size:61.727043pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.320000pt;}
.y7{bottom:2.400000pt;}
.y33{bottom:2.560000pt;}
.y14{bottom:3.360000pt;}
.y15{bottom:5.280000pt;}
.y2c{bottom:5.360000pt;}
.y5{bottom:8.480000pt;}
.ya{bottom:12.480000pt;}
.y31{bottom:14.160000pt;}
.y73{bottom:14.640000pt;}
.y6{bottom:14.960000pt;}
.y2a{bottom:17.200000pt;}
.y72{bottom:26.880000pt;}
.y30{bottom:30.080000pt;}
.y8{bottom:31.600000pt;}
.y29{bottom:31.786667pt;}
.y71{bottom:39.120000pt;}
.y28{bottom:45.626667pt;}
.y2f{bottom:46.080000pt;}
.y70{bottom:51.440000pt;}
.y4{bottom:51.680000pt;}
.y27{bottom:59.386667pt;}
.y2e{bottom:62.000000pt;}
.y26{bottom:73.226667pt;}
.y25{bottom:86.986667pt;}
.y32{bottom:94.400000pt;}
.y24{bottom:100.826667pt;}
.y3{bottom:102.800000pt;}
.y23{bottom:114.586667pt;}
.y69{bottom:135.760000pt;}
.y3c{bottom:135.840000pt;}
.y21{bottom:138.720000pt;}
.y7e{bottom:146.586667pt;}
.y3b{bottom:153.546667pt;}
.y20{bottom:154.560000pt;}
.y7d{bottom:161.866667pt;}
.y68{bottom:171.226667pt;}
.y3a{bottom:171.306667pt;}
.y1f{bottom:172.240000pt;}
.y7c{bottom:177.226667pt;}
.y67{bottom:188.986667pt;}
.y39{bottom:189.066667pt;}
.y1e{bottom:190.000000pt;}
.y7b{bottom:192.586667pt;}
.y38{bottom:206.746667pt;}
.y1d{bottom:207.760000pt;}
.y7a{bottom:207.866667pt;}
.y79{bottom:223.226667pt;}
.y66{bottom:224.426667pt;}
.y37{bottom:224.506667pt;}
.y1c{bottom:225.466667pt;}
.y78{bottom:238.506667pt;}
.y36{bottom:241.786667pt;}
.y65{bottom:242.186667pt;}
.y1b{bottom:243.226667pt;}
.y77{bottom:253.866667pt;}
.y35{bottom:258.906667pt;}
.y64{bottom:259.946667pt;}
.y1a{bottom:260.986667pt;}
.y76{bottom:269.226667pt;}
.y34{bottom:277.386667pt;}
.y63{bottom:277.626667pt;}
.y19{bottom:278.666667pt;}
.y75{bottom:284.506667pt;}
.y16{bottom:290.586667pt;}
.y62{bottom:295.386667pt;}
.y18{bottom:296.426667pt;}
.y74{bottom:299.866667pt;}
.y6f{bottom:312.986667pt;}
.y61{bottom:313.146667pt;}
.y17{bottom:313.706667pt;}
.y60{bottom:330.906667pt;}
.y5f{bottom:348.586667pt;}
.y5e{bottom:366.346667pt;}
.y6d{bottom:374.986667pt;}
.y5d{bottom:384.106667pt;}
.y6c{bottom:390.826667pt;}
.y2d{bottom:396.826667pt;}
.y5c{bottom:401.786667pt;}
.y6b{bottom:406.106667pt;}
.y5b{bottom:419.546667pt;}
.y6a{bottom:421.466667pt;}
.y5a{bottom:437.306667pt;}
.y59{bottom:454.986667pt;}
.y2b{bottom:472.426667pt;}
.y58{bottom:472.746667pt;}
.y57{bottom:490.506667pt;}
.y22{bottom:490.906667pt;}
.y56{bottom:508.186667pt;}
.y55{bottom:525.973333pt;}
.y54{bottom:543.733333pt;}
.y53{bottom:561.413333pt;}
.y52{bottom:579.173333pt;}
.y51{bottom:596.933333pt;}
.y50{bottom:614.613333pt;}
.y13{bottom:617.413333pt;}
.y4f{bottom:632.373333pt;}
.y4e{bottom:650.133333pt;}
.y12{bottom:651.173333pt;}
.y4d{bottom:667.813333pt;}
.y11{bottom:671.573333pt;}
.y4c{bottom:685.573333pt;}
.y10{bottom:701.173333pt;}
.y4b{bottom:703.333333pt;}
.yf{bottom:720.693333pt;}
.y4a{bottom:721.013333pt;}
.y49{bottom:738.773333pt;}
.ye{bottom:741.733333pt;}
.y48{bottom:756.533333pt;}
.yd{bottom:770.133333pt;}
.y47{bottom:774.293333pt;}
.y46{bottom:791.973333pt;}
.yc{bottom:801.253333pt;}
.y45{bottom:809.733333pt;}
.yb{bottom:826.853333pt;}
.y44{bottom:827.493333pt;}
.y9{bottom:840.533333pt;}
.y43{bottom:845.173333pt;}
.y42{bottom:862.933333pt;}
.y41{bottom:880.693333pt;}
.y40{bottom:898.400000pt;}
.y3f{bottom:916.160000pt;}
.y3e{bottom:933.920000pt;}
.y3d{bottom:951.600000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h21{height:12.240000pt;}
.h13{height:17.680000pt;}
.h19{height:17.760000pt;}
.h4{height:26.480000pt;}
.h8{height:29.717188pt;}
.h22{height:30.028906pt;}
.h7{height:33.208195pt;}
.h1f{height:33.515625pt;}
.h1e{height:33.867188pt;}
.h9{height:34.739844pt;}
.h17{height:35.554688pt;}
.h5{height:37.314062pt;}
.h1c{height:37.452852pt;}
.h14{height:37.705469pt;}
.h20{height:39.558125pt;}
.h18{height:39.584219pt;}
.h2{height:40.262656pt;}
.hb{height:40.889062pt;}
.hc{height:44.120156pt;}
.h1{height:45.156250pt;}
.h10{height:45.692479pt;}
.h6{height:45.926562pt;}
.h1b{height:51.796875pt;}
.h12{height:57.667187pt;}
.h3{height:58.245469pt;}
.h23{height:61.360000pt;}
.hf{height:63.192187pt;}
.hd{height:67.734375pt;}
.h11{height:71.062500pt;}
.h1a{height:74.960000pt;}
.he{height:103.593750pt;}
.h1d{height:105.600000pt;}
.h16{height:125.786667pt;}
.ha{height:136.826667pt;}
.h15{height:326.106667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w6{width:195.866667pt;}
.w7{width:292.586667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:5.920000pt;}
.x4{left:7.680000pt;}
.x25{left:17.920000pt;}
.x2b{left:24.560000pt;}
.x27{left:30.320000pt;}
.x2a{left:32.080000pt;}
.x8{left:40.480000pt;}
.x2{left:47.999988pt;}
.x2c{left:50.639988pt;}
.x2e{left:53.039988pt;}
.x1{left:53.999988pt;}
.x2d{left:58.159988pt;}
.x32{left:71.226667pt;}
.x31{left:75.680000pt;}
.x30{left:78.399988pt;}
.x5{left:89.680000pt;}
.x3{left:95.999988pt;}
.x6{left:112.986667pt;}
.x7{left:115.306667pt;}
.x28{left:132.000000pt;}
.x29{left:142.026667pt;}
.x11{left:171.306655pt;}
.xb{left:174.506655pt;}
.x12{left:272.426655pt;}
.x13{left:279.626655pt;}
.x14{left:352.346655pt;}
.x15{left:356.346655pt;}
.xd{left:360.026655pt;}
.x16{left:367.306655pt;}
.x17{left:370.506655pt;}
.xe{left:379.386655pt;}
.x18{left:382.026655pt;}
.xf{left:383.466655pt;}
.x19{left:400.906655pt;}
.xa{left:408.026655pt;}
.xc{left:412.586655pt;}
.x23{left:413.546655pt;}
.x2f{left:425.093321pt;}
.x1a{left:446.053321pt;}
.x1b{left:453.253321pt;}
.x10{left:467.013321pt;}
.x1c{left:498.533321pt;}
.x1d{left:502.533321pt;}
.x1e{left:559.493321pt;}
.x1f{left:563.493321pt;}
.x24{left:570.853333pt;}
.x20{left:621.253321pt;}
.x21{left:625.333321pt;}
.x22{left:655.813321pt;}
.x9{left:722.160000pt;}
}




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