
    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_f05f28f851a14a3c4c10ed6d.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_6ac786e8767702cc74b65abb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_29ad2127c8b0aa83c96e218c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_899da34b0b71633a15e6d241.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91f955b7c016b9baae3b0441.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995605;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.lse{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.480000px;}
.ls10{letter-spacing:16.506720px;}
.lsb{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;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.166000px;}
.ws5{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._27{margin-left:-6.454080px;}
._1d{margin-left:-4.849920px;}
._16{margin-left:-3.591360px;}
._b{margin-left:-2.388000px;}
._0{margin-left:-1.080000px;}
._12{width:1.063200px;}
._1{width:2.220000px;}
._19{width:3.466080px;}
._1f{width:4.659360px;}
._15{width:5.868960px;}
._14{width:7.470000px;}
._13{width:8.844480px;}
._6{width:10.800000px;}
._1e{width:12.230640px;}
._20{width:13.292400px;}
._1b{width:16.237680px;}
._1a{width:17.270640px;}
._10{width:18.948000px;}
._1c{width:20.561760px;}
._17{width:24.812880px;}
._18{width:25.983120px;}
._26{width:27.119280px;}
._25{width:29.175360px;}
._24{width:37.110240px;}
._23{width:38.366640px;}
._2c{width:42.728400px;}
._2d{width:44.102880px;}
._21{width:46.851840px;}
._22{width:47.927520px;}
._2b{width:65.091120px;}
._28{width:75.118320px;}
._7{width:76.284960px;}
._2a{width:87.130080px;}
._29{width:88.803360px;}
._11{width:99.660000px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._f{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.855000px;}
.y68{bottom:4.035000px;}
.ye{bottom:5.760000px;}
.y7a{bottom:5.940000px;}
.y57{bottom:10.770000px;}
.y6{bottom:12.420000px;}
.y65{bottom:17.715000px;}
.y67{bottom:17.895000px;}
.y8{bottom:18.180000px;}
.y6a{bottom:22.425000px;}
.y60{bottom:22.680000px;}
.y7e{bottom:25.560000px;}
.ya1{bottom:25.590000px;}
.y7d{bottom:25.605000px;}
.y81{bottom:25.740000px;}
.y8b{bottom:25.785000px;}
.y75{bottom:25.890000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y83{bottom:45.360000px;}
.ya0{bottom:45.390000px;}
.y7c{bottom:45.405000px;}
.y80{bottom:45.540000px;}
.y8a{bottom:45.585000px;}
.y77{bottom:54.750000px;}
.y6c{bottom:54.795000px;}
.yb{bottom:60.300000px;}
.y70{bottom:62.715000px;}
.y97{bottom:65.160000px;}
.ya4{bottom:65.340000px;}
.y4{bottom:68.400000px;}
.y59{bottom:72.075000px;}
.y5e{bottom:73.875000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y55{bottom:105.480000px;}
.y94{bottom:106.560000px;}
.ycb{bottom:112.320000px;}
.y54{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.y3a{bottom:126.360000px;}
.y93{bottom:126.540000px;}
.yca{bottom:132.120000px;}
.y9f{bottom:140.220000px;}
.y53{bottom:145.260000px;}
.y39{bottom:146.160000px;}
.y92{bottom:146.340000px;}
.yc9{bottom:151.950000px;}
.y52{bottom:165.090000px;}
.y38{bottom:165.990000px;}
.y91{bottom:166.170000px;}
.yc8{bottom:171.930000px;}
.ye3{bottom:174.090000px;}
.y51{bottom:184.890000px;}
.y37{bottom:185.790000px;}
.y90{bottom:185.970000px;}
.yc7{bottom:191.730000px;}
.ye2{bottom:193.890000px;}
.y9e{bottom:200.550000px;}
.y50{bottom:204.690000px;}
.y36{bottom:205.770000px;}
.yc6{bottom:211.530000px;}
.ye1{bottom:213.690000px;}
.y4f{bottom:221.430000px;}
.y74{bottom:223.560000px;}
.y35{bottom:225.570000px;}
.y8f{bottom:225.750000px;}
.yc5{bottom:231.330000px;}
.ye0{bottom:233.670000px;}
.y76{bottom:238.860000px;}
.y8e{bottom:243.030000px;}
.y34{bottom:245.370000px;}
.yc4{bottom:251.130000px;}
.ydf{bottom:253.470000px;}
.y8d{bottom:257.790000px;}
.y9d{bottom:260.670000px;}
.y33{bottom:265.170000px;}
.yc3{bottom:271.110000px;}
.yde{bottom:273.270000px;}
.y78{bottom:279.750000px;}
.y32{bottom:284.970000px;}
.yc2{bottom:290.910000px;}
.ydd{bottom:293.070000px;}
.y9c{bottom:301.170000px;}
.y31{bottom:304.950000px;}
.yc1{bottom:310.710000px;}
.ydc{bottom:312.870000px;}
.y8c{bottom:317.910000px;}
.y30{bottom:324.750000px;}
.y69{bottom:327.420000px;}
.yc0{bottom:330.510000px;}
.ydb{bottom:332.850000px;}
.y9b{bottom:341.490000px;}
.y6f{bottom:342.180000px;}
.y2f{bottom:344.550000px;}
.y6b{bottom:349.200000px;}
.ybf{bottom:350.310000px;}
.yda{bottom:352.650000px;}
.y73{bottom:363.270000px;}
.y2e{bottom:364.350000px;}
.ybe{bottom:370.290000px;}
.yd9{bottom:372.450000px;}
.y6e{bottom:376.230000px;}
.y72{bottom:377.130000px;}
.y89{bottom:378.210000px;}
.y9a{bottom:381.990000px;}
.y2d{bottom:384.150000px;}
.y6d{bottom:390.090000px;}
.y71{bottom:390.990000px;}
.yd8{bottom:392.250000px;}
.y2c{bottom:403.995000px;}
.ybd{bottom:409.935000px;}
.yd7{bottom:412.095000px;}
.y99{bottom:422.535000px;}
.y2b{bottom:423.975000px;}
.ybc{bottom:429.735000px;}
.yd6{bottom:432.075000px;}
.y5f{bottom:435.240000px;}
.y88{bottom:438.555000px;}
.y66{bottom:440.100000px;}
.y2a{bottom:443.775000px;}
.y63{bottom:448.560000px;}
.ybb{bottom:449.535000px;}
.yd5{bottom:451.875000px;}
.y29{bottom:463.575000px;}
.yba{bottom:469.335000px;}
.yd4{bottom:471.675000px;}
.y98{bottom:482.655000px;}
.y28{bottom:483.375000px;}
.yb9{bottom:489.315000px;}
.yd3{bottom:491.475000px;}
.y64{bottom:495.000000px;}
.y87{bottom:498.855000px;}
.y61{bottom:500.760000px;}
.y27{bottom:503.175000px;}
.yb8{bottom:509.115000px;}
.yd2{bottom:511.275000px;}
.y26{bottom:523.155000px;}
.yb7{bottom:528.915000px;}
.yd1{bottom:531.255000px;}
.y25{bottom:542.955000px;}
.yb6{bottom:548.715000px;}
.y56{bottom:549.720000px;}
.yd0{bottom:551.055000px;}
.y5d{bottom:553.320000px;}
.y58{bottom:555.120000px;}
.y86{bottom:558.975000px;}
.y24{bottom:562.755000px;}
.yb5{bottom:568.515000px;}
.ycf{bottom:570.855000px;}
.y23{bottom:582.555000px;}
.y96{bottom:583.455000px;}
.y5c{bottom:585.975000px;}
.yb4{bottom:588.495000px;}
.yce{bottom:590.655000px;}
.y5b{bottom:599.655000px;}
.y22{bottom:602.355000px;}
.yb3{bottom:608.295000px;}
.ycd{bottom:610.455000px;}
.y5a{bottom:613.335000px;}
.y85{bottom:619.275000px;}
.y21{bottom:622.335000px;}
.yb2{bottom:628.095000px;}
.ycc{bottom:630.435000px;}
.y20{bottom:642.135000px;}
.yb1{bottom:647.895000px;}
.y4e{bottom:650.265000px;}
.y84{bottom:659.805000px;}
.y1f{bottom:661.965000px;}
.y95{bottom:663.585000px;}
.yb0{bottom:667.725000px;}
.y4d{bottom:670.065000px;}
.y1e{bottom:681.765000px;}
.yaf{bottom:687.705000px;}
.y4c{bottom:689.865000px;}
.y1d{bottom:701.565000px;}
.yae{bottom:707.505000px;}
.y4b{bottom:709.665000px;}
.y82{bottom:720.105000px;}
.y1c{bottom:721.545000px;}
.yad{bottom:727.305000px;}
.y4a{bottom:729.645000px;}
.y1b{bottom:741.345000px;}
.yac{bottom:747.105000px;}
.y49{bottom:749.445000px;}
.y1a{bottom:761.145000px;}
.yab{bottom:766.905000px;}
.y48{bottom:769.245000px;}
.y7f{bottom:780.225000px;}
.y19{bottom:780.945000px;}
.yaa{bottom:786.885000px;}
.y47{bottom:789.045000px;}
.y18{bottom:800.745000px;}
.ya9{bottom:806.685000px;}
.y46{bottom:808.845000px;}
.y17{bottom:820.725000px;}
.ya8{bottom:826.485000px;}
.y45{bottom:828.825000px;}
.y16{bottom:840.525000px;}
.ya7{bottom:846.285000px;}
.y44{bottom:848.625000px;}
.y15{bottom:860.325000px;}
.ya6{bottom:866.085000px;}
.y43{bottom:868.425000px;}
.y7b{bottom:881.025000px;}
.y14{bottom:885.345000px;}
.ya5{bottom:886.065000px;}
.y42{bottom:888.225000px;}
.y13{bottom:900.510000px;}
.ya3{bottom:900.870000px;}
.y41{bottom:908.070000px;}
.y12{bottom:922.470000px;}
.y40{bottom:928.050000px;}
.y79{bottom:941.190000px;}
.y11{bottom:944.250000px;}
.y3f{bottom:947.850000px;}
.y3e{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.ya2{bottom:980.970000px;}
.y3d{bottom:987.450000px;}
.yf{bottom:1000.950000px;}
.y3c{bottom:1007.250000px;}
.y3b{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.403281px;}
.h16{height:15.120000px;}
.h17{height:15.300000px;}
.h1d{height:19.980000px;}
.hb{height:21.240000px;}
.h18{height:29.340000px;}
.hf{height:32.444297px;}
.h8{height:33.480000px;}
.h1f{height:39.600000px;}
.h25{height:39.636000px;}
.h26{height:39.780000px;}
.h22{height:39.816000px;}
.h12{height:40.254961px;}
.h1b{height:40.375125px;}
.h10{height:42.164648px;}
.h28{height:45.024258px;}
.h4{height:46.736719px;}
.h5{height:49.868086px;}
.he{height:53.224453px;}
.ha{height:55.275469px;}
.h21{height:59.400000px;}
.h1e{height:59.436000px;}
.h20{height:59.580000px;}
.h23{height:59.616000px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.h1a{height:66.240000px;}
.hc{height:67.565039px;}
.h1c{height:74.160000px;}
.h24{height:79.236000px;}
.h27{height:79.380000px;}
.hd{height:79.909102px;}
.h13{height:83.520000px;}
.h14{height:85.320000px;}
.h15{height:93.780000px;}
.h19{height:93.960000px;}
.h11{height:94.320000px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w6{width:16.200000px;}
.w9{width:17.820000px;}
.wd{width:33.876000px;}
.w12{width:38.880000px;}
.w13{width:38.916000px;}
.w10{width:39.960000px;}
.wf{width:40.320000px;}
.w14{width:54.036000px;}
.w11{width:63.036000px;}
.w16{width:73.836000px;}
.w15{width:88.020000px;}
.w18{width:105.480000px;}
.w17{width:110.520000px;}
.w3{width:130.716000px;}
.w8{width:137.520000px;}
.w7{width:145.620000px;}
.wb{width:146.160000px;}
.wc{width:181.440000px;}
.wa{width:189.720000px;}
.w19{width:284.295000px;}
.we{width:405.435000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.300000px;}
.x2{left:8.100000px;}
.x28{left:9.720000px;}
.xf{left:11.415000px;}
.x25{left:12.780000px;}
.x2e{left:15.120000px;}
.x23{left:18.540000px;}
.x31{left:19.980000px;}
.x2c{left:22.320000px;}
.x2f{left:23.400000px;}
.x26{left:28.980000px;}
.x2a{left:32.760000px;}
.x17{left:45.075000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x32{left:80.999987px;}
.x19{left:89.316000px;}
.x33{left:108.035987px;}
.x24{left:109.476000px;}
.x4{left:118.290000px;}
.x9{left:122.255987px;}
.xb{left:134.315987px;}
.x27{left:198.210000px;}
.x15{left:238.860000px;}
.xe{left:240.660000px;}
.x7{left:244.649987px;}
.x29{left:272.775000px;}
.x10{left:286.560000px;}
.x11{left:297.614987px;}
.xd{left:341.714987px;}
.xa{left:355.394987px;}
.x18{left:365.294987px;}
.x2b{left:384.015000px;}
.x8{left:446.504987px;}
.x2d{left:447.945000px;}
.x12{left:455.220000px;}
.x13{left:466.304987px;}
.x14{left:491.940000px;}
.x1a{left:495.645000px;}
.x16{left:503.024987px;}
.x1c{left:536.685000px;}
.x30{left:554.145000px;}
.x1d{left:577.365000px;}
.x1e{left:641.130000px;}
.xc{left:676.229987px;}
.x1f{left:680.730000px;}
.x3{left:705.930000px;}
.x20{left:720.330000px;}
.x21{left:759.930000px;}
.x22{left:799.530000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls10{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.592000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._27{margin-left:-5.736960pt;}
._1d{margin-left:-4.311040pt;}
._16{margin-left:-3.192320pt;}
._b{margin-left:-2.122667pt;}
._0{margin-left:-0.960000pt;}
._12{width:0.945067pt;}
._1{width:1.973333pt;}
._19{width:3.080960pt;}
._1f{width:4.141653pt;}
._15{width:5.216853pt;}
._14{width:6.640000pt;}
._13{width:7.861760pt;}
._6{width:9.600000pt;}
._1e{width:10.871680pt;}
._20{width:11.815467pt;}
._1b{width:14.433493pt;}
._1a{width:15.351680pt;}
._10{width:16.842667pt;}
._1c{width:18.277120pt;}
._17{width:22.055893pt;}
._18{width:23.096107pt;}
._26{width:24.106027pt;}
._25{width:25.933653pt;}
._24{width:32.986880pt;}
._23{width:34.103680pt;}
._2c{width:37.980800pt;}
._2d{width:39.202560pt;}
._21{width:41.646080pt;}
._22{width:42.602240pt;}
._2b{width:57.858773pt;}
._28{width:66.771840pt;}
._7{width:67.808853pt;}
._2a{width:77.448960pt;}
._29{width:78.936320pt;}
._11{width:88.586667pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._f{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.426667pt;}
.y68{bottom:3.586667pt;}
.ye{bottom:5.120000pt;}
.y7a{bottom:5.280000pt;}
.y57{bottom:9.573333pt;}
.y6{bottom:11.040000pt;}
.y65{bottom:15.746667pt;}
.y67{bottom:15.906667pt;}
.y8{bottom:16.160000pt;}
.y6a{bottom:19.933333pt;}
.y60{bottom:20.160000pt;}
.y7e{bottom:22.720000pt;}
.ya1{bottom:22.746667pt;}
.y7d{bottom:22.760000pt;}
.y81{bottom:22.880000pt;}
.y8b{bottom:22.920000pt;}
.y75{bottom:23.013333pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y83{bottom:40.320000pt;}
.ya0{bottom:40.346667pt;}
.y7c{bottom:40.360000pt;}
.y80{bottom:40.480000pt;}
.y8a{bottom:40.520000pt;}
.y77{bottom:48.666667pt;}
.y6c{bottom:48.706667pt;}
.yb{bottom:53.600000pt;}
.y70{bottom:55.746667pt;}
.y97{bottom:57.920000pt;}
.ya4{bottom:58.080000pt;}
.y4{bottom:60.800000pt;}
.y59{bottom:64.066667pt;}
.y5e{bottom:65.666667pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y55{bottom:93.760000pt;}
.y94{bottom:94.720000pt;}
.ycb{bottom:99.840000pt;}
.y54{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.y3a{bottom:112.320000pt;}
.y93{bottom:112.480000pt;}
.yca{bottom:117.440000pt;}
.y9f{bottom:124.640000pt;}
.y53{bottom:129.120000pt;}
.y39{bottom:129.920000pt;}
.y92{bottom:130.080000pt;}
.yc9{bottom:135.066667pt;}
.y52{bottom:146.746667pt;}
.y38{bottom:147.546667pt;}
.y91{bottom:147.706667pt;}
.yc8{bottom:152.826667pt;}
.ye3{bottom:154.746667pt;}
.y51{bottom:164.346667pt;}
.y37{bottom:165.146667pt;}
.y90{bottom:165.306667pt;}
.yc7{bottom:170.426667pt;}
.ye2{bottom:172.346667pt;}
.y9e{bottom:178.266667pt;}
.y50{bottom:181.946667pt;}
.y36{bottom:182.906667pt;}
.yc6{bottom:188.026667pt;}
.ye1{bottom:189.946667pt;}
.y4f{bottom:196.826667pt;}
.y74{bottom:198.720000pt;}
.y35{bottom:200.506667pt;}
.y8f{bottom:200.666667pt;}
.yc5{bottom:205.626667pt;}
.ye0{bottom:207.706667pt;}
.y76{bottom:212.320000pt;}
.y8e{bottom:216.026667pt;}
.y34{bottom:218.106667pt;}
.yc4{bottom:223.226667pt;}
.ydf{bottom:225.306667pt;}
.y8d{bottom:229.146667pt;}
.y9d{bottom:231.706667pt;}
.y33{bottom:235.706667pt;}
.yc3{bottom:240.986667pt;}
.yde{bottom:242.906667pt;}
.y78{bottom:248.666667pt;}
.y32{bottom:253.306667pt;}
.yc2{bottom:258.586667pt;}
.ydd{bottom:260.506667pt;}
.y9c{bottom:267.706667pt;}
.y31{bottom:271.066667pt;}
.yc1{bottom:276.186667pt;}
.ydc{bottom:278.106667pt;}
.y8c{bottom:282.586667pt;}
.y30{bottom:288.666667pt;}
.y69{bottom:291.040000pt;}
.yc0{bottom:293.786667pt;}
.ydb{bottom:295.866667pt;}
.y9b{bottom:303.546667pt;}
.y6f{bottom:304.160000pt;}
.y2f{bottom:306.266667pt;}
.y6b{bottom:310.400000pt;}
.ybf{bottom:311.386667pt;}
.yda{bottom:313.466667pt;}
.y73{bottom:322.906667pt;}
.y2e{bottom:323.866667pt;}
.ybe{bottom:329.146667pt;}
.yd9{bottom:331.066667pt;}
.y6e{bottom:334.426667pt;}
.y72{bottom:335.226667pt;}
.y89{bottom:336.186667pt;}
.y9a{bottom:339.546667pt;}
.y2d{bottom:341.466667pt;}
.y6d{bottom:346.746667pt;}
.y71{bottom:347.546667pt;}
.yd8{bottom:348.666667pt;}
.y2c{bottom:359.106667pt;}
.ybd{bottom:364.386667pt;}
.yd7{bottom:366.306667pt;}
.y99{bottom:375.586667pt;}
.y2b{bottom:376.866667pt;}
.ybc{bottom:381.986667pt;}
.yd6{bottom:384.066667pt;}
.y5f{bottom:386.880000pt;}
.y88{bottom:389.826667pt;}
.y66{bottom:391.200000pt;}
.y2a{bottom:394.466667pt;}
.y63{bottom:398.720000pt;}
.ybb{bottom:399.586667pt;}
.yd5{bottom:401.666667pt;}
.y29{bottom:412.066667pt;}
.yba{bottom:417.186667pt;}
.yd4{bottom:419.266667pt;}
.y98{bottom:429.026667pt;}
.y28{bottom:429.666667pt;}
.yb9{bottom:434.946667pt;}
.yd3{bottom:436.866667pt;}
.y64{bottom:440.000000pt;}
.y87{bottom:443.426667pt;}
.y61{bottom:445.120000pt;}
.y27{bottom:447.266667pt;}
.yb8{bottom:452.546667pt;}
.yd2{bottom:454.466667pt;}
.y26{bottom:465.026667pt;}
.yb7{bottom:470.146667pt;}
.yd1{bottom:472.226667pt;}
.y25{bottom:482.626667pt;}
.yb6{bottom:487.746667pt;}
.y56{bottom:488.640000pt;}
.yd0{bottom:489.826667pt;}
.y5d{bottom:491.840000pt;}
.y58{bottom:493.440000pt;}
.y86{bottom:496.866667pt;}
.y24{bottom:500.226667pt;}
.yb5{bottom:505.346667pt;}
.ycf{bottom:507.426667pt;}
.y23{bottom:517.826667pt;}
.y96{bottom:518.626667pt;}
.y5c{bottom:520.866667pt;}
.yb4{bottom:523.106667pt;}
.yce{bottom:525.026667pt;}
.y5b{bottom:533.026667pt;}
.y22{bottom:535.426667pt;}
.yb3{bottom:540.706667pt;}
.ycd{bottom:542.626667pt;}
.y5a{bottom:545.186667pt;}
.y85{bottom:550.466667pt;}
.y21{bottom:553.186667pt;}
.yb2{bottom:558.306667pt;}
.ycc{bottom:560.386667pt;}
.y20{bottom:570.786667pt;}
.yb1{bottom:575.906667pt;}
.y4e{bottom:578.013333pt;}
.y84{bottom:586.493333pt;}
.y1f{bottom:588.413333pt;}
.y95{bottom:589.853333pt;}
.yb0{bottom:593.533333pt;}
.y4d{bottom:595.613333pt;}
.y1e{bottom:606.013333pt;}
.yaf{bottom:611.293333pt;}
.y4c{bottom:613.213333pt;}
.y1d{bottom:623.613333pt;}
.yae{bottom:628.893333pt;}
.y4b{bottom:630.813333pt;}
.y82{bottom:640.093333pt;}
.y1c{bottom:641.373333pt;}
.yad{bottom:646.493333pt;}
.y4a{bottom:648.573333pt;}
.y1b{bottom:658.973333pt;}
.yac{bottom:664.093333pt;}
.y49{bottom:666.173333pt;}
.y1a{bottom:676.573333pt;}
.yab{bottom:681.693333pt;}
.y48{bottom:683.773333pt;}
.y7f{bottom:693.533333pt;}
.y19{bottom:694.173333pt;}
.yaa{bottom:699.453333pt;}
.y47{bottom:701.373333pt;}
.y18{bottom:711.773333pt;}
.ya9{bottom:717.053333pt;}
.y46{bottom:718.973333pt;}
.y17{bottom:729.533333pt;}
.ya8{bottom:734.653333pt;}
.y45{bottom:736.733333pt;}
.y16{bottom:747.133333pt;}
.ya7{bottom:752.253333pt;}
.y44{bottom:754.333333pt;}
.y15{bottom:764.733333pt;}
.ya6{bottom:769.853333pt;}
.y43{bottom:771.933333pt;}
.y7b{bottom:783.133333pt;}
.y14{bottom:786.973333pt;}
.ya5{bottom:787.613333pt;}
.y42{bottom:789.533333pt;}
.y13{bottom:800.453333pt;}
.ya3{bottom:800.773333pt;}
.y41{bottom:807.173333pt;}
.y12{bottom:819.973333pt;}
.y40{bottom:824.933333pt;}
.y79{bottom:836.613333pt;}
.y11{bottom:839.333333pt;}
.y3f{bottom:842.533333pt;}
.y3e{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.ya2{bottom:871.973333pt;}
.y3d{bottom:877.733333pt;}
.yf{bottom:889.733333pt;}
.y3c{bottom:895.333333pt;}
.y3b{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.136250pt;}
.h16{height:13.440000pt;}
.h17{height:13.600000pt;}
.h1d{height:17.760000pt;}
.hb{height:18.880000pt;}
.h18{height:26.080000pt;}
.hf{height:28.839375pt;}
.h8{height:29.760000pt;}
.h1f{height:35.200000pt;}
.h25{height:35.232000pt;}
.h26{height:35.360000pt;}
.h22{height:35.392000pt;}
.h12{height:35.782188pt;}
.h1b{height:35.889000pt;}
.h10{height:37.479688pt;}
.h28{height:40.021563pt;}
.h4{height:41.543750pt;}
.h5{height:44.327188pt;}
.he{height:47.310625pt;}
.ha{height:49.133750pt;}
.h21{height:52.800000pt;}
.h1e{height:52.832000pt;}
.h20{height:52.960000pt;}
.h23{height:52.992000pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.h1a{height:58.880000pt;}
.hc{height:60.057813pt;}
.h1c{height:65.920000pt;}
.h24{height:70.432000pt;}
.h27{height:70.560000pt;}
.hd{height:71.030312pt;}
.h13{height:74.240000pt;}
.h14{height:75.840000pt;}
.h15{height:83.360000pt;}
.h19{height:83.520000pt;}
.h11{height:83.840000pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w6{width:14.400000pt;}
.w9{width:15.840000pt;}
.wd{width:30.112000pt;}
.w12{width:34.560000pt;}
.w13{width:34.592000pt;}
.w10{width:35.520000pt;}
.wf{width:35.840000pt;}
.w14{width:48.032000pt;}
.w11{width:56.032000pt;}
.w16{width:65.632000pt;}
.w15{width:78.240000pt;}
.w18{width:93.760000pt;}
.w17{width:98.240000pt;}
.w3{width:116.192000pt;}
.w8{width:122.240000pt;}
.w7{width:129.440000pt;}
.wb{width:129.920000pt;}
.wc{width:161.280000pt;}
.wa{width:168.640000pt;}
.w19{width:252.706667pt;}
.we{width:360.386667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:5.600000pt;}
.x2{left:7.200000pt;}
.x28{left:8.640000pt;}
.xf{left:10.146667pt;}
.x25{left:11.360000pt;}
.x2e{left:13.440000pt;}
.x23{left:16.480000pt;}
.x31{left:17.760000pt;}
.x2c{left:19.840000pt;}
.x2f{left:20.800000pt;}
.x26{left:25.760000pt;}
.x2a{left:29.120000pt;}
.x17{left:40.066667pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x32{left:71.999988pt;}
.x19{left:79.392000pt;}
.x33{left:96.031988pt;}
.x24{left:97.312000pt;}
.x4{left:105.146667pt;}
.x9{left:108.671988pt;}
.xb{left:119.391988pt;}
.x27{left:176.186667pt;}
.x15{left:212.320000pt;}
.xe{left:213.920000pt;}
.x7{left:217.466655pt;}
.x29{left:242.466667pt;}
.x10{left:254.720000pt;}
.x11{left:264.546655pt;}
.xd{left:303.746655pt;}
.xa{left:315.906655pt;}
.x18{left:324.706655pt;}
.x2b{left:341.346667pt;}
.x8{left:396.893322pt;}
.x2d{left:398.173333pt;}
.x12{left:404.640000pt;}
.x13{left:414.493322pt;}
.x14{left:437.280000pt;}
.x1a{left:440.573333pt;}
.x16{left:447.133322pt;}
.x1c{left:477.053333pt;}
.x30{left:492.573333pt;}
.x1d{left:513.213333pt;}
.x1e{left:569.893333pt;}
.xc{left:601.093322pt;}
.x1f{left:605.093333pt;}
.x3{left:627.493333pt;}
.x20{left:640.293333pt;}
.x21{left:675.493333pt;}
.x22{left:710.693333pt;}
.x6{left:737.280000pt;}
}




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