
    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_df0f943b12b263269456a9f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_05eb93321fe091597493999e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_36775083ae37cc16614d1568.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_77ef06a0f686665482412910.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_f7fec1adc50d60f53cec79c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_b45e03d40a6db4c88925645a.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_d675f0b9af3cb998939ca1b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d3c7446d8597f77d051e2d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_ec0685b4dfc67d9b94216b2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.920410;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_573e15ae07c9c9170b4742b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_049d54e790c9143f099096b6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_1b604a5c97c358ed066e9ed6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_93c7b2721e2e65683d259937.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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_2508b09d4955016ef70310aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942383;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_58985701b4c755d552b4c977.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_db59322cd9be72c0759e528a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bb2d067d58cf4a5df92c6f1b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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:ff12;src:url('chunks/assets/font_b563dc98ae347551a3dc3283.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.050000px;}
.ls8{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.738000px;}
.ls17{letter-spacing:-0.684000px;}
.ls23{letter-spacing:-0.369600px;}
.ls7{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.350400px;}
.ls1a{letter-spacing:-0.341400px;}
.ls18{letter-spacing:-0.272400px;}
.ls2{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.037440px;}
.ls1b{letter-spacing:-0.028080px;}
.lsf{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.148080px;}
.ls13{letter-spacing:0.174240px;}
.ls25{letter-spacing:0.180000px;}
.lse{letter-spacing:0.252720px;}
.ls5{letter-spacing:0.341400px;}
.ls10{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.433440px;}
.ls16{letter-spacing:0.894240px;}
.ls24{letter-spacing:0.900000px;}
.ls14{letter-spacing:2.334240px;}
.ls1f{letter-spacing:3.054240px;}
.ls19{letter-spacing:7.374240px;}
.ls1e{letter-spacing:15.660000px;}
.ls28{letter-spacing:21.221280px;}
.ls20{letter-spacing:22.494240px;}
.lsc{letter-spacing:23.580000px;}
.ls27{letter-spacing:37.260000px;}
.ls26{letter-spacing:37.440000px;}
.ls12{letter-spacing:62.460000px;}
.ls15{letter-spacing:64.026720px;}
.ls0{letter-spacing:2407.980000px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws0{word-spacing:-25.759440px;}
.ws2{word-spacing:-21.420000px;}
.wse{word-spacing:-21.410400px;}
.ws8{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.312720px;}
.ws14{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.041280px;}
.ws12{word-spacing:-21.031920px;}
.wsf{word-spacing:-21.022560px;}
.ws13{word-spacing:-20.709600px;}
.ws5{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.322000px;}
.ws7{word-spacing:-19.980000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws10{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
._43{margin-left:-20.502720px;}
._1a{margin-left:-5.964000px;}
._14{margin-left:-4.055760px;}
._8{margin-left:-2.818800px;}
._2{margin-left:-1.296000px;}
._0{width:1.470240px;}
._1{width:3.051840px;}
._24{width:4.197120px;}
._4{width:5.391360px;}
._5{width:6.687360px;}
._1e{width:7.699680px;}
._6{width:8.760960px;}
._7{width:10.393920px;}
._23{width:11.575200px;}
._a{width:12.663360px;}
._9{width:13.731120px;}
._1c{width:15.733440px;}
._b{width:17.016480px;}
._c{width:18.322320px;}
._21{width:19.997280px;}
._3b{width:21.445200px;}
._1b{width:22.524480px;}
._20{width:23.587200px;}
._30{width:24.947520px;}
._25{width:26.704080px;}
._e{width:27.799200px;}
._d{width:28.926720px;}
._15{width:29.989440px;}
._f{width:31.849680px;}
._10{width:33.475680px;}
._2c{width:34.622640px;}
._1d{width:35.665920px;}
._33{width:36.961920px;}
._2f{width:38.024640px;}
._3c{width:39.513600px;}
._36{width:41.057280px;}
._37{width:42.960720px;}
._2b{width:44.090640px;}
._11{width:45.185040px;}
._1f{width:46.332000px;}
._3{width:48.077280px;}
._17{width:49.196160px;}
._18{width:50.547600px;}
._16{width:52.397280px;}
._3f{width:54.277200px;}
._2a{width:55.378080px;}
._19{width:56.793600px;}
._38{width:59.168880px;}
._44{width:60.963600px;}
._2e{width:62.129280px;}
._22{width:63.212400px;}
._12{width:65.875680px;}
._13{width:67.087440px;}
._39{width:73.457280px;}
._3a{width:75.167760px;}
._40{width:77.371920px;}
._31{width:78.719040px;}
._32{width:80.106480px;}
._34{width:82.134000px;}
._2d{width:86.378400px;}
._29{width:91.264320px;}
._28{width:92.527920px;}
._3e{width:104.957280px;}
._3d{width:106.434000px;}
._35{width:113.587920px;}
._26{width:114.630240px;}
._27{width:115.965840px;}
._42{width:193.499280px;}
._41{width:195.048000px;}
._45{width:199.344240px;}
._48{width:211.727520px;}
._47{width:253.309680px;}
._4a{width:322.133760px;}
._49{width:323.313120px;}
._46{width:438.164640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y45{bottom:16.725000px;}
.y48{bottom:17.085000px;}
.y4c{bottom:17.100000px;}
.y51{bottom:17.280000px;}
.y6{bottom:20.160000px;}
.y44{bottom:52.905000px;}
.y47{bottom:53.445000px;}
.y4f{bottom:53.460000px;}
.y4b{bottom:53.490000px;}
.y5{bottom:68.220000px;}
.y43{bottom:89.085000px;}
.y4{bottom:91.440000px;}
.y3b{bottom:128.916000px;}
.y6d{bottom:134.136000px;}
.y23{bottom:135.576000px;}
.y3a{bottom:148.356000px;}
.y6c{bottom:151.410000px;}
.y39{bottom:153.570000px;}
.y6b{bottom:156.630000px;}
.y49{bottom:167.610000px;}
.y38{bottom:170.850000px;}
.y22{bottom:171.750000px;}
.y6a{bottom:173.910000px;}
.y37{bottom:176.070000px;}
.y69{bottom:179.130000px;}
.y46{bottom:189.405000px;}
.y66{bottom:190.110000px;}
.y40{bottom:190.470000px;}
.y68{bottom:193.170000px;}
.y36{bottom:193.350000px;}
.y3f{bottom:195.690000px;}
.y76{bottom:198.570000px;}
.y21{bottom:208.110000px;}
.y7d{bottom:208.290000px;}
.y3e{bottom:209.730000px;}
.y35{bottom:212.970000px;}
.y75{bottom:216.030000px;}
.y34{bottom:218.190000px;}
.y7b{bottom:232.410000px;}
.y33{bottom:235.470000px;}
.y7a{bottom:237.630000px;}
.y74{bottom:240.690000px;}
.y20{bottom:244.290000px;}
.y79{bottom:251.850000px;}
.y32{bottom:255.090000px;}
.y73{bottom:257.970000px;}
.y31{bottom:260.310000px;}
.y42{bottom:262.665000px;}
.y72{bottom:263.190000px;}
.y30{bottom:274.350000px;}
.y65{bottom:276.690000px;}
.y71{bottom:277.230000px;}
.y1f{bottom:280.470000px;}
.y64{bottom:313.050000px;}
.y1e{bottom:316.650000px;}
.y63{bottom:349.230000px;}
.y2f{bottom:352.650000px;}
.y1d{bottom:353.010000px;}
.y3d{bottom:360.570000px;}
.y62{bottom:385.455000px;}
.y7c{bottom:388.875000px;}
.y1c{bottom:389.235000px;}
.y60{bottom:421.635000px;}
.y1b{bottom:425.055000px;}
.y2a{bottom:425.415000px;}
.y61{bottom:429.195000px;}
.y70{bottom:432.975000px;}
.y5f{bottom:457.815000px;}
.y1a{bottom:461.595000px;}
.y5e{bottom:494.175000px;}
.y29{bottom:497.595000px;}
.y19{bottom:497.955000px;}
.y5c{bottom:530.355000px;}
.y18{bottom:534.135000px;}
.y5d{bottom:537.915000px;}
.y5b{bottom:566.535000px;}
.y17{bottom:570.315000px;}
.y67{bottom:577.875000px;}
.y5a{bottom:602.715000px;}
.y16{bottom:606.495000px;}
.y3c{bottom:614.055000px;}
.y59{bottom:639.105000px;}
.y15{bottom:642.705000px;}
.y2e{bottom:650.265000px;}
.y58{bottom:675.285000px;}
.y14{bottom:679.065000px;}
.y57{bottom:711.465000px;}
.y41{bottom:714.885000px;}
.y13{bottom:715.245000px;}
.y6f{bottom:722.805000px;}
.y56{bottom:747.645000px;}
.y12{bottom:751.425000px;}
.y55{bottom:784.005000px;}
.y11{bottom:787.605000px;}
.y2d{bottom:795.165000px;}
.y54{bottom:820.185000px;}
.y10{bottom:823.965000px;}
.y53{bottom:856.365000px;}
.yf{bottom:860.145000px;}
.y78{bottom:867.705000px;}
.y52{bottom:892.590000px;}
.ye{bottom:896.370000px;}
.y6e{bottom:903.930000px;}
.y50{bottom:912.390000px;}
.yd{bottom:932.550000px;}
.y28{bottom:968.550000px;}
.yc{bottom:968.910000px;}
.y4e{bottom:985.650000px;}
.yb{bottom:1005.090000px;}
.y2c{bottom:1012.650000px;}
.ya{bottom:1040.910000px;}
.y27{bottom:1041.270000px;}
.y4d{bottom:1058.910000px;}
.y9{bottom:1077.090000px;}
.y26{bottom:1077.450000px;}
.y77{bottom:1085.010000px;}
.y4a{bottom:1095.810000px;}
.y8{bottom:1113.450000px;}
.y25{bottom:1113.810000px;}
.y2b{bottom:1121.370000px;}
.y7{bottom:1149.660000px;}
.y24{bottom:1150.020000px;}
.y3{bottom:1183.680000px;}
.y2{bottom:1206.900000px;}
.y1{bottom:1228.320000px;}
.he{height:36.165000px;}
.h8{height:38.671172px;}
.h7{height:52.998047px;}
.hb{height:59.436914px;}
.h9{height:59.439023px;}
.h5{height:60.917695px;}
.hf{height:61.189805px;}
.hc{height:72.525000px;}
.hd{height:72.570000px;}
.h3{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h10{height:86.585445px;}
.ha{height:108.561000px;}
.h6{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:119.505000px;}
.w4{width:142.236000px;}
.w5{width:149.961000px;}
.w3{width:286.221000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.731000px;}
.x20{left:15.300000px;}
.x1c{left:27.000000px;}
.x21{left:42.300000px;}
.x1b{left:47.520000px;}
.x1e{left:51.465000px;}
.x23{left:60.300000px;}
.x27{left:61.725000px;}
.x24{left:64.425000px;}
.x26{left:65.700000px;}
.x25{left:69.645000px;}
.x19{left:76.665000px;}
.x3{left:127.656000px;}
.x5{left:129.816000px;}
.x15{left:132.516000px;}
.x31{left:137.376000px;}
.x30{left:154.650000px;}
.x1{left:157.890000px;}
.xc{left:180.750000px;}
.xa{left:222.150000px;}
.x2e{left:223.747500px;}
.x2b{left:228.450000px;}
.x2f{left:237.450000px;}
.x2{left:296.355000px;}
.x18{left:316.672500px;}
.x9{left:323.715000px;}
.x42{left:329.655000px;}
.x16{left:338.812500px;}
.x14{left:343.695000px;}
.x8{left:345.135000px;}
.x4{left:356.295000px;}
.xb{left:362.415000px;}
.xd{left:379.132500px;}
.x6{left:385.995000px;}
.x3a{left:391.372500px;}
.x3b{left:405.075000px;}
.x1a{left:415.515000px;}
.x28{left:425.775000px;}
.x38{left:427.192500px;}
.x17{left:428.632500px;}
.x10{left:436.192500px;}
.x39{left:440.895000px;}
.x11{left:443.055000px;}
.x3c{left:467.692500px;}
.x7{left:478.515000px;}
.x3d{left:481.395000px;}
.x12{left:508.582500px;}
.x13{left:515.445000px;}
.x29{left:525.682500px;}
.x2a{left:532.545000px;}
.x1d{left:558.480000px;}
.x3e{left:574.822500px;}
.x36{left:580.942500px;}
.x3f{left:588.525000px;}
.x37{left:594.645000px;}
.x40{left:698.167500px;}
.xe{left:706.807500px;}
.x1f{left:709.170000px;}
.x41{left:711.870000px;}
.xf{left:713.670000px;}
.x2c{left:730.747500px;}
.x32{left:733.267500px;}
.x2d{left:744.450000px;}
.x33{left:746.970000px;}
.x34{left:766.927500px;}
.x35{left:780.630000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.933333pt;}
.ls8{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.656000pt;}
.ls17{letter-spacing:-0.608000pt;}
.ls23{letter-spacing:-0.328533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.311467pt;}
.ls1a{letter-spacing:-0.303467pt;}
.ls18{letter-spacing:-0.242133pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.033280pt;}
.ls1b{letter-spacing:-0.024960pt;}
.lsf{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.131627pt;}
.ls13{letter-spacing:0.154880pt;}
.ls25{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.224640pt;}
.ls5{letter-spacing:0.303467pt;}
.ls10{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.385280pt;}
.ls16{letter-spacing:0.794880pt;}
.ls24{letter-spacing:0.800000pt;}
.ls14{letter-spacing:2.074880pt;}
.ls1f{letter-spacing:2.714880pt;}
.ls19{letter-spacing:6.554880pt;}
.ls1e{letter-spacing:13.920000pt;}
.ls28{letter-spacing:18.863360pt;}
.ls20{letter-spacing:19.994880pt;}
.lsc{letter-spacing:20.960000pt;}
.ls27{letter-spacing:33.120000pt;}
.ls26{letter-spacing:33.280000pt;}
.ls12{letter-spacing:55.520000pt;}
.ls15{letter-spacing:56.912640pt;}
.ls0{letter-spacing:2140.426667pt;}
.ws11{word-spacing:-53.120000pt;}
.ws0{word-spacing:-22.897280pt;}
.ws2{word-spacing:-19.040000pt;}
.wse{word-spacing:-19.031467pt;}
.ws8{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.944640pt;}
.ws14{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.703360pt;}
.ws12{word-spacing:-18.695040pt;}
.wsf{word-spacing:-18.686720pt;}
.ws13{word-spacing:-18.408533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.064000pt;}
.ws7{word-spacing:-17.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws10{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
._43{margin-left:-18.224640pt;}
._1a{margin-left:-5.301333pt;}
._14{margin-left:-3.605120pt;}
._8{margin-left:-2.505600pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.306880pt;}
._1{width:2.712747pt;}
._24{width:3.730773pt;}
._4{width:4.792320pt;}
._5{width:5.944320pt;}
._1e{width:6.844160pt;}
._6{width:7.787520pt;}
._7{width:9.239040pt;}
._23{width:10.289067pt;}
._a{width:11.256320pt;}
._9{width:12.205440pt;}
._1c{width:13.985280pt;}
._b{width:15.125760pt;}
._c{width:16.286507pt;}
._21{width:17.775360pt;}
._3b{width:19.062400pt;}
._1b{width:20.021760pt;}
._20{width:20.966400pt;}
._30{width:22.175573pt;}
._25{width:23.736960pt;}
._e{width:24.710400pt;}
._d{width:25.712640pt;}
._15{width:26.657280pt;}
._f{width:28.310827pt;}
._10{width:29.756160pt;}
._2c{width:30.775680pt;}
._1d{width:31.703040pt;}
._33{width:32.855040pt;}
._2f{width:33.799680pt;}
._3c{width:35.123200pt;}
._36{width:36.495360pt;}
._37{width:38.187307pt;}
._2b{width:39.191680pt;}
._11{width:40.164480pt;}
._1f{width:41.184000pt;}
._3{width:42.735360pt;}
._17{width:43.729920pt;}
._18{width:44.931200pt;}
._16{width:46.575360pt;}
._3f{width:48.246400pt;}
._2a{width:49.224960pt;}
._19{width:50.483200pt;}
._38{width:52.594560pt;}
._44{width:54.189867pt;}
._2e{width:55.226027pt;}
._22{width:56.188800pt;}
._12{width:58.556160pt;}
._13{width:59.633280pt;}
._39{width:65.295360pt;}
._3a{width:66.815787pt;}
._40{width:68.775040pt;}
._31{width:69.972480pt;}
._32{width:71.205760pt;}
._34{width:73.008000pt;}
._2d{width:76.780800pt;}
._29{width:81.123840pt;}
._28{width:82.247040pt;}
._3e{width:93.295360pt;}
._3d{width:94.608000pt;}
._35{width:100.967040pt;}
._26{width:101.893547pt;}
._27{width:103.080747pt;}
._42{width:171.999360pt;}
._41{width:173.376000pt;}
._45{width:177.194880pt;}
._48{width:188.202240pt;}
._47{width:225.164160pt;}
._4a{width:286.341120pt;}
._49{width:287.389440pt;}
._46{width:389.479680pt;}
.fs1{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:14.866667pt;}
.y48{bottom:15.186667pt;}
.y4c{bottom:15.200000pt;}
.y51{bottom:15.360000pt;}
.y6{bottom:17.920000pt;}
.y44{bottom:47.026667pt;}
.y47{bottom:47.506667pt;}
.y4f{bottom:47.520000pt;}
.y4b{bottom:47.546667pt;}
.y5{bottom:60.640000pt;}
.y43{bottom:79.186667pt;}
.y4{bottom:81.280000pt;}
.y3b{bottom:114.592000pt;}
.y6d{bottom:119.232000pt;}
.y23{bottom:120.512000pt;}
.y3a{bottom:131.872000pt;}
.y6c{bottom:134.586667pt;}
.y39{bottom:136.506667pt;}
.y6b{bottom:139.226667pt;}
.y49{bottom:148.986667pt;}
.y38{bottom:151.866667pt;}
.y22{bottom:152.666667pt;}
.y6a{bottom:154.586667pt;}
.y37{bottom:156.506667pt;}
.y69{bottom:159.226667pt;}
.y46{bottom:168.360000pt;}
.y66{bottom:168.986667pt;}
.y40{bottom:169.306667pt;}
.y68{bottom:171.706667pt;}
.y36{bottom:171.866667pt;}
.y3f{bottom:173.946667pt;}
.y76{bottom:176.506667pt;}
.y21{bottom:184.986667pt;}
.y7d{bottom:185.146667pt;}
.y3e{bottom:186.426667pt;}
.y35{bottom:189.306667pt;}
.y75{bottom:192.026667pt;}
.y34{bottom:193.946667pt;}
.y7b{bottom:206.586667pt;}
.y33{bottom:209.306667pt;}
.y7a{bottom:211.226667pt;}
.y74{bottom:213.946667pt;}
.y20{bottom:217.146667pt;}
.y79{bottom:223.866667pt;}
.y32{bottom:226.746667pt;}
.y73{bottom:229.306667pt;}
.y31{bottom:231.386667pt;}
.y42{bottom:233.480000pt;}
.y72{bottom:233.946667pt;}
.y30{bottom:243.866667pt;}
.y65{bottom:245.946667pt;}
.y71{bottom:246.426667pt;}
.y1f{bottom:249.306667pt;}
.y64{bottom:278.266667pt;}
.y1e{bottom:281.466667pt;}
.y63{bottom:310.426667pt;}
.y2f{bottom:313.466667pt;}
.y1d{bottom:313.786667pt;}
.y3d{bottom:320.506667pt;}
.y62{bottom:342.626667pt;}
.y7c{bottom:345.666667pt;}
.y1c{bottom:345.986667pt;}
.y60{bottom:374.786667pt;}
.y1b{bottom:377.826667pt;}
.y2a{bottom:378.146667pt;}
.y61{bottom:381.506667pt;}
.y70{bottom:384.866667pt;}
.y5f{bottom:406.946667pt;}
.y1a{bottom:410.306667pt;}
.y5e{bottom:439.266667pt;}
.y29{bottom:442.306667pt;}
.y19{bottom:442.626667pt;}
.y5c{bottom:471.426667pt;}
.y18{bottom:474.786667pt;}
.y5d{bottom:478.146667pt;}
.y5b{bottom:503.586667pt;}
.y17{bottom:506.946667pt;}
.y67{bottom:513.666667pt;}
.y5a{bottom:535.746667pt;}
.y16{bottom:539.106667pt;}
.y3c{bottom:545.826667pt;}
.y59{bottom:568.093333pt;}
.y15{bottom:571.293333pt;}
.y2e{bottom:578.013333pt;}
.y58{bottom:600.253333pt;}
.y14{bottom:603.613333pt;}
.y57{bottom:632.413333pt;}
.y41{bottom:635.453333pt;}
.y13{bottom:635.773333pt;}
.y6f{bottom:642.493333pt;}
.y56{bottom:664.573333pt;}
.y12{bottom:667.933333pt;}
.y55{bottom:696.893333pt;}
.y11{bottom:700.093333pt;}
.y2d{bottom:706.813333pt;}
.y54{bottom:729.053333pt;}
.y10{bottom:732.413333pt;}
.y53{bottom:761.213333pt;}
.yf{bottom:764.573333pt;}
.y78{bottom:771.293333pt;}
.y52{bottom:793.413333pt;}
.ye{bottom:796.773333pt;}
.y6e{bottom:803.493333pt;}
.y50{bottom:811.013333pt;}
.yd{bottom:828.933333pt;}
.y28{bottom:860.933333pt;}
.yc{bottom:861.253333pt;}
.y4e{bottom:876.133333pt;}
.yb{bottom:893.413333pt;}
.y2c{bottom:900.133333pt;}
.ya{bottom:925.253333pt;}
.y27{bottom:925.573333pt;}
.y4d{bottom:941.253333pt;}
.y9{bottom:957.413333pt;}
.y26{bottom:957.733333pt;}
.y77{bottom:964.453333pt;}
.y4a{bottom:974.053333pt;}
.y8{bottom:989.733333pt;}
.y25{bottom:990.053333pt;}
.y2b{bottom:996.773333pt;}
.y7{bottom:1021.920000pt;}
.y24{bottom:1022.240000pt;}
.y3{bottom:1052.160000pt;}
.y2{bottom:1072.800000pt;}
.y1{bottom:1091.840000pt;}
.he{height:32.146667pt;}
.h8{height:34.374375pt;}
.h7{height:47.109375pt;}
.hb{height:52.832812pt;}
.h9{height:52.834688pt;}
.h5{height:54.149062pt;}
.hf{height:54.390938pt;}
.hc{height:64.466667pt;}
.hd{height:64.506667pt;}
.h3{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h10{height:76.964840pt;}
.ha{height:96.498667pt;}
.h6{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:106.226667pt;}
.w4{width:126.432000pt;}
.w5{width:133.298667pt;}
.w3{width:254.418667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.872000pt;}
.x20{left:13.600000pt;}
.x1c{left:24.000000pt;}
.x21{left:37.600000pt;}
.x1b{left:42.240000pt;}
.x1e{left:45.746667pt;}
.x23{left:53.600000pt;}
.x27{left:54.866667pt;}
.x24{left:57.266667pt;}
.x26{left:58.400000pt;}
.x25{left:61.906667pt;}
.x19{left:68.146667pt;}
.x3{left:113.472000pt;}
.x5{left:115.392000pt;}
.x15{left:117.792000pt;}
.x31{left:122.112000pt;}
.x30{left:137.466667pt;}
.x1{left:140.346667pt;}
.xc{left:160.666667pt;}
.xa{left:197.466667pt;}
.x2e{left:198.886667pt;}
.x2b{left:203.066667pt;}
.x2f{left:211.066667pt;}
.x2{left:263.426667pt;}
.x18{left:281.486667pt;}
.x9{left:287.746667pt;}
.x42{left:293.026667pt;}
.x16{left:301.166667pt;}
.x14{left:305.506667pt;}
.x8{left:306.786667pt;}
.x4{left:316.706667pt;}
.xb{left:322.146667pt;}
.xd{left:337.006667pt;}
.x6{left:343.106667pt;}
.x3a{left:347.886667pt;}
.x3b{left:360.066667pt;}
.x1a{left:369.346667pt;}
.x28{left:378.466667pt;}
.x38{left:379.726667pt;}
.x17{left:381.006667pt;}
.x10{left:387.726667pt;}
.x39{left:391.906667pt;}
.x11{left:393.826667pt;}
.x3c{left:415.726667pt;}
.x7{left:425.346667pt;}
.x3d{left:427.906667pt;}
.x12{left:452.073333pt;}
.x13{left:458.173333pt;}
.x29{left:467.273333pt;}
.x2a{left:473.373333pt;}
.x1d{left:496.426667pt;}
.x3e{left:510.953333pt;}
.x36{left:516.393333pt;}
.x3f{left:523.133333pt;}
.x37{left:528.573333pt;}
.x40{left:620.593333pt;}
.xe{left:628.273333pt;}
.x1f{left:630.373333pt;}
.x41{left:632.773333pt;}
.xf{left:634.373333pt;}
.x2c{left:649.553333pt;}
.x32{left:651.793333pt;}
.x2d{left:661.733333pt;}
.x33{left:663.973333pt;}
.x34{left:681.713333pt;}
.x35{left:693.893333pt;}
}




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