
    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_6c81d0ed91fee1a6aee96226.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_896ec9aa0e65a4db0a0f1b28.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_c47164800daf072de2a24a1a.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_8a84380afbaf2cfb0c696049.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_53622188d8881e7411a0a636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5e7524a0dd91a32188d1f8f4.woff2')format("woff");}.ff8{font-family:ff8;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: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_191949d05800a31cb12829d4.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_bf0633000b343cfd0055fe53.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_b273c01d75e1415a29fed287.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933594;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:-68.400000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.238800px;}
.ls9{letter-spacing:-0.226200px;}
.ls5{letter-spacing:-0.159600px;}
.lse{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.096600px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.924000px;}
.lsf{letter-spacing:1.080000px;}
.ls11{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.lsb{letter-spacing:201.060000px;}
.ls0{letter-spacing:1740.696000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-25.452840px;}
.ws3{word-spacing:-25.196640px;}
.ws4{word-spacing:-25.117440px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.wsf{word-spacing:-16.020000px;}
.wsd{word-spacing:-15.864000px;}
.ws11{word-spacing:-15.606000px;}
.wsc{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws10{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.213800px;}
.ws6{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._8{width:2.024400px;}
._2{width:3.036960px;}
._3{width:4.098720px;}
._7{width:5.994000px;}
._6{width:7.074000px;}
._10{width:8.187120px;}
._5{width:9.936000px;}
._a{width:11.052480px;}
._9{width:12.096000px;}
._14{width:13.864320px;}
._e{width:16.091760px;}
._11{width:17.210880px;}
._12{width:18.346320px;}
._15{width:19.497360px;}
._f{width:21.573360px;}
._c{width:22.639680px;}
._b{width:24.138000px;}
._1a{width:30.119040px;}
._19{width:31.493520px;}
._17{width:37.865280px;}
._18{width:47.945760px;}
._16{width:57.250080px;}
._13{width:84.312000px;}
._d{width:201.240000px;}
._4{width:202.680000px;}
.fc3{color:rgb(0,0,10);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(102,102,102);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.240000px;}
.ya5{bottom:3.405000px;}
.yab{bottom:3.585000px;}
.y4d{bottom:3.600000px;}
.y42{bottom:3.765000px;}
.y84{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y58{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y7c{bottom:11.880000px;}
.ya1{bottom:12.045000px;}
.y82{bottom:12.240000px;}
.y86{bottom:12.405000px;}
.y4c{bottom:14.040000px;}
.y7f{bottom:20.520000px;}
.ya4{bottom:20.685000px;}
.y41{bottom:20.865000px;}
.y83{bottom:20.880000px;}
.y87{bottom:21.045000px;}
.y4{bottom:23.040000px;}
.y7a{bottom:29.160000px;}
.ya0{bottom:29.325000px;}
.y56{bottom:37.260000px;}
.y40{bottom:37.785000px;}
.y7e{bottom:37.800000px;}
.y9d{bottom:38.010000px;}
.y8c{bottom:38.145000px;}
.y4b{bottom:38.160000px;}
.y7b{bottom:46.440000px;}
.y9f{bottom:46.650000px;}
.y3{bottom:48.090000px;}
.y4a{bottom:51.300000px;}
.y55{bottom:52.740000px;}
.y7d{bottom:55.080000px;}
.ya3{bottom:55.290000px;}
.y3f{bottom:55.425000px;}
.y8{bottom:58.500000px;}
.y9e{bottom:63.750000px;}
.y49{bottom:64.260000px;}
.y54{bottom:70.200000px;}
.ya2{bottom:72.390000px;}
.y3e{bottom:72.705000px;}
.y48{bottom:77.220000px;}
.y7{bottom:78.660000px;}
.y53{bottom:86.040000px;}
.y3d{bottom:89.985000px;}
.y47{bottom:90.360000px;}
.y94{bottom:100.620000px;}
.y52{bottom:101.550000px;}
.y3c{bottom:107.085000px;}
.y43{bottom:111.600000px;}
.y46{bottom:112.170000px;}
.y93{bottom:117.900000px;}
.y51{bottom:119.010000px;}
.y3b{bottom:124.410000px;}
.y50{bottom:134.850000px;}
.y92{bottom:135.180000px;}
.y3a{bottom:141.690000px;}
.y4f{bottom:150.330000px;}
.y91{bottom:152.460000px;}
.yc4{bottom:158.400000px;}
.y39{bottom:158.970000px;}
.y4e{bottom:165.810000px;}
.y90{bottom:169.560000px;}
.y45{bottom:174.270000px;}
.yc3{bottom:175.680000px;}
.y38{bottom:176.250000px;}
.y44{bottom:184.890000px;}
.y8f{bottom:186.840000px;}
.yc2{bottom:192.780000px;}
.y37{bottom:193.530000px;}
.y8e{bottom:204.120000px;}
.yc1{bottom:210.090000px;}
.y36{bottom:210.630000px;}
.y8d{bottom:221.070000px;}
.yae{bottom:221.430000px;}
.yc0{bottom:227.370000px;}
.y35{bottom:227.910000px;}
.y8b{bottom:235.665000px;}
.yad{bottom:238.710000px;}
.ybf{bottom:244.650000px;}
.y34{bottom:245.190000px;}
.yac{bottom:255.810000px;}
.ybe{bottom:261.930000px;}
.y33{bottom:262.470000px;}
.yaa{bottom:270.225000px;}
.ybd{bottom:279.210000px;}
.y32{bottom:279.750000px;}
.y1e{bottom:290.910000px;}
.ybc{bottom:296.310000px;}
.y31{bottom:297.030000px;}
.y8a{bottom:305.325000px;}
.ybb{bottom:313.590000px;}
.y30{bottom:314.130000px;}
.y1d{bottom:315.030000px;}
.ya9{bottom:322.605000px;}
.y10{bottom:324.405000px;}
.yba{bottom:330.870000px;}
.y2f{bottom:331.410000px;}
.y1c{bottom:339.150000px;}
.y89{bottom:340.605000px;}
.yb9{bottom:348.150000px;}
.y2e{bottom:348.690000px;}
.ya8{bottom:358.605000px;}
.y1b{bottom:363.480000px;}
.yb8{bottom:365.430000px;}
.y2d{bottom:366.000000px;}
.y88{bottom:375.885000px;}
.ya7{bottom:376.605000px;}
.yb7{bottom:382.710000px;}
.y2c{bottom:383.280000px;}
.y1a{bottom:387.600000px;}
.ya6{bottom:394.605000px;}
.yb6{bottom:399.810000px;}
.y2b{bottom:400.560000px;}
.y85{bottom:411.165000px;}
.y19{bottom:411.720000px;}
.y9c{bottom:412.605000px;}
.yb5{bottom:417.090000px;}
.y2a{bottom:417.660000px;}
.yb4{bottom:434.370000px;}
.y29{bottom:434.940000px;}
.y18{bottom:435.840000px;}
.y81{bottom:446.475000px;}
.yb3{bottom:451.695000px;}
.y28{bottom:451.860000px;}
.y17{bottom:459.960000px;}
.yb2{bottom:468.975000px;}
.y27{bottom:477.960000px;}
.y79{bottom:481.755000px;}
.y16{bottom:484.080000px;}
.yb1{bottom:486.255000px;}
.y26{bottom:493.440000px;}
.y9b{bottom:503.355000px;}
.y15{bottom:508.380000px;}
.y25{bottom:509.100000px;}
.y9a{bottom:520.635000px;}
.y24{bottom:524.580000px;}
.y14{bottom:532.500000px;}
.y99{bottom:537.555000px;}
.yb0{bottom:537.915000px;}
.y23{bottom:540.060000px;}
.y78{bottom:555.195000px;}
.y22{bottom:555.540000px;}
.y13{bottom:556.620000px;}
.y21{bottom:571.200000px;}
.y77{bottom:572.475000px;}
.y12{bottom:580.740000px;}
.y20{bottom:586.680000px;}
.y76{bottom:589.575000px;}
.y1f{bottom:601.845000px;}
.y11{bottom:604.905000px;}
.y75{bottom:606.495000px;}
.y98{bottom:606.855000px;}
.y74{bottom:624.135000px;}
.y73{bottom:641.415000px;}
.y72{bottom:658.695000px;}
.y71{bottom:675.975000px;}
.y70{bottom:693.105000px;}
.y6f{bottom:710.385000px;}
.y6e{bottom:727.665000px;}
.y6d{bottom:744.945000px;}
.y6c{bottom:762.225000px;}
.y6b{bottom:779.505000px;}
.y6a{bottom:796.605000px;}
.y69{bottom:813.885000px;}
.y68{bottom:831.165000px;}
.y67{bottom:848.445000px;}
.y66{bottom:865.725000px;}
.y65{bottom:882.825000px;}
.y64{bottom:900.105000px;}
.y63{bottom:917.430000px;}
.yaf{bottom:934.350000px;}
.y62{bottom:934.710000px;}
.yf{bottom:942.090000px;}
.y61{bottom:951.990000px;}
.ye{bottom:954.150000px;}
.y60{bottom:969.270000px;}
.yd{bottom:971.430000px;}
.y97{bottom:986.010000px;}
.y5f{bottom:986.370000px;}
.yc{bottom:1000.230000px;}
.y5e{bottom:1003.290000px;}
.y96{bottom:1003.650000px;}
.yb{bottom:1019.850000px;}
.y5d{bottom:1020.930000px;}
.y5c{bottom:1038.210000px;}
.ya{bottom:1044.150000px;}
.y5b{bottom:1055.490000px;}
.y9{bottom:1071.870000px;}
.y5a{bottom:1072.410000px;}
.y95{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y59{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hb{height:8.905078px;}
.h1c{height:17.265000px;}
.h13{height:27.540000px;}
.h18{height:34.365000px;}
.h1a{height:34.545000px;}
.h19{height:34.581000px;}
.ha{height:38.158594px;}
.h9{height:39.346875px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h1e{height:42.894141px;}
.h1d{height:51.645000px;}
.hf{height:52.971680px;}
.h12{height:54.421875px;}
.h6{height:57.324375px;}
.h10{height:58.651172px;}
.h15{height:59.439023px;}
.h8{height:60.226875px;}
.h16{height:61.423863px;}
.h14{height:64.002656px;}
.h7{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h17{height:68.925000px;}
.h2{height:84.990000px;}
.h1b{height:86.241000px;}
.h4{height:117.180000px;}
.h11{height:212.070000px;}
.hc{height:614.430000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:63.921000px;}
.w7{width:80.265000px;}
.wc{width:84.945000px;}
.wa{width:92.505000px;}
.w8{width:92.721000px;}
.wb{width:92.901000px;}
.w9{width:93.996000px;}
.w11{width:103.485000px;}
.w2{width:104.076000px;}
.w12{width:106.221000px;}
.w10{width:106.416000px;}
.wf{width:109.260000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w13{width:492.210000px;}
.wd{width:541.530000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x18{left:8.085000px;}
.x35{left:9.705000px;}
.x27{left:11.325000px;}
.x4{left:12.765000px;}
.x23{left:14.220000px;}
.x13{left:15.471000px;}
.x6{left:17.265000px;}
.x2c{left:18.540000px;}
.x16{left:20.691000px;}
.x29{left:21.960000px;}
.x15{left:23.751000px;}
.x21{left:25.770000px;}
.x14{left:27.171000px;}
.x1c{left:29.151000px;}
.x34{left:32.565000px;}
.x24{left:34.380000px;}
.x32{left:35.640000px;}
.x2b{left:36.885000px;}
.x2a{left:39.420000px;}
.xe{left:43.731000px;}
.x38{left:45.570000px;}
.x1b{left:47.691000px;}
.x37{left:49.320000px;}
.xf{left:50.751000px;}
.xd{left:55.071000px;}
.x19{left:62.130000px;}
.x1d{left:66.225000px;}
.x12{left:68.205000px;}
.x11{left:75.585000px;}
.x1{left:78.300000px;}
.x7{left:86.436000px;}
.x2{left:95.790000px;}
.x1a{left:103.305000px;}
.x39{left:113.436000px;}
.xb{left:119.196000px;}
.x2e{left:122.070000px;}
.x10{left:124.545000px;}
.x5{left:141.330000px;}
.x1f{left:175.905000px;}
.x3{left:182.385000px;}
.xa{left:193.350000px;}
.x2f{left:200.565000px;}
.x17{left:219.105000px;}
.x2d{left:243.570000px;}
.x20{left:257.085000px;}
.x30{left:265.215000px;}
.x22{left:350.715000px;}
.x31{left:375.195000px;}
.x25{left:445.620000px;}
.x33{left:482.340000px;}
.x26{left:538.860000px;}
.x36{left:586.560000px;}
.x28{left:632.490000px;}
.x9{left:766.050000px;}
.x8{left:790.170000px;}
.xc{left:806.940000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.212267pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls5{letter-spacing:-0.141867pt;}
.lse{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.085867pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.821333pt;}
.lsf{letter-spacing:0.960000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsb{letter-spacing:178.720000pt;}
.ls0{letter-spacing:1547.285333pt;}
.ws5{word-spacing:-22.624747pt;}
.ws3{word-spacing:-22.397013pt;}
.ws4{word-spacing:-22.326613pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.wsf{word-spacing:-14.240000pt;}
.wsd{word-spacing:-14.101333pt;}
.ws11{word-spacing:-13.872000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws10{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.078933pt;}
.ws6{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._8{width:1.799467pt;}
._2{width:2.699520pt;}
._3{width:3.643307pt;}
._7{width:5.328000pt;}
._6{width:6.288000pt;}
._10{width:7.277440pt;}
._5{width:8.832000pt;}
._a{width:9.824427pt;}
._9{width:10.752000pt;}
._14{width:12.323840pt;}
._e{width:14.303787pt;}
._11{width:15.298560pt;}
._12{width:16.307840pt;}
._15{width:17.330987pt;}
._f{width:19.176320pt;}
._c{width:20.124160pt;}
._b{width:21.456000pt;}
._1a{width:26.772480pt;}
._19{width:27.994240pt;}
._17{width:33.658027pt;}
._18{width:42.618453pt;}
._16{width:50.888960pt;}
._13{width:74.944000pt;}
._d{width:178.880000pt;}
._4{width:180.160000pt;}
.fs6{font-size:10.880000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.880000pt;}
.ya5{bottom:3.026667pt;}
.yab{bottom:3.186667pt;}
.y4d{bottom:3.200000pt;}
.y42{bottom:3.346667pt;}
.y84{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y58{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y7c{bottom:10.560000pt;}
.ya1{bottom:10.706667pt;}
.y82{bottom:10.880000pt;}
.y86{bottom:11.026667pt;}
.y4c{bottom:12.480000pt;}
.y7f{bottom:18.240000pt;}
.ya4{bottom:18.386667pt;}
.y41{bottom:18.546667pt;}
.y83{bottom:18.560000pt;}
.y87{bottom:18.706667pt;}
.y4{bottom:20.480000pt;}
.y7a{bottom:25.920000pt;}
.ya0{bottom:26.066667pt;}
.y56{bottom:33.120000pt;}
.y40{bottom:33.586667pt;}
.y7e{bottom:33.600000pt;}
.y9d{bottom:33.786667pt;}
.y8c{bottom:33.906667pt;}
.y4b{bottom:33.920000pt;}
.y7b{bottom:41.280000pt;}
.y9f{bottom:41.466667pt;}
.y3{bottom:42.746667pt;}
.y4a{bottom:45.600000pt;}
.y55{bottom:46.880000pt;}
.y7d{bottom:48.960000pt;}
.ya3{bottom:49.146667pt;}
.y3f{bottom:49.266667pt;}
.y8{bottom:52.000000pt;}
.y9e{bottom:56.666667pt;}
.y49{bottom:57.120000pt;}
.y54{bottom:62.400000pt;}
.ya2{bottom:64.346667pt;}
.y3e{bottom:64.626667pt;}
.y48{bottom:68.640000pt;}
.y7{bottom:69.920000pt;}
.y53{bottom:76.480000pt;}
.y3d{bottom:79.986667pt;}
.y47{bottom:80.320000pt;}
.y94{bottom:89.440000pt;}
.y52{bottom:90.266667pt;}
.y3c{bottom:95.186667pt;}
.y43{bottom:99.200000pt;}
.y46{bottom:99.706667pt;}
.y93{bottom:104.800000pt;}
.y51{bottom:105.786667pt;}
.y3b{bottom:110.586667pt;}
.y50{bottom:119.866667pt;}
.y92{bottom:120.160000pt;}
.y3a{bottom:125.946667pt;}
.y4f{bottom:133.626667pt;}
.y91{bottom:135.520000pt;}
.yc4{bottom:140.800000pt;}
.y39{bottom:141.306667pt;}
.y4e{bottom:147.386667pt;}
.y90{bottom:150.720000pt;}
.y45{bottom:154.906667pt;}
.yc3{bottom:156.160000pt;}
.y38{bottom:156.666667pt;}
.y44{bottom:164.346667pt;}
.y8f{bottom:166.080000pt;}
.yc2{bottom:171.360000pt;}
.y37{bottom:172.026667pt;}
.y8e{bottom:181.440000pt;}
.yc1{bottom:186.746667pt;}
.y36{bottom:187.226667pt;}
.y8d{bottom:196.506667pt;}
.yae{bottom:196.826667pt;}
.yc0{bottom:202.106667pt;}
.y35{bottom:202.586667pt;}
.y8b{bottom:209.480000pt;}
.yad{bottom:212.186667pt;}
.ybf{bottom:217.466667pt;}
.y34{bottom:217.946667pt;}
.yac{bottom:227.386667pt;}
.ybe{bottom:232.826667pt;}
.y33{bottom:233.306667pt;}
.yaa{bottom:240.200000pt;}
.ybd{bottom:248.186667pt;}
.y32{bottom:248.666667pt;}
.y1e{bottom:258.586667pt;}
.ybc{bottom:263.386667pt;}
.y31{bottom:264.026667pt;}
.y8a{bottom:271.400000pt;}
.ybb{bottom:278.746667pt;}
.y30{bottom:279.226667pt;}
.y1d{bottom:280.026667pt;}
.ya9{bottom:286.760000pt;}
.y10{bottom:288.360000pt;}
.yba{bottom:294.106667pt;}
.y2f{bottom:294.586667pt;}
.y1c{bottom:301.466667pt;}
.y89{bottom:302.760000pt;}
.yb9{bottom:309.466667pt;}
.y2e{bottom:309.946667pt;}
.ya8{bottom:318.760000pt;}
.y1b{bottom:323.093333pt;}
.yb8{bottom:324.826667pt;}
.y2d{bottom:325.333333pt;}
.y88{bottom:334.120000pt;}
.ya7{bottom:334.760000pt;}
.yb7{bottom:340.186667pt;}
.y2c{bottom:340.693333pt;}
.y1a{bottom:344.533333pt;}
.ya6{bottom:350.760000pt;}
.yb6{bottom:355.386667pt;}
.y2b{bottom:356.053333pt;}
.y85{bottom:365.480000pt;}
.y19{bottom:365.973333pt;}
.y9c{bottom:366.760000pt;}
.yb5{bottom:370.746667pt;}
.y2a{bottom:371.253333pt;}
.yb4{bottom:386.106667pt;}
.y29{bottom:386.613333pt;}
.y18{bottom:387.413333pt;}
.y81{bottom:396.866667pt;}
.yb3{bottom:401.506667pt;}
.y28{bottom:401.653333pt;}
.y17{bottom:408.853333pt;}
.yb2{bottom:416.866667pt;}
.y27{bottom:424.853333pt;}
.y79{bottom:428.226667pt;}
.y16{bottom:430.293333pt;}
.yb1{bottom:432.226667pt;}
.y26{bottom:438.613333pt;}
.y9b{bottom:447.426667pt;}
.y15{bottom:451.893333pt;}
.y25{bottom:452.533333pt;}
.y9a{bottom:462.786667pt;}
.y24{bottom:466.293333pt;}
.y14{bottom:473.333333pt;}
.y99{bottom:477.826667pt;}
.yb0{bottom:478.146667pt;}
.y23{bottom:480.053333pt;}
.y78{bottom:493.506667pt;}
.y22{bottom:493.813333pt;}
.y13{bottom:494.773333pt;}
.y21{bottom:507.733333pt;}
.y77{bottom:508.866667pt;}
.y12{bottom:516.213333pt;}
.y20{bottom:521.493333pt;}
.y76{bottom:524.066667pt;}
.y1f{bottom:534.973333pt;}
.y11{bottom:537.693333pt;}
.y75{bottom:539.106667pt;}
.y98{bottom:539.426667pt;}
.y74{bottom:554.786667pt;}
.y73{bottom:570.146667pt;}
.y72{bottom:585.506667pt;}
.y71{bottom:600.866667pt;}
.y70{bottom:616.093333pt;}
.y6f{bottom:631.453333pt;}
.y6e{bottom:646.813333pt;}
.y6d{bottom:662.173333pt;}
.y6c{bottom:677.533333pt;}
.y6b{bottom:692.893333pt;}
.y6a{bottom:708.093333pt;}
.y69{bottom:723.453333pt;}
.y68{bottom:738.813333pt;}
.y67{bottom:754.173333pt;}
.y66{bottom:769.533333pt;}
.y65{bottom:784.733333pt;}
.y64{bottom:800.093333pt;}
.y63{bottom:815.493333pt;}
.yaf{bottom:830.533333pt;}
.y62{bottom:830.853333pt;}
.yf{bottom:837.413333pt;}
.y61{bottom:846.213333pt;}
.ye{bottom:848.133333pt;}
.y60{bottom:861.573333pt;}
.yd{bottom:863.493333pt;}
.y97{bottom:876.453333pt;}
.y5f{bottom:876.773333pt;}
.yc{bottom:889.093333pt;}
.y5e{bottom:891.813333pt;}
.y96{bottom:892.133333pt;}
.yb{bottom:906.533333pt;}
.y5d{bottom:907.493333pt;}
.y5c{bottom:922.853333pt;}
.ya{bottom:928.133333pt;}
.y5b{bottom:938.213333pt;}
.y9{bottom:952.773333pt;}
.y5a{bottom:953.253333pt;}
.y95{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y59{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hb{height:7.915625pt;}
.h1c{height:15.346667pt;}
.h13{height:24.480000pt;}
.h18{height:30.546667pt;}
.h1a{height:30.706667pt;}
.h19{height:30.738667pt;}
.ha{height:33.918750pt;}
.h9{height:34.975000pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h1e{height:38.128125pt;}
.h1d{height:45.906667pt;}
.hf{height:47.085938pt;}
.h12{height:48.375000pt;}
.h6{height:50.955000pt;}
.h10{height:52.134375pt;}
.h15{height:52.834688pt;}
.h8{height:53.535000pt;}
.h16{height:54.598989pt;}
.h14{height:56.891250pt;}
.h7{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h17{height:61.266667pt;}
.h2{height:75.546667pt;}
.h1b{height:76.658667pt;}
.h4{height:104.160000pt;}
.h11{height:188.506667pt;}
.hc{height:546.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:56.818667pt;}
.w7{width:71.346667pt;}
.wc{width:75.506667pt;}
.wa{width:82.226667pt;}
.w8{width:82.418667pt;}
.wb{width:82.578667pt;}
.w9{width:83.552000pt;}
.w11{width:91.986667pt;}
.w2{width:92.512000pt;}
.w12{width:94.418667pt;}
.w10{width:94.592000pt;}
.wf{width:97.120000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w13{width:437.520000pt;}
.wd{width:481.360000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x18{left:7.186667pt;}
.x35{left:8.626667pt;}
.x27{left:10.066667pt;}
.x4{left:11.346667pt;}
.x23{left:12.640000pt;}
.x13{left:13.752000pt;}
.x6{left:15.346667pt;}
.x2c{left:16.480000pt;}
.x16{left:18.392000pt;}
.x29{left:19.520000pt;}
.x15{left:21.112000pt;}
.x21{left:22.906667pt;}
.x14{left:24.152000pt;}
.x1c{left:25.912000pt;}
.x34{left:28.946667pt;}
.x24{left:30.560000pt;}
.x32{left:31.680000pt;}
.x2b{left:32.786667pt;}
.x2a{left:35.040000pt;}
.xe{left:38.872000pt;}
.x38{left:40.506667pt;}
.x1b{left:42.392000pt;}
.x37{left:43.840000pt;}
.xf{left:45.112000pt;}
.xd{left:48.952000pt;}
.x19{left:55.226667pt;}
.x1d{left:58.866667pt;}
.x12{left:60.626667pt;}
.x11{left:67.186667pt;}
.x1{left:69.600000pt;}
.x7{left:76.832000pt;}
.x2{left:85.146667pt;}
.x1a{left:91.826667pt;}
.x39{left:100.832000pt;}
.xb{left:105.952000pt;}
.x2e{left:108.506667pt;}
.x10{left:110.706667pt;}
.x5{left:125.626667pt;}
.x1f{left:156.360000pt;}
.x3{left:162.120000pt;}
.xa{left:171.866667pt;}
.x2f{left:178.280000pt;}
.x17{left:194.760000pt;}
.x2d{left:216.506667pt;}
.x20{left:228.520000pt;}
.x30{left:235.746667pt;}
.x22{left:311.746667pt;}
.x31{left:333.506667pt;}
.x25{left:396.106667pt;}
.x33{left:428.746667pt;}
.x26{left:478.986667pt;}
.x36{left:521.386667pt;}
.x28{left:562.213333pt;}
.x9{left:680.933333pt;}
.x8{left:702.373333pt;}
.xc{left:717.280000pt;}
}




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