
    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_68b729eafa5b1e6bf0505df9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_61ec3290cdb1f84e4f8b7212.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_0e70e8f299948ab726e4c997.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c725696fb89ee314736730da.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_811a7a5a8be256bc8688eb86.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_df49591cd5e1b92fe4cb462e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3d39f2bf7322051b2b88a82a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_e707db81d419c054698ff69b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f4d2b219b90f3245bc460d23.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4a50707da7eb9c403612c140.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.774000px;}
.lsf{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.360000px;}
.ls12{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.706720px;}
.ls9{letter-spacing:46.026720px;}
.lse{letter-spacing:55.362720px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.300000px;}
.wse{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.166000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._13{margin-left:-7.167600px;}
._15{margin-left:-6.080160px;}
._b{margin-left:-4.122240px;}
._11{margin-left:-2.383200px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._10{width:2.736480px;}
._c{width:3.944160px;}
._d{width:4.990080px;}
._a{width:6.331440px;}
._8{width:8.022240px;}
._9{width:9.733440px;}
._14{width:10.792800px;}
._e{width:11.892240px;}
._f{width:13.370640px;}
._12{width:15.986160px;}
._16{width:17.264880px;}
._18{width:19.242720px;}
._17{width:20.359440px;}
._19{width:23.080800px;}
._1a{width:25.371840px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.yba{bottom:-20.160000px;}
.yb8{bottom:-17.460000px;}
.ybc{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:3.780000px;}
.yc1{bottom:3.960000px;}
.y89{bottom:5.760000px;}
.y8d{bottom:5.940000px;}
.y108{bottom:10.800000px;}
.y107{bottom:30.600000px;}
.y104{bottom:34.950000px;}
.y106{bottom:50.430000px;}
.y6{bottom:60.120000px;}
.y105{bottom:70.410000px;}
.y34{bottom:88.920000px;}
.yb6{bottom:89.100000px;}
.yd8{bottom:92.700000px;}
.y102{bottom:93.240000px;}
.y6b{bottom:96.300000px;}
.y95{bottom:97.920000px;}
.y33{bottom:108.900000px;}
.y101{bottom:113.040000px;}
.y6a{bottom:116.100000px;}
.y103{bottom:117.720000px;}
.y94{bottom:117.900000px;}
.y32{bottom:128.700000px;}
.y100{bottom:132.840000px;}
.y69{bottom:135.900000px;}
.y93{bottom:137.700000px;}
.y31{bottom:148.500000px;}
.yff{bottom:152.670000px;}
.y68{bottom:155.730000px;}
.y92{bottom:157.530000px;}
.y30{bottom:168.330000px;}
.yb5{bottom:168.510000px;}
.yfe{bottom:172.470000px;}
.y67{bottom:175.530000px;}
.y91{bottom:177.330000px;}
.y2f{bottom:188.130000px;}
.yb4{bottom:188.310000px;}
.yfd{bottom:192.450000px;}
.y90{bottom:197.130000px;}
.y66{bottom:204.510000px;}
.ybd{bottom:205.050000px;}
.ybf{bottom:206.490000px;}
.y2e{bottom:208.110000px;}
.yc0{bottom:208.830000px;}
.yfc{bottom:212.250000px;}
.y8f{bottom:216.030000px;}
.y65{bottom:224.310000px;}
.y2d{bottom:227.910000px;}
.yfb{bottom:232.050000px;}
.y8e{bottom:241.950000px;}
.y64{bottom:244.110000px;}
.y2c{bottom:247.710000px;}
.yb7{bottom:253.650000px;}
.yb9{bottom:257.070000px;}
.yfa{bottom:260.850000px;}
.ybb{bottom:261.930000px;}
.y63{bottom:263.910000px;}
.y2b{bottom:267.510000px;}
.y8c{bottom:267.690000px;}
.yf9{bottom:280.650000px;}
.y62{bottom:283.710000px;}
.y2a{bottom:287.310000px;}
.yb3{bottom:287.490000px;}
.y8b{bottom:293.610000px;}
.yf8{bottom:300.630000px;}
.y61{bottom:303.690000px;}
.y29{bottom:307.290000px;}
.y8a{bottom:319.530000px;}
.yf7{bottom:320.430000px;}
.y60{bottom:323.490000px;}
.y28{bottom:327.090000px;}
.yf6{bottom:340.230000px;}
.y5f{bottom:343.290000px;}
.y88{bottom:345.270000px;}
.y27{bottom:346.890000px;}
.yf5{bottom:360.030000px;}
.y5e{bottom:363.090000px;}
.y26{bottom:366.690000px;}
.yb2{bottom:366.870000px;}
.y87{bottom:375.870000px;}
.yf4{bottom:379.830000px;}
.y5d{bottom:382.890000px;}
.y25{bottom:386.490000px;}
.yb1{bottom:386.670000px;}
.y86{bottom:395.670000px;}
.yf3{bottom:399.810000px;}
.y5c{bottom:402.915000px;}
.y24{bottom:406.515000px;}
.y85{bottom:415.515000px;}
.yf2{bottom:419.655000px;}
.y5b{bottom:422.715000px;}
.y23{bottom:426.315000px;}
.y84{bottom:435.315000px;}
.yf1{bottom:439.455000px;}
.y5a{bottom:442.515000px;}
.y22{bottom:446.115000px;}
.y83{bottom:455.115000px;}
.yf0{bottom:459.255000px;}
.y59{bottom:462.315000px;}
.y21{bottom:465.915000px;}
.yb0{bottom:466.095000px;}
.y82{bottom:475.095000px;}
.yef{bottom:479.055000px;}
.yd7{bottom:482.115000px;}
.y20{bottom:485.715000px;}
.yaf{bottom:485.895000px;}
.y58{bottom:491.115000px;}
.y81{bottom:494.895000px;}
.yee{bottom:499.035000px;}
.yd6{bottom:502.095000px;}
.y1f{bottom:505.695000px;}
.y57{bottom:511.095000px;}
.y80{bottom:514.695000px;}
.yed{bottom:518.835000px;}
.yd5{bottom:521.895000px;}
.y1e{bottom:525.495000px;}
.y56{bottom:530.895000px;}
.y7f{bottom:534.495000px;}
.yec{bottom:538.635000px;}
.yd4{bottom:541.695000px;}
.y1d{bottom:545.295000px;}
.y55{bottom:550.695000px;}
.y7e{bottom:554.295000px;}
.yeb{bottom:558.435000px;}
.yd3{bottom:561.495000px;}
.y1c{bottom:565.095000px;}
.yae{bottom:565.275000px;}
.y54{bottom:570.495000px;}
.yea{bottom:578.235000px;}
.yd2{bottom:581.295000px;}
.y7d{bottom:583.275000px;}
.yad{bottom:585.075000px;}
.y1b{bottom:587.235000px;}
.y53{bottom:590.295000px;}
.ye9{bottom:598.215000px;}
.yd1{bottom:601.275000px;}
.y7c{bottom:603.075000px;}
.yac{bottom:604.875000px;}
.y52{bottom:610.275000px;}
.y1a{bottom:616.035000px;}
.ye8{bottom:618.015000px;}
.yd0{bottom:621.075000px;}
.y7b{bottom:622.875000px;}
.yab{bottom:624.675000px;}
.y51{bottom:630.075000px;}
.y19{bottom:635.835000px;}
.ycf{bottom:640.875000px;}
.y7a{bottom:642.675000px;}
.yaa{bottom:644.475000px;}
.ye7{bottom:646.815000px;}
.y50{bottom:649.905000px;}
.y18{bottom:655.665000px;}
.yce{bottom:660.705000px;}
.y79{bottom:662.505000px;}
.ya9{bottom:664.485000px;}
.ye6{bottom:666.645000px;}
.y4f{bottom:669.705000px;}
.y17{bottom:675.645000px;}
.ycd{bottom:680.505000px;}
.y78{bottom:682.485000px;}
.ya8{bottom:684.285000px;}
.ye5{bottom:686.445000px;}
.y4e{bottom:689.505000px;}
.y16{bottom:695.445000px;}
.ycc{bottom:700.485000px;}
.y77{bottom:702.285000px;}
.ya7{bottom:704.085000px;}
.ye4{bottom:706.425000px;}
.y4d{bottom:709.485000px;}
.y15{bottom:715.245000px;}
.ycb{bottom:720.285000px;}
.ye3{bottom:726.225000px;}
.y4c{bottom:729.285000px;}
.y76{bottom:731.085000px;}
.ya6{bottom:732.885000px;}
.y14{bottom:735.045000px;}
.yca{bottom:740.085000px;}
.ye2{bottom:746.025000px;}
.y4b{bottom:749.085000px;}
.y75{bottom:750.885000px;}
.ya5{bottom:752.685000px;}
.y13{bottom:754.845000px;}
.yc9{bottom:759.885000px;}
.ye1{bottom:765.825000px;}
.y4a{bottom:768.885000px;}
.y74{bottom:770.685000px;}
.ya4{bottom:772.665000px;}
.y12{bottom:774.825000px;}
.yc8{bottom:779.685000px;}
.ye0{bottom:785.625000px;}
.y49{bottom:788.685000px;}
.y73{bottom:790.665000px;}
.ya3{bottom:792.465000px;}
.y11{bottom:794.625000px;}
.yc7{bottom:799.665000px;}
.ydf{bottom:805.605000px;}
.y48{bottom:808.665000px;}
.y72{bottom:810.465000px;}
.ya2{bottom:812.265000px;}
.y10{bottom:814.425000px;}
.yc6{bottom:819.465000px;}
.yde{bottom:825.405000px;}
.y47{bottom:828.465000px;}
.yf{bottom:836.565000px;}
.y71{bottom:839.265000px;}
.ya1{bottom:841.065000px;}
.ydd{bottom:845.205000px;}
.y46{bottom:848.265000px;}
.ye{bottom:856.365000px;}
.y70{bottom:859.065000px;}
.ya0{bottom:860.865000px;}
.ydc{bottom:865.005000px;}
.y45{bottom:868.065000px;}
.y6f{bottom:878.865000px;}
.y9f{bottom:880.845000px;}
.yd{bottom:881.385000px;}
.ydb{bottom:884.805000px;}
.y44{bottom:887.865000px;}
.yc{bottom:895.965000px;}
.y6e{bottom:898.890000px;}
.y9e{bottom:900.690000px;}
.yda{bottom:904.830000px;}
.y43{bottom:907.890000px;}
.y6d{bottom:918.690000px;}
.y9d{bottom:920.490000px;}
.yb{bottom:921.210000px;}
.yd9{bottom:921.390000px;}
.y42{bottom:927.690000px;}
.ya{bottom:936.330000px;}
.y6c{bottom:938.490000px;}
.y41{bottom:947.490000px;}
.y9c{bottom:949.290000px;}
.y9{bottom:957.570000px;}
.yc5{bottom:958.290000px;}
.y40{bottom:967.290000px;}
.y9b{bottom:969.090000px;}
.yc4{bottom:978.090000px;}
.y8{bottom:980.970000px;}
.y3f{bottom:987.090000px;}
.y9a{bottom:989.070000px;}
.yc3{bottom:998.070000px;}
.y3e{bottom:1007.070000px;}
.y99{bottom:1008.870000px;}
.y7{bottom:1012.830000px;}
.yc2{bottom:1017.870000px;}
.y3d{bottom:1026.870000px;}
.y98{bottom:1037.670000px;}
.y3c{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.y97{bottom:1057.470000px;}
.y3b{bottom:1066.470000px;}
.y96{bottom:1077.270000px;}
.y4{bottom:1081.950000px;}
.y3a{bottom:1086.270000px;}
.y39{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y38{bottom:1126.050000px;}
.y2{bottom:1143.690000px;}
.y37{bottom:1145.850000px;}
.y36{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y35{bottom:1193.220000px;}
.h15{height:2.082656px;}
.hb{height:19.800000px;}
.hc{height:19.980000px;}
.h11{height:20.880000px;}
.h12{height:21.060000px;}
.h7{height:28.115859px;}
.h8{height:42.164648px;}
.h5{height:43.215117px;}
.ha{height:43.506914px;}
.h3{height:46.736719px;}
.h4{height:47.901094px;}
.h13{height:49.255313px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.he{height:71.613281px;}
.h14{height:84.456000px;}
.h10{height:257.070000px;}
.hf{height:257.430000px;}
.hd{height:259.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:68.436000px;}
.w6{width:104.040000px;}
.w3{width:104.580000px;}
.wc{width:192.450000px;}
.wb{width:192.495000px;}
.w4{width:192.990000px;}
.wd{width:210.810000px;}
.w7{width:210.990000px;}
.w8{width:230.655000px;}
.w9{width:241.590000px;}
.wa{width:251.175000px;}
.we{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.080000px;}
.x1d{left:7.785000px;}
.x1{left:54.179987px;}
.x16{left:55.260000px;}
.xd{left:57.240000px;}
.x18{left:69.480000px;}
.x14{left:75.090000px;}
.x13{left:76.680000px;}
.x2{left:80.999987px;}
.x5{left:98.496000px;}
.x3{left:108.035987px;}
.x4{left:135.035987px;}
.x1b{left:191.370000px;}
.x7{left:206.850000px;}
.x10{left:238.710000px;}
.x12{left:242.355000px;}
.xe{left:243.795000px;}
.x1c{left:264.810000px;}
.xb{left:308.774987px;}
.xf{left:323.355000px;}
.x15{left:357.015000px;}
.x8{left:403.635000px;}
.xc{left:446.504987px;}
.x9{left:475.845000px;}
.x19{left:578.084987px;}
.xa{left:583.665000px;}
.x1a{left:588.344987px;}
.x11{left:598.065000px;}
.x17{left:629.790000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.688000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.320000pt;}
.ls12{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.072640pt;}
.ls9{letter-spacing:40.912640pt;}
.lse{letter-spacing:49.211307pt;}
.wsd{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws9{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._13{margin-left:-6.371200pt;}
._15{margin-left:-5.404587pt;}
._b{margin-left:-3.664213pt;}
._11{margin-left:-2.118400pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._10{width:2.432427pt;}
._c{width:3.505920pt;}
._d{width:4.435627pt;}
._a{width:5.627947pt;}
._8{width:7.130880pt;}
._9{width:8.651947pt;}
._14{width:9.593600pt;}
._e{width:10.570880pt;}
._f{width:11.885013pt;}
._12{width:14.209920pt;}
._16{width:15.346560pt;}
._18{width:17.104640pt;}
._17{width:18.097280pt;}
._19{width:20.516267pt;}
._1a{width:22.552747pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.yba{bottom:-17.920000pt;}
.yb8{bottom:-15.520000pt;}
.ybc{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:3.360000pt;}
.yc1{bottom:3.520000pt;}
.y89{bottom:5.120000pt;}
.y8d{bottom:5.280000pt;}
.y108{bottom:9.600000pt;}
.y107{bottom:27.200000pt;}
.y104{bottom:31.066667pt;}
.y106{bottom:44.826667pt;}
.y6{bottom:53.440000pt;}
.y105{bottom:62.586667pt;}
.y34{bottom:79.040000pt;}
.yb6{bottom:79.200000pt;}
.yd8{bottom:82.400000pt;}
.y102{bottom:82.880000pt;}
.y6b{bottom:85.600000pt;}
.y95{bottom:87.040000pt;}
.y33{bottom:96.800000pt;}
.y101{bottom:100.480000pt;}
.y6a{bottom:103.200000pt;}
.y103{bottom:104.640000pt;}
.y94{bottom:104.800000pt;}
.y32{bottom:114.400000pt;}
.y100{bottom:118.080000pt;}
.y69{bottom:120.800000pt;}
.y93{bottom:122.400000pt;}
.y31{bottom:132.000000pt;}
.yff{bottom:135.706667pt;}
.y68{bottom:138.426667pt;}
.y92{bottom:140.026667pt;}
.y30{bottom:149.626667pt;}
.yb5{bottom:149.786667pt;}
.yfe{bottom:153.306667pt;}
.y67{bottom:156.026667pt;}
.y91{bottom:157.626667pt;}
.y2f{bottom:167.226667pt;}
.yb4{bottom:167.386667pt;}
.yfd{bottom:171.066667pt;}
.y90{bottom:175.226667pt;}
.y66{bottom:181.786667pt;}
.ybd{bottom:182.266667pt;}
.ybf{bottom:183.546667pt;}
.y2e{bottom:184.986667pt;}
.yc0{bottom:185.626667pt;}
.yfc{bottom:188.666667pt;}
.y8f{bottom:192.026667pt;}
.y65{bottom:199.386667pt;}
.y2d{bottom:202.586667pt;}
.yfb{bottom:206.266667pt;}
.y8e{bottom:215.066667pt;}
.y64{bottom:216.986667pt;}
.y2c{bottom:220.186667pt;}
.yb7{bottom:225.466667pt;}
.yb9{bottom:228.506667pt;}
.yfa{bottom:231.866667pt;}
.ybb{bottom:232.826667pt;}
.y63{bottom:234.586667pt;}
.y2b{bottom:237.786667pt;}
.y8c{bottom:237.946667pt;}
.yf9{bottom:249.466667pt;}
.y62{bottom:252.186667pt;}
.y2a{bottom:255.386667pt;}
.yb3{bottom:255.546667pt;}
.y8b{bottom:260.986667pt;}
.yf8{bottom:267.226667pt;}
.y61{bottom:269.946667pt;}
.y29{bottom:273.146667pt;}
.y8a{bottom:284.026667pt;}
.yf7{bottom:284.826667pt;}
.y60{bottom:287.546667pt;}
.y28{bottom:290.746667pt;}
.yf6{bottom:302.426667pt;}
.y5f{bottom:305.146667pt;}
.y88{bottom:306.906667pt;}
.y27{bottom:308.346667pt;}
.yf5{bottom:320.026667pt;}
.y5e{bottom:322.746667pt;}
.y26{bottom:325.946667pt;}
.yb2{bottom:326.106667pt;}
.y87{bottom:334.106667pt;}
.yf4{bottom:337.626667pt;}
.y5d{bottom:340.346667pt;}
.y25{bottom:343.546667pt;}
.yb1{bottom:343.706667pt;}
.y86{bottom:351.706667pt;}
.yf3{bottom:355.386667pt;}
.y5c{bottom:358.146667pt;}
.y24{bottom:361.346667pt;}
.y85{bottom:369.346667pt;}
.yf2{bottom:373.026667pt;}
.y5b{bottom:375.746667pt;}
.y23{bottom:378.946667pt;}
.y84{bottom:386.946667pt;}
.yf1{bottom:390.626667pt;}
.y5a{bottom:393.346667pt;}
.y22{bottom:396.546667pt;}
.y83{bottom:404.546667pt;}
.yf0{bottom:408.226667pt;}
.y59{bottom:410.946667pt;}
.y21{bottom:414.146667pt;}
.yb0{bottom:414.306667pt;}
.y82{bottom:422.306667pt;}
.yef{bottom:425.826667pt;}
.yd7{bottom:428.546667pt;}
.y20{bottom:431.746667pt;}
.yaf{bottom:431.906667pt;}
.y58{bottom:436.546667pt;}
.y81{bottom:439.906667pt;}
.yee{bottom:443.586667pt;}
.yd6{bottom:446.306667pt;}
.y1f{bottom:449.506667pt;}
.y57{bottom:454.306667pt;}
.y80{bottom:457.506667pt;}
.yed{bottom:461.186667pt;}
.yd5{bottom:463.906667pt;}
.y1e{bottom:467.106667pt;}
.y56{bottom:471.906667pt;}
.y7f{bottom:475.106667pt;}
.yec{bottom:478.786667pt;}
.yd4{bottom:481.506667pt;}
.y1d{bottom:484.706667pt;}
.y55{bottom:489.506667pt;}
.y7e{bottom:492.706667pt;}
.yeb{bottom:496.386667pt;}
.yd3{bottom:499.106667pt;}
.y1c{bottom:502.306667pt;}
.yae{bottom:502.466667pt;}
.y54{bottom:507.106667pt;}
.yea{bottom:513.986667pt;}
.yd2{bottom:516.706667pt;}
.y7d{bottom:518.466667pt;}
.yad{bottom:520.066667pt;}
.y1b{bottom:521.986667pt;}
.y53{bottom:524.706667pt;}
.ye9{bottom:531.746667pt;}
.yd1{bottom:534.466667pt;}
.y7c{bottom:536.066667pt;}
.yac{bottom:537.666667pt;}
.y52{bottom:542.466667pt;}
.y1a{bottom:547.586667pt;}
.ye8{bottom:549.346667pt;}
.yd0{bottom:552.066667pt;}
.y7b{bottom:553.666667pt;}
.yab{bottom:555.266667pt;}
.y51{bottom:560.066667pt;}
.y19{bottom:565.186667pt;}
.ycf{bottom:569.666667pt;}
.y7a{bottom:571.266667pt;}
.yaa{bottom:572.866667pt;}
.ye7{bottom:574.946667pt;}
.y50{bottom:577.693333pt;}
.y18{bottom:582.813333pt;}
.yce{bottom:587.293333pt;}
.y79{bottom:588.893333pt;}
.ya9{bottom:590.653333pt;}
.ye6{bottom:592.573333pt;}
.y4f{bottom:595.293333pt;}
.y17{bottom:600.573333pt;}
.ycd{bottom:604.893333pt;}
.y78{bottom:606.653333pt;}
.ya8{bottom:608.253333pt;}
.ye5{bottom:610.173333pt;}
.y4e{bottom:612.893333pt;}
.y16{bottom:618.173333pt;}
.ycc{bottom:622.653333pt;}
.y77{bottom:624.253333pt;}
.ya7{bottom:625.853333pt;}
.ye4{bottom:627.933333pt;}
.y4d{bottom:630.653333pt;}
.y15{bottom:635.773333pt;}
.ycb{bottom:640.253333pt;}
.ye3{bottom:645.533333pt;}
.y4c{bottom:648.253333pt;}
.y76{bottom:649.853333pt;}
.ya6{bottom:651.453333pt;}
.y14{bottom:653.373333pt;}
.yca{bottom:657.853333pt;}
.ye2{bottom:663.133333pt;}
.y4b{bottom:665.853333pt;}
.y75{bottom:667.453333pt;}
.ya5{bottom:669.053333pt;}
.y13{bottom:670.973333pt;}
.yc9{bottom:675.453333pt;}
.ye1{bottom:680.733333pt;}
.y4a{bottom:683.453333pt;}
.y74{bottom:685.053333pt;}
.ya4{bottom:686.813333pt;}
.y12{bottom:688.733333pt;}
.yc8{bottom:693.053333pt;}
.ye0{bottom:698.333333pt;}
.y49{bottom:701.053333pt;}
.y73{bottom:702.813333pt;}
.ya3{bottom:704.413333pt;}
.y11{bottom:706.333333pt;}
.yc7{bottom:710.813333pt;}
.ydf{bottom:716.093333pt;}
.y48{bottom:718.813333pt;}
.y72{bottom:720.413333pt;}
.ya2{bottom:722.013333pt;}
.y10{bottom:723.933333pt;}
.yc6{bottom:728.413333pt;}
.yde{bottom:733.693333pt;}
.y47{bottom:736.413333pt;}
.yf{bottom:743.613333pt;}
.y71{bottom:746.013333pt;}
.ya1{bottom:747.613333pt;}
.ydd{bottom:751.293333pt;}
.y46{bottom:754.013333pt;}
.ye{bottom:761.213333pt;}
.y70{bottom:763.613333pt;}
.ya0{bottom:765.213333pt;}
.ydc{bottom:768.893333pt;}
.y45{bottom:771.613333pt;}
.y6f{bottom:781.213333pt;}
.y9f{bottom:782.973333pt;}
.yd{bottom:783.453333pt;}
.ydb{bottom:786.493333pt;}
.y44{bottom:789.213333pt;}
.yc{bottom:796.413333pt;}
.y6e{bottom:799.013333pt;}
.y9e{bottom:800.613333pt;}
.yda{bottom:804.293333pt;}
.y43{bottom:807.013333pt;}
.y6d{bottom:816.613333pt;}
.y9d{bottom:818.213333pt;}
.yb{bottom:818.853333pt;}
.yd9{bottom:819.013333pt;}
.y42{bottom:824.613333pt;}
.ya{bottom:832.293333pt;}
.y6c{bottom:834.213333pt;}
.y41{bottom:842.213333pt;}
.y9c{bottom:843.813333pt;}
.y9{bottom:851.173333pt;}
.yc5{bottom:851.813333pt;}
.y40{bottom:859.813333pt;}
.y9b{bottom:861.413333pt;}
.yc4{bottom:869.413333pt;}
.y8{bottom:871.973333pt;}
.y3f{bottom:877.413333pt;}
.y9a{bottom:879.173333pt;}
.yc3{bottom:887.173333pt;}
.y3e{bottom:895.173333pt;}
.y99{bottom:896.773333pt;}
.y7{bottom:900.293333pt;}
.yc2{bottom:904.773333pt;}
.y3d{bottom:912.773333pt;}
.y98{bottom:922.373333pt;}
.y3c{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.y97{bottom:939.973333pt;}
.y3b{bottom:947.973333pt;}
.y96{bottom:957.573333pt;}
.y4{bottom:961.733333pt;}
.y3a{bottom:965.573333pt;}
.y39{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y38{bottom:1000.933333pt;}
.y2{bottom:1016.613333pt;}
.y37{bottom:1018.533333pt;}
.y36{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y35{bottom:1060.640000pt;}
.h15{height:1.851250pt;}
.hb{height:17.600000pt;}
.hc{height:17.760000pt;}
.h11{height:18.560000pt;}
.h12{height:18.720000pt;}
.h7{height:24.991875pt;}
.h8{height:37.479688pt;}
.h5{height:38.413438pt;}
.ha{height:38.672812pt;}
.h3{height:41.543750pt;}
.h4{height:42.578750pt;}
.h13{height:43.782500pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.he{height:63.656250pt;}
.h14{height:75.072000pt;}
.h10{height:228.506667pt;}
.hf{height:228.826667pt;}
.hd{height:230.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:60.832000pt;}
.w6{width:92.480000pt;}
.w3{width:92.960000pt;}
.wc{width:171.066667pt;}
.wb{width:171.106667pt;}
.w4{width:171.546667pt;}
.wd{width:187.386667pt;}
.w7{width:187.546667pt;}
.w8{width:205.026667pt;}
.w9{width:214.746667pt;}
.wa{width:223.266667pt;}
.we{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:0.960000pt;}
.x1d{left:6.920000pt;}
.x1{left:48.159988pt;}
.x16{left:49.120000pt;}
.xd{left:50.880000pt;}
.x18{left:61.760000pt;}
.x14{left:66.746667pt;}
.x13{left:68.160000pt;}
.x2{left:71.999988pt;}
.x5{left:87.552000pt;}
.x3{left:96.031988pt;}
.x4{left:120.031988pt;}
.x1b{left:170.106667pt;}
.x7{left:183.866667pt;}
.x10{left:212.186667pt;}
.x12{left:215.426667pt;}
.xe{left:216.706667pt;}
.x1c{left:235.386667pt;}
.xb{left:274.466655pt;}
.xf{left:287.426667pt;}
.x15{left:317.346667pt;}
.x8{left:358.786667pt;}
.xc{left:396.893322pt;}
.x9{left:422.973333pt;}
.x19{left:513.853322pt;}
.xa{left:518.813333pt;}
.x1a{left:522.973322pt;}
.x11{left:531.613333pt;}
.x17{left:559.813333pt;}
}




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