
    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_789786974bd413df4c106680.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_af621e41b78e81f92d83db5f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5ea442d445d961d321007cdf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0c1901a6bbe0ad9635c74bdc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8170cd54441b0c9a45c064cb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f0ca3a9b167a54f085d619bb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;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: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;}
.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;}
.lsc{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.496200px;}
.ls4{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.269400px;}
.lsb{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:16.560000px;}
.lsa{letter-spacing:199.416000px;}
.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;}
}
.ws9{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.563800px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._14{margin-left:-12.960000px;}
._1{margin-left:-6.755760px;}
._5{margin-left:-5.153760px;}
._19{margin-left:-3.996720px;}
._4{margin-left:-2.980800px;}
._0{margin-left:-1.192320px;}
._2{width:1.015920px;}
._7{width:2.039520px;}
._3{width:3.050400px;}
._d{width:4.655280px;}
._11{width:6.132240px;}
._e{width:8.046000px;}
._8{width:9.126000px;}
._9{width:10.192080px;}
._16{width:11.260800px;}
._6{width:12.360000px;}
._15{width:13.600800px;}
._b{width:14.860080px;}
._17{width:18.083520px;}
._1a{width:19.474560px;}
._c{width:20.520000px;}
._1b{width:22.256640px;}
._13{width:24.300000px;}
._12{width:25.596000px;}
._18{width:27.092160px;}
._1f{width:29.211840px;}
._a{width:30.564000px;}
._10{width:31.914000px;}
._f{width:33.696000px;}
._1d{width:37.145280px;}
._1c{width:38.816640px;}
._1e{width:39.903120px;}
._21{width:971.144640px;}
._20{width:973.728000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:2.520000px;}
.y45{bottom:6.120000px;}
.y2{bottom:6.510000px;}
.y37{bottom:9.180000px;}
.y9{bottom:11.730000px;}
.y46{bottom:16.380000px;}
.y36{bottom:24.660000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y35{bottom:40.320000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y34{bottom:55.800000px;}
.yb{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y33{bottom:71.280000px;}
.y32{bottom:86.760000px;}
.y31{bottom:102.420000px;}
.y53{bottom:113.616000px;}
.y30{bottom:117.900000px;}
.y80{bottom:123.696000px;}
.y85{bottom:128.196000px;}
.y2f{bottom:133.380000px;}
.y52{bottom:135.396000px;}
.y7f{bottom:138.276000px;}
.y84{bottom:140.796000px;}
.y7e{bottom:142.776000px;}
.y2e{bottom:148.860000px;}
.y86{bottom:154.110000px;}
.y7d{bottom:155.730000px;}
.y51{bottom:157.170000px;}
.y2d{bottom:164.520000px;}
.y83{bottom:175.890000px;}
.y50{bottom:178.950000px;}
.y2c{bottom:180.000000px;}
.y2b{bottom:195.480000px;}
.y82{bottom:197.850000px;}
.y4f{bottom:200.910000px;}
.y2a{bottom:210.990000px;}
.y42{bottom:214.050000px;}
.y7c{bottom:219.630000px;}
.y4e{bottom:222.690000px;}
.y29{bottom:226.470000px;}
.y41{bottom:227.910000px;}
.y7b{bottom:241.410000px;}
.y40{bottom:241.590000px;}
.y28{bottom:242.130000px;}
.y4d{bottom:244.470000px;}
.y3f{bottom:255.450000px;}
.y27{bottom:257.610000px;}
.y7a{bottom:263.190000px;}
.y4c{bottom:266.250000px;}
.y3e{bottom:269.310000px;}
.y26{bottom:273.090000px;}
.y3d{bottom:282.990000px;}
.y79{bottom:284.970000px;}
.y4b{bottom:288.030000px;}
.y25{bottom:288.570000px;}
.y3c{bottom:296.850000px;}
.y24{bottom:304.230000px;}
.y78{bottom:306.930000px;}
.y4a{bottom:309.990000px;}
.y3b{bottom:310.710000px;}
.y23{bottom:319.710000px;}
.y3a{bottom:324.390000px;}
.y49{bottom:328.710000px;}
.y22{bottom:335.190000px;}
.y39{bottom:338.250000px;}
.y48{bottom:345.855000px;}
.y77{bottom:350.535000px;}
.y21{bottom:350.670000px;}
.y38{bottom:352.110000px;}
.y44{bottom:359.895000px;}
.y20{bottom:366.330000px;}
.y76{bottom:372.315000px;}
.y81{bottom:378.255000px;}
.y1f{bottom:381.810000px;}
.y43{bottom:391.215000px;}
.y75{bottom:394.275000px;}
.y1e{bottom:397.290000px;}
.y17{bottom:406.515000px;}
.y1d{bottom:412.770000px;}
.y74{bottom:416.055000px;}
.y1c{bottom:428.430000px;}
.y73{bottom:437.835000px;}
.y1b{bottom:443.910000px;}
.y1a{bottom:459.390000px;}
.y72{bottom:459.615000px;}
.y19{bottom:474.915000px;}
.y71{bottom:481.395000px;}
.y18{bottom:490.575000px;}
.y70{bottom:503.355000px;}
.y6f{bottom:525.135000px;}
.y6e{bottom:546.915000px;}
.y6d{bottom:568.695000px;}
.y6c{bottom:590.655000px;}
.y6b{bottom:612.465000px;}
.y6a{bottom:634.245000px;}
.y69{bottom:656.025000px;}
.y68{bottom:677.805000px;}
.y67{bottom:699.765000px;}
.y66{bottom:721.545000px;}
.y65{bottom:743.325000px;}
.y64{bottom:765.105000px;}
.y63{bottom:787.065000px;}
.y62{bottom:808.845000px;}
.y61{bottom:830.625000px;}
.y60{bottom:852.405000px;}
.y5f{bottom:874.230000px;}
.y5e{bottom:896.190000px;}
.y16{bottom:912.930000px;}
.y5d{bottom:917.970000px;}
.y15{bottom:930.030000px;}
.y5c{bottom:939.750000px;}
.y14{bottom:952.530000px;}
.y5a{bottom:961.530000px;}
.y13{bottom:964.950000px;}
.y5b{bottom:967.470000px;}
.y12{bottom:982.770000px;}
.y59{bottom:983.310000px;}
.y11{bottom:997.890000px;}
.y58{bottom:1005.270000px;}
.y10{bottom:1016.790000px;}
.y57{bottom:1027.050000px;}
.yf{bottom:1034.610000px;}
.y56{bottom:1048.830000px;}
.ye{bottom:1050.090000px;}
.y55{bottom:1070.610000px;}
.yd{bottom:1072.410000px;}
.y54{bottom:1092.570000px;}
.yc{bottom:1094.010000px;}
.ya{bottom:1111.650000px;}
.y1{bottom:1131.450000px;}
.h17{height:21.114844px;}
.he{height:27.147656px;}
.h14{height:27.720000px;}
.h16{height:29.158594px;}
.h15{height:33.683203px;}
.ha{height:34.036523px;}
.h12{height:37.705078px;}
.h11{height:38.100586px;}
.h8{height:39.147891px;}
.hc{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h13{height:44.507812px;}
.h7{height:46.251562px;}
.h4{height:46.736719px;}
.h18{height:48.224531px;}
.h6{height:49.255313px;}
.hd{height:53.224453px;}
.hb{height:54.596250px;}
.h9{height:54.864844px;}
.hf{height:65.884219px;}
.h2{height:77.436000px;}
.h10{height:503.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w9{width:224.130000px;}
.w7{width:228.090000px;}
.w3{width:427.935000px;}
.w8{width:459.075000px;}
.w6{width:467.175000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x6{left:20.160000px;}
.x15{left:29.520000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:104.445000px;}
.xa{left:108.035987px;}
.x1b{left:111.815987px;}
.xf{left:118.475987px;}
.x1f{left:129.275987px;}
.x8{left:132.345000px;}
.x20{left:140.075987px;}
.x17{left:161.129987px;}
.xc{left:170.849987px;}
.x3{left:171.930000px;}
.x1e{left:173.369987px;}
.xd{left:283.574987px;}
.x12{left:304.994987px;}
.x1a{left:324.074987px;}
.x13{left:347.114987px;}
.x11{left:371.054987px;}
.x10{left:387.254987px;}
.xe{left:446.474987px;}
.xb{left:503.204987px;}
.x18{left:520.844973px;}
.x19{left:526.064987px;}
.x1c{left:544.964973px;}
.x1d{left:550.184987px;}
.x16{left:567.105000px;}
.x14{left:575.205000px;}
.x5{left:599.865000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls4{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.239467pt;}
.lsb{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:14.720000pt;}
.lsa{letter-spacing:177.258667pt;}
.ws9{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.278933pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._14{margin-left:-11.520000pt;}
._1{margin-left:-6.005120pt;}
._5{margin-left:-4.581120pt;}
._19{margin-left:-3.552640pt;}
._4{margin-left:-2.649600pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.903040pt;}
._7{width:1.812907pt;}
._3{width:2.711467pt;}
._d{width:4.138027pt;}
._11{width:5.450880pt;}
._e{width:7.152000pt;}
._8{width:8.112000pt;}
._9{width:9.059627pt;}
._16{width:10.009600pt;}
._6{width:10.986667pt;}
._15{width:12.089600pt;}
._b{width:13.208960pt;}
._17{width:16.074240pt;}
._1a{width:17.310720pt;}
._c{width:18.240000pt;}
._1b{width:19.783680pt;}
._13{width:21.600000pt;}
._12{width:22.752000pt;}
._18{width:24.081920pt;}
._1f{width:25.966080pt;}
._a{width:27.168000pt;}
._10{width:28.368000pt;}
._f{width:29.952000pt;}
._1d{width:33.018027pt;}
._1c{width:34.503680pt;}
._1e{width:35.469440pt;}
._21{width:863.239680pt;}
._20{width:865.536000pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.240000pt;}
.y45{bottom:5.440000pt;}
.y2{bottom:5.786667pt;}
.y37{bottom:8.160000pt;}
.y9{bottom:10.426667pt;}
.y46{bottom:14.560000pt;}
.y36{bottom:21.920000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y35{bottom:35.840000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y34{bottom:49.600000pt;}
.yb{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y33{bottom:63.360000pt;}
.y32{bottom:77.120000pt;}
.y31{bottom:91.040000pt;}
.y53{bottom:100.992000pt;}
.y30{bottom:104.800000pt;}
.y80{bottom:109.952000pt;}
.y85{bottom:113.952000pt;}
.y2f{bottom:118.560000pt;}
.y52{bottom:120.352000pt;}
.y7f{bottom:122.912000pt;}
.y84{bottom:125.152000pt;}
.y7e{bottom:126.912000pt;}
.y2e{bottom:132.320000pt;}
.y86{bottom:136.986667pt;}
.y7d{bottom:138.426667pt;}
.y51{bottom:139.706667pt;}
.y2d{bottom:146.240000pt;}
.y83{bottom:156.346667pt;}
.y50{bottom:159.066667pt;}
.y2c{bottom:160.000000pt;}
.y2b{bottom:173.760000pt;}
.y82{bottom:175.866667pt;}
.y4f{bottom:178.586667pt;}
.y2a{bottom:187.546667pt;}
.y42{bottom:190.266667pt;}
.y7c{bottom:195.226667pt;}
.y4e{bottom:197.946667pt;}
.y29{bottom:201.306667pt;}
.y41{bottom:202.586667pt;}
.y7b{bottom:214.586667pt;}
.y40{bottom:214.746667pt;}
.y28{bottom:215.226667pt;}
.y4d{bottom:217.306667pt;}
.y3f{bottom:227.066667pt;}
.y27{bottom:228.986667pt;}
.y7a{bottom:233.946667pt;}
.y4c{bottom:236.666667pt;}
.y3e{bottom:239.386667pt;}
.y26{bottom:242.746667pt;}
.y3d{bottom:251.546667pt;}
.y79{bottom:253.306667pt;}
.y4b{bottom:256.026667pt;}
.y25{bottom:256.506667pt;}
.y3c{bottom:263.866667pt;}
.y24{bottom:270.426667pt;}
.y78{bottom:272.826667pt;}
.y4a{bottom:275.546667pt;}
.y3b{bottom:276.186667pt;}
.y23{bottom:284.186667pt;}
.y3a{bottom:288.346667pt;}
.y49{bottom:292.186667pt;}
.y22{bottom:297.946667pt;}
.y39{bottom:300.666667pt;}
.y48{bottom:307.426667pt;}
.y77{bottom:311.586667pt;}
.y21{bottom:311.706667pt;}
.y38{bottom:312.986667pt;}
.y44{bottom:319.906667pt;}
.y20{bottom:325.626667pt;}
.y76{bottom:330.946667pt;}
.y81{bottom:336.226667pt;}
.y1f{bottom:339.386667pt;}
.y43{bottom:347.746667pt;}
.y75{bottom:350.466667pt;}
.y1e{bottom:353.146667pt;}
.y17{bottom:361.346667pt;}
.y1d{bottom:366.906667pt;}
.y74{bottom:369.826667pt;}
.y1c{bottom:380.826667pt;}
.y73{bottom:389.186667pt;}
.y1b{bottom:394.586667pt;}
.y1a{bottom:408.346667pt;}
.y72{bottom:408.546667pt;}
.y19{bottom:422.146667pt;}
.y71{bottom:427.906667pt;}
.y18{bottom:436.066667pt;}
.y70{bottom:447.426667pt;}
.y6f{bottom:466.786667pt;}
.y6e{bottom:486.146667pt;}
.y6d{bottom:505.506667pt;}
.y6c{bottom:525.026667pt;}
.y6b{bottom:544.413333pt;}
.y6a{bottom:563.773333pt;}
.y69{bottom:583.133333pt;}
.y68{bottom:602.493333pt;}
.y67{bottom:622.013333pt;}
.y66{bottom:641.373333pt;}
.y65{bottom:660.733333pt;}
.y64{bottom:680.093333pt;}
.y63{bottom:699.613333pt;}
.y62{bottom:718.973333pt;}
.y61{bottom:738.333333pt;}
.y60{bottom:757.693333pt;}
.y5f{bottom:777.093333pt;}
.y5e{bottom:796.613333pt;}
.y16{bottom:811.493333pt;}
.y5d{bottom:815.973333pt;}
.y15{bottom:826.693333pt;}
.y5c{bottom:835.333333pt;}
.y14{bottom:846.693333pt;}
.y5a{bottom:854.693333pt;}
.y13{bottom:857.733333pt;}
.y5b{bottom:859.973333pt;}
.y12{bottom:873.573333pt;}
.y59{bottom:874.053333pt;}
.y11{bottom:887.013333pt;}
.y58{bottom:893.573333pt;}
.y10{bottom:903.813333pt;}
.y57{bottom:912.933333pt;}
.yf{bottom:919.653333pt;}
.y56{bottom:932.293333pt;}
.ye{bottom:933.413333pt;}
.y55{bottom:951.653333pt;}
.yd{bottom:953.253333pt;}
.y54{bottom:971.173333pt;}
.yc{bottom:972.453333pt;}
.ya{bottom:988.133333pt;}
.y1{bottom:1005.733333pt;}
.h17{height:18.768750pt;}
.he{height:24.131250pt;}
.h14{height:24.640000pt;}
.h16{height:25.918750pt;}
.h15{height:29.940625pt;}
.ha{height:30.254687pt;}
.h12{height:33.515625pt;}
.h11{height:33.867188pt;}
.h8{height:34.798125pt;}
.hc{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h13{height:39.562500pt;}
.h7{height:41.112500pt;}
.h4{height:41.543750pt;}
.h18{height:42.866250pt;}
.h6{height:43.782500pt;}
.hd{height:47.310625pt;}
.hb{height:48.530000pt;}
.h9{height:48.768750pt;}
.hf{height:58.563750pt;}
.h2{height:68.832000pt;}
.h10{height:447.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w9{width:199.226667pt;}
.w7{width:202.746667pt;}
.w3{width:380.386667pt;}
.w8{width:408.066667pt;}
.w6{width:415.266667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x6{left:17.920000pt;}
.x15{left:26.240000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:92.840000pt;}
.xa{left:96.031988pt;}
.x1b{left:99.391988pt;}
.xf{left:105.311988pt;}
.x1f{left:114.911988pt;}
.x8{left:117.640000pt;}
.x20{left:124.511988pt;}
.x17{left:143.226655pt;}
.xc{left:151.866655pt;}
.x3{left:152.826667pt;}
.x1e{left:154.106655pt;}
.xd{left:252.066655pt;}
.x12{left:271.106655pt;}
.x1a{left:288.066655pt;}
.x13{left:308.546655pt;}
.x11{left:329.826655pt;}
.x10{left:344.226655pt;}
.xe{left:396.866655pt;}
.xb{left:447.293322pt;}
.x18{left:462.973310pt;}
.x19{left:467.613322pt;}
.x1c{left:484.413310pt;}
.x1d{left:489.053322pt;}
.x16{left:504.093333pt;}
.x14{left:511.293333pt;}
.x5{left:533.213333pt;}
}




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