
    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_b03fcbb0fa6b0fee21ac3830.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f87a2198676649ea42e9027e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_472b62c1002e3f6f49270216.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_132a3e1f735ff8c891a6bcba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_4651b75c3c28db61e44e022f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_977ec3e5fe041db649fbecef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_499c1d04be882f5bf8e0b651.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_87bff427b5540096ac9601d4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_70bf00d2287a04cad84821af.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fce1db4c65341b234254dd98.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_65c0f16419bd82cdf5bb2848.woff2')format("woff");}.fff{font-family:fff;line-height:0.934082;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:ff10;src:url('chunks/assets/font_4f85def16d8dfcd8493b2a05.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-2.520000px;}
.ls10{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.lsf{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.680200px;}
.ws8{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws6{word-spacing:-12.816720px;}
.wsb{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-6.573600px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.068000px;}
._2{margin-left:-2.681040px;}
._0{margin-left:-1.194000px;}
._1{width:1.020000px;}
._5{width:2.155440px;}
._d{width:3.163200px;}
._a{width:4.813200px;}
._7{width:6.758880px;}
._6{width:7.946880px;}
._c{width:9.677040px;}
._b{width:10.816560px;}
._15{width:12.549600px;}
._11{width:17.390400px;}
._10{width:18.521520px;}
._14{width:19.601280px;}
._17{width:21.155040px;}
._9{width:22.469760px;}
._8{width:23.545440px;}
._16{width:28.979520px;}
._12{width:30.652800px;}
._f{width:32.150880px;}
._e{width:33.166800px;}
._13{width:34.174560px;}
._1c{width:93.759360px;}
._1b{width:95.137920px;}
._1a{width:107.448720px;}
._18{width:567.962880px;}
._19{width:569.435760px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.240000px;}
.y93{bottom:3.270000px;}
.y4{bottom:3.600000px;}
.y47{bottom:3.960000px;}
.yf{bottom:9.540000px;}
.y45{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y6{bottom:14.940000px;}
.y3{bottom:19.980000px;}
.y41{bottom:20.340000px;}
.y46{bottom:22.320000px;}
.y44{bottom:25.380000px;}
.yc{bottom:30.060000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y1{bottom:37.440000px;}
.y40{bottom:37.620000px;}
.y19{bottom:40.365000px;}
.yb{bottom:46.440000px;}
.y18{bottom:52.965000px;}
.y3f{bottom:54.900000px;}
.y3e{bottom:72.180000px;}
.ya{bottom:73.290000px;}
.y17{bottom:73.305000px;}
.y16{bottom:85.725000px;}
.y3d{bottom:89.460000px;}
.y9{bottom:92.910000px;}
.y15{bottom:101.025000px;}
.y3c{bottom:106.560000px;}
.y8{bottom:111.270000px;}
.y90{bottom:118.656000px;}
.y14{bottom:120.105000px;}
.y3b{bottom:123.840000px;}
.y2b{bottom:133.560000px;}
.y8f{bottom:135.936000px;}
.y3a{bottom:141.120000px;}
.y13{bottom:145.845000px;}
.y54{bottom:148.356000px;}
.y2a{bottom:148.680000px;}
.y8e{bottom:153.210000px;}
.y39{bottom:158.400000px;}
.y53{bottom:165.630000px;}
.y29{bottom:165.960000px;}
.y8d{bottom:170.490000px;}
.y12{bottom:171.585000px;}
.y38{bottom:175.680000px;}
.y52{bottom:182.910000px;}
.y28{bottom:183.420000px;}
.y8c{bottom:185.250000px;}
.y37{bottom:192.960000px;}
.y11{bottom:195.885000px;}
.y51{bottom:200.190000px;}
.y27{bottom:200.910000px;}
.y8b{bottom:203.250000px;}
.y36{bottom:210.090000px;}
.y50{bottom:217.470000px;}
.y26{bottom:218.190000px;}
.y8a{bottom:221.250000px;}
.yc8{bottom:222.150000px;}
.y35{bottom:227.370000px;}
.y4f{bottom:234.570000px;}
.y25{bottom:235.650000px;}
.y89{bottom:239.250000px;}
.yc7{bottom:239.430000px;}
.y34{bottom:244.650000px;}
.y4e{bottom:251.850000px;}
.y24{bottom:253.110000px;}
.yc6{bottom:256.710000px;}
.y88{bottom:257.250000px;}
.y33{bottom:261.930000px;}
.y4d{bottom:269.130000px;}
.y23{bottom:270.390000px;}
.yc5{bottom:273.990000px;}
.y87{bottom:275.250000px;}
.y32{bottom:279.210000px;}
.y4c{bottom:286.410000px;}
.y22{bottom:287.850000px;}
.yc4{bottom:291.270000px;}
.y31{bottom:296.490000px;}
.y4b{bottom:303.690000px;}
.y21{bottom:305.310000px;}
.yc3{bottom:308.370000px;}
.y30{bottom:313.590000px;}
.y86{bottom:313.770000px;}
.y4a{bottom:320.970000px;}
.y20{bottom:322.590000px;}
.yc2{bottom:325.650000px;}
.y2f{bottom:330.870000px;}
.y49{bottom:338.115000px;}
.y1f{bottom:340.230000px;}
.yc1{bottom:342.975000px;}
.y2e{bottom:348.150000px;}
.y85{bottom:348.195000px;}
.y48{bottom:355.395000px;}
.yc0{bottom:360.255000px;}
.y2d{bottom:365.430000px;}
.y84{bottom:365.475000px;}
.y1e{bottom:367.590000px;}
.y43{bottom:369.435000px;}
.ybf{bottom:377.535000px;}
.y2c{bottom:382.710000px;}
.y83{bottom:382.755000px;}
.y1d{bottom:385.410000px;}
.ybe{bottom:394.815000px;}
.y82{bottom:400.035000px;}
.y1c{bottom:406.155000px;}
.ybd{bottom:411.915000px;}
.y81{bottom:417.315000px;}
.ybc{bottom:429.195000px;}
.y80{bottom:434.415000px;}
.ybb{bottom:446.475000px;}
.y7f{bottom:451.695000px;}
.yba{bottom:463.755000px;}
.y7e{bottom:468.975000px;}
.yb9{bottom:481.035000px;}
.y7d{bottom:486.255000px;}
.yb8{bottom:498.135000px;}
.y7c{bottom:503.535000px;}
.yb7{bottom:515.415000px;}
.y7b{bottom:520.635000px;}
.yb6{bottom:532.695000px;}
.y7a{bottom:537.915000px;}
.yb5{bottom:549.975000px;}
.y79{bottom:555.195000px;}
.yb4{bottom:567.255000px;}
.y78{bottom:572.475000px;}
.yb3{bottom:584.535000px;}
.y77{bottom:589.755000px;}
.yb2{bottom:601.635000px;}
.y76{bottom:607.065000px;}
.yb1{bottom:618.945000px;}
.y75{bottom:624.165000px;}
.yb0{bottom:636.225000px;}
.y74{bottom:641.445000px;}
.yaf{bottom:653.505000px;}
.y73{bottom:658.725000px;}
.yae{bottom:670.785000px;}
.y72{bottom:676.005000px;}
.yad{bottom:688.065000px;}
.y71{bottom:693.285000px;}
.yac{bottom:705.165000px;}
.y70{bottom:710.565000px;}
.yab{bottom:722.445000px;}
.y6f{bottom:727.665000px;}
.yaa{bottom:739.725000px;}
.y6e{bottom:744.945000px;}
.ya9{bottom:757.005000px;}
.y6d{bottom:762.225000px;}
.ya8{bottom:774.285000px;}
.y6c{bottom:779.505000px;}
.ya7{bottom:791.565000px;}
.y6b{bottom:796.785000px;}
.y1a{bottom:802.905000px;}
.ya6{bottom:808.665000px;}
.y6a{bottom:814.065000px;}
.ya5{bottom:825.945000px;}
.y69{bottom:831.165000px;}
.y10{bottom:832.425000px;}
.ya4{bottom:843.225000px;}
.y68{bottom:848.445000px;}
.ya3{bottom:860.505000px;}
.y67{bottom:865.725000px;}
.ya2{bottom:877.830000px;}
.y66{bottom:883.050000px;}
.ya1{bottom:894.930000px;}
.y65{bottom:900.330000px;}
.ya0{bottom:912.210000px;}
.y64{bottom:917.430000px;}
.y9f{bottom:929.490000px;}
.y63{bottom:934.710000px;}
.y9e{bottom:946.770000px;}
.y62{bottom:951.990000px;}
.y9d{bottom:964.050000px;}
.y61{bottom:969.270000px;}
.y9c{bottom:981.330000px;}
.y60{bottom:986.550000px;}
.y9b{bottom:998.430000px;}
.y5f{bottom:1003.830000px;}
.y9a{bottom:1015.710000px;}
.y5e{bottom:1020.930000px;}
.y99{bottom:1032.990000px;}
.y5d{bottom:1038.210000px;}
.ye{bottom:1043.430000px;}
.y98{bottom:1050.270000px;}
.y5c{bottom:1055.490000px;}
.y97{bottom:1065.030000px;}
.y7{bottom:1068.810000px;}
.y5b{bottom:1072.770000px;}
.y96{bottom:1083.030000px;}
.y5a{bottom:1090.050000px;}
.y95{bottom:1101.030000px;}
.y59{bottom:1107.330000px;}
.y94{bottom:1119.030000px;}
.y58{bottom:1124.430000px;}
.y92{bottom:1137.030000px;}
.y57{bottom:1141.740000px;}
.y91{bottom:1155.060000px;}
.y56{bottom:1159.020000px;}
.y55{bottom:1176.300000px;}
.h1e{height:17.280000px;}
.h1f{height:17.316000px;}
.hc{height:25.020000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h9{height:36.180000px;}
.h1c{height:36.720000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h5{height:43.453125px;}
.h20{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1d{height:48.088125px;}
.h2{height:49.536000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:210.990000px;}
.h15{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w10{width:120.456000px;}
.wf{width:123.480000px;}
.w11{width:123.840000px;}
.we{width:124.776000px;}
.wd{width:125.676000px;}
.w5{width:151.950000px;}
.w8{width:223.275000px;}
.wc{width:248.250000px;}
.wb{width:248.430000px;}
.wa{width:248.475000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.xc{left:12.600000px;}
.xd{left:13.680000px;}
.x10{left:26.676000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x1d{left:108.035987px;}
.x1e{left:135.035987px;}
.x18{left:199.650000px;}
.x12{left:215.175000px;}
.x6{left:224.850000px;}
.x17{left:263.909987px;}
.xe{left:266.655000px;}
.xf{left:274.935000px;}
.x9{left:288.435000px;}
.x13{left:296.175000px;}
.x14{left:297.974987px;}
.x15{left:322.455000px;}
.x19{left:325.155000px;}
.x11{left:334.695000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1a{left:449.355000px;}
.xa{left:455.700000px;}
.x1b{left:570.525000px;}
.x16{left:571.605000px;}
.x1c{left:696.030000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-2.240000pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.lsf{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws6{word-spacing:-11.392640pt;}
.wsb{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-5.843200pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.616000pt;}
._2{margin-left:-2.383147pt;}
._0{margin-left:-1.061333pt;}
._1{width:0.906667pt;}
._5{width:1.915947pt;}
._d{width:2.811733pt;}
._a{width:4.278400pt;}
._7{width:6.007893pt;}
._6{width:7.063893pt;}
._c{width:8.601813pt;}
._b{width:9.614720pt;}
._15{width:11.155200pt;}
._11{width:15.458133pt;}
._10{width:16.463573pt;}
._14{width:17.423360pt;}
._17{width:18.804480pt;}
._9{width:19.973120pt;}
._8{width:20.929280pt;}
._16{width:25.759573pt;}
._12{width:27.246933pt;}
._f{width:28.578560pt;}
._e{width:29.481600pt;}
._13{width:30.377387pt;}
._1c{width:83.341653pt;}
._1b{width:84.567040pt;}
._1a{width:95.509973pt;}
._18{width:504.855893pt;}
._19{width:506.165120pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.880000pt;}
.y93{bottom:2.906667pt;}
.y4{bottom:3.200000pt;}
.y47{bottom:3.520000pt;}
.yf{bottom:8.480000pt;}
.y45{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y6{bottom:13.280000pt;}
.y3{bottom:17.760000pt;}
.y41{bottom:18.080000pt;}
.y46{bottom:19.840000pt;}
.y44{bottom:22.560000pt;}
.yc{bottom:26.720000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y1{bottom:33.280000pt;}
.y40{bottom:33.440000pt;}
.y19{bottom:35.880000pt;}
.yb{bottom:41.280000pt;}
.y18{bottom:47.080000pt;}
.y3f{bottom:48.800000pt;}
.y3e{bottom:64.160000pt;}
.ya{bottom:65.146667pt;}
.y17{bottom:65.160000pt;}
.y16{bottom:76.200000pt;}
.y3d{bottom:79.520000pt;}
.y9{bottom:82.586667pt;}
.y15{bottom:89.800000pt;}
.y3c{bottom:94.720000pt;}
.y8{bottom:98.906667pt;}
.y90{bottom:105.472000pt;}
.y14{bottom:106.760000pt;}
.y3b{bottom:110.080000pt;}
.y2b{bottom:118.720000pt;}
.y8f{bottom:120.832000pt;}
.y3a{bottom:125.440000pt;}
.y13{bottom:129.640000pt;}
.y54{bottom:131.872000pt;}
.y2a{bottom:132.160000pt;}
.y8e{bottom:136.186667pt;}
.y39{bottom:140.800000pt;}
.y53{bottom:147.226667pt;}
.y29{bottom:147.520000pt;}
.y8d{bottom:151.546667pt;}
.y12{bottom:152.520000pt;}
.y38{bottom:156.160000pt;}
.y52{bottom:162.586667pt;}
.y28{bottom:163.040000pt;}
.y8c{bottom:164.666667pt;}
.y37{bottom:171.520000pt;}
.y11{bottom:174.120000pt;}
.y51{bottom:177.946667pt;}
.y27{bottom:178.586667pt;}
.y8b{bottom:180.666667pt;}
.y36{bottom:186.746667pt;}
.y50{bottom:193.306667pt;}
.y26{bottom:193.946667pt;}
.y8a{bottom:196.666667pt;}
.yc8{bottom:197.466667pt;}
.y35{bottom:202.106667pt;}
.y4f{bottom:208.506667pt;}
.y25{bottom:209.466667pt;}
.y89{bottom:212.666667pt;}
.yc7{bottom:212.826667pt;}
.y34{bottom:217.466667pt;}
.y4e{bottom:223.866667pt;}
.y24{bottom:224.986667pt;}
.yc6{bottom:228.186667pt;}
.y88{bottom:228.666667pt;}
.y33{bottom:232.826667pt;}
.y4d{bottom:239.226667pt;}
.y23{bottom:240.346667pt;}
.yc5{bottom:243.546667pt;}
.y87{bottom:244.666667pt;}
.y32{bottom:248.186667pt;}
.y4c{bottom:254.586667pt;}
.y22{bottom:255.866667pt;}
.yc4{bottom:258.906667pt;}
.y31{bottom:263.546667pt;}
.y4b{bottom:269.946667pt;}
.y21{bottom:271.386667pt;}
.yc3{bottom:274.106667pt;}
.y30{bottom:278.746667pt;}
.y86{bottom:278.906667pt;}
.y4a{bottom:285.306667pt;}
.y20{bottom:286.746667pt;}
.yc2{bottom:289.466667pt;}
.y2f{bottom:294.106667pt;}
.y49{bottom:300.546667pt;}
.y1f{bottom:302.426667pt;}
.yc1{bottom:304.866667pt;}
.y2e{bottom:309.466667pt;}
.y85{bottom:309.506667pt;}
.y48{bottom:315.906667pt;}
.yc0{bottom:320.226667pt;}
.y2d{bottom:324.826667pt;}
.y84{bottom:324.866667pt;}
.y1e{bottom:326.746667pt;}
.y43{bottom:328.386667pt;}
.ybf{bottom:335.586667pt;}
.y2c{bottom:340.186667pt;}
.y83{bottom:340.226667pt;}
.y1d{bottom:342.586667pt;}
.ybe{bottom:350.946667pt;}
.y82{bottom:355.586667pt;}
.y1c{bottom:361.026667pt;}
.ybd{bottom:366.146667pt;}
.y81{bottom:370.946667pt;}
.ybc{bottom:381.506667pt;}
.y80{bottom:386.146667pt;}
.ybb{bottom:396.866667pt;}
.y7f{bottom:401.506667pt;}
.yba{bottom:412.226667pt;}
.y7e{bottom:416.866667pt;}
.yb9{bottom:427.586667pt;}
.y7d{bottom:432.226667pt;}
.yb8{bottom:442.786667pt;}
.y7c{bottom:447.586667pt;}
.yb7{bottom:458.146667pt;}
.y7b{bottom:462.786667pt;}
.yb6{bottom:473.506667pt;}
.y7a{bottom:478.146667pt;}
.yb5{bottom:488.866667pt;}
.y79{bottom:493.506667pt;}
.yb4{bottom:504.226667pt;}
.y78{bottom:508.866667pt;}
.yb3{bottom:519.586667pt;}
.y77{bottom:524.226667pt;}
.yb2{bottom:534.786667pt;}
.y76{bottom:539.613333pt;}
.yb1{bottom:550.173333pt;}
.y75{bottom:554.813333pt;}
.yb0{bottom:565.533333pt;}
.y74{bottom:570.173333pt;}
.yaf{bottom:580.893333pt;}
.y73{bottom:585.533333pt;}
.yae{bottom:596.253333pt;}
.y72{bottom:600.893333pt;}
.yad{bottom:611.613333pt;}
.y71{bottom:616.253333pt;}
.yac{bottom:626.813333pt;}
.y70{bottom:631.613333pt;}
.yab{bottom:642.173333pt;}
.y6f{bottom:646.813333pt;}
.yaa{bottom:657.533333pt;}
.y6e{bottom:662.173333pt;}
.ya9{bottom:672.893333pt;}
.y6d{bottom:677.533333pt;}
.ya8{bottom:688.253333pt;}
.y6c{bottom:692.893333pt;}
.ya7{bottom:703.613333pt;}
.y6b{bottom:708.253333pt;}
.y1a{bottom:713.693333pt;}
.ya6{bottom:718.813333pt;}
.y6a{bottom:723.613333pt;}
.ya5{bottom:734.173333pt;}
.y69{bottom:738.813333pt;}
.y10{bottom:739.933333pt;}
.ya4{bottom:749.533333pt;}
.y68{bottom:754.173333pt;}
.ya3{bottom:764.893333pt;}
.y67{bottom:769.533333pt;}
.ya2{bottom:780.293333pt;}
.y66{bottom:784.933333pt;}
.ya1{bottom:795.493333pt;}
.y65{bottom:800.293333pt;}
.ya0{bottom:810.853333pt;}
.y64{bottom:815.493333pt;}
.y9f{bottom:826.213333pt;}
.y63{bottom:830.853333pt;}
.y9e{bottom:841.573333pt;}
.y62{bottom:846.213333pt;}
.y9d{bottom:856.933333pt;}
.y61{bottom:861.573333pt;}
.y9c{bottom:872.293333pt;}
.y60{bottom:876.933333pt;}
.y9b{bottom:887.493333pt;}
.y5f{bottom:892.293333pt;}
.y9a{bottom:902.853333pt;}
.y5e{bottom:907.493333pt;}
.y99{bottom:918.213333pt;}
.y5d{bottom:922.853333pt;}
.ye{bottom:927.493333pt;}
.y98{bottom:933.573333pt;}
.y5c{bottom:938.213333pt;}
.y97{bottom:946.693333pt;}
.y7{bottom:950.053333pt;}
.y5b{bottom:953.573333pt;}
.y96{bottom:962.693333pt;}
.y5a{bottom:968.933333pt;}
.y95{bottom:978.693333pt;}
.y59{bottom:984.293333pt;}
.y94{bottom:994.693333pt;}
.y58{bottom:999.493333pt;}
.y92{bottom:1010.693333pt;}
.y57{bottom:1014.880000pt;}
.y91{bottom:1026.720000pt;}
.y56{bottom:1030.240000pt;}
.y55{bottom:1045.600000pt;}
.h1e{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hc{height:22.240000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h9{height:32.160000pt;}
.h1c{height:32.640000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h5{height:38.625000pt;}
.h20{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h2{height:44.032000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:187.546667pt;}
.h15{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w10{width:107.072000pt;}
.wf{width:109.760000pt;}
.w11{width:110.080000pt;}
.we{width:110.912000pt;}
.wd{width:111.712000pt;}
.w5{width:135.066667pt;}
.w8{width:198.466667pt;}
.wc{width:220.666667pt;}
.wb{width:220.826667pt;}
.wa{width:220.866667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.xc{left:11.200000pt;}
.xd{left:12.160000pt;}
.x10{left:23.712000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x1d{left:96.031988pt;}
.x1e{left:120.031988pt;}
.x18{left:177.466667pt;}
.x12{left:191.266667pt;}
.x6{left:199.866667pt;}
.x17{left:234.586655pt;}
.xe{left:237.026667pt;}
.xf{left:244.386667pt;}
.x9{left:256.386667pt;}
.x13{left:263.266667pt;}
.x14{left:264.866655pt;}
.x15{left:286.626667pt;}
.x19{left:289.026667pt;}
.x11{left:297.506667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1a{left:399.426667pt;}
.xa{left:405.066667pt;}
.x1b{left:507.133333pt;}
.x16{left:508.093333pt;}
.x1c{left:618.693333pt;}
.x3{left:663.013333pt;}
}




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