
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_672965618c3ac4f482e375be.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_be63e7dcc8f768c581fbd822.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_c4db2222a4bb5e6c6b0a4abc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_3197f93061f9f3bce952064b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_fd73e36d1e6377c1c4209af2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_9ce98675c781c995757aefa1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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_18ed92918846d3b01e2b6a09.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_4b622b7e131c3c5ad7504e5b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:-0.259800px;}
.ls7{letter-spacing:-0.226200px;}
.ls9{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls0{letter-spacing:1.347840px;}
.lsc{letter-spacing:46.026720px;}
.ls1{letter-spacing:2010.689760px;}
.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;}
}
.ws2{word-spacing:-22.407840px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.680200px;}
.ws7{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws6{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-2.611440px;}
._0{margin-left:-1.093680px;}
._1{width:1.010880px;}
._2{width:2.442960px;}
._7{width:4.039920px;}
._6{width:5.139360px;}
._8{width:6.873120px;}
._15{width:8.161920px;}
._13{width:9.327600px;}
._12{width:10.458000px;}
._11{width:12.071520px;}
._10{width:13.087440px;}
._9{width:16.673040px;}
._17{width:18.525600px;}
._19{width:19.766640px;}
._b{width:20.861280px;}
._5{width:22.230720px;}
._4{width:23.322240px;}
._c{width:24.860160px;}
._16{width:25.876080px;}
._d{width:26.897040px;}
._14{width:28.035360px;}
._a{width:29.048400px;}
._e{width:57.847440px;}
._18{width:68.968080px;}
._1b{width:112.169520px;}
._1a{width:113.352960px;}
._f{width:186.120000px;}
._1c{width:1603.320000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:0.360000px;}
.y50{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y5e{bottom:5.010000px;}
.y43{bottom:5.040000px;}
.y2{bottom:9.930000px;}
.y4f{bottom:10.260000px;}
.y5c{bottom:20.520000px;}
.y42{bottom:22.185000px;}
.y4{bottom:22.710000px;}
.y5b{bottom:37.800000px;}
.y41{bottom:39.465000px;}
.y4e{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y4d{bottom:51.120000px;}
.y5a{bottom:55.080000px;}
.y40{bottom:56.745000px;}
.y7{bottom:57.060000px;}
.y4c{bottom:62.274000px;}
.y3f{bottom:74.025000px;}
.y4b{bottom:74.154000px;}
.y4a{bottom:87.114000px;}
.y45{bottom:89.676000px;}
.y59{bottom:89.994000px;}
.y3e{bottom:91.305000px;}
.y49{bottom:100.254000px;}
.y98{bottom:106.596000px;}
.y58{bottom:107.274000px;}
.y3d{bottom:108.585000px;}
.y57{bottom:122.034000px;}
.y48{bottom:122.214000px;}
.y97{bottom:123.696000px;}
.y3c{bottom:125.685000px;}
.y56{bottom:129.954000px;}
.y96{bottom:140.976000px;}
.y3b{bottom:142.965000px;}
.y55{bottom:145.434000px;}
.y95{bottom:158.250000px;}
.y3a{bottom:160.245000px;}
.y54{bottom:160.914000px;}
.y94{bottom:175.530000px;}
.y53{bottom:176.574000px;}
.y39{bottom:177.525000px;}
.y47{bottom:184.134000px;}
.y52{bottom:192.054000px;}
.y93{bottom:192.810000px;}
.y46{bottom:194.754000px;}
.y38{bottom:194.805000px;}
.y51{bottom:207.534000px;}
.y92{bottom:209.910000px;}
.y37{bottom:212.085000px;}
.y91{bottom:227.190000px;}
.y36{bottom:229.185000px;}
.y90{bottom:244.470000px;}
.y35{bottom:246.465000px;}
.y8f{bottom:261.750000px;}
.y34{bottom:263.745000px;}
.y20{bottom:267.165000px;}
.y33{bottom:278.145000px;}
.y8e{bottom:279.030000px;}
.y32{bottom:282.675000px;}
.y1f{bottom:291.315000px;}
.y8d{bottom:296.310000px;}
.y31{bottom:299.955000px;}
.y8c{bottom:313.410000px;}
.y12{bottom:314.490000px;}
.y1e{bottom:315.615000px;}
.y30{bottom:317.595000px;}
.y8b{bottom:330.735000px;}
.y2f{bottom:334.875000px;}
.y1d{bottom:339.735000px;}
.y8a{bottom:348.015000px;}
.y2e{bottom:352.155000px;}
.y1c{bottom:363.855000px;}
.y89{bottom:365.295000px;}
.y2d{bottom:369.435000px;}
.y88{bottom:382.575000px;}
.y2c{bottom:386.715000px;}
.y1b{bottom:387.975000px;}
.y87{bottom:399.855000px;}
.y2b{bottom:403.995000px;}
.y1a{bottom:412.095000px;}
.y86{bottom:416.955000px;}
.y2a{bottom:421.275000px;}
.y85{bottom:434.235000px;}
.y19{bottom:436.215000px;}
.y29{bottom:438.375000px;}
.y84{bottom:451.515000px;}
.y28{bottom:455.655000px;}
.y18{bottom:460.515000px;}
.y83{bottom:468.795000px;}
.y27{bottom:472.935000px;}
.y17{bottom:484.635000px;}
.y82{bottom:486.075000px;}
.y26{bottom:490.215000px;}
.y81{bottom:503.355000px;}
.y25{bottom:507.495000px;}
.y16{bottom:508.755000px;}
.y80{bottom:520.455000px;}
.y24{bottom:524.775000px;}
.y15{bottom:532.875000px;}
.y7f{bottom:537.735000px;}
.y23{bottom:541.875000px;}
.y7e{bottom:555.015000px;}
.y14{bottom:557.040000px;}
.y22{bottom:559.200000px;}
.y7d{bottom:572.295000px;}
.y21{bottom:576.840000px;}
.y13{bottom:581.160000px;}
.y7c{bottom:589.575000px;}
.y7b{bottom:606.705000px;}
.y7a{bottom:623.985000px;}
.y79{bottom:641.265000px;}
.y78{bottom:658.545000px;}
.y77{bottom:675.825000px;}
.y76{bottom:693.105000px;}
.y75{bottom:710.205000px;}
.y74{bottom:727.485000px;}
.y73{bottom:744.765000px;}
.y72{bottom:762.045000px;}
.y71{bottom:779.325000px;}
.y70{bottom:796.605000px;}
.y6f{bottom:813.705000px;}
.y6e{bottom:830.985000px;}
.y6d{bottom:848.265000px;}
.y6c{bottom:865.590000px;}
.y6b{bottom:882.870000px;}
.y6a{bottom:899.970000px;}
.y11{bottom:908.070000px;}
.y10{bottom:914.190000px;}
.y69{bottom:917.250000px;}
.yf{bottom:931.470000px;}
.y68{bottom:934.530000px;}
.ye{bottom:948.750000px;}
.y67{bottom:951.810000px;}
.yd{bottom:966.030000px;}
.y66{bottom:969.090000px;}
.yc{bottom:983.310000px;}
.y65{bottom:986.370000px;}
.yb{bottom:1002.210000px;}
.y64{bottom:1003.470000px;}
.y63{bottom:1020.750000px;}
.ya{bottom:1026.510000px;}
.y62{bottom:1038.030000px;}
.y9{bottom:1049.370000px;}
.y61{bottom:1055.310000px;}
.y8{bottom:1072.230000px;}
.y60{bottom:1072.590000px;}
.y5d{bottom:1075.500000px;}
.y5f{bottom:1089.870000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.he{height:4.021875px;}
.ha{height:4.165313px;}
.h15{height:10.088437px;}
.h11{height:21.114844px;}
.h10{height:25.136719px;}
.h17{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h14{height:38.100586px;}
.h12{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h8{height:42.164648px;}
.h19{height:43.506914px;}
.h13{height:44.507812px;}
.h5{height:46.251562px;}
.h16{height:49.255313px;}
.h9{height:59.436914px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.hf{height:224.100000px;}
.hb{height:590.865000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x19{left:8.136000px;}
.x4{left:12.780000px;}
.x18{left:16.056000px;}
.x1d{left:18.216000px;}
.x16{left:19.656000px;}
.x17{left:26.136000px;}
.x1f{left:29.196000px;}
.x6{left:33.840000px;}
.x1e{left:47.736000px;}
.x11{left:50.796000px;}
.x10{left:54.936000px;}
.x21{left:57.096000px;}
.x1b{left:62.100000px;}
.x20{left:66.270000px;}
.x1{left:78.300000px;}
.x15{left:79.590000px;}
.x13{left:82.470000px;}
.x14{left:83.730000px;}
.x7{left:86.399987px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1c{left:106.770000px;}
.x24{left:113.435987px;}
.x12{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1a{left:219.090000px;}
.xe{left:300.314987px;}
.xd{left:505.544987px;}
.xa{left:623.804987px;}
.xb{left:692.069987px;}
.xc{left:704.309987px;}
.x9{left:766.049987px;}
.x8{left:791.789987px;}
.xf{left:806.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls0{letter-spacing:1.198080pt;}
.lsc{letter-spacing:40.912640pt;}
.ls1{letter-spacing:1787.279787pt;}
.ws2{word-spacing:-19.918080pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.049067pt;}
.ws7{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws6{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-2.321280pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.898560pt;}
._2{width:2.171520pt;}
._7{width:3.591040pt;}
._6{width:4.568320pt;}
._8{width:6.109440pt;}
._15{width:7.255040pt;}
._13{width:8.291200pt;}
._12{width:9.296000pt;}
._11{width:10.730240pt;}
._10{width:11.633280pt;}
._9{width:14.820480pt;}
._17{width:16.467200pt;}
._19{width:17.570347pt;}
._b{width:18.543360pt;}
._5{width:19.760640pt;}
._4{width:20.730880pt;}
._c{width:22.097920pt;}
._16{width:23.000960pt;}
._d{width:23.908480pt;}
._14{width:24.920320pt;}
._a{width:25.820800pt;}
._e{width:51.419947pt;}
._18{width:61.304960pt;}
._1b{width:99.706240pt;}
._1a{width:100.758187pt;}
._f{width:165.440000pt;}
._1c{width:1425.173333pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:0.320000pt;}
.y50{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y5e{bottom:4.453333pt;}
.y43{bottom:4.480000pt;}
.y2{bottom:8.826667pt;}
.y4f{bottom:9.120000pt;}
.y5c{bottom:18.240000pt;}
.y42{bottom:19.720000pt;}
.y4{bottom:20.186667pt;}
.y5b{bottom:33.600000pt;}
.y41{bottom:35.080000pt;}
.y4e{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y4d{bottom:45.440000pt;}
.y5a{bottom:48.960000pt;}
.y40{bottom:50.440000pt;}
.y7{bottom:50.720000pt;}
.y4c{bottom:55.354667pt;}
.y3f{bottom:65.800000pt;}
.y4b{bottom:65.914667pt;}
.y4a{bottom:77.434667pt;}
.y45{bottom:79.712000pt;}
.y59{bottom:79.994667pt;}
.y3e{bottom:81.160000pt;}
.y49{bottom:89.114667pt;}
.y98{bottom:94.752000pt;}
.y58{bottom:95.354667pt;}
.y3d{bottom:96.520000pt;}
.y57{bottom:108.474667pt;}
.y48{bottom:108.634667pt;}
.y97{bottom:109.952000pt;}
.y3c{bottom:111.720000pt;}
.y56{bottom:115.514667pt;}
.y96{bottom:125.312000pt;}
.y3b{bottom:127.080000pt;}
.y55{bottom:129.274667pt;}
.y95{bottom:140.666667pt;}
.y3a{bottom:142.440000pt;}
.y54{bottom:143.034667pt;}
.y94{bottom:156.026667pt;}
.y53{bottom:156.954667pt;}
.y39{bottom:157.800000pt;}
.y47{bottom:163.674667pt;}
.y52{bottom:170.714667pt;}
.y93{bottom:171.386667pt;}
.y46{bottom:173.114667pt;}
.y38{bottom:173.160000pt;}
.y51{bottom:184.474667pt;}
.y92{bottom:186.586667pt;}
.y37{bottom:188.520000pt;}
.y91{bottom:201.946667pt;}
.y36{bottom:203.720000pt;}
.y90{bottom:217.306667pt;}
.y35{bottom:219.080000pt;}
.y8f{bottom:232.666667pt;}
.y34{bottom:234.440000pt;}
.y20{bottom:237.480000pt;}
.y33{bottom:247.240000pt;}
.y8e{bottom:248.026667pt;}
.y32{bottom:251.266667pt;}
.y1f{bottom:258.946667pt;}
.y8d{bottom:263.386667pt;}
.y31{bottom:266.626667pt;}
.y8c{bottom:278.586667pt;}
.y12{bottom:279.546667pt;}
.y1e{bottom:280.546667pt;}
.y30{bottom:282.306667pt;}
.y8b{bottom:293.986667pt;}
.y2f{bottom:297.666667pt;}
.y1d{bottom:301.986667pt;}
.y8a{bottom:309.346667pt;}
.y2e{bottom:313.026667pt;}
.y1c{bottom:323.426667pt;}
.y89{bottom:324.706667pt;}
.y2d{bottom:328.386667pt;}
.y88{bottom:340.066667pt;}
.y2c{bottom:343.746667pt;}
.y1b{bottom:344.866667pt;}
.y87{bottom:355.426667pt;}
.y2b{bottom:359.106667pt;}
.y1a{bottom:366.306667pt;}
.y86{bottom:370.626667pt;}
.y2a{bottom:374.466667pt;}
.y85{bottom:385.986667pt;}
.y19{bottom:387.746667pt;}
.y29{bottom:389.666667pt;}
.y84{bottom:401.346667pt;}
.y28{bottom:405.026667pt;}
.y18{bottom:409.346667pt;}
.y83{bottom:416.706667pt;}
.y27{bottom:420.386667pt;}
.y17{bottom:430.786667pt;}
.y82{bottom:432.066667pt;}
.y26{bottom:435.746667pt;}
.y81{bottom:447.426667pt;}
.y25{bottom:451.106667pt;}
.y16{bottom:452.226667pt;}
.y80{bottom:462.626667pt;}
.y24{bottom:466.466667pt;}
.y15{bottom:473.666667pt;}
.y7f{bottom:477.986667pt;}
.y23{bottom:481.666667pt;}
.y7e{bottom:493.346667pt;}
.y14{bottom:495.146667pt;}
.y22{bottom:497.066667pt;}
.y7d{bottom:508.706667pt;}
.y21{bottom:512.746667pt;}
.y13{bottom:516.586667pt;}
.y7c{bottom:524.066667pt;}
.y7b{bottom:539.293333pt;}
.y7a{bottom:554.653333pt;}
.y79{bottom:570.013333pt;}
.y78{bottom:585.373333pt;}
.y77{bottom:600.733333pt;}
.y76{bottom:616.093333pt;}
.y75{bottom:631.293333pt;}
.y74{bottom:646.653333pt;}
.y73{bottom:662.013333pt;}
.y72{bottom:677.373333pt;}
.y71{bottom:692.733333pt;}
.y70{bottom:708.093333pt;}
.y6f{bottom:723.293333pt;}
.y6e{bottom:738.653333pt;}
.y6d{bottom:754.013333pt;}
.y6c{bottom:769.413333pt;}
.y6b{bottom:784.773333pt;}
.y6a{bottom:799.973333pt;}
.y11{bottom:807.173333pt;}
.y10{bottom:812.613333pt;}
.y69{bottom:815.333333pt;}
.yf{bottom:827.973333pt;}
.y68{bottom:830.693333pt;}
.ye{bottom:843.333333pt;}
.y67{bottom:846.053333pt;}
.yd{bottom:858.693333pt;}
.y66{bottom:861.413333pt;}
.yc{bottom:874.053333pt;}
.y65{bottom:876.773333pt;}
.yb{bottom:890.853333pt;}
.y64{bottom:891.973333pt;}
.y63{bottom:907.333333pt;}
.ya{bottom:912.453333pt;}
.y62{bottom:922.693333pt;}
.y9{bottom:932.773333pt;}
.y61{bottom:938.053333pt;}
.y8{bottom:953.093333pt;}
.y60{bottom:953.413333pt;}
.y5d{bottom:956.000000pt;}
.y5f{bottom:968.773333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.he{height:3.575000pt;}
.ha{height:3.702500pt;}
.h15{height:8.967500pt;}
.h11{height:18.768750pt;}
.h10{height:22.343750pt;}
.h17{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h14{height:33.867188pt;}
.h12{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h8{height:37.479688pt;}
.h19{height:38.672812pt;}
.h13{height:39.562500pt;}
.h5{height:41.112500pt;}
.h16{height:43.782500pt;}
.h9{height:52.832812pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.hf{height:199.200000pt;}
.hb{height:525.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x19{left:7.232000pt;}
.x4{left:11.360000pt;}
.x18{left:14.272000pt;}
.x1d{left:16.192000pt;}
.x16{left:17.472000pt;}
.x17{left:23.232000pt;}
.x1f{left:25.952000pt;}
.x6{left:30.080000pt;}
.x1e{left:42.432000pt;}
.x11{left:45.152000pt;}
.x10{left:48.832000pt;}
.x21{left:50.752000pt;}
.x1b{left:55.200000pt;}
.x20{left:58.906667pt;}
.x1{left:69.600000pt;}
.x15{left:70.746667pt;}
.x13{left:73.306667pt;}
.x14{left:74.426667pt;}
.x7{left:76.799988pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1c{left:94.906667pt;}
.x24{left:100.831988pt;}
.x12{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1a{left:194.746667pt;}
.xe{left:266.946655pt;}
.xd{left:449.373322pt;}
.xa{left:554.493322pt;}
.xb{left:615.173322pt;}
.xc{left:626.053322pt;}
.x9{left:680.933322pt;}
.x8{left:703.813322pt;}
.xf{left:717.093322pt;}
}




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