
    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_afd4721ac4ab6d66329a92a9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_762560a62d5f9c068f04e7d4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6d8e536f6433d2e18374bc96.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_4a11691a879939bb807ad2d0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_226a8ff038f3325f67e3e1d4.woff')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_05c2ee2f579dea636a1f99d3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e785be57b49daf53aa7b4780.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_d358c122e9ae3888239dba0c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_7136e1c790d67661035c778a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7c3e92f20d52b6e0e7ea4f8c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.004320px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:5.220000px;}
.ls18{letter-spacing:6.660000px;}
.ls14{letter-spacing:16.506720px;}
.ls1a{letter-spacing:17.460000px;}
.lsb{letter-spacing:19.620000px;}
.ls19{letter-spacing:44.100000px;}
.ls11{letter-spacing:46.026720px;}
.ls16{letter-spacing:59.940000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.120000px;}
.wse{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws12{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.715680px;}
.ws10{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-6.431520px;}
._26{margin-left:-4.613760px;}
._9{margin-left:-3.441360px;}
._8{margin-left:-2.227200px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._a{width:3.050880px;}
._b{width:4.598400px;}
._c{width:6.422640px;}
._13{width:7.877280px;}
._10{width:9.522240px;}
._d{width:11.079360px;}
._5{width:12.960000px;}
._12{width:16.745520px;}
._11{width:17.928000px;}
._1d{width:18.936480px;}
._1a{width:19.977120px;}
._1e{width:21.210480px;}
._16{width:22.529520px;}
._1c{width:23.963760px;}
._f{width:25.083120px;}
._1b{width:26.832240px;}
._1f{width:27.864000px;}
._2f{width:28.864080px;}
._3c{width:29.997840px;}
._19{width:31.134960px;}
._25{width:32.569200px;}
._2c{width:33.830160px;}
._33{width:34.856160px;}
._22{width:36.084000px;}
._21{width:37.648800px;}
._27{width:39.262320px;}
._31{width:40.317120px;}
._2b{width:43.445520px;}
._24{width:45.130800px;}
._23{width:46.911600px;}
._34{width:48.823920px;}
._30{width:50.833200px;}
._28{width:51.860640px;}
._29{width:52.958400px;}
._2a{width:54.784560px;}
._3e{width:55.961520px;}
._4{width:57.204000px;}
._37{width:58.719360px;}
._38{width:59.851200px;}
._20{width:60.955200px;}
._32{width:62.666160px;}
._39{width:65.784720px;}
._3a{width:66.882480px;}
._18{width:71.500320px;}
._3d{width:72.505920px;}
._3b{width:73.598160px;}
._14{width:75.536160px;}
._36{width:82.349280px;}
._35{width:83.903040px;}
._3{width:87.120000px;}
._2d{width:88.141680px;}
._2e{width:92.388960px;}
._3f{width:131.412240px;}
._15{width:186.042960px;}
._6{width:199.416000px;}
._2{width:233.273760px;}
._7{width:1023.282960px;}
._e{width:2429.340000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y24{bottom:5.940000px;}
.y10{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y23{bottom:25.740000px;}
.y5{bottom:45.000000px;}
.y22{bottom:45.540000px;}
.y9{bottom:60.480000px;}
.y21{bottom:65.340000px;}
.y4{bottom:76.320000px;}
.y20{bottom:85.140000px;}
.y7b{bottom:91.620000px;}
.ya8{bottom:93.420000px;}
.yc6{bottom:93.600000px;}
.y3e{bottom:93.780000px;}
.y39{bottom:96.120000px;}
.y75{bottom:102.420000px;}
.yac{bottom:104.940000px;}
.y1f{bottom:105.120000px;}
.y3{bottom:107.670000px;}
.y7a{bottom:111.420000px;}
.ya7{bottom:113.220000px;}
.y38{bottom:113.400000px;}
.y3d{bottom:113.760000px;}
.y74{bottom:122.220000px;}
.y1e{bottom:124.920000px;}
.y37{bottom:130.680000px;}
.y79{bottom:131.220000px;}
.ya6{bottom:133.020000px;}
.yc5{bottom:133.200000px;}
.y3c{bottom:133.560000px;}
.y2{bottom:140.430000px;}
.y73{bottom:142.020000px;}
.yab{bottom:144.720000px;}
.y1d{bottom:144.750000px;}
.y36{bottom:147.780000px;}
.y78{bottom:151.020000px;}
.ya5{bottom:153.030000px;}
.y3b{bottom:153.390000px;}
.y72{bottom:162.030000px;}
.y1c{bottom:164.550000px;}
.y35{bottom:166.350000px;}
.y77{bottom:171.030000px;}
.ya4{bottom:172.830000px;}
.yc4{bottom:173.010000px;}
.y3a{bottom:173.190000px;}
.yb9{bottom:181.830000px;}
.y1b{bottom:184.350000px;}
.y71{bottom:190.830000px;}
.ya3{bottom:192.630000px;}
.yc3{bottom:192.810000px;}
.y34{bottom:192.990000px;}
.yb8{bottom:201.630000px;}
.yaa{bottom:204.150000px;}
.y1a{bottom:204.330000px;}
.y70{bottom:210.630000px;}
.ya2{bottom:212.430000px;}
.yc2{bottom:212.610000px;}
.y33{bottom:212.970000px;}
.yb7{bottom:221.430000px;}
.y19{bottom:224.130000px;}
.y6f{bottom:230.430000px;}
.ya1{bottom:232.230000px;}
.yc1{bottom:232.410000px;}
.y32{bottom:232.770000px;}
.y76{bottom:235.650000px;}
.yb6{bottom:241.230000px;}
.y18{bottom:243.930000px;}
.y6e{bottom:250.230000px;}
.ya0{bottom:252.210000px;}
.y31{bottom:252.570000px;}
.ya9{bottom:261.210000px;}
.y17{bottom:263.730000px;}
.y6d{bottom:270.210000px;}
.y9f{bottom:272.010000px;}
.yc0{bottom:272.190000px;}
.y30{bottom:272.370000px;}
.yb5{bottom:281.010000px;}
.y16{bottom:283.530000px;}
.y6c{bottom:290.010000px;}
.y9e{bottom:291.810000px;}
.ybf{bottom:291.990000px;}
.y2f{bottom:292.170000px;}
.yb4{bottom:300.810000px;}
.y15{bottom:303.510000px;}
.y6b{bottom:309.810000px;}
.y9d{bottom:311.610000px;}
.ybe{bottom:311.790000px;}
.y2e{bottom:312.150000px;}
.yb3{bottom:320.610000px;}
.y14{bottom:323.310000px;}
.y6a{bottom:329.610000px;}
.y9c{bottom:331.410000px;}
.ybd{bottom:331.590000px;}
.y2d{bottom:331.950000px;}
.yb2{bottom:340.410000px;}
.y13{bottom:343.110000px;}
.y69{bottom:349.410000px;}
.y9b{bottom:351.390000px;}
.y2c{bottom:351.750000px;}
.yb1{bottom:360.390000px;}
.y12{bottom:362.910000px;}
.y68{bottom:369.390000px;}
.y9a{bottom:371.190000px;}
.ybc{bottom:371.370000px;}
.y2b{bottom:371.550000px;}
.yb0{bottom:380.190000px;}
.y67{bottom:389.190000px;}
.ybb{bottom:390.630000px;}
.y99{bottom:390.990000px;}
.y2a{bottom:391.350000px;}
.yaf{bottom:399.990000px;}
.y66{bottom:409.035000px;}
.y98{bottom:410.835000px;}
.y29{bottom:411.375000px;}
.yae{bottom:419.835000px;}
.y65{bottom:428.835000px;}
.y97{bottom:430.635000px;}
.y28{bottom:431.175000px;}
.yad{bottom:439.635000px;}
.y64{bottom:448.635000px;}
.y27{bottom:450.975000px;}
.y96{bottom:459.615000px;}
.y63{bottom:468.615000px;}
.y26{bottom:470.775000px;}
.y95{bottom:479.415000px;}
.y62{bottom:488.415000px;}
.y25{bottom:490.575000px;}
.y94{bottom:499.215000px;}
.y11{bottom:505.335000px;}
.y61{bottom:508.215000px;}
.y93{bottom:519.015000px;}
.y60{bottom:528.015000px;}
.y92{bottom:538.815000px;}
.y5f{bottom:547.815000px;}
.y91{bottom:558.795000px;}
.y5e{bottom:567.795000px;}
.y90{bottom:578.595000px;}
.y5d{bottom:587.595000px;}
.y8f{bottom:598.395000px;}
.y5c{bottom:607.395000px;}
.y8e{bottom:618.195000px;}
.y5b{bottom:627.195000px;}
.y8d{bottom:637.995000px;}
.y5a{bottom:646.995000px;}
.y8c{bottom:658.005000px;}
.y59{bottom:667.005000px;}
.y8b{bottom:677.805000px;}
.y58{bottom:686.805000px;}
.y8a{bottom:697.605000px;}
.y57{bottom:706.605000px;}
.y89{bottom:717.405000px;}
.y56{bottom:726.405000px;}
.y88{bottom:737.205000px;}
.y55{bottom:746.205000px;}
.y87{bottom:757.185000px;}
.y54{bottom:766.185000px;}
.y86{bottom:776.985000px;}
.y53{bottom:785.985000px;}
.y85{bottom:796.785000px;}
.y52{bottom:805.785000px;}
.y84{bottom:816.585000px;}
.y51{bottom:825.585000px;}
.y83{bottom:836.385000px;}
.y50{bottom:845.385000px;}
.y82{bottom:856.365000px;}
.y4f{bottom:865.365000px;}
.y81{bottom:876.165000px;}
.yf{bottom:883.005000px;}
.y4e{bottom:885.165000px;}
.y80{bottom:895.965000px;}
.y4d{bottom:905.010000px;}
.ye{bottom:915.810000px;}
.y4c{bottom:924.810000px;}
.y7f{bottom:935.610000px;}
.yd{bottom:940.830000px;}
.y4b{bottom:944.610000px;}
.y7e{bottom:955.590000px;}
.yc{bottom:955.950000px;}
.y4a{bottom:964.590000px;}
.y7d{bottom:975.390000px;}
.yb{bottom:977.730000px;}
.y49{bottom:984.390000px;}
.y7c{bottom:995.190000px;}
.ya{bottom:1002.750000px;}
.y48{bottom:1004.190000px;}
.y47{bottom:1023.990000px;}
.y8{bottom:1029.030000px;}
.y46{bottom:1043.790000px;}
.y1{bottom:1046.490000px;}
.y45{bottom:1063.770000px;}
.y44{bottom:1083.570000px;}
.yba{bottom:1088.790000px;}
.y43{bottom:1103.370000px;}
.y42{bottom:1123.170000px;}
.y41{bottom:1142.970000px;}
.y40{bottom:1162.980000px;}
.y3f{bottom:1192.680000px;}
.hc{height:26.136000px;}
.h12{height:27.432422px;}
.h13{height:32.693906px;}
.ha{height:34.855313px;}
.he{height:42.164648px;}
.hf{height:45.024258px;}
.h8{height:46.736719px;}
.h4{height:48.774375px;}
.h14{height:49.255313px;}
.h11{height:51.706406px;}
.h9{height:53.224453px;}
.hb{height:53.573906px;}
.h10{height:55.735312px;}
.h3{height:62.028281px;}
.h5{height:64.546875px;}
.h7{height:67.565039px;}
.h6{height:74.039062px;}
.h2{height:162.390000px;}
.hd{height:376.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w4{width:144.576000px;}
.w8{width:153.030000px;}
.w2{width:619.530000px;}
.w7{width:627.090000px;}
.w6{width:780.120000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.520000px;}
.xb{left:80.999987px;}
.xc{left:108.035987px;}
.x5{left:136.290000px;}
.x8{left:473.504987px;}
.x9{left:500.504987px;}
.xa{left:527.504987px;}
.x3{left:673.530000px;}
.x7{left:683.610000px;}
.x4{left:694.590000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.003840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls18{letter-spacing:5.920000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:15.520000pt;}
.lsb{letter-spacing:17.440000pt;}
.ls19{letter-spacing:39.200000pt;}
.ls11{letter-spacing:40.912640pt;}
.ls16{letter-spacing:53.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.636160pt;}
.ws10{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-5.716907pt;}
._26{margin-left:-4.101120pt;}
._9{margin-left:-3.058987pt;}
._8{margin-left:-1.979733pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._a{width:2.711893pt;}
._b{width:4.087467pt;}
._c{width:5.709013pt;}
._13{width:7.002027pt;}
._10{width:8.464213pt;}
._d{width:9.848320pt;}
._5{width:11.520000pt;}
._12{width:14.884907pt;}
._11{width:15.936000pt;}
._1d{width:16.832427pt;}
._1a{width:17.757440pt;}
._1e{width:18.853760pt;}
._16{width:20.026240pt;}
._1c{width:21.301120pt;}
._f{width:22.296107pt;}
._1b{width:23.850880pt;}
._1f{width:24.768000pt;}
._2f{width:25.656960pt;}
._3c{width:26.664747pt;}
._19{width:27.675520pt;}
._25{width:28.950400pt;}
._2c{width:30.071253pt;}
._33{width:30.983253pt;}
._22{width:32.074667pt;}
._21{width:33.465600pt;}
._27{width:34.899840pt;}
._31{width:35.837440pt;}
._2b{width:38.618240pt;}
._24{width:40.116267pt;}
._23{width:41.699200pt;}
._34{width:43.399040pt;}
._30{width:45.185067pt;}
._28{width:46.098347pt;}
._29{width:47.074133pt;}
._2a{width:48.697387pt;}
._3e{width:49.743573pt;}
._4{width:50.848000pt;}
._37{width:52.194987pt;}
._38{width:53.201067pt;}
._20{width:54.182400pt;}
._32{width:55.703253pt;}
._39{width:58.475307pt;}
._3a{width:59.451093pt;}
._18{width:63.555840pt;}
._3d{width:64.449707pt;}
._3b{width:65.420587pt;}
._14{width:67.143253pt;}
._36{width:73.199360pt;}
._35{width:74.580480pt;}
._3{width:77.440000pt;}
._2d{width:78.348160pt;}
._2e{width:82.123520pt;}
._3f{width:116.810880pt;}
._15{width:165.371520pt;}
._6{width:177.258667pt;}
._2{width:207.354453pt;}
._7{width:909.584853pt;}
._e{width:2159.413333pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y24{bottom:5.280000pt;}
.y10{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y23{bottom:22.880000pt;}
.y5{bottom:40.000000pt;}
.y22{bottom:40.480000pt;}
.y9{bottom:53.760000pt;}
.y21{bottom:58.080000pt;}
.y4{bottom:67.840000pt;}
.y20{bottom:75.680000pt;}
.y7b{bottom:81.440000pt;}
.ya8{bottom:83.040000pt;}
.yc6{bottom:83.200000pt;}
.y3e{bottom:83.360000pt;}
.y39{bottom:85.440000pt;}
.y75{bottom:91.040000pt;}
.yac{bottom:93.280000pt;}
.y1f{bottom:93.440000pt;}
.y3{bottom:95.706667pt;}
.y7a{bottom:99.040000pt;}
.ya7{bottom:100.640000pt;}
.y38{bottom:100.800000pt;}
.y3d{bottom:101.120000pt;}
.y74{bottom:108.640000pt;}
.y1e{bottom:111.040000pt;}
.y37{bottom:116.160000pt;}
.y79{bottom:116.640000pt;}
.ya6{bottom:118.240000pt;}
.yc5{bottom:118.400000pt;}
.y3c{bottom:118.720000pt;}
.y2{bottom:124.826667pt;}
.y73{bottom:126.240000pt;}
.yab{bottom:128.640000pt;}
.y1d{bottom:128.666667pt;}
.y36{bottom:131.360000pt;}
.y78{bottom:134.240000pt;}
.ya5{bottom:136.026667pt;}
.y3b{bottom:136.346667pt;}
.y72{bottom:144.026667pt;}
.y1c{bottom:146.266667pt;}
.y35{bottom:147.866667pt;}
.y77{bottom:152.026667pt;}
.ya4{bottom:153.626667pt;}
.yc4{bottom:153.786667pt;}
.y3a{bottom:153.946667pt;}
.yb9{bottom:161.626667pt;}
.y1b{bottom:163.866667pt;}
.y71{bottom:169.626667pt;}
.ya3{bottom:171.226667pt;}
.yc3{bottom:171.386667pt;}
.y34{bottom:171.546667pt;}
.yb8{bottom:179.226667pt;}
.yaa{bottom:181.466667pt;}
.y1a{bottom:181.626667pt;}
.y70{bottom:187.226667pt;}
.ya2{bottom:188.826667pt;}
.yc2{bottom:188.986667pt;}
.y33{bottom:189.306667pt;}
.yb7{bottom:196.826667pt;}
.y19{bottom:199.226667pt;}
.y6f{bottom:204.826667pt;}
.ya1{bottom:206.426667pt;}
.yc1{bottom:206.586667pt;}
.y32{bottom:206.906667pt;}
.y76{bottom:209.466667pt;}
.yb6{bottom:214.426667pt;}
.y18{bottom:216.826667pt;}
.y6e{bottom:222.426667pt;}
.ya0{bottom:224.186667pt;}
.y31{bottom:224.506667pt;}
.ya9{bottom:232.186667pt;}
.y17{bottom:234.426667pt;}
.y6d{bottom:240.186667pt;}
.y9f{bottom:241.786667pt;}
.yc0{bottom:241.946667pt;}
.y30{bottom:242.106667pt;}
.yb5{bottom:249.786667pt;}
.y16{bottom:252.026667pt;}
.y6c{bottom:257.786667pt;}
.y9e{bottom:259.386667pt;}
.ybf{bottom:259.546667pt;}
.y2f{bottom:259.706667pt;}
.yb4{bottom:267.386667pt;}
.y15{bottom:269.786667pt;}
.y6b{bottom:275.386667pt;}
.y9d{bottom:276.986667pt;}
.ybe{bottom:277.146667pt;}
.y2e{bottom:277.466667pt;}
.yb3{bottom:284.986667pt;}
.y14{bottom:287.386667pt;}
.y6a{bottom:292.986667pt;}
.y9c{bottom:294.586667pt;}
.ybd{bottom:294.746667pt;}
.y2d{bottom:295.066667pt;}
.yb2{bottom:302.586667pt;}
.y13{bottom:304.986667pt;}
.y69{bottom:310.586667pt;}
.y9b{bottom:312.346667pt;}
.y2c{bottom:312.666667pt;}
.yb1{bottom:320.346667pt;}
.y12{bottom:322.586667pt;}
.y68{bottom:328.346667pt;}
.y9a{bottom:329.946667pt;}
.ybc{bottom:330.106667pt;}
.y2b{bottom:330.266667pt;}
.yb0{bottom:337.946667pt;}
.y67{bottom:345.946667pt;}
.ybb{bottom:347.226667pt;}
.y99{bottom:347.546667pt;}
.y2a{bottom:347.866667pt;}
.yaf{bottom:355.546667pt;}
.y66{bottom:363.586667pt;}
.y98{bottom:365.186667pt;}
.y29{bottom:365.666667pt;}
.yae{bottom:373.186667pt;}
.y65{bottom:381.186667pt;}
.y97{bottom:382.786667pt;}
.y28{bottom:383.266667pt;}
.yad{bottom:390.786667pt;}
.y64{bottom:398.786667pt;}
.y27{bottom:400.866667pt;}
.y96{bottom:408.546667pt;}
.y63{bottom:416.546667pt;}
.y26{bottom:418.466667pt;}
.y95{bottom:426.146667pt;}
.y62{bottom:434.146667pt;}
.y25{bottom:436.066667pt;}
.y94{bottom:443.746667pt;}
.y11{bottom:449.186667pt;}
.y61{bottom:451.746667pt;}
.y93{bottom:461.346667pt;}
.y60{bottom:469.346667pt;}
.y92{bottom:478.946667pt;}
.y5f{bottom:486.946667pt;}
.y91{bottom:496.706667pt;}
.y5e{bottom:504.706667pt;}
.y90{bottom:514.306667pt;}
.y5d{bottom:522.306667pt;}
.y8f{bottom:531.906667pt;}
.y5c{bottom:539.906667pt;}
.y8e{bottom:549.506667pt;}
.y5b{bottom:557.506667pt;}
.y8d{bottom:567.106667pt;}
.y5a{bottom:575.106667pt;}
.y8c{bottom:584.893333pt;}
.y59{bottom:592.893333pt;}
.y8b{bottom:602.493333pt;}
.y58{bottom:610.493333pt;}
.y8a{bottom:620.093333pt;}
.y57{bottom:628.093333pt;}
.y89{bottom:637.693333pt;}
.y56{bottom:645.693333pt;}
.y88{bottom:655.293333pt;}
.y55{bottom:663.293333pt;}
.y87{bottom:673.053333pt;}
.y54{bottom:681.053333pt;}
.y86{bottom:690.653333pt;}
.y53{bottom:698.653333pt;}
.y85{bottom:708.253333pt;}
.y52{bottom:716.253333pt;}
.y84{bottom:725.853333pt;}
.y51{bottom:733.853333pt;}
.y83{bottom:743.453333pt;}
.y50{bottom:751.453333pt;}
.y82{bottom:761.213333pt;}
.y4f{bottom:769.213333pt;}
.y81{bottom:778.813333pt;}
.yf{bottom:784.893333pt;}
.y4e{bottom:786.813333pt;}
.y80{bottom:796.413333pt;}
.y4d{bottom:804.453333pt;}
.ye{bottom:814.053333pt;}
.y4c{bottom:822.053333pt;}
.y7f{bottom:831.653333pt;}
.yd{bottom:836.293333pt;}
.y4b{bottom:839.653333pt;}
.y7e{bottom:849.413333pt;}
.yc{bottom:849.733333pt;}
.y4a{bottom:857.413333pt;}
.y7d{bottom:867.013333pt;}
.yb{bottom:869.093333pt;}
.y49{bottom:875.013333pt;}
.y7c{bottom:884.613333pt;}
.ya{bottom:891.333333pt;}
.y48{bottom:892.613333pt;}
.y47{bottom:910.213333pt;}
.y8{bottom:914.693333pt;}
.y46{bottom:927.813333pt;}
.y1{bottom:930.213333pt;}
.y45{bottom:945.573333pt;}
.y44{bottom:963.173333pt;}
.yba{bottom:967.813333pt;}
.y43{bottom:980.773333pt;}
.y42{bottom:998.373333pt;}
.y41{bottom:1015.973333pt;}
.y40{bottom:1033.760000pt;}
.y3f{bottom:1060.160000pt;}
.hc{height:23.232000pt;}
.h12{height:24.384375pt;}
.h13{height:29.061250pt;}
.ha{height:30.982500pt;}
.he{height:37.479688pt;}
.hf{height:40.021563pt;}
.h8{height:41.543750pt;}
.h4{height:43.355000pt;}
.h14{height:43.782500pt;}
.h11{height:45.961250pt;}
.h9{height:47.310625pt;}
.hb{height:47.621250pt;}
.h10{height:49.542500pt;}
.h3{height:55.136250pt;}
.h5{height:57.375000pt;}
.h7{height:60.057813pt;}
.h6{height:65.812500pt;}
.h2{height:144.346667pt;}
.hd{height:335.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w4{width:128.512000pt;}
.w8{width:136.026667pt;}
.w2{width:550.693333pt;}
.w7{width:557.413333pt;}
.w6{width:693.440000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.240000pt;}
.xb{left:71.999988pt;}
.xc{left:96.031988pt;}
.x5{left:121.146667pt;}
.x8{left:420.893322pt;}
.x9{left:444.893322pt;}
.xa{left:468.893322pt;}
.x3{left:598.693333pt;}
.x7{left:607.653333pt;}
.x4{left:617.413333pt;}
}




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