
    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_078bd7da80ff2620854a8391.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_21eb01d88cf26ba89e3b2753.woff')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_f374edcf1f260f7bf88431d6.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_caff0ce82fe712de79bb5a75.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_62f20ef5b06e356b4c01d5ce.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a61b2eadb8f4b79787525c61.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls7{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.413400px;}
.ls6{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.139800px;}
.lsd{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:36.926640px;}
.ls2{letter-spacing:41.148000px;}
.lsa{letter-spacing:43.766640px;}
.lsc{letter-spacing:46.286640px;}
.ls9{letter-spacing:63.566640px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.ws8{word-spacing:-15.210000px;}
.ws7{word-spacing:-15.183600px;}
.ws0{word-spacing:-15.030000px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws3{word-spacing:-10.710000px;}
.ws2{word-spacing:-10.530000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._4{width:2.254200px;}
._a{width:4.058400px;}
._c{width:5.169720px;}
._10{width:6.432840px;}
._14{width:7.462080px;}
._f{width:8.629920px;}
._e{width:9.843480px;}
._1b{width:11.723400px;}
._1e{width:12.789720px;}
._11{width:13.827600px;}
._30{width:15.002280px;}
._1d{width:16.352640px;}
._8{width:17.615160px;}
._9{width:18.823800px;}
._d{width:22.064040px;}
._27{width:23.146200px;}
._12{width:24.348600px;}
._19{width:26.352000px;}
._18{width:27.378000px;}
._b{width:28.737360px;}
._25{width:29.759400px;}
._26{width:30.961800px;}
._13{width:33.366600px;}
._1a{width:34.560000px;}
._29{width:38.718000px;}
._2b{width:39.799440px;}
._2a{width:40.941000px;}
._2f{width:45.722160px;}
._1f{width:46.893600px;}
._20{width:47.945640px;}
._2c{width:53.326440px;}
._1c{width:54.949680px;}
._2d{width:56.392560px;}
._6{width:59.872440px;}
._5{width:61.290000px;}
._17{width:62.586000px;}
._15{width:65.016000px;}
._16{width:79.704000px;}
._28{width:104.729040px;}
._2e{width:121.833480px;}
._23{width:128.535960px;}
._2{width:130.455480px;}
._24{width:204.030000px;}
._21{width:327.394680px;}
._1{width:341.548680px;}
._7{width:989.850000px;}
._22{width:2237.370000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ydb{bottom:0.090000px;}
.yd8{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y42{bottom:2.880000px;}
.y15{bottom:3.240000px;}
.y39{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.ye3{bottom:11.700000px;}
.y9{bottom:14.040000px;}
.yd7{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.y41{bottom:18.450000px;}
.y37{bottom:19.350000px;}
.y2e{bottom:20.520000px;}
.ye2{bottom:25.590000px;}
.y44{bottom:27.360000px;}
.yd6{bottom:30.240000px;}
.y40{bottom:33.930000px;}
.y7{bottom:35.550000px;}
.y36{bottom:35.730000px;}
.y2d{bottom:37.710000px;}
.ye1{bottom:39.360000px;}
.yd5{bottom:44.010000px;}
.y3f{bottom:49.500000px;}
.y35{bottom:51.300000px;}
.ye0{bottom:53.130000px;}
.y2c{bottom:54.990000px;}
.y3{bottom:58.140000px;}
.y3e{bottom:64.980000px;}
.y34{bottom:66.780000px;}
.ydf{bottom:66.990000px;}
.y2b{bottom:72.270000px;}
.y3d{bottom:80.550000px;}
.yde{bottom:80.760000px;}
.y33{bottom:82.380000px;}
.y2a{bottom:89.460000px;}
.ydd{bottom:94.530000px;}
.y3c{bottom:96.030000px;}
.y32{bottom:97.860000px;}
.y29{bottom:106.740000px;}
.ydc{bottom:108.390000px;}
.y3b{bottom:111.600000px;}
.y31{bottom:113.430000px;}
.ya3{bottom:114.750000px;}
.y84{bottom:116.820000px;}
.y4a{bottom:117.810000px;}
.y28{bottom:124.020000px;}
.y30{bottom:128.910000px;}
.y43{bottom:130.590000px;}
.y49{bottom:133.290000px;}
.ya2{bottom:133.380000px;}
.y83{bottom:134.100000px;}
.yb3{bottom:135.270000px;}
.y27{bottom:141.210000px;}
.y48{bottom:149.130000px;}
.y82{bottom:151.290000px;}
.ya1{bottom:152.010000px;}
.yb2{bottom:152.460000px;}
.y26{bottom:158.490000px;}
.y47{bottom:166.440000px;}
.y81{bottom:168.600000px;}
.yb1{bottom:169.770000px;}
.ya0{bottom:170.580000px;}
.y25{bottom:175.770000px;}
.y46{bottom:183.720000px;}
.y80{bottom:185.880000px;}
.yb0{bottom:187.050000px;}
.y9f{bottom:189.210000px;}
.y24{bottom:192.960000px;}
.y45{bottom:200.640000px;}
.y7f{bottom:203.070000px;}
.yaf{bottom:204.240000px;}
.y9e{bottom:207.840000px;}
.y23{bottom:210.240000px;}
.y16{bottom:213.960000px;}
.y7e{bottom:220.350000px;}
.yae{bottom:221.520000px;}
.y9d{bottom:226.470000px;}
.y22{bottom:227.520000px;}
.y7d{bottom:237.630000px;}
.yad{bottom:238.800000px;}
.y21{bottom:244.710000px;}
.y9c{bottom:245.100000px;}
.y7c{bottom:254.820000px;}
.yac{bottom:255.990000px;}
.y20{bottom:261.990000px;}
.y9b{bottom:263.640000px;}
.y7b{bottom:272.100000px;}
.yab{bottom:273.270000px;}
.y1f{bottom:279.270000px;}
.y9a{bottom:282.270000px;}
.y7a{bottom:288.750000px;}
.yaa{bottom:290.550000px;}
.y1e{bottom:296.460000px;}
.y99{bottom:300.900000px;}
.y79{bottom:302.520000px;}
.ya9{bottom:307.740000px;}
.y1d{bottom:313.740000px;}
.y78{bottom:316.920000px;}
.y98{bottom:319.530000px;}
.ya8{bottom:325.020000px;}
.y1c{bottom:330.930000px;}
.y77{bottom:330.960000px;}
.y97{bottom:338.160000px;}
.ya7{bottom:342.300000px;}
.y1b{bottom:348.210000px;}
.y96{bottom:356.790000px;}
.y3a{bottom:357.960000px;}
.ya6{bottom:359.490000px;}
.y1a{bottom:365.520000px;}
.y95{bottom:375.330000px;}
.ya5{bottom:376.770000px;}
.y19{bottom:382.710000px;}
.y94{bottom:393.960000px;}
.ya4{bottom:394.050000px;}
.y18{bottom:399.990000px;}
.y93{bottom:412.590000px;}
.y17{bottom:417.270000px;}
.y92{bottom:431.220000px;}
.yea{bottom:442.380000px;}
.y91{bottom:449.850000px;}
.ye9{bottom:459.570000px;}
.y90{bottom:468.480000px;}
.ye8{bottom:476.850000px;}
.y38{bottom:482.880000px;}
.y8f{bottom:487.020000px;}
.ye7{bottom:494.130000px;}
.y2f{bottom:503.670000px;}
.y8e{bottom:505.650000px;}
.ye6{bottom:511.320000px;}
.y8d{bottom:524.280000px;}
.ye5{bottom:528.600000px;}
.y8c{bottom:542.910000px;}
.ye4{bottom:545.250000px;}
.yda{bottom:557.130000px;}
.y8b{bottom:561.540000px;}
.y8a{bottom:580.110000px;}
.y89{bottom:609.810000px;}
.y88{bottom:636.720000px;}
.y14{bottom:645.990000px;}
.y64{bottom:655.980000px;}
.y63{bottom:673.260000px;}
.yd9{bottom:677.400000px;}
.y13{bottom:680.550000px;}
.y76{bottom:683.970000px;}
.y62{bottom:690.450000px;}
.yd4{bottom:691.980000px;}
.y75{bottom:701.250000px;}
.y12{bottom:705.030000px;}
.y61{bottom:707.730000px;}
.y74{bottom:718.530000px;}
.y60{bottom:725.010000px;}
.y73{bottom:735.720000px;}
.y11{bottom:740.580000px;}
.y5f{bottom:742.200000px;}
.yd3{bottom:747.870000px;}
.y10{bottom:752.730000px;}
.y72{bottom:753.000000px;}
.y5e{bottom:759.480000px;}
.yd2{bottom:765.060000px;}
.y71{bottom:770.280000px;}
.y5d{bottom:776.760000px;}
.yf{bottom:777.210000px;}
.yc2{bottom:779.460000px;}
.y70{bottom:787.470000px;}
.y5c{bottom:793.950000px;}
.yc1{bottom:796.740000px;}
.y6f{bottom:804.750000px;}
.ye{bottom:808.260000px;}
.y5b{bottom:811.230000px;}
.yd1{bottom:813.390000px;}
.yc0{bottom:814.020000px;}
.y6e{bottom:823.110000px;}
.yd0{bottom:827.160000px;}
.y5a{bottom:828.420000px;}
.ybf{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y6d{bottom:840.300000px;}
.ycf{bottom:841.020000px;}
.y59{bottom:845.700000px;}
.ybe{bottom:848.490000px;}
.yce{bottom:854.790000px;}
.y6c{bottom:858.660000px;}
.y58{bottom:862.980000px;}
.ybd{bottom:865.770000px;}
.ycd{bottom:868.560000px;}
.yc{bottom:870.360000px;}
.y6b{bottom:875.940000px;}
.y57{bottom:880.170000px;}
.ycc{bottom:882.420000px;}
.ybc{bottom:882.960000px;}
.y6a{bottom:893.130000px;}
.ycb{bottom:896.190000px;}
.y56{bottom:897.450000px;}
.ybb{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.yca{bottom:909.960000px;}
.y69{bottom:911.490000px;}
.y55{bottom:914.730000px;}
.yba{bottom:917.430000px;}
.yc9{bottom:923.730000px;}
.y68{bottom:929.760000px;}
.ya{bottom:930.210000px;}
.y54{bottom:931.920000px;}
.yb9{bottom:934.710000px;}
.yc8{bottom:937.590000px;}
.y8{bottom:945.600000px;}
.y67{bottom:947.040000px;}
.y53{bottom:949.200000px;}
.yc7{bottom:951.360000px;}
.yb8{bottom:951.990000px;}
.yc6{bottom:965.130000px;}
.y66{bottom:965.400000px;}
.y52{bottom:966.480000px;}
.yb7{bottom:969.180000px;}
.yc5{bottom:978.990000px;}
.y65{bottom:982.590000px;}
.y51{bottom:983.670000px;}
.yb6{bottom:986.460000px;}
.yc4{bottom:992.790000px;}
.y50{bottom:1000.980000px;}
.yb5{bottom:1003.770000px;}
.yc3{bottom:1006.560000px;}
.y4f{bottom:1018.260000px;}
.yb4{bottom:1020.960000px;}
.y4e{bottom:1035.450000px;}
.y87{bottom:1038.240000px;}
.y4d{bottom:1052.730000px;}
.y86{bottom:1055.520000px;}
.y4c{bottom:1070.010000px;}
.y85{bottom:1072.710000px;}
.y4b{bottom:1086.930000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1e{height:13.770000px;}
.h1c{height:13.860000px;}
.hf{height:17.190000px;}
.h14{height:20.070000px;}
.h3{height:27.630000px;}
.hc{height:29.409961px;}
.h5{height:33.431836px;}
.h1a{height:33.782520px;}
.h20{height:33.876035px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h1b{height:42.536074px;}
.h19{height:43.769004px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h1d{height:55.170000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h1f{height:119.550000px;}
.h15{height:124.200000px;}
.h11{height:141.510000px;}
.h18{height:143.190000px;}
.h7{height:153.930000px;}
.h10{height:431.220000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w8{width:108.930000px;}
.w6{width:233.040000px;}
.w9{width:307.620000px;}
.w7{width:417.270000px;}
.w5{width:575.610000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.570000px;}
.x3{left:8.640000px;}
.x10{left:20.070000px;}
.x14{left:33.930000px;}
.x12{left:40.410000px;}
.x13{left:42.390000px;}
.x6{left:45.540000px;}
.x23{left:51.930000px;}
.x2{left:53.999986px;}
.x20{left:55.529986px;}
.x16{left:59.669986px;}
.x1{left:60.749986px;}
.x15{left:65.429986px;}
.xa{left:68.939986px;}
.x1e{left:81.539986px;}
.x9{left:88.019986px;}
.x24{left:98.820000px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.xd{left:123.389986px;}
.xe{left:155.729986px;}
.x25{left:161.580000px;}
.xb{left:167.969986px;}
.x26{left:252.569986px;}
.x8{left:459.029986px;}
.xc{left:464.159986px;}
.x1d{left:471.089986px;}
.x17{left:478.229986px;}
.x18{left:479.759986px;}
.x22{left:501.089986px;}
.x1a{left:505.319986px;}
.x19{left:506.759986px;}
.x21{left:526.559986px;}
.x1b{left:532.319986px;}
.x1f{left:620.339986px;}
.xf{left:629.430000px;}
.x7{left:812.430000px;}
.x1c{left:814.319986px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.367467pt;}
.ls6{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.124267pt;}
.lsd{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:32.823680pt;}
.ls2{letter-spacing:36.576000pt;}
.lsa{letter-spacing:38.903680pt;}
.lsc{letter-spacing:41.143680pt;}
.ls9{letter-spacing:56.503680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws8{word-spacing:-13.520000pt;}
.ws7{word-spacing:-13.496533pt;}
.ws0{word-spacing:-13.360000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws3{word-spacing:-9.520000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._4{width:2.003733pt;}
._a{width:3.607467pt;}
._c{width:4.595307pt;}
._10{width:5.718080pt;}
._14{width:6.632960pt;}
._f{width:7.671040pt;}
._e{width:8.749760pt;}
._1b{width:10.420800pt;}
._1e{width:11.368640pt;}
._11{width:12.291200pt;}
._30{width:13.335360pt;}
._1d{width:14.535680pt;}
._8{width:15.657920pt;}
._9{width:16.732267pt;}
._d{width:19.612480pt;}
._27{width:20.574400pt;}
._12{width:21.643200pt;}
._19{width:23.424000pt;}
._18{width:24.336000pt;}
._b{width:25.544320pt;}
._25{width:26.452800pt;}
._26{width:27.521600pt;}
._13{width:29.659200pt;}
._1a{width:30.720000pt;}
._29{width:34.416000pt;}
._2b{width:35.377280pt;}
._2a{width:36.392000pt;}
._2f{width:40.641920pt;}
._1f{width:41.683200pt;}
._20{width:42.618347pt;}
._2c{width:47.401280pt;}
._1c{width:48.844160pt;}
._2d{width:50.126720pt;}
._6{width:53.219947pt;}
._5{width:54.480000pt;}
._17{width:55.632000pt;}
._15{width:57.792000pt;}
._16{width:70.848000pt;}
._28{width:93.092480pt;}
._2e{width:108.296427pt;}
._23{width:114.254187pt;}
._2{width:115.960427pt;}
._24{width:181.360000pt;}
._21{width:291.017493pt;}
._1{width:303.598827pt;}
._7{width:879.866667pt;}
._22{width:1988.773333pt;}
.fs3{font-size:26.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:0.080000pt;}
.yd8{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y42{bottom:2.560000pt;}
.y15{bottom:2.880000pt;}
.y39{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.ye3{bottom:10.400000pt;}
.y9{bottom:12.480000pt;}
.yd7{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.y41{bottom:16.400000pt;}
.y37{bottom:17.200000pt;}
.y2e{bottom:18.240000pt;}
.ye2{bottom:22.746667pt;}
.y44{bottom:24.320000pt;}
.yd6{bottom:26.880000pt;}
.y40{bottom:30.160000pt;}
.y7{bottom:31.600000pt;}
.y36{bottom:31.760000pt;}
.y2d{bottom:33.520000pt;}
.ye1{bottom:34.986667pt;}
.yd5{bottom:39.120000pt;}
.y3f{bottom:44.000000pt;}
.y35{bottom:45.600000pt;}
.ye0{bottom:47.226667pt;}
.y2c{bottom:48.880000pt;}
.y3{bottom:51.680000pt;}
.y3e{bottom:57.760000pt;}
.y34{bottom:59.360000pt;}
.ydf{bottom:59.546667pt;}
.y2b{bottom:64.240000pt;}
.y3d{bottom:71.600000pt;}
.yde{bottom:71.786667pt;}
.y33{bottom:73.226667pt;}
.y2a{bottom:79.520000pt;}
.ydd{bottom:84.026667pt;}
.y3c{bottom:85.360000pt;}
.y32{bottom:86.986667pt;}
.y29{bottom:94.880000pt;}
.ydc{bottom:96.346667pt;}
.y3b{bottom:99.200000pt;}
.y31{bottom:100.826667pt;}
.ya3{bottom:102.000000pt;}
.y84{bottom:103.840000pt;}
.y4a{bottom:104.720000pt;}
.y28{bottom:110.240000pt;}
.y30{bottom:114.586667pt;}
.y43{bottom:116.080000pt;}
.y49{bottom:118.480000pt;}
.ya2{bottom:118.560000pt;}
.y83{bottom:119.200000pt;}
.yb3{bottom:120.240000pt;}
.y27{bottom:125.520000pt;}
.y48{bottom:132.560000pt;}
.y82{bottom:134.480000pt;}
.ya1{bottom:135.120000pt;}
.yb2{bottom:135.520000pt;}
.y26{bottom:140.880000pt;}
.y47{bottom:147.946667pt;}
.y81{bottom:149.866667pt;}
.yb1{bottom:150.906667pt;}
.ya0{bottom:151.626667pt;}
.y25{bottom:156.240000pt;}
.y46{bottom:163.306667pt;}
.y80{bottom:165.226667pt;}
.yb0{bottom:166.266667pt;}
.y9f{bottom:168.186667pt;}
.y24{bottom:171.520000pt;}
.y45{bottom:178.346667pt;}
.y7f{bottom:180.506667pt;}
.yaf{bottom:181.546667pt;}
.y9e{bottom:184.746667pt;}
.y23{bottom:186.880000pt;}
.y16{bottom:190.186667pt;}
.y7e{bottom:195.866667pt;}
.yae{bottom:196.906667pt;}
.y9d{bottom:201.306667pt;}
.y22{bottom:202.240000pt;}
.y7d{bottom:211.226667pt;}
.yad{bottom:212.266667pt;}
.y21{bottom:217.520000pt;}
.y9c{bottom:217.866667pt;}
.y7c{bottom:226.506667pt;}
.yac{bottom:227.546667pt;}
.y20{bottom:232.880000pt;}
.y9b{bottom:234.346667pt;}
.y7b{bottom:241.866667pt;}
.yab{bottom:242.906667pt;}
.y1f{bottom:248.240000pt;}
.y9a{bottom:250.906667pt;}
.y7a{bottom:256.666667pt;}
.yaa{bottom:258.266667pt;}
.y1e{bottom:263.520000pt;}
.y99{bottom:267.466667pt;}
.y79{bottom:268.906667pt;}
.ya9{bottom:273.546667pt;}
.y1d{bottom:278.880000pt;}
.y78{bottom:281.706667pt;}
.y98{bottom:284.026667pt;}
.ya8{bottom:288.906667pt;}
.y1c{bottom:294.160000pt;}
.y77{bottom:294.186667pt;}
.y97{bottom:300.586667pt;}
.ya7{bottom:304.266667pt;}
.y1b{bottom:309.520000pt;}
.y96{bottom:317.146667pt;}
.y3a{bottom:318.186667pt;}
.ya6{bottom:319.546667pt;}
.y1a{bottom:324.906667pt;}
.y95{bottom:333.626667pt;}
.ya5{bottom:334.906667pt;}
.y19{bottom:340.186667pt;}
.y94{bottom:350.186667pt;}
.ya4{bottom:350.266667pt;}
.y18{bottom:355.546667pt;}
.y93{bottom:366.746667pt;}
.y17{bottom:370.906667pt;}
.y92{bottom:383.306667pt;}
.yea{bottom:393.226667pt;}
.y91{bottom:399.866667pt;}
.ye9{bottom:408.506667pt;}
.y90{bottom:416.426667pt;}
.ye8{bottom:423.866667pt;}
.y38{bottom:429.226667pt;}
.y8f{bottom:432.906667pt;}
.ye7{bottom:439.226667pt;}
.y2f{bottom:447.706667pt;}
.y8e{bottom:449.466667pt;}
.ye6{bottom:454.506667pt;}
.y8d{bottom:466.026667pt;}
.ye5{bottom:469.866667pt;}
.y8c{bottom:482.586667pt;}
.ye4{bottom:484.666667pt;}
.yda{bottom:495.226667pt;}
.y8b{bottom:499.146667pt;}
.y8a{bottom:515.653333pt;}
.y89{bottom:542.053333pt;}
.y88{bottom:565.973333pt;}
.y14{bottom:574.213333pt;}
.y64{bottom:583.093333pt;}
.y63{bottom:598.453333pt;}
.yd9{bottom:602.133333pt;}
.y13{bottom:604.933333pt;}
.y76{bottom:607.973333pt;}
.y62{bottom:613.733333pt;}
.yd4{bottom:615.093333pt;}
.y75{bottom:623.333333pt;}
.y12{bottom:626.693333pt;}
.y61{bottom:629.093333pt;}
.y74{bottom:638.693333pt;}
.y60{bottom:644.453333pt;}
.y73{bottom:653.973333pt;}
.y11{bottom:658.293333pt;}
.y5f{bottom:659.733333pt;}
.yd3{bottom:664.773333pt;}
.y10{bottom:669.093333pt;}
.y72{bottom:669.333333pt;}
.y5e{bottom:675.093333pt;}
.yd2{bottom:680.053333pt;}
.y71{bottom:684.693333pt;}
.y5d{bottom:690.453333pt;}
.yf{bottom:690.853333pt;}
.yc2{bottom:692.853333pt;}
.y70{bottom:699.973333pt;}
.y5c{bottom:705.733333pt;}
.yc1{bottom:708.213333pt;}
.y6f{bottom:715.333333pt;}
.ye{bottom:718.453333pt;}
.y5b{bottom:721.093333pt;}
.yd1{bottom:723.013333pt;}
.yc0{bottom:723.573333pt;}
.y6e{bottom:731.653333pt;}
.yd0{bottom:735.253333pt;}
.y5a{bottom:736.373333pt;}
.ybf{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y6d{bottom:746.933333pt;}
.ycf{bottom:747.573333pt;}
.y59{bottom:751.733333pt;}
.ybe{bottom:754.213333pt;}
.yce{bottom:759.813333pt;}
.y6c{bottom:763.253333pt;}
.y58{bottom:767.093333pt;}
.ybd{bottom:769.573333pt;}
.ycd{bottom:772.053333pt;}
.yc{bottom:773.653333pt;}
.y6b{bottom:778.613333pt;}
.y57{bottom:782.373333pt;}
.ycc{bottom:784.373333pt;}
.ybc{bottom:784.853333pt;}
.y6a{bottom:793.893333pt;}
.ycb{bottom:796.613333pt;}
.y56{bottom:797.733333pt;}
.ybb{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.yca{bottom:808.853333pt;}
.y69{bottom:810.213333pt;}
.y55{bottom:813.093333pt;}
.yba{bottom:815.493333pt;}
.yc9{bottom:821.093333pt;}
.y68{bottom:826.453333pt;}
.ya{bottom:826.853333pt;}
.y54{bottom:828.373333pt;}
.yb9{bottom:830.853333pt;}
.yc8{bottom:833.413333pt;}
.y8{bottom:840.533333pt;}
.y67{bottom:841.813333pt;}
.y53{bottom:843.733333pt;}
.yc7{bottom:845.653333pt;}
.yb8{bottom:846.213333pt;}
.yc6{bottom:857.893333pt;}
.y66{bottom:858.133333pt;}
.y52{bottom:859.093333pt;}
.yb7{bottom:861.493333pt;}
.yc5{bottom:870.213333pt;}
.y65{bottom:873.413333pt;}
.y51{bottom:874.373333pt;}
.yb6{bottom:876.853333pt;}
.yc4{bottom:882.480000pt;}
.y50{bottom:889.760000pt;}
.yb5{bottom:892.240000pt;}
.yc3{bottom:894.720000pt;}
.y4f{bottom:905.120000pt;}
.yb4{bottom:907.520000pt;}
.y4e{bottom:920.400000pt;}
.y87{bottom:922.880000pt;}
.y4d{bottom:935.760000pt;}
.y86{bottom:938.240000pt;}
.y4c{bottom:951.120000pt;}
.y85{bottom:953.520000pt;}
.y4b{bottom:966.160000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1e{height:12.240000pt;}
.h1c{height:12.320000pt;}
.hf{height:15.280000pt;}
.h14{height:17.840000pt;}
.h3{height:24.560000pt;}
.hc{height:26.142187pt;}
.h5{height:29.717188pt;}
.h1a{height:30.028906pt;}
.h20{height:30.112031pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h1b{height:37.809844pt;}
.h19{height:38.905781pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h1d{height:49.040000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h1f{height:106.266667pt;}
.h15{height:110.400000pt;}
.h11{height:125.786667pt;}
.h18{height:127.280000pt;}
.h7{height:136.826667pt;}
.h10{height:383.306667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w8{width:96.826667pt;}
.w6{width:207.146667pt;}
.w9{width:273.440000pt;}
.w7{width:370.906667pt;}
.w5{width:511.653333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.840000pt;}
.x3{left:7.680000pt;}
.x10{left:17.840000pt;}
.x14{left:30.160000pt;}
.x12{left:35.920000pt;}
.x13{left:37.680000pt;}
.x6{left:40.480000pt;}
.x23{left:46.160000pt;}
.x2{left:47.999988pt;}
.x20{left:49.359988pt;}
.x16{left:53.039988pt;}
.x1{left:53.999988pt;}
.x15{left:58.159988pt;}
.xa{left:61.279988pt;}
.x1e{left:72.479988pt;}
.x9{left:78.239988pt;}
.x24{left:87.840000pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.xd{left:109.679988pt;}
.xe{left:138.426655pt;}
.x25{left:143.626667pt;}
.xb{left:149.306655pt;}
.x26{left:224.506655pt;}
.x8{left:408.026655pt;}
.xc{left:412.586655pt;}
.x1d{left:418.746655pt;}
.x17{left:425.093321pt;}
.x18{left:426.453321pt;}
.x22{left:445.413321pt;}
.x1a{left:449.173321pt;}
.x19{left:450.453321pt;}
.x21{left:468.053321pt;}
.x1b{left:473.173321pt;}
.x1f{left:551.413321pt;}
.xf{left:559.493333pt;}
.x7{left:722.160000pt;}
.x1c{left:723.839988pt;}
}




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