
    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_1823c8acf934b69916afe6b8.woff')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_0ca67c02f981321e2402b86f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5598ced1c55c113c4214935f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.992188;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_7b2d0c3a040b0e07370c8bb2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_efb3597fe44f87d2d6d20c1e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_6384249979f70d966b684281.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2a81da77a6fc9a6ab3989d61.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_811678dde015163a4b017d0e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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;}
.m3{transform:matrix(0.000000,-0.249912,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249912,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249912,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:34.560000px;}
.lsb{letter-spacing:-1.788000px;}
.ls7{letter-spacing:-0.738000px;}
.lse{letter-spacing:-0.708000px;}
.ls9{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.370200px;}
.lsc{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.355200px;}
.ls6{letter-spacing:-0.349800px;}
.ls5{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010080px;}
.ls8{letter-spacing:0.015120px;}
.ls3{letter-spacing:0.349800px;}
.ls0{letter-spacing:0.349920px;}
.lsa{letter-spacing:0.360000px;}
.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:-12.970080px;}
.ws8{word-spacing:-12.959880px;}
.ws0{word-spacing:-12.620160px;}
.ws1{word-spacing:-12.610080px;}
.ws2{word-spacing:-12.589920px;}
.ws7{word-spacing:-12.250080px;}
.ws4{word-spacing:-11.908080px;}
.wsb{word-spacing:-11.902080px;}
.wsa{word-spacing:-11.872080px;}
.ws6{word-spacing:-10.822080px;}
.ws9{word-spacing:-9.624000px;}
.wsc{word-spacing:-5.879050px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:153.785411px;}
._2{margin-left:-2.487600px;}
._0{margin-left:-1.468800px;}
._1{width:1.177440px;}
._3{width:2.525760px;}
._5{width:6.436080px;}
._4{width:11.862480px;}
._6{width:80.151120px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:26.013495px;}
.fs3{font-size:26.022650px;}
.fs5{font-size:28.834236px;}
.fs0{font-size:45.360000px;}
.fs4{font-size:47.012341px;}
.fs1{font-size:48.240000px;}
.y10e{bottom:-25.920000px;}
.ye6{bottom:-22.875000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:2.612515px;}
.y76{bottom:2.685000px;}
.y52{bottom:2.700000px;}
.yb5{bottom:2.880000px;}
.yfb{bottom:4.459643px;}
.y41{bottom:5.220000px;}
.yf9{bottom:5.262770px;}
.y98{bottom:6.660000px;}
.y10d{bottom:8.280000px;}
.y44{bottom:10.800000px;}
.ye5{bottom:11.145000px;}
.yf2{bottom:12.532054px;}
.y75{bottom:15.465000px;}
.y51{bottom:15.480000px;}
.yb4{bottom:15.660000px;}
.y40{bottom:16.020000px;}
.y97{bottom:19.800000px;}
.ye8{bottom:21.025616px;}
.y43{bottom:21.420000px;}
.y74{bottom:25.725000px;}
.y50{bottom:25.740000px;}
.yb3{bottom:25.920000px;}
.y96{bottom:30.240000px;}
.y10c{bottom:39.420000px;}
.ye4{bottom:42.510000px;}
.ye9{bottom:50.565037px;}
.yea{bottom:80.123394px;}
.yeb{bottom:109.662814px;}
.y71{bottom:117.576000px;}
.y94{bottom:122.436000px;}
.y3e{bottom:126.936000px;}
.yf3{bottom:128.839932px;}
.y70{bottom:130.536000px;}
.ye1{bottom:134.856000px;}
.y93{bottom:135.396000px;}
.yf7{bottom:136.596968px;}
.yec{bottom:139.215294px;}
.y3d{bottom:139.716000px;}
.yb1{bottom:140.796000px;}
.y10b{bottom:141.696000px;}
.y6f{bottom:143.496000px;}
.y92{bottom:148.356000px;}
.yf6{bottom:148.415348px;}
.y3c{bottom:152.670000px;}
.yb0{bottom:153.570000px;}
.y6e{bottom:156.450000px;}
.y91{bottom:161.310000px;}
.y3b{bottom:165.630000px;}
.yaf{bottom:166.530000px;}
.yed{bottom:168.754715px;}
.ye0{bottom:168.870000px;}
.y6d{bottom:169.410000px;}
.y90{bottom:174.090000px;}
.y10a{bottom:175.710000px;}
.y3a{bottom:178.590000px;}
.yae{bottom:179.490000px;}
.y8f{bottom:181.650000px;}
.ydf{bottom:181.830000px;}
.y6c{bottom:182.190000px;}
.y39{bottom:191.730000px;}
.yad{bottom:192.450000px;}
.yde{bottom:194.790000px;}
.yee{bottom:198.294136px;}
.y73{bottom:199.665000px;}
.y8e{bottom:202.170000px;}
.y38{bottom:204.510000px;}
.yac{bottom:205.410000px;}
.ydd{bottom:207.570000px;}
.y109{bottom:209.730000px;}
.y8d{bottom:215.130000px;}
.y37{bottom:217.650000px;}
.yab{bottom:218.370000px;}
.ydc{bottom:220.530000px;}
.yef{bottom:227.846616px;}
.y8c{bottom:228.090000px;}
.y36{bottom:230.250000px;}
.yaa{bottom:231.330000px;}
.ydb{bottom:233.490000px;}
.y8b{bottom:241.050000px;}
.y35{bottom:243.210000px;}
.y108{bottom:243.570000px;}
.ya9{bottom:244.290000px;}
.y8a{bottom:254.010000px;}
.y34{bottom:256.170000px;}
.ya8{bottom:257.070000px;}
.yf0{bottom:257.386036px;}
.yda{bottom:264.810000px;}
.y89{bottom:266.970000px;}
.y33{bottom:269.130000px;}
.ya7{bottom:270.030000px;}
.ye3{bottom:272.925000px;}
.y107{bottom:277.410000px;}
.y88{bottom:279.750000px;}
.y32{bottom:282.090000px;}
.ya6{bottom:282.990000px;}
.yf1{bottom:286.945046px;}
.y87{bottom:292.710000px;}
.y31{bottom:295.050000px;}
.ya5{bottom:296.130000px;}
.yf5{bottom:300.154208px;}
.y86{bottom:305.670000px;}
.y30{bottom:308.010000px;}
.ya4{bottom:308.910000px;}
.y106{bottom:311.295000px;}
.ye7{bottom:318.375000px;}
.y85{bottom:318.675000px;}
.y2f{bottom:321.015000px;}
.ya3{bottom:321.915000px;}
.y84{bottom:331.635000px;}
.y2e{bottom:333.795000px;}
.ya2{bottom:334.875000px;}
.y83{bottom:344.595000px;}
.y105{bottom:345.315000px;}
.y2d{bottom:346.755000px;}
.ya1{bottom:347.835000px;}
.y82{bottom:357.555000px;}
.y2c{bottom:359.715000px;}
.ya0{bottom:360.615000px;}
.y81{bottom:370.515000px;}
.y2b{bottom:372.675000px;}
.y9f{bottom:373.575000px;}
.y104{bottom:379.155000px;}
.y80{bottom:383.295000px;}
.y2a{bottom:385.635000px;}
.y9e{bottom:386.715000px;}
.y7f{bottom:396.255000px;}
.y29{bottom:398.595000px;}
.y9d{bottom:399.495000px;}
.y7e{bottom:409.215000px;}
.y28{bottom:411.555000px;}
.y9c{bottom:412.455000px;}
.y103{bottom:413.175000px;}
.y7d{bottom:422.175000px;}
.y27{bottom:424.515000px;}
.y9b{bottom:425.415000px;}
.y7c{bottom:435.135000px;}
.y9a{bottom:435.855000px;}
.y26{bottom:437.295000px;}
.yb2{bottom:443.955000px;}
.y102{bottom:447.015000px;}
.y7b{bottom:448.095000px;}
.y25{bottom:450.255000px;}
.y4e{bottom:453.495000px;}
.y7a{bottom:458.355000px;}
.y66{bottom:458.715000px;}
.y24{bottom:463.215000px;}
.y95{bottom:465.735000px;}
.y4d{bottom:466.455000px;}
.yd8{bottom:469.875000px;}
.y65{bottom:471.675000px;}
.y23{bottom:476.175000px;}
.y4c{bottom:479.415000px;}
.y101{bottom:481.215000px;}
.yd7{bottom:482.835000px;}
.y64{bottom:484.635000px;}
.y22{bottom:489.135000px;}
.y4b{bottom:492.375000px;}
.yd6{bottom:495.795000px;}
.y63{bottom:497.775000px;}
.y21{bottom:502.095000px;}
.y4a{bottom:505.155000px;}
.yd5{bottom:508.575000px;}
.y62{bottom:510.555000px;}
.y20{bottom:515.055000px;}
.y6b{bottom:515.235000px;}
.y49{bottom:518.115000px;}
.yd4{bottom:521.535000px;}
.y61{bottom:523.515000px;}
.y6a{bottom:527.835000px;}
.y1f{bottom:528.015000px;}
.y48{bottom:531.075000px;}
.yd3{bottom:534.495000px;}
.y60{bottom:536.295000px;}
.y1e{bottom:540.795000px;}
.y47{bottom:544.035000px;}
.y100{bottom:549.075000px;}
.y5f{bottom:549.255000px;}
.yfa{bottom:549.551656px;}
.y1d{bottom:553.755000px;}
.yf8{bottom:555.976676px;}
.y4f{bottom:561.525000px;}
.y5e{bottom:562.245000px;}
.y1c{bottom:566.745000px;}
.yd2{bottom:568.545000px;}
.y5d{bottom:575.205000px;}
.y1b{bottom:579.705000px;}
.yd1{bottom:581.325000px;}
.yff{bottom:583.125000px;}
.y5c{bottom:588.165000px;}
.y1a{bottom:592.665000px;}
.yd0{bottom:594.285000px;}
.y5b{bottom:601.125000px;}
.y19{bottom:605.625000px;}
.ycf{bottom:607.245000px;}
.y5a{bottom:614.265000px;}
.yfe{bottom:616.785000px;}
.y69{bottom:618.585000px;}
.y18{bottom:618.765000px;}
.yce{bottom:620.205000px;}
.y59{bottom:627.045000px;}
.y17{bottom:631.545000px;}
.y58{bottom:639.825000px;}
.y16{bottom:644.325000px;}
.yfd{bottom:650.805000px;}
.y57{bottom:652.785000px;}
.ycd{bottom:654.225000px;}
.y15{bottom:654.585000px;}
.y68{bottom:657.285000px;}
.yd9{bottom:659.445000px;}
.y42{bottom:663.225000px;}
.y3f{bottom:663.585000px;}
.y56{bottom:665.745000px;}
.ye2{bottom:666.105000px;}
.ycc{bottom:667.185000px;}
.y72{bottom:674.745000px;}
.y55{bottom:678.705000px;}
.ycb{bottom:679.965000px;}
.yfc{bottom:684.645000px;}
.y54{bottom:691.665000px;}
.yca{bottom:692.925000px;}
.y53{bottom:701.925000px;}
.yc9{bottom:705.885000px;}
.y67{bottom:710.745000px;}
.yc8{bottom:718.845000px;}
.yc7{bottom:731.805000px;}
.yc6{bottom:765.645000px;}
.yc5{bottom:778.605000px;}
.yc4{bottom:812.670000px;}
.y14{bottom:823.830000px;}
.yc3{bottom:825.630000px;}
.y13{bottom:836.790000px;}
.yc2{bottom:838.590000px;}
.y12{bottom:849.930000px;}
.yc1{bottom:851.370000px;}
.y11{bottom:862.710000px;}
.yc0{bottom:864.330000px;}
.y10{bottom:875.670000px;}
.ybf{bottom:877.290000px;}
.yf{bottom:888.630000px;}
.ybe{bottom:890.430000px;}
.ye{bottom:901.590000px;}
.ybd{bottom:903.390000px;}
.yd{bottom:914.370000px;}
.ybc{bottom:916.170000px;}
.yc{bottom:927.330000px;}
.yb{bottom:940.290000px;}
.y79{bottom:940.470000px;}
.ybb{bottom:950.010000px;}
.ya{bottom:953.250000px;}
.yba{bottom:962.970000px;}
.y9{bottom:966.210000px;}
.y78{bottom:966.390000px;}
.yb9{bottom:975.930000px;}
.y8{bottom:979.170000px;}
.y99{bottom:979.350000px;}
.yb8{bottom:988.890000px;}
.y7{bottom:992.130000px;}
.y6{bottom:1005.090000px;}
.y5{bottom:1017.870000px;}
.yb7{bottom:1022.910000px;}
.y46{bottom:1030.830000px;}
.y4{bottom:1031.010000px;}
.yb6{bottom:1035.690000px;}
.y3{bottom:1043.790000px;}
.y77{bottom:1043.970000px;}
.y2{bottom:1056.750000px;}
.y45{bottom:1069.740000px;}
.y1{bottom:1069.920000px;}
.h18{height:13.633579px;}
.h16{height:14.417118px;}
.h14{height:19.662544px;}
.h13{height:19.669464px;}
.h12{height:19.726054px;}
.h17{height:21.865023px;}
.h9{height:35.459648px;}
.h15{height:35.534719px;}
.h1{height:47.309062px;}
.h3{height:49.583118px;}
.hf{height:50.218594px;}
.ha{height:72.788203px;}
.hb{height:77.549062px;}
.h2{height:151.770000px;}
.h4{height:151.950000px;}
.h8{height:228.975000px;}
.h11{height:311.998706px;}
.h10{height:359.700000px;}
.h6{height:363.315000px;}
.h19{height:379.155000px;}
.hc{height:387.240000px;}
.h7{height:399.315000px;}
.he{height:406.875000px;}
.h5{height:408.990000px;}
.hd{height:448.980000px;}
.h0{height:1188.000000px;}
.wb{width:262.172187px;}
.wc{width:281.559322px;}
.w1{width:331.399500px;}
.w2{width:387.075000px;}
.wa{width:434.233373px;}
.w9{width:501.724500px;}
.w7{width:604.350000px;}
.w8{width:622.530000px;}
.w4{width:664.290000px;}
.w5{width:696.690000px;}
.w3{width:702.090000px;}
.w6{width:707.670000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:7.853824px;}
.x7{left:10.789500px;}
.x1b{left:14.908157px;}
.x1c{left:22.087900px;}
.x21{left:76.924886px;}
.x1f{left:88.166096px;}
.x4{left:108.036000px;}
.x13{left:109.666500px;}
.x1a{left:121.425000px;}
.x23{left:140.315904px;}
.x26{left:144.586500px;}
.x1e{left:181.845022px;}
.x25{left:185.790000px;}
.x22{left:274.099050px;}
.x6{left:321.328500px;}
.x1{left:324.975000px;}
.xd{left:332.128500px;}
.x24{left:367.995000px;}
.x9{left:375.375000px;}
.x11{left:383.115000px;}
.x20{left:390.561827px;}
.x2{left:412.995000px;}
.x5{left:443.235000px;}
.x19{left:449.518500px;}
.x12{left:455.835000px;}
.x3{left:459.075000px;}
.x8{left:460.875000px;}
.x16{left:593.563500px;}
.x18{left:612.105000px;}
.xc{left:651.703500px;}
.xe{left:685.903500px;}
.xf{left:691.843500px;}
.xa{left:695.623500px;}
.x14{left:701.563500px;}
.x15{left:715.650000px;}
.x17{left:733.830000px;}
.xb{left:776.310000px;}
.x10{left:819.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:30.720000pt;}
.lsb{letter-spacing:-1.589333pt;}
.ls7{letter-spacing:-0.656000pt;}
.lse{letter-spacing:-0.629333pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.329067pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.315733pt;}
.ls6{letter-spacing:-0.310933pt;}
.ls5{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008960pt;}
.ls8{letter-spacing:0.013440pt;}
.ls3{letter-spacing:0.310933pt;}
.ls0{letter-spacing:0.311040pt;}
.lsa{letter-spacing:0.320000pt;}
.ws5{word-spacing:-11.528960pt;}
.ws8{word-spacing:-11.519893pt;}
.ws0{word-spacing:-11.217920pt;}
.ws1{word-spacing:-11.208960pt;}
.ws2{word-spacing:-11.191040pt;}
.ws7{word-spacing:-10.888960pt;}
.ws4{word-spacing:-10.584960pt;}
.wsb{word-spacing:-10.579627pt;}
.wsa{word-spacing:-10.552960pt;}
.ws6{word-spacing:-9.619627pt;}
.ws9{word-spacing:-8.554667pt;}
.wsc{word-spacing:-5.225822pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:136.698143pt;}
._2{margin-left:-2.211200pt;}
._0{margin-left:-1.305600pt;}
._1{width:1.046613pt;}
._3{width:2.245120pt;}
._5{width:5.720960pt;}
._4{width:10.544427pt;}
._6{width:71.245440pt;}
.fs2{font-size:23.123107pt;}
.fs3{font-size:23.131244pt;}
.fs5{font-size:25.630432pt;}
.fs0{font-size:40.320000pt;}
.fs4{font-size:41.788747pt;}
.fs1{font-size:42.880000pt;}
.y10e{bottom:-23.040000pt;}
.ye6{bottom:-20.333333pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:2.322236pt;}
.y76{bottom:2.386667pt;}
.y52{bottom:2.400000pt;}
.yb5{bottom:2.560000pt;}
.yfb{bottom:3.964127pt;}
.y41{bottom:4.640000pt;}
.yf9{bottom:4.678018pt;}
.y98{bottom:5.920000pt;}
.y10d{bottom:7.360000pt;}
.y44{bottom:9.600000pt;}
.ye5{bottom:9.906667pt;}
.yf2{bottom:11.139603pt;}
.y75{bottom:13.746667pt;}
.y51{bottom:13.760000pt;}
.yb4{bottom:13.920000pt;}
.y40{bottom:14.240000pt;}
.y97{bottom:17.600000pt;}
.ye8{bottom:18.689437pt;}
.y43{bottom:19.040000pt;}
.y74{bottom:22.866667pt;}
.y50{bottom:22.880000pt;}
.yb3{bottom:23.040000pt;}
.y96{bottom:26.880000pt;}
.y10c{bottom:35.040000pt;}
.ye4{bottom:37.786667pt;}
.ye9{bottom:44.946700pt;}
.yea{bottom:71.220794pt;}
.yeb{bottom:97.478057pt;}
.y71{bottom:104.512000pt;}
.y94{bottom:108.832000pt;}
.y3e{bottom:112.832000pt;}
.yf3{bottom:114.524384pt;}
.y70{bottom:116.032000pt;}
.ye1{bottom:119.872000pt;}
.y93{bottom:120.352000pt;}
.yf7{bottom:121.419527pt;}
.yec{bottom:123.746928pt;}
.y3d{bottom:124.192000pt;}
.yb1{bottom:125.152000pt;}
.y10b{bottom:125.952000pt;}
.y6f{bottom:127.552000pt;}
.y92{bottom:131.872000pt;}
.yf6{bottom:131.924754pt;}
.y3c{bottom:135.706667pt;}
.yb0{bottom:136.506667pt;}
.y6e{bottom:139.066667pt;}
.y91{bottom:143.386667pt;}
.y3b{bottom:147.226667pt;}
.yaf{bottom:148.026667pt;}
.yed{bottom:150.004191pt;}
.ye0{bottom:150.106667pt;}
.y6d{bottom:150.586667pt;}
.y90{bottom:154.746667pt;}
.y10a{bottom:156.186667pt;}
.y3a{bottom:158.746667pt;}
.yae{bottom:159.546667pt;}
.y8f{bottom:161.466667pt;}
.ydf{bottom:161.626667pt;}
.y6c{bottom:161.946667pt;}
.y39{bottom:170.426667pt;}
.yad{bottom:171.066667pt;}
.yde{bottom:173.146667pt;}
.yee{bottom:176.261454pt;}
.y73{bottom:177.480000pt;}
.y8e{bottom:179.706667pt;}
.y38{bottom:181.786667pt;}
.yac{bottom:182.586667pt;}
.ydd{bottom:184.506667pt;}
.y109{bottom:186.426667pt;}
.y8d{bottom:191.226667pt;}
.y37{bottom:193.466667pt;}
.yab{bottom:194.106667pt;}
.ydc{bottom:196.026667pt;}
.yef{bottom:202.530325pt;}
.y8c{bottom:202.746667pt;}
.y36{bottom:204.666667pt;}
.yaa{bottom:205.626667pt;}
.ydb{bottom:207.546667pt;}
.y8b{bottom:214.266667pt;}
.y35{bottom:216.186667pt;}
.y108{bottom:216.506667pt;}
.ya9{bottom:217.146667pt;}
.y8a{bottom:225.786667pt;}
.y34{bottom:227.706667pt;}
.ya8{bottom:228.506667pt;}
.yf0{bottom:228.787588pt;}
.yda{bottom:235.386667pt;}
.y89{bottom:237.306667pt;}
.y33{bottom:239.226667pt;}
.ya7{bottom:240.026667pt;}
.ye3{bottom:242.600000pt;}
.y107{bottom:246.586667pt;}
.y88{bottom:248.666667pt;}
.y32{bottom:250.746667pt;}
.ya6{bottom:251.546667pt;}
.yf1{bottom:255.062263pt;}
.y87{bottom:260.186667pt;}
.y31{bottom:262.266667pt;}
.ya5{bottom:263.226667pt;}
.yf5{bottom:266.803740pt;}
.y86{bottom:271.706667pt;}
.y30{bottom:273.786667pt;}
.ya4{bottom:274.586667pt;}
.y106{bottom:276.706667pt;}
.ye7{bottom:283.000000pt;}
.y85{bottom:283.266667pt;}
.y2f{bottom:285.346667pt;}
.ya3{bottom:286.146667pt;}
.y84{bottom:294.786667pt;}
.y2e{bottom:296.706667pt;}
.ya2{bottom:297.666667pt;}
.y83{bottom:306.306667pt;}
.y105{bottom:306.946667pt;}
.y2d{bottom:308.226667pt;}
.ya1{bottom:309.186667pt;}
.y82{bottom:317.826667pt;}
.y2c{bottom:319.746667pt;}
.ya0{bottom:320.546667pt;}
.y81{bottom:329.346667pt;}
.y2b{bottom:331.266667pt;}
.y9f{bottom:332.066667pt;}
.y104{bottom:337.026667pt;}
.y80{bottom:340.706667pt;}
.y2a{bottom:342.786667pt;}
.y9e{bottom:343.746667pt;}
.y7f{bottom:352.226667pt;}
.y29{bottom:354.306667pt;}
.y9d{bottom:355.106667pt;}
.y7e{bottom:363.746667pt;}
.y28{bottom:365.826667pt;}
.y9c{bottom:366.626667pt;}
.y103{bottom:367.266667pt;}
.y7d{bottom:375.266667pt;}
.y27{bottom:377.346667pt;}
.y9b{bottom:378.146667pt;}
.y7c{bottom:386.786667pt;}
.y9a{bottom:387.426667pt;}
.y26{bottom:388.706667pt;}
.yb2{bottom:394.626667pt;}
.y102{bottom:397.346667pt;}
.y7b{bottom:398.306667pt;}
.y25{bottom:400.226667pt;}
.y4e{bottom:403.106667pt;}
.y7a{bottom:407.426667pt;}
.y66{bottom:407.746667pt;}
.y24{bottom:411.746667pt;}
.y95{bottom:413.986667pt;}
.y4d{bottom:414.626667pt;}
.yd8{bottom:417.666667pt;}
.y65{bottom:419.266667pt;}
.y23{bottom:423.266667pt;}
.y4c{bottom:426.146667pt;}
.y101{bottom:427.746667pt;}
.yd7{bottom:429.186667pt;}
.y64{bottom:430.786667pt;}
.y22{bottom:434.786667pt;}
.y4b{bottom:437.666667pt;}
.yd6{bottom:440.706667pt;}
.y63{bottom:442.466667pt;}
.y21{bottom:446.306667pt;}
.y4a{bottom:449.026667pt;}
.yd5{bottom:452.066667pt;}
.y62{bottom:453.826667pt;}
.y20{bottom:457.826667pt;}
.y6b{bottom:457.986667pt;}
.y49{bottom:460.546667pt;}
.yd4{bottom:463.586667pt;}
.y61{bottom:465.346667pt;}
.y6a{bottom:469.186667pt;}
.y1f{bottom:469.346667pt;}
.y48{bottom:472.066667pt;}
.yd3{bottom:475.106667pt;}
.y60{bottom:476.706667pt;}
.y1e{bottom:480.706667pt;}
.y47{bottom:483.586667pt;}
.y100{bottom:488.066667pt;}
.y5f{bottom:488.226667pt;}
.yfa{bottom:488.490361pt;}
.y1d{bottom:492.226667pt;}
.yf8{bottom:494.201490pt;}
.y4f{bottom:499.133333pt;}
.y5e{bottom:499.773333pt;}
.y1c{bottom:503.773333pt;}
.yd2{bottom:505.373333pt;}
.y5d{bottom:511.293333pt;}
.y1b{bottom:515.293333pt;}
.yd1{bottom:516.733333pt;}
.yff{bottom:518.333333pt;}
.y5c{bottom:522.813333pt;}
.y1a{bottom:526.813333pt;}
.yd0{bottom:528.253333pt;}
.y5b{bottom:534.333333pt;}
.y19{bottom:538.333333pt;}
.ycf{bottom:539.773333pt;}
.y5a{bottom:546.013333pt;}
.yfe{bottom:548.253333pt;}
.y69{bottom:549.853333pt;}
.y18{bottom:550.013333pt;}
.yce{bottom:551.293333pt;}
.y59{bottom:557.373333pt;}
.y17{bottom:561.373333pt;}
.y58{bottom:568.733333pt;}
.y16{bottom:572.733333pt;}
.yfd{bottom:578.493333pt;}
.y57{bottom:580.253333pt;}
.ycd{bottom:581.533333pt;}
.y15{bottom:581.853333pt;}
.y68{bottom:584.253333pt;}
.yd9{bottom:586.173333pt;}
.y42{bottom:589.533333pt;}
.y3f{bottom:589.853333pt;}
.y56{bottom:591.773333pt;}
.ye2{bottom:592.093333pt;}
.ycc{bottom:593.053333pt;}
.y72{bottom:599.773333pt;}
.y55{bottom:603.293333pt;}
.ycb{bottom:604.413333pt;}
.yfc{bottom:608.573333pt;}
.y54{bottom:614.813333pt;}
.yca{bottom:615.933333pt;}
.y53{bottom:623.933333pt;}
.yc9{bottom:627.453333pt;}
.y67{bottom:631.773333pt;}
.yc8{bottom:638.973333pt;}
.yc7{bottom:650.493333pt;}
.yc6{bottom:680.573333pt;}
.yc5{bottom:692.093333pt;}
.yc4{bottom:722.373333pt;}
.y14{bottom:732.293333pt;}
.yc3{bottom:733.893333pt;}
.y13{bottom:743.813333pt;}
.yc2{bottom:745.413333pt;}
.y12{bottom:755.493333pt;}
.yc1{bottom:756.773333pt;}
.y11{bottom:766.853333pt;}
.yc0{bottom:768.293333pt;}
.y10{bottom:778.373333pt;}
.ybf{bottom:779.813333pt;}
.yf{bottom:789.893333pt;}
.ybe{bottom:791.493333pt;}
.ye{bottom:801.413333pt;}
.ybd{bottom:803.013333pt;}
.yd{bottom:812.773333pt;}
.ybc{bottom:814.373333pt;}
.yc{bottom:824.293333pt;}
.yb{bottom:835.813333pt;}
.y79{bottom:835.973333pt;}
.ybb{bottom:844.453333pt;}
.ya{bottom:847.333333pt;}
.yba{bottom:855.973333pt;}
.y9{bottom:858.853333pt;}
.y78{bottom:859.013333pt;}
.yb9{bottom:867.493333pt;}
.y8{bottom:870.373333pt;}
.y99{bottom:870.533333pt;}
.yb8{bottom:879.013333pt;}
.y7{bottom:881.893333pt;}
.y6{bottom:893.413333pt;}
.y5{bottom:904.773333pt;}
.yb7{bottom:909.253333pt;}
.y46{bottom:916.293333pt;}
.y4{bottom:916.453333pt;}
.yb6{bottom:920.613333pt;}
.y3{bottom:927.813333pt;}
.y77{bottom:927.973333pt;}
.y2{bottom:939.333333pt;}
.y45{bottom:950.880000pt;}
.y1{bottom:951.040000pt;}
.h18{height:12.118737pt;}
.h16{height:12.815216pt;}
.h14{height:17.477817pt;}
.h13{height:17.483968pt;}
.h12{height:17.534270pt;}
.h17{height:19.435576pt;}
.h9{height:31.519687pt;}
.h15{height:31.586416pt;}
.h1{height:42.052500pt;}
.h3{height:44.073883pt;}
.hf{height:44.638750pt;}
.ha{height:64.700625pt;}
.hb{height:68.932500pt;}
.h2{height:134.906667pt;}
.h4{height:135.066667pt;}
.h8{height:203.533333pt;}
.h11{height:277.332183pt;}
.h10{height:319.733333pt;}
.h6{height:322.946667pt;}
.h19{height:337.026667pt;}
.hc{height:344.213333pt;}
.h7{height:354.946667pt;}
.he{height:361.666667pt;}
.h5{height:363.546667pt;}
.hd{height:399.093333pt;}
.h0{height:1056.000000pt;}
.wb{width:233.041944pt;}
.wc{width:250.274953pt;}
.w1{width:294.577333pt;}
.w2{width:344.066667pt;}
.wa{width:385.985220pt;}
.w9{width:445.977333pt;}
.w7{width:537.200000pt;}
.w8{width:553.360000pt;}
.w4{width:590.480000pt;}
.w5{width:619.280000pt;}
.w3{width:624.080000pt;}
.w6{width:629.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.981177pt;}
.x7{left:9.590667pt;}
.x1b{left:13.251695pt;}
.x1c{left:19.633689pt;}
.x21{left:68.377677pt;}
.x1f{left:78.369863pt;}
.x4{left:96.032000pt;}
.x13{left:97.481333pt;}
.x1a{left:107.933333pt;}
.x23{left:124.725248pt;}
.x26{left:128.521333pt;}
.x1e{left:161.640020pt;}
.x25{left:165.146667pt;}
.x22{left:243.643600pt;}
.x6{left:285.625333pt;}
.x1{left:288.866667pt;}
.xd{left:295.225333pt;}
.x24{left:327.106667pt;}
.x9{left:333.666667pt;}
.x11{left:340.546667pt;}
.x20{left:347.166069pt;}
.x2{left:367.106667pt;}
.x5{left:393.986667pt;}
.x19{left:399.572000pt;}
.x12{left:405.186667pt;}
.x3{left:408.066667pt;}
.x8{left:409.666667pt;}
.x16{left:527.612000pt;}
.x18{left:544.093333pt;}
.xc{left:579.292000pt;}
.xe{left:609.692000pt;}
.xf{left:614.972000pt;}
.xa{left:618.332000pt;}
.x14{left:623.612000pt;}
.x15{left:636.133333pt;}
.x17{left:652.293333pt;}
.xb{left:690.053333pt;}
.x10{left:728.133333pt;}
}




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