
    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_7afa2e4b6e71cb9db895aaa0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_e67d36f693f64e293f916961.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_bac18034f5947510e271eac1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_f29ae89d5a7dd4d41b021b63.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_cae51ee49d56786b246effc4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_fb87ac43ec2f2b388eb4a679.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_f23fa70adaf969a7acdf727e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_b0b477dc33bb23bc1045486a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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;}
.lsd{letter-spacing:-0.984000px;}
.ls7{letter-spacing:-0.516000px;}
.ls6{letter-spacing:-0.492000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.084000px;}
.ls11{letter-spacing:0.096000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.318000px;}
.ls9{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.468000px;}
.ls3{letter-spacing:0.516000px;}
.lse{letter-spacing:0.714000px;}
.ls13{letter-spacing:0.984000px;}
.ls8{letter-spacing:30.984000px;}
.lsf{letter-spacing:33.318000px;}
.ls12{letter-spacing:37.152000px;}
.lsa{letter-spacing:43.320000px;}
.ls14{letter-spacing:48.984000px;}
.ls2{letter-spacing:54.984000px;}
.lsc{letter-spacing:195.150000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws6{word-spacing:-26.688000px;}
.ws4{word-spacing:-20.532000px;}
.ws8{word-spacing:-20.484000px;}
.ws7{word-spacing:-20.448000px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.524000px;}
.ws3{word-spacing:-19.500000px;}
.wsa{word-spacing:-19.182000px;}
.ws9{word-spacing:-19.032000px;}
.wsb{word-spacing:-18.348000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-8.520000px;}
._c{margin-left:-7.224000px;}
._17{margin-left:-5.676000px;}
._2{margin-left:-4.608000px;}
._3{margin-left:-3.360000px;}
._5{margin-left:-2.352000px;}
._1{margin-left:-1.344000px;}
._0{width:1.440000px;}
._b{width:2.724000px;}
._13{width:7.224000px;}
._f{width:9.120000px;}
._e{width:10.344000px;}
._a{width:11.640000px;}
._9{width:12.816000px;}
._12{width:14.088000px;}
._6{width:15.840000px;}
._8{width:17.040000px;}
._7{width:18.360000px;}
._14{width:19.536000px;}
._11{width:21.576000px;}
._10{width:24.816000px;}
._d{width:30.816000px;}
._15{width:31.848000px;}
._16{width:33.192000px;}
._4{width:54.864000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(15,71,97);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:121.537500px;}
.y90{bottom:131.662500px;}
.y1f{bottom:134.287500px;}
.y77{bottom:140.662500px;}
.y59{bottom:152.280000px;}
.y3f{bottom:155.280000px;}
.yaa{bottom:163.545000px;}
.y1e{bottom:165.405000px;}
.y76{bottom:171.780000px;}
.y58{bottom:183.450000px;}
.y8f{bottom:184.950000px;}
.y3e{bottom:186.450000px;}
.ya9{bottom:194.325000px;}
.y1d{bottom:196.575000px;}
.y75{bottom:202.950000px;}
.y8e{bottom:214.200000px;}
.y57{bottom:214.575000px;}
.y3d{bottom:217.575000px;}
.ya8{bottom:225.450000px;}
.y1c{bottom:227.700000px;}
.y74{bottom:234.075000px;}
.y8d{bottom:242.700000px;}
.y56{bottom:245.700000px;}
.y3c{bottom:249.825000px;}
.ya7{bottom:256.575000px;}
.y1b{bottom:258.450000px;}
.y73{bottom:264.825000px;}
.y8c{bottom:271.200000px;}
.y55{bottom:276.825000px;}
.y3b{bottom:280.950000px;}
.ya6{bottom:287.700000px;}
.y1a{bottom:289.575000px;}
.y72{bottom:295.950000px;}
.y8b{bottom:299.700000px;}
.y54{bottom:307.605000px;}
.y3a{bottom:312.120000px;}
.ya5{bottom:318.870000px;}
.y19{bottom:320.730000px;}
.y71{bottom:327.120000px;}
.y8a{bottom:328.230000px;}
.y39{bottom:342.870000px;}
.ya4{bottom:349.620000px;}
.y18{bottom:351.855000px;}
.y89{bottom:356.745000px;}
.y53{bottom:359.745000px;}
.y38{bottom:373.995000px;}
.y70{bottom:379.245000px;}
.ya3{bottom:380.745000px;}
.y17{bottom:382.995000px;}
.y88{bottom:385.230000px;}
.y52{bottom:390.870000px;}
.y37{bottom:405.120000px;}
.y16{bottom:414.120000px;}
.y51{bottom:421.995000px;}
.y6f{bottom:430.995000px;}
.y87{bottom:435.525000px;}
.y36{bottom:436.275000px;}
.ya2{bottom:438.900000px;}
.y15{bottom:446.025000px;}
.y50{bottom:452.775000px;}
.y6e{bottom:462.150000px;}
.y86{bottom:465.525000px;}
.y35{bottom:467.025000px;}
.ya1{bottom:475.650000px;}
.y14{bottom:477.150000px;}
.y4f{bottom:483.900000px;}
.y6d{bottom:493.275000px;}
.y85{bottom:495.150000px;}
.y34{bottom:498.150000px;}
.ya0{bottom:506.400000px;}
.y13{bottom:508.275000px;}
.y4e{bottom:515.025000px;}
.y6c{bottom:524.400000px;}
.y84{bottom:525.525000px;}
.y33{bottom:529.275000px;}
.y9f{bottom:537.525000px;}
.y12{bottom:539.400000px;}
.y4d{bottom:546.150000px;}
.y6b{bottom:555.525000px;}
.y83{bottom:556.650000px;}
.y32{bottom:560.445000px;}
.y9e{bottom:568.695000px;}
.y11{bottom:570.570000px;}
.y4c{bottom:577.320000px;}
.y6a{bottom:587.820000px;}
.y82{bottom:588.570000px;}
.y31{bottom:591.570000px;}
.y9d{bottom:599.820000px;}
.y10{bottom:601.320000px;}
.y4b{bottom:608.070000px;}
.yb9{bottom:609.945000px;}
.y69{bottom:618.570000px;}
.y81{bottom:619.695000px;}
.y9c{bottom:630.570000px;}
.yf{bottom:632.445000px;}
.y4a{bottom:639.195000px;}
.y30{bottom:641.820000px;}
.y68{bottom:649.695000px;}
.y80{bottom:650.820000px;}
.yb8{bottom:662.070000px;}
.ye{bottom:663.570000px;}
.y2f{bottom:672.570000px;}
.y67{bottom:680.820000px;}
.y7f{bottom:681.945000px;}
.y9b{bottom:682.695000px;}
.y49{bottom:691.350000px;}
.yb7{bottom:694.350000px;}
.yd{bottom:694.725000px;}
.y2e{bottom:703.725000px;}
.y66{bottom:711.975000px;}
.y7e{bottom:713.100000px;}
.y9a{bottom:713.850000px;}
.y48{bottom:722.475000px;}
.yc{bottom:725.850000px;}
.yb6{bottom:726.600000px;}
.y2d{bottom:734.850000px;}
.y65{bottom:743.100000px;}
.y7d{bottom:743.850000px;}
.y99{bottom:744.975000px;}
.yb{bottom:758.100000px;}
.yb5{bottom:758.850000px;}
.y2c{bottom:765.975000px;}
.y64{bottom:773.850000px;}
.y7c{bottom:774.975000px;}
.y98{bottom:776.100000px;}
.y47{bottom:780.225000px;}
.ya{bottom:788.850000px;}
.yb4{bottom:791.100000px;}
.y2b{bottom:797.100000px;}
.y63{bottom:804.975000px;}
.y7b{bottom:806.100000px;}
.y97{bottom:808.350000px;}
.y9{bottom:820.005000px;}
.yb3{bottom:823.380000px;}
.y2a{bottom:827.880000px;}
.y62{bottom:836.145000px;}
.y7a{bottom:837.255000px;}
.y46{bottom:838.005000px;}
.y96{bottom:839.130000px;}
.y8{bottom:851.130000px;}
.yb2{bottom:855.645000px;}
.y29{bottom:859.020000px;}
.y61{bottom:867.255000px;}
.y95{bottom:870.255000px;}
.y7{bottom:882.255000px;}
.yb1{bottom:886.380000px;}
.y79{bottom:889.380000px;}
.y28{bottom:890.130000px;}
.y94{bottom:901.380000px;}
.y60{bottom:910.380000px;}
.y6{bottom:913.380000px;}
.yb0{bottom:917.505000px;}
.y27{bottom:921.255000px;}
.y93{bottom:932.505000px;}
.y5f{bottom:941.130000px;}
.y5{bottom:944.130000px;}
.yaf{bottom:949.800000px;}
.y26{bottom:952.425000px;}
.y92{bottom:963.675000px;}
.y5e{bottom:972.300000px;}
.y4{bottom:975.300000px;}
.yae{bottom:980.925000px;}
.y45{bottom:983.175000px;}
.y25{bottom:984.675000px;}
.y91{bottom:994.425000px;}
.y5d{bottom:1003.425000px;}
.yad{bottom:1013.175000px;}
.y44{bottom:1014.300000px;}
.y24{bottom:1015.425000px;}
.y78{bottom:1024.425000px;}
.y3{bottom:1033.425000px;}
.y5c{bottom:1034.550000px;}
.yac{bottom:1044.300000px;}
.y43{bottom:1045.425000px;}
.y23{bottom:1046.550000px;}
.y2{bottom:1074.705000px;}
.yab{bottom:1075.455000px;}
.y42{bottom:1076.580000px;}
.y22{bottom:1077.705000px;}
.y5b{bottom:1087.830000px;}
.y41{bottom:1107.705000px;}
.y21{bottom:1108.830000px;}
.y1{bottom:1116.330000px;}
.y40{bottom:1138.830000px;}
.y20{bottom:1139.955000px;}
.h9{height:48.243164px;}
.h8{height:48.887695px;}
.h6{height:51.109863px;}
.h7{height:51.884766px;}
.h2{height:52.628906px;}
.ha{height:53.121094px;}
.h5{height:53.332031px;}
.h3{height:54.140625px;}
.h4{height:70.171875px;}
.h1{height:72.187500px;}
.h0{height:1263.000000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.162487px;}
.x1{left:115.162487px;}
.x4{left:133.199987px;}
.x5{left:160.199987px;}
.x7{left:187.199987px;}
.x2{left:210.824987px;}
.x3{left:212.699987px;}
.x9{left:222.869987px;}
.x6{left:404.819987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.874667pt;}
.ls7{letter-spacing:-0.458667pt;}
.ls6{letter-spacing:-0.437333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.074667pt;}
.ls11{letter-spacing:0.085333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.282667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.416000pt;}
.ls3{letter-spacing:0.458667pt;}
.lse{letter-spacing:0.634667pt;}
.ls13{letter-spacing:0.874667pt;}
.ls8{letter-spacing:27.541333pt;}
.lsf{letter-spacing:29.616000pt;}
.ls12{letter-spacing:33.024000pt;}
.lsa{letter-spacing:38.506667pt;}
.ls14{letter-spacing:43.541333pt;}
.ls2{letter-spacing:48.874667pt;}
.lsc{letter-spacing:173.466667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws6{word-spacing:-23.722667pt;}
.ws4{word-spacing:-18.250667pt;}
.ws8{word-spacing:-18.208000pt;}
.ws7{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.354667pt;}
.ws3{word-spacing:-17.333333pt;}
.wsa{word-spacing:-17.050667pt;}
.ws9{word-spacing:-16.917333pt;}
.wsb{word-spacing:-16.309333pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-7.573333pt;}
._c{margin-left:-6.421333pt;}
._17{margin-left:-5.045333pt;}
._2{margin-left:-4.096000pt;}
._3{margin-left:-2.986667pt;}
._5{margin-left:-2.090667pt;}
._1{margin-left:-1.194667pt;}
._0{width:1.280000pt;}
._b{width:2.421333pt;}
._13{width:6.421333pt;}
._f{width:8.106667pt;}
._e{width:9.194667pt;}
._a{width:10.346667pt;}
._9{width:11.392000pt;}
._12{width:12.522667pt;}
._6{width:14.080000pt;}
._8{width:15.146667pt;}
._7{width:16.320000pt;}
._14{width:17.365333pt;}
._11{width:19.178667pt;}
._10{width:22.058667pt;}
._d{width:27.392000pt;}
._15{width:28.309333pt;}
._16{width:29.504000pt;}
._4{width:48.768000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:108.033333pt;}
.y90{bottom:117.033333pt;}
.y1f{bottom:119.366667pt;}
.y77{bottom:125.033333pt;}
.y59{bottom:135.360000pt;}
.y3f{bottom:138.026667pt;}
.yaa{bottom:145.373333pt;}
.y1e{bottom:147.026667pt;}
.y76{bottom:152.693333pt;}
.y58{bottom:163.066667pt;}
.y8f{bottom:164.400000pt;}
.y3e{bottom:165.733333pt;}
.ya9{bottom:172.733333pt;}
.y1d{bottom:174.733333pt;}
.y75{bottom:180.400000pt;}
.y8e{bottom:190.400000pt;}
.y57{bottom:190.733333pt;}
.y3d{bottom:193.400000pt;}
.ya8{bottom:200.400000pt;}
.y1c{bottom:202.400000pt;}
.y74{bottom:208.066667pt;}
.y8d{bottom:215.733333pt;}
.y56{bottom:218.400000pt;}
.y3c{bottom:222.066667pt;}
.ya7{bottom:228.066667pt;}
.y1b{bottom:229.733333pt;}
.y73{bottom:235.400000pt;}
.y8c{bottom:241.066667pt;}
.y55{bottom:246.066667pt;}
.y3b{bottom:249.733333pt;}
.ya6{bottom:255.733333pt;}
.y1a{bottom:257.400000pt;}
.y72{bottom:263.066667pt;}
.y8b{bottom:266.400000pt;}
.y54{bottom:273.426667pt;}
.y3a{bottom:277.440000pt;}
.ya5{bottom:283.440000pt;}
.y19{bottom:285.093333pt;}
.y71{bottom:290.773333pt;}
.y8a{bottom:291.760000pt;}
.y39{bottom:304.773333pt;}
.ya4{bottom:310.773333pt;}
.y18{bottom:312.760000pt;}
.y89{bottom:317.106667pt;}
.y53{bottom:319.773333pt;}
.y38{bottom:332.440000pt;}
.y70{bottom:337.106667pt;}
.ya3{bottom:338.440000pt;}
.y17{bottom:340.440000pt;}
.y88{bottom:342.426667pt;}
.y52{bottom:347.440000pt;}
.y37{bottom:360.106667pt;}
.y16{bottom:368.106667pt;}
.y51{bottom:375.106667pt;}
.y6f{bottom:383.106667pt;}
.y87{bottom:387.133333pt;}
.y36{bottom:387.800000pt;}
.ya2{bottom:390.133333pt;}
.y15{bottom:396.466667pt;}
.y50{bottom:402.466667pt;}
.y6e{bottom:410.800000pt;}
.y86{bottom:413.800000pt;}
.y35{bottom:415.133333pt;}
.ya1{bottom:422.800000pt;}
.y14{bottom:424.133333pt;}
.y4f{bottom:430.133333pt;}
.y6d{bottom:438.466667pt;}
.y85{bottom:440.133333pt;}
.y34{bottom:442.800000pt;}
.ya0{bottom:450.133333pt;}
.y13{bottom:451.800000pt;}
.y4e{bottom:457.800000pt;}
.y6c{bottom:466.133333pt;}
.y84{bottom:467.133333pt;}
.y33{bottom:470.466667pt;}
.y9f{bottom:477.800000pt;}
.y12{bottom:479.466667pt;}
.y4d{bottom:485.466667pt;}
.y6b{bottom:493.800000pt;}
.y83{bottom:494.800000pt;}
.y32{bottom:498.173333pt;}
.y9e{bottom:505.506667pt;}
.y11{bottom:507.173333pt;}
.y4c{bottom:513.173333pt;}
.y6a{bottom:522.506667pt;}
.y82{bottom:523.173333pt;}
.y31{bottom:525.840000pt;}
.y9d{bottom:533.173333pt;}
.y10{bottom:534.506667pt;}
.y4b{bottom:540.506667pt;}
.yb9{bottom:542.173333pt;}
.y69{bottom:549.840000pt;}
.y81{bottom:550.840000pt;}
.y9c{bottom:560.506667pt;}
.yf{bottom:562.173333pt;}
.y4a{bottom:568.173333pt;}
.y30{bottom:570.506667pt;}
.y68{bottom:577.506667pt;}
.y80{bottom:578.506667pt;}
.yb8{bottom:588.506667pt;}
.ye{bottom:589.840000pt;}
.y2f{bottom:597.840000pt;}
.y67{bottom:605.173333pt;}
.y7f{bottom:606.173333pt;}
.y9b{bottom:606.840000pt;}
.y49{bottom:614.533333pt;}
.yb7{bottom:617.200000pt;}
.yd{bottom:617.533333pt;}
.y2e{bottom:625.533333pt;}
.y66{bottom:632.866667pt;}
.y7e{bottom:633.866667pt;}
.y9a{bottom:634.533333pt;}
.y48{bottom:642.200000pt;}
.yc{bottom:645.200000pt;}
.yb6{bottom:645.866667pt;}
.y2d{bottom:653.200000pt;}
.y65{bottom:660.533333pt;}
.y7d{bottom:661.200000pt;}
.y99{bottom:662.200000pt;}
.yb{bottom:673.866667pt;}
.yb5{bottom:674.533333pt;}
.y2c{bottom:680.866667pt;}
.y64{bottom:687.866667pt;}
.y7c{bottom:688.866667pt;}
.y98{bottom:689.866667pt;}
.y47{bottom:693.533333pt;}
.ya{bottom:701.200000pt;}
.yb4{bottom:703.200000pt;}
.y2b{bottom:708.533333pt;}
.y63{bottom:715.533333pt;}
.y7b{bottom:716.533333pt;}
.y97{bottom:718.533333pt;}
.y9{bottom:728.893333pt;}
.yb3{bottom:731.893333pt;}
.y2a{bottom:735.893333pt;}
.y62{bottom:743.240000pt;}
.y7a{bottom:744.226667pt;}
.y46{bottom:744.893333pt;}
.y96{bottom:745.893333pt;}
.y8{bottom:756.560000pt;}
.yb2{bottom:760.573333pt;}
.y29{bottom:763.573333pt;}
.y61{bottom:770.893333pt;}
.y95{bottom:773.560000pt;}
.y7{bottom:784.226667pt;}
.yb1{bottom:787.893333pt;}
.y79{bottom:790.560000pt;}
.y28{bottom:791.226667pt;}
.y94{bottom:801.226667pt;}
.y60{bottom:809.226667pt;}
.y6{bottom:811.893333pt;}
.yb0{bottom:815.560000pt;}
.y27{bottom:818.893333pt;}
.y93{bottom:828.893333pt;}
.y5f{bottom:836.560000pt;}
.y5{bottom:839.226667pt;}
.yaf{bottom:844.266667pt;}
.y26{bottom:846.600000pt;}
.y92{bottom:856.600000pt;}
.y5e{bottom:864.266667pt;}
.y4{bottom:866.933333pt;}
.yae{bottom:871.933333pt;}
.y45{bottom:873.933333pt;}
.y25{bottom:875.266667pt;}
.y91{bottom:883.933333pt;}
.y5d{bottom:891.933333pt;}
.yad{bottom:900.600000pt;}
.y44{bottom:901.600000pt;}
.y24{bottom:902.600000pt;}
.y78{bottom:910.600000pt;}
.y3{bottom:918.600000pt;}
.y5c{bottom:919.600000pt;}
.yac{bottom:928.266667pt;}
.y43{bottom:929.266667pt;}
.y23{bottom:930.266667pt;}
.y2{bottom:955.293333pt;}
.yab{bottom:955.960000pt;}
.y42{bottom:956.960000pt;}
.y22{bottom:957.960000pt;}
.y5b{bottom:966.960000pt;}
.y41{bottom:984.626667pt;}
.y21{bottom:985.626667pt;}
.y1{bottom:992.293333pt;}
.y40{bottom:1012.293333pt;}
.y20{bottom:1013.293333pt;}
.h9{height:42.882812pt;}
.h8{height:43.455729pt;}
.h6{height:45.430990pt;}
.h7{height:46.119792pt;}
.h2{height:46.781250pt;}
.ha{height:47.218750pt;}
.h5{height:47.406250pt;}
.h3{height:48.125000pt;}
.h4{height:62.375000pt;}
.h1{height:64.166667pt;}
.h0{height:1122.666667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.366655pt;}
.x1{left:102.366655pt;}
.x4{left:118.399988pt;}
.x5{left:142.399988pt;}
.x7{left:166.399988pt;}
.x2{left:187.399988pt;}
.x3{left:189.066655pt;}
.x9{left:198.106655pt;}
.x6{left:359.839988pt;}
}




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