
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7cd57d54420a6eaa177172b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5639e8f97f1d9ac3cdbf98f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7011cfb074a53d5571fc3d40.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1eddd521505840418a48538a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_badb7553deae9ead52f0e141.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_ebed96d7cbcad7b406991384.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5f83fc71781d3f389995f134.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c0cb2a8ef05e254dc037e8cc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.666000px;}
.ls10{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.620000px;}
.ls3{letter-spacing:6.660000px;}
.ls14{letter-spacing:16.506720px;}
.ls2{letter-spacing:27.360000px;}
.lsc{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.wsb{word-spacing:-15.606000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.350600px;}
.ws3{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.462160px;}
._17{width:3.493200px;}
._10{width:4.549680px;}
._7{width:6.318000px;}
._f{width:7.717680px;}
._e{width:9.018000px;}
._13{width:10.184400px;}
._6{width:11.232000px;}
._11{width:12.469680px;}
._19{width:13.674960px;}
._8{width:16.200000px;}
._9{width:17.215200px;}
._12{width:18.303120px;}
._b{width:19.548000px;}
._a{width:20.736000px;}
._18{width:21.982320px;}
._d{width:23.355360px;}
._c{width:25.110000px;}
._14{width:27.011520px;}
._15{width:28.093680px;}
._4{width:396.269760px;}
._16{width:493.564800px;}
._5{width:978.089760px;}
._3{width:1389.185760px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:23.760000px;}
.fsd{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.585000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y4d{bottom:8.100000px;}
.y2{bottom:8.280000px;}
.y4c{bottom:15.840000px;}
.y58{bottom:17.280000px;}
.y42{bottom:20.865000px;}
.y4{bottom:21.060000px;}
.y57{bottom:35.820000px;}
.y41{bottom:38.145000px;}
.y3{bottom:44.670000px;}
.y4b{bottom:45.900000px;}
.y40{bottom:55.065000px;}
.y4a{bottom:57.420000px;}
.y7{bottom:57.600000px;}
.y49{bottom:70.560000px;}
.y56{bottom:73.440000px;}
.y3f{bottom:81.705000px;}
.y48{bottom:83.520000px;}
.y55{bottom:89.100000px;}
.y92{bottom:90.360000px;}
.yc9{bottom:93.780000px;}
.y3e{bottom:98.805000px;}
.y59{bottom:101.160000px;}
.y54{bottom:104.610000px;}
.y47{bottom:105.330000px;}
.y91{bottom:108.720000px;}
.yc8{bottom:111.060000px;}
.y53{bottom:113.970000px;}
.y44{bottom:115.740000px;}
.y3d{bottom:116.085000px;}
.y90{bottom:127.080000px;}
.yc7{bottom:128.520000px;}
.y52{bottom:132.870000px;}
.y3c{bottom:133.410000px;}
.y8f{bottom:145.080000px;}
.yc6{bottom:145.800000px;}
.y51{bottom:148.530000px;}
.y3b{bottom:150.690000px;}
.yc5{bottom:163.080000px;}
.y50{bottom:164.010000px;}
.y46{bottom:167.610000px;}
.y3a{bottom:167.970000px;}
.y8e{bottom:171.720000px;}
.y45{bottom:178.050000px;}
.y4f{bottom:179.490000px;}
.yc4{bottom:180.360000px;}
.y39{bottom:185.250000px;}
.y8d{bottom:188.820000px;}
.y4e{bottom:194.610000px;}
.yc3{bottom:197.640000px;}
.y38{bottom:202.350000px;}
.y8c{bottom:206.100000px;}
.yc2{bottom:214.770000px;}
.y37{bottom:219.630000px;}
.y8b{bottom:223.410000px;}
.yc1{bottom:232.050000px;}
.y36{bottom:236.910000px;}
.y8a{bottom:240.690000px;}
.yc0{bottom:249.330000px;}
.y35{bottom:254.190000px;}
.y89{bottom:257.610000px;}
.ybf{bottom:266.610000px;}
.y34{bottom:271.470000px;}
.ybe{bottom:283.890000px;}
.y88{bottom:284.070000px;}
.y33{bottom:288.750000px;}
.ybd{bottom:301.170000px;}
.y87{bottom:301.350000px;}
.y32{bottom:305.850000px;}
.ybc{bottom:318.270000px;}
.y86{bottom:318.630000px;}
.y31{bottom:323.130000px;}
.ye{bottom:323.865000px;}
.ybb{bottom:335.550000px;}
.y85{bottom:335.910000px;}
.y30{bottom:340.410000px;}
.y1c{bottom:350.490000px;}
.y84{bottom:352.830000px;}
.y2f{bottom:357.720000px;}
.yba{bottom:370.110000px;}
.y1b{bottom:374.640000px;}
.y2e{bottom:375.000000px;}
.y83{bottom:379.470000px;}
.yb9{bottom:387.390000px;}
.y82{bottom:396.570000px;}
.y1a{bottom:398.940000px;}
.y2d{bottom:400.380000px;}
.yb8{bottom:404.310000px;}
.y81{bottom:413.850000px;}
.y19{bottom:423.060000px;}
.y2c{bottom:426.480000px;}
.yb7{bottom:430.770000px;}
.y80{bottom:431.130000px;}
.y2b{bottom:443.220000px;}
.y18{bottom:447.180000px;}
.yb6{bottom:448.095000px;}
.y7f{bottom:448.455000px;}
.y2a{bottom:459.960000px;}
.y7e{bottom:465.735000px;}
.yb5{bottom:466.455000px;}
.y17{bottom:471.300000px;}
.y29{bottom:475.440000px;}
.y7d{bottom:483.015000px;}
.yb4{bottom:483.735000px;}
.y28{bottom:491.100000px;}
.y16{bottom:495.420000px;}
.y7c{bottom:499.755000px;}
.yb3{bottom:502.095000px;}
.y27{bottom:506.580000px;}
.y15{bottom:519.540000px;}
.yb2{bottom:520.275000px;}
.y26{bottom:522.060000px;}
.y7b{bottom:526.395000px;}
.y25{bottom:537.540000px;}
.yb1{bottom:538.635000px;}
.y7a{bottom:543.675000px;}
.y14{bottom:543.840000px;}
.y24{bottom:553.200000px;}
.yb0{bottom:555.915000px;}
.y79{bottom:560.955000px;}
.y13{bottom:567.960000px;}
.y23{bottom:568.680000px;}
.yaf{bottom:573.915000px;}
.y78{bottom:577.875000px;}
.y22{bottom:584.160000px;}
.yae{bottom:591.555000px;}
.y12{bottom:592.080000px;}
.y77{bottom:594.975000px;}
.y21{bottom:599.685000px;}
.yad{bottom:609.915000px;}
.y20{bottom:615.345000px;}
.y11{bottom:616.245000px;}
.y76{bottom:621.615000px;}
.yac{bottom:627.015000px;}
.y1f{bottom:630.825000px;}
.y75{bottom:638.895000px;}
.y10{bottom:640.365000px;}
.yab{bottom:645.015000px;}
.y1e{bottom:646.305000px;}
.y74{bottom:656.175000px;}
.y1d{bottom:661.425000px;}
.yf{bottom:664.485000px;}
.yaa{bottom:671.655000px;}
.y73{bottom:673.455000px;}
.ye1{bottom:682.665000px;}
.ya9{bottom:688.965000px;}
.y72{bottom:690.405000px;}
.ye0{bottom:702.105000px;}
.ya8{bottom:716.325000px;}
.y71{bottom:716.865000px;}
.ydf{bottom:720.465000px;}
.ya7{bottom:733.425000px;}
.y70{bottom:734.145000px;}
.yde{bottom:741.165000px;}
.y6f{bottom:751.425000px;}
.ya6{bottom:751.785000px;}
.ydd{bottom:761.145000px;}
.y6e{bottom:768.705000px;}
.ya5{bottom:769.065000px;}
.ydc{bottom:778.425000px;}
.y6d{bottom:785.985000px;}
.ya4{bottom:787.065000px;}
.ydb{bottom:795.705000px;}
.y6c{bottom:802.905000px;}
.ya3{bottom:804.705000px;}
.yda{bottom:812.985000px;}
.ya2{bottom:821.985000px;}
.y6b{bottom:829.365000px;}
.yd9{bottom:830.265000px;}
.ya1{bottom:840.165000px;}
.y6a{bottom:846.645000px;}
.yd8{bottom:847.365000px;}
.ya0{bottom:858.165000px;}
.y69{bottom:863.925000px;}
.yd7{bottom:864.645000px;}
.y9f{bottom:875.805000px;}
.y68{bottom:881.205000px;}
.yd6{bottom:881.925000px;}
.y9e{bottom:893.085000px;}
.y67{bottom:898.485000px;}
.yd5{bottom:899.205000px;}
.y9d{bottom:911.445000px;}
.y66{bottom:915.765000px;}
.yd4{bottom:916.530000px;}
.y9c{bottom:928.590000px;}
.y65{bottom:932.910000px;}
.yd3{bottom:933.810000px;}
.y9b{bottom:946.590000px;}
.y64{bottom:949.830000px;}
.yd2{bottom:950.910000px;}
.yd1{bottom:968.190000px;}
.y9a{bottom:973.230000px;}
.y63{bottom:976.470000px;}
.yd0{bottom:985.470000px;}
.y99{bottom:990.510000px;}
.y62{bottom:993.750000px;}
.yd{bottom:1000.590000px;}
.ycf{bottom:1002.750000px;}
.yc{bottom:1007.250000px;}
.y98{bottom:1008.870000px;}
.y61{bottom:1011.030000px;}
.yce{bottom:1020.030000px;}
.yb{bottom:1024.350000px;}
.y97{bottom:1025.970000px;}
.y60{bottom:1028.130000px;}
.ycd{bottom:1037.130000px;}
.ya{bottom:1041.270000px;}
.y96{bottom:1043.970000px;}
.y5f{bottom:1045.410000px;}
.ycc{bottom:1054.410000px;}
.y9{bottom:1059.810000px;}
.y5e{bottom:1062.690000px;}
.y95{bottom:1070.610000px;}
.ycb{bottom:1071.690000px;}
.y5d{bottom:1079.610000px;}
.y94{bottom:1087.890000px;}
.y8{bottom:1088.250000px;}
.yca{bottom:1088.970000px;}
.y5a{bottom:1091.700000px;}
.y93{bottom:1105.890000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.hc{height:4.165313px;}
.h17{height:5.650313px;}
.h7{height:23.632383px;}
.h19{height:27.540000px;}
.h16{height:29.678906px;}
.h15{height:35.332031px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h12{height:42.894141px;}
.h10{height:52.971680px;}
.h11{height:54.421875px;}
.h8{height:57.324375px;}
.h18{height:58.621992px;}
.h5{height:58.651172px;}
.hb{height:59.038594px;}
.h6{height:59.439023px;}
.ha{height:60.226875px;}
.h1b{height:61.423863px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h13{height:70.664062px;}
.h2{height:81.570000px;}
.h9{height:84.898125px;}
.h4{height:117.180000px;}
.h14{height:207.210000px;}
.hd{height:674.010000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x17{left:8.085000px;}
.x4{left:12.765000px;}
.x14{left:16.911000px;}
.x5{left:18.885000px;}
.x15{left:23.391000px;}
.x1b{left:29.151000px;}
.x6{left:35.985000px;}
.xe{left:43.731000px;}
.x1a{left:47.691000px;}
.xf{left:50.751000px;}
.xd{left:55.071000px;}
.x1d{left:57.051000px;}
.x18{left:62.130000px;}
.x1c{left:66.225000px;}
.x11{left:67.485000px;}
.x1{left:78.300000px;}
.x13{left:79.545000px;}
.x12{left:83.685000px;}
.x7{left:86.436000px;}
.x22{left:91.836000px;}
.x2{left:95.790000px;}
.x1e{left:102.765000px;}
.x19{left:106.725000px;}
.x21{left:113.436000px;}
.x10{left:124.545000px;}
.x20{left:140.436000px;}
.x3{left:182.385000px;}
.x9{left:196.230000px;}
.x16{left:219.105000px;}
.xa{left:220.530000px;}
.xb{left:227.370000px;}
.x8{left:766.050000px;}
.xc{left:806.940000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls3{letter-spacing:5.920000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls2{letter-spacing:24.320000pt;}
.lsc{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.200533pt;}
.ws3{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.188587pt;}
._17{width:3.105067pt;}
._10{width:4.044160pt;}
._7{width:5.616000pt;}
._f{width:6.860160pt;}
._e{width:8.016000pt;}
._13{width:9.052800pt;}
._6{width:9.984000pt;}
._11{width:11.084160pt;}
._19{width:12.155520pt;}
._8{width:14.400000pt;}
._9{width:15.302400pt;}
._12{width:16.269440pt;}
._b{width:17.376000pt;}
._a{width:18.432000pt;}
._18{width:19.539840pt;}
._d{width:20.760320pt;}
._c{width:22.320000pt;}
._14{width:24.010240pt;}
._15{width:24.972160pt;}
._4{width:352.239787pt;}
._16{width:438.724267pt;}
._5{width:869.413120pt;}
._3{width:1234.831787pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:21.120000pt;}
.fsd{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.186667pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y4d{bottom:7.200000pt;}
.y2{bottom:7.360000pt;}
.y4c{bottom:14.080000pt;}
.y58{bottom:15.360000pt;}
.y42{bottom:18.546667pt;}
.y4{bottom:18.720000pt;}
.y57{bottom:31.840000pt;}
.y41{bottom:33.906667pt;}
.y3{bottom:39.706667pt;}
.y4b{bottom:40.800000pt;}
.y40{bottom:48.946667pt;}
.y4a{bottom:51.040000pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:62.720000pt;}
.y56{bottom:65.280000pt;}
.y3f{bottom:72.626667pt;}
.y48{bottom:74.240000pt;}
.y55{bottom:79.200000pt;}
.y92{bottom:80.320000pt;}
.yc9{bottom:83.360000pt;}
.y3e{bottom:87.826667pt;}
.y59{bottom:89.920000pt;}
.y54{bottom:92.986667pt;}
.y47{bottom:93.626667pt;}
.y91{bottom:96.640000pt;}
.yc8{bottom:98.720000pt;}
.y53{bottom:101.306667pt;}
.y44{bottom:102.880000pt;}
.y3d{bottom:103.186667pt;}
.y90{bottom:112.960000pt;}
.yc7{bottom:114.240000pt;}
.y52{bottom:118.106667pt;}
.y3c{bottom:118.586667pt;}
.y8f{bottom:128.960000pt;}
.yc6{bottom:129.600000pt;}
.y51{bottom:132.026667pt;}
.y3b{bottom:133.946667pt;}
.yc5{bottom:144.960000pt;}
.y50{bottom:145.786667pt;}
.y46{bottom:148.986667pt;}
.y3a{bottom:149.306667pt;}
.y8e{bottom:152.640000pt;}
.y45{bottom:158.266667pt;}
.y4f{bottom:159.546667pt;}
.yc4{bottom:160.320000pt;}
.y39{bottom:164.666667pt;}
.y8d{bottom:167.840000pt;}
.y4e{bottom:172.986667pt;}
.yc3{bottom:175.680000pt;}
.y38{bottom:179.866667pt;}
.y8c{bottom:183.200000pt;}
.yc2{bottom:190.906667pt;}
.y37{bottom:195.226667pt;}
.y8b{bottom:198.586667pt;}
.yc1{bottom:206.266667pt;}
.y36{bottom:210.586667pt;}
.y8a{bottom:213.946667pt;}
.yc0{bottom:221.626667pt;}
.y35{bottom:225.946667pt;}
.y89{bottom:228.986667pt;}
.ybf{bottom:236.986667pt;}
.y34{bottom:241.306667pt;}
.ybe{bottom:252.346667pt;}
.y88{bottom:252.506667pt;}
.y33{bottom:256.666667pt;}
.ybd{bottom:267.706667pt;}
.y87{bottom:267.866667pt;}
.y32{bottom:271.866667pt;}
.ybc{bottom:282.906667pt;}
.y86{bottom:283.226667pt;}
.y31{bottom:287.226667pt;}
.ye{bottom:287.880000pt;}
.ybb{bottom:298.266667pt;}
.y85{bottom:298.586667pt;}
.y30{bottom:302.586667pt;}
.y1c{bottom:311.546667pt;}
.y84{bottom:313.626667pt;}
.y2f{bottom:317.973333pt;}
.yba{bottom:328.986667pt;}
.y1b{bottom:333.013333pt;}
.y2e{bottom:333.333333pt;}
.y83{bottom:337.306667pt;}
.yb9{bottom:344.346667pt;}
.y82{bottom:352.506667pt;}
.y1a{bottom:354.613333pt;}
.y2d{bottom:355.893333pt;}
.yb8{bottom:359.386667pt;}
.y81{bottom:367.866667pt;}
.y19{bottom:376.053333pt;}
.y2c{bottom:379.093333pt;}
.yb7{bottom:382.906667pt;}
.y80{bottom:383.226667pt;}
.y2b{bottom:393.973333pt;}
.y18{bottom:397.493333pt;}
.yb6{bottom:398.306667pt;}
.y7f{bottom:398.626667pt;}
.y2a{bottom:408.853333pt;}
.y7e{bottom:413.986667pt;}
.yb5{bottom:414.626667pt;}
.y17{bottom:418.933333pt;}
.y29{bottom:422.613333pt;}
.y7d{bottom:429.346667pt;}
.yb4{bottom:429.986667pt;}
.y28{bottom:436.533333pt;}
.y16{bottom:440.373333pt;}
.y7c{bottom:444.226667pt;}
.yb3{bottom:446.306667pt;}
.y27{bottom:450.293333pt;}
.y15{bottom:461.813333pt;}
.yb2{bottom:462.466667pt;}
.y26{bottom:464.053333pt;}
.y7b{bottom:467.906667pt;}
.y25{bottom:477.813333pt;}
.yb1{bottom:478.786667pt;}
.y7a{bottom:483.266667pt;}
.y14{bottom:483.413333pt;}
.y24{bottom:491.733333pt;}
.yb0{bottom:494.146667pt;}
.y79{bottom:498.626667pt;}
.y13{bottom:504.853333pt;}
.y23{bottom:505.493333pt;}
.yaf{bottom:510.146667pt;}
.y78{bottom:513.666667pt;}
.y22{bottom:519.253333pt;}
.yae{bottom:525.826667pt;}
.y12{bottom:526.293333pt;}
.y77{bottom:528.866667pt;}
.y21{bottom:533.053333pt;}
.yad{bottom:542.146667pt;}
.y20{bottom:546.973333pt;}
.y11{bottom:547.773333pt;}
.y76{bottom:552.546667pt;}
.yac{bottom:557.346667pt;}
.y1f{bottom:560.733333pt;}
.y75{bottom:567.906667pt;}
.y10{bottom:569.213333pt;}
.yab{bottom:573.346667pt;}
.y1e{bottom:574.493333pt;}
.y74{bottom:583.266667pt;}
.y1d{bottom:587.933333pt;}
.yf{bottom:590.653333pt;}
.yaa{bottom:597.026667pt;}
.y73{bottom:598.626667pt;}
.ye1{bottom:606.813333pt;}
.ya9{bottom:612.413333pt;}
.y72{bottom:613.693333pt;}
.ye0{bottom:624.093333pt;}
.ya8{bottom:636.733333pt;}
.y71{bottom:637.213333pt;}
.ydf{bottom:640.413333pt;}
.ya7{bottom:651.933333pt;}
.y70{bottom:652.573333pt;}
.yde{bottom:658.813333pt;}
.y6f{bottom:667.933333pt;}
.ya6{bottom:668.253333pt;}
.ydd{bottom:676.573333pt;}
.y6e{bottom:683.293333pt;}
.ya5{bottom:683.613333pt;}
.ydc{bottom:691.933333pt;}
.y6d{bottom:698.653333pt;}
.ya4{bottom:699.613333pt;}
.ydb{bottom:707.293333pt;}
.y6c{bottom:713.693333pt;}
.ya3{bottom:715.293333pt;}
.yda{bottom:722.653333pt;}
.ya2{bottom:730.653333pt;}
.y6b{bottom:737.213333pt;}
.yd9{bottom:738.013333pt;}
.ya1{bottom:746.813333pt;}
.y6a{bottom:752.573333pt;}
.yd8{bottom:753.213333pt;}
.ya0{bottom:762.813333pt;}
.y69{bottom:767.933333pt;}
.yd7{bottom:768.573333pt;}
.y9f{bottom:778.493333pt;}
.y68{bottom:783.293333pt;}
.yd6{bottom:783.933333pt;}
.y9e{bottom:793.853333pt;}
.y67{bottom:798.653333pt;}
.yd5{bottom:799.293333pt;}
.y9d{bottom:810.173333pt;}
.y66{bottom:814.013333pt;}
.yd4{bottom:814.693333pt;}
.y9c{bottom:825.413333pt;}
.y65{bottom:829.253333pt;}
.yd3{bottom:830.053333pt;}
.y9b{bottom:841.413333pt;}
.y64{bottom:844.293333pt;}
.yd2{bottom:845.253333pt;}
.yd1{bottom:860.613333pt;}
.y9a{bottom:865.093333pt;}
.y63{bottom:867.973333pt;}
.yd0{bottom:875.973333pt;}
.y99{bottom:880.453333pt;}
.y62{bottom:883.333333pt;}
.yd{bottom:889.413333pt;}
.ycf{bottom:891.333333pt;}
.yc{bottom:895.333333pt;}
.y98{bottom:896.773333pt;}
.y61{bottom:898.693333pt;}
.yce{bottom:906.693333pt;}
.yb{bottom:910.533333pt;}
.y97{bottom:911.973333pt;}
.y60{bottom:913.893333pt;}
.ycd{bottom:921.893333pt;}
.ya{bottom:925.573333pt;}
.y96{bottom:927.973333pt;}
.y5f{bottom:929.253333pt;}
.ycc{bottom:937.253333pt;}
.y9{bottom:942.053333pt;}
.y5e{bottom:944.613333pt;}
.y95{bottom:951.653333pt;}
.ycb{bottom:952.613333pt;}
.y5d{bottom:959.653333pt;}
.y94{bottom:967.013333pt;}
.y8{bottom:967.333333pt;}
.yca{bottom:967.973333pt;}
.y5a{bottom:970.400000pt;}
.y93{bottom:983.013333pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.hc{height:3.702500pt;}
.h17{height:5.022500pt;}
.h7{height:21.006562pt;}
.h19{height:24.480000pt;}
.h16{height:26.381250pt;}
.h15{height:31.406250pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h12{height:38.128125pt;}
.h10{height:47.085938pt;}
.h11{height:48.375000pt;}
.h8{height:50.955000pt;}
.h18{height:52.108438pt;}
.h5{height:52.134375pt;}
.hb{height:52.478750pt;}
.h6{height:52.834688pt;}
.ha{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h13{height:62.812500pt;}
.h2{height:72.506667pt;}
.h9{height:75.465000pt;}
.h4{height:104.160000pt;}
.h14{height:184.186667pt;}
.hd{height:599.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.186667pt;}
.x4{left:11.346667pt;}
.x14{left:15.032000pt;}
.x5{left:16.786667pt;}
.x15{left:20.792000pt;}
.x1b{left:25.912000pt;}
.x6{left:31.986667pt;}
.xe{left:38.872000pt;}
.x1a{left:42.392000pt;}
.xf{left:45.112000pt;}
.xd{left:48.952000pt;}
.x1d{left:50.712000pt;}
.x18{left:55.226667pt;}
.x1c{left:58.866667pt;}
.x11{left:59.986667pt;}
.x1{left:69.600000pt;}
.x13{left:70.706667pt;}
.x12{left:74.386667pt;}
.x7{left:76.832000pt;}
.x22{left:81.632000pt;}
.x2{left:85.146667pt;}
.x1e{left:91.346667pt;}
.x19{left:94.866667pt;}
.x21{left:100.832000pt;}
.x10{left:110.706667pt;}
.x20{left:124.832000pt;}
.x3{left:162.120000pt;}
.x9{left:174.426667pt;}
.x16{left:194.760000pt;}
.xa{left:196.026667pt;}
.xb{left:202.106667pt;}
.x8{left:680.933333pt;}
.xc{left:717.280000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  