
    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_24ffa32d71952de78ae1bebb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c5b2b6b7fe6079b76dc06bde.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_693199e6b27f66a73612d9c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_d60028dd52ed3ba24e21e9a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_ccaa08db18c8f1b85fe76ca2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_562f3e39ef4fbea11b9fc98b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9d7842c572d8bcb45ae616e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5f3e334f9845d8c6016394fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-15.660000px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.206400px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:16.506720px;}
.ls2{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.ls1{letter-spacing:191.676000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:108.060480px;}
._35{margin-left:-2406.599040px;}
._33{margin-left:-375.240000px;}
._34{margin-left:-15.776640px;}
._c{margin-left:-6.906720px;}
._d{margin-left:-4.504320px;}
._30{margin-left:-3.466080px;}
._f{margin-left:-2.384160px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._1d{width:2.270880px;}
._12{width:3.339120px;}
._11{width:4.601520px;}
._10{width:6.095520px;}
._e{width:8.030640px;}
._3{width:9.540000px;}
._1a{width:10.697040px;}
._1{width:12.420000px;}
._19{width:13.693440px;}
._1e{width:16.103040px;}
._16{width:17.248800px;}
._15{width:18.525600px;}
._14{width:19.779120px;}
._13{width:21.513600px;}
._17{width:22.589280px;}
._1b{width:23.664960px;}
._2e{width:25.278480px;}
._2a{width:26.294400px;}
._18{width:27.370080px;}
._27{width:29.222640px;}
._21{width:30.477600px;}
._20{width:31.852080px;}
._22{width:32.868000px;}
._2b{width:34.840080px;}
._23{width:36.632880px;}
._31{width:39.142800px;}
._32{width:40.158720px;}
._3d{width:41.651280px;}
._24{width:42.907680px;}
._2c{width:43.923600px;}
._1f{width:44.999280px;}
._2d{width:46.314000px;}
._37{width:47.389680px;}
._3c{width:51.453360px;}
._3b{width:52.469280px;}
._28{width:53.963280px;}
._26{width:54.979200px;}
._25{width:56.293920px;}
._29{width:57.668400px;}
._1c{width:59.102640px;}
._36{width:60.978960px;}
._2f{width:62.269920px;}
._39{width:63.349440px;}
._38{width:64.716240px;}
._3a{width:69.261840px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc7{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y27{bottom:5.760000px;}
.y10{bottom:7.020000px;}
.yf0{bottom:7.200000px;}
.y17{bottom:8.865000px;}
.yee{bottom:9.105000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y26{bottom:25.560000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y25{bottom:45.360000px;}
.yf{bottom:53.280000px;}
.y6{bottom:63.180000px;}
.y24{bottom:65.190000px;}
.yef{bottom:67.680000px;}
.yb{bottom:73.080000px;}
.y40{bottom:83.160000px;}
.y5{bottom:84.450000px;}
.y23{bottom:85.170000px;}
.ya4{bottom:86.580000px;}
.y76{bottom:88.380000px;}
.yeb{bottom:90.360000px;}
.ya{bottom:92.370000px;}
.yd3{bottom:95.580000px;}
.y3f{bottom:102.960000px;}
.y22{bottom:104.970000px;}
.ya3{bottom:106.380000px;}
.y4{bottom:106.950000px;}
.y75{bottom:108.180000px;}
.y9{bottom:110.190000px;}
.yea{bottom:110.340000px;}
.yd2{bottom:115.380000px;}
.y3e{bottom:122.940000px;}
.y21{bottom:124.770000px;}
.ya2{bottom:126.180000px;}
.y3{bottom:126.750000px;}
.y74{bottom:127.980000px;}
.ye9{bottom:130.140000px;}
.yd1{bottom:135.180000px;}
.y3d{bottom:142.740000px;}
.y20{bottom:144.570000px;}
.ya1{bottom:145.980000px;}
.y73{bottom:147.960000px;}
.ye8{bottom:149.940000px;}
.yd0{bottom:155.010000px;}
.y3c{bottom:162.570000px;}
.y1f{bottom:164.370000px;}
.ya0{bottom:165.990000px;}
.y72{bottom:167.790000px;}
.ye7{bottom:169.770000px;}
.ycf{bottom:174.990000px;}
.y3b{bottom:182.370000px;}
.y1e{bottom:184.350000px;}
.y9f{bottom:185.790000px;}
.y71{bottom:187.590000px;}
.ye6{bottom:189.570000px;}
.yce{bottom:194.790000px;}
.y3a{bottom:202.170000px;}
.y1d{bottom:204.150000px;}
.y9e{bottom:205.590000px;}
.y70{bottom:207.390000px;}
.ye5{bottom:209.550000px;}
.ycd{bottom:214.590000px;}
.y39{bottom:222.150000px;}
.y1c{bottom:223.950000px;}
.y9d{bottom:225.390000px;}
.y6f{bottom:227.190000px;}
.ye4{bottom:229.350000px;}
.ycc{bottom:234.390000px;}
.y38{bottom:241.950000px;}
.y1b{bottom:243.750000px;}
.y9c{bottom:245.190000px;}
.y6e{bottom:247.170000px;}
.ye3{bottom:249.150000px;}
.ycb{bottom:254.190000px;}
.y37{bottom:261.750000px;}
.y1a{bottom:263.550000px;}
.y9b{bottom:265.170000px;}
.y6d{bottom:266.970000px;}
.ye2{bottom:268.950000px;}
.yca{bottom:274.170000px;}
.y36{bottom:281.550000px;}
.y19{bottom:283.530000px;}
.y9a{bottom:284.970000px;}
.y6c{bottom:286.770000px;}
.ye1{bottom:288.750000px;}
.yc9{bottom:293.970000px;}
.yed{bottom:299.310000px;}
.y35{bottom:301.350000px;}
.y99{bottom:304.770000px;}
.y6b{bottom:306.570000px;}
.ye0{bottom:308.730000px;}
.yc8{bottom:313.770000px;}
.y34{bottom:321.330000px;}
.y98{bottom:324.570000px;}
.y6a{bottom:326.370000px;}
.ydf{bottom:328.530000px;}
.yc7{bottom:333.570000px;}
.y33{bottom:341.130000px;}
.y97{bottom:344.370000px;}
.y69{bottom:346.350000px;}
.yde{bottom:348.330000px;}
.yc6{bottom:353.370000px;}
.y32{bottom:360.930000px;}
.y96{bottom:364.350000px;}
.ydd{bottom:364.890000px;}
.yec{bottom:365.220000px;}
.y68{bottom:366.150000px;}
.yc5{bottom:373.350000px;}
.y31{bottom:380.730000px;}
.y95{bottom:384.150000px;}
.y67{bottom:385.950000px;}
.yc4{bottom:393.150000px;}
.y30{bottom:400.575000px;}
.y94{bottom:403.995000px;}
.y66{bottom:405.795000px;}
.yc3{bottom:412.995000px;}
.y2f{bottom:420.555000px;}
.y93{bottom:423.795000px;}
.y65{bottom:425.595000px;}
.yc2{bottom:432.795000px;}
.y2e{bottom:440.355000px;}
.y92{bottom:443.595000px;}
.y64{bottom:445.575000px;}
.yc1{bottom:452.595000px;}
.y2d{bottom:460.155000px;}
.y91{bottom:463.575000px;}
.y63{bottom:465.375000px;}
.yc0{bottom:472.575000px;}
.y2c{bottom:479.955000px;}
.y90{bottom:483.375000px;}
.y62{bottom:485.175000px;}
.ybf{bottom:492.375000px;}
.y2b{bottom:499.755000px;}
.y8f{bottom:503.175000px;}
.y61{bottom:504.975000px;}
.ybe{bottom:512.175000px;}
.y2a{bottom:519.735000px;}
.y8e{bottom:522.975000px;}
.y60{bottom:524.775000px;}
.ybd{bottom:531.975000px;}
.y29{bottom:539.535000px;}
.y8d{bottom:542.775000px;}
.y5f{bottom:544.755000px;}
.ybc{bottom:551.775000px;}
.y28{bottom:554.295000px;}
.y8c{bottom:562.755000px;}
.y5e{bottom:564.555000px;}
.ybb{bottom:571.755000px;}
.y8b{bottom:582.555000px;}
.y5d{bottom:584.355000px;}
.yba{bottom:591.555000px;}
.y18{bottom:594.795000px;}
.y8a{bottom:602.355000px;}
.y5c{bottom:604.155000px;}
.yb9{bottom:611.355000px;}
.y89{bottom:622.155000px;}
.y5b{bottom:623.955000px;}
.yb8{bottom:631.155000px;}
.y88{bottom:641.955000px;}
.y5a{bottom:643.935000px;}
.yb7{bottom:650.985000px;}
.y87{bottom:661.965000px;}
.y59{bottom:663.765000px;}
.yb6{bottom:670.965000px;}
.y86{bottom:681.765000px;}
.y58{bottom:683.565000px;}
.yb5{bottom:690.765000px;}
.y85{bottom:701.565000px;}
.y57{bottom:703.365000px;}
.yb4{bottom:710.565000px;}
.y84{bottom:721.365000px;}
.y56{bottom:723.165000px;}
.yb3{bottom:730.365000px;}
.y83{bottom:741.165000px;}
.ydc{bottom:746.925000px;}
.yb2{bottom:750.165000px;}
.y55{bottom:752.145000px;}
.y82{bottom:761.145000px;}
.ydb{bottom:766.905000px;}
.yb1{bottom:770.145000px;}
.y54{bottom:771.945000px;}
.y81{bottom:780.945000px;}
.yda{bottom:786.705000px;}
.yb0{bottom:789.945000px;}
.y53{bottom:791.745000px;}
.y80{bottom:800.745000px;}
.yd9{bottom:806.505000px;}
.yaf{bottom:809.745000px;}
.y52{bottom:811.545000px;}
.y7f{bottom:820.545000px;}
.yd8{bottom:826.305000px;}
.yae{bottom:829.545000px;}
.y51{bottom:831.345000px;}
.y7e{bottom:840.345000px;}
.yd7{bottom:847.185000px;}
.yad{bottom:849.345000px;}
.y50{bottom:851.325000px;}
.y7d{bottom:860.325000px;}
.yd6{bottom:867.165000px;}
.yac{bottom:869.325000px;}
.y4f{bottom:871.125000px;}
.y7c{bottom:880.125000px;}
.yd5{bottom:888.045000px;}
.yab{bottom:889.125000px;}
.y16{bottom:893.085000px;}
.y4e{bottom:899.970000px;}
.yd4{bottom:907.890000px;}
.yaa{bottom:908.970000px;}
.y4d{bottom:919.770000px;}
.y15{bottom:922.470000px;}
.ya9{bottom:928.770000px;}
.y4c{bottom:939.570000px;}
.y14{bottom:942.810000px;}
.ya8{bottom:948.570000px;}
.y4b{bottom:959.550000px;}
.y13{bottom:964.230000px;}
.ya7{bottom:968.550000px;}
.y4a{bottom:979.350000px;}
.y12{bottom:987.630000px;}
.ya6{bottom:988.350000px;}
.y49{bottom:999.150000px;}
.ya5{bottom:1008.150000px;}
.y7b{bottom:1018.950000px;}
.y11{bottom:1019.310000px;}
.y48{bottom:1027.950000px;}
.y7a{bottom:1038.750000px;}
.ye{bottom:1045.410000px;}
.y47{bottom:1047.750000px;}
.y79{bottom:1058.730000px;}
.y1{bottom:1067.730000px;}
.y78{bottom:1078.530000px;}
.y46{bottom:1087.530000px;}
.y77{bottom:1098.330000px;}
.y45{bottom:1107.330000px;}
.y44{bottom:1127.130000px;}
.y43{bottom:1146.960000px;}
.y42{bottom:1166.940000px;}
.y41{bottom:1193.400000px;}
.h3{height:2.373750px;}
.ha{height:22.320000px;}
.h15{height:22.500000px;}
.hf{height:22.896000px;}
.h11{height:39.600000px;}
.h16{height:41.493516px;}
.h4{height:42.164648px;}
.h12{height:43.506914px;}
.h8{height:48.410156px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h6{height:53.573906px;}
.h9{height:55.825312px;}
.hb{height:59.383125px;}
.hd{height:59.439023px;}
.h7{height:64.546875px;}
.he{height:67.565039px;}
.h14{height:70.995234px;}
.h2{height:140.796000px;}
.h10{height:297.570000px;}
.h13{height:330.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.496000px;}
.w4{width:158.970000px;}
.w8{width:170.130000px;}
.w2{width:172.830000px;}
.w3{width:464.865000px;}
.wb{width:519.840000px;}
.w9{width:607.650000px;}
.w7{width:748.950000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x12{left:76.319987px;}
.x6{left:80.865000px;}
.xc{left:90.216000px;}
.x13{left:108.035987px;}
.x7{left:140.085000px;}
.x17{left:148.245000px;}
.x2{left:160.050000px;}
.x3{left:221.070000px;}
.x15{left:225.360000px;}
.xe{left:227.730000px;}
.x16{left:237.210000px;}
.x5{left:248.295000px;}
.xf{left:473.504987px;}
.x11{left:500.504987px;}
.x10{left:527.504987px;}
.x8{left:685.950000px;}
.x14{left:820.439987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-13.920000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:14.672640pt;}
.ls2{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.ls1{letter-spacing:170.378667pt;}
.ws7{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:96.053760pt;}
._35{margin-left:-2139.199147pt;}
._33{margin-left:-333.546667pt;}
._34{margin-left:-14.023680pt;}
._c{margin-left:-6.139307pt;}
._d{margin-left:-4.003840pt;}
._30{margin-left:-3.080960pt;}
._f{margin-left:-2.119253pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._1d{width:2.018560pt;}
._12{width:2.968107pt;}
._11{width:4.090240pt;}
._10{width:5.418240pt;}
._e{width:7.138347pt;}
._3{width:8.480000pt;}
._1a{width:9.508480pt;}
._1{width:11.040000pt;}
._19{width:12.171947pt;}
._1e{width:14.313813pt;}
._16{width:15.332267pt;}
._15{width:16.467200pt;}
._14{width:17.581440pt;}
._13{width:19.123200pt;}
._17{width:20.079360pt;}
._1b{width:21.035520pt;}
._2e{width:22.469760pt;}
._2a{width:23.372800pt;}
._18{width:24.328960pt;}
._27{width:25.975680pt;}
._21{width:27.091200pt;}
._20{width:28.312960pt;}
._22{width:29.216000pt;}
._2b{width:30.968960pt;}
._23{width:32.562560pt;}
._31{width:34.793600pt;}
._32{width:35.696640pt;}
._3d{width:37.023360pt;}
._24{width:38.140160pt;}
._2c{width:39.043200pt;}
._1f{width:39.999360pt;}
._2d{width:41.168000pt;}
._37{width:42.124160pt;}
._3c{width:45.736320pt;}
._3b{width:46.639360pt;}
._28{width:47.967360pt;}
._26{width:48.870400pt;}
._25{width:50.039040pt;}
._29{width:51.260800pt;}
._1c{width:52.535680pt;}
._36{width:54.203520pt;}
._2f{width:55.351040pt;}
._39{width:56.310613pt;}
._38{width:57.525547pt;}
._3a{width:61.566080pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y27{bottom:5.120000pt;}
.y10{bottom:6.240000pt;}
.yf0{bottom:6.400000pt;}
.y17{bottom:7.880000pt;}
.yee{bottom:8.093333pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y26{bottom:22.720000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y25{bottom:40.320000pt;}
.yf{bottom:47.360000pt;}
.y6{bottom:56.160000pt;}
.y24{bottom:57.946667pt;}
.yef{bottom:60.160000pt;}
.yb{bottom:64.960000pt;}
.y40{bottom:73.920000pt;}
.y5{bottom:75.066667pt;}
.y23{bottom:75.706667pt;}
.ya4{bottom:76.960000pt;}
.y76{bottom:78.560000pt;}
.yeb{bottom:80.320000pt;}
.ya{bottom:82.106667pt;}
.yd3{bottom:84.960000pt;}
.y3f{bottom:91.520000pt;}
.y22{bottom:93.306667pt;}
.ya3{bottom:94.560000pt;}
.y4{bottom:95.066667pt;}
.y75{bottom:96.160000pt;}
.y9{bottom:97.946667pt;}
.yea{bottom:98.080000pt;}
.yd2{bottom:102.560000pt;}
.y3e{bottom:109.280000pt;}
.y21{bottom:110.906667pt;}
.ya2{bottom:112.160000pt;}
.y3{bottom:112.666667pt;}
.y74{bottom:113.760000pt;}
.ye9{bottom:115.680000pt;}
.yd1{bottom:120.160000pt;}
.y3d{bottom:126.880000pt;}
.y20{bottom:128.506667pt;}
.ya1{bottom:129.760000pt;}
.y73{bottom:131.520000pt;}
.ye8{bottom:133.280000pt;}
.yd0{bottom:137.786667pt;}
.y3c{bottom:144.506667pt;}
.y1f{bottom:146.106667pt;}
.ya0{bottom:147.546667pt;}
.y72{bottom:149.146667pt;}
.ye7{bottom:150.906667pt;}
.ycf{bottom:155.546667pt;}
.y3b{bottom:162.106667pt;}
.y1e{bottom:163.866667pt;}
.y9f{bottom:165.146667pt;}
.y71{bottom:166.746667pt;}
.ye6{bottom:168.506667pt;}
.yce{bottom:173.146667pt;}
.y3a{bottom:179.706667pt;}
.y1d{bottom:181.466667pt;}
.y9e{bottom:182.746667pt;}
.y70{bottom:184.346667pt;}
.ye5{bottom:186.266667pt;}
.ycd{bottom:190.746667pt;}
.y39{bottom:197.466667pt;}
.y1c{bottom:199.066667pt;}
.y9d{bottom:200.346667pt;}
.y6f{bottom:201.946667pt;}
.ye4{bottom:203.866667pt;}
.ycc{bottom:208.346667pt;}
.y38{bottom:215.066667pt;}
.y1b{bottom:216.666667pt;}
.y9c{bottom:217.946667pt;}
.y6e{bottom:219.706667pt;}
.ye3{bottom:221.466667pt;}
.ycb{bottom:225.946667pt;}
.y37{bottom:232.666667pt;}
.y1a{bottom:234.266667pt;}
.y9b{bottom:235.706667pt;}
.y6d{bottom:237.306667pt;}
.ye2{bottom:239.066667pt;}
.yca{bottom:243.706667pt;}
.y36{bottom:250.266667pt;}
.y19{bottom:252.026667pt;}
.y9a{bottom:253.306667pt;}
.y6c{bottom:254.906667pt;}
.ye1{bottom:256.666667pt;}
.yc9{bottom:261.306667pt;}
.yed{bottom:266.053333pt;}
.y35{bottom:267.866667pt;}
.y99{bottom:270.906667pt;}
.y6b{bottom:272.506667pt;}
.ye0{bottom:274.426667pt;}
.yc8{bottom:278.906667pt;}
.y34{bottom:285.626667pt;}
.y98{bottom:288.506667pt;}
.y6a{bottom:290.106667pt;}
.ydf{bottom:292.026667pt;}
.yc7{bottom:296.506667pt;}
.y33{bottom:303.226667pt;}
.y97{bottom:306.106667pt;}
.y69{bottom:307.866667pt;}
.yde{bottom:309.626667pt;}
.yc6{bottom:314.106667pt;}
.y32{bottom:320.826667pt;}
.y96{bottom:323.866667pt;}
.ydd{bottom:324.346667pt;}
.yec{bottom:324.640000pt;}
.y68{bottom:325.466667pt;}
.yc5{bottom:331.866667pt;}
.y31{bottom:338.426667pt;}
.y95{bottom:341.466667pt;}
.y67{bottom:343.066667pt;}
.yc4{bottom:349.466667pt;}
.y30{bottom:356.066667pt;}
.y94{bottom:359.106667pt;}
.y66{bottom:360.706667pt;}
.yc3{bottom:367.106667pt;}
.y2f{bottom:373.826667pt;}
.y93{bottom:376.706667pt;}
.y65{bottom:378.306667pt;}
.yc2{bottom:384.706667pt;}
.y2e{bottom:391.426667pt;}
.y92{bottom:394.306667pt;}
.y64{bottom:396.066667pt;}
.yc1{bottom:402.306667pt;}
.y2d{bottom:409.026667pt;}
.y91{bottom:412.066667pt;}
.y63{bottom:413.666667pt;}
.yc0{bottom:420.066667pt;}
.y2c{bottom:426.626667pt;}
.y90{bottom:429.666667pt;}
.y62{bottom:431.266667pt;}
.ybf{bottom:437.666667pt;}
.y2b{bottom:444.226667pt;}
.y8f{bottom:447.266667pt;}
.y61{bottom:448.866667pt;}
.ybe{bottom:455.266667pt;}
.y2a{bottom:461.986667pt;}
.y8e{bottom:464.866667pt;}
.y60{bottom:466.466667pt;}
.ybd{bottom:472.866667pt;}
.y29{bottom:479.586667pt;}
.y8d{bottom:482.466667pt;}
.y5f{bottom:484.226667pt;}
.ybc{bottom:490.466667pt;}
.y28{bottom:492.706667pt;}
.y8c{bottom:500.226667pt;}
.y5e{bottom:501.826667pt;}
.ybb{bottom:508.226667pt;}
.y8b{bottom:517.826667pt;}
.y5d{bottom:519.426667pt;}
.yba{bottom:525.826667pt;}
.y18{bottom:528.706667pt;}
.y8a{bottom:535.426667pt;}
.y5c{bottom:537.026667pt;}
.yb9{bottom:543.426667pt;}
.y89{bottom:553.026667pt;}
.y5b{bottom:554.626667pt;}
.yb8{bottom:561.026667pt;}
.y88{bottom:570.626667pt;}
.y5a{bottom:572.386667pt;}
.yb7{bottom:578.653333pt;}
.y87{bottom:588.413333pt;}
.y59{bottom:590.013333pt;}
.yb6{bottom:596.413333pt;}
.y86{bottom:606.013333pt;}
.y58{bottom:607.613333pt;}
.yb5{bottom:614.013333pt;}
.y85{bottom:623.613333pt;}
.y57{bottom:625.213333pt;}
.yb4{bottom:631.613333pt;}
.y84{bottom:641.213333pt;}
.y56{bottom:642.813333pt;}
.yb3{bottom:649.213333pt;}
.y83{bottom:658.813333pt;}
.ydc{bottom:663.933333pt;}
.yb2{bottom:666.813333pt;}
.y55{bottom:668.573333pt;}
.y82{bottom:676.573333pt;}
.ydb{bottom:681.693333pt;}
.yb1{bottom:684.573333pt;}
.y54{bottom:686.173333pt;}
.y81{bottom:694.173333pt;}
.yda{bottom:699.293333pt;}
.yb0{bottom:702.173333pt;}
.y53{bottom:703.773333pt;}
.y80{bottom:711.773333pt;}
.yd9{bottom:716.893333pt;}
.yaf{bottom:719.773333pt;}
.y52{bottom:721.373333pt;}
.y7f{bottom:729.373333pt;}
.yd8{bottom:734.493333pt;}
.yae{bottom:737.373333pt;}
.y51{bottom:738.973333pt;}
.y7e{bottom:746.973333pt;}
.yd7{bottom:753.053333pt;}
.yad{bottom:754.973333pt;}
.y50{bottom:756.733333pt;}
.y7d{bottom:764.733333pt;}
.yd6{bottom:770.813333pt;}
.yac{bottom:772.733333pt;}
.y4f{bottom:774.333333pt;}
.y7c{bottom:782.333333pt;}
.yd5{bottom:789.373333pt;}
.yab{bottom:790.333333pt;}
.y16{bottom:793.853333pt;}
.y4e{bottom:799.973333pt;}
.yd4{bottom:807.013333pt;}
.yaa{bottom:807.973333pt;}
.y4d{bottom:817.573333pt;}
.y15{bottom:819.973333pt;}
.ya9{bottom:825.573333pt;}
.y4c{bottom:835.173333pt;}
.y14{bottom:838.053333pt;}
.ya8{bottom:843.173333pt;}
.y4b{bottom:852.933333pt;}
.y13{bottom:857.093333pt;}
.ya7{bottom:860.933333pt;}
.y4a{bottom:870.533333pt;}
.y12{bottom:877.893333pt;}
.ya6{bottom:878.533333pt;}
.y49{bottom:888.133333pt;}
.ya5{bottom:896.133333pt;}
.y7b{bottom:905.733333pt;}
.y11{bottom:906.053333pt;}
.y48{bottom:913.733333pt;}
.y7a{bottom:923.333333pt;}
.ye{bottom:929.253333pt;}
.y47{bottom:931.333333pt;}
.y79{bottom:941.093333pt;}
.y1{bottom:949.093333pt;}
.y78{bottom:958.693333pt;}
.y46{bottom:966.693333pt;}
.y77{bottom:976.293333pt;}
.y45{bottom:984.293333pt;}
.y44{bottom:1001.893333pt;}
.y43{bottom:1019.520000pt;}
.y42{bottom:1037.280000pt;}
.y41{bottom:1060.800000pt;}
.h3{height:2.110000pt;}
.ha{height:19.840000pt;}
.h15{height:20.000000pt;}
.hf{height:20.352000pt;}
.h11{height:35.200000pt;}
.h16{height:36.883125pt;}
.h4{height:37.479688pt;}
.h12{height:38.672812pt;}
.h8{height:43.031250pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h6{height:47.621250pt;}
.h9{height:49.622500pt;}
.hb{height:52.785000pt;}
.hd{height:52.834688pt;}
.h7{height:57.375000pt;}
.he{height:60.057813pt;}
.h14{height:63.106875pt;}
.h2{height:125.152000pt;}
.h10{height:264.506667pt;}
.h13{height:293.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.552000pt;}
.w4{width:141.306667pt;}
.w8{width:151.226667pt;}
.w2{width:153.626667pt;}
.w3{width:413.213333pt;}
.wb{width:462.080000pt;}
.w9{width:540.133333pt;}
.w7{width:665.733333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x12{left:67.839988pt;}
.x6{left:71.880000pt;}
.xc{left:80.192000pt;}
.x13{left:96.031988pt;}
.x7{left:124.520000pt;}
.x17{left:131.773333pt;}
.x2{left:142.266667pt;}
.x3{left:196.506667pt;}
.x15{left:200.320000pt;}
.xe{left:202.426667pt;}
.x16{left:210.853333pt;}
.x5{left:220.706667pt;}
.xf{left:420.893322pt;}
.x11{left:444.893322pt;}
.x10{left:468.893322pt;}
.x8{left:609.733333pt;}
.x14{left:729.279988pt;}
}




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