
    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_ac79e3f618188fa48a08a2c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d659b247bea95b7449cdcee3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fbb1524dd92eca48df30af08.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9e050d4198199d685e726931.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_244a0a91143fbaf8db6cf5ec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_657eed4759425d3a480da132.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-68.400000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:7.920000px;}
.v2{vertical-align:27.360000px;}
.ls6{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:195.984000px;}
.ls1{letter-spacing:1261.265280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.712400px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-14.236560px;}
._1{margin-left:-9.024960px;}
._8{margin-left:-7.750080px;}
._5{margin-left:-5.981040px;}
._7{margin-left:-4.633200px;}
._4{margin-left:-3.622320px;}
._3{margin-left:-2.527200px;}
._2{margin-left:-1.019520px;}
._0{width:1.191360px;}
._23{width:2.980800px;}
._f{width:4.173120px;}
._20{width:5.192640px;}
._2d{width:6.615360px;}
._32{width:7.635360px;}
._21{width:8.677440px;}
._13{width:10.664640px;}
._14{width:11.737920px;}
._19{width:12.810240px;}
._18{width:13.910400px;}
._1a{width:15.245280px;}
._2c{width:16.571520px;}
._16{width:18.017280px;}
._15{width:19.275840px;}
._1f{width:20.468160px;}
._17{width:21.991680px;}
._2e{width:23.400000px;}
._29{width:24.840000px;}
._30{width:26.712000px;}
._2b{width:28.296000px;}
._9{width:30.238560px;}
._11{width:31.728960px;}
._12{width:33.186240px;}
._22{width:34.378560px;}
._28{width:35.504640px;}
._36{width:36.864000px;}
._e{width:38.021760px;}
._2f{width:39.119040px;}
._26{width:40.233600px;}
._1e{width:41.400000px;}
._1b{width:43.320960px;}
._31{width:45.072000px;}
._39{width:46.535040px;}
._34{width:47.736000px;}
._1c{width:49.415040px;}
._10{width:51.336000px;}
._2a{width:53.919360px;}
._1d{width:55.376640px;}
._27{width:57.522240px;}
._35{width:59.222400px;}
._33{width:68.472000px;}
._3a{width:71.605440px;}
._24{width:80.878080px;}
._a{width:84.846000px;}
._d{width:96.780000px;}
._3b{width:110.819520px;}
._c{width:111.954000px;}
._37{width:119.088000px;}
._38{width:120.200640px;}
._b{width:156.936000px;}
._25{width:372.600000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.600000px;}
.y4a{bottom:3.636000px;}
.y41{bottom:8.100000px;}
.y3a{bottom:9.000000px;}
.y12{bottom:9.180000px;}
.y1a{bottom:11.340000px;}
.y15{bottom:12.240000px;}
.y40{bottom:13.140000px;}
.y37{bottom:22.500000px;}
.y59{bottom:22.680000px;}
.y49{bottom:22.710000px;}
.y19{bottom:26.820000px;}
.y36{bottom:41.580000px;}
.y47{bottom:41.610000px;}
.y18{bottom:42.480000px;}
.y17{bottom:57.960000px;}
.y6{bottom:59.400000px;}
.y35{bottom:60.480000px;}
.y46{bottom:60.510000px;}
.y58{bottom:60.660000px;}
.y48{bottom:61.590000px;}
.y34{bottom:79.560000px;}
.y45{bottom:79.590000px;}
.y5{bottom:84.960000px;}
.y57{bottom:98.460000px;}
.y44{bottom:98.490000px;}
.y33{bottom:98.505000px;}
.y56{bottom:117.540000px;}
.y43{bottom:117.570000px;}
.y32{bottom:117.585000px;}
.y42{bottom:132.300000px;}
.yc6{bottom:133.560000px;}
.y55{bottom:136.440000px;}
.y31{bottom:136.485000px;}
.y75{bottom:139.356000px;}
.ya7{bottom:145.836000px;}
.yc5{bottom:152.490000px;}
.y30{bottom:155.385000px;}
.y54{bottom:155.520000px;}
.y74{bottom:160.050000px;}
.ya6{bottom:166.530000px;}
.yc4{bottom:171.570000px;}
.y53{bottom:174.420000px;}
.y2f{bottom:174.465000px;}
.y73{bottom:180.750000px;}
.ya5{bottom:187.230000px;}
.yc3{bottom:190.650000px;}
.y2e{bottom:193.365000px;}
.y72{bottom:201.450000px;}
.ya4{bottom:207.930000px;}
.yc2{bottom:209.550000px;}
.y2d{bottom:212.445000px;}
.y71{bottom:222.150000px;}
.ya3{bottom:228.630000px;}
.yc1{bottom:228.810000px;}
.y2c{bottom:231.345000px;}
.y70{bottom:242.850000px;}
.ya2{bottom:249.330000px;}
.yc0{bottom:249.510000px;}
.y2b{bottom:250.245000px;}
.y52{bottom:250.425000px;}
.y6f{bottom:263.550000px;}
.y3f{bottom:266.610000px;}
.y2a{bottom:269.325000px;}
.ya1{bottom:270.030000px;}
.ybf{bottom:270.210000px;}
.y6e{bottom:284.250000px;}
.y29{bottom:288.225000px;}
.ya0{bottom:290.730000px;}
.ybe{bottom:290.910000px;}
.y13{bottom:294.330000px;}
.yf1{bottom:302.430000px;}
.y6d{bottom:304.950000px;}
.y28{bottom:307.305000px;}
.y9f{bottom:311.430000px;}
.ybd{bottom:311.610000px;}
.yf0{bottom:321.510000px;}
.y6c{bottom:325.650000px;}
.y27{bottom:326.205000px;}
.y9e{bottom:332.130000px;}
.ybc{bottom:332.310000px;}
.yef{bottom:340.590000px;}
.y26{bottom:345.105000px;}
.y51{bottom:345.285000px;}
.y6b{bottom:346.350000px;}
.y9d{bottom:352.830000px;}
.ybb{bottom:353.010000px;}
.yee{bottom:359.490000px;}
.y50{bottom:364.185000px;}
.y25{bottom:364.215000px;}
.y6a{bottom:367.050000px;}
.y9c{bottom:373.530000px;}
.yba{bottom:373.710000px;}
.yed{bottom:378.570000px;}
.y24{bottom:383.115000px;}
.y4f{bottom:383.265000px;}
.y69{bottom:387.795000px;}
.y9b{bottom:394.275000px;}
.yb9{bottom:394.455000px;}
.y3e{bottom:397.335000px;}
.yec{bottom:397.515000px;}
.y4e{bottom:402.165000px;}
.y23{bottom:402.195000px;}
.y68{bottom:408.495000px;}
.y9a{bottom:414.975000px;}
.yb8{bottom:415.155000px;}
.y3d{bottom:416.415000px;}
.yeb{bottom:416.595000px;}
.y22{bottom:421.095000px;}
.y67{bottom:429.195000px;}
.y3c{bottom:435.315000px;}
.y99{bottom:435.675000px;}
.yb7{bottom:435.855000px;}
.y21{bottom:439.995000px;}
.y66{bottom:449.895000px;}
.y3b{bottom:454.395000px;}
.yea{bottom:454.575000px;}
.y98{bottom:456.375000px;}
.yb6{bottom:456.555000px;}
.y20{bottom:459.075000px;}
.y65{bottom:470.595000px;}
.ye9{bottom:473.655000px;}
.y97{bottom:477.075000px;}
.yb5{bottom:477.255000px;}
.y1f{bottom:477.975000px;}
.y64{bottom:491.295000px;}
.ye8{bottom:492.735000px;}
.y1e{bottom:497.055000px;}
.y96{bottom:497.775000px;}
.yb4{bottom:497.955000px;}
.ye7{bottom:511.635000px;}
.y63{bottom:511.995000px;}
.y1d{bottom:515.955000px;}
.y95{bottom:518.475000px;}
.yb3{bottom:518.655000px;}
.ye6{bottom:530.715000px;}
.y62{bottom:532.695000px;}
.y1c{bottom:534.855000px;}
.y94{bottom:539.175000px;}
.yb2{bottom:539.355000px;}
.ye5{bottom:549.795000px;}
.y61{bottom:553.395000px;}
.y1b{bottom:553.935000px;}
.y93{bottom:559.875000px;}
.yb1{bottom:560.055000px;}
.ye4{bottom:568.695000px;}
.y60{bottom:574.095000px;}
.y92{bottom:580.575000px;}
.yb0{bottom:580.755000px;}
.y14{bottom:584.355000px;}
.ye3{bottom:587.775000px;}
.y5f{bottom:594.795000px;}
.y91{bottom:601.275000px;}
.yaf{bottom:601.455000px;}
.ye2{bottom:606.675000px;}
.y5e{bottom:615.495000px;}
.y90{bottom:621.795000px;}
.yae{bottom:622.155000px;}
.ye1{bottom:625.755000px;}
.y5d{bottom:636.195000px;}
.y8f{bottom:642.525000px;}
.yad{bottom:642.885000px;}
.ye0{bottom:644.865000px;}
.y5c{bottom:656.925000px;}
.y8e{bottom:663.225000px;}
.yac{bottom:663.585000px;}
.ydf{bottom:663.765000px;}
.y5b{bottom:677.625000px;}
.yde{bottom:682.845000px;}
.y8d{bottom:683.925000px;}
.yab{bottom:684.285000px;}
.y5a{bottom:698.325000px;}
.ydd{bottom:701.925000px;}
.y8c{bottom:704.625000px;}
.yaa{bottom:704.985000px;}
.y4d{bottom:716.505000px;}
.ydc{bottom:720.825000px;}
.y8b{bottom:725.325000px;}
.ya9{bottom:725.685000px;}
.ydb{bottom:739.905000px;}
.ya8{bottom:742.425000px;}
.y8a{bottom:746.025000px;}
.yda{bottom:758.985000px;}
.y39{bottom:765.465000px;}
.y89{bottom:766.725000px;}
.yd9{bottom:777.885000px;}
.y88{bottom:787.425000px;}
.y16{bottom:793.005000px;}
.yd8{bottom:796.965000px;}
.y87{bottom:808.125000px;}
.yd7{bottom:815.865000px;}
.y86{bottom:828.825000px;}
.yd6{bottom:834.945000px;}
.y85{bottom:849.525000px;}
.yd5{bottom:854.025000px;}
.y11{bottom:865.005000px;}
.y84{bottom:870.225000px;}
.yd4{bottom:872.925000px;}
.y83{bottom:890.925000px;}
.yd3{bottom:892.005000px;}
.y10{bottom:895.290000px;}
.yd2{bottom:911.130000px;}
.y82{bottom:911.670000px;}
.yf{bottom:915.630000px;}
.yd1{bottom:930.030000px;}
.y81{bottom:932.370000px;}
.ye{bottom:935.250000px;}
.yd0{bottom:949.110000px;}
.y80{bottom:953.070000px;}
.yd{bottom:954.330000px;}
.ycf{bottom:968.190000px;}
.yc{bottom:973.410000px;}
.y7f{bottom:973.770000px;}
.yce{bottom:987.090000px;}
.yb{bottom:992.310000px;}
.y7e{bottom:994.470000px;}
.ycd{bottom:1006.170000px;}
.ya{bottom:1012.110000px;}
.y7d{bottom:1015.170000px;}
.ycc{bottom:1025.070000px;}
.y7c{bottom:1035.870000px;}
.y9{bottom:1036.050000px;}
.ycb{bottom:1044.150000px;}
.y7b{bottom:1056.570000px;}
.y8{bottom:1060.170000px;}
.yca{bottom:1063.230000px;}
.y7a{bottom:1077.270000px;}
.yc9{bottom:1082.130000px;}
.y7{bottom:1084.290000px;}
.y79{bottom:1097.970000px;}
.yc8{bottom:1101.210000px;}
.y78{bottom:1118.670000px;}
.yc7{bottom:1120.290000px;}
.y4{bottom:1126.590000px;}
.y3{bottom:1142.430000px;}
.y2{bottom:1159.020000px;}
.y4c{bottom:1171.980000px;}
.y77{bottom:1174.680000px;}
.y1{bottom:1186.560000px;}
.y76{bottom:1193.580000px;}
.y4b{bottom:1193.760000px;}
.h10{height:26.100000px;}
.ha{height:26.280000px;}
.h3{height:50.312812px;}
.h12{height:52.971680px;}
.h5{height:52.998047px;}
.he{height:54.421875px;}
.hc{height:60.226875px;}
.h8{height:64.978594px;}
.h4{height:65.010937px;}
.h7{height:68.324766px;}
.hd{height:70.560000px;}
.h9{height:70.664062px;}
.h15{height:72.562500px;}
.h6{height:84.898125px;}
.h2{height:99.874688px;}
.h13{height:132.876000px;}
.h14{height:417.450000px;}
.h11{height:469.695000px;}
.hf{height:569.235000px;}
.hb{height:596.955000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:23.760000px;}
.w6{width:169.770000px;}
.w3{width:233.850000px;}
.w5{width:387.975000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.xf{left:29.700000px;}
.x1{left:127.655987px;}
.x4{left:132.515987px;}
.x3{left:158.789987px;}
.x12{left:168.149987px;}
.x10{left:170.129987px;}
.x7{left:189.749987px;}
.x9{left:236.729987px;}
.xa{left:243.389987px;}
.x5{left:253.649987px;}
.x8{left:270.254987px;}
.x11{left:358.094987px;}
.xd{left:361.515000px;}
.xe{left:385.275000px;}
.x6{left:446.324987px;}
.xb{left:467.564987px;}
.x2{left:562.784987px;}
.x13{left:722.129987px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:7.040000pt;}
.v2{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:174.208000pt;}
.ls1{letter-spacing:1121.124693pt;}
.ws5{word-spacing:-58.880000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.855467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-12.654720pt;}
._1{margin-left:-8.022187pt;}
._8{margin-left:-6.888960pt;}
._5{margin-left:-5.316480pt;}
._7{margin-left:-4.118400pt;}
._4{margin-left:-3.219840pt;}
._3{margin-left:-2.246400pt;}
._2{margin-left:-0.906240pt;}
._0{width:1.058987pt;}
._23{width:2.649600pt;}
._f{width:3.709440pt;}
._20{width:4.615680pt;}
._2d{width:5.880320pt;}
._32{width:6.786987pt;}
._21{width:7.713280pt;}
._13{width:9.479680pt;}
._14{width:10.433707pt;}
._19{width:11.386880pt;}
._18{width:12.364800pt;}
._1a{width:13.551360pt;}
._2c{width:14.730240pt;}
._16{width:16.015360pt;}
._15{width:17.134080pt;}
._1f{width:18.193920pt;}
._17{width:19.548160pt;}
._2e{width:20.800000pt;}
._29{width:22.080000pt;}
._30{width:23.744000pt;}
._2b{width:25.152000pt;}
._9{width:26.878720pt;}
._11{width:28.203520pt;}
._12{width:29.498880pt;}
._22{width:30.558720pt;}
._28{width:31.559680pt;}
._36{width:32.768000pt;}
._e{width:33.797120pt;}
._2f{width:34.772480pt;}
._26{width:35.763200pt;}
._1e{width:36.800000pt;}
._1b{width:38.507520pt;}
._31{width:40.064000pt;}
._39{width:41.364480pt;}
._34{width:42.432000pt;}
._1c{width:43.924480pt;}
._10{width:45.632000pt;}
._2a{width:47.928320pt;}
._1d{width:49.223680pt;}
._27{width:51.130880pt;}
._35{width:52.642133pt;}
._33{width:60.864000pt;}
._3a{width:63.649280pt;}
._24{width:71.891627pt;}
._a{width:75.418667pt;}
._d{width:86.026667pt;}
._3b{width:98.506240pt;}
._c{width:99.514667pt;}
._37{width:105.856000pt;}
._38{width:106.845013pt;}
._b{width:139.498667pt;}
._25{width:331.200000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.200000pt;}
.y4a{bottom:3.232000pt;}
.y41{bottom:7.200000pt;}
.y3a{bottom:8.000000pt;}
.y12{bottom:8.160000pt;}
.y1a{bottom:10.080000pt;}
.y15{bottom:10.880000pt;}
.y40{bottom:11.680000pt;}
.y37{bottom:20.000000pt;}
.y59{bottom:20.160000pt;}
.y49{bottom:20.186667pt;}
.y19{bottom:23.840000pt;}
.y36{bottom:36.960000pt;}
.y47{bottom:36.986667pt;}
.y18{bottom:37.760000pt;}
.y17{bottom:51.520000pt;}
.y6{bottom:52.800000pt;}
.y35{bottom:53.760000pt;}
.y46{bottom:53.786667pt;}
.y58{bottom:53.920000pt;}
.y48{bottom:54.746667pt;}
.y34{bottom:70.720000pt;}
.y45{bottom:70.746667pt;}
.y5{bottom:75.520000pt;}
.y57{bottom:87.520000pt;}
.y44{bottom:87.546667pt;}
.y33{bottom:87.560000pt;}
.y56{bottom:104.480000pt;}
.y43{bottom:104.506667pt;}
.y32{bottom:104.520000pt;}
.y42{bottom:117.600000pt;}
.yc6{bottom:118.720000pt;}
.y55{bottom:121.280000pt;}
.y31{bottom:121.320000pt;}
.y75{bottom:123.872000pt;}
.ya7{bottom:129.632000pt;}
.yc5{bottom:135.546667pt;}
.y30{bottom:138.120000pt;}
.y54{bottom:138.240000pt;}
.y74{bottom:142.266667pt;}
.ya6{bottom:148.026667pt;}
.yc4{bottom:152.506667pt;}
.y53{bottom:155.040000pt;}
.y2f{bottom:155.080000pt;}
.y73{bottom:160.666667pt;}
.ya5{bottom:166.426667pt;}
.yc3{bottom:169.466667pt;}
.y2e{bottom:171.880000pt;}
.y72{bottom:179.066667pt;}
.ya4{bottom:184.826667pt;}
.yc2{bottom:186.266667pt;}
.y2d{bottom:188.840000pt;}
.y71{bottom:197.466667pt;}
.ya3{bottom:203.226667pt;}
.yc1{bottom:203.386667pt;}
.y2c{bottom:205.640000pt;}
.y70{bottom:215.866667pt;}
.ya2{bottom:221.626667pt;}
.yc0{bottom:221.786667pt;}
.y2b{bottom:222.440000pt;}
.y52{bottom:222.600000pt;}
.y6f{bottom:234.266667pt;}
.y3f{bottom:236.986667pt;}
.y2a{bottom:239.400000pt;}
.ya1{bottom:240.026667pt;}
.ybf{bottom:240.186667pt;}
.y6e{bottom:252.666667pt;}
.y29{bottom:256.200000pt;}
.ya0{bottom:258.426667pt;}
.ybe{bottom:258.586667pt;}
.y13{bottom:261.626667pt;}
.yf1{bottom:268.826667pt;}
.y6d{bottom:271.066667pt;}
.y28{bottom:273.160000pt;}
.y9f{bottom:276.826667pt;}
.ybd{bottom:276.986667pt;}
.yf0{bottom:285.786667pt;}
.y6c{bottom:289.466667pt;}
.y27{bottom:289.960000pt;}
.y9e{bottom:295.226667pt;}
.ybc{bottom:295.386667pt;}
.yef{bottom:302.746667pt;}
.y26{bottom:306.760000pt;}
.y51{bottom:306.920000pt;}
.y6b{bottom:307.866667pt;}
.y9d{bottom:313.626667pt;}
.ybb{bottom:313.786667pt;}
.yee{bottom:319.546667pt;}
.y50{bottom:323.720000pt;}
.y25{bottom:323.746667pt;}
.y6a{bottom:326.266667pt;}
.y9c{bottom:332.026667pt;}
.yba{bottom:332.186667pt;}
.yed{bottom:336.506667pt;}
.y24{bottom:340.546667pt;}
.y4f{bottom:340.680000pt;}
.y69{bottom:344.706667pt;}
.y9b{bottom:350.466667pt;}
.yb9{bottom:350.626667pt;}
.y3e{bottom:353.186667pt;}
.yec{bottom:353.346667pt;}
.y4e{bottom:357.480000pt;}
.y23{bottom:357.506667pt;}
.y68{bottom:363.106667pt;}
.y9a{bottom:368.866667pt;}
.yb8{bottom:369.026667pt;}
.y3d{bottom:370.146667pt;}
.yeb{bottom:370.306667pt;}
.y22{bottom:374.306667pt;}
.y67{bottom:381.506667pt;}
.y3c{bottom:386.946667pt;}
.y99{bottom:387.266667pt;}
.yb7{bottom:387.426667pt;}
.y21{bottom:391.106667pt;}
.y66{bottom:399.906667pt;}
.y3b{bottom:403.906667pt;}
.yea{bottom:404.066667pt;}
.y98{bottom:405.666667pt;}
.yb6{bottom:405.826667pt;}
.y20{bottom:408.066667pt;}
.y65{bottom:418.306667pt;}
.ye9{bottom:421.026667pt;}
.y97{bottom:424.066667pt;}
.yb5{bottom:424.226667pt;}
.y1f{bottom:424.866667pt;}
.y64{bottom:436.706667pt;}
.ye8{bottom:437.986667pt;}
.y1e{bottom:441.826667pt;}
.y96{bottom:442.466667pt;}
.yb4{bottom:442.626667pt;}
.ye7{bottom:454.786667pt;}
.y63{bottom:455.106667pt;}
.y1d{bottom:458.626667pt;}
.y95{bottom:460.866667pt;}
.yb3{bottom:461.026667pt;}
.ye6{bottom:471.746667pt;}
.y62{bottom:473.506667pt;}
.y1c{bottom:475.426667pt;}
.y94{bottom:479.266667pt;}
.yb2{bottom:479.426667pt;}
.ye5{bottom:488.706667pt;}
.y61{bottom:491.906667pt;}
.y1b{bottom:492.386667pt;}
.y93{bottom:497.666667pt;}
.yb1{bottom:497.826667pt;}
.ye4{bottom:505.506667pt;}
.y60{bottom:510.306667pt;}
.y92{bottom:516.066667pt;}
.yb0{bottom:516.226667pt;}
.y14{bottom:519.426667pt;}
.ye3{bottom:522.466667pt;}
.y5f{bottom:528.706667pt;}
.y91{bottom:534.466667pt;}
.yaf{bottom:534.626667pt;}
.ye2{bottom:539.266667pt;}
.y5e{bottom:547.106667pt;}
.y90{bottom:552.706667pt;}
.yae{bottom:553.026667pt;}
.ye1{bottom:556.226667pt;}
.y5d{bottom:565.506667pt;}
.y8f{bottom:571.133333pt;}
.yad{bottom:571.453333pt;}
.ye0{bottom:573.213333pt;}
.y5c{bottom:583.933333pt;}
.y8e{bottom:589.533333pt;}
.yac{bottom:589.853333pt;}
.ydf{bottom:590.013333pt;}
.y5b{bottom:602.333333pt;}
.yde{bottom:606.973333pt;}
.y8d{bottom:607.933333pt;}
.yab{bottom:608.253333pt;}
.y5a{bottom:620.733333pt;}
.ydd{bottom:623.933333pt;}
.y8c{bottom:626.333333pt;}
.yaa{bottom:626.653333pt;}
.y4d{bottom:636.893333pt;}
.ydc{bottom:640.733333pt;}
.y8b{bottom:644.733333pt;}
.ya9{bottom:645.053333pt;}
.ydb{bottom:657.693333pt;}
.ya8{bottom:659.933333pt;}
.y8a{bottom:663.133333pt;}
.yda{bottom:674.653333pt;}
.y39{bottom:680.413333pt;}
.y89{bottom:681.533333pt;}
.yd9{bottom:691.453333pt;}
.y88{bottom:699.933333pt;}
.y16{bottom:704.893333pt;}
.yd8{bottom:708.413333pt;}
.y87{bottom:718.333333pt;}
.yd7{bottom:725.213333pt;}
.y86{bottom:736.733333pt;}
.yd6{bottom:742.173333pt;}
.y85{bottom:755.133333pt;}
.yd5{bottom:759.133333pt;}
.y11{bottom:768.893333pt;}
.y84{bottom:773.533333pt;}
.yd4{bottom:775.933333pt;}
.y83{bottom:791.933333pt;}
.yd3{bottom:792.893333pt;}
.y10{bottom:795.813333pt;}
.yd2{bottom:809.893333pt;}
.y82{bottom:810.373333pt;}
.yf{bottom:813.893333pt;}
.yd1{bottom:826.693333pt;}
.y81{bottom:828.773333pt;}
.ye{bottom:831.333333pt;}
.yd0{bottom:843.653333pt;}
.y80{bottom:847.173333pt;}
.yd{bottom:848.293333pt;}
.ycf{bottom:860.613333pt;}
.yc{bottom:865.253333pt;}
.y7f{bottom:865.573333pt;}
.yce{bottom:877.413333pt;}
.yb{bottom:882.053333pt;}
.y7e{bottom:883.973333pt;}
.ycd{bottom:894.373333pt;}
.ya{bottom:899.653333pt;}
.y7d{bottom:902.373333pt;}
.ycc{bottom:911.173333pt;}
.y7c{bottom:920.773333pt;}
.y9{bottom:920.933333pt;}
.ycb{bottom:928.133333pt;}
.y7b{bottom:939.173333pt;}
.y8{bottom:942.373333pt;}
.yca{bottom:945.093333pt;}
.y7a{bottom:957.573333pt;}
.yc9{bottom:961.893333pt;}
.y7{bottom:963.813333pt;}
.y79{bottom:975.973333pt;}
.yc8{bottom:978.853333pt;}
.y78{bottom:994.373333pt;}
.yc7{bottom:995.813333pt;}
.y4{bottom:1001.413333pt;}
.y3{bottom:1015.493333pt;}
.y2{bottom:1030.240000pt;}
.y4c{bottom:1041.760000pt;}
.y77{bottom:1044.160000pt;}
.y1{bottom:1054.720000pt;}
.y76{bottom:1060.960000pt;}
.y4b{bottom:1061.120000pt;}
.h10{height:23.200000pt;}
.ha{height:23.360000pt;}
.h3{height:44.722500pt;}
.h12{height:47.085938pt;}
.h5{height:47.109375pt;}
.he{height:48.375000pt;}
.hc{height:53.535000pt;}
.h8{height:57.758750pt;}
.h4{height:57.787500pt;}
.h7{height:60.733125pt;}
.hd{height:62.720000pt;}
.h9{height:62.812500pt;}
.h15{height:64.500000pt;}
.h6{height:75.465000pt;}
.h2{height:88.777500pt;}
.h13{height:118.112000pt;}
.h14{height:371.066667pt;}
.h11{height:417.506667pt;}
.hf{height:505.986667pt;}
.hb{height:530.626667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:21.120000pt;}
.w6{width:150.906667pt;}
.w3{width:207.866667pt;}
.w5{width:344.866667pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.xf{left:26.400000pt;}
.x1{left:113.471988pt;}
.x4{left:117.791988pt;}
.x3{left:141.146655pt;}
.x12{left:149.466655pt;}
.x10{left:151.226655pt;}
.x7{left:168.666655pt;}
.x9{left:210.426655pt;}
.xa{left:216.346655pt;}
.x5{left:225.466655pt;}
.x8{left:240.226655pt;}
.x11{left:318.306655pt;}
.xd{left:321.346667pt;}
.xe{left:342.466667pt;}
.x6{left:396.733322pt;}
.xb{left:415.613322pt;}
.x2{left:500.253322pt;}
.x13{left:641.893322pt;}
}




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