
    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_6ed91c7fad9a633c97b47748.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_db357fd681542df66f540980.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a9e291c54f758dced9db1313.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_16afadc861b4071296e79062.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')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_64793e18dfa3bd4e2d13bc47.woff')format("woff");}.ff7{font-family:ff7;line-height:0.969238;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_44cc4280ba92eaeb93bd0f74.woff')format("woff");}.ff8{font-family:ff8;line-height:0.969238;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_2a3762b16bb369bd32d001ff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_7286b33d4746207f97df1ad0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:16.506720px;}
.ls7{letter-spacing:46.002720px;}
.lsb{letter-spacing:46.026720px;}
.ls3{letter-spacing:155.700000px;}
.ls2{letter-spacing:636.840000px;}
.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:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-8.007840px;}
._4{margin-left:-6.784320px;}
._6{margin-left:-5.344320px;}
._7{margin-left:-4.192320px;}
._8{margin-left:-2.952000px;}
._1{margin-left:-1.279680px;}
._3{width:1.212480px;}
._c{width:2.748960px;}
._2{width:4.089840px;}
._d{width:5.139360px;}
._f{width:6.636960px;}
._a{width:7.956000px;}
._9{width:9.262800px;}
._e{width:10.381920px;}
._15{width:11.396880px;}
._14{width:12.430080px;}
._b{width:13.857120px;}
._13{width:16.254720px;}
._11{width:17.663760px;}
._10{width:19.105920px;}
._12{width:20.779200px;}
._16{width:22.631760px;}
._17{width:24.210000px;}
._3b{width:25.398000px;}
._23{width:26.772480px;}
._41{width:28.087200px;}
._3e{width:29.922480px;}
._1f{width:32.748480px;}
._43{width:34.105680px;}
._36{width:38.946240px;}
._35{width:39.979440px;}
._1b{width:44.820000px;}
._30{width:46.057680px;}
._4b{width:48.089520px;}
._3a{width:51.393600px;}
._1d{width:52.409520px;}
._2e{width:54.799920px;}
._4a{width:56.891520px;}
._28{width:58.445280px;}
._29{width:61.254000px;}
._2b{width:66.973680px;}
._4c{width:68.288400px;}
._26{width:71.004000px;}
._21{width:72.172800px;}
._20{width:73.325520px;}
._46{width:74.383920px;}
._47{width:76.097520px;}
._40{width:84.381120px;}
._27{width:87.727680px;}
._2d{width:90.519120px;}
._1c{width:94.600080px;}
._3c{width:97.886880px;}
._3f{width:101.096640px;}
._45{width:104.981040px;}
._34{width:112.169520px;}
._39{width:114.619680px;}
._3d{width:118.367280px;}
._24{width:120.936960px;}
._33{width:122.627520px;}
._37{width:128.962080px;}
._22{width:132.607440px;}
._18{width:134.587920px;}
._5{width:136.122000px;}
._48{width:138.267360px;}
._44{width:141.930000px;}
._2a{width:145.987200px;}
._25{width:147.350880px;}
._42{width:151.252560px;}
._49{width:161.710560px;}
._1a{width:165.654720px;}
._2f{width:172.031760px;}
._32{width:174.260160px;}
._1e{width:188.184240px;}
._31{width:203.704560px;}
._19{width:212.387040px;}
._38{width:227.677440px;}
._2c{width:254.362320px;}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:3.240000px;}
.ybf{bottom:11.700000px;}
.yac{bottom:11.880000px;}
.yba{bottom:11.910000px;}
.yb6{bottom:20.340000px;}
.ybc{bottom:20.370000px;}
.yae{bottom:20.520000px;}
.yd5{bottom:20.565000px;}
.yb2{bottom:28.980000px;}
.yb9{bottom:29.010000px;}
.yab{bottom:29.160000px;}
.yd6{bottom:29.205000px;}
.yc{bottom:37.080000px;}
.yad{bottom:37.620000px;}
.ybb{bottom:37.650000px;}
.yc3{bottom:37.800000px;}
.yd4{bottom:37.845000px;}
.yb1{bottom:46.260000px;}
.yb8{bottom:46.290000px;}
.yc4{bottom:46.440000px;}
.ydd{bottom:46.470000px;}
.ye2{bottom:46.485000px;}
.yb3{bottom:54.900000px;}
.ybd{bottom:54.930000px;}
.yc2{bottom:55.080000px;}
.yde{bottom:55.110000px;}
.yd7{bottom:55.125000px;}
.yb{bottom:57.060000px;}
.ydb{bottom:72.360000px;}
.ya{bottom:72.576000px;}
.yf4{bottom:111.276000px;}
.yee{bottom:113.976000px;}
.ya9{bottom:117.036000px;}
.yed{bottom:124.236000px;}
.y40{bottom:126.756000px;}
.y9a{bottom:127.296000px;}
.ye5{bottom:128.196000px;}
.yf3{bottom:128.376000px;}
.y74{bottom:131.256000px;}
.ya8{bottom:134.136000px;}
.yec{bottom:141.516000px;}
.y3f{bottom:144.036000px;}
.y99{bottom:144.576000px;}
.ye4{bottom:145.476000px;}
.yf2{bottom:145.656000px;}
.y73{bottom:148.536000px;}
.ya7{bottom:151.410000px;}
.yd1{bottom:155.550000px;}
.yeb{bottom:158.790000px;}
.y3e{bottom:161.310000px;}
.y98{bottom:161.670000px;}
.yf1{bottom:162.930000px;}
.y72{bottom:165.810000px;}
.ya6{bottom:168.690000px;}
.yd0{bottom:172.830000px;}
.yea{bottom:176.070000px;}
.y3d{bottom:178.410000px;}
.y97{bottom:178.950000px;}
.yf0{bottom:180.210000px;}
.y71{bottom:182.910000px;}
.ya5{bottom:185.970000px;}
.ycf{bottom:190.110000px;}
.ye9{bottom:193.350000px;}
.yef{bottom:194.250000px;}
.y3c{bottom:195.690000px;}
.y96{bottom:196.230000px;}
.y70{bottom:200.190000px;}
.ya4{bottom:203.250000px;}
.yce{bottom:207.390000px;}
.ye8{bottom:210.630000px;}
.y3b{bottom:212.970000px;}
.y95{bottom:213.510000px;}
.y6f{bottom:217.470000px;}
.ya3{bottom:220.530000px;}
.ycd{bottom:224.670000px;}
.ye7{bottom:227.730000px;}
.y3a{bottom:230.250000px;}
.y94{bottom:230.790000px;}
.y6e{bottom:234.750000px;}
.ya2{bottom:237.630000px;}
.ycc{bottom:241.770000px;}
.ye6{bottom:245.010000px;}
.y39{bottom:247.530000px;}
.y93{bottom:247.890000px;}
.ye3{bottom:250.950000px;}
.y6d{bottom:252.030000px;}
.ya1{bottom:254.910000px;}
.ycb{bottom:259.050000px;}
.y38{bottom:264.810000px;}
.y92{bottom:265.170000px;}
.y6c{bottom:269.310000px;}
.ya0{bottom:272.190000px;}
.yca{bottom:276.330000px;}
.y37{bottom:281.910000px;}
.y91{bottom:282.450000px;}
.y6b{bottom:286.410000px;}
.y9f{bottom:289.470000px;}
.yc9{bottom:293.610000px;}
.y36{bottom:299.190000px;}
.y90{bottom:299.730000px;}
.y6a{bottom:303.690000px;}
.y9e{bottom:306.750000px;}
.yc8{bottom:310.890000px;}
.y35{bottom:316.470000px;}
.y8f{bottom:317.010000px;}
.y69{bottom:320.970000px;}
.ye1{bottom:323.310000px;}
.y9d{bottom:323.850000px;}
.yc7{bottom:328.170000px;}
.y34{bottom:333.750000px;}
.y8e{bottom:334.290000px;}
.y68{bottom:338.295000px;}
.y9c{bottom:341.175000px;}
.yc6{bottom:345.315000px;}
.y33{bottom:351.075000px;}
.y8d{bottom:351.435000px;}
.y9b{bottom:355.215000px;}
.y67{bottom:355.575000px;}
.yc5{bottom:362.595000px;}
.y32{bottom:368.175000px;}
.y8c{bottom:368.715000px;}
.y66{bottom:372.675000px;}
.yc1{bottom:378.435000px;}
.y31{bottom:385.455000px;}
.y8b{bottom:385.995000px;}
.y65{bottom:389.955000px;}
.ye0{bottom:395.715000px;}
.y30{bottom:402.735000px;}
.y8a{bottom:403.275000px;}
.y64{bottom:407.235000px;}
.y2f{bottom:420.015000px;}
.y89{bottom:420.555000px;}
.y63{bottom:424.515000px;}
.y2e{bottom:437.295000px;}
.y88{bottom:437.835000px;}
.y62{bottom:441.795000px;}
.yc0{bottom:450.975000px;}
.y87{bottom:454.935000px;}
.y2d{bottom:456.735000px;}
.y61{bottom:459.075000px;}
.y86{bottom:472.215000px;}
.y2c{bottom:474.015000px;}
.y60{bottom:476.175000px;}
.ydf{bottom:485.355000px;}
.y85{bottom:489.495000px;}
.y2b{bottom:491.295000px;}
.y5f{bottom:493.455000px;}
.y84{bottom:506.775000px;}
.y2a{bottom:508.575000px;}
.y5e{bottom:510.735000px;}
.ybe{bottom:523.335000px;}
.y83{bottom:524.055000px;}
.y29{bottom:525.675000px;}
.y5d{bottom:528.015000px;}
.y82{bottom:541.335000px;}
.y28{bottom:542.955000px;}
.y5c{bottom:545.295000px;}
.ydc{bottom:557.715000px;}
.y81{bottom:558.435000px;}
.y27{bottom:560.235000px;}
.y5b{bottom:562.575000px;}
.y80{bottom:575.715000px;}
.y26{bottom:577.515000px;}
.y5a{bottom:579.675000px;}
.y7f{bottom:592.995000px;}
.y25{bottom:594.795000px;}
.yb7{bottom:595.695000px;}
.y59{bottom:596.955000px;}
.y7e{bottom:610.305000px;}
.y24{bottom:612.105000px;}
.y58{bottom:614.265000px;}
.y7d{bottom:627.585000px;}
.y23{bottom:629.205000px;}
.yda{bottom:630.105000px;}
.y57{bottom:631.545000px;}
.y7c{bottom:644.685000px;}
.y22{bottom:646.485000px;}
.y56{bottom:648.825000px;}
.y7b{bottom:661.965000px;}
.y21{bottom:663.765000px;}
.y55{bottom:666.105000px;}
.yb5{bottom:668.085000px;}
.y7a{bottom:679.245000px;}
.y20{bottom:681.045000px;}
.y54{bottom:683.205000px;}
.y79{bottom:696.525000px;}
.y1f{bottom:698.325000px;}
.y53{bottom:700.485000px;}
.y78{bottom:713.805000px;}
.y1e{bottom:715.425000px;}
.y52{bottom:717.765000px;}
.yd9{bottom:719.745000px;}
.y77{bottom:731.085000px;}
.y1d{bottom:732.705000px;}
.y51{bottom:735.045000px;}
.yb4{bottom:740.445000px;}
.y76{bottom:748.185000px;}
.y1c{bottom:749.985000px;}
.y50{bottom:752.325000px;}
.y75{bottom:762.405000px;}
.y1b{bottom:767.265000px;}
.y4f{bottom:769.425000px;}
.y1a{bottom:784.545000px;}
.y4e{bottom:786.705000px;}
.yd8{bottom:792.105000px;}
.y19{bottom:801.825000px;}
.y4d{bottom:803.985000px;}
.yb0{bottom:812.805000px;}
.y18{bottom:818.925000px;}
.y4c{bottom:821.265000px;}
.y17{bottom:836.205000px;}
.y4b{bottom:838.545000px;}
.y16{bottom:853.485000px;}
.y4a{bottom:855.825000px;}
.yd3{bottom:864.465000px;}
.y15{bottom:872.970000px;}
.yaa{bottom:885.210000px;}
.y49{bottom:890.250000px;}
.y14{bottom:890.790000px;}
.y48{bottom:907.530000px;}
.y13{bottom:909.690000px;}
.y47{bottom:924.810000px;}
.y12{bottom:928.590000px;}
.yd2{bottom:936.870000px;}
.y46{bottom:942.090000px;}
.y11{bottom:947.670000px;}
.y45{bottom:959.370000px;}
.y10{bottom:966.210000px;}
.y44{bottom:976.470000px;}
.yf{bottom:984.210000px;}
.y43{bottom:993.750000px;}
.ye{bottom:1004.910000px;}
.y42{bottom:1011.030000px;}
.yd{bottom:1025.610000px;}
.y41{bottom:1028.310000px;}
.y9{bottom:1047.210000px;}
.y8{bottom:1067.550000px;}
.y7{bottom:1084.830000px;}
.y6{bottom:1102.650000px;}
.y5{bottom:1119.570000px;}
.y4{bottom:1162.080000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h10{height:34.560000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h13{height:43.681992px;}
.hb{height:45.024258px;}
.h9{height:46.251562px;}
.h8{height:46.736719px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.hc{height:51.660000px;}
.he{height:68.940000px;}
.hd{height:68.976000px;}
.hf{height:69.120000px;}
.h11{height:69.156000px;}
.h6{height:71.613281px;}
.h12{height:86.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:82.620000px;}
.w6{width:86.796000px;}
.wd{width:90.360000px;}
.w4{width:95.256000px;}
.w3{width:97.020000px;}
.wa{width:97.596000px;}
.wb{width:109.800000px;}
.wc{width:110.376000px;}
.w9{width:124.200000px;}
.we{width:138.096000px;}
.w8{width:149.796000px;}
.w7{width:158.760000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x9{left:110.015987px;}
.x15{left:114.515987px;}
.x1{left:126.215987px;}
.x24{left:131.975987px;}
.x8{left:134.315987px;}
.x5{left:158.429987px;}
.x10{left:162.029987px;}
.xd{left:163.469987px;}
.x16{left:185.429987px;}
.x22{left:190.109987px;}
.x13{left:199.289987px;}
.x17{left:206.850000px;}
.x1c{left:212.069987px;}
.x1d{left:234.030000px;}
.x25{left:288.614987px;}
.xa{left:299.594987px;}
.x18{left:303.195000px;}
.xc{left:311.294987px;}
.x1e{left:332.715000px;}
.x1b{left:349.094987px;}
.x11{left:356.834987px;}
.xf{left:359.534987px;}
.xb{left:367.814987px;}
.xe{left:369.434987px;}
.x14{left:376.994987px;}
.x7{left:386.354987px;}
.x23{left:393.194987px;}
.x26{left:400.214987px;}
.x6{left:412.274987px;}
.x1f{left:443.595000px;}
.x3{left:446.474987px;}
.x19{left:474.765000px;}
.x4{left:519.764987px;}
.x20{left:555.045000px;}
.x1a{left:634.605000px;}
.x21{left:646.305000px;}
.x12{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:14.672640pt;}
.ls7{letter-spacing:40.891307pt;}
.lsb{letter-spacing:40.912640pt;}
.ls3{letter-spacing:138.400000pt;}
.ls2{letter-spacing:566.080000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.118080pt;}
._4{margin-left:-6.030507pt;}
._6{margin-left:-4.750507pt;}
._7{margin-left:-3.726507pt;}
._8{margin-left:-2.624000pt;}
._1{margin-left:-1.137493pt;}
._3{width:1.077760pt;}
._c{width:2.443520pt;}
._2{width:3.635413pt;}
._d{width:4.568320pt;}
._f{width:5.899520pt;}
._a{width:7.072000pt;}
._9{width:8.233600pt;}
._e{width:9.228373pt;}
._15{width:10.130560pt;}
._14{width:11.048960pt;}
._b{width:12.317440pt;}
._13{width:14.448640pt;}
._11{width:15.701120pt;}
._10{width:16.983040pt;}
._12{width:18.470400pt;}
._16{width:20.117120pt;}
._17{width:21.520000pt;}
._3b{width:22.576000pt;}
._23{width:23.797760pt;}
._41{width:24.966400pt;}
._3e{width:26.597760pt;}
._1f{width:29.109760pt;}
._43{width:30.316160pt;}
._36{width:34.618880pt;}
._35{width:35.537280pt;}
._1b{width:39.840000pt;}
._30{width:40.940160pt;}
._4b{width:42.746240pt;}
._3a{width:45.683200pt;}
._1d{width:46.586240pt;}
._2e{width:48.711040pt;}
._4a{width:50.570240pt;}
._28{width:51.951360pt;}
._29{width:54.448000pt;}
._2b{width:59.532160pt;}
._4c{width:60.700800pt;}
._26{width:63.114667pt;}
._21{width:64.153600pt;}
._20{width:65.178240pt;}
._46{width:66.119040pt;}
._47{width:67.642240pt;}
._40{width:75.005440pt;}
._27{width:77.980160pt;}
._2d{width:80.461440pt;}
._1c{width:84.088960pt;}
._3c{width:87.010560pt;}
._3f{width:89.863680pt;}
._45{width:93.316480pt;}
._34{width:99.706240pt;}
._39{width:101.884160pt;}
._3d{width:105.215360pt;}
._24{width:107.499520pt;}
._33{width:109.002240pt;}
._37{width:114.632960pt;}
._22{width:117.873280pt;}
._18{width:119.633707pt;}
._5{width:120.997333pt;}
._48{width:122.904320pt;}
._44{width:126.160000pt;}
._2a{width:129.766400pt;}
._25{width:130.978560pt;}
._42{width:134.446720pt;}
._49{width:143.742720pt;}
._1a{width:147.248640pt;}
._2f{width:152.917120pt;}
._32{width:154.897920pt;}
._1e{width:167.274880pt;}
._31{width:181.070720pt;}
._19{width:188.788480pt;}
._38{width:202.379947pt;}
._2c{width:226.099840pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:2.880000pt;}
.ybf{bottom:10.400000pt;}
.yac{bottom:10.560000pt;}
.yba{bottom:10.586667pt;}
.yb6{bottom:18.080000pt;}
.ybc{bottom:18.106667pt;}
.yae{bottom:18.240000pt;}
.yd5{bottom:18.280000pt;}
.yb2{bottom:25.760000pt;}
.yb9{bottom:25.786667pt;}
.yab{bottom:25.920000pt;}
.yd6{bottom:25.960000pt;}
.yc{bottom:32.960000pt;}
.yad{bottom:33.440000pt;}
.ybb{bottom:33.466667pt;}
.yc3{bottom:33.600000pt;}
.yd4{bottom:33.640000pt;}
.yb1{bottom:41.120000pt;}
.yb8{bottom:41.146667pt;}
.yc4{bottom:41.280000pt;}
.ydd{bottom:41.306667pt;}
.ye2{bottom:41.320000pt;}
.yb3{bottom:48.800000pt;}
.ybd{bottom:48.826667pt;}
.yc2{bottom:48.960000pt;}
.yde{bottom:48.986667pt;}
.yd7{bottom:49.000000pt;}
.yb{bottom:50.720000pt;}
.ydb{bottom:64.320000pt;}
.ya{bottom:64.512000pt;}
.yf4{bottom:98.912000pt;}
.yee{bottom:101.312000pt;}
.ya9{bottom:104.032000pt;}
.yed{bottom:110.432000pt;}
.y40{bottom:112.672000pt;}
.y9a{bottom:113.152000pt;}
.ye5{bottom:113.952000pt;}
.yf3{bottom:114.112000pt;}
.y74{bottom:116.672000pt;}
.ya8{bottom:119.232000pt;}
.yec{bottom:125.792000pt;}
.y3f{bottom:128.032000pt;}
.y99{bottom:128.512000pt;}
.ye4{bottom:129.312000pt;}
.yf2{bottom:129.472000pt;}
.y73{bottom:132.032000pt;}
.ya7{bottom:134.586667pt;}
.yd1{bottom:138.266667pt;}
.yeb{bottom:141.146667pt;}
.y3e{bottom:143.386667pt;}
.y98{bottom:143.706667pt;}
.yf1{bottom:144.826667pt;}
.y72{bottom:147.386667pt;}
.ya6{bottom:149.946667pt;}
.yd0{bottom:153.626667pt;}
.yea{bottom:156.506667pt;}
.y3d{bottom:158.586667pt;}
.y97{bottom:159.066667pt;}
.yf0{bottom:160.186667pt;}
.y71{bottom:162.586667pt;}
.ya5{bottom:165.306667pt;}
.ycf{bottom:168.986667pt;}
.ye9{bottom:171.866667pt;}
.yef{bottom:172.666667pt;}
.y3c{bottom:173.946667pt;}
.y96{bottom:174.426667pt;}
.y70{bottom:177.946667pt;}
.ya4{bottom:180.666667pt;}
.yce{bottom:184.346667pt;}
.ye8{bottom:187.226667pt;}
.y3b{bottom:189.306667pt;}
.y95{bottom:189.786667pt;}
.y6f{bottom:193.306667pt;}
.ya3{bottom:196.026667pt;}
.ycd{bottom:199.706667pt;}
.ye7{bottom:202.426667pt;}
.y3a{bottom:204.666667pt;}
.y94{bottom:205.146667pt;}
.y6e{bottom:208.666667pt;}
.ya2{bottom:211.226667pt;}
.ycc{bottom:214.906667pt;}
.ye6{bottom:217.786667pt;}
.y39{bottom:220.026667pt;}
.y93{bottom:220.346667pt;}
.ye3{bottom:223.066667pt;}
.y6d{bottom:224.026667pt;}
.ya1{bottom:226.586667pt;}
.ycb{bottom:230.266667pt;}
.y38{bottom:235.386667pt;}
.y92{bottom:235.706667pt;}
.y6c{bottom:239.386667pt;}
.ya0{bottom:241.946667pt;}
.yca{bottom:245.626667pt;}
.y37{bottom:250.586667pt;}
.y91{bottom:251.066667pt;}
.y6b{bottom:254.586667pt;}
.y9f{bottom:257.306667pt;}
.yc9{bottom:260.986667pt;}
.y36{bottom:265.946667pt;}
.y90{bottom:266.426667pt;}
.y6a{bottom:269.946667pt;}
.y9e{bottom:272.666667pt;}
.yc8{bottom:276.346667pt;}
.y35{bottom:281.306667pt;}
.y8f{bottom:281.786667pt;}
.y69{bottom:285.306667pt;}
.ye1{bottom:287.386667pt;}
.y9d{bottom:287.866667pt;}
.yc7{bottom:291.706667pt;}
.y34{bottom:296.666667pt;}
.y8e{bottom:297.146667pt;}
.y68{bottom:300.706667pt;}
.y9c{bottom:303.266667pt;}
.yc6{bottom:306.946667pt;}
.y33{bottom:312.066667pt;}
.y8d{bottom:312.386667pt;}
.y9b{bottom:315.746667pt;}
.y67{bottom:316.066667pt;}
.yc5{bottom:322.306667pt;}
.y32{bottom:327.266667pt;}
.y8c{bottom:327.746667pt;}
.y66{bottom:331.266667pt;}
.yc1{bottom:336.386667pt;}
.y31{bottom:342.626667pt;}
.y8b{bottom:343.106667pt;}
.y65{bottom:346.626667pt;}
.ye0{bottom:351.746667pt;}
.y30{bottom:357.986667pt;}
.y8a{bottom:358.466667pt;}
.y64{bottom:361.986667pt;}
.y2f{bottom:373.346667pt;}
.y89{bottom:373.826667pt;}
.y63{bottom:377.346667pt;}
.y2e{bottom:388.706667pt;}
.y88{bottom:389.186667pt;}
.y62{bottom:392.706667pt;}
.yc0{bottom:400.866667pt;}
.y87{bottom:404.386667pt;}
.y2d{bottom:405.986667pt;}
.y61{bottom:408.066667pt;}
.y86{bottom:419.746667pt;}
.y2c{bottom:421.346667pt;}
.y60{bottom:423.266667pt;}
.ydf{bottom:431.426667pt;}
.y85{bottom:435.106667pt;}
.y2b{bottom:436.706667pt;}
.y5f{bottom:438.626667pt;}
.y84{bottom:450.466667pt;}
.y2a{bottom:452.066667pt;}
.y5e{bottom:453.986667pt;}
.ybe{bottom:465.186667pt;}
.y83{bottom:465.826667pt;}
.y29{bottom:467.266667pt;}
.y5d{bottom:469.346667pt;}
.y82{bottom:481.186667pt;}
.y28{bottom:482.626667pt;}
.y5c{bottom:484.706667pt;}
.ydc{bottom:495.746667pt;}
.y81{bottom:496.386667pt;}
.y27{bottom:497.986667pt;}
.y5b{bottom:500.066667pt;}
.y80{bottom:511.746667pt;}
.y26{bottom:513.346667pt;}
.y5a{bottom:515.266667pt;}
.y7f{bottom:527.106667pt;}
.y25{bottom:528.706667pt;}
.yb7{bottom:529.506667pt;}
.y59{bottom:530.626667pt;}
.y7e{bottom:542.493333pt;}
.y24{bottom:544.093333pt;}
.y58{bottom:546.013333pt;}
.y7d{bottom:557.853333pt;}
.y23{bottom:559.293333pt;}
.yda{bottom:560.093333pt;}
.y57{bottom:561.373333pt;}
.y7c{bottom:573.053333pt;}
.y22{bottom:574.653333pt;}
.y56{bottom:576.733333pt;}
.y7b{bottom:588.413333pt;}
.y21{bottom:590.013333pt;}
.y55{bottom:592.093333pt;}
.yb5{bottom:593.853333pt;}
.y7a{bottom:603.773333pt;}
.y20{bottom:605.373333pt;}
.y54{bottom:607.293333pt;}
.y79{bottom:619.133333pt;}
.y1f{bottom:620.733333pt;}
.y53{bottom:622.653333pt;}
.y78{bottom:634.493333pt;}
.y1e{bottom:635.933333pt;}
.y52{bottom:638.013333pt;}
.yd9{bottom:639.773333pt;}
.y77{bottom:649.853333pt;}
.y1d{bottom:651.293333pt;}
.y51{bottom:653.373333pt;}
.yb4{bottom:658.173333pt;}
.y76{bottom:665.053333pt;}
.y1c{bottom:666.653333pt;}
.y50{bottom:668.733333pt;}
.y75{bottom:677.693333pt;}
.y1b{bottom:682.013333pt;}
.y4f{bottom:683.933333pt;}
.y1a{bottom:697.373333pt;}
.y4e{bottom:699.293333pt;}
.yd8{bottom:704.093333pt;}
.y19{bottom:712.733333pt;}
.y4d{bottom:714.653333pt;}
.yb0{bottom:722.493333pt;}
.y18{bottom:727.933333pt;}
.y4c{bottom:730.013333pt;}
.y17{bottom:743.293333pt;}
.y4b{bottom:745.373333pt;}
.y16{bottom:758.653333pt;}
.y4a{bottom:760.733333pt;}
.yd3{bottom:768.413333pt;}
.y15{bottom:775.973333pt;}
.yaa{bottom:786.853333pt;}
.y49{bottom:791.333333pt;}
.y14{bottom:791.813333pt;}
.y48{bottom:806.693333pt;}
.y13{bottom:808.613333pt;}
.y47{bottom:822.053333pt;}
.y12{bottom:825.413333pt;}
.yd2{bottom:832.773333pt;}
.y46{bottom:837.413333pt;}
.y11{bottom:842.373333pt;}
.y45{bottom:852.773333pt;}
.y10{bottom:858.853333pt;}
.y44{bottom:867.973333pt;}
.yf{bottom:874.853333pt;}
.y43{bottom:883.333333pt;}
.ye{bottom:893.253333pt;}
.y42{bottom:898.693333pt;}
.yd{bottom:911.653333pt;}
.y41{bottom:914.053333pt;}
.y9{bottom:930.853333pt;}
.y8{bottom:948.933333pt;}
.y7{bottom:964.293333pt;}
.y6{bottom:980.133333pt;}
.y5{bottom:995.173333pt;}
.y4{bottom:1032.960000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h10{height:30.720000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h13{height:38.828437pt;}
.hb{height:40.021563pt;}
.h9{height:41.112500pt;}
.h8{height:41.543750pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.hc{height:45.920000pt;}
.he{height:61.280000pt;}
.hd{height:61.312000pt;}
.hf{height:61.440000pt;}
.h11{height:61.472000pt;}
.h6{height:63.656250pt;}
.h12{height:76.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:73.440000pt;}
.w6{width:77.152000pt;}
.wd{width:80.320000pt;}
.w4{width:84.672000pt;}
.w3{width:86.240000pt;}
.wa{width:86.752000pt;}
.wb{width:97.600000pt;}
.wc{width:98.112000pt;}
.w9{width:110.400000pt;}
.we{width:122.752000pt;}
.w8{width:133.152000pt;}
.w7{width:141.120000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x9{left:97.791988pt;}
.x15{left:101.791988pt;}
.x1{left:112.191988pt;}
.x24{left:117.311988pt;}
.x8{left:119.391988pt;}
.x5{left:140.826655pt;}
.x10{left:144.026655pt;}
.xd{left:145.306655pt;}
.x16{left:164.826655pt;}
.x22{left:168.986655pt;}
.x13{left:177.146655pt;}
.x17{left:183.866667pt;}
.x1c{left:188.506655pt;}
.x1d{left:208.026667pt;}
.x25{left:256.546655pt;}
.xa{left:266.306655pt;}
.x18{left:269.506667pt;}
.xc{left:276.706655pt;}
.x1e{left:295.746667pt;}
.x1b{left:310.306655pt;}
.x11{left:317.186655pt;}
.xf{left:319.586655pt;}
.xb{left:326.946655pt;}
.xe{left:328.386655pt;}
.x14{left:335.106655pt;}
.x7{left:343.426655pt;}
.x23{left:349.506655pt;}
.x26{left:355.746655pt;}
.x6{left:366.466655pt;}
.x1f{left:394.306667pt;}
.x3{left:396.866655pt;}
.x19{left:422.013333pt;}
.x4{left:462.013322pt;}
.x20{left:493.373333pt;}
.x1a{left:564.093333pt;}
.x21{left:574.493333pt;}
.x12{left:698.053322pt;}
}




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