
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')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_a83d875a653d0e6d4d46d4ef.woff')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_626b19b37e37a16766e3aa72.woff')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_9d5ec4e88bfcb6d460d3a0b7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_fb6e60c481aba9579fc7589e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_fdbe6196dee29b1e41344691.woff')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_136736fbce1d1fea0a7ebb63.woff')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_7ffd22f7a899e62f7a1b0bca.woff')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_e1b471eaea81217223361748.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_23f4e57b2d9f5ade4a31d453.woff')format("woff");}.ffc{font-family:ffc;line-height:0.869141;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_8c8c4091b735ec5455d814b5.woff')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.ls20{letter-spacing:-8.348330px;}
.ls1b{letter-spacing:-0.810000px;}
.ls26{letter-spacing:-0.774000px;}
.ls22{letter-spacing:-0.379470px;}
.ls1d{letter-spacing:-0.360496px;}
.ls23{letter-spacing:-0.341523px;}
.ls2a{letter-spacing:-0.303576px;}
.ls29{letter-spacing:-0.284602px;}
.ls1c{letter-spacing:-0.226200px;}
.ls28{letter-spacing:-0.108000px;}
.ls2e{letter-spacing:-0.106800px;}
.ls27{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.053280px;}
.ls1f{letter-spacing:-0.018973px;}
.ls19{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018973px;}
.ls32{letter-spacing:0.037440px;}
.ls21{letter-spacing:0.037947px;}
.ls31{letter-spacing:0.090720px;}
.ls10{letter-spacing:0.094867px;}
.ls14{letter-spacing:0.113841px;}
.ls16{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.208708px;}
.ls24{letter-spacing:0.246655px;}
.ls15{letter-spacing:0.259920px;}
.ls2c{letter-spacing:0.298800px;}
.ls33{letter-spacing:0.338400px;}
.ls0{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.490800px;}
.ls2d{letter-spacing:0.529200px;}
.ls25{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.666720px;}
.ls1e{letter-spacing:0.796886px;}
.lsb{letter-spacing:1.631719px;}
.ls8{letter-spacing:2.390658px;}
.ls11{letter-spacing:2.517148px;}
.ls9{letter-spacing:3.149597px;}
.lsa{letter-spacing:3.339332px;}
.ls2f{letter-spacing:4.266000px;}
.lsf{letter-spacing:4.667475px;}
.lse{letter-spacing:4.857210px;}
.ls12{letter-spacing:6.185353px;}
.ls6{letter-spacing:6.944292px;}
.ls7{letter-spacing:7.070782px;}
.ls13{letter-spacing:7.134027px;}
.ls5{letter-spacing:7.703231px;}
.lsc{letter-spacing:8.462170px;}
.ls2{letter-spacing:10.738988px;}
.ls3{letter-spacing:10.865477px;}
.ls4{letter-spacing:10.928722px;}
.ls17{letter-spacing:32.748220px;}
.ls18{letter-spacing:33.507159px;}
.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;}
}
.wsd{word-spacing:-32.628960px;}
.wsc{word-spacing:-31.325209px;}
.ws13{word-spacing:-31.287262px;}
.ws8{word-spacing:-31.116501px;}
.ws9{word-spacing:-31.097528px;}
.ws4{word-spacing:-31.078554px;}
.ws6{word-spacing:-31.059581px;}
.ws11{word-spacing:-30.793952px;}
.ws12{word-spacing:-30.774978px;}
.wsb{word-spacing:-30.737031px;}
.ws5{word-spacing:-30.718058px;}
.wsa{word-spacing:-30.699085px;}
.ws18{word-spacing:-17.104080px;}
.ws19{word-spacing:-16.951680px;}
.ws17{word-spacing:-16.912080px;}
.wse{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.506480px;}
.ws14{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.wsf{word-spacing:-8.928000px;}
.ws7{word-spacing:-6.052539px;}
.ws15{word-spacing:0.000000px;}
._15{margin-left:-16.160160px;}
._11{margin-left:-14.308560px;}
._14{margin-left:-9.620763px;}
._8{margin-left:-8.557038px;}
._13{margin-left:-7.363440px;}
._6{margin-left:-3.398418px;}
._10{margin-left:-2.187574px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.343600px;}
._9{width:3.512423px;}
._7{width:4.821878px;}
._5{width:6.375088px;}
._4{width:8.113866px;}
._a{width:9.232421px;}
._f{width:10.241368px;}
._3{width:11.387330px;}
._b{width:12.411938px;}
._12{width:14.342400px;}
._d{width:31.143120px;}
._e{width:32.330160px;}
._c{width:34.407230px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs7{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:0.525000px;}
.y47{bottom:2.700000px;}
.y5{bottom:4.140000px;}
.y54{bottom:5.010000px;}
.y3a{bottom:5.745000px;}
.y2{bottom:9.900000px;}
.y46{bottom:10.260000px;}
.y4{bottom:23.070000px;}
.y52{bottom:25.380000px;}
.y39{bottom:25.905000px;}
.y45{bottom:40.320000px;}
.y51{bottom:45.180000px;}
.y3{bottom:48.090000px;}
.y38{bottom:48.945000px;}
.y44{bottom:51.480000px;}
.y7{bottom:57.600000px;}
.y43{bottom:62.640000px;}
.y50{bottom:67.500000px;}
.y42{bottom:74.340000px;}
.y37{bottom:75.045000px;}
.y4f{bottom:86.580000px;}
.y41{bottom:87.300000px;}
.y3c{bottom:88.380000px;}
.y36{bottom:98.265000px;}
.y40{bottom:100.260000px;}
.y4e{bottom:104.400000px;}
.y7f{bottom:107.640000px;}
.y4d{bottom:112.320000px;}
.y35{bottom:121.305000px;}
.y3f{bottom:122.250000px;}
.y4c{bottom:128.190000px;}
.ya7{bottom:131.400000px;}
.y7e{bottom:133.740000px;}
.y4b{bottom:143.670000px;}
.y34{bottom:144.570000px;}
.ya6{bottom:151.920000px;}
.y4a{bottom:159.150000px;}
.y7d{bottom:160.020000px;}
.y33{bottom:167.610000px;}
.y49{bottom:174.810000px;}
.ya5{bottom:178.020000px;}
.y7c{bottom:183.060000px;}
.y3e{bottom:184.350000px;}
.y48{bottom:189.930000px;}
.y32{bottom:190.830000px;}
.y3d{bottom:194.970000px;}
.ya4{bottom:204.120000px;}
.y7b{bottom:206.310000px;}
.y31{bottom:213.870000px;}
.y7a{bottom:229.350000px;}
.ya3{bottom:230.430000px;}
.y30{bottom:236.910000px;}
.y79{bottom:252.390000px;}
.ya2{bottom:256.530000px;}
.y2f{bottom:257.070000px;}
.y78{bottom:275.610000px;}
.y2e{bottom:280.110000px;}
.ya1{bottom:282.630000px;}
.y77{bottom:298.650000px;}
.y2d{bottom:303.330000px;}
.ya0{bottom:305.850000px;}
.y1d{bottom:307.650000px;}
.yf{bottom:313.245000px;}
.y76{bottom:324.750000px;}
.y9f{bottom:325.830000px;}
.y2c{bottom:326.370000px;}
.y1c{bottom:331.770000px;}
.y2b{bottom:345.990000px;}
.y2a{bottom:347.610000px;}
.y75{bottom:347.970000px;}
.y29{bottom:355.350000px;}
.y1b{bottom:355.890000px;}
.y9e{bottom:366.150000px;}
.y74{bottom:368.130000px;}
.y28{bottom:378.960000px;}
.y1a{bottom:380.220000px;}
.y9d{bottom:386.130000px;}
.y73{bottom:391.170000px;}
.y27{bottom:402.360000px;}
.y19{bottom:404.340000px;}
.y9c{bottom:409.170000px;}
.y72{bottom:414.390000px;}
.y26{bottom:425.940000px;}
.y18{bottom:428.460000px;}
.y9b{bottom:432.390000px;}
.y71{bottom:437.430000px;}
.y25{bottom:449.520000px;}
.y17{bottom:452.580000px;}
.y9a{bottom:455.475000px;}
.y70{bottom:460.515000px;}
.y24{bottom:472.920000px;}
.y16{bottom:476.700000px;}
.y99{bottom:478.695000px;}
.y6f{bottom:480.675000px;}
.y23{bottom:496.500000px;}
.y15{bottom:500.820000px;}
.y6e{bottom:500.835000px;}
.y98{bottom:501.735000px;}
.y22{bottom:520.080000px;}
.y6d{bottom:523.875000px;}
.y14{bottom:525.120000px;}
.y97{bottom:527.835000px;}
.y21{bottom:543.480000px;}
.y6c{bottom:546.915000px;}
.y13{bottom:549.240000px;}
.y96{bottom:553.935000px;}
.y20{bottom:567.060000px;}
.y6b{bottom:567.075000px;}
.y12{bottom:573.360000px;}
.y95{bottom:580.215000px;}
.y6a{bottom:590.115000px;}
.y1f{bottom:590.640000px;}
.y11{bottom:597.525000px;}
.y94{bottom:603.255000px;}
.y1e{bottom:614.085000px;}
.y69{bottom:616.395000px;}
.y10{bottom:621.645000px;}
.y93{bottom:626.295000px;}
.y68{bottom:639.435000px;}
.y92{bottom:649.515000px;}
.y67{bottom:659.595000px;}
.y91{bottom:669.675000px;}
.y66{bottom:679.605000px;}
.y90{bottom:689.685000px;}
.y65{bottom:702.825000px;}
.y8f{bottom:709.845000px;}
.y64{bottom:725.865000px;}
.y8e{bottom:730.005000px;}
.y63{bottom:748.905000px;}
.y8d{bottom:749.985000px;}
.y8c{bottom:770.145000px;}
.y62{bottom:775.185000px;}
.y8b{bottom:790.305000px;}
.y61{bottom:798.225000px;}
.y8a{bottom:810.285000px;}
.y60{bottom:821.445000px;}
.y89{bottom:830.445000px;}
.y5f{bottom:844.485000px;}
.y88{bottom:850.605000px;}
.y5e{bottom:864.645000px;}
.y87{bottom:870.585000px;}
.y5d{bottom:887.685000px;}
.y86{bottom:890.745000px;}
.y5c{bottom:910.950000px;}
.y85{bottom:913.830000px;}
.y5b{bottom:933.990000px;}
.y84{bottom:937.050000px;}
.ye{bottom:947.130000px;}
.yd{bottom:952.890000px;}
.y5a{bottom:960.090000px;}
.yc{bottom:975.930000px;}
.y59{bottom:983.310000px;}
.y83{bottom:986.190000px;}
.yb{bottom:998.970000px;}
.y58{bottom:1006.350000px;}
.y82{bottom:1012.290000px;}
.ya{bottom:1019.130000px;}
.y57{bottom:1032.450000px;}
.y81{bottom:1038.570000px;}
.y9{bottom:1040.910000px;}
.y56{bottom:1058.550000px;}
.y80{bottom:1061.610000px;}
.y8{bottom:1072.230000px;}
.y53{bottom:1075.680000px;}
.y55{bottom:1084.650000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.ha{height:4.165313px;}
.h10{height:5.653125px;}
.h17{height:12.006914px;}
.h19{height:27.540000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h15{height:52.971680px;}
.h16{height:54.421875px;}
.hf{height:57.243164px;}
.h7{height:57.324375px;}
.h18{height:58.621992px;}
.h6{height:58.651172px;}
.he{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h11{height:70.218281px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h12{height:224.130000px;}
.hb{height:631.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.074500px;}
.w4{width:132.694500px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:6.876000px;}
.x18{left:8.134500px;}
.x4{left:12.765000px;}
.x17{left:16.054500px;}
.x1c{left:18.214500px;}
.x15{left:19.654500px;}
.x16{left:26.134500px;}
.x1e{left:29.194500px;}
.xf{left:33.334500px;}
.x6{left:35.985000px;}
.x1d{left:47.734500px;}
.x10{left:50.794500px;}
.xe{left:55.114500px;}
.x20{left:57.094500px;}
.x1a{left:62.130000px;}
.x1f{left:66.268500px;}
.x13{left:73.288500px;}
.x1{left:78.301500px;}
.x14{left:79.588500px;}
.x12{left:82.468500px;}
.x7{left:86.400000px;}
.x2{left:95.788500px;}
.x21{left:102.808500px;}
.x1b{left:106.768500px;}
.x11{left:124.588500px;}
.x5{left:141.330000px;}
.x23{left:181.290000px;}
.x3{left:182.385000px;}
.x24{left:193.710000px;}
.x19{left:219.105000px;}
.x25{left:427.965000px;}
.x22{left:458.025000px;}
.xb{left:594.285000px;}
.xc{left:659.490000px;}
.xa{left:679.650000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.xd{left:806.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-7.420737pt;}
.ls1b{letter-spacing:-0.720000pt;}
.ls26{letter-spacing:-0.688000pt;}
.ls22{letter-spacing:-0.337306pt;}
.ls1d{letter-spacing:-0.320441pt;}
.ls23{letter-spacing:-0.303576pt;}
.ls2a{letter-spacing:-0.269845pt;}
.ls29{letter-spacing:-0.252980pt;}
.ls1c{letter-spacing:-0.201067pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls2e{letter-spacing:-0.094933pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls1f{letter-spacing:-0.016865pt;}
.ls19{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016865pt;}
.ls32{letter-spacing:0.033280pt;}
.ls21{letter-spacing:0.033731pt;}
.ls31{letter-spacing:0.080640pt;}
.ls10{letter-spacing:0.084327pt;}
.ls14{letter-spacing:0.101192pt;}
.ls16{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.185518pt;}
.ls24{letter-spacing:0.219249pt;}
.ls15{letter-spacing:0.231040pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls33{letter-spacing:0.300800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.436267pt;}
.ls2d{letter-spacing:0.470400pt;}
.ls25{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls1e{letter-spacing:0.708343pt;}
.lsb{letter-spacing:1.450417pt;}
.ls8{letter-spacing:2.125029pt;}
.ls11{letter-spacing:2.237465pt;}
.ls9{letter-spacing:2.799642pt;}
.lsa{letter-spacing:2.968295pt;}
.ls2f{letter-spacing:3.792000pt;}
.lsf{letter-spacing:4.148867pt;}
.lse{letter-spacing:4.317520pt;}
.ls12{letter-spacing:5.498092pt;}
.ls6{letter-spacing:6.172704pt;}
.ls7{letter-spacing:6.285140pt;}
.ls13{letter-spacing:6.341357pt;}
.ls5{letter-spacing:6.847317pt;}
.lsc{letter-spacing:7.521929pt;}
.ls2{letter-spacing:9.545767pt;}
.ls3{letter-spacing:9.658202pt;}
.ls4{letter-spacing:9.714420pt;}
.ls17{letter-spacing:29.109529pt;}
.ls18{letter-spacing:29.784141pt;}
.wsd{word-spacing:-29.003520pt;}
.wsc{word-spacing:-27.844630pt;}
.ws13{word-spacing:-27.810900pt;}
.ws8{word-spacing:-27.659112pt;}
.ws9{word-spacing:-27.642247pt;}
.ws4{word-spacing:-27.625381pt;}
.ws6{word-spacing:-27.608516pt;}
.ws11{word-spacing:-27.372402pt;}
.ws12{word-spacing:-27.355536pt;}
.wsb{word-spacing:-27.321806pt;}
.ws5{word-spacing:-27.304940pt;}
.wsa{word-spacing:-27.288075pt;}
.ws18{word-spacing:-15.203627pt;}
.ws19{word-spacing:-15.068160pt;}
.ws17{word-spacing:-15.032960pt;}
.wse{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.672427pt;}
.ws14{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.wsf{word-spacing:-7.936000pt;}
.ws7{word-spacing:-5.380035pt;}
.ws15{word-spacing:0.000000pt;}
._15{margin-left:-14.364587pt;}
._11{margin-left:-12.718720pt;}
._14{margin-left:-8.551789pt;}
._8{margin-left:-7.606256pt;}
._13{margin-left:-6.545280pt;}
._6{margin-left:-3.020816pt;}
._10{margin-left:-1.944510pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.083200pt;}
._9{width:3.122154pt;}
._7{width:4.286113pt;}
._5{width:5.666745pt;}
._4{width:7.212326pt;}
._a{width:8.206596pt;}
._f{width:9.103438pt;}
._3{width:10.122071pt;}
._b{width:11.032834pt;}
._12{width:12.748800pt;}
._d{width:27.682773pt;}
._e{width:28.737920pt;}
._c{width:30.584204pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs7{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:0.466667pt;}
.y47{bottom:2.400000pt;}
.y5{bottom:3.680000pt;}
.y54{bottom:4.453333pt;}
.y3a{bottom:5.106667pt;}
.y2{bottom:8.800000pt;}
.y46{bottom:9.120000pt;}
.y4{bottom:20.506667pt;}
.y52{bottom:22.560000pt;}
.y39{bottom:23.026667pt;}
.y45{bottom:35.840000pt;}
.y51{bottom:40.160000pt;}
.y3{bottom:42.746667pt;}
.y38{bottom:43.506667pt;}
.y44{bottom:45.760000pt;}
.y7{bottom:51.200000pt;}
.y43{bottom:55.680000pt;}
.y50{bottom:60.000000pt;}
.y42{bottom:66.080000pt;}
.y37{bottom:66.706667pt;}
.y4f{bottom:76.960000pt;}
.y41{bottom:77.600000pt;}
.y3c{bottom:78.560000pt;}
.y36{bottom:87.346667pt;}
.y40{bottom:89.120000pt;}
.y4e{bottom:92.800000pt;}
.y7f{bottom:95.680000pt;}
.y4d{bottom:99.840000pt;}
.y35{bottom:107.826667pt;}
.y3f{bottom:108.666667pt;}
.y4c{bottom:113.946667pt;}
.ya7{bottom:116.800000pt;}
.y7e{bottom:118.880000pt;}
.y4b{bottom:127.706667pt;}
.y34{bottom:128.506667pt;}
.ya6{bottom:135.040000pt;}
.y4a{bottom:141.466667pt;}
.y7d{bottom:142.240000pt;}
.y33{bottom:148.986667pt;}
.y49{bottom:155.386667pt;}
.ya5{bottom:158.240000pt;}
.y7c{bottom:162.720000pt;}
.y3e{bottom:163.866667pt;}
.y48{bottom:168.826667pt;}
.y32{bottom:169.626667pt;}
.y3d{bottom:173.306667pt;}
.ya4{bottom:181.440000pt;}
.y7b{bottom:183.386667pt;}
.y31{bottom:190.106667pt;}
.y7a{bottom:203.866667pt;}
.ya3{bottom:204.826667pt;}
.y30{bottom:210.586667pt;}
.y79{bottom:224.346667pt;}
.ya2{bottom:228.026667pt;}
.y2f{bottom:228.506667pt;}
.y78{bottom:244.986667pt;}
.y2e{bottom:248.986667pt;}
.ya1{bottom:251.226667pt;}
.y77{bottom:265.466667pt;}
.y2d{bottom:269.626667pt;}
.ya0{bottom:271.866667pt;}
.y1d{bottom:273.466667pt;}
.yf{bottom:278.440000pt;}
.y76{bottom:288.666667pt;}
.y9f{bottom:289.626667pt;}
.y2c{bottom:290.106667pt;}
.y1c{bottom:294.906667pt;}
.y2b{bottom:307.546667pt;}
.y2a{bottom:308.986667pt;}
.y75{bottom:309.306667pt;}
.y29{bottom:315.866667pt;}
.y1b{bottom:316.346667pt;}
.y9e{bottom:325.466667pt;}
.y74{bottom:327.226667pt;}
.y28{bottom:336.853333pt;}
.y1a{bottom:337.973333pt;}
.y9d{bottom:343.226667pt;}
.y73{bottom:347.706667pt;}
.y27{bottom:357.653333pt;}
.y19{bottom:359.413333pt;}
.y9c{bottom:363.706667pt;}
.y72{bottom:368.346667pt;}
.y26{bottom:378.613333pt;}
.y18{bottom:380.853333pt;}
.y9b{bottom:384.346667pt;}
.y71{bottom:388.826667pt;}
.y25{bottom:399.573333pt;}
.y17{bottom:402.293333pt;}
.y9a{bottom:404.866667pt;}
.y70{bottom:409.346667pt;}
.y24{bottom:420.373333pt;}
.y16{bottom:423.733333pt;}
.y99{bottom:425.506667pt;}
.y6f{bottom:427.266667pt;}
.y23{bottom:441.333333pt;}
.y15{bottom:445.173333pt;}
.y6e{bottom:445.186667pt;}
.y98{bottom:445.986667pt;}
.y22{bottom:462.293333pt;}
.y6d{bottom:465.666667pt;}
.y14{bottom:466.773333pt;}
.y97{bottom:469.186667pt;}
.y21{bottom:483.093333pt;}
.y6c{bottom:486.146667pt;}
.y13{bottom:488.213333pt;}
.y96{bottom:492.386667pt;}
.y20{bottom:504.053333pt;}
.y6b{bottom:504.066667pt;}
.y12{bottom:509.653333pt;}
.y95{bottom:515.746667pt;}
.y6a{bottom:524.546667pt;}
.y1f{bottom:525.013333pt;}
.y11{bottom:531.133333pt;}
.y94{bottom:536.226667pt;}
.y1e{bottom:545.853333pt;}
.y69{bottom:547.906667pt;}
.y10{bottom:552.573333pt;}
.y93{bottom:556.706667pt;}
.y68{bottom:568.386667pt;}
.y92{bottom:577.346667pt;}
.y67{bottom:586.306667pt;}
.y91{bottom:595.266667pt;}
.y66{bottom:604.093333pt;}
.y90{bottom:613.053333pt;}
.y65{bottom:624.733333pt;}
.y8f{bottom:630.973333pt;}
.y64{bottom:645.213333pt;}
.y8e{bottom:648.893333pt;}
.y63{bottom:665.693333pt;}
.y8d{bottom:666.653333pt;}
.y8c{bottom:684.573333pt;}
.y62{bottom:689.053333pt;}
.y8b{bottom:702.493333pt;}
.y61{bottom:709.533333pt;}
.y8a{bottom:720.253333pt;}
.y60{bottom:730.173333pt;}
.y89{bottom:738.173333pt;}
.y5f{bottom:750.653333pt;}
.y88{bottom:756.093333pt;}
.y5e{bottom:768.573333pt;}
.y87{bottom:773.853333pt;}
.y5d{bottom:789.053333pt;}
.y86{bottom:791.773333pt;}
.y5c{bottom:809.733333pt;}
.y85{bottom:812.293333pt;}
.y5b{bottom:830.213333pt;}
.y84{bottom:832.933333pt;}
.ye{bottom:841.893333pt;}
.yd{bottom:847.013333pt;}
.y5a{bottom:853.413333pt;}
.yc{bottom:867.493333pt;}
.y59{bottom:874.053333pt;}
.y83{bottom:876.613333pt;}
.yb{bottom:887.973333pt;}
.y58{bottom:894.533333pt;}
.y82{bottom:899.813333pt;}
.ya{bottom:905.893333pt;}
.y57{bottom:917.733333pt;}
.y81{bottom:923.173333pt;}
.y9{bottom:925.253333pt;}
.y56{bottom:940.933333pt;}
.y80{bottom:943.653333pt;}
.y8{bottom:953.093333pt;}
.y53{bottom:956.160000pt;}
.y55{bottom:964.133333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.ha{height:3.702500pt;}
.h10{height:5.025000pt;}
.h17{height:10.672812pt;}
.h19{height:24.480000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h15{height:47.085938pt;}
.h16{height:48.375000pt;}
.hf{height:50.882812pt;}
.h7{height:50.955000pt;}
.h18{height:52.108438pt;}
.h6{height:52.134375pt;}
.he{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h11{height:62.416250pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h12{height:199.226667pt;}
.hb{height:561.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.510667pt;}
.w4{width:117.950667pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.112000pt;}
.x18{left:7.230667pt;}
.x4{left:11.346667pt;}
.x17{left:14.270667pt;}
.x1c{left:16.190667pt;}
.x15{left:17.470667pt;}
.x16{left:23.230667pt;}
.x1e{left:25.950667pt;}
.xf{left:29.630667pt;}
.x6{left:31.986667pt;}
.x1d{left:42.430667pt;}
.x10{left:45.150667pt;}
.xe{left:48.990667pt;}
.x20{left:50.750667pt;}
.x1a{left:55.226667pt;}
.x1f{left:58.905333pt;}
.x13{left:65.145333pt;}
.x1{left:69.601333pt;}
.x14{left:70.745333pt;}
.x12{left:73.305333pt;}
.x7{left:76.800000pt;}
.x2{left:85.145333pt;}
.x21{left:91.385333pt;}
.x1b{left:94.905333pt;}
.x11{left:110.745333pt;}
.x5{left:125.626667pt;}
.x23{left:161.146667pt;}
.x3{left:162.120000pt;}
.x24{left:172.186667pt;}
.x19{left:194.760000pt;}
.x25{left:380.413333pt;}
.x22{left:407.133333pt;}
.xb{left:528.253333pt;}
.xc{left:586.213333pt;}
.xa{left:604.133333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.xd{left:717.120000pt;}
}




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