
    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_7ebe3895ae42a254d7c16c0a.woff2')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_230fb37a5c41c9fddad50776.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_ed0e3e64c9ff7acf2b6f879a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_6d7186f6ab788305b1250b28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920410;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_35a01edde68698552d42d18b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_82ce7193af141d1ee578256d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6abe773212d05cb019ef0348.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e6cf9d0cd84eeb05ae04008a.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:2.136000px;}
.ls7{letter-spacing:11.496000px;}
.ls5{letter-spacing:33.960000px;}
.ls9{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-5.940000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-88.394400px;}
._15{margin-left:-4.608000px;}
._8{margin-left:-3.384000px;}
._4{margin-left:-1.432080px;}
._0{width:1.274400px;}
._5{width:2.489280px;}
._b{width:4.320000px;}
._d{width:5.659200px;}
._f{width:6.659280px;}
._10{width:8.316720px;}
._c{width:9.720000px;}
._e{width:10.792080px;}
._6{width:11.808000px;}
._7{width:12.960000px;}
._11{width:14.256000px;}
._12{width:15.408000px;}
._16{width:16.765680px;}
._17{width:19.092000px;}
._1a{width:20.268000px;}
._28{width:21.456000px;}
._9{width:22.752000px;}
._a{width:23.760000px;}
._19{width:24.840000px;}
._18{width:26.560080px;}
._13{width:27.576000px;}
._14{width:28.728000px;}
._25{width:30.024000px;}
._29{width:31.968000px;}
._2a{width:33.408000px;}
._1f{width:37.728000px;}
._20{width:39.024000px;}
._1d{width:43.704000px;}
._1e{width:44.856000px;}
._23{width:51.192000px;}
._24{width:52.272000px;}
._26{width:63.864000px;}
._3{width:83.380080px;}
._1{width:109.380000px;}
._2b{width:144.504000px;}
._21{width:146.280000px;}
._22{width:164.280000px;}
._27{width:219.312000px;}
._1b{width:244.944000px;}
._1c{width:246.384000px;}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.y39{bottom:-17.280000px;}
.ya{bottom:-17.100030px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440030px;}
.y86{bottom:3.960000px;}
.y89{bottom:3.990000px;}
.y38{bottom:5.040000px;}
.y9{bottom:5.219970px;}
.y36{bottom:11.340000px;}
.y98{bottom:24.660000px;}
.yab{bottom:24.690000px;}
.ya5{bottom:24.705000px;}
.y37{bottom:30.420000px;}
.y8{bottom:30.599970px;}
.yb0{bottom:45.360000px;}
.y6{bottom:57.780000px;}
.y35{bottom:78.516000px;}
.ycc{bottom:119.376000px;}
.y33{bottom:120.996000px;}
.y87{bottom:123.696000px;}
.yd4{bottom:127.476000px;}
.y67{bottom:131.616000px;}
.ycb{bottom:140.076000px;}
.yaa{bottom:140.616000px;}
.y32{bottom:141.696000px;}
.y85{bottom:144.396000px;}
.yd3{bottom:151.410000px;}
.y66{bottom:152.310000px;}
.yf7{bottom:158.610000px;}
.yca{bottom:160.770000px;}
.y31{bottom:162.390000px;}
.y84{bottom:169.050000px;}
.ya9{bottom:171.210000px;}
.y65{bottom:173.010000px;}
.yd2{bottom:175.170000px;}
.yc9{bottom:181.470000px;}
.yf6{bottom:182.370000px;}
.y30{bottom:183.090000px;}
.y83{bottom:189.750000px;}
.y64{bottom:193.710000px;}
.yd1{bottom:198.930000px;}
.yc8{bottom:202.170000px;}
.y2f{bottom:203.790000px;}
.yf5{bottom:206.130000px;}
.y82{bottom:210.450000px;}
.y63{bottom:214.410000px;}
.ya8{bottom:214.950000px;}
.yd0{bottom:222.690000px;}
.yc7{bottom:222.870000px;}
.y2e{bottom:224.490000px;}
.yf4{bottom:230.070000px;}
.y81{bottom:231.150000px;}
.y62{bottom:235.110000px;}
.yc6{bottom:243.570000px;}
.ycf{bottom:246.630000px;}
.yf3{bottom:253.830000px;}
.y61{bottom:255.810000px;}
.ya7{bottom:256.350000px;}
.y2d{bottom:261.030000px;}
.yc5{bottom:264.270000px;}
.y80{bottom:264.990000px;}
.yce{bottom:270.390000px;}
.y7f{bottom:274.530000px;}
.y60{bottom:276.510000px;}
.ya6{bottom:277.050000px;}
.yf2{bottom:277.590000px;}
.y2c{bottom:281.730000px;}
.yc4{bottom:284.970000px;}
.ycd{bottom:294.150000px;}
.y7e{bottom:295.230000px;}
.y5f{bottom:297.210000px;}
.ya4{bottom:297.750000px;}
.yf1{bottom:301.350000px;}
.y2b{bottom:302.430000px;}
.yc3{bottom:305.670000px;}
.y7d{bottom:315.975000px;}
.y5e{bottom:317.955000px;}
.y2a{bottom:323.175000px;}
.yf0{bottom:325.335000px;}
.yc2{bottom:326.415000px;}
.y7c{bottom:336.675000px;}
.y5d{bottom:338.655000px;}
.ya3{bottom:339.195000px;}
.y29{bottom:343.875000px;}
.yc1{bottom:347.115000px;}
.yef{bottom:349.095000px;}
.y7b{bottom:357.375000px;}
.y5c{bottom:359.355000px;}
.y28{bottom:364.575000px;}
.yc0{bottom:367.815000px;}
.ya2{bottom:369.975000px;}
.yee{bottom:372.855000px;}
.y7a{bottom:378.075000px;}
.y5b{bottom:380.055000px;}
.y27{bottom:385.275000px;}
.ybf{bottom:388.515000px;}
.yed{bottom:396.615000px;}
.y79{bottom:398.775000px;}
.y5a{bottom:400.755000px;}
.y26{bottom:405.975000px;}
.ybe{bottom:409.215000px;}
.ya1{bottom:413.715000px;}
.y78{bottom:419.475000px;}
.yec{bottom:420.555000px;}
.y59{bottom:421.455000px;}
.y25{bottom:426.675000px;}
.ybd{bottom:429.915000px;}
.ya0{bottom:434.415000px;}
.y77{bottom:440.175000px;}
.y58{bottom:442.155000px;}
.yeb{bottom:444.315000px;}
.y24{bottom:447.375000px;}
.ybc{bottom:450.615000px;}
.y9f{bottom:455.115000px;}
.y76{bottom:460.875000px;}
.y57{bottom:462.855000px;}
.y23{bottom:468.075000px;}
.ybb{bottom:471.315000px;}
.y75{bottom:481.575000px;}
.y56{bottom:483.555000px;}
.y22{bottom:488.775000px;}
.yea{bottom:491.835000px;}
.yba{bottom:492.015000px;}
.y9e{bottom:496.515000px;}
.y74{bottom:502.275000px;}
.y55{bottom:504.255000px;}
.y21{bottom:509.475000px;}
.yb9{bottom:512.715000px;}
.ye9{bottom:515.775000px;}
.y9d{bottom:517.215000px;}
.y73{bottom:522.975000px;}
.y54{bottom:524.955000px;}
.y20{bottom:530.175000px;}
.yb8{bottom:533.415000px;}
.ye8{bottom:539.535000px;}
.y72{bottom:543.675000px;}
.y53{bottom:545.655000px;}
.y1f{bottom:550.875000px;}
.yb7{bottom:554.115000px;}
.ye7{bottom:563.325000px;}
.y71{bottom:564.405000px;}
.y52{bottom:566.385000px;}
.y9c{bottom:568.545000px;}
.y1e{bottom:571.605000px;}
.yb6{bottom:574.845000px;}
.y70{bottom:585.105000px;}
.y51{bottom:587.085000px;}
.y1d{bottom:592.305000px;}
.yb5{bottom:595.545000px;}
.y6f{bottom:605.805000px;}
.y50{bottom:607.785000px;}
.ye6{bottom:610.845000px;}
.y9b{bottom:612.285000px;}
.y1c{bottom:613.005000px;}
.yb4{bottom:616.245000px;}
.y6e{bottom:626.505000px;}
.y4f{bottom:628.485000px;}
.y9a{bottom:632.985000px;}
.y1b{bottom:633.705000px;}
.ye5{bottom:634.785000px;}
.yb3{bottom:636.945000px;}
.y6d{bottom:647.205000px;}
.y4e{bottom:649.185000px;}
.y1a{bottom:654.405000px;}
.yb2{bottom:657.645000px;}
.ye4{bottom:658.545000px;}
.y6c{bottom:667.905000px;}
.y4d{bottom:669.885000px;}
.y99{bottom:674.385000px;}
.y19{bottom:675.105000px;}
.yb1{bottom:678.345000px;}
.ye3{bottom:682.305000px;}
.y6b{bottom:688.605000px;}
.y4c{bottom:690.585000px;}
.yaf{bottom:695.085000px;}
.y18{bottom:701.745000px;}
.ye2{bottom:706.065000px;}
.y6a{bottom:709.305000px;}
.y4b{bottom:711.285000px;}
.y97{bottom:715.785000px;}
.y17{bottom:716.505000px;}
.y69{bottom:730.005000px;}
.y4a{bottom:731.985000px;}
.y16{bottom:737.205000px;}
.y68{bottom:748.005000px;}
.y49{bottom:752.685000px;}
.ye1{bottom:753.765000px;}
.y96{bottom:757.185000px;}
.y15{bottom:763.845000px;}
.y48{bottom:773.385000px;}
.y14{bottom:776.805000px;}
.ye0{bottom:777.525000px;}
.y95{bottom:787.785000px;}
.y13{bottom:789.045000px;}
.y47{bottom:794.085000px;}
.yae{bottom:798.585000px;}
.ydf{bottom:801.285000px;}
.y46{bottom:814.830000px;}
.y12{bottom:815.730000px;}
.yde{bottom:825.270000px;}
.y94{bottom:831.570000px;}
.y45{bottom:835.530000px;}
.y11{bottom:836.430000px;}
.yad{bottom:840.030000px;}
.ydd{bottom:849.030000px;}
.y10{bottom:849.210000px;}
.y93{bottom:852.270000px;}
.y44{bottom:856.230000px;}
.yf{bottom:861.450000px;}
.yac{bottom:870.630000px;}
.ydc{bottom:872.790000px;}
.y92{bottom:872.970000px;}
.y43{bottom:876.930000px;}
.ye{bottom:888.090000px;}
.y91{bottom:893.670000px;}
.ydb{bottom:896.550000px;}
.y42{bottom:897.630000px;}
.yd{bottom:902.850000px;}
.y90{bottom:914.370000px;}
.y41{bottom:918.330000px;}
.yda{bottom:920.490000px;}
.yc{bottom:924.090000px;}
.y8f{bottom:935.070000px;}
.y40{bottom:939.030000px;}
.yd9{bottom:944.250000px;}
.yb{bottom:948.210000px;}
.y8e{bottom:955.770000px;}
.y3f{bottom:959.730000px;}
.yd8{bottom:968.010000px;}
.y5{bottom:971.790000px;}
.y8d{bottom:976.470000px;}
.y3e{bottom:980.430000px;}
.yd7{bottom:991.770000px;}
.y8c{bottom:997.170000px;}
.y3d{bottom:1001.130000px;}
.y4{bottom:1013.550000px;}
.yd6{bottom:1015.710000px;}
.y8b{bottom:1017.870000px;}
.y3c{bottom:1021.830000px;}
.y8a{bottom:1038.570000px;}
.yd5{bottom:1039.470000px;}
.y3b{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y88{bottom:1059.270000px;}
.y3a{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.y34{bottom:1117.260000px;}
.he{height:17.054297px;}
.hf{height:20.700000px;}
.h10{height:20.736000px;}
.ha{height:25.839844px;}
.h9{height:34.036523px;}
.h11{height:41.400000px;}
.h12{height:41.436000px;}
.hc{height:48.420000px;}
.h5{height:48.600000px;}
.h2{height:50.800781px;}
.h4{height:51.679688px;}
.hd{height:52.417969px;}
.h7{height:54.316406px;}
.h6{height:58.320000px;}
.hb{height:59.343750px;}
.h8{height:59.436914px;}
.h1{height:61.468945px;}
.h13{height:62.100000px;}
.h3{height:67.565039px;}
.h0{height:1188.000000px;}
.wb{width:60.660000px;}
.wc{width:81.000000px;}
.w16{width:87.660000px;}
.w7{width:87.696000px;}
.w6{width:101.340000px;}
.wa{width:101.376000px;}
.w15{width:128.376000px;}
.wd{width:148.536000px;}
.w3{width:162.000000px;}
.w4{width:162.030000px;}
.wf{width:168.690000px;}
.w11{width:182.190000px;}
.w17{width:195.870000px;}
.w10{width:222.870000px;}
.w13{width:236.370000px;}
.w5{width:243.075000px;}
.w9{width:284.790000px;}
.w12{width:310.575000px;}
.w8{width:330.870000px;}
.we{width:337.575000px;}
.w14{width:344.235000px;}
.w2{width:916.920000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.020000px;}
.x7{left:9.719985px;}
.x8{left:37.799985px;}
.x18{left:82.260000px;}
.x20{left:89.100000px;}
.x5{left:106.955986px;}
.xf{left:108.035986px;}
.xd{left:114.155986px;}
.xa{left:117.935986px;}
.x12{left:135.035986px;}
.x13{left:162.029986px;}
.x1{left:176.249986px;}
.x27{left:189.029986px;}
.x3{left:206.309986px;}
.x28{left:216.029986px;}
.x4{left:236.549986px;}
.x15{left:270.030000px;}
.x22{left:271.290000px;}
.x2{left:284.249986px;}
.x10{left:322.094986px;}
.x19{left:325.335000px;}
.x1c{left:392.835000px;}
.xb{left:420.554986px;}
.x9{left:422.534985px;}
.x1a{left:426.675000px;}
.xe{left:430.454986px;}
.x16{left:432.075000px;}
.x24{left:433.335000px;}
.x11{left:486.104986px;}
.xc{left:488.444986px;}
.x1d{left:494.205000px;}
.x1b{left:514.365000px;}
.x1e{left:554.865000px;}
.x25{left:561.705000px;}
.x23{left:581.865000px;}
.x17{left:594.105000px;}
.x21{left:595.365000px;}
.x1f{left:635.865000px;}
.x26{left:649.365000px;}
.x6{left:851.909986px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.898667pt;}
.ls7{letter-spacing:10.218667pt;}
.ls5{letter-spacing:30.186667pt;}
.ls9{letter-spacing:30.208000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-5.280000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-78.572800pt;}
._15{margin-left:-4.096000pt;}
._8{margin-left:-3.008000pt;}
._4{margin-left:-1.272960pt;}
._0{width:1.132800pt;}
._5{width:2.212693pt;}
._b{width:3.840000pt;}
._d{width:5.030400pt;}
._f{width:5.919360pt;}
._10{width:7.392640pt;}
._c{width:8.640000pt;}
._e{width:9.592960pt;}
._6{width:10.496000pt;}
._7{width:11.520000pt;}
._11{width:12.672000pt;}
._12{width:13.696000pt;}
._16{width:14.902827pt;}
._17{width:16.970667pt;}
._1a{width:18.016000pt;}
._28{width:19.072000pt;}
._9{width:20.224000pt;}
._a{width:21.120000pt;}
._19{width:22.080000pt;}
._18{width:23.608960pt;}
._13{width:24.512000pt;}
._14{width:25.536000pt;}
._25{width:26.688000pt;}
._29{width:28.416000pt;}
._2a{width:29.696000pt;}
._1f{width:33.536000pt;}
._20{width:34.688000pt;}
._1d{width:38.848000pt;}
._1e{width:39.872000pt;}
._23{width:45.504000pt;}
._24{width:46.464000pt;}
._26{width:56.768000pt;}
._3{width:74.115627pt;}
._1{width:97.226667pt;}
._2b{width:128.448000pt;}
._21{width:130.026667pt;}
._22{width:146.026667pt;}
._27{width:194.944000pt;}
._1b{width:217.728000pt;}
._1c{width:219.008000pt;}
.fs7{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.y39{bottom:-15.360000pt;}
.ya{bottom:-15.200027pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280027pt;}
.y86{bottom:3.520000pt;}
.y89{bottom:3.546667pt;}
.y38{bottom:4.480000pt;}
.y9{bottom:4.639973pt;}
.y36{bottom:10.080000pt;}
.y98{bottom:21.920000pt;}
.yab{bottom:21.946667pt;}
.ya5{bottom:21.960000pt;}
.y37{bottom:27.040000pt;}
.y8{bottom:27.199973pt;}
.yb0{bottom:40.320000pt;}
.y6{bottom:51.360000pt;}
.y35{bottom:69.792000pt;}
.ycc{bottom:106.112000pt;}
.y33{bottom:107.552000pt;}
.y87{bottom:109.952000pt;}
.yd4{bottom:113.312000pt;}
.y67{bottom:116.992000pt;}
.ycb{bottom:124.512000pt;}
.yaa{bottom:124.992000pt;}
.y32{bottom:125.952000pt;}
.y85{bottom:128.352000pt;}
.yd3{bottom:134.586667pt;}
.y66{bottom:135.386667pt;}
.yf7{bottom:140.986667pt;}
.yca{bottom:142.906667pt;}
.y31{bottom:144.346667pt;}
.y84{bottom:150.266667pt;}
.ya9{bottom:152.186667pt;}
.y65{bottom:153.786667pt;}
.yd2{bottom:155.706667pt;}
.yc9{bottom:161.306667pt;}
.yf6{bottom:162.106667pt;}
.y30{bottom:162.746667pt;}
.y83{bottom:168.666667pt;}
.y64{bottom:172.186667pt;}
.yd1{bottom:176.826667pt;}
.yc8{bottom:179.706667pt;}
.y2f{bottom:181.146667pt;}
.yf5{bottom:183.226667pt;}
.y82{bottom:187.066667pt;}
.y63{bottom:190.586667pt;}
.ya8{bottom:191.066667pt;}
.yd0{bottom:197.946667pt;}
.yc7{bottom:198.106667pt;}
.y2e{bottom:199.546667pt;}
.yf4{bottom:204.506667pt;}
.y81{bottom:205.466667pt;}
.y62{bottom:208.986667pt;}
.yc6{bottom:216.506667pt;}
.ycf{bottom:219.226667pt;}
.yf3{bottom:225.626667pt;}
.y61{bottom:227.386667pt;}
.ya7{bottom:227.866667pt;}
.y2d{bottom:232.026667pt;}
.yc5{bottom:234.906667pt;}
.y80{bottom:235.546667pt;}
.yce{bottom:240.346667pt;}
.y7f{bottom:244.026667pt;}
.y60{bottom:245.786667pt;}
.ya6{bottom:246.266667pt;}
.yf2{bottom:246.746667pt;}
.y2c{bottom:250.426667pt;}
.yc4{bottom:253.306667pt;}
.ycd{bottom:261.466667pt;}
.y7e{bottom:262.426667pt;}
.y5f{bottom:264.186667pt;}
.ya4{bottom:264.666667pt;}
.yf1{bottom:267.866667pt;}
.y2b{bottom:268.826667pt;}
.yc3{bottom:271.706667pt;}
.y7d{bottom:280.866667pt;}
.y5e{bottom:282.626667pt;}
.y2a{bottom:287.266667pt;}
.yf0{bottom:289.186667pt;}
.yc2{bottom:290.146667pt;}
.y7c{bottom:299.266667pt;}
.y5d{bottom:301.026667pt;}
.ya3{bottom:301.506667pt;}
.y29{bottom:305.666667pt;}
.yc1{bottom:308.546667pt;}
.yef{bottom:310.306667pt;}
.y7b{bottom:317.666667pt;}
.y5c{bottom:319.426667pt;}
.y28{bottom:324.066667pt;}
.yc0{bottom:326.946667pt;}
.ya2{bottom:328.866667pt;}
.yee{bottom:331.426667pt;}
.y7a{bottom:336.066667pt;}
.y5b{bottom:337.826667pt;}
.y27{bottom:342.466667pt;}
.ybf{bottom:345.346667pt;}
.yed{bottom:352.546667pt;}
.y79{bottom:354.466667pt;}
.y5a{bottom:356.226667pt;}
.y26{bottom:360.866667pt;}
.ybe{bottom:363.746667pt;}
.ya1{bottom:367.746667pt;}
.y78{bottom:372.866667pt;}
.yec{bottom:373.826667pt;}
.y59{bottom:374.626667pt;}
.y25{bottom:379.266667pt;}
.ybd{bottom:382.146667pt;}
.ya0{bottom:386.146667pt;}
.y77{bottom:391.266667pt;}
.y58{bottom:393.026667pt;}
.yeb{bottom:394.946667pt;}
.y24{bottom:397.666667pt;}
.ybc{bottom:400.546667pt;}
.y9f{bottom:404.546667pt;}
.y76{bottom:409.666667pt;}
.y57{bottom:411.426667pt;}
.y23{bottom:416.066667pt;}
.ybb{bottom:418.946667pt;}
.y75{bottom:428.066667pt;}
.y56{bottom:429.826667pt;}
.y22{bottom:434.466667pt;}
.yea{bottom:437.186667pt;}
.yba{bottom:437.346667pt;}
.y9e{bottom:441.346667pt;}
.y74{bottom:446.466667pt;}
.y55{bottom:448.226667pt;}
.y21{bottom:452.866667pt;}
.yb9{bottom:455.746667pt;}
.ye9{bottom:458.466667pt;}
.y9d{bottom:459.746667pt;}
.y73{bottom:464.866667pt;}
.y54{bottom:466.626667pt;}
.y20{bottom:471.266667pt;}
.yb8{bottom:474.146667pt;}
.ye8{bottom:479.586667pt;}
.y72{bottom:483.266667pt;}
.y53{bottom:485.026667pt;}
.y1f{bottom:489.666667pt;}
.yb7{bottom:492.546667pt;}
.ye7{bottom:500.733333pt;}
.y71{bottom:501.693333pt;}
.y52{bottom:503.453333pt;}
.y9c{bottom:505.373333pt;}
.y1e{bottom:508.093333pt;}
.yb6{bottom:510.973333pt;}
.y70{bottom:520.093333pt;}
.y51{bottom:521.853333pt;}
.y1d{bottom:526.493333pt;}
.yb5{bottom:529.373333pt;}
.y6f{bottom:538.493333pt;}
.y50{bottom:540.253333pt;}
.ye6{bottom:542.973333pt;}
.y9b{bottom:544.253333pt;}
.y1c{bottom:544.893333pt;}
.yb4{bottom:547.773333pt;}
.y6e{bottom:556.893333pt;}
.y4f{bottom:558.653333pt;}
.y9a{bottom:562.653333pt;}
.y1b{bottom:563.293333pt;}
.ye5{bottom:564.253333pt;}
.yb3{bottom:566.173333pt;}
.y6d{bottom:575.293333pt;}
.y4e{bottom:577.053333pt;}
.y1a{bottom:581.693333pt;}
.yb2{bottom:584.573333pt;}
.ye4{bottom:585.373333pt;}
.y6c{bottom:593.693333pt;}
.y4d{bottom:595.453333pt;}
.y99{bottom:599.453333pt;}
.y19{bottom:600.093333pt;}
.yb1{bottom:602.973333pt;}
.ye3{bottom:606.493333pt;}
.y6b{bottom:612.093333pt;}
.y4c{bottom:613.853333pt;}
.yaf{bottom:617.853333pt;}
.y18{bottom:623.773333pt;}
.ye2{bottom:627.613333pt;}
.y6a{bottom:630.493333pt;}
.y4b{bottom:632.253333pt;}
.y97{bottom:636.253333pt;}
.y17{bottom:636.893333pt;}
.y69{bottom:648.893333pt;}
.y4a{bottom:650.653333pt;}
.y16{bottom:655.293333pt;}
.y68{bottom:664.893333pt;}
.y49{bottom:669.053333pt;}
.ye1{bottom:670.013333pt;}
.y96{bottom:673.053333pt;}
.y15{bottom:678.973333pt;}
.y48{bottom:687.453333pt;}
.y14{bottom:690.493333pt;}
.ye0{bottom:691.133333pt;}
.y95{bottom:700.253333pt;}
.y13{bottom:701.373333pt;}
.y47{bottom:705.853333pt;}
.yae{bottom:709.853333pt;}
.ydf{bottom:712.253333pt;}
.y46{bottom:724.293333pt;}
.y12{bottom:725.093333pt;}
.yde{bottom:733.573333pt;}
.y94{bottom:739.173333pt;}
.y45{bottom:742.693333pt;}
.y11{bottom:743.493333pt;}
.yad{bottom:746.693333pt;}
.ydd{bottom:754.693333pt;}
.y10{bottom:754.853333pt;}
.y93{bottom:757.573333pt;}
.y44{bottom:761.093333pt;}
.yf{bottom:765.733333pt;}
.yac{bottom:773.893333pt;}
.ydc{bottom:775.813333pt;}
.y92{bottom:775.973333pt;}
.y43{bottom:779.493333pt;}
.ye{bottom:789.413333pt;}
.y91{bottom:794.373333pt;}
.ydb{bottom:796.933333pt;}
.y42{bottom:797.893333pt;}
.yd{bottom:802.533333pt;}
.y90{bottom:812.773333pt;}
.y41{bottom:816.293333pt;}
.yda{bottom:818.213333pt;}
.yc{bottom:821.413333pt;}
.y8f{bottom:831.173333pt;}
.y40{bottom:834.693333pt;}
.yd9{bottom:839.333333pt;}
.yb{bottom:842.853333pt;}
.y8e{bottom:849.573333pt;}
.y3f{bottom:853.093333pt;}
.yd8{bottom:860.453333pt;}
.y5{bottom:863.813333pt;}
.y8d{bottom:867.973333pt;}
.y3e{bottom:871.493333pt;}
.yd7{bottom:881.573333pt;}
.y8c{bottom:886.373333pt;}
.y3d{bottom:889.893333pt;}
.y4{bottom:900.933333pt;}
.yd6{bottom:902.853333pt;}
.y8b{bottom:904.773333pt;}
.y3c{bottom:908.293333pt;}
.y8a{bottom:923.173333pt;}
.yd5{bottom:923.973333pt;}
.y3b{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y88{bottom:941.573333pt;}
.y3a{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.y34{bottom:993.120000pt;}
.he{height:15.159375pt;}
.hf{height:18.400000pt;}
.h10{height:18.432000pt;}
.ha{height:22.968750pt;}
.h9{height:30.254687pt;}
.h11{height:36.800000pt;}
.h12{height:36.832000pt;}
.hc{height:43.040000pt;}
.h5{height:43.200000pt;}
.h2{height:45.156250pt;}
.h4{height:45.937500pt;}
.hd{height:46.593750pt;}
.h7{height:48.281250pt;}
.h6{height:51.840000pt;}
.hb{height:52.750000pt;}
.h8{height:52.832812pt;}
.h1{height:54.639063pt;}
.h13{height:55.200000pt;}
.h3{height:60.057813pt;}
.h0{height:1056.000000pt;}
.wb{width:53.920000pt;}
.wc{width:72.000000pt;}
.w16{width:77.920000pt;}
.w7{width:77.952000pt;}
.w6{width:90.080000pt;}
.wa{width:90.112000pt;}
.w15{width:114.112000pt;}
.wd{width:132.032000pt;}
.w3{width:144.000000pt;}
.w4{width:144.026667pt;}
.wf{width:149.946667pt;}
.w11{width:161.946667pt;}
.w17{width:174.106667pt;}
.w10{width:198.106667pt;}
.w13{width:210.106667pt;}
.w5{width:216.066667pt;}
.w9{width:253.146667pt;}
.w12{width:276.066667pt;}
.w8{width:294.106667pt;}
.we{width:300.066667pt;}
.w14{width:305.986667pt;}
.w2{width:815.040000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.240000pt;}
.x7{left:8.639987pt;}
.x8{left:33.599987pt;}
.x18{left:73.120000pt;}
.x20{left:79.200000pt;}
.x5{left:95.071988pt;}
.xf{left:96.031988pt;}
.xd{left:101.471988pt;}
.xa{left:104.831988pt;}
.x12{left:120.031988pt;}
.x13{left:144.026655pt;}
.x1{left:156.666655pt;}
.x27{left:168.026655pt;}
.x3{left:183.386655pt;}
.x28{left:192.026655pt;}
.x4{left:210.266655pt;}
.x15{left:240.026667pt;}
.x22{left:241.146667pt;}
.x2{left:252.666655pt;}
.x10{left:286.306655pt;}
.x19{left:289.186667pt;}
.x1c{left:349.186667pt;}
.xb{left:373.826655pt;}
.x9{left:375.586653pt;}
.x1a{left:379.266667pt;}
.xe{left:382.626655pt;}
.x16{left:384.066667pt;}
.x24{left:385.186667pt;}
.x11{left:432.093321pt;}
.xc{left:434.173321pt;}
.x1d{left:439.293333pt;}
.x1b{left:457.213333pt;}
.x1e{left:493.213333pt;}
.x25{left:499.293333pt;}
.x23{left:517.213333pt;}
.x17{left:528.093333pt;}
.x21{left:529.213333pt;}
.x1f{left:565.213333pt;}
.x26{left:577.213333pt;}
.x6{left:757.253321pt;}
}




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