
    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_5cbf3799d78b56c242913a69.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3dc71c1c762d124bf78bb825.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cec1ae18a780a396cac5b14d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_e09dac141c02abeb01b256b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_ca5afcb8281e03474b1a7bf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_7ab25f464a14f9f80c720b5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_4ce4e36ed01966e9620c65e1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a80a6e9e9fda2dd17566d7ae.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_13f74a3aaf9383b476e55771.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3e002393b00b92832e7de7ae.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2d8fb3293b3e1966eefde3f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.298200px;}
.ls12{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.127200px;}
.lsa{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.076800px;}
.lsf{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.087600px;}
.ls11{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls16{letter-spacing:22.986720px;}
.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;}
}
.ws7{word-spacing:-54.000000px;}
.ws3{word-spacing:-18.282240px;}
.ws2{word-spacing:-16.626360px;}
.ws9{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsf{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.505760px;}
.ws8{word-spacing:-12.778080px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws6{word-spacing:-12.096000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._18{margin-left:-7.289280px;}
._f{margin-left:-4.242240px;}
._2{margin-left:-3.174240px;}
._3{margin-left:-2.133600px;}
._0{margin-left:-1.122000px;}
._1{width:1.230000px;}
._7{width:2.735760px;}
._9{width:3.746640px;}
._e{width:4.910880px;}
._6{width:5.976000px;}
._8{width:6.991920px;}
._10{width:8.007840px;}
._b{width:9.023760px;}
._c{width:10.334400px;}
._d{width:11.412480px;}
._4{width:13.124640px;}
._a{width:16.912080px;}
._17{width:17.976720px;}
._13{width:20.318400px;}
._5{width:21.359280px;}
._15{width:23.127120px;}
._12{width:58.564800px;}
._14{width:59.760000px;}
._16{width:73.086480px;}
._11{width:76.492800px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.240000px;}
.y42{bottom:3.420000px;}
.y18{bottom:3.600000px;}
.y3{bottom:3.636000px;}
.ya6{bottom:6.300000px;}
.ye{bottom:10.800000px;}
.yc{bottom:12.600000px;}
.y1a{bottom:13.860000px;}
.y43{bottom:14.940000px;}
.y4{bottom:17.316000px;}
.y41{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y95{bottom:20.340000px;}
.y3e{bottom:20.520000px;}
.y9f{bottom:20.565000px;}
.ya5{bottom:23.394000px;}
.ya9{bottom:23.430000px;}
.y17{bottom:23.985000px;}
.yb{bottom:30.240000px;}
.y94{bottom:37.620000px;}
.y3d{bottom:37.800000px;}
.y9e{bottom:37.845000px;}
.y16{bottom:40.365000px;}
.ya4{bottom:40.674000px;}
.ya8{bottom:40.710000px;}
.y5{bottom:46.260000px;}
.ya{bottom:46.620000px;}
.y3c{bottom:54.900000px;}
.y9d{bottom:54.945000px;}
.ya2{bottom:55.080000px;}
.y97{bottom:55.110000px;}
.y15{bottom:56.925000px;}
.yb1{bottom:62.640000px;}
.y1{bottom:67.320000px;}
.y14{bottom:70.065000px;}
.y3b{bottom:72.180000px;}
.y9c{bottom:72.225000px;}
.ya1{bottom:72.360000px;}
.yad{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.y13{bottom:88.245000px;}
.y3a{bottom:89.460000px;}
.y9b{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y39{bottom:106.740000px;}
.y9a{bottom:106.785000px;}
.y12{bottom:107.325000px;}
.y7{bottom:111.270000px;}
.y92{bottom:111.456000px;}
.y54{bottom:112.716000px;}
.y38{bottom:124.020000px;}
.y91{bottom:128.736000px;}
.y53{bottom:129.996000px;}
.y29{bottom:130.500000px;}
.y11{bottom:133.065000px;}
.ya3{bottom:135.216000px;}
.yd2{bottom:140.436000px;}
.y37{bottom:141.300000px;}
.y28{bottom:145.800000px;}
.y90{bottom:146.016000px;}
.y52{bottom:147.276000px;}
.y10{bottom:157.365000px;}
.yd1{bottom:157.710000px;}
.y36{bottom:158.430000px;}
.y8f{bottom:163.110000px;}
.y27{bottom:163.470000px;}
.y51{bottom:164.550000px;}
.yd0{bottom:174.990000px;}
.y35{bottom:175.710000px;}
.y8e{bottom:180.390000px;}
.y26{bottom:180.750000px;}
.y50{bottom:181.830000px;}
.ya0{bottom:190.650000px;}
.ycf{bottom:192.270000px;}
.y34{bottom:192.990000px;}
.y8d{bottom:197.670000px;}
.y25{bottom:198.030000px;}
.y4f{bottom:199.110000px;}
.yce{bottom:209.550000px;}
.y33{bottom:210.270000px;}
.y8c{bottom:214.950000px;}
.y24{bottom:215.670000px;}
.y4e{bottom:216.210000px;}
.ycd{bottom:226.650000px;}
.y32{bottom:227.550000px;}
.y8b{bottom:232.230000px;}
.y23{bottom:233.130000px;}
.y4d{bottom:233.490000px;}
.ycc{bottom:243.930000px;}
.y31{bottom:244.830000px;}
.y8a{bottom:249.510000px;}
.y22{bottom:250.590000px;}
.y4c{bottom:250.770000px;}
.ycb{bottom:261.210000px;}
.y30{bottom:261.930000px;}
.y89{bottom:266.610000px;}
.y21{bottom:267.870000px;}
.y4b{bottom:268.050000px;}
.yca{bottom:278.490000px;}
.y2f{bottom:279.210000px;}
.y88{bottom:283.890000px;}
.y20{bottom:285.330000px;}
.yc9{bottom:295.770000px;}
.y2e{bottom:296.490000px;}
.y87{bottom:301.170000px;}
.y4a{bottom:302.430000px;}
.y1f{bottom:302.790000px;}
.ybc{bottom:312.330000px;}
.yc8{bottom:312.870000px;}
.y2d{bottom:313.770000px;}
.y86{bottom:318.450000px;}
.y49{bottom:319.710000px;}
.y1e{bottom:322.950000px;}
.ybb{bottom:327.090000px;}
.y99{bottom:329.430000px;}
.yc7{bottom:330.150000px;}
.y2c{bottom:331.050000px;}
.y85{bottom:335.730000px;}
.y48{bottom:337.035000px;}
.yba{bottom:345.135000px;}
.yc6{bottom:347.475000px;}
.y2b{bottom:348.330000px;}
.y1d{bottom:350.490000px;}
.y84{bottom:352.875000px;}
.y47{bottom:354.315000px;}
.yb9{bottom:363.135000px;}
.yc5{bottom:364.755000px;}
.y2a{bottom:365.430000px;}
.y1c{bottom:368.130000px;}
.y83{bottom:370.155000px;}
.y46{bottom:371.595000px;}
.yb8{bottom:381.135000px;}
.yc4{bottom:382.035000px;}
.y82{bottom:387.435000px;}
.y45{bottom:388.875000px;}
.yb7{bottom:399.135000px;}
.yc3{bottom:399.315000px;}
.y81{bottom:404.715000px;}
.y44{bottom:405.975000px;}
.yc2{bottom:416.415000px;}
.yb6{bottom:417.135000px;}
.y40{bottom:420.015000px;}
.y80{bottom:421.995000px;}
.yc1{bottom:433.695000px;}
.y7f{bottom:439.275000px;}
.yc0{bottom:447.735000px;}
.y1b{bottom:449.355000px;}
.y98{bottom:450.975000px;}
.yb5{bottom:452.235000px;}
.y7e{bottom:456.375000px;}
.y7d{bottom:473.655000px;}
.yb4{bottom:487.515000px;}
.y7c{bottom:490.935000px;}
.y7b{bottom:508.215000px;}
.yb3{bottom:508.755000px;}
.y7a{bottom:525.495000px;}
.yb2{bottom:526.035000px;}
.yb0{bottom:540.795000px;}
.y79{bottom:542.775000px;}
.y96{bottom:555.195000px;}
.y78{bottom:559.875000px;}
.y77{bottom:577.155000px;}
.y76{bottom:594.435000px;}
.y75{bottom:611.745000px;}
.yaf{bottom:618.225000px;}
.y93{bottom:625.065000px;}
.y74{bottom:629.025000px;}
.y73{bottom:646.305000px;}
.y72{bottom:663.405000px;}
.y71{bottom:680.685000px;}
.ybf{bottom:689.505000px;}
.y70{bottom:697.965000px;}
.ybe{bottom:706.785000px;}
.y6f{bottom:715.245000px;}
.ybd{bottom:720.825000px;}
.y6e{bottom:732.525000px;}
.yae{bottom:739.725000px;}
.y6d{bottom:749.625000px;}
.y6c{bottom:766.905000px;}
.y6b{bottom:784.185000px;}
.y6a{bottom:801.465000px;}
.yac{bottom:809.385000px;}
.y69{bottom:818.745000px;}
.y19{bottom:828.825000px;}
.y68{bottom:836.025000px;}
.y67{bottom:853.125000px;}
.yf{bottom:858.345000px;}
.y66{bottom:870.405000px;}
.y65{bottom:887.730000px;}
.yab{bottom:896.550000px;}
.y64{bottom:905.010000px;}
.y63{bottom:922.290000px;}
.y62{bottom:939.570000px;}
.y61{bottom:956.670000px;}
.yaa{bottom:966.210000px;}
.y60{bottom:973.950000px;}
.y5f{bottom:991.230000px;}
.y5e{bottom:1008.510000px;}
.y5d{bottom:1025.790000px;}
.yd{bottom:1030.830000px;}
.y5c{bottom:1042.890000px;}
.y6{bottom:1056.210000px;}
.y5b{bottom:1060.170000px;}
.y5a{bottom:1077.450000px;}
.y59{bottom:1094.730000px;}
.y58{bottom:1112.010000px;}
.ya7{bottom:1122.270000px;}
.y57{bottom:1129.290000px;}
.y56{bottom:1146.420000px;}
.y55{bottom:1163.700000px;}
.h2e{height:17.100000px;}
.h2f{height:17.136000px;}
.h2b{height:17.280000px;}
.hc{height:25.020000px;}
.h1e{height:29.340000px;}
.h15{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h2d{height:34.380000px;}
.h2c{height:34.560000px;}
.h8{height:36.180000px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1b{height:42.186445px;}
.h30{height:43.506914px;}
.hf{height:44.002969px;}
.ha{height:44.820000px;}
.h14{height:47.223633px;}
.h17{height:47.980898px;}
.h1a{height:49.255313px;}
.hd{height:49.680000px;}
.h19{height:49.742227px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h24{height:54.720000px;}
.h25{height:54.756000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h27{height:68.940000px;}
.h20{height:68.976000px;}
.hb{height:71.613281px;}
.h2a{height:76.716000px;}
.h28{height:86.436000px;}
.h1f{height:103.320000px;}
.h21{height:103.500000px;}
.h29{height:120.780000px;}
.h22{height:120.816000px;}
.h7{height:121.536000px;}
.h23{height:138.060000px;}
.h26{height:155.340000px;}
.he{height:172.470000px;}
.h16{height:379.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:41.400000px;}
.wa{width:42.336000px;}
.wc{width:52.920000px;}
.wb{width:55.800000px;}
.wd{width:56.016000px;}
.w11{width:70.380000px;}
.w12{width:70.560000px;}
.w3{width:73.080000px;}
.w10{width:75.096000px;}
.wf{width:84.960000px;}
.w13{width:86.436000px;}
.w14{width:86.580000px;}
.w5{width:151.950000px;}
.w16{width:167.610000px;}
.w8{width:216.075000px;}
.w15{width:337.035000px;}
.w9{width:515.055000px;}
.w17{width:561.345000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xf{left:49.896000px;}
.x1{left:81.000000px;}
.x25{left:84.239987px;}
.x27{left:94.895987px;}
.x4{left:98.130000px;}
.x26{left:99.755987px;}
.x28{left:102.275987px;}
.xe{left:119.010000px;}
.x13{left:124.776000px;}
.x21{left:135.035987px;}
.x14{left:181.290000px;}
.xd{left:189.750000px;}
.x10{left:215.175000px;}
.x1d{left:221.249987px;}
.x5{left:232.950000px;}
.x15{left:234.930000px;}
.xc{left:247.395000px;}
.x1e{left:250.050000px;}
.x20{left:252.029987px;}
.x23{left:262.469987px;}
.x8{left:272.235000px;}
.x16{left:291.675000px;}
.x11{left:297.075000px;}
.x6{left:331.995000px;}
.x17{left:333.795000px;}
.xa{left:342.255000px;}
.x7{left:351.255000px;}
.xb{left:365.475000px;}
.x18{left:419.475000px;}
.x9{left:439.500000px;}
.x24{left:446.474987px;}
.x19{left:495.285000px;}
.x1a{left:566.385000px;}
.x1f{left:618.584987px;}
.x22{left:621.284987px;}
.x1b{left:637.665000px;}
.x1c{left:724.830000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.265067pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.113067pt;}
.lsa{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.068267pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.077867pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls16{letter-spacing:20.432640pt;}
.ws7{word-spacing:-48.000000pt;}
.ws3{word-spacing:-16.250880pt;}
.ws2{word-spacing:-14.778987pt;}
.ws9{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.358293pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws6{word-spacing:-10.752000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._18{margin-left:-6.479360pt;}
._f{margin-left:-3.770880pt;}
._2{margin-left:-2.821547pt;}
._3{margin-left:-1.896533pt;}
._0{margin-left:-0.997333pt;}
._1{width:1.093333pt;}
._7{width:2.431787pt;}
._9{width:3.330347pt;}
._e{width:4.365227pt;}
._6{width:5.312000pt;}
._8{width:6.215040pt;}
._10{width:7.118080pt;}
._b{width:8.021120pt;}
._c{width:9.186133pt;}
._d{width:10.144427pt;}
._4{width:11.666347pt;}
._a{width:15.032960pt;}
._17{width:15.979307pt;}
._13{width:18.060800pt;}
._5{width:18.986027pt;}
._15{width:20.557440pt;}
._12{width:52.057600pt;}
._14{width:53.120000pt;}
._16{width:64.965760pt;}
._11{width:67.993600pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.880000pt;}
.y42{bottom:3.040000pt;}
.y18{bottom:3.200000pt;}
.y3{bottom:3.232000pt;}
.ya6{bottom:5.600000pt;}
.ye{bottom:9.600000pt;}
.yc{bottom:11.200000pt;}
.y1a{bottom:12.320000pt;}
.y43{bottom:13.280000pt;}
.y4{bottom:15.392000pt;}
.y41{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y95{bottom:18.080000pt;}
.y3e{bottom:18.240000pt;}
.y9f{bottom:18.280000pt;}
.ya5{bottom:20.794667pt;}
.ya9{bottom:20.826667pt;}
.y17{bottom:21.320000pt;}
.yb{bottom:26.880000pt;}
.y94{bottom:33.440000pt;}
.y3d{bottom:33.600000pt;}
.y9e{bottom:33.640000pt;}
.y16{bottom:35.880000pt;}
.ya4{bottom:36.154667pt;}
.ya8{bottom:36.186667pt;}
.y5{bottom:41.120000pt;}
.ya{bottom:41.440000pt;}
.y3c{bottom:48.800000pt;}
.y9d{bottom:48.840000pt;}
.ya2{bottom:48.960000pt;}
.y97{bottom:48.986667pt;}
.y15{bottom:50.600000pt;}
.yb1{bottom:55.680000pt;}
.y1{bottom:59.840000pt;}
.y14{bottom:62.280000pt;}
.y3b{bottom:64.160000pt;}
.y9c{bottom:64.200000pt;}
.ya1{bottom:64.320000pt;}
.yad{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.y13{bottom:78.440000pt;}
.y3a{bottom:79.520000pt;}
.y9b{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y39{bottom:94.880000pt;}
.y9a{bottom:94.920000pt;}
.y12{bottom:95.400000pt;}
.y7{bottom:98.906667pt;}
.y92{bottom:99.072000pt;}
.y54{bottom:100.192000pt;}
.y38{bottom:110.240000pt;}
.y91{bottom:114.432000pt;}
.y53{bottom:115.552000pt;}
.y29{bottom:116.000000pt;}
.y11{bottom:118.280000pt;}
.ya3{bottom:120.192000pt;}
.yd2{bottom:124.832000pt;}
.y37{bottom:125.600000pt;}
.y28{bottom:129.600000pt;}
.y90{bottom:129.792000pt;}
.y52{bottom:130.912000pt;}
.y10{bottom:139.880000pt;}
.yd1{bottom:140.186667pt;}
.y36{bottom:140.826667pt;}
.y8f{bottom:144.986667pt;}
.y27{bottom:145.306667pt;}
.y51{bottom:146.266667pt;}
.yd0{bottom:155.546667pt;}
.y35{bottom:156.186667pt;}
.y8e{bottom:160.346667pt;}
.y26{bottom:160.666667pt;}
.y50{bottom:161.626667pt;}
.ya0{bottom:169.466667pt;}
.ycf{bottom:170.906667pt;}
.y34{bottom:171.546667pt;}
.y8d{bottom:175.706667pt;}
.y25{bottom:176.026667pt;}
.y4f{bottom:176.986667pt;}
.yce{bottom:186.266667pt;}
.y33{bottom:186.906667pt;}
.y8c{bottom:191.066667pt;}
.y24{bottom:191.706667pt;}
.y4e{bottom:192.186667pt;}
.ycd{bottom:201.466667pt;}
.y32{bottom:202.266667pt;}
.y8b{bottom:206.426667pt;}
.y23{bottom:207.226667pt;}
.y4d{bottom:207.546667pt;}
.ycc{bottom:216.826667pt;}
.y31{bottom:217.626667pt;}
.y8a{bottom:221.786667pt;}
.y22{bottom:222.746667pt;}
.y4c{bottom:222.906667pt;}
.ycb{bottom:232.186667pt;}
.y30{bottom:232.826667pt;}
.y89{bottom:236.986667pt;}
.y21{bottom:238.106667pt;}
.y4b{bottom:238.266667pt;}
.yca{bottom:247.546667pt;}
.y2f{bottom:248.186667pt;}
.y88{bottom:252.346667pt;}
.y20{bottom:253.626667pt;}
.yc9{bottom:262.906667pt;}
.y2e{bottom:263.546667pt;}
.y87{bottom:267.706667pt;}
.y4a{bottom:268.826667pt;}
.y1f{bottom:269.146667pt;}
.ybc{bottom:277.626667pt;}
.yc8{bottom:278.106667pt;}
.y2d{bottom:278.906667pt;}
.y86{bottom:283.066667pt;}
.y49{bottom:284.186667pt;}
.y1e{bottom:287.066667pt;}
.ybb{bottom:290.746667pt;}
.y99{bottom:292.826667pt;}
.yc7{bottom:293.466667pt;}
.y2c{bottom:294.266667pt;}
.y85{bottom:298.426667pt;}
.y48{bottom:299.586667pt;}
.yba{bottom:306.786667pt;}
.yc6{bottom:308.866667pt;}
.y2b{bottom:309.626667pt;}
.y1d{bottom:311.546667pt;}
.y84{bottom:313.666667pt;}
.y47{bottom:314.946667pt;}
.yb9{bottom:322.786667pt;}
.yc5{bottom:324.226667pt;}
.y2a{bottom:324.826667pt;}
.y1c{bottom:327.226667pt;}
.y83{bottom:329.026667pt;}
.y46{bottom:330.306667pt;}
.yb8{bottom:338.786667pt;}
.yc4{bottom:339.586667pt;}
.y82{bottom:344.386667pt;}
.y45{bottom:345.666667pt;}
.yb7{bottom:354.786667pt;}
.yc3{bottom:354.946667pt;}
.y81{bottom:359.746667pt;}
.y44{bottom:360.866667pt;}
.yc2{bottom:370.146667pt;}
.yb6{bottom:370.786667pt;}
.y40{bottom:373.346667pt;}
.y80{bottom:375.106667pt;}
.yc1{bottom:385.506667pt;}
.y7f{bottom:390.466667pt;}
.yc0{bottom:397.986667pt;}
.y1b{bottom:399.426667pt;}
.y98{bottom:400.866667pt;}
.yb5{bottom:401.986667pt;}
.y7e{bottom:405.666667pt;}
.y7d{bottom:421.026667pt;}
.yb4{bottom:433.346667pt;}
.y7c{bottom:436.386667pt;}
.y7b{bottom:451.746667pt;}
.yb3{bottom:452.226667pt;}
.y7a{bottom:467.106667pt;}
.yb2{bottom:467.586667pt;}
.yb0{bottom:480.706667pt;}
.y79{bottom:482.466667pt;}
.y96{bottom:493.506667pt;}
.y78{bottom:497.666667pt;}
.y77{bottom:513.026667pt;}
.y76{bottom:528.386667pt;}
.y75{bottom:543.773333pt;}
.yaf{bottom:549.533333pt;}
.y93{bottom:555.613333pt;}
.y74{bottom:559.133333pt;}
.y73{bottom:574.493333pt;}
.y72{bottom:589.693333pt;}
.y71{bottom:605.053333pt;}
.ybf{bottom:612.893333pt;}
.y70{bottom:620.413333pt;}
.ybe{bottom:628.253333pt;}
.y6f{bottom:635.773333pt;}
.ybd{bottom:640.733333pt;}
.y6e{bottom:651.133333pt;}
.yae{bottom:657.533333pt;}
.y6d{bottom:666.333333pt;}
.y6c{bottom:681.693333pt;}
.y6b{bottom:697.053333pt;}
.y6a{bottom:712.413333pt;}
.yac{bottom:719.453333pt;}
.y69{bottom:727.773333pt;}
.y19{bottom:736.733333pt;}
.y68{bottom:743.133333pt;}
.y67{bottom:758.333333pt;}
.yf{bottom:762.973333pt;}
.y66{bottom:773.693333pt;}
.y65{bottom:789.093333pt;}
.yab{bottom:796.933333pt;}
.y64{bottom:804.453333pt;}
.y63{bottom:819.813333pt;}
.y62{bottom:835.173333pt;}
.y61{bottom:850.373333pt;}
.yaa{bottom:858.853333pt;}
.y60{bottom:865.733333pt;}
.y5f{bottom:881.093333pt;}
.y5e{bottom:896.453333pt;}
.y5d{bottom:911.813333pt;}
.yd{bottom:916.293333pt;}
.y5c{bottom:927.013333pt;}
.y6{bottom:938.853333pt;}
.y5b{bottom:942.373333pt;}
.y5a{bottom:957.733333pt;}
.y59{bottom:973.093333pt;}
.y58{bottom:988.453333pt;}
.ya7{bottom:997.573333pt;}
.y57{bottom:1003.813333pt;}
.y56{bottom:1019.040000pt;}
.y55{bottom:1034.400000pt;}
.h2e{height:15.200000pt;}
.h2f{height:15.232000pt;}
.h2b{height:15.360000pt;}
.hc{height:22.240000pt;}
.h1e{height:26.080000pt;}
.h15{height:26.240000pt;}
.h13{height:28.536562pt;}
.h2{height:29.312000pt;}
.h2d{height:30.560000pt;}
.h2c{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h30{height:38.672812pt;}
.hf{height:39.113750pt;}
.ha{height:39.840000pt;}
.h14{height:41.976562pt;}
.h17{height:42.649687pt;}
.h1a{height:43.782500pt;}
.hd{height:44.160000pt;}
.h19{height:44.215312pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h24{height:48.640000pt;}
.h25{height:48.672000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h27{height:61.280000pt;}
.h20{height:61.312000pt;}
.hb{height:63.656250pt;}
.h2a{height:68.192000pt;}
.h28{height:76.832000pt;}
.h1f{height:91.840000pt;}
.h21{height:92.000000pt;}
.h29{height:107.360000pt;}
.h22{height:107.392000pt;}
.h7{height:108.032000pt;}
.h23{height:122.720000pt;}
.h26{height:138.080000pt;}
.he{height:153.306667pt;}
.h16{height:337.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:36.800000pt;}
.wa{width:37.632000pt;}
.wc{width:47.040000pt;}
.wb{width:49.600000pt;}
.wd{width:49.792000pt;}
.w11{width:62.560000pt;}
.w12{width:62.720000pt;}
.w3{width:64.960000pt;}
.w10{width:66.752000pt;}
.wf{width:75.520000pt;}
.w13{width:76.832000pt;}
.w14{width:76.960000pt;}
.w5{width:135.066667pt;}
.w16{width:148.986667pt;}
.w8{width:192.066667pt;}
.w15{width:299.586667pt;}
.w9{width:457.826667pt;}
.w17{width:498.973333pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xf{left:44.352000pt;}
.x1{left:72.000000pt;}
.x25{left:74.879988pt;}
.x27{left:84.351988pt;}
.x4{left:87.226667pt;}
.x26{left:88.671988pt;}
.x28{left:90.911988pt;}
.xe{left:105.786667pt;}
.x13{left:110.912000pt;}
.x21{left:120.031988pt;}
.x14{left:161.146667pt;}
.xd{left:168.666667pt;}
.x10{left:191.266667pt;}
.x1d{left:196.666655pt;}
.x5{left:207.066667pt;}
.x15{left:208.826667pt;}
.xc{left:219.906667pt;}
.x1e{left:222.266667pt;}
.x20{left:224.026655pt;}
.x23{left:233.306655pt;}
.x8{left:241.986667pt;}
.x16{left:259.266667pt;}
.x11{left:264.066667pt;}
.x6{left:295.106667pt;}
.x17{left:296.706667pt;}
.xa{left:304.226667pt;}
.x7{left:312.226667pt;}
.xb{left:324.866667pt;}
.x18{left:372.866667pt;}
.x9{left:390.666667pt;}
.x24{left:396.866655pt;}
.x19{left:440.253333pt;}
.x1a{left:503.453333pt;}
.x1f{left:549.853322pt;}
.x22{left:552.253322pt;}
.x1b{left:566.813333pt;}
.x1c{left:644.293333pt;}
.x3{left:656.933333pt;}
}




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