
    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_d0d58a8197b044a638ad612a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8e1ee6545ac9c77997c8e05f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4224a97aaaf64824746ed726.woff')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_0f5f9c07acbf12a1a9e0c7b6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b6f320429ad1977a16ea9ec3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2921643faa41ab7583bac7b2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.898438;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_babfa88f39f09e79e503bd94.woff')format("woff");}.ff7{font-family:ff7;line-height:1.222656;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_bb9f292d1c63b2034aa53b5c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_3b960b04e3283b0e49d24129.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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.413400px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:2.106720px;}
.lsa{letter-spacing:434.316000px;}
.ls0{letter-spacing:2229.036000px;}
.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:-34.783200px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.526600px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-11.033280px;}
._9{margin-left:-3.525840px;}
._5{margin-left:-2.450160px;}
._4{margin-left:-1.254960px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._3{width:4.229520px;}
._8{width:5.736960px;}
._7{width:7.171200px;}
._11{width:8.231040px;}
._b{width:9.278640px;}
._a{width:10.980000px;}
._e{width:12.093600px;}
._10{width:13.386240px;}
._c{width:16.493760px;}
._14{width:17.808480px;}
._15{width:18.884160px;}
._f{width:20.046720px;}
._6{width:21.513600px;}
._13{width:23.186880px;}
._12{width:24.202800px;}
._19{width:25.218720px;}
._d{width:26.772480px;}
._1d{width:28.027440px;}
._18{width:29.341200px;}
._1f{width:31.907280px;}
._1c{width:33.286320px;}
._1b{width:35.198640px;}
._1e{width:36.632880px;}
._22{width:38.664720px;}
._17{width:39.859920px;}
._16{width:41.055120px;}
._1a{width:53.724240px;}
._23{width:66.512880px;}
._24{width:67.767840px;}
._21{width:89.674320px;}
._2{width:768.843840px;}
._25{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:62.991941px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.600000px;}
.y87{bottom:12.240000px;}
.y88{bottom:20.880000px;}
.y9d{bottom:101.340000px;}
.y80{bottom:105.120000px;}
.y3e{bottom:106.920000px;}
.y9c{bottom:118.620000px;}
.y7f{bottom:122.400000px;}
.y3d{bottom:124.020000px;}
.y98{bottom:135.900000px;}
.y7e{bottom:139.680000px;}
.y41{bottom:140.940000px;}
.y3c{bottom:141.300000px;}
.y97{bottom:153.180000px;}
.y7d{bottom:156.960000px;}
.y40{bottom:158.220000px;}
.y3b{bottom:158.580000px;}
.y96{bottom:170.490000px;}
.y7c{bottom:174.270000px;}
.y3a{bottom:175.890000px;}
.y95{bottom:187.770000px;}
.y7b{bottom:191.370000px;}
.y39{bottom:193.170000px;}
.y94{bottom:204.870000px;}
.y7a{bottom:208.650000px;}
.y38{bottom:210.270000px;}
.y93{bottom:222.150000px;}
.y79{bottom:225.930000px;}
.y37{bottom:227.550000px;}
.y92{bottom:239.430000px;}
.ya3{bottom:242.850000px;}
.y78{bottom:243.210000px;}
.y36{bottom:244.830000px;}
.y91{bottom:256.710000px;}
.y77{bottom:260.490000px;}
.y35{bottom:262.110000px;}
.y90{bottom:273.990000px;}
.y76{bottom:277.770000px;}
.y34{bottom:279.390000px;}
.y8f{bottom:291.270000px;}
.y75{bottom:294.870000px;}
.y33{bottom:296.670000px;}
.y8e{bottom:308.370000px;}
.y74{bottom:312.150000px;}
.y32{bottom:313.770000px;}
.y8d{bottom:325.650000px;}
.y73{bottom:329.430000px;}
.y31{bottom:331.050000px;}
.y8c{bottom:342.570000px;}
.y9b{bottom:342.930000px;}
.y72{bottom:346.710000px;}
.y30{bottom:348.330000px;}
.y8b{bottom:359.850000px;}
.y9a{bottom:360.210000px;}
.y71{bottom:363.990000px;}
.y2f{bottom:365.610000px;}
.y8a{bottom:377.130000px;}
.y99{bottom:377.490000px;}
.y70{bottom:381.090000px;}
.y2e{bottom:382.890000px;}
.y6f{bottom:398.370000px;}
.y2d{bottom:400.170000px;}
.y89{bottom:409.035000px;}
.y6e{bottom:415.695000px;}
.y2c{bottom:417.315000px;}
.y6d{bottom:432.975000px;}
.y2b{bottom:434.595000px;}
.y86{bottom:444.315000px;}
.y6c{bottom:450.255000px;}
.y2a{bottom:451.875000px;}
.y6b{bottom:467.535000px;}
.y29{bottom:469.155000px;}
.y85{bottom:479.595000px;}
.y6a{bottom:484.635000px;}
.y28{bottom:486.435000px;}
.y83{bottom:497.595000px;}
.y69{bottom:501.915000px;}
.y27{bottom:503.715000px;}
.y68{bottom:519.195000px;}
.y26{bottom:520.815000px;}
.y67{bottom:536.475000px;}
.y25{bottom:538.095000px;}
.y66{bottom:553.755000px;}
.y24{bottom:555.375000px;}
.y65{bottom:571.035000px;}
.y23{bottom:572.655000px;}
.y64{bottom:588.135000px;}
.y22{bottom:589.935000px;}
.y63{bottom:605.415000px;}
.y21{bottom:607.035000px;}
.y62{bottom:622.695000px;}
.y20{bottom:624.315000px;}
.y61{bottom:639.975000px;}
.y1f{bottom:641.595000px;}
.y60{bottom:657.285000px;}
.y1e{bottom:658.905000px;}
.y5f{bottom:674.385000px;}
.y1d{bottom:676.185000px;}
.y5e{bottom:691.665000px;}
.y1c{bottom:693.465000px;}
.y5d{bottom:708.945000px;}
.y1b{bottom:710.565000px;}
.y5c{bottom:726.225000px;}
.y1a{bottom:727.845000px;}
.y5b{bottom:743.505000px;}
.y19{bottom:745.125000px;}
.ya1{bottom:760.425000px;}
.y5a{bottom:760.785000px;}
.y18{bottom:762.405000px;}
.ya0{bottom:777.525000px;}
.y59{bottom:777.885000px;}
.y17{bottom:779.325000px;}
.y3f{bottom:779.685000px;}
.y82{bottom:794.805000px;}
.y58{bottom:795.165000px;}
.y16{bottom:796.965000px;}
.y81{bottom:812.085000px;}
.y57{bottom:812.445000px;}
.y15{bottom:814.065000px;}
.y56{bottom:829.725000px;}
.y14{bottom:831.345000px;}
.y55{bottom:847.005000px;}
.y13{bottom:848.625000px;}
.y9f{bottom:863.925000px;}
.y54{bottom:864.285000px;}
.y12{bottom:865.905000px;}
.y9e{bottom:881.025000px;}
.y53{bottom:881.385000px;}
.y11{bottom:883.185000px;}
.y52{bottom:898.710000px;}
.y10{bottom:900.330000px;}
.y51{bottom:915.990000px;}
.yf{bottom:917.610000px;}
.y50{bottom:933.270000px;}
.ye{bottom:934.890000px;}
.y4f{bottom:950.550000px;}
.yd{bottom:952.170000px;}
.y4e{bottom:967.830000px;}
.yc{bottom:969.450000px;}
.y4d{bottom:984.930000px;}
.yb{bottom:986.370000px;}
.y4c{bottom:1002.210000px;}
.ya{bottom:1003.830000px;}
.y4b{bottom:1019.490000px;}
.y9{bottom:1021.110000px;}
.y4a{bottom:1036.770000px;}
.y8{bottom:1039.110000px;}
.y49{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y48{bottom:1071.150000px;}
.y47{bottom:1088.430000px;}
.y6{bottom:1092.030000px;}
.y46{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.ya2{bottom:1122.630000px;}
.y45{bottom:1122.990000px;}
.y4{bottom:1126.410000px;}
.y44{bottom:1140.270000px;}
.y3{bottom:1143.720000px;}
.y43{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.y42{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h9{height:17.280000px;}
.ha{height:34.560000px;}
.h6{height:50.934890px;}
.h5{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h8{height:60.168516px;}
.h4{height:60.226875px;}
.hb{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.800000px;}
.w5{width:279.210000px;}
.w4{width:324.255000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x1b{left:9.000000px;}
.x17{left:10.260000px;}
.x18{left:15.120000px;}
.xf{left:24.300000px;}
.x15{left:42.660000px;}
.x16{left:57.060000px;}
.x13{left:79.020000px;}
.x1d{left:84.960000px;}
.x19{left:93.780000px;}
.x11{left:98.100000px;}
.x1a{left:100.980000px;}
.x1{left:106.415987px;}
.x4{left:122.075987px;}
.x5{left:123.155987px;}
.x6{left:136.115987px;}
.x1c{left:147.465000px;}
.x10{left:181.650000px;}
.x2{left:277.949987px;}
.x8{left:373.394987px;}
.xd{left:457.274987px;}
.x3{left:461.414987px;}
.xe{left:487.004987px;}
.x12{left:506.805000px;}
.x7{left:535.424987px;}
.xb{left:537.944987px;}
.x9{left:726.809987px;}
.xa{left:741.929987px;}
.xc{left:786.749987px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.367467pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.872640pt;}
.lsa{letter-spacing:386.058667pt;}
.ls0{letter-spacing:1981.365333pt;}
.ws5{word-spacing:-30.918400pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws4{word-spacing:-12.912533pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-9.807360pt;}
._9{margin-left:-3.134080pt;}
._5{margin-left:-2.177920pt;}
._4{margin-left:-1.115520pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._3{width:3.759573pt;}
._8{width:5.099520pt;}
._7{width:6.374400pt;}
._11{width:7.316480pt;}
._b{width:8.247680pt;}
._a{width:9.760000pt;}
._e{width:10.749867pt;}
._10{width:11.898880pt;}
._c{width:14.661120pt;}
._14{width:15.829760pt;}
._15{width:16.785920pt;}
._f{width:17.819307pt;}
._6{width:19.123200pt;}
._13{width:20.610560pt;}
._12{width:21.513600pt;}
._19{width:22.416640pt;}
._d{width:23.797760pt;}
._1d{width:24.913280pt;}
._18{width:26.081067pt;}
._1f{width:28.362027pt;}
._1c{width:29.587840pt;}
._1b{width:31.287680pt;}
._1e{width:32.562560pt;}
._22{width:34.368640pt;}
._17{width:35.431040pt;}
._16{width:36.493440pt;}
._1a{width:47.754880pt;}
._23{width:59.122560pt;}
._24{width:60.238080pt;}
._21{width:79.710507pt;}
._2{width:683.416747pt;}
._25{width:754.858667pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:55.992837pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.200000pt;}
.y87{bottom:10.880000pt;}
.y88{bottom:18.560000pt;}
.y9d{bottom:90.080000pt;}
.y80{bottom:93.440000pt;}
.y3e{bottom:95.040000pt;}
.y9c{bottom:105.440000pt;}
.y7f{bottom:108.800000pt;}
.y3d{bottom:110.240000pt;}
.y98{bottom:120.800000pt;}
.y7e{bottom:124.160000pt;}
.y41{bottom:125.280000pt;}
.y3c{bottom:125.600000pt;}
.y97{bottom:136.160000pt;}
.y7d{bottom:139.520000pt;}
.y40{bottom:140.640000pt;}
.y3b{bottom:140.960000pt;}
.y96{bottom:151.546667pt;}
.y7c{bottom:154.906667pt;}
.y3a{bottom:156.346667pt;}
.y95{bottom:166.906667pt;}
.y7b{bottom:170.106667pt;}
.y39{bottom:171.706667pt;}
.y94{bottom:182.106667pt;}
.y7a{bottom:185.466667pt;}
.y38{bottom:186.906667pt;}
.y93{bottom:197.466667pt;}
.y79{bottom:200.826667pt;}
.y37{bottom:202.266667pt;}
.y92{bottom:212.826667pt;}
.ya3{bottom:215.866667pt;}
.y78{bottom:216.186667pt;}
.y36{bottom:217.626667pt;}
.y91{bottom:228.186667pt;}
.y77{bottom:231.546667pt;}
.y35{bottom:232.986667pt;}
.y90{bottom:243.546667pt;}
.y76{bottom:246.906667pt;}
.y34{bottom:248.346667pt;}
.y8f{bottom:258.906667pt;}
.y75{bottom:262.106667pt;}
.y33{bottom:263.706667pt;}
.y8e{bottom:274.106667pt;}
.y74{bottom:277.466667pt;}
.y32{bottom:278.906667pt;}
.y8d{bottom:289.466667pt;}
.y73{bottom:292.826667pt;}
.y31{bottom:294.266667pt;}
.y8c{bottom:304.506667pt;}
.y9b{bottom:304.826667pt;}
.y72{bottom:308.186667pt;}
.y30{bottom:309.626667pt;}
.y8b{bottom:319.866667pt;}
.y9a{bottom:320.186667pt;}
.y71{bottom:323.546667pt;}
.y2f{bottom:324.986667pt;}
.y8a{bottom:335.226667pt;}
.y99{bottom:335.546667pt;}
.y70{bottom:338.746667pt;}
.y2e{bottom:340.346667pt;}
.y6f{bottom:354.106667pt;}
.y2d{bottom:355.706667pt;}
.y89{bottom:363.586667pt;}
.y6e{bottom:369.506667pt;}
.y2c{bottom:370.946667pt;}
.y6d{bottom:384.866667pt;}
.y2b{bottom:386.306667pt;}
.y86{bottom:394.946667pt;}
.y6c{bottom:400.226667pt;}
.y2a{bottom:401.666667pt;}
.y6b{bottom:415.586667pt;}
.y29{bottom:417.026667pt;}
.y85{bottom:426.306667pt;}
.y6a{bottom:430.786667pt;}
.y28{bottom:432.386667pt;}
.y83{bottom:442.306667pt;}
.y69{bottom:446.146667pt;}
.y27{bottom:447.746667pt;}
.y68{bottom:461.506667pt;}
.y26{bottom:462.946667pt;}
.y67{bottom:476.866667pt;}
.y25{bottom:478.306667pt;}
.y66{bottom:492.226667pt;}
.y24{bottom:493.666667pt;}
.y65{bottom:507.586667pt;}
.y23{bottom:509.026667pt;}
.y64{bottom:522.786667pt;}
.y22{bottom:524.386667pt;}
.y63{bottom:538.146667pt;}
.y21{bottom:539.586667pt;}
.y62{bottom:553.506667pt;}
.y20{bottom:554.946667pt;}
.y61{bottom:568.866667pt;}
.y1f{bottom:570.306667pt;}
.y60{bottom:584.253333pt;}
.y1e{bottom:585.693333pt;}
.y5f{bottom:599.453333pt;}
.y1d{bottom:601.053333pt;}
.y5e{bottom:614.813333pt;}
.y1c{bottom:616.413333pt;}
.y5d{bottom:630.173333pt;}
.y1b{bottom:631.613333pt;}
.y5c{bottom:645.533333pt;}
.y1a{bottom:646.973333pt;}
.y5b{bottom:660.893333pt;}
.y19{bottom:662.333333pt;}
.ya1{bottom:675.933333pt;}
.y5a{bottom:676.253333pt;}
.y18{bottom:677.693333pt;}
.ya0{bottom:691.133333pt;}
.y59{bottom:691.453333pt;}
.y17{bottom:692.733333pt;}
.y3f{bottom:693.053333pt;}
.y82{bottom:706.493333pt;}
.y58{bottom:706.813333pt;}
.y16{bottom:708.413333pt;}
.y81{bottom:721.853333pt;}
.y57{bottom:722.173333pt;}
.y15{bottom:723.613333pt;}
.y56{bottom:737.533333pt;}
.y14{bottom:738.973333pt;}
.y55{bottom:752.893333pt;}
.y13{bottom:754.333333pt;}
.y9f{bottom:767.933333pt;}
.y54{bottom:768.253333pt;}
.y12{bottom:769.693333pt;}
.y9e{bottom:783.133333pt;}
.y53{bottom:783.453333pt;}
.y11{bottom:785.053333pt;}
.y52{bottom:798.853333pt;}
.y10{bottom:800.293333pt;}
.y51{bottom:814.213333pt;}
.yf{bottom:815.653333pt;}
.y50{bottom:829.573333pt;}
.ye{bottom:831.013333pt;}
.y4f{bottom:844.933333pt;}
.yd{bottom:846.373333pt;}
.y4e{bottom:860.293333pt;}
.yc{bottom:861.733333pt;}
.y4d{bottom:875.493333pt;}
.yb{bottom:876.773333pt;}
.y4c{bottom:890.853333pt;}
.ya{bottom:892.293333pt;}
.y4b{bottom:906.213333pt;}
.y9{bottom:907.653333pt;}
.y4a{bottom:921.573333pt;}
.y8{bottom:923.653333pt;}
.y49{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y48{bottom:952.133333pt;}
.y47{bottom:967.493333pt;}
.y6{bottom:970.693333pt;}
.y46{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.ya2{bottom:997.893333pt;}
.y45{bottom:998.213333pt;}
.y4{bottom:1001.253333pt;}
.y44{bottom:1013.573333pt;}
.y3{bottom:1016.640000pt;}
.y43{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.y42{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h9{height:15.360000pt;}
.ha{height:30.720000pt;}
.h6{height:45.275458pt;}
.h5{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h8{height:53.483125pt;}
.h4{height:53.535000pt;}
.hb{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:65.600000pt;}
.w5{width:248.186667pt;}
.w4{width:288.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x1b{left:8.000000pt;}
.x17{left:9.120000pt;}
.x18{left:13.440000pt;}
.xf{left:21.600000pt;}
.x15{left:37.920000pt;}
.x16{left:50.720000pt;}
.x13{left:70.240000pt;}
.x1d{left:75.520000pt;}
.x19{left:83.360000pt;}
.x11{left:87.200000pt;}
.x1a{left:89.760000pt;}
.x1{left:94.591988pt;}
.x4{left:108.511988pt;}
.x5{left:109.471988pt;}
.x6{left:120.991988pt;}
.x1c{left:131.080000pt;}
.x10{left:161.466667pt;}
.x2{left:247.066655pt;}
.x8{left:331.906655pt;}
.xd{left:406.466655pt;}
.x3{left:410.146655pt;}
.xe{left:432.893322pt;}
.x12{left:450.493333pt;}
.x7{left:475.933322pt;}
.xb{left:478.173322pt;}
.x9{left:646.053322pt;}
.xa{left:659.493322pt;}
.xc{left:699.333322pt;}
}




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