
    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_b6b844faf13676ea17431047.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f8dacf797ebddc83a46ac3b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bd0e6c7958cee9d1c3148c92.woff2')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_506fae451e098956a57e9725.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ca90d6e6903e676d0e89ba9e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ee647a1ef3a2ba81b98c0e8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_081f474338e36699e488f328.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a5e0754eed8da4136ea2d6d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-5.556000px;}
.lsa{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.620000px;}
.ls18{letter-spacing:4.500000px;}
.ls14{letter-spacing:5.220000px;}
.ls3{letter-spacing:6.660000px;}
.ls19{letter-spacing:8.100000px;}
.lsf{letter-spacing:8.820000px;}
.ls13{letter-spacing:11.700000px;}
.ls16{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.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:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wse{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.ws8{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.384000px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-7.289760px;}
._1f{margin-left:-5.921280px;}
._19{margin-left:-3.264480px;}
._b{margin-left:-2.113920px;}
._0{margin-left:-1.080000px;}
._f{width:1.167840px;}
._1{width:2.220000px;}
._16{width:3.222240px;}
._14{width:4.551840px;}
._13{width:5.871120px;}
._1b{width:7.263360px;}
._15{width:8.713920px;}
._17{width:9.730800px;}
._6{width:10.800000px;}
._18{width:12.144960px;}
._1a{width:13.223520px;}
._22{width:16.318560px;}
._11{width:18.948000px;}
._21{width:32.495760px;}
._7{width:76.284960px;}
._1d{width:78.084960px;}
._12{width:99.660000px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.512640px;}
._1c{width:256.546560px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._1e{width:605.398080px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc6{color:rgb(65,60,56);}
.fc2{color:rgb(5,99,193);}
.fc7{color:rgb(27,27,27);}
.fc5{color:rgb(71,71,71);}
.fc4{color:rgb(10,10,10);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:34.560000px;}
.y5{bottom:40.320000px;}
.yb{bottom:55.080000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.y3{bottom:96.330000px;}
.y69{bottom:106.380000px;}
.y3b{bottom:107.460000px;}
.y86{bottom:110.880000px;}
.y82{bottom:113.580000px;}
.y2{bottom:125.670000px;}
.y68{bottom:126.360000px;}
.y3a{bottom:127.440000px;}
.y85{bottom:130.860000px;}
.y81{bottom:133.380000px;}
.y67{bottom:146.160000px;}
.y39{bottom:147.240000px;}
.y84{bottom:150.840000px;}
.y80{bottom:153.390000px;}
.y66{bottom:165.990000px;}
.y38{bottom:167.070000px;}
.y83{bottom:170.850000px;}
.y7f{bottom:173.190000px;}
.y65{bottom:185.790000px;}
.y37{bottom:186.870000px;}
.y7e{bottom:192.990000px;}
.y64{bottom:205.590000px;}
.y36{bottom:206.670000px;}
.y7d{bottom:212.790000px;}
.y63{bottom:225.570000px;}
.y35{bottom:226.650000px;}
.y7c{bottom:232.590000px;}
.y62{bottom:245.370000px;}
.y34{bottom:246.450000px;}
.y7b{bottom:252.570000px;}
.y61{bottom:265.170000px;}
.y33{bottom:266.250000px;}
.y7a{bottom:272.370000px;}
.y60{bottom:284.970000px;}
.y32{bottom:286.050000px;}
.y79{bottom:292.170000px;}
.y5f{bottom:304.770000px;}
.y31{bottom:305.850000px;}
.y78{bottom:311.970000px;}
.y5e{bottom:324.750000px;}
.y30{bottom:325.830000px;}
.y77{bottom:331.770000px;}
.y5d{bottom:344.550000px;}
.y2f{bottom:345.630000px;}
.y76{bottom:351.750000px;}
.y5c{bottom:364.350000px;}
.y2e{bottom:365.430000px;}
.y75{bottom:371.550000px;}
.y5b{bottom:384.150000px;}
.y2d{bottom:385.230000px;}
.y74{bottom:391.350000px;}
.y2c{bottom:405.075000px;}
.y73{bottom:411.195000px;}
.y5a{bottom:412.995000px;}
.y2b{bottom:425.055000px;}
.y72{bottom:430.995000px;}
.y59{bottom:432.975000px;}
.y2a{bottom:444.855000px;}
.y71{bottom:450.975000px;}
.y58{bottom:452.775000px;}
.y29{bottom:464.655000px;}
.y70{bottom:470.775000px;}
.y57{bottom:472.575000px;}
.y28{bottom:484.455000px;}
.y6f{bottom:490.575000px;}
.y56{bottom:492.375000px;}
.y27{bottom:504.255000px;}
.y6e{bottom:510.375000px;}
.y55{bottom:512.175000px;}
.y6d{bottom:530.175000px;}
.y26{bottom:533.235000px;}
.y54{bottom:541.155000px;}
.y6c{bottom:550.155000px;}
.y25{bottom:553.035000px;}
.y53{bottom:560.955000px;}
.y6b{bottom:569.955000px;}
.y24{bottom:572.835000px;}
.y52{bottom:580.755000px;}
.y6a{bottom:589.755000px;}
.y23{bottom:592.635000px;}
.y51{bottom:609.555000px;}
.y22{bottom:612.435000px;}
.y50{bottom:629.355000px;}
.y21{bottom:632.415000px;}
.y4f{bottom:649.365000px;}
.y20{bottom:652.245000px;}
.y4e{bottom:669.165000px;}
.y1f{bottom:672.045000px;}
.y4d{bottom:688.965000px;}
.y1e{bottom:691.845000px;}
.y4c{bottom:708.765000px;}
.y1d{bottom:711.645000px;}
.y4b{bottom:728.565000px;}
.y1c{bottom:731.625000px;}
.y4a{bottom:748.545000px;}
.y1b{bottom:751.425000px;}
.y49{bottom:768.345000px;}
.y1a{bottom:771.225000px;}
.y48{bottom:788.145000px;}
.y19{bottom:791.025000px;}
.y47{bottom:807.945000px;}
.y18{bottom:810.825000px;}
.y46{bottom:827.745000px;}
.y17{bottom:830.805000px;}
.y45{bottom:847.725000px;}
.y16{bottom:850.605000px;}
.y44{bottom:867.525000px;}
.y15{bottom:875.625000px;}
.y43{bottom:887.325000px;}
.y14{bottom:895.425000px;}
.y42{bottom:907.170000px;}
.y13{bottom:910.590000px;}
.y41{bottom:926.970000px;}
.y12{bottom:932.550000px;}
.y40{bottom:946.950000px;}
.y11{bottom:953.790000px;}
.y3f{bottom:966.750000px;}
.y10{bottom:977.190000px;}
.y3e{bottom:986.550000px;}
.y3d{bottom:1006.350000px;}
.yf{bottom:1008.870000px;}
.y3c{bottom:1026.150000px;}
.y9{bottom:1045.050000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.hb{height:21.420000px;}
.hf{height:27.147656px;}
.h7{height:33.480000px;}
.he{height:41.726953px;}
.h10{height:42.164648px;}
.h13{height:43.506914px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h12{height:48.496641px;}
.h11{height:49.255313px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h8{height:71.613281px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:137.556000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.xe{left:80.999987px;}
.x6{left:91.115987px;}
.xd{left:108.035987px;}
.x9{left:115.955987px;}
.x4{left:118.470000px;}
.xf{left:134.855987px;}
.x7{left:144.755987px;}
.xa{left:182.009987px;}
.xc{left:190.649987px;}
.xb{left:198.749987px;}
.x8{left:446.504987px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-4.938667pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls18{letter-spacing:4.000000pt;}
.ls14{letter-spacing:4.640000pt;}
.ls3{letter-spacing:5.920000pt;}
.ls19{letter-spacing:7.200000pt;}
.lsf{letter-spacing:7.840000pt;}
.ls13{letter-spacing:10.400000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.ws8{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.341333pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-6.479787pt;}
._1f{margin-left:-5.263360pt;}
._19{margin-left:-2.901760pt;}
._b{margin-left:-1.879040pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.038080pt;}
._1{width:1.973333pt;}
._16{width:2.864213pt;}
._14{width:4.046080pt;}
._13{width:5.218773pt;}
._1b{width:6.456320pt;}
._15{width:7.745707pt;}
._17{width:8.649600pt;}
._6{width:9.600000pt;}
._18{width:10.795520pt;}
._1a{width:11.754240pt;}
._22{width:14.505387pt;}
._11{width:16.842667pt;}
._21{width:28.885120pt;}
._7{width:67.808853pt;}
._1d{width:69.408853pt;}
._12{width:88.586667pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.122347pt;}
._1c{width:228.041387pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._1e{width:538.131627pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:30.720000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:48.960000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.y3{bottom:85.626667pt;}
.y69{bottom:94.560000pt;}
.y3b{bottom:95.520000pt;}
.y86{bottom:98.560000pt;}
.y82{bottom:100.960000pt;}
.y2{bottom:111.706667pt;}
.y68{bottom:112.320000pt;}
.y3a{bottom:113.280000pt;}
.y85{bottom:116.320000pt;}
.y81{bottom:118.560000pt;}
.y67{bottom:129.920000pt;}
.y39{bottom:130.880000pt;}
.y84{bottom:134.080000pt;}
.y80{bottom:136.346667pt;}
.y66{bottom:147.546667pt;}
.y38{bottom:148.506667pt;}
.y83{bottom:151.866667pt;}
.y7f{bottom:153.946667pt;}
.y65{bottom:165.146667pt;}
.y37{bottom:166.106667pt;}
.y7e{bottom:171.546667pt;}
.y64{bottom:182.746667pt;}
.y36{bottom:183.706667pt;}
.y7d{bottom:189.146667pt;}
.y63{bottom:200.506667pt;}
.y35{bottom:201.466667pt;}
.y7c{bottom:206.746667pt;}
.y62{bottom:218.106667pt;}
.y34{bottom:219.066667pt;}
.y7b{bottom:224.506667pt;}
.y61{bottom:235.706667pt;}
.y33{bottom:236.666667pt;}
.y7a{bottom:242.106667pt;}
.y60{bottom:253.306667pt;}
.y32{bottom:254.266667pt;}
.y79{bottom:259.706667pt;}
.y5f{bottom:270.906667pt;}
.y31{bottom:271.866667pt;}
.y78{bottom:277.306667pt;}
.y5e{bottom:288.666667pt;}
.y30{bottom:289.626667pt;}
.y77{bottom:294.906667pt;}
.y5d{bottom:306.266667pt;}
.y2f{bottom:307.226667pt;}
.y76{bottom:312.666667pt;}
.y5c{bottom:323.866667pt;}
.y2e{bottom:324.826667pt;}
.y75{bottom:330.266667pt;}
.y5b{bottom:341.466667pt;}
.y2d{bottom:342.426667pt;}
.y74{bottom:347.866667pt;}
.y2c{bottom:360.066667pt;}
.y73{bottom:365.506667pt;}
.y5a{bottom:367.106667pt;}
.y2b{bottom:377.826667pt;}
.y72{bottom:383.106667pt;}
.y59{bottom:384.866667pt;}
.y2a{bottom:395.426667pt;}
.y71{bottom:400.866667pt;}
.y58{bottom:402.466667pt;}
.y29{bottom:413.026667pt;}
.y70{bottom:418.466667pt;}
.y57{bottom:420.066667pt;}
.y28{bottom:430.626667pt;}
.y6f{bottom:436.066667pt;}
.y56{bottom:437.666667pt;}
.y27{bottom:448.226667pt;}
.y6e{bottom:453.666667pt;}
.y55{bottom:455.266667pt;}
.y6d{bottom:471.266667pt;}
.y26{bottom:473.986667pt;}
.y54{bottom:481.026667pt;}
.y6c{bottom:489.026667pt;}
.y25{bottom:491.586667pt;}
.y53{bottom:498.626667pt;}
.y6b{bottom:506.626667pt;}
.y24{bottom:509.186667pt;}
.y52{bottom:516.226667pt;}
.y6a{bottom:524.226667pt;}
.y23{bottom:526.786667pt;}
.y51{bottom:541.826667pt;}
.y22{bottom:544.386667pt;}
.y50{bottom:559.426667pt;}
.y21{bottom:562.146667pt;}
.y4f{bottom:577.213333pt;}
.y20{bottom:579.773333pt;}
.y4e{bottom:594.813333pt;}
.y1f{bottom:597.373333pt;}
.y4d{bottom:612.413333pt;}
.y1e{bottom:614.973333pt;}
.y4c{bottom:630.013333pt;}
.y1d{bottom:632.573333pt;}
.y4b{bottom:647.613333pt;}
.y1c{bottom:650.333333pt;}
.y4a{bottom:665.373333pt;}
.y1b{bottom:667.933333pt;}
.y49{bottom:682.973333pt;}
.y1a{bottom:685.533333pt;}
.y48{bottom:700.573333pt;}
.y19{bottom:703.133333pt;}
.y47{bottom:718.173333pt;}
.y18{bottom:720.733333pt;}
.y46{bottom:735.773333pt;}
.y17{bottom:738.493333pt;}
.y45{bottom:753.533333pt;}
.y16{bottom:756.093333pt;}
.y44{bottom:771.133333pt;}
.y15{bottom:778.333333pt;}
.y43{bottom:788.733333pt;}
.y14{bottom:795.933333pt;}
.y42{bottom:806.373333pt;}
.y13{bottom:809.413333pt;}
.y41{bottom:823.973333pt;}
.y12{bottom:828.933333pt;}
.y40{bottom:841.733333pt;}
.y11{bottom:847.813333pt;}
.y3f{bottom:859.333333pt;}
.y10{bottom:868.613333pt;}
.y3e{bottom:876.933333pt;}
.y3d{bottom:894.533333pt;}
.yf{bottom:896.773333pt;}
.y3c{bottom:912.133333pt;}
.y9{bottom:928.933333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.hb{height:19.040000pt;}
.hf{height:24.131250pt;}
.h7{height:29.760000pt;}
.he{height:37.090625pt;}
.h10{height:37.479688pt;}
.h13{height:38.672812pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h12{height:43.108125pt;}
.h11{height:43.782500pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h8{height:63.656250pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:122.272000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.xe{left:71.999988pt;}
.x6{left:80.991988pt;}
.xd{left:96.031988pt;}
.x9{left:103.071988pt;}
.x4{left:105.306667pt;}
.xf{left:119.871988pt;}
.x7{left:128.671988pt;}
.xa{left:161.786655pt;}
.xc{left:169.466655pt;}
.xb{left:176.666655pt;}
.x8{left:396.893322pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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