
    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_ba61b555ad2ec041b725077e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_e84813fb544b4d53e828d282.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_a1541ff369042f0c86b1a135.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_aeca562ed72ab0845ddf39b7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b34c57a209729d92142cdb93.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_083003faa5ec3f1c0a979295.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_7e589a287bb04ccffebd312e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_08cf8d469d05da89fa38e973.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.310800px;}
.lsc{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.047520px;}
.ls7{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.093600px;}
.ls1{letter-spacing:0.134760px;}
.lsd{letter-spacing:0.173400px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:13.347360px;}
.ls15{letter-spacing:36.566640px;}
.lsa{letter-spacing:54.926640px;}
.ls10{letter-spacing:63.566640px;}
.ls14{letter-spacing:65.006640px;}
.lse{letter-spacing:68.246640px;}
.ls16{letter-spacing:78.326640px;}
.ls8{letter-spacing:100.286640px;}
.lsb{letter-spacing:143.325360px;}
.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;}
}
.ws2{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.275360px;}
.ws0{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.wsa{word-spacing:-12.915600px;}
.ws7{word-spacing:-8.553600px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:147.584880px;}
._d{margin-left:-3.474720px;}
._2{margin-left:-2.286600px;}
._0{margin-left:-1.020000px;}
._1{width:1.258200px;}
._5{width:2.901117px;}
._e{width:4.253163px;}
._7{width:5.290800px;}
._4{width:7.158720px;}
._8{width:8.597400px;}
._9{width:9.795596px;}
._3{width:11.351400px;}
._10{width:14.609160px;}
._c{width:15.931800px;}
._f{width:16.953840px;}
._a{width:18.216600px;}
._b{width:19.537798px;}
._6{width:30.300600px;}
._11{width:136.111680px;}
._12{width:137.674800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y56{bottom:7.830000px;}
.y58{bottom:7.920000px;}
.y66{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y87{bottom:114.510000px;}
.yf2{bottom:114.960000px;}
.y74{bottom:119.370000px;}
.y10e{bottom:124.680000px;}
.y86{bottom:129.540000px;}
.y10d{bottom:142.320000px;}
.ycd{bottom:145.830000px;}
.yf1{bottom:150.600000px;}
.y85{bottom:156.810000px;}
.y64{bottom:159.870000px;}
.y23{bottom:167.520000px;}
.y73{bottom:168.060000px;}
.ya5{bottom:173.460000px;}
.y52{bottom:178.950000px;}
.ycc{bottom:181.380000px;}
.y84{bottom:184.170000px;}
.y22{bottom:185.160000px;}
.yf0{bottom:186.150000px;}
.y10c{bottom:186.780000px;}
.ya4{bottom:191.010000px;}
.y63{bottom:195.420000px;}
.y51{bottom:196.500000px;}
.ycb{bottom:199.020000px;}
.y21{bottom:202.710000px;}
.y72{bottom:203.610000px;}
.y50{bottom:214.140000px;}
.ya3{bottom:217.560000px;}
.y20{bottom:220.260000px;}
.yef{bottom:221.790000px;}
.yca{bottom:225.570000px;}
.y62{bottom:227.640000px;}
.y4f{bottom:231.690000px;}
.y83{bottom:232.860000px;}
.y10b{bottom:235.020000px;}
.y71{bottom:235.830000px;}
.y1f{bottom:237.900000px;}
.yee{bottom:239.340000px;}
.y4e{bottom:249.330000px;}
.ya2{bottom:250.230000px;}
.y1e{bottom:255.450000px;}
.yc9{bottom:261.120000px;}
.y10a{bottom:261.930000px;}
.yed{bottom:265.890000px;}
.y4d{bottom:266.880000px;}
.y82{bottom:268.500000px;}
.y1d{bottom:273.090000px;}
.yc8{bottom:278.760000px;}
.y4c{bottom:284.430000px;}
.ya1{bottom:285.780000px;}
.yc7{bottom:296.310000px;}
.y109{bottom:299.010000px;}
.y81{bottom:300.720000px;}
.yec{bottom:301.530000px;}
.y4b{bottom:302.070000px;}
.ya0{bottom:303.330000px;}
.y1c{bottom:308.640000px;}
.yeb{bottom:319.080000px;}
.y4a{bottom:319.620000px;}
.y9f{bottom:321.780000px;}
.y108{bottom:325.920000px;}
.y1b{bottom:326.190000px;}
.yc6{bottom:331.950000px;}
.y49{bottom:337.260000px;}
.y9e{bottom:339.330000px;}
.y1a{bottom:343.830000px;}
.yea{bottom:345.720000px;}
.yc5{bottom:358.500000px;}
.y19{bottom:361.380000px;}
.y107{bottom:362.910000px;}
.y9d{bottom:366.780000px;}
.y48{bottom:372.810000px;}
.y18{bottom:379.020000px;}
.y106{bottom:380.460000px;}
.ye9{bottom:381.270000px;}
.yc4{bottom:394.050000px;}
.y17{bottom:396.570000px;}
.ye8{bottom:398.820000px;}
.y9c{bottom:402.330000px;}
.y105{bottom:407.370000px;}
.y47{bottom:408.360000px;}
.yc3{bottom:411.690000px;}
.ye7{bottom:416.460000px;}
.y9b{bottom:419.970000px;}
.y16{bottom:423.480000px;}
.yc2{bottom:429.240000px;}
.y46{bottom:435.270000px;}
.ye6{bottom:443.010000px;}
.y104{bottom:444.720000px;}
.y9a{bottom:446.520000px;}
.yc1{bottom:455.790000px;}
.y15{bottom:472.110000px;}
.ye5{bottom:475.620000px;}
.y99{bottom:479.130000px;}
.y45{bottom:483.630000px;}
.yc0{bottom:488.490000px;}
.y70{bottom:489.030000px;}
.y103{bottom:493.080000px;}
.y44{bottom:501.180000px;}
.y6f{bottom:503.970000px;}
.y61{bottom:507.840000px;}
.y14{bottom:509.100000px;}
.y102{bottom:510.630000px;}
.ye4{bottom:511.260000px;}
.y98{bottom:514.770000px;}
.y43{bottom:518.730000px;}
.y80{bottom:522.330000px;}
.y60{bottom:522.780000px;}
.ybf{bottom:524.040000px;}
.y13{bottom:526.740000px;}
.y101{bottom:528.180000px;}
.ye3{bottom:528.810000px;}
.y6e{bottom:531.330000px;}
.y97{bottom:532.320000px;}
.y42{bottom:536.370000px;}
.y7f{bottom:537.270000px;}
.ybe{bottom:541.590000px;}
.y100{bottom:545.820000px;}
.ye2{bottom:546.360000px;}
.y96{bottom:549.870000px;}
.y5f{bottom:550.140000px;}
.y41{bottom:553.920000px;}
.y6d{bottom:558.600000px;}
.y12{bottom:562.290000px;}
.ye1{bottom:564.000000px;}
.y7e{bottom:564.630000px;}
.y95{bottom:567.510000px;}
.ybd{bottom:568.230000px;}
.y40{bottom:571.560000px;}
.y5e{bottom:577.500000px;}
.y11{bottom:579.840000px;}
.yff{bottom:581.370000px;}
.y94{bottom:585.060000px;}
.y3f{bottom:589.110000px;}
.y7d{bottom:591.990000px;}
.y10{bottom:597.480000px;}
.yfe{bottom:599.010000px;}
.ye0{bottom:599.550000px;}
.y93{bottom:602.700000px;}
.ybc{bottom:603.780000px;}
.y3e{bottom:606.660000px;}
.yfd{bottom:616.560000px;}
.ydf{bottom:617.190000px;}
.y92{bottom:620.250000px;}
.ybb{bottom:621.420000px;}
.y3d{bottom:624.300000px;}
.y6c{bottom:624.930000px;}
.y5d{bottom:626.190000px;}
.yf{bottom:633.030000px;}
.y3c{bottom:641.850000px;}
.yde{bottom:643.740000px;}
.y91{bottom:646.800000px;}
.yba{bottom:647.970000px;}
.ye{bottom:650.670000px;}
.yfc{bottom:652.110000px;}
.y7c{bottom:658.230000px;}
.y6b{bottom:660.480000px;}
.y5c{bottom:661.740000px;}
.yd{bottom:668.220000px;}
.y3b{bottom:668.760000px;}
.yfb{bottom:669.750000px;}
.ydd{bottom:676.320000px;}
.y90{bottom:682.440000px;}
.yb9{bottom:683.520000px;}
.y6a{bottom:692.700000px;}
.y7b{bottom:693.870000px;}
.y5b{bottom:697.290000px;}
.y8f{bottom:699.990000px;}
.yb8{bottom:701.160000px;}
.yc{bottom:703.770000px;}
.yfa{bottom:705.300000px;}
.y3a{bottom:705.840000px;}
.ydc{bottom:711.870000px;}
.y8e{bottom:717.540000px;}
.yb7{bottom:718.710000px;}
.yf9{bottom:722.850000px;}
.y7a{bottom:729.420000px;}
.y5a{bottom:729.510000px;}
.y39{bottom:732.750000px;}
.yb{bottom:739.410000px;}
.yf8{bottom:740.490000px;}
.y8d{bottom:744.180000px;}
.yb6{bottom:745.350000px;}
.ydb{bottom:756.060000px;}
.ya{bottom:756.960000px;}
.yf7{bottom:758.040000px;}
.y79{bottom:761.640000px;}
.y38{bottom:769.740000px;}
.y8c{bottom:779.730000px;}
.yb5{bottom:780.900000px;}
.y9{bottom:783.870000px;}
.y37{bottom:787.290000px;}
.yda{bottom:791.700000px;}
.yf6{bottom:793.680000px;}
.y8b{bottom:797.370000px;}
.yb4{bottom:798.450000px;}
.y36{bottom:804.930000px;}
.yd9{bottom:809.250000px;}
.yf5{bottom:811.230000px;}
.yb3{bottom:816.090000px;}
.y35{bottom:822.480000px;}
.y8a{bottom:824.280000px;}
.yf4{bottom:828.780000px;}
.y8{bottom:832.110000px;}
.yb2{bottom:833.640000px;}
.yd8{bottom:835.800000px;}
.y34{bottom:840.030000px;}
.yb1{bottom:851.280000px;}
.yf3{bottom:855.690000px;}
.y33{bottom:857.670000px;}
.y7{bottom:867.750000px;}
.yd7{bottom:868.380000px;}
.y89{bottom:872.520000px;}
.yb0{bottom:877.830000px;}
.y32{bottom:884.220000px;}
.y6{bottom:903.300000px;}
.yd6{bottom:904.020000px;}
.y88{bottom:904.740000px;}
.yaf{bottom:913.380000px;}
.y31{bottom:919.860000px;}
.yd5{bottom:921.570000px;}
.yae{bottom:931.020000px;}
.y30{bottom:937.410000px;}
.y5{bottom:938.940000px;}
.yd4{bottom:948.210000px;}
.y2f{bottom:954.960000px;}
.yad{bottom:957.570000px;}
.y2e{bottom:972.600000px;}
.y4{bottom:974.670000px;}
.yd3{bottom:983.760000px;}
.yac{bottom:990.150000px;}
.y2d{bottom:999.150000px;}
.yd2{bottom:1001.310000px;}
.y69{bottom:1004.370000px;}
.y59{bottom:1009.710000px;}
.y3{bottom:1012.230000px;}
.y10f{bottom:1016.820000px;}
.y68{bottom:1019.340000px;}
.y57{bottom:1024.650000px;}
.yab{bottom:1025.820000px;}
.yd1{bottom:1027.980000px;}
.y2c{bottom:1034.820000px;}
.yaa{bottom:1043.370000px;}
.y67{bottom:1046.700000px;}
.y55{bottom:1052.010000px;}
.y2b{bottom:1052.370000px;}
.y78{bottom:1057.500000px;}
.ya9{bottom:1060.920000px;}
.yd0{bottom:1063.530000px;}
.y2a{bottom:1069.920000px;}
.y77{bottom:1072.530000px;}
.y65{bottom:1073.970000px;}
.ya8{bottom:1078.560000px;}
.ycf{bottom:1081.170000px;}
.y29{bottom:1087.560000px;}
.ya7{bottom:1096.110000px;}
.y76{bottom:1099.890000px;}
.y54{bottom:1100.700000px;}
.y28{bottom:1105.110000px;}
.yce{bottom:1107.720000px;}
.ya6{bottom:1113.750000px;}
.y27{bottom:1122.750000px;}
.y75{bottom:1127.160000px;}
.y53{bottom:1127.610000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.hd{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:53.340820px;}
.h7{height:55.779258px;}
.he{height:59.973223px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:53.670000px;}
.w12{width:66.060000px;}
.wd{width:86.940000px;}
.w11{width:92.610000px;}
.w7{width:92.880000px;}
.wa{width:92.970000px;}
.w13{width:104.130000px;}
.w10{width:107.640000px;}
.we{width:107.730000px;}
.w5{width:119.700000px;}
.w6{width:130.080000px;}
.wf{width:135.390000px;}
.w14{width:140.610000px;}
.w8{width:146.970000px;}
.wb{width:193.050000px;}
.w3{width:202.590000px;}
.w9{width:214.140000px;}
.w4{width:225.660000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.190000px;}
.x24{left:57.419987px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x25{left:99.989987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x10{left:218.910000px;}
.x6{left:232.140000px;}
.x14{left:248.339987px;}
.xf{left:272.009987px;}
.xb{left:274.530000px;}
.x1a{left:277.860000px;}
.x15{left:279.030000px;}
.x20{left:290.550000px;}
.x19{left:307.919987px;}
.xa{left:311.159987px;}
.x1e{left:312.419987px;}
.x21{left:357.330000px;}
.x11{left:366.600000px;}
.x1b{left:386.310000px;}
.xc{left:394.950000px;}
.x8{left:435.450000px;}
.x22{left:462.180000px;}
.x16{left:472.890000px;}
.x1c{left:522.510000px;}
.xd{left:525.840000px;}
.x17{left:527.280000px;}
.x12{left:581.460000px;}
.x1f{left:645.809987px;}
.x9{left:690.809987px;}
.x23{left:704.309987px;}
.x1d{left:714.389987px;}
.xe{left:723.389987px;}
.x18{left:743.639987px;}
.x13{left:751.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.276267pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.042240pt;}
.ls7{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.083200pt;}
.ls1{letter-spacing:0.119787pt;}
.lsd{letter-spacing:0.154133pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls15{letter-spacing:32.503680pt;}
.lsa{letter-spacing:48.823680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls14{letter-spacing:57.783680pt;}
.lse{letter-spacing:60.663680pt;}
.ls16{letter-spacing:69.623680pt;}
.ls8{letter-spacing:89.143680pt;}
.lsb{letter-spacing:127.400320pt;}
.ws2{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.800320pt;}
.ws0{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.wsa{word-spacing:-11.480533pt;}
.ws7{word-spacing:-7.603200pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:131.186560pt;}
._d{margin-left:-3.088640pt;}
._2{margin-left:-2.032533pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.118400pt;}
._5{width:2.578771pt;}
._e{width:3.780589pt;}
._7{width:4.702934pt;}
._4{width:6.363307pt;}
._8{width:7.642134pt;}
._9{width:8.707197pt;}
._3{width:10.090133pt;}
._10{width:12.985920pt;}
._c{width:14.161600pt;}
._f{width:15.070080pt;}
._a{width:16.192534pt;}
._b{width:17.366931pt;}
._6{width:26.933867pt;}
._11{width:120.988160pt;}
._12{width:122.377600pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:6.960000pt;}
.y58{bottom:7.040000pt;}
.y66{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y87{bottom:101.786667pt;}
.yf2{bottom:102.186667pt;}
.y74{bottom:106.106667pt;}
.y10e{bottom:110.826667pt;}
.y86{bottom:115.146667pt;}
.y10d{bottom:126.506667pt;}
.ycd{bottom:129.626667pt;}
.yf1{bottom:133.866667pt;}
.y85{bottom:139.386667pt;}
.y64{bottom:142.106667pt;}
.y23{bottom:148.906667pt;}
.y73{bottom:149.386667pt;}
.ya5{bottom:154.186667pt;}
.y52{bottom:159.066667pt;}
.ycc{bottom:161.226667pt;}
.y84{bottom:163.706667pt;}
.y22{bottom:164.586667pt;}
.yf0{bottom:165.466667pt;}
.y10c{bottom:166.026667pt;}
.ya4{bottom:169.786667pt;}
.y63{bottom:173.706667pt;}
.y51{bottom:174.666667pt;}
.ycb{bottom:176.906667pt;}
.y21{bottom:180.186667pt;}
.y72{bottom:180.986667pt;}
.y50{bottom:190.346667pt;}
.ya3{bottom:193.386667pt;}
.y20{bottom:195.786667pt;}
.yef{bottom:197.146667pt;}
.yca{bottom:200.506667pt;}
.y62{bottom:202.346667pt;}
.y4f{bottom:205.946667pt;}
.y83{bottom:206.986667pt;}
.y10b{bottom:208.906667pt;}
.y71{bottom:209.626667pt;}
.y1f{bottom:211.466667pt;}
.yee{bottom:212.746667pt;}
.y4e{bottom:221.626667pt;}
.ya2{bottom:222.426667pt;}
.y1e{bottom:227.066667pt;}
.yc9{bottom:232.106667pt;}
.y10a{bottom:232.826667pt;}
.yed{bottom:236.346667pt;}
.y4d{bottom:237.226667pt;}
.y82{bottom:238.666667pt;}
.y1d{bottom:242.746667pt;}
.yc8{bottom:247.786667pt;}
.y4c{bottom:252.826667pt;}
.ya1{bottom:254.026667pt;}
.yc7{bottom:263.386667pt;}
.y109{bottom:265.786667pt;}
.y81{bottom:267.306667pt;}
.yec{bottom:268.026667pt;}
.y4b{bottom:268.506667pt;}
.ya0{bottom:269.626667pt;}
.y1c{bottom:274.346667pt;}
.yeb{bottom:283.626667pt;}
.y4a{bottom:284.106667pt;}
.y9f{bottom:286.026667pt;}
.y108{bottom:289.706667pt;}
.y1b{bottom:289.946667pt;}
.yc6{bottom:295.066667pt;}
.y49{bottom:299.786667pt;}
.y9e{bottom:301.626667pt;}
.y1a{bottom:305.626667pt;}
.yea{bottom:307.306667pt;}
.yc5{bottom:318.666667pt;}
.y19{bottom:321.226667pt;}
.y107{bottom:322.586667pt;}
.y9d{bottom:326.026667pt;}
.y48{bottom:331.386667pt;}
.y18{bottom:336.906667pt;}
.y106{bottom:338.186667pt;}
.ye9{bottom:338.906667pt;}
.yc4{bottom:350.266667pt;}
.y17{bottom:352.506667pt;}
.ye8{bottom:354.506667pt;}
.y9c{bottom:357.626667pt;}
.y105{bottom:362.106667pt;}
.y47{bottom:362.986667pt;}
.yc3{bottom:365.946667pt;}
.ye7{bottom:370.186667pt;}
.y9b{bottom:373.306667pt;}
.y16{bottom:376.426667pt;}
.yc2{bottom:381.546667pt;}
.y46{bottom:386.906667pt;}
.ye6{bottom:393.786667pt;}
.y104{bottom:395.306667pt;}
.y9a{bottom:396.906667pt;}
.yc1{bottom:405.146667pt;}
.y15{bottom:419.653333pt;}
.ye5{bottom:422.773333pt;}
.y99{bottom:425.893333pt;}
.y45{bottom:429.893333pt;}
.yc0{bottom:434.213333pt;}
.y70{bottom:434.693333pt;}
.y103{bottom:438.293333pt;}
.y44{bottom:445.493333pt;}
.y6f{bottom:447.973333pt;}
.y61{bottom:451.413333pt;}
.y14{bottom:452.533333pt;}
.y102{bottom:453.893333pt;}
.ye4{bottom:454.453333pt;}
.y98{bottom:457.573333pt;}
.y43{bottom:461.093333pt;}
.y80{bottom:464.293333pt;}
.y60{bottom:464.693333pt;}
.ybf{bottom:465.813333pt;}
.y13{bottom:468.213333pt;}
.y101{bottom:469.493333pt;}
.ye3{bottom:470.053333pt;}
.y6e{bottom:472.293333pt;}
.y97{bottom:473.173333pt;}
.y42{bottom:476.773333pt;}
.y7f{bottom:477.573333pt;}
.ybe{bottom:481.413333pt;}
.y100{bottom:485.173333pt;}
.ye2{bottom:485.653333pt;}
.y96{bottom:488.773333pt;}
.y5f{bottom:489.013333pt;}
.y41{bottom:492.373333pt;}
.y6d{bottom:496.533333pt;}
.y12{bottom:499.813333pt;}
.ye1{bottom:501.333333pt;}
.y7e{bottom:501.893333pt;}
.y95{bottom:504.453333pt;}
.ybd{bottom:505.093333pt;}
.y40{bottom:508.053333pt;}
.y5e{bottom:513.333333pt;}
.y11{bottom:515.413333pt;}
.yff{bottom:516.773333pt;}
.y94{bottom:520.053333pt;}
.y3f{bottom:523.653333pt;}
.y7d{bottom:526.213333pt;}
.y10{bottom:531.093333pt;}
.yfe{bottom:532.453333pt;}
.ye0{bottom:532.933333pt;}
.y93{bottom:535.733333pt;}
.ybc{bottom:536.693333pt;}
.y3e{bottom:539.253333pt;}
.yfd{bottom:548.053333pt;}
.ydf{bottom:548.613333pt;}
.y92{bottom:551.333333pt;}
.ybb{bottom:552.373333pt;}
.y3d{bottom:554.933333pt;}
.y6c{bottom:555.493333pt;}
.y5d{bottom:556.613333pt;}
.yf{bottom:562.693333pt;}
.y3c{bottom:570.533333pt;}
.yde{bottom:572.213333pt;}
.y91{bottom:574.933333pt;}
.yba{bottom:575.973333pt;}
.ye{bottom:578.373333pt;}
.yfc{bottom:579.653333pt;}
.y7c{bottom:585.093333pt;}
.y6b{bottom:587.093333pt;}
.y5c{bottom:588.213333pt;}
.yd{bottom:593.973333pt;}
.y3b{bottom:594.453333pt;}
.yfb{bottom:595.333333pt;}
.ydd{bottom:601.173333pt;}
.y90{bottom:606.613333pt;}
.yb9{bottom:607.573333pt;}
.y6a{bottom:615.733333pt;}
.y7b{bottom:616.773333pt;}
.y5b{bottom:619.813333pt;}
.y8f{bottom:622.213333pt;}
.yb8{bottom:623.253333pt;}
.yc{bottom:625.573333pt;}
.yfa{bottom:626.933333pt;}
.y3a{bottom:627.413333pt;}
.ydc{bottom:632.773333pt;}
.y8e{bottom:637.813333pt;}
.yb7{bottom:638.853333pt;}
.yf9{bottom:642.533333pt;}
.y7a{bottom:648.373333pt;}
.y5a{bottom:648.453333pt;}
.y39{bottom:651.333333pt;}
.yb{bottom:657.253333pt;}
.yf8{bottom:658.213333pt;}
.y8d{bottom:661.493333pt;}
.yb6{bottom:662.533333pt;}
.ydb{bottom:672.053333pt;}
.ya{bottom:672.853333pt;}
.yf7{bottom:673.813333pt;}
.y79{bottom:677.013333pt;}
.y38{bottom:684.213333pt;}
.y8c{bottom:693.093333pt;}
.yb5{bottom:694.133333pt;}
.y9{bottom:696.773333pt;}
.y37{bottom:699.813333pt;}
.yda{bottom:703.733333pt;}
.yf6{bottom:705.493333pt;}
.y8b{bottom:708.773333pt;}
.yb4{bottom:709.733333pt;}
.y36{bottom:715.493333pt;}
.yd9{bottom:719.333333pt;}
.yf5{bottom:721.093333pt;}
.yb3{bottom:725.413333pt;}
.y35{bottom:731.093333pt;}
.y8a{bottom:732.693333pt;}
.yf4{bottom:736.693333pt;}
.y8{bottom:739.653333pt;}
.yb2{bottom:741.013333pt;}
.yd8{bottom:742.933333pt;}
.y34{bottom:746.693333pt;}
.yb1{bottom:756.693333pt;}
.yf3{bottom:760.613333pt;}
.y33{bottom:762.373333pt;}
.y7{bottom:771.333333pt;}
.yd7{bottom:771.893333pt;}
.y89{bottom:775.573333pt;}
.yb0{bottom:780.293333pt;}
.y32{bottom:785.973333pt;}
.y6{bottom:802.933333pt;}
.yd6{bottom:803.573333pt;}
.y88{bottom:804.213333pt;}
.yaf{bottom:811.893333pt;}
.y31{bottom:817.653333pt;}
.yd5{bottom:819.173333pt;}
.yae{bottom:827.573333pt;}
.y30{bottom:833.253333pt;}
.y5{bottom:834.613333pt;}
.yd4{bottom:842.853333pt;}
.y2f{bottom:848.853333pt;}
.yad{bottom:851.173333pt;}
.y2e{bottom:864.533333pt;}
.y4{bottom:866.373333pt;}
.yd3{bottom:874.453333pt;}
.yac{bottom:880.133333pt;}
.y2d{bottom:888.133333pt;}
.yd2{bottom:890.053333pt;}
.y69{bottom:892.773333pt;}
.y59{bottom:897.520000pt;}
.y3{bottom:899.760000pt;}
.y10f{bottom:903.840000pt;}
.y68{bottom:906.080000pt;}
.y57{bottom:910.800000pt;}
.yab{bottom:911.840000pt;}
.yd1{bottom:913.760000pt;}
.y2c{bottom:919.840000pt;}
.yaa{bottom:927.440000pt;}
.y67{bottom:930.400000pt;}
.y55{bottom:935.120000pt;}
.y2b{bottom:935.440000pt;}
.y78{bottom:940.000000pt;}
.ya9{bottom:943.040000pt;}
.yd0{bottom:945.360000pt;}
.y2a{bottom:951.040000pt;}
.y77{bottom:953.360000pt;}
.y65{bottom:954.640000pt;}
.ya8{bottom:958.720000pt;}
.ycf{bottom:961.040000pt;}
.y29{bottom:966.720000pt;}
.ya7{bottom:974.320000pt;}
.y76{bottom:977.680000pt;}
.y54{bottom:978.400000pt;}
.y28{bottom:982.320000pt;}
.yce{bottom:984.640000pt;}
.ya6{bottom:990.000000pt;}
.y27{bottom:998.000000pt;}
.y75{bottom:1001.920000pt;}
.y53{bottom:1002.320000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.hd{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:47.414062pt;}
.h7{height:49.581562pt;}
.he{height:53.309531pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:47.706667pt;}
.w12{width:58.720000pt;}
.wd{width:77.280000pt;}
.w11{width:82.320000pt;}
.w7{width:82.560000pt;}
.wa{width:82.640000pt;}
.w13{width:92.560000pt;}
.w10{width:95.680000pt;}
.we{width:95.760000pt;}
.w5{width:106.400000pt;}
.w6{width:115.626667pt;}
.wf{width:120.346667pt;}
.w14{width:124.986667pt;}
.w8{width:130.640000pt;}
.wb{width:171.600000pt;}
.w3{width:180.080000pt;}
.w9{width:190.346667pt;}
.w4{width:200.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.280000pt;}
.x24{left:51.039988pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x25{left:88.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x10{left:194.586667pt;}
.x6{left:206.346667pt;}
.x14{left:220.746655pt;}
.xf{left:241.786655pt;}
.xb{left:244.026667pt;}
.x1a{left:246.986667pt;}
.x15{left:248.026667pt;}
.x20{left:258.266667pt;}
.x19{left:273.706655pt;}
.xa{left:276.586655pt;}
.x1e{left:277.706655pt;}
.x21{left:317.626667pt;}
.x11{left:325.866667pt;}
.x1b{left:343.386667pt;}
.xc{left:351.066667pt;}
.x8{left:387.066667pt;}
.x22{left:410.826667pt;}
.x16{left:420.346667pt;}
.x1c{left:464.453333pt;}
.xd{left:467.413333pt;}
.x17{left:468.693333pt;}
.x12{left:516.853333pt;}
.x1f{left:574.053322pt;}
.x9{left:614.053322pt;}
.x23{left:626.053322pt;}
.x1d{left:635.013322pt;}
.xe{left:643.013322pt;}
.x18{left:661.013322pt;}
.x13{left:668.053322pt;}
.x3{left:711.413322pt;}
}




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