
    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_c5a1a95030a9c916e1979a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_b03b892aef0f32a1cfc55c11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_4dc578d6cc107c5180ca962f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_3f84c1c2822cf8900c3f0f09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_07da9659ce93425c52facceb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fa7a77d1671a2b3435aff246.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_002817d4b8feb8a0cdabc740.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_13814dfe60824d32b13123cd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_63b52f2842bb1581759bc678.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_476a3be2057a6bbcfaae7469.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8aea42d2fa6a0b6d38123741.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_26a712e7d40ac7a43196d1c0.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ce7c9c1290733895a7c10068.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9e8b0df8ac78a9f3f67f25b8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.696000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.334200px;}
.ls4{letter-spacing:-0.308400px;}
.ls10{letter-spacing:-0.270600px;}
.ls7{letter-spacing:-0.255000px;}
.lsf{letter-spacing:-0.224400px;}
.ls6{letter-spacing:-0.086400px;}
.lsc{letter-spacing:-0.023040px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.083400px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.270600px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:2.360640px;}
.ls14{letter-spacing:2.384640px;}
.ls12{letter-spacing:28.080000px;}
.ls9{letter-spacing:36.920640px;}
.lsa{letter-spacing:36.944640px;}
.ls13{letter-spacing:41.760000px;}
.lse{letter-spacing:42.480000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.ws9{word-spacing:-54.000000px;}
.wsc{word-spacing:-17.280000px;}
.wsb{word-spacing:-17.256960px;}
.ws3{word-spacing:-17.190600px;}
.wsd{word-spacing:-17.055600px;}
.wse{word-spacing:-17.009400px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws5{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.780000px;}
.ws7{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.357800px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._2{width:1.525440px;}
._e{width:3.494160px;}
._d{width:4.914000px;}
._8{width:6.013440px;}
._a{width:7.074000px;}
._6{width:8.087040px;}
._f{width:9.400320px;}
._19{width:10.864560px;}
._14{width:11.888640px;}
._7{width:13.201920px;}
._3{width:14.584320px;}
._4{width:15.652080px;}
._9{width:19.008000px;}
._5{width:20.666880px;}
._2e{width:21.703680px;}
._13{width:22.947840px;}
._b{width:24.503040px;}
._12{width:26.334720px;}
._11{width:27.924480px;}
._1d{width:29.376000px;}
._28{width:30.481920px;}
._1a{width:31.587840px;}
._1b{width:32.732640px;}
._17{width:33.799680px;}
._18{width:35.735040px;}
._15{width:36.979200px;}
._16{width:38.425920px;}
._1c{width:39.674880px;}
._2c{width:41.076720px;}
._2d{width:42.301440px;}
._10{width:44.029440px;}
._24{width:45.964800px;}
._23{width:47.001600px;}
._40{width:48.055680px;}
._3e{width:49.204080px;}
._32{width:51.010560px;}
._2b{width:52.600320px;}
._35{width:54.673920px;}
._34{width:56.195280px;}
._30{width:57.398400px;}
._31{width:59.414400px;}
._2a{width:60.963840px;}
._21{width:63.313920px;}
._22{width:64.350720px;}
._39{width:66.424320px;}
._20{width:68.843520px;}
._29{width:70.176240px;}
._1f{width:71.608320px;}
._3c{width:73.543680px;}
._3b{width:74.649600px;}
._3a{width:75.824640px;}
._27{width:76.999680px;}
._1e{width:78.105600px;}
._3f{width:79.695360px;}
._37{width:85.847040px;}
._3d{width:89.856000px;}
._25{width:96.422400px;}
._26{width:97.920480px;}
._2f{width:101.072880px;}
._38{width:112.250880px;}
._c{width:132.356640px;}
._36{width:143.927280px;}
._33{width:157.386240px;}
._1{width:781.505760px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.340000px;}
.y55{bottom:2.685000px;}
.y49{bottom:3.225000px;}
.y40{bottom:3.240000px;}
.y15{bottom:3.420000px;}
.y6{bottom:3.600000px;}
.yb{bottom:3.960000px;}
.y2f{bottom:5.220000px;}
.y32{bottom:5.400000px;}
.yc{bottom:5.580000px;}
.y3a{bottom:5.760000px;}
.y37{bottom:6.120000px;}
.y39{bottom:6.300000px;}
.y57{bottom:8.085000px;}
.y12{bottom:10.080000px;}
.y54{bottom:16.725000px;}
.y50{bottom:17.805000px;}
.y14{bottom:18.540000px;}
.y4c{bottom:18.705000px;}
.y45{bottom:18.720000px;}
.y48{bottom:18.750000px;}
.y59{bottom:18.885000px;}
.y2e{bottom:23.040000px;}
.y5{bottom:23.070000px;}
.y31{bottom:23.220000px;}
.y4f{bottom:30.045000px;}
.y53{bottom:30.765000px;}
.y47{bottom:31.170000px;}
.y3f{bottom:34.020000px;}
.y4b{bottom:34.185000px;}
.y11{bottom:35.820000px;}
.y58{bottom:35.985000px;}
.y2d{bottom:40.905000px;}
.y4{bottom:42.330000px;}
.y52{bottom:44.805000px;}
.y9{bottom:46.980000px;}
.y44{bottom:48.600000px;}
.y3e{bottom:49.530000px;}
.y4a{bottom:49.845000px;}
.y51{bottom:61.185000px;}
.y10{bottom:61.740000px;}
.y4e{bottom:62.625000px;}
.y43{bottom:63.360000px;}
.y3{bottom:63.390000px;}
.y8{bottom:66.780000px;}
.yf{bottom:87.480000px;}
.y2b{bottom:90.570000px;}
.y2a{bottom:110.190000px;}
.ye{bottom:117.900000px;}
.y85{bottom:121.680000px;}
.y5d{bottom:126.360000px;}
.y29{bottom:129.990000px;}
.y42{bottom:136.260000px;}
.y84{bottom:147.420000px;}
.y28{bottom:149.790000px;}
.y5c{bottom:152.100000px;}
.y27{bottom:169.950000px;}
.y83{bottom:173.340000px;}
.y5b{bottom:178.020000px;}
.y26{bottom:189.390000px;}
.y82{bottom:199.080000px;}
.y5a{bottom:203.400000px;}
.y5e{bottom:203.760000px;}
.y25{bottom:216.030000px;}
.y81{bottom:224.850000px;}
.y24{bottom:241.770000px;}
.y56{bottom:245.205000px;}
.y80{bottom:250.590000px;}
.y23{bottom:267.510000px;}
.y7f{bottom:276.510000px;}
.y22{bottom:293.250000px;}
.y4d{bottom:294.885000px;}
.y7e{bottom:302.250000px;}
.y21{bottom:319.200000px;}
.y7d{bottom:327.990000px;}
.y20{bottom:344.940000px;}
.y7c{bottom:353.730000px;}
.y16{bottom:369.765000px;}
.y1f{bottom:370.680000px;}
.y7b{bottom:379.650000px;}
.y1e{bottom:396.600000px;}
.y7a{bottom:405.390000px;}
.y1d{bottom:422.340000px;}
.y79{bottom:431.130000px;}
.y46{bottom:431.865000px;}
.y1c{bottom:448.080000px;}
.y78{bottom:457.095000px;}
.y1b{bottom:473.820000px;}
.y77{bottom:482.835000px;}
.y41{bottom:485.715000px;}
.y1a{bottom:499.740000px;}
.y76{bottom:508.575000px;}
.y19{bottom:525.480000px;}
.y75{bottom:534.315000px;}
.y18{bottom:551.265000px;}
.y74{bottom:560.235000px;}
.y17{bottom:573.945000px;}
.y73{bottom:585.975000px;}
.y90{bottom:611.355000px;}
.y72{bottom:611.715000px;}
.y3d{bottom:634.215000px;}
.y8c{bottom:637.095000px;}
.y71{bottom:637.455000px;}
.y8d{bottom:663.015000px;}
.y70{bottom:663.375000px;}
.y6f{bottom:689.145000px;}
.y3c{bottom:696.345000px;}
.y3b{bottom:714.165000px;}
.y6e{bottom:714.885000px;}
.y38{bottom:731.985000px;}
.y8b{bottom:740.265000px;}
.y6d{bottom:740.625000px;}
.y36{bottom:749.985000px;}
.y8a{bottom:766.185000px;}
.y6c{bottom:766.545000px;}
.y35{bottom:767.805000px;}
.y89{bottom:791.925000px;}
.y6b{bottom:792.285000px;}
.y34{bottom:803.445000px;}
.y91{bottom:805.605000px;}
.y6a{bottom:818.025000px;}
.y33{bottom:821.265000px;}
.y30{bottom:839.085000px;}
.y69{bottom:843.765000px;}
.y68{bottom:869.685000px;}
.y2c{bottom:874.905000px;}
.y67{bottom:895.425000px;}
.y8f{bottom:920.850000px;}
.y66{bottom:921.210000px;}
.y13{bottom:928.410000px;}
.y8e{bottom:946.590000px;}
.y65{bottom:946.950000px;}
.yd{bottom:959.550000px;}
.y64{bottom:972.870000px;}
.y88{bottom:998.250000px;}
.y63{bottom:998.610000px;}
.y87{bottom:1023.990000px;}
.y62{bottom:1024.350000px;}
.y61{bottom:1050.090000px;}
.y60{bottom:1076.010000px;}
.ya{bottom:1096.350000px;}
.y86{bottom:1101.390000px;}
.y5f{bottom:1101.750000px;}
.y7{bottom:1122.090000px;}
.y1{bottom:1137.570000px;}
.h14{height:17.820000px;}
.h17{height:18.000000px;}
.h7{height:21.045000px;}
.hd{height:31.125000px;}
.h15{height:35.640000px;}
.h13{height:35.820000px;}
.h1f{height:40.655391px;}
.h1e{height:40.843828px;}
.h21{height:45.509766px;}
.h24{height:48.262500px;}
.h20{height:49.665000px;}
.h16{height:51.519375px;}
.h19{height:52.971680px;}
.hf{height:52.998047px;}
.h12{height:53.482500px;}
.h1b{height:53.841000px;}
.he{height:54.421875px;}
.h5{height:56.084062px;}
.h11{height:58.252500px;}
.h4{height:59.395781px;}
.h8{height:60.960938px;}
.h1c{height:62.085000px;}
.h18{height:62.130000px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:67.803750px;}
.h23{height:67.837500px;}
.h22{height:69.660000px;}
.h25{height:71.044468px;}
.h26{height:71.955000px;}
.hb{height:72.562500px;}
.h1d{height:74.865000px;}
.ha{height:81.995625px;}
.h2{height:82.830000px;}
.h9{height:136.785000px;}
.h1a{height:148.485000px;}
.h10{height:589.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:82.609500px;}
.wa{width:95.601000px;}
.w2{width:115.189500px;}
.w4{width:156.949500px;}
.w7{width:178.219500px;}
.w8{width:515.085000px;}
.w5{width:536.355000px;}
.w3{width:578.115000px;}
.w6{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.130000px;}
.x9{left:14.749500px;}
.x6{left:27.165000px;}
.x1b{left:36.709500px;}
.x15{left:39.229500px;}
.x4{left:41.745000px;}
.x16{left:51.103500px;}
.x12{left:62.100000px;}
.xf{left:78.463500px;}
.x10{left:86.743500px;}
.x18{left:89.083500px;}
.x5{left:96.690000px;}
.x2{left:97.723500px;}
.x1{left:99.946500px;}
.x19{left:101.323500px;}
.x7{left:108.570000px;}
.x17{left:123.823500px;}
.x1a{left:129.583500px;}
.x1c{left:134.083500px;}
.xc{left:142.003500px;}
.x20{left:150.510000px;}
.x1d{left:162.030000px;}
.x14{left:170.128500px;}
.x13{left:182.565000px;}
.x3{left:215.145000px;}
.xa{left:256.905000px;}
.xd{left:263.728500px;}
.xe{left:273.268500px;}
.x11{left:278.175000px;}
.x1e{left:473.145000px;}
.x22{left:488.625000px;}
.x21{left:515.625000px;}
.x1f{left:527.145000px;}
.x8{left:762.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.618667pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.297067pt;}
.ls4{letter-spacing:-0.274133pt;}
.ls10{letter-spacing:-0.240533pt;}
.ls7{letter-spacing:-0.226667pt;}
.lsf{letter-spacing:-0.199467pt;}
.ls6{letter-spacing:-0.076800pt;}
.lsc{letter-spacing:-0.020480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.074133pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.240533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:2.098347pt;}
.ls14{letter-spacing:2.119680pt;}
.ls12{letter-spacing:24.960000pt;}
.ls9{letter-spacing:32.818347pt;}
.lsa{letter-spacing:32.839680pt;}
.ls13{letter-spacing:37.120000pt;}
.lse{letter-spacing:37.760000pt;}
.ws2{word-spacing:-58.880000pt;}
.ws9{word-spacing:-48.000000pt;}
.wsc{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.339520pt;}
.ws3{word-spacing:-15.280533pt;}
.wsd{word-spacing:-15.160533pt;}
.wse{word-spacing:-15.119467pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws5{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.360000pt;}
.ws7{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.206933pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._2{width:1.355947pt;}
._e{width:3.105920pt;}
._d{width:4.368000pt;}
._8{width:5.345280pt;}
._a{width:6.288000pt;}
._6{width:7.188480pt;}
._f{width:8.355840pt;}
._19{width:9.657387pt;}
._14{width:10.567680pt;}
._7{width:11.735040pt;}
._3{width:12.963840pt;}
._4{width:13.912960pt;}
._9{width:16.896000pt;}
._5{width:18.370560pt;}
._2e{width:19.292160pt;}
._13{width:20.398080pt;}
._b{width:21.780480pt;}
._12{width:23.408640pt;}
._11{width:24.821760pt;}
._1d{width:26.112000pt;}
._28{width:27.095040pt;}
._1a{width:28.078080pt;}
._1b{width:29.095680pt;}
._17{width:30.044160pt;}
._18{width:31.764480pt;}
._15{width:32.870400pt;}
._16{width:34.156373pt;}
._1c{width:35.266560pt;}
._2c{width:36.512640pt;}
._2d{width:37.601280pt;}
._10{width:39.137280pt;}
._24{width:40.857600pt;}
._23{width:41.779200pt;}
._40{width:42.716160pt;}
._3e{width:43.736960pt;}
._32{width:45.342720pt;}
._2b{width:46.755840pt;}
._35{width:48.599040pt;}
._34{width:49.951360pt;}
._30{width:51.020800pt;}
._31{width:52.812800pt;}
._2a{width:54.190080pt;}
._21{width:56.279040pt;}
._22{width:57.200640pt;}
._39{width:59.043840pt;}
._20{width:61.194240pt;}
._29{width:62.378880pt;}
._1f{width:63.651840pt;}
._3c{width:65.372160pt;}
._3b{width:66.355200pt;}
._3a{width:67.399680pt;}
._27{width:68.444160pt;}
._1e{width:69.427200pt;}
._3f{width:70.840320pt;}
._37{width:76.308480pt;}
._3d{width:79.872000pt;}
._25{width:85.708800pt;}
._26{width:87.040427pt;}
._2f{width:89.842560pt;}
._38{width:99.778560pt;}
._c{width:117.650347pt;}
._36{width:127.935360pt;}
._33{width:139.898880pt;}
._1{width:694.671787pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.080000pt;}
.y55{bottom:2.386667pt;}
.y49{bottom:2.866667pt;}
.y40{bottom:2.880000pt;}
.y15{bottom:3.040000pt;}
.y6{bottom:3.200000pt;}
.yb{bottom:3.520000pt;}
.y2f{bottom:4.640000pt;}
.y32{bottom:4.800000pt;}
.yc{bottom:4.960000pt;}
.y3a{bottom:5.120000pt;}
.y37{bottom:5.440000pt;}
.y39{bottom:5.600000pt;}
.y57{bottom:7.186667pt;}
.y12{bottom:8.960000pt;}
.y54{bottom:14.866667pt;}
.y50{bottom:15.826667pt;}
.y14{bottom:16.480000pt;}
.y4c{bottom:16.626667pt;}
.y45{bottom:16.640000pt;}
.y48{bottom:16.666667pt;}
.y59{bottom:16.786667pt;}
.y2e{bottom:20.480000pt;}
.y5{bottom:20.506667pt;}
.y31{bottom:20.640000pt;}
.y4f{bottom:26.706667pt;}
.y53{bottom:27.346667pt;}
.y47{bottom:27.706667pt;}
.y3f{bottom:30.240000pt;}
.y4b{bottom:30.386667pt;}
.y11{bottom:31.840000pt;}
.y58{bottom:31.986667pt;}
.y2d{bottom:36.360000pt;}
.y4{bottom:37.626667pt;}
.y52{bottom:39.826667pt;}
.y9{bottom:41.760000pt;}
.y44{bottom:43.200000pt;}
.y3e{bottom:44.026667pt;}
.y4a{bottom:44.306667pt;}
.y51{bottom:54.386667pt;}
.y10{bottom:54.880000pt;}
.y4e{bottom:55.666667pt;}
.y43{bottom:56.320000pt;}
.y3{bottom:56.346667pt;}
.y8{bottom:59.360000pt;}
.yf{bottom:77.760000pt;}
.y2b{bottom:80.506667pt;}
.y2a{bottom:97.946667pt;}
.ye{bottom:104.800000pt;}
.y85{bottom:108.160000pt;}
.y5d{bottom:112.320000pt;}
.y29{bottom:115.546667pt;}
.y42{bottom:121.120000pt;}
.y84{bottom:131.040000pt;}
.y28{bottom:133.146667pt;}
.y5c{bottom:135.200000pt;}
.y27{bottom:151.066667pt;}
.y83{bottom:154.080000pt;}
.y5b{bottom:158.240000pt;}
.y26{bottom:168.346667pt;}
.y82{bottom:176.960000pt;}
.y5a{bottom:180.800000pt;}
.y5e{bottom:181.120000pt;}
.y25{bottom:192.026667pt;}
.y81{bottom:199.866667pt;}
.y24{bottom:214.906667pt;}
.y56{bottom:217.960000pt;}
.y80{bottom:222.746667pt;}
.y23{bottom:237.786667pt;}
.y7f{bottom:245.786667pt;}
.y22{bottom:260.666667pt;}
.y4d{bottom:262.120000pt;}
.y7e{bottom:268.666667pt;}
.y21{bottom:283.733333pt;}
.y7d{bottom:291.546667pt;}
.y20{bottom:306.613333pt;}
.y7c{bottom:314.426667pt;}
.y16{bottom:328.680000pt;}
.y1f{bottom:329.493333pt;}
.y7b{bottom:337.466667pt;}
.y1e{bottom:352.533333pt;}
.y7a{bottom:360.346667pt;}
.y1d{bottom:375.413333pt;}
.y79{bottom:383.226667pt;}
.y46{bottom:383.880000pt;}
.y1c{bottom:398.293333pt;}
.y78{bottom:406.306667pt;}
.y1b{bottom:421.173333pt;}
.y77{bottom:429.186667pt;}
.y41{bottom:431.746667pt;}
.y1a{bottom:444.213333pt;}
.y76{bottom:452.066667pt;}
.y19{bottom:467.093333pt;}
.y75{bottom:474.946667pt;}
.y18{bottom:490.013333pt;}
.y74{bottom:497.986667pt;}
.y17{bottom:510.173333pt;}
.y73{bottom:520.866667pt;}
.y90{bottom:543.426667pt;}
.y72{bottom:543.746667pt;}
.y3d{bottom:563.746667pt;}
.y8c{bottom:566.306667pt;}
.y71{bottom:566.626667pt;}
.y8d{bottom:589.346667pt;}
.y70{bottom:589.666667pt;}
.y6f{bottom:612.573333pt;}
.y3c{bottom:618.973333pt;}
.y3b{bottom:634.813333pt;}
.y6e{bottom:635.453333pt;}
.y38{bottom:650.653333pt;}
.y8b{bottom:658.013333pt;}
.y6d{bottom:658.333333pt;}
.y36{bottom:666.653333pt;}
.y8a{bottom:681.053333pt;}
.y6c{bottom:681.373333pt;}
.y35{bottom:682.493333pt;}
.y89{bottom:703.933333pt;}
.y6b{bottom:704.253333pt;}
.y34{bottom:714.173333pt;}
.y91{bottom:716.093333pt;}
.y6a{bottom:727.133333pt;}
.y33{bottom:730.013333pt;}
.y30{bottom:745.853333pt;}
.y69{bottom:750.013333pt;}
.y68{bottom:773.053333pt;}
.y2c{bottom:777.693333pt;}
.y67{bottom:795.933333pt;}
.y8f{bottom:818.533333pt;}
.y66{bottom:818.853333pt;}
.y13{bottom:825.253333pt;}
.y8e{bottom:841.413333pt;}
.y65{bottom:841.733333pt;}
.yd{bottom:852.933333pt;}
.y64{bottom:864.773333pt;}
.y88{bottom:887.333333pt;}
.y63{bottom:887.653333pt;}
.y87{bottom:910.213333pt;}
.y62{bottom:910.533333pt;}
.y61{bottom:933.413333pt;}
.y60{bottom:956.453333pt;}
.ya{bottom:974.533333pt;}
.y86{bottom:979.013333pt;}
.y5f{bottom:979.333333pt;}
.y7{bottom:997.413333pt;}
.y1{bottom:1011.173333pt;}
.h14{height:15.840000pt;}
.h17{height:16.000000pt;}
.h7{height:18.706667pt;}
.hd{height:27.666667pt;}
.h15{height:31.680000pt;}
.h13{height:31.840000pt;}
.h1f{height:36.138125pt;}
.h1e{height:36.305625pt;}
.h21{height:40.453125pt;}
.h24{height:42.900000pt;}
.h20{height:44.146667pt;}
.h16{height:45.795000pt;}
.h19{height:47.085938pt;}
.hf{height:47.109375pt;}
.h12{height:47.540000pt;}
.h1b{height:47.858667pt;}
.he{height:48.375000pt;}
.h5{height:49.852500pt;}
.h11{height:51.780000pt;}
.h4{height:52.796250pt;}
.h8{height:54.187500pt;}
.h1c{height:55.186667pt;}
.h18{height:55.226667pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:60.270000pt;}
.h23{height:60.300000pt;}
.h22{height:61.920000pt;}
.h25{height:63.150638pt;}
.h26{height:63.960000pt;}
.hb{height:64.500000pt;}
.h1d{height:66.546667pt;}
.ha{height:72.885000pt;}
.h2{height:73.626667pt;}
.h9{height:121.586667pt;}
.h1a{height:131.986667pt;}
.h10{height:524.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:73.430667pt;}
.wa{width:84.978667pt;}
.w2{width:102.390667pt;}
.w4{width:139.510667pt;}
.w7{width:158.417333pt;}
.w8{width:457.853333pt;}
.w5{width:476.760000pt;}
.w3{width:513.880000pt;}
.w6{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.226667pt;}
.x9{left:13.110667pt;}
.x6{left:24.146667pt;}
.x1b{left:32.630667pt;}
.x15{left:34.870667pt;}
.x4{left:37.106667pt;}
.x16{left:45.425333pt;}
.x12{left:55.200000pt;}
.xf{left:69.745333pt;}
.x10{left:77.105333pt;}
.x18{left:79.185333pt;}
.x5{left:85.946667pt;}
.x2{left:86.865333pt;}
.x1{left:88.841333pt;}
.x19{left:90.065333pt;}
.x7{left:96.506667pt;}
.x17{left:110.065333pt;}
.x1a{left:115.185333pt;}
.x1c{left:119.185333pt;}
.xc{left:126.225333pt;}
.x20{left:133.786667pt;}
.x1d{left:144.026667pt;}
.x14{left:151.225333pt;}
.x13{left:162.280000pt;}
.x3{left:191.240000pt;}
.xa{left:228.360000pt;}
.xd{left:234.425333pt;}
.xe{left:242.905333pt;}
.x11{left:247.266667pt;}
.x1e{left:420.573333pt;}
.x22{left:434.333333pt;}
.x21{left:458.333333pt;}
.x1f{left:468.573333pt;}
.x8{left:678.053333pt;}
}




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