
    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_d4d6e9a7749989fc71572860.woff2')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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_1eea069bf01ce40f6b68e681.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_46ceb5eb62a46d0c3f037583.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_4bb166a661800e84240f1d13.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_a5f976c373c0581c614c579e.woff2')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_5d1d105aaec024e8c171e713.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6731bf6064d9da16286f6a59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_c1aac33bcc27f5b49eeecbe2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_89f0da2bb04e1da9b0cb2529.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_58985701b4c755d552b4c977.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;}
.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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-60.660000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.080000px;}
.lsb{letter-spacing:2.340000px;}
.lse{letter-spacing:5.940000px;}
.ls8{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws7{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._3{width:2.370480px;}
._b{width:3.402000px;}
._e{width:5.022000px;}
._d{width:6.156000px;}
._7{width:7.587360px;}
._6{width:8.694000px;}
._c{width:9.828000px;}
._8{width:10.854000px;}
._11{width:12.361920px;}
._14{width:13.689120px;}
._5{width:16.650000px;}
._12{width:18.378000px;}
._a{width:19.633920px;}
._9{width:20.736000px;}
._15{width:21.899280px;}
._f{width:23.436000px;}
._10{width:24.768480px;}
._13{width:26.413200px;}
._17{width:126.272880px;}
._16{width:186.120000px;}
._18{width:201.036000px;}
._2{width:902.526000px;}
._4{width:2840.184000px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:3.600000px;}
.y43{bottom:3.765000px;}
.yb0{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y59{bottom:4.495500px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4c{bottom:10.255500px;}
.y4b{bottom:17.815500px;}
.yaf{bottom:20.880000px;}
.y42{bottom:21.045000px;}
.yb5{bottom:21.060000px;}
.yc0{bottom:21.090000px;}
.y58{bottom:21.235500px;}
.y4{bottom:23.070000px;}
.y57{bottom:37.975500px;}
.yb8{bottom:38.160000px;}
.y41{bottom:38.325000px;}
.yb4{bottom:38.340000px;}
.ybf{bottom:38.370000px;}
.y4a{bottom:47.875500px;}
.y3{bottom:48.090000px;}
.y56{bottom:55.435500px;}
.yb7{bottom:55.440000px;}
.yba{bottom:55.485000px;}
.y40{bottom:55.605000px;}
.yb3{bottom:55.620000px;}
.ybe{bottom:55.650000px;}
.y7{bottom:57.600000px;}
.y49{bottom:59.395500px;}
.y55{bottom:71.269500px;}
.y48{bottom:72.529500px;}
.y3f{bottom:72.750000px;}
.yb2{bottom:72.900000px;}
.y54{bottom:86.929500px;}
.y44{bottom:89.500500px;}
.y3e{bottom:90.030000px;}
.ydd{bottom:91.296000px;}
.y86{bottom:93.636000px;}
.y47{bottom:94.309500px;}
.y53{bottom:99.529500px;}
.y8d{bottom:102.096000px;}
.yad{bottom:105.876000px;}
.y52{bottom:106.009500px;}
.y85{bottom:107.136000px;}
.y3d{bottom:107.310000px;}
.y8c{bottom:115.596000px;}
.ydc{bottom:117.936000px;}
.y51{bottom:121.849500px;}
.yac{bottom:123.156000px;}
.y3c{bottom:124.590000px;}
.ydb{bottom:135.216000px;}
.y50{bottom:137.329500px;}
.yab{bottom:140.436000px;}
.y3b{bottom:141.870000px;}
.yda{bottom:152.490000px;}
.y4f{bottom:152.989500px;}
.y46{bottom:156.409500px;}
.yaa{bottom:157.710000px;}
.y3a{bottom:159.150000px;}
.y45{bottom:167.029500px;}
.y4e{bottom:168.469500px;}
.yd9{bottom:169.590000px;}
.ya9{bottom:174.810000px;}
.y39{bottom:176.250000px;}
.y4d{bottom:183.589500px;}
.yd8{bottom:186.870000px;}
.ya8{bottom:192.090000px;}
.y38{bottom:193.530000px;}
.yd7{bottom:204.150000px;}
.ya7{bottom:209.370000px;}
.y37{bottom:210.810000px;}
.yd6{bottom:221.430000px;}
.ya6{bottom:226.650000px;}
.y36{bottom:228.090000px;}
.yd5{bottom:238.710000px;}
.ya5{bottom:243.930000px;}
.y35{bottom:245.370000px;}
.yd4{bottom:255.810000px;}
.ya4{bottom:261.210000px;}
.y34{bottom:262.650000px;}
.yd3{bottom:273.090000px;}
.ya3{bottom:278.310000px;}
.y33{bottom:279.390000px;}
.y1f{bottom:280.290000px;}
.y11{bottom:286.425000px;}
.yd2{bottom:290.370000px;}
.ya2{bottom:295.590000px;}
.y32{bottom:296.670000px;}
.y1e{bottom:304.410000px;}
.yd1{bottom:307.650000px;}
.y31{bottom:312.150000px;}
.ya1{bottom:312.870000px;}
.yd0{bottom:324.930000px;}
.y30{bottom:327.660000px;}
.y1d{bottom:328.740000px;}
.ya0{bottom:330.150000px;}
.ycf{bottom:342.210000px;}
.y2f{bottom:343.140000px;}
.y9f{bottom:347.430000px;}
.y1c{bottom:352.860000px;}
.y2e{bottom:358.800000px;}
.yce{bottom:359.355000px;}
.y9e{bottom:364.395000px;}
.y2d{bottom:374.280000px;}
.ycd{bottom:376.635000px;}
.y1b{bottom:376.980000px;}
.y2c{bottom:389.760000px;}
.y9d{bottom:390.855000px;}
.ycc{bottom:393.915000px;}
.y84{bottom:398.775000px;}
.y1a{bottom:401.100000px;}
.y2b{bottom:405.240000px;}
.y9c{bottom:408.135000px;}
.ycb{bottom:411.195000px;}
.y83{bottom:416.775000px;}
.y2a{bottom:420.900000px;}
.y19{bottom:425.220000px;}
.y9b{bottom:425.415000px;}
.yca{bottom:428.475000px;}
.y82{bottom:434.415000px;}
.y29{bottom:436.380000px;}
.y9a{bottom:442.695000px;}
.yc9{bottom:445.755000px;}
.y18{bottom:449.340000px;}
.y81{bottom:451.695000px;}
.y28{bottom:451.860000px;}
.y99{bottom:459.615000px;}
.yc8{bottom:462.855000px;}
.y27{bottom:467.340000px;}
.y80{bottom:468.975000px;}
.y17{bottom:473.460000px;}
.y98{bottom:477.255000px;}
.yc7{bottom:480.135000px;}
.y26{bottom:483.000000px;}
.y7f{bottom:486.255000px;}
.y97{bottom:494.355000px;}
.yc6{bottom:497.415000px;}
.y16{bottom:497.760000px;}
.y25{bottom:498.480000px;}
.y7e{bottom:503.355000px;}
.y96{bottom:511.635000px;}
.y24{bottom:513.960000px;}
.yc5{bottom:514.695000px;}
.y7d{bottom:520.635000px;}
.y15{bottom:521.880000px;}
.y95{bottom:528.915000px;}
.y23{bottom:529.440000px;}
.yc4{bottom:531.975000px;}
.y7c{bottom:537.555000px;}
.y8b{bottom:537.915000px;}
.y22{bottom:544.920000px;}
.y14{bottom:546.000000px;}
.y94{bottom:546.195000px;}
.yc3{bottom:548.715000px;}
.y7b{bottom:555.195000px;}
.y21{bottom:560.580000px;}
.y93{bottom:563.475000px;}
.yc2{bottom:565.995000px;}
.y13{bottom:570.120000px;}
.y7a{bottom:572.475000px;}
.y92{bottom:580.575000px;}
.yc1{bottom:583.635000px;}
.y8a{bottom:589.215000px;}
.y79{bottom:589.575000px;}
.y20{bottom:591.225000px;}
.y12{bottom:594.285000px;}
.y91{bottom:597.855000px;}
.y78{bottom:606.855000px;}
.y90{bottom:615.165000px;}
.y77{bottom:624.165000px;}
.y8f{bottom:632.085000px;}
.y76{bottom:641.445000px;}
.y75{bottom:658.725000px;}
.y74{bottom:676.005000px;}
.ybd{bottom:685.005000px;}
.y73{bottom:693.105000px;}
.y72{bottom:710.385000px;}
.y71{bottom:727.305000px;}
.y89{bottom:727.665000px;}
.y70{bottom:744.945000px;}
.ybc{bottom:754.665000px;}
.y6f{bottom:762.225000px;}
.y6e{bottom:779.505000px;}
.y6d{bottom:796.605000px;}
.y6c{bottom:813.885000px;}
.yb9{bottom:824.505000px;}
.y6b{bottom:831.165000px;}
.y6a{bottom:848.085000px;}
.y88{bottom:848.445000px;}
.y69{bottom:865.725000px;}
.y68{bottom:882.870000px;}
.yb6{bottom:894.210000px;}
.y10{bottom:897.630000px;}
.y67{bottom:900.150000px;}
.yf{bottom:914.910000px;}
.y66{bottom:917.430000px;}
.ye{bottom:932.190000px;}
.y65{bottom:934.710000px;}
.yd{bottom:949.470000px;}
.y64{bottom:951.990000px;}
.yb1{bottom:963.870000px;}
.yc{bottom:966.570000px;}
.y63{bottom:969.270000px;}
.yb{bottom:983.850000px;}
.y8e{bottom:986.010000px;}
.y62{bottom:986.370000px;}
.y61{bottom:1003.650000px;}
.ya{bottom:1019.310000px;}
.y60{bottom:1020.570000px;}
.y87{bottom:1020.930000px;}
.y5f{bottom:1038.210000px;}
.y9{bottom:1043.430000px;}
.yae{bottom:1050.990000px;}
.y5e{bottom:1055.490000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.yde{bottom:1089.510000px;}
.y5c{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h12{height:5.650313px;}
.h13{height:27.540000px;}
.h10{height:29.678906px;}
.h18{height:34.380000px;}
.hf{height:35.332031px;}
.hc{height:40.985156px;}
.h17{height:41.726953px;}
.hb{height:42.086250px;}
.hd{height:52.971680px;}
.h11{height:54.421875px;}
.h7{height:57.324375px;}
.h16{height:58.621992px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.h15{height:61.423863px;}
.h14{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h1a{height:68.940000px;}
.h1b{height:68.976000px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h1c{height:86.250000px;}
.h19{height:86.400000px;}
.h4{height:117.180000px;}
.he{height:196.195500px;}
.ha{height:603.810000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.040000px;}
.w7{width:113.571000px;}
.w4{width:132.651000px;}
.wa{width:149.430000px;}
.w6{width:162.720000px;}
.w8{width:174.855000px;}
.w9{width:181.455000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x17{left:22.500000px;}
.x16{left:28.980000px;}
.x10{left:43.740000px;}
.x1b{left:47.700000px;}
.x11{left:50.760000px;}
.xf{left:55.080000px;}
.x1f{left:59.400000px;}
.x15{left:67.134000px;}
.x13{left:75.234000px;}
.x1{left:78.327000px;}
.x14{left:83.694000px;}
.x9{left:86.436000px;}
.x2{left:95.763000px;}
.x1c{left:102.774000px;}
.x1a{left:106.734000px;}
.x1e{left:113.436000px;}
.x12{left:124.554000px;}
.x24{left:135.936000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x18{left:219.090000px;}
.x23{left:227.550000px;}
.x25{left:250.230000px;}
.x21{left:265.935000px;}
.x26{left:425.820000px;}
.xa{left:523.005000px;}
.xd{left:559.005000px;}
.xb{left:579.165000px;}
.xc{left:585.330000px;}
.xe{left:591.450000px;}
.x27{left:608.190000px;}
.x20{left:641.310000px;}
.x22{left:673.890000px;}
.x8{left:766.080000px;}
.x7{left:792.000000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-53.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.960000pt;}
.lsb{letter-spacing:2.080000pt;}
.lse{letter-spacing:5.280000pt;}
.ls8{letter-spacing:40.912640pt;}
.lsa{letter-spacing:57.040640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._3{width:2.107093pt;}
._b{width:3.024000pt;}
._e{width:4.464000pt;}
._d{width:5.472000pt;}
._7{width:6.744320pt;}
._6{width:7.728000pt;}
._c{width:8.736000pt;}
._8{width:9.648000pt;}
._11{width:10.988373pt;}
._14{width:12.168107pt;}
._5{width:14.800000pt;}
._12{width:16.336000pt;}
._a{width:17.452373pt;}
._9{width:18.432000pt;}
._15{width:19.466027pt;}
._f{width:20.832000pt;}
._10{width:22.016427pt;}
._13{width:23.478400pt;}
._17{width:112.242560pt;}
._16{width:165.440000pt;}
._18{width:178.698667pt;}
._2{width:802.245333pt;}
._4{width:2524.608000pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:3.200000pt;}
.y43{bottom:3.346667pt;}
.yb0{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y59{bottom:3.996000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4c{bottom:9.116000pt;}
.y4b{bottom:15.836000pt;}
.yaf{bottom:18.560000pt;}
.y42{bottom:18.706667pt;}
.yb5{bottom:18.720000pt;}
.yc0{bottom:18.746667pt;}
.y58{bottom:18.876000pt;}
.y4{bottom:20.506667pt;}
.y57{bottom:33.756000pt;}
.yb8{bottom:33.920000pt;}
.y41{bottom:34.066667pt;}
.yb4{bottom:34.080000pt;}
.ybf{bottom:34.106667pt;}
.y4a{bottom:42.556000pt;}
.y3{bottom:42.746667pt;}
.y56{bottom:49.276000pt;}
.yb7{bottom:49.280000pt;}
.yba{bottom:49.320000pt;}
.y40{bottom:49.426667pt;}
.yb3{bottom:49.440000pt;}
.ybe{bottom:49.466667pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:52.796000pt;}
.y55{bottom:63.350667pt;}
.y48{bottom:64.470667pt;}
.y3f{bottom:64.666667pt;}
.yb2{bottom:64.800000pt;}
.y54{bottom:77.270667pt;}
.y44{bottom:79.556000pt;}
.y3e{bottom:80.026667pt;}
.ydd{bottom:81.152000pt;}
.y86{bottom:83.232000pt;}
.y47{bottom:83.830667pt;}
.y53{bottom:88.470667pt;}
.y8d{bottom:90.752000pt;}
.yad{bottom:94.112000pt;}
.y52{bottom:94.230667pt;}
.y85{bottom:95.232000pt;}
.y3d{bottom:95.386667pt;}
.y8c{bottom:102.752000pt;}
.ydc{bottom:104.832000pt;}
.y51{bottom:108.310667pt;}
.yac{bottom:109.472000pt;}
.y3c{bottom:110.746667pt;}
.ydb{bottom:120.192000pt;}
.y50{bottom:122.070667pt;}
.yab{bottom:124.832000pt;}
.y3b{bottom:126.106667pt;}
.yda{bottom:135.546667pt;}
.y4f{bottom:135.990667pt;}
.y46{bottom:139.030667pt;}
.yaa{bottom:140.186667pt;}
.y3a{bottom:141.466667pt;}
.y45{bottom:148.470667pt;}
.y4e{bottom:149.750667pt;}
.yd9{bottom:150.746667pt;}
.ya9{bottom:155.386667pt;}
.y39{bottom:156.666667pt;}
.y4d{bottom:163.190667pt;}
.yd8{bottom:166.106667pt;}
.ya8{bottom:170.746667pt;}
.y38{bottom:172.026667pt;}
.yd7{bottom:181.466667pt;}
.ya7{bottom:186.106667pt;}
.y37{bottom:187.386667pt;}
.yd6{bottom:196.826667pt;}
.ya6{bottom:201.466667pt;}
.y36{bottom:202.746667pt;}
.yd5{bottom:212.186667pt;}
.ya5{bottom:216.826667pt;}
.y35{bottom:218.106667pt;}
.yd4{bottom:227.386667pt;}
.ya4{bottom:232.186667pt;}
.y34{bottom:233.466667pt;}
.yd3{bottom:242.746667pt;}
.ya3{bottom:247.386667pt;}
.y33{bottom:248.346667pt;}
.y1f{bottom:249.146667pt;}
.y11{bottom:254.600000pt;}
.yd2{bottom:258.106667pt;}
.ya2{bottom:262.746667pt;}
.y32{bottom:263.706667pt;}
.y1e{bottom:270.586667pt;}
.yd1{bottom:273.466667pt;}
.y31{bottom:277.466667pt;}
.ya1{bottom:278.106667pt;}
.yd0{bottom:288.826667pt;}
.y30{bottom:291.253333pt;}
.y1d{bottom:292.213333pt;}
.ya0{bottom:293.466667pt;}
.ycf{bottom:304.186667pt;}
.y2f{bottom:305.013333pt;}
.y9f{bottom:308.826667pt;}
.y1c{bottom:313.653333pt;}
.y2e{bottom:318.933333pt;}
.yce{bottom:319.426667pt;}
.y9e{bottom:323.906667pt;}
.y2d{bottom:332.693333pt;}
.ycd{bottom:334.786667pt;}
.y1b{bottom:335.093333pt;}
.y2c{bottom:346.453333pt;}
.y9d{bottom:347.426667pt;}
.ycc{bottom:350.146667pt;}
.y84{bottom:354.466667pt;}
.y1a{bottom:356.533333pt;}
.y2b{bottom:360.213333pt;}
.y9c{bottom:362.786667pt;}
.ycb{bottom:365.506667pt;}
.y83{bottom:370.466667pt;}
.y2a{bottom:374.133333pt;}
.y19{bottom:377.973333pt;}
.y9b{bottom:378.146667pt;}
.yca{bottom:380.866667pt;}
.y82{bottom:386.146667pt;}
.y29{bottom:387.893333pt;}
.y9a{bottom:393.506667pt;}
.yc9{bottom:396.226667pt;}
.y18{bottom:399.413333pt;}
.y81{bottom:401.506667pt;}
.y28{bottom:401.653333pt;}
.y99{bottom:408.546667pt;}
.yc8{bottom:411.426667pt;}
.y27{bottom:415.413333pt;}
.y80{bottom:416.866667pt;}
.y17{bottom:420.853333pt;}
.y98{bottom:424.226667pt;}
.yc7{bottom:426.786667pt;}
.y26{bottom:429.333333pt;}
.y7f{bottom:432.226667pt;}
.y97{bottom:439.426667pt;}
.yc6{bottom:442.146667pt;}
.y16{bottom:442.453333pt;}
.y25{bottom:443.093333pt;}
.y7e{bottom:447.426667pt;}
.y96{bottom:454.786667pt;}
.y24{bottom:456.853333pt;}
.yc5{bottom:457.506667pt;}
.y7d{bottom:462.786667pt;}
.y15{bottom:463.893333pt;}
.y95{bottom:470.146667pt;}
.y23{bottom:470.613333pt;}
.yc4{bottom:472.866667pt;}
.y7c{bottom:477.826667pt;}
.y8b{bottom:478.146667pt;}
.y22{bottom:484.373333pt;}
.y14{bottom:485.333333pt;}
.y94{bottom:485.506667pt;}
.yc3{bottom:487.746667pt;}
.y7b{bottom:493.506667pt;}
.y21{bottom:498.293333pt;}
.y93{bottom:500.866667pt;}
.yc2{bottom:503.106667pt;}
.y13{bottom:506.773333pt;}
.y7a{bottom:508.866667pt;}
.y92{bottom:516.066667pt;}
.yc1{bottom:518.786667pt;}
.y8a{bottom:523.746667pt;}
.y79{bottom:524.066667pt;}
.y20{bottom:525.533333pt;}
.y12{bottom:528.253333pt;}
.y91{bottom:531.426667pt;}
.y78{bottom:539.426667pt;}
.y90{bottom:546.813333pt;}
.y77{bottom:554.813333pt;}
.y8f{bottom:561.853333pt;}
.y76{bottom:570.173333pt;}
.y75{bottom:585.533333pt;}
.y74{bottom:600.893333pt;}
.ybd{bottom:608.893333pt;}
.y73{bottom:616.093333pt;}
.y72{bottom:631.453333pt;}
.y71{bottom:646.493333pt;}
.y89{bottom:646.813333pt;}
.y70{bottom:662.173333pt;}
.ybc{bottom:670.813333pt;}
.y6f{bottom:677.533333pt;}
.y6e{bottom:692.893333pt;}
.y6d{bottom:708.093333pt;}
.y6c{bottom:723.453333pt;}
.yb9{bottom:732.893333pt;}
.y6b{bottom:738.813333pt;}
.y6a{bottom:753.853333pt;}
.y88{bottom:754.173333pt;}
.y69{bottom:769.533333pt;}
.y68{bottom:784.773333pt;}
.yb6{bottom:794.853333pt;}
.y10{bottom:797.893333pt;}
.y67{bottom:800.133333pt;}
.yf{bottom:813.253333pt;}
.y66{bottom:815.493333pt;}
.ye{bottom:828.613333pt;}
.y65{bottom:830.853333pt;}
.yd{bottom:843.973333pt;}
.y64{bottom:846.213333pt;}
.yb1{bottom:856.773333pt;}
.yc{bottom:859.173333pt;}
.y63{bottom:861.573333pt;}
.yb{bottom:874.533333pt;}
.y8e{bottom:876.453333pt;}
.y62{bottom:876.773333pt;}
.y61{bottom:892.133333pt;}
.ya{bottom:906.053333pt;}
.y60{bottom:907.173333pt;}
.y87{bottom:907.493333pt;}
.y5f{bottom:922.853333pt;}
.y9{bottom:927.493333pt;}
.yae{bottom:934.213333pt;}
.y5e{bottom:938.213333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.yde{bottom:968.453333pt;}
.y5c{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h12{height:5.022500pt;}
.h13{height:24.480000pt;}
.h10{height:26.381250pt;}
.h18{height:30.560000pt;}
.hf{height:31.406250pt;}
.hc{height:36.431250pt;}
.h17{height:37.090625pt;}
.hb{height:37.410000pt;}
.hd{height:47.085938pt;}
.h11{height:48.375000pt;}
.h7{height:50.955000pt;}
.h16{height:52.108438pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.h15{height:54.598989pt;}
.h14{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1a{height:61.280000pt;}
.h1b{height:61.312000pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h1c{height:76.666667pt;}
.h19{height:76.800000pt;}
.h4{height:104.160000pt;}
.he{height:174.396000pt;}
.ha{height:536.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.480000pt;}
.w7{width:100.952000pt;}
.w4{width:117.912000pt;}
.wa{width:132.826667pt;}
.w6{width:144.640000pt;}
.w8{width:155.426667pt;}
.w9{width:161.293333pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x17{left:20.000000pt;}
.x16{left:25.760000pt;}
.x10{left:38.880000pt;}
.x1b{left:42.400000pt;}
.x11{left:45.120000pt;}
.xf{left:48.960000pt;}
.x1f{left:52.800000pt;}
.x15{left:59.674667pt;}
.x13{left:66.874667pt;}
.x1{left:69.624000pt;}
.x14{left:74.394667pt;}
.x9{left:76.832000pt;}
.x2{left:85.122667pt;}
.x1c{left:91.354667pt;}
.x1a{left:94.874667pt;}
.x1e{left:100.832000pt;}
.x12{left:110.714667pt;}
.x24{left:120.832000pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x18{left:194.746667pt;}
.x23{left:202.266667pt;}
.x25{left:222.426667pt;}
.x21{left:236.386667pt;}
.x26{left:378.506667pt;}
.xa{left:464.893333pt;}
.xd{left:496.893333pt;}
.xb{left:514.813333pt;}
.xc{left:520.293333pt;}
.xe{left:525.733333pt;}
.x27{left:540.613333pt;}
.x20{left:570.053333pt;}
.x22{left:599.013333pt;}
.x8{left:680.960000pt;}
.x7{left:704.000000pt;}
}




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