
    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_a9d395dae97a8bdc93db6967.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4a284e1d7284e2814be30a13.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_a8e751844441ceddb0752075.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_bdcb9f932997571ecec45523.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_46308fcb7851d2a56523b5c1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1f8871d1de42b070ba03b33.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_de8e4c68e36f206f17ab001c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_2dbcc6bf36632b23447bceb0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.230000px;}
.lsc{letter-spacing:-1.128000px;}
.ls12{letter-spacing:-0.888000px;}
.ls5{letter-spacing:-0.876000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.128000px;}
.lsa{letter-spacing:1.284000px;}
.ls10{letter-spacing:1.525500px;}
.ls14{letter-spacing:1.645500px;}
.ls1{letter-spacing:1.705500px;}
.lse{letter-spacing:2.034000px;}
.ls19{letter-spacing:2.142000px;}
.ls11{letter-spacing:2.250000px;}
.ls1a{letter-spacing:2.370000px;}
.ls15{letter-spacing:3.315000px;}
.ls6{letter-spacing:3.378000px;}
.ls1b{letter-spacing:5.733000px;}
.ls2{letter-spacing:12.375000px;}
.ls9{letter-spacing:12.435000px;}
.ls16{letter-spacing:17.055000px;}
.lsd{letter-spacing:21.375000px;}
.ls13{letter-spacing:21.495000px;}
.ls17{letter-spacing:25.875000px;}
.ls8{letter-spacing:30.375000px;}
.ls0{letter-spacing:39.495000px;}
.ls7{letter-spacing:39.555000px;}
.ls18{letter-spacing:46.203000px;}
.lsf{letter-spacing:48.375000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.375000px;}
.ws5{word-spacing:-21.159000px;}
.ws3{word-spacing:-20.409000px;}
.ws1{word-spacing:-19.125000px;}
.ws4{word-spacing:-17.895000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3{margin-left:-7.879800px;}
._36{margin-left:-6.092250px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._b{width:5.966100px;}
._2c{width:6.980550px;}
._a{width:8.092200px;}
._39{width:9.755550px;}
._d{width:12.355650px;}
._34{width:14.771700px;}
._8{width:16.374600px;}
._2b{width:17.530200px;}
._1e{width:20.694300px;}
._9{width:21.728850px;}
._c{width:22.815750px;}
._7{width:24.884850px;}
._e{width:26.124450px;}
._23{width:29.794500px;}
._21{width:30.890100px;}
._30{width:32.087850px;}
._37{width:33.835050px;}
._f{width:35.002800px;}
._35{width:38.720700px;}
._17{width:39.789900px;}
._33{width:42.917100px;}
._10{width:44.104500px;}
._2a{width:47.466750px;}
._28{width:48.979800px;}
._2d{width:50.137050px;}
._13{width:52.099200px;}
._14{width:53.566050px;}
._19{width:56.733000px;}
._18{width:58.041000px;}
._29{width:59.369550px;}
._11{width:61.022700px;}
._12{width:62.863050px;}
._24{width:65.659500px;}
._25{width:66.691200px;}
._2f{width:69.994950px;}
._2e{width:71.690850px;}
._16{width:74.879400px;}
._15{width:76.128000px;}
._3a{width:79.444350px;}
._22{width:80.612400px;}
._31{width:84.492000px;}
._38{width:87.962550px;}
._32{width:89.017200px;}
._27{width:93.282600px;}
._3c{width:94.450500px;}
._3b{width:98.035800px;}
._1f{width:107.258250px;}
._20{width:112.254450px;}
._1a{width:124.518300px;}
._1b{width:125.605350px;}
._26{width:133.618500px;}
._1d{width:151.035300px;}
._1c{width:152.219550px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs6{font-size:76.650000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y69{bottom:7.875000px;}
.y5{bottom:14.662500px;}
.y4d{bottom:16.875000px;}
.y5e{bottom:16.890000px;}
.y53{bottom:16.905000px;}
.y67{bottom:24.787500px;}
.y51{bottom:29.280000px;}
.y4f{bottom:29.295000px;}
.y60{bottom:30.420000px;}
.y3{bottom:32.662500px;}
.y68{bottom:33.787500px;}
.y56{bottom:41.655000px;}
.y52{bottom:42.780000px;}
.y4b{bottom:42.795000px;}
.y55{bottom:55.155000px;}
.y4e{bottom:55.170000px;}
.y5c{bottom:56.295000px;}
.y4{bottom:61.912500px;}
.y72{bottom:67.530000px;}
.y57{bottom:67.575000px;}
.y64{bottom:68.655000px;}
.y59{bottom:68.670000px;}
.y4c{bottom:68.700000px;}
.y5b{bottom:68.715000px;}
.y62{bottom:81.030000px;}
.y6b{bottom:82.200000px;}
.y63{bottom:94.560000px;}
.y5d{bottom:94.575000px;}
.y86{bottom:117.112500px;}
.y65{bottom:119.325000px;}
.y6c{bottom:120.480000px;}
.y97{bottom:120.487500px;}
.y47{bottom:121.612500px;}
.y2d{bottom:130.612500px;}
.y66{bottom:141.862500px;}
.y85{bottom:142.987500px;}
.y96{bottom:146.362500px;}
.y46{bottom:147.487500px;}
.y2c{bottom:156.480000px;}
.y84{bottom:168.900000px;}
.y95{bottom:172.275000px;}
.y45{bottom:173.400000px;}
.y2b{bottom:182.400000px;}
.y83{bottom:194.775000px;}
.y44{bottom:199.320000px;}
.y94{bottom:207.195000px;}
.y2a{bottom:208.320000px;}
.y82{bottom:220.695000px;}
.y43{bottom:225.195000px;}
.y93{bottom:233.070000px;}
.y29{bottom:234.195000px;}
.y81{bottom:246.600000px;}
.y42{bottom:251.100000px;}
.y28{bottom:260.100000px;}
.y92{bottom:267.975000px;}
.y80{bottom:272.475000px;}
.y41{bottom:276.975000px;}
.y27{bottom:286.005000px;}
.y91{bottom:293.880000px;}
.y7f{bottom:298.395000px;}
.y40{bottom:302.880000px;}
.y26{bottom:311.895000px;}
.y90{bottom:318.645000px;}
.y7e{bottom:324.300000px;}
.y3f{bottom:327.675000px;}
.y25{bottom:336.675000px;}
.y7d{bottom:349.050000px;}
.y3e{bottom:353.550000px;}
.y61{bottom:356.925000px;}
.y24{bottom:362.550000px;}
.y7c{bottom:374.955000px;}
.y5f{bottom:378.330000px;}
.y3d{bottom:379.470000px;}
.y23{bottom:388.455000px;}
.y7b{bottom:400.830000px;}
.y3c{bottom:405.330000px;}
.y22{bottom:414.375000px;}
.y7a{bottom:426.750000px;}
.y3b{bottom:431.250000px;}
.y21{bottom:440.250000px;}
.y79{bottom:452.670000px;}
.y3a{bottom:457.170000px;}
.y20{bottom:466.170000px;}
.y5a{bottom:470.655000px;}
.y78{bottom:478.530000px;}
.y39{bottom:483.045000px;}
.y1f{bottom:492.075000px;}
.y77{bottom:504.450000px;}
.y38{bottom:508.950000px;}
.y1e{bottom:517.950000px;}
.y76{bottom:530.325000px;}
.y37{bottom:534.855000px;}
.y1d{bottom:543.870000px;}
.y75{bottom:556.245000px;}
.y36{bottom:560.745000px;}
.y1c{bottom:569.745000px;}
.y74{bottom:582.150000px;}
.y35{bottom:586.650000px;}
.y58{bottom:588.900000px;}
.y1b{bottom:595.650000px;}
.y73{bottom:608.025000px;}
.y34{bottom:612.525000px;}
.y1a{bottom:621.570000px;}
.y71{bottom:629.445000px;}
.y33{bottom:637.320000px;}
.y19{bottom:646.320000px;}
.y32{bottom:663.225000px;}
.y18{bottom:672.225000px;}
.y54{bottom:682.350000px;}
.y31{bottom:689.100000px;}
.y17{bottom:698.100000px;}
.y30{bottom:715.005000px;}
.ya2{bottom:717.255000px;}
.y70{bottom:721.755000px;}
.y16{bottom:724.005000px;}
.y2f{bottom:740.880000px;}
.ya1{bottom:743.175000px;}
.y15{bottom:749.925000px;}
.y2e{bottom:766.800000px;}
.y50{bottom:774.675000px;}
.y14{bottom:775.800000px;}
.y8f{bottom:792.705000px;}
.y13{bottom:801.705000px;}
.ya0{bottom:808.455000px;}
.y6f{bottom:814.095000px;}
.y8e{bottom:818.580000px;}
.y12{bottom:827.625000px;}
.y9f{bottom:834.375000px;}
.y4a{bottom:841.125000px;}
.y8d{bottom:844.500000px;}
.y11{bottom:853.500000px;}
.y9e{bottom:869.295000px;}
.y8c{bottom:870.420000px;}
.y10{bottom:879.420000px;}
.y6e{bottom:880.545000px;}
.y9d{bottom:895.170000px;}
.y8b{bottom:896.295000px;}
.yf{bottom:905.295000px;}
.y8a{bottom:922.200000px;}
.y9c{bottom:930.075000px;}
.ye{bottom:931.200000px;}
.y49{bottom:948.075000px;}
.y9b{bottom:954.870000px;}
.yd{bottom:957.120000px;}
.y6d{bottom:972.855000px;}
.y48{bottom:972.870000px;}
.yc{bottom:981.870000px;}
.y9a{bottom:989.745000px;}
.y89{bottom:998.775000px;}
.yb{bottom:1007.775000px;}
.y6a{bottom:1013.400000px;}
.y99{bottom:1015.650000px;}
.y88{bottom:1024.650000px;}
.ya{bottom:1033.650000px;}
.y87{bottom:1050.570000px;}
.y9{bottom:1059.570000px;}
.y98{bottom:1076.445000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h14{height:34.912500px;}
.h5{height:40.537500px;}
.h12{height:51.787500px;}
.hc{height:53.639648px;}
.h9{height:55.918213px;}
.h16{height:60.810000px;}
.he{height:60.825000px;}
.h7{height:66.153076px;}
.h18{height:67.137451px;}
.h3{height:68.027344px;}
.ha{height:75.043213px;}
.hb{height:75.080566px;}
.h19{height:75.227783px;}
.h8{height:77.097656px;}
.h17{height:78.629945px;}
.hf{height:85.575000px;}
.h2{height:86.319141px;}
.h15{height:86.685000px;}
.hd{height:86.700000px;}
.h4{height:95.389453px;}
.h10{height:112.612500px;}
.h6{height:121.485791px;}
.h11{height:137.362500px;}
.h13{height:138.487500px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.wb{width:102.487500px;}
.w5{width:102.525000px;}
.wa{width:107.025000px;}
.w6{width:116.025000px;}
.w4{width:135.150000px;}
.w9{width:137.437500px;}
.w7{width:153.180000px;}
.w8{width:157.680000px;}
.wc{width:159.975000px;}
.w3{width:176.850000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.x18{left:2.250000px;}
.x11{left:3.375000px;}
.x1b{left:7.875000px;}
.x2f{left:9.000000px;}
.x3a{left:10.170000px;}
.x39{left:12.420000px;}
.x15{left:18.045000px;}
.x3c{left:19.170000px;}
.x21{left:20.295000px;}
.x17{left:22.545000px;}
.x31{left:23.625000px;}
.x28{left:24.780000px;}
.x14{left:25.920000px;}
.x2d{left:27.030000px;}
.x36{left:28.162500px;}
.x1a{left:29.295000px;}
.x10{left:30.405000px;}
.x27{left:31.530000px;}
.x24{left:32.670000px;}
.x38{left:34.920000px;}
.x35{left:36.045000px;}
.x26{left:37.170000px;}
.x22{left:38.287500px;}
.x12{left:39.405000px;}
.x1d{left:40.537500px;}
.x3d{left:42.787500px;}
.x1f{left:46.200000px;}
.x3e{left:47.280000px;}
.x3f{left:49.575000px;}
.x23{left:51.825000px;}
.xe{left:54.030000px;}
.x2a{left:55.200000px;}
.x20{left:56.325000px;}
.x33{left:61.965000px;}
.x1e{left:63.075000px;}
.x37{left:64.185000px;}
.x29{left:65.325000px;}
.x25{left:66.450000px;}
.x1c{left:68.700000px;}
.x34{left:69.825000px;}
.x3b{left:72.075000px;}
.x2b{left:82.200000px;}
.xd{left:107.025000px;}
.x1{left:108.149987px;}
.xc{left:129.524987px;}
.x4{left:147.562487px;}
.x5{left:150.929987px;}
.x8{left:152.054987px;}
.x41{left:161.054987px;}
.x9{left:167.849987px;}
.xb{left:246.674987px;}
.x2c{left:269.220000px;}
.xa{left:271.469987px;}
.xf{left:287.250000px;}
.x7{left:301.874987px;}
.x40{left:369.494987px;}
.x2e{left:411.150000px;}
.x13{left:425.775000px;}
.x6{left:457.319987px;}
.x30{left:521.550000px;}
.x16{left:532.800000px;}
.x32{left:627.405000px;}
.x19{left:652.200000px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.093333pt;}
.lsc{letter-spacing:-1.002667pt;}
.ls12{letter-spacing:-0.789333pt;}
.ls5{letter-spacing:-0.778667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.002667pt;}
.lsa{letter-spacing:1.141333pt;}
.ls10{letter-spacing:1.356000pt;}
.ls14{letter-spacing:1.462667pt;}
.ls1{letter-spacing:1.516000pt;}
.lse{letter-spacing:1.808000pt;}
.ls19{letter-spacing:1.904000pt;}
.ls11{letter-spacing:2.000000pt;}
.ls1a{letter-spacing:2.106667pt;}
.ls15{letter-spacing:2.946667pt;}
.ls6{letter-spacing:3.002667pt;}
.ls1b{letter-spacing:5.096000pt;}
.ls2{letter-spacing:11.000000pt;}
.ls9{letter-spacing:11.053333pt;}
.ls16{letter-spacing:15.160000pt;}
.lsd{letter-spacing:19.000000pt;}
.ls13{letter-spacing:19.106667pt;}
.ls17{letter-spacing:23.000000pt;}
.ls8{letter-spacing:27.000000pt;}
.ls0{letter-spacing:35.106667pt;}
.ls7{letter-spacing:35.160000pt;}
.ls18{letter-spacing:41.069333pt;}
.lsf{letter-spacing:43.000000pt;}
.ws6{word-spacing:-19.000000pt;}
.ws5{word-spacing:-18.808000pt;}
.ws3{word-spacing:-18.141333pt;}
.ws1{word-spacing:-17.000000pt;}
.ws4{word-spacing:-15.906667pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3{margin-left:-7.004267pt;}
._36{margin-left:-5.415333pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._b{width:5.303200pt;}
._2c{width:6.204933pt;}
._a{width:7.193067pt;}
._39{width:8.671600pt;}
._d{width:10.982800pt;}
._34{width:13.130400pt;}
._8{width:14.555200pt;}
._2b{width:15.582400pt;}
._1e{width:18.394933pt;}
._9{width:19.314533pt;}
._c{width:20.280667pt;}
._7{width:22.119867pt;}
._e{width:23.221733pt;}
._23{width:26.484000pt;}
._21{width:27.457867pt;}
._30{width:28.522533pt;}
._37{width:30.075600pt;}
._f{width:31.113600pt;}
._35{width:34.418400pt;}
._17{width:35.368800pt;}
._33{width:38.148533pt;}
._10{width:39.204000pt;}
._2a{width:42.192667pt;}
._28{width:43.537600pt;}
._2d{width:44.566267pt;}
._13{width:46.310400pt;}
._14{width:47.614267pt;}
._19{width:50.429333pt;}
._18{width:51.592000pt;}
._29{width:52.772933pt;}
._11{width:54.242400pt;}
._12{width:55.878267pt;}
._24{width:58.364000pt;}
._25{width:59.281067pt;}
._2f{width:62.217733pt;}
._2e{width:63.725200pt;}
._16{width:66.559467pt;}
._15{width:67.669333pt;}
._3a{width:70.617200pt;}
._22{width:71.655467pt;}
._31{width:75.104000pt;}
._38{width:78.188933pt;}
._32{width:79.126400pt;}
._27{width:82.917867pt;}
._3c{width:83.956000pt;}
._3b{width:87.142933pt;}
._1f{width:95.340667pt;}
._20{width:99.781733pt;}
._1a{width:110.682933pt;}
._1b{width:111.649200pt;}
._26{width:118.772000pt;}
._1d{width:134.253600pt;}
._1c{width:135.306267pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs6{font-size:68.133333pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:7.000000pt;}
.y5{bottom:13.033333pt;}
.y4d{bottom:15.000000pt;}
.y5e{bottom:15.013333pt;}
.y53{bottom:15.026667pt;}
.y67{bottom:22.033333pt;}
.y51{bottom:26.026667pt;}
.y4f{bottom:26.040000pt;}
.y60{bottom:27.040000pt;}
.y3{bottom:29.033333pt;}
.y68{bottom:30.033333pt;}
.y56{bottom:37.026667pt;}
.y52{bottom:38.026667pt;}
.y4b{bottom:38.040000pt;}
.y55{bottom:49.026667pt;}
.y4e{bottom:49.040000pt;}
.y5c{bottom:50.040000pt;}
.y4{bottom:55.033333pt;}
.y72{bottom:60.026667pt;}
.y57{bottom:60.066667pt;}
.y64{bottom:61.026667pt;}
.y59{bottom:61.040000pt;}
.y4c{bottom:61.066667pt;}
.y5b{bottom:61.080000pt;}
.y62{bottom:72.026667pt;}
.y6b{bottom:73.066667pt;}
.y63{bottom:84.053333pt;}
.y5d{bottom:84.066667pt;}
.y86{bottom:104.100000pt;}
.y65{bottom:106.066667pt;}
.y6c{bottom:107.093333pt;}
.y97{bottom:107.100000pt;}
.y47{bottom:108.100000pt;}
.y2d{bottom:116.100000pt;}
.y66{bottom:126.100000pt;}
.y85{bottom:127.100000pt;}
.y96{bottom:130.100000pt;}
.y46{bottom:131.100000pt;}
.y2c{bottom:139.093333pt;}
.y84{bottom:150.133333pt;}
.y95{bottom:153.133333pt;}
.y45{bottom:154.133333pt;}
.y2b{bottom:162.133333pt;}
.y83{bottom:173.133333pt;}
.y44{bottom:177.173333pt;}
.y94{bottom:184.173333pt;}
.y2a{bottom:185.173333pt;}
.y82{bottom:196.173333pt;}
.y43{bottom:200.173333pt;}
.y93{bottom:207.173333pt;}
.y29{bottom:208.173333pt;}
.y81{bottom:219.200000pt;}
.y42{bottom:223.200000pt;}
.y28{bottom:231.200000pt;}
.y92{bottom:238.200000pt;}
.y80{bottom:242.200000pt;}
.y41{bottom:246.200000pt;}
.y27{bottom:254.226667pt;}
.y91{bottom:261.226667pt;}
.y7f{bottom:265.240000pt;}
.y40{bottom:269.226667pt;}
.y26{bottom:277.240000pt;}
.y90{bottom:283.240000pt;}
.y7e{bottom:288.266667pt;}
.y3f{bottom:291.266667pt;}
.y25{bottom:299.266667pt;}
.y7d{bottom:310.266667pt;}
.y3e{bottom:314.266667pt;}
.y61{bottom:317.266667pt;}
.y24{bottom:322.266667pt;}
.y7c{bottom:333.293333pt;}
.y5f{bottom:336.293333pt;}
.y3d{bottom:337.306667pt;}
.y23{bottom:345.293333pt;}
.y7b{bottom:356.293333pt;}
.y3c{bottom:360.293333pt;}
.y22{bottom:368.333333pt;}
.y7a{bottom:379.333333pt;}
.y3b{bottom:383.333333pt;}
.y21{bottom:391.333333pt;}
.y79{bottom:402.373333pt;}
.y3a{bottom:406.373333pt;}
.y20{bottom:414.373333pt;}
.y5a{bottom:418.360000pt;}
.y78{bottom:425.360000pt;}
.y39{bottom:429.373333pt;}
.y1f{bottom:437.400000pt;}
.y77{bottom:448.400000pt;}
.y38{bottom:452.400000pt;}
.y1e{bottom:460.400000pt;}
.y76{bottom:471.400000pt;}
.y37{bottom:475.426667pt;}
.y1d{bottom:483.440000pt;}
.y75{bottom:494.440000pt;}
.y36{bottom:498.440000pt;}
.y1c{bottom:506.440000pt;}
.y74{bottom:517.466667pt;}
.y35{bottom:521.466667pt;}
.y58{bottom:523.466667pt;}
.y1b{bottom:529.466667pt;}
.y73{bottom:540.466667pt;}
.y34{bottom:544.466667pt;}
.y1a{bottom:552.506667pt;}
.y71{bottom:559.506667pt;}
.y33{bottom:566.506667pt;}
.y19{bottom:574.506667pt;}
.y32{bottom:589.533333pt;}
.y18{bottom:597.533333pt;}
.y54{bottom:606.533333pt;}
.y31{bottom:612.533333pt;}
.y17{bottom:620.533333pt;}
.y30{bottom:635.560000pt;}
.ya2{bottom:637.560000pt;}
.y70{bottom:641.560000pt;}
.y16{bottom:643.560000pt;}
.y2f{bottom:658.560000pt;}
.ya1{bottom:660.600000pt;}
.y15{bottom:666.600000pt;}
.y2e{bottom:681.600000pt;}
.y50{bottom:688.600000pt;}
.y14{bottom:689.600000pt;}
.y8f{bottom:704.626667pt;}
.y13{bottom:712.626667pt;}
.ya0{bottom:718.626667pt;}
.y6f{bottom:723.640000pt;}
.y8e{bottom:727.626667pt;}
.y12{bottom:735.666667pt;}
.y9f{bottom:741.666667pt;}
.y4a{bottom:747.666667pt;}
.y8d{bottom:750.666667pt;}
.y11{bottom:758.666667pt;}
.y9e{bottom:772.706667pt;}
.y8c{bottom:773.706667pt;}
.y10{bottom:781.706667pt;}
.y6e{bottom:782.706667pt;}
.y9d{bottom:795.706667pt;}
.y8b{bottom:796.706667pt;}
.yf{bottom:804.706667pt;}
.y8a{bottom:819.733333pt;}
.y9c{bottom:826.733333pt;}
.ye{bottom:827.733333pt;}
.y49{bottom:842.733333pt;}
.y9b{bottom:848.773333pt;}
.yd{bottom:850.773333pt;}
.y6d{bottom:864.760000pt;}
.y48{bottom:864.773333pt;}
.yc{bottom:872.773333pt;}
.y9a{bottom:879.773333pt;}
.y89{bottom:887.800000pt;}
.yb{bottom:895.800000pt;}
.y6a{bottom:900.800000pt;}
.y99{bottom:902.800000pt;}
.y88{bottom:910.800000pt;}
.ya{bottom:918.800000pt;}
.y87{bottom:933.840000pt;}
.y9{bottom:941.840000pt;}
.y98{bottom:956.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h14{height:31.033333pt;}
.h5{height:36.033333pt;}
.h12{height:46.033333pt;}
.hc{height:47.679688pt;}
.h9{height:49.705078pt;}
.h16{height:54.053333pt;}
.he{height:54.066667pt;}
.h7{height:58.802734pt;}
.h18{height:59.677734pt;}
.h3{height:60.468750pt;}
.ha{height:66.705078pt;}
.hb{height:66.738281pt;}
.h19{height:66.869141pt;}
.h8{height:68.531250pt;}
.h17{height:69.893285pt;}
.hf{height:76.066667pt;}
.h2{height:76.728125pt;}
.h15{height:77.053333pt;}
.hd{height:77.066667pt;}
.h4{height:84.790625pt;}
.h10{height:100.100000pt;}
.h6{height:107.987370pt;}
.h11{height:122.100000pt;}
.h13{height:123.100000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.wb{width:91.100000pt;}
.w5{width:91.133333pt;}
.wa{width:95.133333pt;}
.w6{width:103.133333pt;}
.w4{width:120.133333pt;}
.w9{width:122.166667pt;}
.w7{width:136.160000pt;}
.w8{width:140.160000pt;}
.wc{width:142.200000pt;}
.w3{width:157.200000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x18{left:2.000000pt;}
.x11{left:3.000000pt;}
.x1b{left:7.000000pt;}
.x2f{left:8.000000pt;}
.x3a{left:9.040000pt;}
.x39{left:11.040000pt;}
.x15{left:16.040000pt;}
.x3c{left:17.040000pt;}
.x21{left:18.040000pt;}
.x17{left:20.040000pt;}
.x31{left:21.000000pt;}
.x28{left:22.026667pt;}
.x14{left:23.040000pt;}
.x2d{left:24.026667pt;}
.x36{left:25.033333pt;}
.x1a{left:26.040000pt;}
.x10{left:27.026667pt;}
.x27{left:28.026667pt;}
.x24{left:29.040000pt;}
.x38{left:31.040000pt;}
.x35{left:32.040000pt;}
.x26{left:33.040000pt;}
.x22{left:34.033333pt;}
.x12{left:35.026667pt;}
.x1d{left:36.033333pt;}
.x3d{left:38.033333pt;}
.x1f{left:41.066667pt;}
.x3e{left:42.026667pt;}
.x3f{left:44.066667pt;}
.x23{left:46.066667pt;}
.xe{left:48.026667pt;}
.x2a{left:49.066667pt;}
.x20{left:50.066667pt;}
.x33{left:55.080000pt;}
.x1e{left:56.066667pt;}
.x37{left:57.053333pt;}
.x29{left:58.066667pt;}
.x25{left:59.066667pt;}
.x1c{left:61.066667pt;}
.x34{left:62.066667pt;}
.x3b{left:64.066667pt;}
.x2b{left:73.066667pt;}
.xd{left:95.133333pt;}
.x1{left:96.133322pt;}
.xc{left:115.133322pt;}
.x4{left:131.166655pt;}
.x5{left:134.159988pt;}
.x8{left:135.159988pt;}
.x41{left:143.159988pt;}
.x9{left:149.199988pt;}
.xb{left:219.266655pt;}
.x2c{left:239.306667pt;}
.xa{left:241.306655pt;}
.xf{left:255.333333pt;}
.x7{left:268.333322pt;}
.x40{left:328.439988pt;}
.x2e{left:365.466667pt;}
.x13{left:378.466667pt;}
.x6{left:406.506655pt;}
.x30{left:463.600000pt;}
.x16{left:473.600000pt;}
.x32{left:557.693333pt;}
.x19{left:579.733333pt;}
.x2{left:712.893333pt;}
}




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