
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f10dd515855befac688053eb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a112373ce677bb71636c913d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1641efa8b013ff5681e3f215.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_fc6058cf777558d0ca0c1601.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls2{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.541200px;}
.lse{letter-spacing:-0.524400px;}
.ls3{letter-spacing:-0.334200px;}
.ls9{letter-spacing:-0.299400px;}
.ls7{letter-spacing:-0.259200px;}
.ls5{letter-spacing:-0.166800px;}
.ls8{letter-spacing:-0.086400px;}
.ls4{letter-spacing:-0.028800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.097920px;}
.ls6{letter-spacing:0.178800px;}
.lsa{letter-spacing:0.184200px;}
.lsc{letter-spacing:0.351360px;}
.lsd{letter-spacing:7.585920px;}
.lsf{letter-spacing:13.420800px;}
.lsb{letter-spacing:42.865920px;}
.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;}
}
.ws6{word-spacing:-14.123400px;}
.ws3{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.ws1{word-spacing:-13.605000px;}
.ws7{word-spacing:-13.414800px;}
.ws8{word-spacing:-13.398000px;}
.ws0{word-spacing:-13.165200px;}
.ws4{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-11.094240px;}
._1c{margin-left:-2.374080px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._c{width:2.761920px;}
._7{width:4.181760px;}
._6{width:5.385600px;}
._8{width:6.399360px;}
._9{width:7.666560px;}
._10{width:8.680320px;}
._12{width:10.391040px;}
._b{width:12.038400px;}
._15{width:15.649920px;}
._e{width:16.790400px;}
._f{width:17.804160px;}
._1a{width:19.071360px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._14{width:22.999680px;}
._11{width:24.060480px;}
._1{width:25.060800px;}
._38{width:26.104320px;}
._13{width:27.118080px;}
._d{width:28.321920px;}
._16{width:30.096000px;}
._17{width:31.426560px;}
._19{width:32.820480px;}
._a{width:34.277760px;}
._1b{width:36.495360px;}
._18{width:37.699200px;}
._37{width:40.740480px;}
._20{width:42.197760px;}
._29{width:43.528320px;}
._2f{width:45.429120px;}
._4b{width:46.638960px;}
._3b{width:47.773440px;}
._22{width:49.864320px;}
._49{width:50.971200px;}
._2b{width:52.398720px;}
._2c{width:53.412480px;}
._41{width:54.616320px;}
._2d{width:56.010240px;}
._3a{width:57.277440px;}
._2a{width:59.333760px;}
._46{width:61.459200px;}
._39{width:62.472960px;}
._26{width:65.894400px;}
._21{width:69.505920px;}
._43{width:76.158720px;}
._32{width:77.806080px;}
._31{width:85.524480px;}
._27{width:92.125440px;}
._23{width:98.714880px;}
._1e{width:102.072960px;}
._1f{width:103.720320px;}
._4e{width:104.797440px;}
._4d{width:106.001280px;}
._2e{width:108.662400px;}
._35{width:110.119680px;}
._3e{width:114.174720px;}
._40{width:120.718080px;}
._3d{width:122.094720px;}
._30{width:133.909440px;}
._28{width:149.339520px;}
._33{width:165.559680px;}
._24{width:173.986560px;}
._48{width:182.033280px;}
._45{width:185.581440px;}
._25{width:191.030400px;}
._1d{width:200.914560px;}
._34{width:202.211520px;}
._36{width:208.517760px;}
._3f{width:225.021120px;}
._3c{width:251.919360px;}
._4a{width:277.706880px;}
._44{width:286.830720px;}
._47{width:295.130880px;}
._42{width:344.615040px;}
._4c{width:843.160800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.y81{bottom:21.780000px;}
.y5{bottom:21.960000px;}
.y80{bottom:40.320000px;}
.y4{bottom:40.350000px;}
.y8b{bottom:40.500000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y7f{bottom:58.680000px;}
.y84{bottom:58.860000px;}
.y3{bottom:58.890000px;}
.y7e{bottom:77.220000px;}
.y8a{bottom:77.400000px;}
.y95{bottom:89.280000px;}
.ya8{bottom:93.060000px;}
.y78{bottom:95.400000px;}
.y8e{bottom:95.580000px;}
.y83{bottom:95.760000px;}
.y87{bottom:95.790000px;}
.y7d{bottom:95.805000px;}
.y112{bottom:97.740000px;}
.y3d{bottom:98.280000px;}
.yeb{bottom:104.220000px;}
.y94{bottom:107.820000px;}
.ya7{bottom:111.600000px;}
.yd4{bottom:112.320000px;}
.y77{bottom:113.760000px;}
.y86{bottom:114.150000px;}
.y7c{bottom:114.165000px;}
.y89{bottom:114.300000px;}
.y111{bottom:116.280000px;}
.y3c{bottom:116.820000px;}
.yea{bottom:122.760000px;}
.y93{bottom:126.360000px;}
.ya6{bottom:130.140000px;}
.yd3{bottom:130.860000px;}
.y76{bottom:132.300000px;}
.y7b{bottom:132.705000px;}
.y110{bottom:134.820000px;}
.y3b{bottom:135.360000px;}
.y92{bottom:144.720000px;}
.y75{bottom:150.660000px;}
.ye9{bottom:151.740000px;}
.y10f{bottom:153.180000px;}
.y3a{bottom:153.720000px;}
.ya5{bottom:158.940000px;}
.yd2{bottom:159.660000px;}
.y91{bottom:163.260000px;}
.y74{bottom:169.200000px;}
.ye8{bottom:170.280000px;}
.y10e{bottom:171.720000px;}
.y39{bottom:172.260000px;}
.y90{bottom:181.620000px;}
.y73{bottom:187.740000px;}
.ya4{bottom:187.920000px;}
.yd1{bottom:188.640000px;}
.ye7{bottom:188.820000px;}
.y10d{bottom:190.080000px;}
.y38{bottom:190.620000px;}
.y8f{bottom:200.160000px;}
.y72{bottom:206.100000px;}
.ya3{bottom:206.460000px;}
.yd0{bottom:207.180000px;}
.y10c{bottom:208.620000px;}
.y37{bottom:209.160000px;}
.y8d{bottom:216.030000px;}
.ye6{bottom:217.650000px;}
.y71{bottom:224.670000px;}
.y10b{bottom:227.010000px;}
.y36{bottom:227.730000px;}
.ya2{bottom:235.470000px;}
.ycf{bottom:236.190000px;}
.y70{bottom:243.030000px;}
.y10a{bottom:245.550000px;}
.y35{bottom:246.090000px;}
.ya1{bottom:254.010000px;}
.y6f{bottom:261.570000px;}
.y109{bottom:264.090000px;}
.y34{bottom:264.630000px;}
.yce{bottom:265.170000px;}
.ya0{bottom:272.370000px;}
.y6e{bottom:279.930000px;}
.y108{bottom:282.450000px;}
.y33{bottom:282.990000px;}
.ycd{bottom:283.710000px;}
.y6d{bottom:298.470000px;}
.y107{bottom:300.990000px;}
.y9f{bottom:301.350000px;}
.y32{bottom:301.530000px;}
.ycc{bottom:312.510000px;}
.y6c{bottom:317.010000px;}
.y106{bottom:319.350000px;}
.y31{bottom:319.890000px;}
.y8c{bottom:327.450000px;}
.ycb{bottom:331.050000px;}
.y6b{bottom:335.370000px;}
.y105{bottom:337.890000px;}
.y30{bottom:338.430000px;}
.y9e{bottom:348.690000px;}
.yca{bottom:349.590000px;}
.y6a{bottom:353.910000px;}
.y104{bottom:356.430000px;}
.y2f{bottom:356.970000px;}
.ye5{bottom:360.030000px;}
.y9d{bottom:367.230000px;}
.y69{bottom:372.270000px;}
.y103{bottom:374.790000px;}
.y2e{bottom:375.330000px;}
.yc9{bottom:378.390000px;}
.ye4{bottom:378.570000px;}
.y9c{bottom:385.770000px;}
.y68{bottom:390.810000px;}
.y2d{bottom:393.870000px;}
.y102{bottom:405.390000px;}
.yc8{bottom:407.370000px;}
.y67{bottom:409.350000px;}
.y2c{bottom:412.230000px;}
.y9b{bottom:414.570000px;}
.yc7{bottom:425.910000px;}
.y66{bottom:427.710000px;}
.y2b{bottom:430.770000px;}
.y9a{bottom:433.110000px;}
.y101{bottom:435.810000px;}
.ye3{bottom:436.350000px;}
.y65{bottom:446.295000px;}
.y2a{bottom:449.355000px;}
.yc6{bottom:454.935000px;}
.y88{bottom:457.455000px;}
.y99{bottom:462.135000px;}
.y64{bottom:464.655000px;}
.y100{bottom:466.275000px;}
.y29{bottom:467.715000px;}
.yc5{bottom:473.475000px;}
.y98{bottom:480.675000px;}
.y63{bottom:483.195000px;}
.ye2{bottom:483.735000px;}
.y28{bottom:486.255000px;}
.yff{bottom:496.695000px;}
.y62{bottom:501.555000px;}
.yc4{bottom:502.275000px;}
.y27{bottom:504.615000px;}
.y97{bottom:509.475000px;}
.y61{bottom:520.095000px;}
.y26{bottom:523.155000px;}
.yfe{bottom:527.295000px;}
.y96{bottom:528.015000px;}
.yc3{bottom:531.255000px;}
.y60{bottom:538.635000px;}
.y25{bottom:545.475000px;}
.yc2{bottom:549.795000px;}
.y5f{bottom:556.995000px;}
.yfd{bottom:557.715000px;}
.y24{bottom:563.835000px;}
.y5e{bottom:575.535000px;}
.yc1{bottom:578.595000px;}
.y23{bottom:582.195000px;}
.y85{bottom:587.595000px;}
.yfc{bottom:588.135000px;}
.y5d{bottom:593.895000px;}
.yc0{bottom:597.135000px;}
.y22{bottom:600.735000px;}
.y5c{bottom:612.435000px;}
.yfb{bottom:618.555000px;}
.y21{bottom:619.275000px;}
.ybf{bottom:626.115000px;}
.y5b{bottom:630.975000px;}
.y20{bottom:637.635000px;}
.ybe{bottom:644.655000px;}
.yfa{bottom:649.155000px;}
.y5a{bottom:649.335000px;}
.ye1{bottom:655.095000px;}
.y1f{bottom:656.175000px;}
.y59{bottom:667.875000px;}
.ybd{bottom:673.455000px;}
.ye0{bottom:673.635000px;}
.y1e{bottom:674.535000px;}
.yf9{bottom:679.575000px;}
.y58{bottom:686.265000px;}
.ybc{bottom:692.025000px;}
.y1d{bottom:693.105000px;}
.ydf{bottom:702.465000px;}
.y57{bottom:704.805000px;}
.yf8{bottom:710.025000px;}
.y1c{bottom:711.465000px;}
.y82{bottom:717.585000px;}
.ybb{bottom:721.005000px;}
.y56{bottom:723.165000px;}
.y1b{bottom:730.005000px;}
.yba{bottom:739.545000px;}
.yf7{bottom:740.445000px;}
.y55{bottom:741.705000px;}
.y1a{bottom:748.545000px;}
.yde{bottom:749.985000px;}
.y54{bottom:760.245000px;}
.y19{bottom:766.905000px;}
.yb9{bottom:768.345000px;}
.ydd{bottom:768.525000px;}
.yf6{bottom:771.045000px;}
.y53{bottom:778.605000px;}
.y18{bottom:785.445000px;}
.yb8{bottom:786.885000px;}
.y52{bottom:797.145000px;}
.yf5{bottom:801.465000px;}
.y17{bottom:803.805000px;}
.yb7{bottom:805.425000px;}
.y51{bottom:815.505000px;}
.ydc{bottom:815.865000px;}
.y16{bottom:822.345000px;}
.y7a{bottom:829.185000px;}
.yf4{bottom:831.885000px;}
.y50{bottom:834.045000px;}
.yb6{bottom:834.405000px;}
.y15{bottom:843.045000px;}
.y4f{bottom:852.585000px;}
.yb5{bottom:852.945000px;}
.y14{bottom:861.585000px;}
.yf3{bottom:862.305000px;}
.ydb{bottom:863.205000px;}
.y4e{bottom:870.945000px;}
.y13{bottom:879.945000px;}
.yb4{bottom:881.745000px;}
.y4d{bottom:889.485000px;}
.yf2{bottom:892.905000px;}
.y12{bottom:898.485000px;}
.yb3{bottom:900.285000px;}
.y4c{bottom:907.845000px;}
.y11{bottom:920.670000px;}
.yf1{bottom:923.370000px;}
.y4b{bottom:926.430000px;}
.yb2{bottom:929.310000px;}
.y10{bottom:935.430000px;}
.y4a{bottom:944.790000px;}
.yb1{bottom:947.850000px;}
.yf0{bottom:953.790000px;}
.yf{bottom:953.970000px;}
.y49{bottom:963.330000px;}
.ye{bottom:972.330000px;}
.yb0{bottom:976.650000px;}
.y79{bottom:977.550000px;}
.y48{bottom:981.870000px;}
.yef{bottom:984.210000px;}
.yd{bottom:992.490000px;}
.yaf{bottom:995.190000px;}
.y47{bottom:1000.230000px;}
.yda{bottom:1005.630000px;}
.yae{bottom:1013.730000px;}
.yee{bottom:1014.810000px;}
.yc{bottom:1018.770000px;}
.yd9{bottom:1024.170000px;}
.y46{bottom:1037.130000px;}
.yad{bottom:1042.530000px;}
.yb{bottom:1045.230000px;}
.yd8{bottom:1052.970000px;}
.y45{bottom:1055.670000px;}
.yac{bottom:1061.070000px;}
.yed{bottom:1063.590000px;}
.yd7{bottom:1071.510000px;}
.y44{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.yec{bottom:1082.130000px;}
.yab{bottom:1090.050000px;}
.y43{bottom:1092.570000px;}
.yd6{bottom:1100.490000px;}
.y7{bottom:1110.930000px;}
.y42{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.yaa{bottom:1119.030000px;}
.y41{bottom:1129.470000px;}
.yd5{bottom:1137.570000px;}
.ya9{bottom:1147.830000px;}
.y40{bottom:1148.010000px;}
.y3f{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3e{bottom:1193.400000px;}
.h8{height:18.360000px;}
.h6{height:30.077578px;}
.hb{height:37.080000px;}
.ha{height:40.010625px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h5{height:55.130625px;}
.h7{height:65.884219px;}
.h3{height:73.836000px;}
.h9{height:76.201172px;}
.hd{height:110.700000px;}
.he{height:129.276000px;}
.hf{height:129.420000px;}
.hc{height:147.636000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:17.496000px;}
.w6{width:166.860000px;}
.w7{width:180.030000px;}
.w9{width:181.650000px;}
.w8{width:187.995000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x6{left:23.220000px;}
.x2{left:81.000000px;}
.x12{left:87.336000px;}
.x8{left:90.935987px;}
.x4{left:102.420000px;}
.x17{left:108.035987px;}
.x9{left:118.475987px;}
.x5{left:119.880000px;}
.xd{left:231.509987px;}
.xb{left:236.369987px;}
.x11{left:237.629987px;}
.x14{left:254.910000px;}
.xc{left:272.954987px;}
.xa{left:339.374987px;}
.xf{left:381.494987px;}
.x15{left:435.675000px;}
.x3{left:445.605000px;}
.xe{left:446.684987px;}
.x16{left:624.390000px;}
.x10{left:785.309987px;}
.x7{left:794.850000px;}
.x1{left:812.339987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls2{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.481067pt;}
.lse{letter-spacing:-0.466133pt;}
.ls3{letter-spacing:-0.297067pt;}
.ls9{letter-spacing:-0.266133pt;}
.ls7{letter-spacing:-0.230400pt;}
.ls5{letter-spacing:-0.148267pt;}
.ls8{letter-spacing:-0.076800pt;}
.ls4{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.087040pt;}
.ls6{letter-spacing:0.158933pt;}
.lsa{letter-spacing:0.163733pt;}
.lsc{letter-spacing:0.312320pt;}
.lsd{letter-spacing:6.743040pt;}
.lsf{letter-spacing:11.929600pt;}
.lsb{letter-spacing:38.103040pt;}
.ws6{word-spacing:-12.554133pt;}
.ws3{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.ws1{word-spacing:-12.093333pt;}
.ws7{word-spacing:-11.924267pt;}
.ws8{word-spacing:-11.909333pt;}
.ws0{word-spacing:-11.702400pt;}
.ws4{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-9.861547pt;}
._1c{margin-left:-2.110293pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._c{width:2.455040pt;}
._7{width:3.717120pt;}
._6{width:4.787200pt;}
._8{width:5.688320pt;}
._9{width:6.814720pt;}
._10{width:7.715840pt;}
._12{width:9.236480pt;}
._b{width:10.700800pt;}
._15{width:13.911040pt;}
._e{width:14.924800pt;}
._f{width:15.825920pt;}
._1a{width:16.952320pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._14{width:20.444160pt;}
._11{width:21.387093pt;}
._1{width:22.276267pt;}
._38{width:23.203840pt;}
._13{width:24.104960pt;}
._d{width:25.175040pt;}
._16{width:26.752000pt;}
._17{width:27.934720pt;}
._19{width:29.173760pt;}
._a{width:30.469120pt;}
._1b{width:32.440320pt;}
._18{width:33.510400pt;}
._37{width:36.213760pt;}
._20{width:37.509120pt;}
._29{width:38.691840pt;}
._2f{width:40.381440pt;}
._4b{width:41.456853pt;}
._3b{width:42.465280pt;}
._22{width:44.323840pt;}
._49{width:45.307733pt;}
._2b{width:46.576640pt;}
._2c{width:47.477760pt;}
._41{width:48.547840pt;}
._2d{width:49.786880pt;}
._3a{width:50.913280pt;}
._2a{width:52.741120pt;}
._46{width:54.630400pt;}
._39{width:55.531520pt;}
._26{width:58.572800pt;}
._21{width:61.783040pt;}
._43{width:67.696640pt;}
._32{width:69.160960pt;}
._31{width:76.021760pt;}
._27{width:81.889280pt;}
._23{width:87.746560pt;}
._1e{width:90.731520pt;}
._1f{width:92.195840pt;}
._4e{width:93.153280pt;}
._4d{width:94.223360pt;}
._2e{width:96.588800pt;}
._35{width:97.884160pt;}
._3e{width:101.488640pt;}
._40{width:107.304960pt;}
._3d{width:108.528640pt;}
._30{width:119.030613pt;}
._28{width:132.746240pt;}
._33{width:147.164160pt;}
._24{width:154.654720pt;}
._48{width:161.807360pt;}
._45{width:164.961280pt;}
._25{width:169.804800pt;}
._1d{width:178.590720pt;}
._34{width:179.743573pt;}
._36{width:185.349120pt;}
._3f{width:200.018773pt;}
._3c{width:223.928320pt;}
._4a{width:246.850560pt;}
._44{width:254.960640pt;}
._47{width:262.338560pt;}
._42{width:306.324480pt;}
._4c{width:749.476267pt;}
.fs2{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.y81{bottom:19.360000pt;}
.y5{bottom:19.520000pt;}
.y80{bottom:35.840000pt;}
.y4{bottom:35.866667pt;}
.y8b{bottom:36.000000pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y7f{bottom:52.160000pt;}
.y84{bottom:52.320000pt;}
.y3{bottom:52.346667pt;}
.y7e{bottom:68.640000pt;}
.y8a{bottom:68.800000pt;}
.y95{bottom:79.360000pt;}
.ya8{bottom:82.720000pt;}
.y78{bottom:84.800000pt;}
.y8e{bottom:84.960000pt;}
.y83{bottom:85.120000pt;}
.y87{bottom:85.146667pt;}
.y7d{bottom:85.160000pt;}
.y112{bottom:86.880000pt;}
.y3d{bottom:87.360000pt;}
.yeb{bottom:92.640000pt;}
.y94{bottom:95.840000pt;}
.ya7{bottom:99.200000pt;}
.yd4{bottom:99.840000pt;}
.y77{bottom:101.120000pt;}
.y86{bottom:101.466667pt;}
.y7c{bottom:101.480000pt;}
.y89{bottom:101.600000pt;}
.y111{bottom:103.360000pt;}
.y3c{bottom:103.840000pt;}
.yea{bottom:109.120000pt;}
.y93{bottom:112.320000pt;}
.ya6{bottom:115.680000pt;}
.yd3{bottom:116.320000pt;}
.y76{bottom:117.600000pt;}
.y7b{bottom:117.960000pt;}
.y110{bottom:119.840000pt;}
.y3b{bottom:120.320000pt;}
.y92{bottom:128.640000pt;}
.y75{bottom:133.920000pt;}
.ye9{bottom:134.880000pt;}
.y10f{bottom:136.160000pt;}
.y3a{bottom:136.640000pt;}
.ya5{bottom:141.280000pt;}
.yd2{bottom:141.920000pt;}
.y91{bottom:145.120000pt;}
.y74{bottom:150.400000pt;}
.ye8{bottom:151.360000pt;}
.y10e{bottom:152.640000pt;}
.y39{bottom:153.120000pt;}
.y90{bottom:161.440000pt;}
.y73{bottom:166.880000pt;}
.ya4{bottom:167.040000pt;}
.yd1{bottom:167.680000pt;}
.ye7{bottom:167.840000pt;}
.y10d{bottom:168.960000pt;}
.y38{bottom:169.440000pt;}
.y8f{bottom:177.920000pt;}
.y72{bottom:183.200000pt;}
.ya3{bottom:183.520000pt;}
.yd0{bottom:184.160000pt;}
.y10c{bottom:185.440000pt;}
.y37{bottom:185.920000pt;}
.y8d{bottom:192.026667pt;}
.ye6{bottom:193.466667pt;}
.y71{bottom:199.706667pt;}
.y10b{bottom:201.786667pt;}
.y36{bottom:202.426667pt;}
.ya2{bottom:209.306667pt;}
.ycf{bottom:209.946667pt;}
.y70{bottom:216.026667pt;}
.y10a{bottom:218.266667pt;}
.y35{bottom:218.746667pt;}
.ya1{bottom:225.786667pt;}
.y6f{bottom:232.506667pt;}
.y109{bottom:234.746667pt;}
.y34{bottom:235.226667pt;}
.yce{bottom:235.706667pt;}
.ya0{bottom:242.106667pt;}
.y6e{bottom:248.826667pt;}
.y108{bottom:251.066667pt;}
.y33{bottom:251.546667pt;}
.ycd{bottom:252.186667pt;}
.y6d{bottom:265.306667pt;}
.y107{bottom:267.546667pt;}
.y9f{bottom:267.866667pt;}
.y32{bottom:268.026667pt;}
.ycc{bottom:277.786667pt;}
.y6c{bottom:281.786667pt;}
.y106{bottom:283.866667pt;}
.y31{bottom:284.346667pt;}
.y8c{bottom:291.066667pt;}
.ycb{bottom:294.266667pt;}
.y6b{bottom:298.106667pt;}
.y105{bottom:300.346667pt;}
.y30{bottom:300.826667pt;}
.y9e{bottom:309.946667pt;}
.yca{bottom:310.746667pt;}
.y6a{bottom:314.586667pt;}
.y104{bottom:316.826667pt;}
.y2f{bottom:317.306667pt;}
.ye5{bottom:320.026667pt;}
.y9d{bottom:326.426667pt;}
.y69{bottom:330.906667pt;}
.y103{bottom:333.146667pt;}
.y2e{bottom:333.626667pt;}
.yc9{bottom:336.346667pt;}
.ye4{bottom:336.506667pt;}
.y9c{bottom:342.906667pt;}
.y68{bottom:347.386667pt;}
.y2d{bottom:350.106667pt;}
.y102{bottom:360.346667pt;}
.yc8{bottom:362.106667pt;}
.y67{bottom:363.866667pt;}
.y2c{bottom:366.426667pt;}
.y9b{bottom:368.506667pt;}
.yc7{bottom:378.586667pt;}
.y66{bottom:380.186667pt;}
.y2b{bottom:382.906667pt;}
.y9a{bottom:384.986667pt;}
.y101{bottom:387.386667pt;}
.ye3{bottom:387.866667pt;}
.y65{bottom:396.706667pt;}
.y2a{bottom:399.426667pt;}
.yc6{bottom:404.386667pt;}
.y88{bottom:406.626667pt;}
.y99{bottom:410.786667pt;}
.y64{bottom:413.026667pt;}
.y100{bottom:414.466667pt;}
.y29{bottom:415.746667pt;}
.yc5{bottom:420.866667pt;}
.y98{bottom:427.266667pt;}
.y63{bottom:429.506667pt;}
.ye2{bottom:429.986667pt;}
.y28{bottom:432.226667pt;}
.yff{bottom:441.506667pt;}
.y62{bottom:445.826667pt;}
.yc4{bottom:446.466667pt;}
.y27{bottom:448.546667pt;}
.y97{bottom:452.866667pt;}
.y61{bottom:462.306667pt;}
.y26{bottom:465.026667pt;}
.yfe{bottom:468.706667pt;}
.y96{bottom:469.346667pt;}
.yc3{bottom:472.226667pt;}
.y60{bottom:478.786667pt;}
.y25{bottom:484.866667pt;}
.yc2{bottom:488.706667pt;}
.y5f{bottom:495.106667pt;}
.yfd{bottom:495.746667pt;}
.y24{bottom:501.186667pt;}
.y5e{bottom:511.586667pt;}
.yc1{bottom:514.306667pt;}
.y23{bottom:517.506667pt;}
.y85{bottom:522.306667pt;}
.yfc{bottom:522.786667pt;}
.y5d{bottom:527.906667pt;}
.yc0{bottom:530.786667pt;}
.y22{bottom:533.986667pt;}
.y5c{bottom:544.386667pt;}
.yfb{bottom:549.826667pt;}
.y21{bottom:550.466667pt;}
.ybf{bottom:556.546667pt;}
.y5b{bottom:560.866667pt;}
.y20{bottom:566.786667pt;}
.ybe{bottom:573.026667pt;}
.yfa{bottom:577.026667pt;}
.y5a{bottom:577.186667pt;}
.ye1{bottom:582.306667pt;}
.y1f{bottom:583.266667pt;}
.y59{bottom:593.666667pt;}
.ybd{bottom:598.626667pt;}
.ye0{bottom:598.786667pt;}
.y1e{bottom:599.586667pt;}
.yf9{bottom:604.066667pt;}
.y58{bottom:610.013333pt;}
.ybc{bottom:615.133333pt;}
.y1d{bottom:616.093333pt;}
.ydf{bottom:624.413333pt;}
.y57{bottom:626.493333pt;}
.yf8{bottom:631.133333pt;}
.y1c{bottom:632.413333pt;}
.y82{bottom:637.853333pt;}
.ybb{bottom:640.893333pt;}
.y56{bottom:642.813333pt;}
.y1b{bottom:648.893333pt;}
.yba{bottom:657.373333pt;}
.yf7{bottom:658.173333pt;}
.y55{bottom:659.293333pt;}
.y1a{bottom:665.373333pt;}
.yde{bottom:666.653333pt;}
.y54{bottom:675.773333pt;}
.y19{bottom:681.693333pt;}
.yb9{bottom:682.973333pt;}
.ydd{bottom:683.133333pt;}
.yf6{bottom:685.373333pt;}
.y53{bottom:692.093333pt;}
.y18{bottom:698.173333pt;}
.yb8{bottom:699.453333pt;}
.y52{bottom:708.573333pt;}
.yf5{bottom:712.413333pt;}
.y17{bottom:714.493333pt;}
.yb7{bottom:715.933333pt;}
.y51{bottom:724.893333pt;}
.ydc{bottom:725.213333pt;}
.y16{bottom:730.973333pt;}
.y7a{bottom:737.053333pt;}
.yf4{bottom:739.453333pt;}
.y50{bottom:741.373333pt;}
.yb6{bottom:741.693333pt;}
.y15{bottom:749.373333pt;}
.y4f{bottom:757.853333pt;}
.yb5{bottom:758.173333pt;}
.y14{bottom:765.853333pt;}
.yf3{bottom:766.493333pt;}
.ydb{bottom:767.293333pt;}
.y4e{bottom:774.173333pt;}
.y13{bottom:782.173333pt;}
.yb4{bottom:783.773333pt;}
.y4d{bottom:790.653333pt;}
.yf2{bottom:793.693333pt;}
.y12{bottom:798.653333pt;}
.yb3{bottom:800.253333pt;}
.y4c{bottom:806.973333pt;}
.y11{bottom:818.373333pt;}
.yf1{bottom:820.773333pt;}
.y4b{bottom:823.493333pt;}
.yb2{bottom:826.053333pt;}
.y10{bottom:831.493333pt;}
.y4a{bottom:839.813333pt;}
.yb1{bottom:842.533333pt;}
.yf0{bottom:847.813333pt;}
.yf{bottom:847.973333pt;}
.y49{bottom:856.293333pt;}
.ye{bottom:864.293333pt;}
.yb0{bottom:868.133333pt;}
.y79{bottom:868.933333pt;}
.y48{bottom:872.773333pt;}
.yef{bottom:874.853333pt;}
.yd{bottom:882.213333pt;}
.yaf{bottom:884.613333pt;}
.y47{bottom:889.093333pt;}
.yda{bottom:893.893333pt;}
.yae{bottom:901.093333pt;}
.yee{bottom:902.053333pt;}
.yc{bottom:905.573333pt;}
.yd9{bottom:910.373333pt;}
.y46{bottom:921.893333pt;}
.yad{bottom:926.693333pt;}
.yb{bottom:929.093333pt;}
.yd8{bottom:935.973333pt;}
.y45{bottom:938.373333pt;}
.yac{bottom:943.173333pt;}
.yed{bottom:945.413333pt;}
.yd7{bottom:952.453333pt;}
.y44{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.yec{bottom:961.893333pt;}
.yab{bottom:968.933333pt;}
.y43{bottom:971.173333pt;}
.yd6{bottom:978.213333pt;}
.y7{bottom:987.493333pt;}
.y42{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.yaa{bottom:994.693333pt;}
.y41{bottom:1003.973333pt;}
.yd5{bottom:1011.173333pt;}
.ya9{bottom:1020.293333pt;}
.y40{bottom:1020.453333pt;}
.y3f{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3e{bottom:1060.800000pt;}
.h8{height:16.320000pt;}
.h6{height:26.735625pt;}
.hb{height:32.960000pt;}
.ha{height:35.565000pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h5{height:49.005000pt;}
.h7{height:58.563750pt;}
.h3{height:65.632000pt;}
.h9{height:67.734375pt;}
.hd{height:98.400000pt;}
.he{height:114.912000pt;}
.hf{height:115.040000pt;}
.hc{height:131.232000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:15.552000pt;}
.w6{width:148.320000pt;}
.w7{width:160.026667pt;}
.w9{width:161.466667pt;}
.w8{width:167.106667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x6{left:20.640000pt;}
.x2{left:72.000000pt;}
.x12{left:77.632000pt;}
.x8{left:80.831988pt;}
.x4{left:91.040000pt;}
.x17{left:96.031988pt;}
.x9{left:105.311988pt;}
.x5{left:106.560000pt;}
.xd{left:205.786655pt;}
.xb{left:210.106655pt;}
.x11{left:211.226655pt;}
.x14{left:226.586667pt;}
.xc{left:242.626655pt;}
.xa{left:301.666655pt;}
.xf{left:339.106655pt;}
.x15{left:387.266667pt;}
.x3{left:396.093333pt;}
.xe{left:397.053322pt;}
.x16{left:555.013333pt;}
.x10{left:698.053322pt;}
.x7{left:706.533333pt;}
.x1{left:722.079988pt;}
}




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