
    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_eb24b3874b9ea6d541327629.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_6c8f0ea83b4bb3fe49d2de8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_3a0033e903cf3e872e9ba9dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_581a8d06a12fee6dfc5e3be1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_dc1f592ad25b07aa603a4c27.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_89fe24e22cff0365bcf45ae6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.866699;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_0bf6dc171b1e5f96f6592cc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.915039;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_1ae3c782d8929b44c6787b6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.092773;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_91f123b7ff1a9609ff2101d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984375;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;}
.m2{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);}
.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;}
.ls7{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.229200px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:3.744000px;}
.ls0{letter-spacing:4.452000px;}
.ls5{letter-spacing:93.594720px;}
.ls4{letter-spacing:143.803200px;}
.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:-36.907200px;}
.ws8{word-spacing:-36.000000px;}
.ws1{word-spacing:-22.984800px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.200000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.552000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._13{margin-left:-11.652000px;}
._12{margin-left:-8.362320px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._c{width:1.091760px;}
._17{width:2.184000px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._19{width:8.424000px;}
._18{width:9.432000px;}
._1a{width:10.776240px;}
._16{width:12.888000px;}
._15{width:13.896000px;}
._3{width:15.769440px;}
._1d{width:17.387760px;}
._20{width:19.342080px;}
._d{width:20.448000px;}
._e{width:21.660240px;}
._23{width:22.680240px;}
._6{width:24.492960px;}
._1c{width:25.701120px;}
._7{width:26.774640px;}
._1b{width:27.936000px;}
._1e{width:29.880000px;}
._1f{width:30.888000px;}
._26{width:32.328000px;}
._25{width:37.440000px;}
._21{width:38.520000px;}
._22{width:39.528000px;}
._27{width:43.605600px;}
._28{width:58.974240px;}
._29{width:65.577600px;}
._2a{width:66.804480px;}
._f{width:209.664000px;}
._10{width:211.068240px;}
._24{width:267.784560px;}
._14{width:843.088800px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y20{bottom:5.400000px;}
.y60{bottom:6.840000px;}
.y63{bottom:7.020000px;}
.y65{bottom:26.460000px;}
.y3{bottom:57.780000px;}
.y6b{bottom:120.456000px;}
.y8b{bottom:133.056000px;}
.y1c{bottom:146.556000px;}
.y6a{bottom:147.276000px;}
.y8a{bottom:157.170000px;}
.y43{bottom:169.770000px;}
.y1b{bottom:170.670000px;}
.y89{bottom:181.470000px;}
.y69{bottom:186.330000px;}
.y42{bottom:189.390000px;}
.y68{bottom:199.650000px;}
.y88{bottom:205.770000px;}
.y1a{bottom:207.030000px;}
.y67{bottom:219.810000px;}
.y87{bottom:230.070000px;}
.y19{bottom:231.330000px;}
.y66{bottom:240.150000px;}
.y86{bottom:254.370000px;}
.y64{bottom:260.490000px;}
.y18{bottom:267.510000px;}
.y85{bottom:278.490000px;}
.y17{bottom:291.810000px;}
.y62{bottom:300.270000px;}
.y84{bottom:302.790000px;}
.y16{bottom:316.110000px;}
.y61{bottom:320.655000px;}
.y83{bottom:327.135000px;}
.y5f{bottom:340.995000px;}
.y15{bottom:352.335000px;}
.y82{bottom:359.715000px;}
.y5e{bottom:368.175000px;}
.ya2{bottom:375.915000px;}
.y5d{bottom:387.615000px;}
.y14{bottom:388.695000px;}
.ya1{bottom:400.035000px;}
.y81{bottom:401.835000px;}
.y30{bottom:419.295000px;}
.y5c{bottom:419.475000px;}
.y13{bottom:424.875000px;}
.y80{bottom:438.015000px;}
.ya0{bottom:439.095000px;}
.y5b{bottom:443.775000px;}
.y2f{bottom:456.915000px;}
.y12{bottom:461.235000px;}
.y7f{bottom:462.315000px;}
.y5a{bottom:468.075000px;}
.y9f{bottom:471.135000px;}
.y7e{bottom:486.615000px;}
.y2e{bottom:488.595000px;}
.y59{bottom:492.195000px;}
.y9e{bottom:497.055000px;}
.y11{bottom:497.415000px;}
.y7d{bottom:510.915000px;}
.y58{bottom:516.495000px;}
.y2d{bottom:520.455000px;}
.y9d{bottom:522.795000px;}
.y10{bottom:533.775000px;}
.y7c{bottom:535.035000px;}
.y57{bottom:540.795000px;}
.y9c{bottom:545.115000px;}
.y2c{bottom:552.135000px;}
.y56{bottom:565.095000px;}
.y7b{bottom:567.615000px;}
.yf{bottom:569.985000px;}
.y2b{bottom:584.025000px;}
.y55{bottom:589.425000px;}
.y9b{bottom:589.965000px;}
.y41{bottom:596.265000px;}
.ye{bottom:606.345000px;}
.y7a{bottom:609.585000px;}
.y9a{bottom:612.465000px;}
.y54{bottom:613.365000px;}
.y2a{bottom:615.705000px;}
.y40{bottom:620.565000px;}
.y99{bottom:634.785000px;}
.y79{bottom:641.265000px;}
.yd{bottom:642.525000px;}
.y3f{bottom:644.865000px;}
.y53{bottom:645.225000px;}
.y29{bottom:647.565000px;}
.y98{bottom:657.285000px;}
.y78{bottom:665.565000px;}
.y3e{bottom:669.165000px;}
.y52{bottom:669.525000px;}
.yc{bottom:678.885000px;}
.y28{bottom:679.245000px;}
.y97{bottom:679.605000px;}
.y3d{bottom:693.465000px;}
.y51{bottom:693.645000px;}
.y77{bottom:696.885000px;}
.y96{bottom:702.105000px;}
.y27{bottom:711.105000px;}
.yb{bottom:715.065000px;}
.y3c{bottom:717.585000px;}
.y50{bottom:717.945000px;}
.y95{bottom:735.585000px;}
.y76{bottom:735.945000px;}
.y3b{bottom:741.885000px;}
.y4f{bottom:742.065000px;}
.y26{bottom:742.785000px;}
.ya{bottom:752.505000px;}
.y3a{bottom:766.185000px;}
.y75{bottom:767.625000px;}
.y4e{bottom:769.065000px;}
.y25{bottom:774.645000px;}
.y94{bottom:777.525000px;}
.y39{bottom:790.485000px;}
.y9{bottom:791.745000px;}
.y74{bottom:791.925000px;}
.y93{bottom:809.205000px;}
.y4d{bottom:810.465000px;}
.y24{bottom:811.365000px;}
.y38{bottom:814.785000px;}
.y73{bottom:816.225000px;}
.y8{bottom:829.230000px;}
.y92{bottom:833.550000px;}
.y37{bottom:839.130000px;}
.y72{bottom:840.570000px;}
.y4c{bottom:852.270000px;}
.y91{bottom:857.850000px;}
.y23{bottom:859.650000px;}
.y36{bottom:863.250000px;}
.y7{bottom:864.510000px;}
.y71{bottom:864.870000px;}
.y22{bottom:877.470000px;}
.y90{bottom:882.150000px;}
.y4b{bottom:884.130000px;}
.y35{bottom:887.550000px;}
.y70{bottom:888.810000px;}
.y21{bottom:900.690000px;}
.y8f{bottom:906.450000px;}
.y4a{bottom:908.250000px;}
.y34{bottom:911.850000px;}
.y6{bottom:913.830000px;}
.y6f{bottom:915.810000px;}
.y1f{bottom:923.910000px;}
.y8e{bottom:930.750000px;}
.y49{bottom:932.550000px;}
.y33{bottom:936.150000px;}
.y6e{bottom:954.690000px;}
.y8d{bottom:954.870000px;}
.y48{bottom:956.850000px;}
.y32{bottom:960.450000px;}
.y5{bottom:962.970000px;}
.y1e{bottom:975.930000px;}
.y8c{bottom:978.990000px;}
.y47{bottom:980.970000px;}
.y6d{bottom:986.550000px;}
.y31{bottom:993.030000px;}
.y46{bottom:1000.410000px;}
.y6c{bottom:1010.670000px;}
.y4{bottom:1012.290000px;}
.y45{bottom:1020.030000px;}
.y1d{bottom:1034.970000px;}
.y44{bottom:1039.470000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.ha{height:19.440000px;}
.hd{height:19.620000px;}
.hb{height:19.656000px;}
.h4{height:22.500000px;}
.hc{height:39.060000px;}
.h8{height:40.530586px;}
.h9{height:42.193828px;}
.he{height:56.795625px;}
.hf{height:59.867247px;}
.h1{height:60.960938px;}
.h3{height:71.324297px;}
.h6{height:81.078047px;}
.h5{height:98.051133px;}
.h7{height:98.426190px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w2{width:174.780000px;}
.w3{width:174.810000px;}
.w5{width:199.470000px;}
.w4{width:240.510000px;}
.w6{width:264.810000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x4{left:100.296000px;}
.x2{left:108.035986px;}
.x9{left:124.595986px;}
.xe{left:136.835986px;}
.xa{left:140.975986px;}
.xb{left:214.409986px;}
.xf{left:237.629986px;}
.x1{left:266.609986px;}
.x6{left:275.790000px;}
.x15{left:279.389986px;}
.x3{left:322.814986px;}
.x10{left:335.414986px;}
.xc{left:341.535000px;}
.x11{left:384.554986px;}
.x16{left:387.434986px;}
.x7{left:451.335000px;}
.xd{left:541.725000px;}
.x12{left:567.464986px;}
.x13{left:601.304986px;}
.x8{left:626.865000px;}
.x14{left:699.089986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.203733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:3.328000pt;}
.ls0{letter-spacing:3.957333pt;}
.ls5{letter-spacing:83.195307pt;}
.ls4{letter-spacing:127.825067pt;}
.ws0{word-spacing:-32.806400pt;}
.ws8{word-spacing:-32.000000pt;}
.ws1{word-spacing:-20.430933pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.400000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._13{margin-left:-10.357333pt;}
._12{margin-left:-7.433173pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._c{width:0.970453pt;}
._17{width:1.941333pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._19{width:7.488000pt;}
._18{width:8.384000pt;}
._1a{width:9.578880pt;}
._16{width:11.456000pt;}
._15{width:12.352000pt;}
._3{width:14.017280pt;}
._1d{width:15.455787pt;}
._20{width:17.192960pt;}
._d{width:18.176000pt;}
._e{width:19.253547pt;}
._23{width:20.160213pt;}
._6{width:21.771520pt;}
._1c{width:22.845440pt;}
._7{width:23.799680pt;}
._1b{width:24.832000pt;}
._1e{width:26.560000pt;}
._1f{width:27.456000pt;}
._26{width:28.736000pt;}
._25{width:33.280000pt;}
._21{width:34.240000pt;}
._22{width:35.136000pt;}
._27{width:38.760533pt;}
._28{width:52.421547pt;}
._29{width:58.291200pt;}
._2a{width:59.381760pt;}
._f{width:186.368000pt;}
._10{width:187.616213pt;}
._24{width:238.030720pt;}
._14{width:749.412267pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:4.800000pt;}
.y60{bottom:6.080000pt;}
.y63{bottom:6.240000pt;}
.y65{bottom:23.520000pt;}
.y3{bottom:51.360000pt;}
.y6b{bottom:107.072000pt;}
.y8b{bottom:118.272000pt;}
.y1c{bottom:130.272000pt;}
.y6a{bottom:130.912000pt;}
.y8a{bottom:139.706667pt;}
.y43{bottom:150.906667pt;}
.y1b{bottom:151.706667pt;}
.y89{bottom:161.306667pt;}
.y69{bottom:165.626667pt;}
.y42{bottom:168.346667pt;}
.y68{bottom:177.466667pt;}
.y88{bottom:182.906667pt;}
.y1a{bottom:184.026667pt;}
.y67{bottom:195.386667pt;}
.y87{bottom:204.506667pt;}
.y19{bottom:205.626667pt;}
.y66{bottom:213.466667pt;}
.y86{bottom:226.106667pt;}
.y64{bottom:231.546667pt;}
.y18{bottom:237.786667pt;}
.y85{bottom:247.546667pt;}
.y17{bottom:259.386667pt;}
.y62{bottom:266.906667pt;}
.y84{bottom:269.146667pt;}
.y16{bottom:280.986667pt;}
.y61{bottom:285.026667pt;}
.y83{bottom:290.786667pt;}
.y5f{bottom:303.106667pt;}
.y15{bottom:313.186667pt;}
.y82{bottom:319.746667pt;}
.y5e{bottom:327.266667pt;}
.ya2{bottom:334.146667pt;}
.y5d{bottom:344.546667pt;}
.y14{bottom:345.506667pt;}
.ya1{bottom:355.586667pt;}
.y81{bottom:357.186667pt;}
.y30{bottom:372.706667pt;}
.y5c{bottom:372.866667pt;}
.y13{bottom:377.666667pt;}
.y80{bottom:389.346667pt;}
.ya0{bottom:390.306667pt;}
.y5b{bottom:394.466667pt;}
.y2f{bottom:406.146667pt;}
.y12{bottom:409.986667pt;}
.y7f{bottom:410.946667pt;}
.y5a{bottom:416.066667pt;}
.y9f{bottom:418.786667pt;}
.y7e{bottom:432.546667pt;}
.y2e{bottom:434.306667pt;}
.y59{bottom:437.506667pt;}
.y9e{bottom:441.826667pt;}
.y11{bottom:442.146667pt;}
.y7d{bottom:454.146667pt;}
.y58{bottom:459.106667pt;}
.y2d{bottom:462.626667pt;}
.y9d{bottom:464.706667pt;}
.y10{bottom:474.466667pt;}
.y7c{bottom:475.586667pt;}
.y57{bottom:480.706667pt;}
.y9c{bottom:484.546667pt;}
.y2c{bottom:490.786667pt;}
.y56{bottom:502.306667pt;}
.y7b{bottom:504.546667pt;}
.yf{bottom:506.653333pt;}
.y2b{bottom:519.133333pt;}
.y55{bottom:523.933333pt;}
.y9b{bottom:524.413333pt;}
.y41{bottom:530.013333pt;}
.ye{bottom:538.973333pt;}
.y7a{bottom:541.853333pt;}
.y9a{bottom:544.413333pt;}
.y54{bottom:545.213333pt;}
.y2a{bottom:547.293333pt;}
.y40{bottom:551.613333pt;}
.y99{bottom:564.253333pt;}
.y79{bottom:570.013333pt;}
.yd{bottom:571.133333pt;}
.y3f{bottom:573.213333pt;}
.y53{bottom:573.533333pt;}
.y29{bottom:575.613333pt;}
.y98{bottom:584.253333pt;}
.y78{bottom:591.613333pt;}
.y3e{bottom:594.813333pt;}
.y52{bottom:595.133333pt;}
.yc{bottom:603.453333pt;}
.y28{bottom:603.773333pt;}
.y97{bottom:604.093333pt;}
.y3d{bottom:616.413333pt;}
.y51{bottom:616.573333pt;}
.y77{bottom:619.453333pt;}
.y96{bottom:624.093333pt;}
.y27{bottom:632.093333pt;}
.yb{bottom:635.613333pt;}
.y3c{bottom:637.853333pt;}
.y50{bottom:638.173333pt;}
.y95{bottom:653.853333pt;}
.y76{bottom:654.173333pt;}
.y3b{bottom:659.453333pt;}
.y4f{bottom:659.613333pt;}
.y26{bottom:660.253333pt;}
.ya{bottom:668.893333pt;}
.y3a{bottom:681.053333pt;}
.y75{bottom:682.333333pt;}
.y4e{bottom:683.613333pt;}
.y25{bottom:688.573333pt;}
.y94{bottom:691.133333pt;}
.y39{bottom:702.653333pt;}
.y9{bottom:703.773333pt;}
.y74{bottom:703.933333pt;}
.y93{bottom:719.293333pt;}
.y4d{bottom:720.413333pt;}
.y24{bottom:721.213333pt;}
.y38{bottom:724.253333pt;}
.y73{bottom:725.533333pt;}
.y8{bottom:737.093333pt;}
.y92{bottom:740.933333pt;}
.y37{bottom:745.893333pt;}
.y72{bottom:747.173333pt;}
.y4c{bottom:757.573333pt;}
.y91{bottom:762.533333pt;}
.y23{bottom:764.133333pt;}
.y36{bottom:767.333333pt;}
.y7{bottom:768.453333pt;}
.y71{bottom:768.773333pt;}
.y22{bottom:779.973333pt;}
.y90{bottom:784.133333pt;}
.y4b{bottom:785.893333pt;}
.y35{bottom:788.933333pt;}
.y70{bottom:790.053333pt;}
.y21{bottom:800.613333pt;}
.y8f{bottom:805.733333pt;}
.y4a{bottom:807.333333pt;}
.y34{bottom:810.533333pt;}
.y6{bottom:812.293333pt;}
.y6f{bottom:814.053333pt;}
.y1f{bottom:821.253333pt;}
.y8e{bottom:827.333333pt;}
.y49{bottom:828.933333pt;}
.y33{bottom:832.133333pt;}
.y6e{bottom:848.613333pt;}
.y8d{bottom:848.773333pt;}
.y48{bottom:850.533333pt;}
.y32{bottom:853.733333pt;}
.y5{bottom:855.973333pt;}
.y1e{bottom:867.493333pt;}
.y8c{bottom:870.213333pt;}
.y47{bottom:871.973333pt;}
.y6d{bottom:876.933333pt;}
.y31{bottom:882.693333pt;}
.y46{bottom:889.253333pt;}
.y6c{bottom:898.373333pt;}
.y4{bottom:899.813333pt;}
.y45{bottom:906.693333pt;}
.y1d{bottom:919.973333pt;}
.y44{bottom:923.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.ha{height:17.280000pt;}
.hd{height:17.440000pt;}
.hb{height:17.472000pt;}
.h4{height:20.000000pt;}
.hc{height:34.720000pt;}
.h8{height:36.027188pt;}
.h9{height:37.505625pt;}
.he{height:50.485000pt;}
.hf{height:53.215330pt;}
.h1{height:54.187500pt;}
.h3{height:63.399375pt;}
.h6{height:72.069375pt;}
.h5{height:87.156562pt;}
.h7{height:87.489947pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w2{width:155.360000pt;}
.w3{width:155.386667pt;}
.w5{width:177.306667pt;}
.w4{width:213.786667pt;}
.w6{width:235.386667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x4{left:89.152000pt;}
.x2{left:96.031988pt;}
.x9{left:110.751988pt;}
.xe{left:121.631988pt;}
.xa{left:125.311988pt;}
.xb{left:190.586655pt;}
.xf{left:211.226655pt;}
.x1{left:236.986655pt;}
.x6{left:245.146667pt;}
.x15{left:248.346655pt;}
.x3{left:286.946655pt;}
.x10{left:298.146655pt;}
.xc{left:303.586667pt;}
.x11{left:341.826655pt;}
.x16{left:344.386655pt;}
.x7{left:401.186667pt;}
.xd{left:481.533333pt;}
.x12{left:504.413321pt;}
.x13{left:534.493321pt;}
.x8{left:557.213333pt;}
.x14{left:621.413321pt;}
}




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