
    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_2d356d87da66908a5b2373c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_075bc083a52ceccd8d609b33.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_f093ecfec239f14b7cfcc00b.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_ca38c61af4df7aac2caec7f1.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_a2cab8896546cfe30008c195.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_7a4a19db26781e05f1e3d9fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.968262;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_5168932bd6bf9c055830b95c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_ab314403296d2d33e0920365.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_63d6c3f9fa743bc84632075c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_6193fc93719873dbca485474.woff2')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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.332000px;}
.ls14{letter-spacing:-0.774000px;}
.ls22{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.024480px;}
.ls6{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.480000px;}
.ls17{letter-spacing:3.060000px;}
.ls4{letter-spacing:4.428720px;}
.ls1e{letter-spacing:5.940000px;}
.ls1b{letter-spacing:6.660000px;}
.ls1a{letter-spacing:7.380000px;}
.ls18{letter-spacing:8.820000px;}
.ls19{letter-spacing:10.260000px;}
.ls1d{letter-spacing:13.860000px;}
.lsf{letter-spacing:16.020000px;}
.ls20{letter-spacing:16.506720px;}
.ls3{letter-spacing:18.233280px;}
.lse{letter-spacing:26.820000px;}
.ls1c{letter-spacing:39.060000px;}
.ls1f{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;}
}
.ws1{word-spacing:-24.300000px;}
.ws2{word-spacing:-23.977440px;}
.wsc{word-spacing:-16.700160px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.518240px;}
.ws8{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.ws15{word-spacing:-14.274000px;}
.ws12{word-spacing:-14.166000px;}
.ws13{word-spacing:-13.608000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._10{margin-left:-4.039680px;}
._d{margin-left:-2.543040px;}
._0{margin-left:-1.224000px;}
._5{width:1.126320px;}
._1{width:2.184000px;}
._12{width:3.230640px;}
._8{width:4.561920px;}
._4{width:5.670480px;}
._3{width:7.164000px;}
._6{width:8.553600px;}
._7{width:9.754320px;}
._a{width:10.816560px;}
._17{width:11.892240px;}
._9{width:13.782720px;}
._c{width:16.122960px;}
._f{width:17.279760px;}
._e{width:18.465840px;}
._11{width:19.541520px;}
._23{width:21.099600px;}
._21{width:22.777680px;}
._24{width:24.457440px;}
._1e{width:25.680240px;}
._1a{width:26.917680px;}
._1d{width:28.138800px;}
._25{width:29.428320px;}
._22{width:30.526320px;}
._19{width:31.960320px;}
._15{width:33.056400px;}
._14{width:34.302240px;}
._16{width:35.854800px;}
._1f{width:37.650720px;}
._27{width:38.671920px;}
._26{width:40.526400px;}
._2a{width:42.250320px;}
._38{width:43.262640px;}
._20{width:44.282160px;}
._1b{width:46.015200px;}
._2e{width:47.190960px;}
._2c{width:48.474480px;}
._29{width:50.385120px;}
._28{width:51.513120px;}
._31{width:52.836960px;}
._34{width:54.300000px;}
._18{width:56.353680px;}
._30{width:58.742880px;}
._2f{width:62.338800px;}
._1c{width:64.050000px;}
._13{width:67.776960px;}
._32{width:70.457040px;}
._2b{width:74.341440px;}
._33{width:76.373280px;}
._35{width:77.454480px;}
._2d{width:78.813360px;}
._b{width:89.042400px;}
._37{width:111.153600px;}
._36{width:112.537200px;}
._2{width:303.508320px;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.y23{bottom:5.760000px;}
.y14{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y22{bottom:25.560000px;}
.y5{bottom:45.180000px;}
.y21{bottom:45.360000px;}
.y9{bottom:58.860000px;}
.y20{bottom:65.160000px;}
.y4{bottom:76.320000px;}
.y39{bottom:83.160000px;}
.y1f{bottom:85.140000px;}
.y78{bottom:88.740000px;}
.y40{bottom:89.820000px;}
.y38{bottom:102.960000px;}
.y1e{bottom:104.940000px;}
.y3{bottom:107.670000px;}
.y77{bottom:108.540000px;}
.y3f{bottom:109.800000px;}
.y37{bottom:122.760000px;}
.y1d{bottom:124.740000px;}
.y76{bottom:128.340000px;}
.y3e{bottom:129.600000px;}
.y2{bottom:139.530000px;}
.y36{bottom:142.560000px;}
.y1c{bottom:144.540000px;}
.y75{bottom:148.140000px;}
.y3d{bottom:149.400000px;}
.y35{bottom:162.540000px;}
.y1b{bottom:164.370000px;}
.y74{bottom:167.940000px;}
.y3c{bottom:169.200000px;}
.y34{bottom:182.340000px;}
.y1a{bottom:184.350000px;}
.y73{bottom:187.920000px;}
.y3b{bottom:189.000000px;}
.y19{bottom:204.150000px;}
.y33{bottom:206.640000px;}
.y72{bottom:207.720000px;}
.y3a{bottom:208.980000px;}
.y18{bottom:223.950000px;}
.y71{bottom:227.550000px;}
.y32{bottom:228.810000px;}
.y17{bottom:243.750000px;}
.y70{bottom:247.350000px;}
.y31{bottom:248.610000px;}
.y16{bottom:263.550000px;}
.y6f{bottom:267.150000px;}
.y30{bottom:268.410000px;}
.y6e{bottom:287.130000px;}
.y2f{bottom:288.210000px;}
.y6d{bottom:306.930000px;}
.y2e{bottom:308.190000px;}
.y6c{bottom:326.730000px;}
.y2d{bottom:327.990000px;}
.y6b{bottom:346.530000px;}
.y2c{bottom:347.790000px;}
.y6a{bottom:366.330000px;}
.y2b{bottom:367.590000px;}
.y69{bottom:386.310000px;}
.y2a{bottom:387.390000px;}
.y68{bottom:406.110000px;}
.y29{bottom:407.370000px;}
.y67{bottom:425.910000px;}
.y28{bottom:427.170000px;}
.y66{bottom:445.755000px;}
.y27{bottom:447.015000px;}
.y65{bottom:465.555000px;}
.y26{bottom:466.815000px;}
.y64{bottom:485.535000px;}
.y25{bottom:486.615000px;}
.y63{bottom:505.335000px;}
.y24{bottom:506.595000px;}
.y15{bottom:521.355000px;}
.y62{bottom:525.135000px;}
.y61{bottom:544.935000px;}
.y60{bottom:564.735000px;}
.y5f{bottom:584.535000px;}
.y5e{bottom:604.515000px;}
.y5d{bottom:624.315000px;}
.y5c{bottom:644.115000px;}
.y5b{bottom:663.915000px;}
.y5a{bottom:683.745000px;}
.y59{bottom:703.725000px;}
.y58{bottom:723.525000px;}
.y57{bottom:743.325000px;}
.y56{bottom:763.125000px;}
.y55{bottom:782.925000px;}
.y13{bottom:799.845000px;}
.y54{bottom:802.905000px;}
.y53{bottom:822.705000px;}
.y12{bottom:832.425000px;}
.y52{bottom:842.505000px;}
.y11{bottom:857.445000px;}
.y51{bottom:862.305000px;}
.y10{bottom:877.245000px;}
.y50{bottom:882.105000px;}
.yf{bottom:897.225000px;}
.y4f{bottom:902.085000px;}
.ye{bottom:917.070000px;}
.y4e{bottom:921.930000px;}
.yd{bottom:932.190000px;}
.y4d{bottom:941.730000px;}
.yc{bottom:953.430000px;}
.y4c{bottom:961.530000px;}
.yb{bottom:977.010000px;}
.y4b{bottom:981.330000px;}
.y4a{bottom:1001.310000px;}
.ya{bottom:1008.690000px;}
.y49{bottom:1021.110000px;}
.y8{bottom:1034.610000px;}
.y48{bottom:1040.910000px;}
.y1{bottom:1050.630000px;}
.y47{bottom:1060.710000px;}
.y46{bottom:1080.510000px;}
.y45{bottom:1100.490000px;}
.y44{bottom:1120.290000px;}
.y43{bottom:1140.090000px;}
.y42{bottom:1170.000000px;}
.y41{bottom:1192.860000px;}
.hc{height:26.100000px;}
.hb{height:32.425313px;}
.hf{height:42.164648px;}
.h10{height:43.156758px;}
.h7{height:47.933437px;}
.h4{height:48.774375px;}
.h9{height:49.838906px;}
.h12{height:50.510039px;}
.h13{height:51.706406px;}
.h3{height:53.015625px;}
.ha{height:53.224453px;}
.hd{height:53.305312px;}
.h6{height:55.243125px;}
.h11{height:55.987031px;}
.h5{height:62.028281px;}
.h8{height:67.565039px;}
.h2{height:158.430000px;}
.he{height:277.590000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:146.736000px;}
.w7{width:163.470000px;}
.w6{width:616.650000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x6{left:9.720000px;}
.x1{left:54.360000px;}
.x8{left:55.619987px;}
.x5{left:56.700000px;}
.xf{left:81.035987px;}
.x9{left:108.035987px;}
.xa{left:109.655987px;}
.x4{left:138.630000px;}
.xb{left:473.684987px;}
.xd{left:475.304987px;}
.x10{left:500.684987px;}
.xe{left:527.684987px;}
.xc{left:529.304987px;}
.x7{left:673.350000px;}
.x3{left:692.250000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.184000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls22{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.021760pt;}
.ls6{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls17{letter-spacing:2.720000pt;}
.ls4{letter-spacing:3.936640pt;}
.ls1e{letter-spacing:5.280000pt;}
.ls1b{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls18{letter-spacing:7.840000pt;}
.ls19{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:12.320000pt;}
.lsf{letter-spacing:14.240000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls3{letter-spacing:16.207360pt;}
.lse{letter-spacing:23.840000pt;}
.ls1c{letter-spacing:34.720000pt;}
.ls1f{letter-spacing:40.912640pt;}
.ws1{word-spacing:-21.600000pt;}
.ws2{word-spacing:-21.313280pt;}
.wsc{word-spacing:-14.844587pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.682880pt;}
.ws8{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.ws15{word-spacing:-12.688000pt;}
.ws12{word-spacing:-12.592000pt;}
.ws13{word-spacing:-12.096000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._10{margin-left:-3.590827pt;}
._d{margin-left:-2.260480pt;}
._0{margin-left:-1.088000pt;}
._5{width:1.001173pt;}
._1{width:1.941333pt;}
._12{width:2.871680pt;}
._8{width:4.055040pt;}
._4{width:5.040427pt;}
._3{width:6.368000pt;}
._6{width:7.603200pt;}
._7{width:8.670507pt;}
._a{width:9.614720pt;}
._17{width:10.570880pt;}
._9{width:12.251307pt;}
._c{width:14.331520pt;}
._f{width:15.359787pt;}
._e{width:16.414080pt;}
._11{width:17.370240pt;}
._23{width:18.755200pt;}
._21{width:20.246827pt;}
._24{width:21.739947pt;}
._1e{width:22.826880pt;}
._1a{width:23.926827pt;}
._1d{width:25.012267pt;}
._25{width:26.158507pt;}
._22{width:27.134507pt;}
._19{width:28.409173pt;}
._15{width:29.383467pt;}
._14{width:30.490880pt;}
._16{width:31.870933pt;}
._1f{width:33.467307pt;}
._27{width:34.375040pt;}
._26{width:36.023467pt;}
._2a{width:37.555840pt;}
._38{width:38.455680pt;}
._20{width:39.361920pt;}
._1b{width:40.902400pt;}
._2e{width:41.947520pt;}
._2c{width:43.088427pt;}
._29{width:44.786773pt;}
._28{width:45.789440pt;}
._31{width:46.966187pt;}
._34{width:48.266667pt;}
._18{width:50.092160pt;}
._30{width:52.215893pt;}
._2f{width:55.412267pt;}
._1c{width:56.933333pt;}
._13{width:60.246187pt;}
._32{width:62.628480pt;}
._2b{width:66.081280pt;}
._33{width:67.887360pt;}
._35{width:68.848427pt;}
._2d{width:70.056320pt;}
._b{width:79.148800pt;}
._37{width:98.803200pt;}
._36{width:100.033067pt;}
._2{width:269.785173pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.y23{bottom:5.120000pt;}
.y14{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y22{bottom:22.720000pt;}
.y5{bottom:40.160000pt;}
.y21{bottom:40.320000pt;}
.y9{bottom:52.320000pt;}
.y20{bottom:57.920000pt;}
.y4{bottom:67.840000pt;}
.y39{bottom:73.920000pt;}
.y1f{bottom:75.680000pt;}
.y78{bottom:78.880000pt;}
.y40{bottom:79.840000pt;}
.y38{bottom:91.520000pt;}
.y1e{bottom:93.280000pt;}
.y3{bottom:95.706667pt;}
.y77{bottom:96.480000pt;}
.y3f{bottom:97.600000pt;}
.y37{bottom:109.120000pt;}
.y1d{bottom:110.880000pt;}
.y76{bottom:114.080000pt;}
.y3e{bottom:115.200000pt;}
.y2{bottom:124.026667pt;}
.y36{bottom:126.720000pt;}
.y1c{bottom:128.480000pt;}
.y75{bottom:131.680000pt;}
.y3d{bottom:132.800000pt;}
.y35{bottom:144.480000pt;}
.y1b{bottom:146.106667pt;}
.y74{bottom:149.280000pt;}
.y3c{bottom:150.400000pt;}
.y34{bottom:162.080000pt;}
.y1a{bottom:163.866667pt;}
.y73{bottom:167.040000pt;}
.y3b{bottom:168.000000pt;}
.y19{bottom:181.466667pt;}
.y33{bottom:183.680000pt;}
.y72{bottom:184.640000pt;}
.y3a{bottom:185.760000pt;}
.y18{bottom:199.066667pt;}
.y71{bottom:202.266667pt;}
.y32{bottom:203.386667pt;}
.y17{bottom:216.666667pt;}
.y70{bottom:219.866667pt;}
.y31{bottom:220.986667pt;}
.y16{bottom:234.266667pt;}
.y6f{bottom:237.466667pt;}
.y30{bottom:238.586667pt;}
.y6e{bottom:255.226667pt;}
.y2f{bottom:256.186667pt;}
.y6d{bottom:272.826667pt;}
.y2e{bottom:273.946667pt;}
.y6c{bottom:290.426667pt;}
.y2d{bottom:291.546667pt;}
.y6b{bottom:308.026667pt;}
.y2c{bottom:309.146667pt;}
.y6a{bottom:325.626667pt;}
.y2b{bottom:326.746667pt;}
.y69{bottom:343.386667pt;}
.y2a{bottom:344.346667pt;}
.y68{bottom:360.986667pt;}
.y29{bottom:362.106667pt;}
.y67{bottom:378.586667pt;}
.y28{bottom:379.706667pt;}
.y66{bottom:396.226667pt;}
.y27{bottom:397.346667pt;}
.y65{bottom:413.826667pt;}
.y26{bottom:414.946667pt;}
.y64{bottom:431.586667pt;}
.y25{bottom:432.546667pt;}
.y63{bottom:449.186667pt;}
.y24{bottom:450.306667pt;}
.y15{bottom:463.426667pt;}
.y62{bottom:466.786667pt;}
.y61{bottom:484.386667pt;}
.y60{bottom:501.986667pt;}
.y5f{bottom:519.586667pt;}
.y5e{bottom:537.346667pt;}
.y5d{bottom:554.946667pt;}
.y5c{bottom:572.546667pt;}
.y5b{bottom:590.146667pt;}
.y5a{bottom:607.773333pt;}
.y59{bottom:625.533333pt;}
.y58{bottom:643.133333pt;}
.y57{bottom:660.733333pt;}
.y56{bottom:678.333333pt;}
.y55{bottom:695.933333pt;}
.y13{bottom:710.973333pt;}
.y54{bottom:713.693333pt;}
.y53{bottom:731.293333pt;}
.y12{bottom:739.933333pt;}
.y52{bottom:748.893333pt;}
.y11{bottom:762.173333pt;}
.y51{bottom:766.493333pt;}
.y10{bottom:779.773333pt;}
.y50{bottom:784.093333pt;}
.yf{bottom:797.533333pt;}
.y4f{bottom:801.853333pt;}
.ye{bottom:815.173333pt;}
.y4e{bottom:819.493333pt;}
.yd{bottom:828.613333pt;}
.y4d{bottom:837.093333pt;}
.yc{bottom:847.493333pt;}
.y4c{bottom:854.693333pt;}
.yb{bottom:868.453333pt;}
.y4b{bottom:872.293333pt;}
.y4a{bottom:890.053333pt;}
.ya{bottom:896.613333pt;}
.y49{bottom:907.653333pt;}
.y8{bottom:919.653333pt;}
.y48{bottom:925.253333pt;}
.y1{bottom:933.893333pt;}
.y47{bottom:942.853333pt;}
.y46{bottom:960.453333pt;}
.y45{bottom:978.213333pt;}
.y44{bottom:995.813333pt;}
.y43{bottom:1013.413333pt;}
.y42{bottom:1040.000000pt;}
.y41{bottom:1060.320000pt;}
.hc{height:23.200000pt;}
.hb{height:28.822500pt;}
.hf{height:37.479688pt;}
.h10{height:38.361562pt;}
.h7{height:42.607500pt;}
.h4{height:43.355000pt;}
.h9{height:44.301250pt;}
.h12{height:44.897813pt;}
.h13{height:45.961250pt;}
.h3{height:47.125000pt;}
.ha{height:47.310625pt;}
.hd{height:47.382500pt;}
.h6{height:49.105000pt;}
.h11{height:49.766250pt;}
.h5{height:55.136250pt;}
.h8{height:60.057813pt;}
.h2{height:140.826667pt;}
.he{height:246.746667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:130.432000pt;}
.w7{width:145.306667pt;}
.w6{width:548.133333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x6{left:8.640000pt;}
.x1{left:48.320000pt;}
.x8{left:49.439988pt;}
.x5{left:50.400000pt;}
.xf{left:72.031988pt;}
.x9{left:96.031988pt;}
.xa{left:97.471988pt;}
.x4{left:123.226667pt;}
.xb{left:421.053321pt;}
.xd{left:422.493321pt;}
.x10{left:445.053321pt;}
.xe{left:469.053321pt;}
.xc{left:470.493322pt;}
.x7{left:598.533333pt;}
.x3{left:615.333333pt;}
}




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