
    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_a8284cb7d0a7d2f3a134eda0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2a4b14590f7883df126995d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0490cf42738eacb052383999.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_55db5e2c9402b68772730ce2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_772ee991aa1995915247177a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_af654e7e2eae614996dcc8ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_47997638dc54819c221ca3ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_32e933d29ddebdc0346c4a1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_150332f36e85475ffe62ba0c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_09619edd74567c0eb0da5384.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-5.760000px;}
.ls1f{letter-spacing:-4.464000px;}
.ls17{letter-spacing:-2.880000px;}
.ls20{letter-spacing:-1.512000px;}
.ls1{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.413400px;}
.lsf{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.894240px;}
.ls4{letter-spacing:0.900000px;}
.lse{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.880000px;}
.ls6{letter-spacing:3.060000px;}
.ls9{letter-spacing:5.760000px;}
.ls12{letter-spacing:7.200000px;}
.ls1e{letter-spacing:8.820000px;}
.ls8{letter-spacing:16.560000px;}
.ls24{letter-spacing:18.840000px;}
.ls16{letter-spacing:21.780000px;}
.ls25{letter-spacing:33.960000px;}
.ls21{letter-spacing:64.200000px;}
.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;}
}
.ws14{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.576000px;}
.ws12{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.064000px;}
.ws7{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.488000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.240000px;}
.wsd{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._22{margin-left:-9.659520px;}
._18{margin-left:-7.954080px;}
._24{margin-left:-6.779520px;}
._d{margin-left:-5.675040px;}
._11{margin-left:-4.635360px;}
._1{margin-left:-3.016320px;}
._0{margin-left:-1.249920px;}
._2{width:1.616640px;}
._5{width:3.516000px;}
._13{width:4.680000px;}
._7{width:5.763360px;}
._e{width:6.980640px;}
._15{width:8.521920px;}
._12{width:10.440000px;}
._6{width:12.096000px;}
._3{width:13.464000px;}
._4{width:14.544000px;}
._19{width:15.584640px;}
._8{width:16.599360px;}
._1d{width:17.654640px;}
._9{width:19.872000px;}
._a{width:21.108000px;}
._f{width:22.921920px;}
._14{width:23.933280px;}
._1c{width:25.362720px;}
._17{width:26.496000px;}
._16{width:28.410240px;}
._c{width:29.461920px;}
._b{width:31.177920px;}
._2e{width:32.208000px;}
._20{width:33.336000px;}
._21{width:34.488000px;}
._2f{width:35.504640px;}
._2c{width:37.097280px;}
._1e{width:39.096000px;}
._1f{width:40.320000px;}
._1a{width:41.400000px;}
._1b{width:42.552000px;}
._2a{width:43.735200px;}
._23{width:45.203040px;}
._34{width:46.264800px;}
._25{width:47.808000px;}
._26{width:51.984000px;}
._27{width:52.992000px;}
._30{width:54.176640px;}
._31{width:55.368000px;}
._32{width:77.100960px;}
._33{width:79.211040px;}
._2d{width:85.392000px;}
._2b{width:99.432000px;}
._10{width:116.496000px;}
._28{width:127.008000px;}
._29{width:128.124000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:58.140000px;}
.yb3{bottom:111.096000px;}
.yca{bottom:111.996000px;}
.ye7{bottom:115.056000px;}
.y48{bottom:115.416000px;}
.y58{bottom:120.636000px;}
.yb1{bottom:125.856000px;}
.ya5{bottom:127.116000px;}
.y75{bottom:130.896000px;}
.y98{bottom:131.256000px;}
.y18{bottom:132.516000px;}
.ye6{bottom:137.556000px;}
.yb2{bottom:139.716000px;}
.yc9{bottom:142.956000px;}
.y47{bottom:146.556000px;}
.y57{bottom:151.590000px;}
.yb0{bottom:156.810000px;}
.ya4{bottom:158.250000px;}
.y97{bottom:159.870000px;}
.y74{bottom:162.030000px;}
.y17{bottom:163.650000px;}
.ye5{bottom:168.510000px;}
.yc8{bottom:174.090000px;}
.y46{bottom:177.510000px;}
.y56{bottom:182.730000px;}
.yaf{bottom:187.950000px;}
.y96{bottom:188.130000px;}
.ya3{bottom:189.210000px;}
.y73{bottom:192.990000px;}
.y16{bottom:194.610000px;}
.ye4{bottom:199.650000px;}
.yc7{bottom:205.050000px;}
.y45{bottom:208.650000px;}
.y55{bottom:213.690000px;}
.yae{bottom:218.910000px;}
.y95{bottom:219.270000px;}
.ya2{bottom:220.350000px;}
.y72{bottom:224.130000px;}
.y15{bottom:225.750000px;}
.ye3{bottom:230.610000px;}
.yc6{bottom:236.190000px;}
.y44{bottom:239.610000px;}
.y54{bottom:244.830000px;}
.yad{bottom:250.050000px;}
.y94{bottom:250.230000px;}
.ya1{bottom:251.310000px;}
.y71{bottom:255.090000px;}
.y14{bottom:256.710000px;}
.ye2{bottom:261.750000px;}
.yc5{bottom:267.150000px;}
.y43{bottom:270.750000px;}
.y53{bottom:275.790000px;}
.yac{bottom:281.010000px;}
.y93{bottom:281.370000px;}
.ya0{bottom:282.450000px;}
.y70{bottom:286.230000px;}
.y13{bottom:287.850000px;}
.ye1{bottom:292.710000px;}
.yc4{bottom:298.290000px;}
.y42{bottom:301.710000px;}
.y52{bottom:306.930000px;}
.yab{bottom:312.150000px;}
.y92{bottom:312.330000px;}
.y9f{bottom:313.410000px;}
.y6f{bottom:317.190000px;}
.y12{bottom:318.810000px;}
.ye0{bottom:323.850000px;}
.yc3{bottom:329.295000px;}
.y41{bottom:332.895000px;}
.y51{bottom:337.935000px;}
.yaa{bottom:343.155000px;}
.y91{bottom:343.515000px;}
.y9e{bottom:344.595000px;}
.y6e{bottom:348.375000px;}
.y11{bottom:349.995000px;}
.ydf{bottom:354.855000px;}
.yc2{bottom:360.435000px;}
.y40{bottom:363.855000px;}
.y50{bottom:369.075000px;}
.ya9{bottom:374.295000px;}
.y90{bottom:374.475000px;}
.y9d{bottom:375.555000px;}
.y6d{bottom:376.995000px;}
.y10{bottom:380.955000px;}
.yde{bottom:385.995000px;}
.yc1{bottom:391.395000px;}
.y3f{bottom:394.995000px;}
.y4f{bottom:400.035000px;}
.y6c{bottom:405.255000px;}
.y8f{bottom:405.615000px;}
.y9c{bottom:406.695000px;}
.yf{bottom:411.915000px;}
.ydd{bottom:416.955000px;}
.yc0{bottom:422.535000px;}
.y3e{bottom:425.955000px;}
.ya6{bottom:428.655000px;}
.y4e{bottom:431.175000px;}
.y9b{bottom:435.135000px;}
.y6b{bottom:436.215000px;}
.y8e{bottom:436.575000px;}
.ye{bottom:443.055000px;}
.ydc{bottom:447.915000px;}
.ybf{bottom:453.495000px;}
.y3d{bottom:456.915000px;}
.y4d{bottom:459.615000px;}
.y9a{bottom:461.055000px;}
.y83{bottom:462.135000px;}
.y6a{bottom:467.355000px;}
.y8d{bottom:467.535000px;}
.yd{bottom:474.015000px;}
.ydb{bottom:479.055000px;}
.ybe{bottom:484.635000px;}
.y99{bottom:484.995000px;}
.y76{bottom:487.695000px;}
.y3c{bottom:488.055000px;}
.y82{bottom:493.275000px;}
.y69{bottom:498.315000px;}
.y8c{bottom:498.675000px;}
.yc{bottom:508.035000px;}
.yda{bottom:510.015000px;}
.ybd{bottom:513.075000px;}
.y3b{bottom:519.015000px;}
.y81{bottom:524.235000px;}
.ya8{bottom:526.935000px;}
.y68{bottom:529.455000px;}
.y8b{bottom:529.635000px;}
.ybc{bottom:535.395000px;}
.yd9{bottom:541.155000px;}
.yb{bottom:544.215000px;}
.y3a{bottom:550.155000px;}
.y2c{bottom:551.055000px;}
.y80{bottom:555.375000px;}
.y67{bottom:560.415000px;}
.y8a{bottom:560.775000px;}
.yd8{bottom:572.115000px;}
.ya{bottom:580.395000px;}
.y39{bottom:580.755000px;}
.y49{bottom:581.115000px;}
.y2b{bottom:581.295000px;}
.y7f{bottom:586.335000px;}
.y66{bottom:591.555000px;}
.y89{bottom:591.735000px;}
.yd7{bottom:603.285000px;}
.y2a{bottom:612.285000px;}
.y9{bottom:613.905000px;}
.y7e{bottom:617.505000px;}
.y65{bottom:622.545000px;}
.y88{bottom:622.905000px;}
.yd6{bottom:634.245000px;}
.y59{bottom:642.885000px;}
.y38{bottom:643.245000px;}
.y29{bottom:643.425000px;}
.y8{bottom:644.865000px;}
.y7d{bottom:648.465000px;}
.y64{bottom:653.685000px;}
.y87{bottom:653.865000px;}
.yd5{bottom:665.385000px;}
.y28{bottom:674.025000px;}
.y37{bottom:674.385000px;}
.y7{bottom:676.005000px;}
.y7c{bottom:679.605000px;}
.y63{bottom:682.305000px;}
.y86{bottom:682.485000px;}
.ybb{bottom:684.645000px;}
.yd4{bottom:696.345000px;}
.y36{bottom:705.345000px;}
.y27{bottom:705.525000px;}
.y85{bottom:708.405000px;}
.y62{bottom:710.565000px;}
.yba{bottom:715.785000px;}
.y6{bottom:723.525000px;}
.yd3{bottom:727.485000px;}
.y84{bottom:732.345000px;}
.y26{bottom:736.485000px;}
.y61{bottom:741.705000px;}
.yb9{bottom:746.745000px;}
.yd2{bottom:758.445000px;}
.y35{bottom:767.445000px;}
.y25{bottom:767.625000px;}
.y60{bottom:772.665000px;}
.yb8{bottom:777.885000px;}
.yd1{bottom:789.585000px;}
.y5{bottom:790.845000px;}
.y4c{bottom:798.225000px;}
.y24{bottom:798.585000px;}
.y5f{bottom:803.805000px;}
.yb7{bottom:808.845000px;}
.yd0{bottom:820.545000px;}
.y34{bottom:829.545000px;}
.y23{bottom:829.725000px;}
.ya7{bottom:832.245000px;}
.y5e{bottom:834.765000px;}
.yb6{bottom:839.985000px;}
.y4{bottom:841.965000px;}
.ycf{bottom:851.685000px;}
.y22{bottom:860.685000px;}
.y5d{bottom:865.950000px;}
.yb5{bottom:868.650000px;}
.y3{bottom:872.970000px;}
.yce{bottom:882.690000px;}
.y33{bottom:891.690000px;}
.y21{bottom:891.870000px;}
.yb4{bottom:894.390000px;}
.y5c{bottom:896.910000px;}
.y2{bottom:904.110000px;}
.ycd{bottom:913.830000px;}
.y20{bottom:922.470000px;}
.y32{bottom:922.830000px;}
.y5b{bottom:928.050000px;}
.y1{bottom:930.750000px;}
.ycc{bottom:944.790000px;}
.y31{bottom:953.790000px;}
.y1f{bottom:953.970000px;}
.y5a{bottom:956.490000px;}
.y7b{bottom:959.010000px;}
.ycb{bottom:975.570000px;}
.y1e{bottom:984.930000px;}
.y7a{bottom:989.970000px;}
.y30{bottom:1015.890000px;}
.y1d{bottom:1016.070000px;}
.y79{bottom:1021.110000px;}
.y1c{bottom:1047.030000px;}
.y78{bottom:1052.070000px;}
.y2f{bottom:1077.990000px;}
.y1b{bottom:1078.170000px;}
.y77{bottom:1080.690000px;}
.y1a{bottom:1108.770000px;}
.y4a{bottom:1109.130000px;}
.y2e{bottom:1139.760000px;}
.y19{bottom:1139.940000px;}
.y4b{bottom:1140.120000px;}
.h6{height:50.229844px;}
.ha{height:58.651172px;}
.hd{height:60.226875px;}
.h7{height:64.546875px;}
.h9{height:66.605977px;}
.h2{height:70.664062px;}
.h8{height:72.376875px;}
.h4{height:72.562500px;}
.hc{height:74.004654px;}
.h5{height:82.676953px;}
.hb{height:93.983203px;}
.h3{height:157.460625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:106.415987px;}
.x2{left:127.655987px;}
.x10{left:133.415987px;}
.xc{left:159.509987px;}
.x9{left:181.649987px;}
.x3{left:209.189987px;}
.x4{left:234.209987px;}
.x7{left:275.609987px;}
.x5{left:331.994987px;}
.x8{left:428.474987px;}
.x6{left:446.474987px;}
.x11{left:545.504987px;}
.x1{left:765.509987px;}
.xd{left:768.749987px;}
.xa{left:777.749987px;}
.xe{left:785.849987px;}
.xf{left:801.509987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-5.120000pt;}
.ls1f{letter-spacing:-3.968000pt;}
.ls17{letter-spacing:-2.560000pt;}
.ls20{letter-spacing:-1.344000pt;}
.ls1{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.367467pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.794880pt;}
.ls4{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls9{letter-spacing:5.120000pt;}
.ls12{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:7.840000pt;}
.ls8{letter-spacing:14.720000pt;}
.ls24{letter-spacing:16.746667pt;}
.ls16{letter-spacing:19.360000pt;}
.ls25{letter-spacing:30.186667pt;}
.ls21{letter-spacing:57.066667pt;}
.ws14{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.512000pt;}
.ws12{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.656000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._22{margin-left:-8.586240pt;}
._18{margin-left:-7.070293pt;}
._24{margin-left:-6.026240pt;}
._d{margin-left:-5.044480pt;}
._11{margin-left:-4.120320pt;}
._1{margin-left:-2.681173pt;}
._0{margin-left:-1.111040pt;}
._2{width:1.437013pt;}
._5{width:3.125333pt;}
._13{width:4.160000pt;}
._7{width:5.122987pt;}
._e{width:6.205013pt;}
._15{width:7.575040pt;}
._12{width:9.280000pt;}
._6{width:10.752000pt;}
._3{width:11.968000pt;}
._4{width:12.928000pt;}
._19{width:13.853013pt;}
._8{width:14.754987pt;}
._1d{width:15.693013pt;}
._9{width:17.664000pt;}
._a{width:18.762667pt;}
._f{width:20.375040pt;}
._14{width:21.274027pt;}
._1c{width:22.544640pt;}
._17{width:23.552000pt;}
._16{width:25.253547pt;}
._c{width:26.188373pt;}
._b{width:27.713707pt;}
._2e{width:28.629333pt;}
._20{width:29.632000pt;}
._21{width:30.656000pt;}
._2f{width:31.559680pt;}
._2c{width:32.975360pt;}
._1e{width:34.752000pt;}
._1f{width:35.840000pt;}
._1a{width:36.800000pt;}
._1b{width:37.824000pt;}
._2a{width:38.875733pt;}
._23{width:40.180480pt;}
._34{width:41.124267pt;}
._25{width:42.496000pt;}
._26{width:46.208000pt;}
._27{width:47.104000pt;}
._30{width:48.157013pt;}
._31{width:49.216000pt;}
._32{width:68.534187pt;}
._33{width:70.409813pt;}
._2d{width:75.904000pt;}
._2b{width:88.384000pt;}
._10{width:103.552000pt;}
._28{width:112.896000pt;}
._29{width:113.888000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:51.680000pt;}
.yb3{bottom:98.752000pt;}
.yca{bottom:99.552000pt;}
.ye7{bottom:102.272000pt;}
.y48{bottom:102.592000pt;}
.y58{bottom:107.232000pt;}
.yb1{bottom:111.872000pt;}
.ya5{bottom:112.992000pt;}
.y75{bottom:116.352000pt;}
.y98{bottom:116.672000pt;}
.y18{bottom:117.792000pt;}
.ye6{bottom:122.272000pt;}
.yb2{bottom:124.192000pt;}
.yc9{bottom:127.072000pt;}
.y47{bottom:130.272000pt;}
.y57{bottom:134.746667pt;}
.yb0{bottom:139.386667pt;}
.ya4{bottom:140.666667pt;}
.y97{bottom:142.106667pt;}
.y74{bottom:144.026667pt;}
.y17{bottom:145.466667pt;}
.ye5{bottom:149.786667pt;}
.yc8{bottom:154.746667pt;}
.y46{bottom:157.786667pt;}
.y56{bottom:162.426667pt;}
.yaf{bottom:167.066667pt;}
.y96{bottom:167.226667pt;}
.ya3{bottom:168.186667pt;}
.y73{bottom:171.546667pt;}
.y16{bottom:172.986667pt;}
.ye4{bottom:177.466667pt;}
.yc7{bottom:182.266667pt;}
.y45{bottom:185.466667pt;}
.y55{bottom:189.946667pt;}
.yae{bottom:194.586667pt;}
.y95{bottom:194.906667pt;}
.ya2{bottom:195.866667pt;}
.y72{bottom:199.226667pt;}
.y15{bottom:200.666667pt;}
.ye3{bottom:204.986667pt;}
.yc6{bottom:209.946667pt;}
.y44{bottom:212.986667pt;}
.y54{bottom:217.626667pt;}
.yad{bottom:222.266667pt;}
.y94{bottom:222.426667pt;}
.ya1{bottom:223.386667pt;}
.y71{bottom:226.746667pt;}
.y14{bottom:228.186667pt;}
.ye2{bottom:232.666667pt;}
.yc5{bottom:237.466667pt;}
.y43{bottom:240.666667pt;}
.y53{bottom:245.146667pt;}
.yac{bottom:249.786667pt;}
.y93{bottom:250.106667pt;}
.ya0{bottom:251.066667pt;}
.y70{bottom:254.426667pt;}
.y13{bottom:255.866667pt;}
.ye1{bottom:260.186667pt;}
.yc4{bottom:265.146667pt;}
.y42{bottom:268.186667pt;}
.y52{bottom:272.826667pt;}
.yab{bottom:277.466667pt;}
.y92{bottom:277.626667pt;}
.y9f{bottom:278.586667pt;}
.y6f{bottom:281.946667pt;}
.y12{bottom:283.386667pt;}
.ye0{bottom:287.866667pt;}
.yc3{bottom:292.706667pt;}
.y41{bottom:295.906667pt;}
.y51{bottom:300.386667pt;}
.yaa{bottom:305.026667pt;}
.y91{bottom:305.346667pt;}
.y9e{bottom:306.306667pt;}
.y6e{bottom:309.666667pt;}
.y11{bottom:311.106667pt;}
.ydf{bottom:315.426667pt;}
.yc2{bottom:320.386667pt;}
.y40{bottom:323.426667pt;}
.y50{bottom:328.066667pt;}
.ya9{bottom:332.706667pt;}
.y90{bottom:332.866667pt;}
.y9d{bottom:333.826667pt;}
.y6d{bottom:335.106667pt;}
.y10{bottom:338.626667pt;}
.yde{bottom:343.106667pt;}
.yc1{bottom:347.906667pt;}
.y3f{bottom:351.106667pt;}
.y4f{bottom:355.586667pt;}
.y6c{bottom:360.226667pt;}
.y8f{bottom:360.546667pt;}
.y9c{bottom:361.506667pt;}
.yf{bottom:366.146667pt;}
.ydd{bottom:370.626667pt;}
.yc0{bottom:375.586667pt;}
.y3e{bottom:378.626667pt;}
.ya6{bottom:381.026667pt;}
.y4e{bottom:383.266667pt;}
.y9b{bottom:386.786667pt;}
.y6b{bottom:387.746667pt;}
.y8e{bottom:388.066667pt;}
.ye{bottom:393.826667pt;}
.ydc{bottom:398.146667pt;}
.ybf{bottom:403.106667pt;}
.y3d{bottom:406.146667pt;}
.y4d{bottom:408.546667pt;}
.y9a{bottom:409.826667pt;}
.y83{bottom:410.786667pt;}
.y6a{bottom:415.426667pt;}
.y8d{bottom:415.586667pt;}
.yd{bottom:421.346667pt;}
.ydb{bottom:425.826667pt;}
.ybe{bottom:430.786667pt;}
.y99{bottom:431.106667pt;}
.y76{bottom:433.506667pt;}
.y3c{bottom:433.826667pt;}
.y82{bottom:438.466667pt;}
.y69{bottom:442.946667pt;}
.y8c{bottom:443.266667pt;}
.yc{bottom:451.586667pt;}
.yda{bottom:453.346667pt;}
.ybd{bottom:456.066667pt;}
.y3b{bottom:461.346667pt;}
.y81{bottom:465.986667pt;}
.ya8{bottom:468.386667pt;}
.y68{bottom:470.626667pt;}
.y8b{bottom:470.786667pt;}
.ybc{bottom:475.906667pt;}
.yd9{bottom:481.026667pt;}
.yb{bottom:483.746667pt;}
.y3a{bottom:489.026667pt;}
.y2c{bottom:489.826667pt;}
.y80{bottom:493.666667pt;}
.y67{bottom:498.146667pt;}
.y8a{bottom:498.466667pt;}
.yd8{bottom:508.546667pt;}
.ya{bottom:515.906667pt;}
.y39{bottom:516.226667pt;}
.y49{bottom:516.546667pt;}
.y2b{bottom:516.706667pt;}
.y7f{bottom:521.186667pt;}
.y66{bottom:525.826667pt;}
.y89{bottom:525.986667pt;}
.yd7{bottom:536.253333pt;}
.y2a{bottom:544.253333pt;}
.y9{bottom:545.693333pt;}
.y7e{bottom:548.893333pt;}
.y65{bottom:553.373333pt;}
.y88{bottom:553.693333pt;}
.yd6{bottom:563.773333pt;}
.y59{bottom:571.453333pt;}
.y38{bottom:571.773333pt;}
.y29{bottom:571.933333pt;}
.y8{bottom:573.213333pt;}
.y7d{bottom:576.413333pt;}
.y64{bottom:581.053333pt;}
.y87{bottom:581.213333pt;}
.yd5{bottom:591.453333pt;}
.y28{bottom:599.133333pt;}
.y37{bottom:599.453333pt;}
.y7{bottom:600.893333pt;}
.y7c{bottom:604.093333pt;}
.y63{bottom:606.493333pt;}
.y86{bottom:606.653333pt;}
.ybb{bottom:608.573333pt;}
.yd4{bottom:618.973333pt;}
.y36{bottom:626.973333pt;}
.y27{bottom:627.133333pt;}
.y85{bottom:629.693333pt;}
.y62{bottom:631.613333pt;}
.yba{bottom:636.253333pt;}
.y6{bottom:643.133333pt;}
.yd3{bottom:646.653333pt;}
.y84{bottom:650.973333pt;}
.y26{bottom:654.653333pt;}
.y61{bottom:659.293333pt;}
.yb9{bottom:663.773333pt;}
.yd2{bottom:674.173333pt;}
.y35{bottom:682.173333pt;}
.y25{bottom:682.333333pt;}
.y60{bottom:686.813333pt;}
.yb8{bottom:691.453333pt;}
.yd1{bottom:701.853333pt;}
.y5{bottom:702.973333pt;}
.y4c{bottom:709.533333pt;}
.y24{bottom:709.853333pt;}
.y5f{bottom:714.493333pt;}
.yb7{bottom:718.973333pt;}
.yd0{bottom:729.373333pt;}
.y34{bottom:737.373333pt;}
.y23{bottom:737.533333pt;}
.ya7{bottom:739.773333pt;}
.y5e{bottom:742.013333pt;}
.yb6{bottom:746.653333pt;}
.y4{bottom:748.413333pt;}
.ycf{bottom:757.053333pt;}
.y22{bottom:765.053333pt;}
.y5d{bottom:769.733333pt;}
.yb5{bottom:772.133333pt;}
.y3{bottom:775.973333pt;}
.yce{bottom:784.613333pt;}
.y33{bottom:792.613333pt;}
.y21{bottom:792.773333pt;}
.yb4{bottom:795.013333pt;}
.y5c{bottom:797.253333pt;}
.y2{bottom:803.653333pt;}
.ycd{bottom:812.293333pt;}
.y20{bottom:819.973333pt;}
.y32{bottom:820.293333pt;}
.y5b{bottom:824.933333pt;}
.y1{bottom:827.333333pt;}
.ycc{bottom:839.813333pt;}
.y31{bottom:847.813333pt;}
.y1f{bottom:847.973333pt;}
.y5a{bottom:850.213333pt;}
.y7b{bottom:852.453333pt;}
.ycb{bottom:867.173333pt;}
.y1e{bottom:875.493333pt;}
.y7a{bottom:879.973333pt;}
.y30{bottom:903.013333pt;}
.y1d{bottom:903.173333pt;}
.y79{bottom:907.653333pt;}
.y1c{bottom:930.693333pt;}
.y78{bottom:935.173333pt;}
.y2f{bottom:958.213333pt;}
.y1b{bottom:958.373333pt;}
.y77{bottom:960.613333pt;}
.y1a{bottom:985.573333pt;}
.y4a{bottom:985.893333pt;}
.y2e{bottom:1013.120000pt;}
.y19{bottom:1013.280000pt;}
.y4b{bottom:1013.440000pt;}
.h6{height:44.648750pt;}
.ha{height:52.134375pt;}
.hd{height:53.535000pt;}
.h7{height:57.375000pt;}
.h9{height:59.205313pt;}
.h2{height:62.812500pt;}
.h8{height:64.335000pt;}
.h4{height:64.500000pt;}
.hc{height:65.781915pt;}
.h5{height:73.490625pt;}
.hb{height:83.540625pt;}
.h3{height:139.965000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:94.591988pt;}
.x2{left:113.471988pt;}
.x10{left:118.591988pt;}
.xc{left:141.786655pt;}
.x9{left:161.466655pt;}
.x3{left:185.946655pt;}
.x4{left:208.186655pt;}
.x7{left:244.986655pt;}
.x5{left:295.106655pt;}
.x8{left:380.866655pt;}
.x6{left:396.866655pt;}
.x11{left:484.893322pt;}
.x1{left:680.453322pt;}
.xd{left:683.333322pt;}
.xa{left:691.333322pt;}
.xe{left:698.533322pt;}
.xf{left:712.453322pt;}
}




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