
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ad0cfc6017b6720256ad7774.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_054b698618222cb8433b5d2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_43045a9234702cb2980af734.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2e89f53074c0915bbcbf6483.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f5256b6c80b5bd0ce7e20055.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6cbaed0837887efb3b4367e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_535a5734af8d80b31142a947.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.444600px;}
.lse{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.120240px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.211640px;}
.ws9{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws1{word-spacing:-9.900000px;}
.ws0{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._6{margin-left:-3.722885px;}
._5{margin-left:-2.524800px;}
._2{margin-left:-1.124640px;}
._1{width:1.176249px;}
._7{width:2.791551px;}
._c{width:4.002249px;}
._d{width:5.771400px;}
._e{width:6.785033px;}
._a{width:8.597400px;}
._b{width:9.653404px;}
._9{width:10.855918px;}
._8{width:12.186840px;}
._30{width:15.030000px;}
._3{width:17.014200px;}
._4{width:18.095399px;}
._42{width:19.418760px;}
._39{width:22.545000px;}
._13{width:23.627160px;}
._27{width:24.889680px;}
._1c{width:26.092080px;}
._f{width:28.015920px;}
._38{width:30.661200px;}
._18{width:34.388640px;}
._25{width:36.132120px;}
._22{width:38.236320px;}
._2d{width:39.318480px;}
._3c{width:40.520880px;}
._36{width:41.900040px;}
._32{width:43.466760px;}
._1a{width:45.029880px;}
._23{width:46.325880px;}
._2b{width:48.035880px;}
._0{width:50.998788px;}
._29{width:52.124040px;}
._11{width:54.769320px;}
._20{width:55.911600px;}
._2c{width:57.955680px;}
._1f{width:60.961680px;}
._3a{width:62.705160px;}
._40{width:64.123560px;}
._33{width:68.657040px;}
._26{width:72.685080px;}
._19{width:76.773240px;}
._24{width:79.779240px;}
._31{width:83.626920px;}
._3e{width:85.370400px;}
._41{width:89.338320px;}
._17{width:92.163960px;}
._34{width:96.733080px;}
._28{width:98.115840px;}
._14{width:100.099800px;}
._3b{width:111.041640px;}
._35{width:113.205960px;}
._3f{width:116.873280px;}
._1b{width:118.135800px;}
._21{width:125.049600px;}
._37{width:128.356200px;}
._2f{width:129.919320px;}
._12{width:132.744960px;}
._2e{width:142.544520px;}
._2a{width:165.450240px;}
._3d{width:179.157600px;}
._1d{width:189.919080px;}
._1e{width:200.921040px;}
._15{width:209.458080px;}
._10{width:227.536560px;}
._16{width:251.542080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.330000px;}
.y49{bottom:7.830000px;}
.y4c{bottom:7.920000px;}
.y76{bottom:20.970000px;}
.y72{bottom:25.380000px;}
.y4b{bottom:25.470000px;}
.y75{bottom:38.520000px;}
.y4f{bottom:43.020000px;}
.y6d{bottom:43.050000px;}
.y69{bottom:43.110000px;}
.y74{bottom:56.070000px;}
.y71{bottom:60.570000px;}
.y68{bottom:60.660000px;}
.y6c{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y67{bottom:78.210000px;}
.y6b{bottom:78.240000px;}
.y70{bottom:95.760000px;}
.y66{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y87{bottom:113.310000px;}
.ya1{bottom:113.970000px;}
.y54{bottom:115.410000px;}
.yca{bottom:125.760000px;}
.y73{bottom:127.200000px;}
.y86{bottom:130.950000px;}
.ya0{bottom:131.520000px;}
.y53{bottom:132.960000px;}
.y26{bottom:138.990000px;}
.yc9{bottom:143.400000px;}
.y85{bottom:148.500000px;}
.y9f{bottom:149.160000px;}
.y52{bottom:150.600000px;}
.yf2{bottom:153.840000px;}
.y25{bottom:156.540000px;}
.yc8{bottom:160.950000px;}
.y84{bottom:166.140000px;}
.yf1{bottom:171.480000px;}
.y51{bottom:177.150000px;}
.yc7{bottom:178.500000px;}
.y83{bottom:183.690000px;}
.y9e{bottom:184.710000px;}
.y24{bottom:192.090000px;}
.yf0{bottom:198.030000px;}
.y82{bottom:201.240000px;}
.y9d{bottom:202.350000px;}
.y6f{bottom:202.800000px;}
.yc6{bottom:205.410000px;}
.y23{bottom:209.730000px;}
.y50{bottom:210.090000px;}
.yef{bottom:215.580000px;}
.y81{bottom:218.880000px;}
.y9c{bottom:219.900000px;}
.y22{bottom:227.280000px;}
.yee{bottom:233.220000px;}
.y80{bottom:236.430000px;}
.yc5{bottom:242.490000px;}
.y21{bottom:244.920000px;}
.y9b{bottom:246.450000px;}
.y7f{bottom:254.070000px;}
.yed{bottom:259.770000px;}
.yc4{bottom:260.040000px;}
.y20{bottom:262.470000px;}
.y7e{bottom:271.650000px;}
.y4e{bottom:272.640000px;}
.yec{bottom:277.410000px;}
.yc3{bottom:277.680000px;}
.y1f{bottom:280.020000px;}
.y9a{bottom:282.090000px;}
.y7d{bottom:289.200000px;}
.yc2{bottom:295.230000px;}
.y99{bottom:299.640000px;}
.yeb{bottom:303.960000px;}
.y7c{bottom:306.840000px;}
.y1e{bottom:306.930000px;}
.yc1{bottom:312.780000px;}
.y98{bottom:317.190000px;}
.y6e{bottom:318.000000px;}
.y7b{bottom:324.390000px;}
.yc0{bottom:330.420000px;}
.yea{bottom:330.510000px;}
.y97{bottom:334.830000px;}
.y4d{bottom:335.100000px;}
.y7a{bottom:342.030000px;}
.ybf{bottom:347.970000px;}
.ye9{bottom:348.150000px;}
.y1d{bottom:355.260000px;}
.y96{bottom:370.380000px;}
.y1c{bottom:373.170000px;}
.ye8{bottom:374.700000px;}
.ybe{bottom:374.880000px;}
.y4a{bottom:380.010000px;}
.y95{bottom:388.020000px;}
.ye7{bottom:392.340000px;}
.y94{bottom:405.570000px;}
.y1b{bottom:410.160000px;}
.ybd{bottom:411.870000px;}
.ye6{bottom:418.890000px;}
.y48{bottom:425.010000px;}
.y1a{bottom:427.800000px;}
.ybc{bottom:429.510000px;}
.y93{bottom:432.120000px;}
.y6a{bottom:433.290000px;}
.ye5{bottom:436.440000px;}
.y19{bottom:445.350000px;}
.ybb{bottom:447.060000px;}
.ye4{bottom:454.080000px;}
.y92{bottom:467.760000px;}
.y47{bottom:473.730000px;}
.ye3{bottom:480.660000px;}
.y18{bottom:480.930000px;}
.yba{bottom:482.730000px;}
.y91{bottom:485.340000px;}
.ye2{bottom:498.300000px;}
.y17{bottom:498.570000px;}
.y46{bottom:500.280000px;}
.y16{bottom:516.120000px;}
.yb9{bottom:517.830000px;}
.y90{bottom:520.980000px;}
.ye1{bottom:524.850000px;}
.y65{bottom:530.970000px;}
.y15{bottom:533.670000px;}
.yb8{bottom:535.470000px;}
.y45{bottom:535.830000px;}
.y8f{bottom:538.530000px;}
.ye0{bottom:542.400000px;}
.y14{bottom:551.310000px;}
.y44{bottom:553.470000px;}
.y8e{bottom:556.080000px;}
.y13{bottom:568.860000px;}
.ydf{bottom:569.040000px;}
.y43{bottom:571.020000px;}
.y8d{bottom:573.720000px;}
.y12{bottom:586.500000px;}
.yde{bottom:586.590000px;}
.yb7{bottom:588.660000px;}
.y42{bottom:597.930000px;}
.y11{bottom:604.050000px;}
.yb6{bottom:606.210000px;}
.y8c{bottom:609.270000px;}
.ydd{bottom:613.230000px;}
.y8b{bottom:626.910000px;}
.ydc{bottom:630.780000px;}
.y10{bottom:639.600000px;}
.yb5{bottom:641.760000px;}
.y8a{bottom:644.460000px;}
.y101{bottom:645.810000px;}
.y41{bottom:646.260000px;}
.yf{bottom:657.240000px;}
.ydb{bottom:657.330000px;}
.yb4{bottom:659.400000px;}
.y40{bottom:663.810000px;}
.y89{bottom:671.010000px;}
.y100{bottom:672.360000px;}
.ye{bottom:674.790000px;}
.yda{bottom:674.970000px;}
.yb3{bottom:676.950000px;}
.y3f{bottom:681.360000px;}
.yff{bottom:690.000000px;}
.yd{bottom:692.430000px;}
.yd9{bottom:692.520000px;}
.yb2{bottom:694.590000px;}
.y3e{bottom:699.000000px;}
.y88{bottom:706.920000px;}
.yfe{bottom:707.550000px;}
.yc{bottom:709.980000px;}
.yb1{bottom:712.140000px;}
.y3d{bottom:716.550000px;}
.yd8{bottom:719.160000px;}
.yb0{bottom:729.690000px;}
.y64{bottom:730.140000px;}
.yfd{bottom:734.190000px;}
.yd7{bottom:736.710000px;}
.yb{bottom:736.890000px;}
.yaf{bottom:747.330000px;}
.yfc{bottom:751.740000px;}
.y3c{bottom:752.190000px;}
.y79{bottom:752.640000px;}
.yd6{bottom:763.620000px;}
.yae{bottom:764.880000px;}
.y63{bottom:765.690000px;}
.y3b{bottom:769.740000px;}
.yfb{bottom:778.290000px;}
.y62{bottom:783.330000px;}
.ya{bottom:785.130000px;}
.y3a{bottom:787.290000px;}
.yfa{bottom:795.930000px;}
.yad{bottom:800.520000px;}
.y39{bottom:804.930000px;}
.y61{bottom:810.240000px;}
.yd5{bottom:811.860000px;}
.yac{bottom:818.070000px;}
.y9{bottom:820.950000px;}
.y38{bottom:822.480000px;}
.yab{bottom:835.620000px;}
.yd4{bottom:838.770000px;}
.y37{bottom:840.030000px;}
.yaa{bottom:853.260000px;}
.y8{bottom:856.950000px;}
.y60{bottom:858.480000px;}
.yf9{bottom:866.670000px;}
.ya9{bottom:870.810000px;}
.y36{bottom:875.670000px;}
.y5f{bottom:876.030000px;}
.yd3{bottom:876.120000px;}
.yf8{bottom:884.220000px;}
.ya8{bottom:888.450000px;}
.y35{bottom:893.220000px;}
.y5e{bottom:893.670000px;}
.y7{bottom:896.730000px;}
.y34{bottom:910.860000px;}
.y5d{bottom:911.220000px;}
.y6{bottom:914.730000px;}
.ya7{bottom:924.000000px;}
.yd2{bottom:924.450000px;}
.y33{bottom:928.410000px;}
.y5c{bottom:928.860000px;}
.yf7{bottom:937.410000px;}
.ya6{bottom:941.550000px;}
.yd1{bottom:942.000000px;}
.y5b{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yf6{bottom:954.960000px;}
.ya5{bottom:959.190000px;}
.yd0{bottom:959.550000px;}
.y32{bottom:963.960000px;}
.yf5{bottom:972.600000px;}
.ycf{bottom:977.190000px;}
.y31{bottom:981.600000px;}
.y5a{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.ya4{bottom:986.100000px;}
.yce{bottom:994.740000px;}
.y30{bottom:999.150000px;}
.y59{bottom:999.600000px;}
.y3{bottom:1010.070000px;}
.ycd{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y58{bottom:1017.180000px;}
.ycc{bottom:1029.960000px;}
.y2e{bottom:1034.370000px;}
.y57{bottom:1034.820000px;}
.y2d{bottom:1051.920000px;}
.y56{bottom:1052.370000px;}
.ycb{bottom:1056.870000px;}
.yf4{bottom:1060.920000px;}
.ya3{bottom:1069.560000px;}
.y55{bottom:1069.920000px;}
.yf3{bottom:1078.560000px;}
.ya2{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y2b{bottom:1105.110000px;}
.y78{bottom:1114.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h12{height:39.690000px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:61.740000px;}
.h14{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.h11{height:74.790000px;}
.hf{height:96.960000px;}
.h10{height:114.480000px;}
.he{height:114.570000px;}
.h13{height:360.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:87.570000px;}
.w3{width:103.080000px;}
.w9{width:120.720000px;}
.wa{width:127.530000px;}
.w8{width:129.330000px;}
.w7{width:130.170000px;}
.wb{width:156.780000px;}
.w5{width:266.670000px;}
.w4{width:384.330000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.x7{left:157.050000px;}
.x5{left:172.650000px;}
.x2{left:202.799987px;}
.x8{left:287.940000px;}
.x9{left:417.990000px;}
.xa{left:539.430000px;}
.x6{left:557.790000px;}
.xb{left:667.680000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.395200pt;}
.lse{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.106880pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.743680pt;}
.ws9{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws1{word-spacing:-8.800000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._6{margin-left:-3.309231pt;}
._5{margin-left:-2.244266pt;}
._2{margin-left:-0.999680pt;}
._1{width:1.045555pt;}
._7{width:2.481378pt;}
._c{width:3.557555pt;}
._d{width:5.130133pt;}
._e{width:6.031140pt;}
._a{width:7.642134pt;}
._b{width:8.580804pt;}
._9{width:9.649705pt;}
._8{width:10.832747pt;}
._30{width:13.360000pt;}
._3{width:15.123734pt;}
._4{width:16.084799pt;}
._42{width:17.261120pt;}
._39{width:20.040000pt;}
._13{width:21.001920pt;}
._27{width:22.124160pt;}
._1c{width:23.192960pt;}
._f{width:24.903040pt;}
._38{width:27.254400pt;}
._18{width:30.567680pt;}
._25{width:32.117440pt;}
._22{width:33.987840pt;}
._2d{width:34.949760pt;}
._3c{width:36.018560pt;}
._36{width:37.244480pt;}
._32{width:38.637120pt;}
._1a{width:40.026560pt;}
._23{width:41.178560pt;}
._2b{width:42.698560pt;}
._0{width:45.332256pt;}
._29{width:46.332480pt;}
._11{width:48.683840pt;}
._20{width:49.699200pt;}
._2c{width:51.516160pt;}
._1f{width:54.188160pt;}
._3a{width:55.737920pt;}
._40{width:56.998720pt;}
._33{width:61.028480pt;}
._26{width:64.608960pt;}
._19{width:68.242880pt;}
._24{width:70.914880pt;}
._31{width:74.335040pt;}
._3e{width:75.884800pt;}
._41{width:79.411840pt;}
._17{width:81.923520pt;}
._34{width:85.984960pt;}
._28{width:87.214080pt;}
._14{width:88.977600pt;}
._3b{width:98.703680pt;}
._35{width:100.627520pt;}
._3f{width:103.887360pt;}
._1b{width:105.009600pt;}
._21{width:111.155200pt;}
._37{width:114.094400pt;}
._2f{width:115.483840pt;}
._12{width:117.995520pt;}
._2e{width:126.706240pt;}
._2a{width:147.066880pt;}
._3d{width:159.251200pt;}
._1d{width:168.816960pt;}
._1e{width:178.596480pt;}
._15{width:186.184960pt;}
._10{width:202.254720pt;}
._16{width:223.592960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.960000pt;}
.y49{bottom:6.960000pt;}
.y4c{bottom:7.040000pt;}
.y76{bottom:18.640000pt;}
.y72{bottom:22.560000pt;}
.y4b{bottom:22.640000pt;}
.y75{bottom:34.240000pt;}
.y4f{bottom:38.240000pt;}
.y6d{bottom:38.266667pt;}
.y69{bottom:38.320000pt;}
.y74{bottom:49.840000pt;}
.y71{bottom:53.840000pt;}
.y68{bottom:53.920000pt;}
.y6c{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y67{bottom:69.520000pt;}
.y6b{bottom:69.546667pt;}
.y70{bottom:85.120000pt;}
.y66{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y87{bottom:100.720000pt;}
.ya1{bottom:101.306667pt;}
.y54{bottom:102.586667pt;}
.yca{bottom:111.786667pt;}
.y73{bottom:113.066667pt;}
.y86{bottom:116.400000pt;}
.ya0{bottom:116.906667pt;}
.y53{bottom:118.186667pt;}
.y26{bottom:123.546667pt;}
.yc9{bottom:127.466667pt;}
.y85{bottom:132.000000pt;}
.y9f{bottom:132.586667pt;}
.y52{bottom:133.866667pt;}
.yf2{bottom:136.746667pt;}
.y25{bottom:139.146667pt;}
.yc8{bottom:143.066667pt;}
.y84{bottom:147.680000pt;}
.yf1{bottom:152.426667pt;}
.y51{bottom:157.466667pt;}
.yc7{bottom:158.666667pt;}
.y83{bottom:163.280000pt;}
.y9e{bottom:164.186667pt;}
.y24{bottom:170.746667pt;}
.yf0{bottom:176.026667pt;}
.y82{bottom:178.880000pt;}
.y9d{bottom:179.866667pt;}
.y6f{bottom:180.266667pt;}
.yc6{bottom:182.586667pt;}
.y23{bottom:186.426667pt;}
.y50{bottom:186.746667pt;}
.yef{bottom:191.626667pt;}
.y81{bottom:194.560000pt;}
.y9c{bottom:195.466667pt;}
.y22{bottom:202.026667pt;}
.yee{bottom:207.306667pt;}
.y80{bottom:210.160000pt;}
.yc5{bottom:215.546667pt;}
.y21{bottom:217.706667pt;}
.y9b{bottom:219.066667pt;}
.y7f{bottom:225.840000pt;}
.yed{bottom:230.906667pt;}
.yc4{bottom:231.146667pt;}
.y20{bottom:233.306667pt;}
.y7e{bottom:241.466667pt;}
.y4e{bottom:242.346667pt;}
.yec{bottom:246.586667pt;}
.yc3{bottom:246.826667pt;}
.y1f{bottom:248.906667pt;}
.y9a{bottom:250.746667pt;}
.y7d{bottom:257.066667pt;}
.yc2{bottom:262.426667pt;}
.y99{bottom:266.346667pt;}
.yeb{bottom:270.186667pt;}
.y7c{bottom:272.746667pt;}
.y1e{bottom:272.826667pt;}
.yc1{bottom:278.026667pt;}
.y98{bottom:281.946667pt;}
.y6e{bottom:282.666667pt;}
.y7b{bottom:288.346667pt;}
.yc0{bottom:293.706667pt;}
.yea{bottom:293.786667pt;}
.y97{bottom:297.626667pt;}
.y4d{bottom:297.866667pt;}
.y7a{bottom:304.026667pt;}
.ybf{bottom:309.306667pt;}
.ye9{bottom:309.466667pt;}
.y1d{bottom:315.786667pt;}
.y96{bottom:329.226667pt;}
.y1c{bottom:331.706667pt;}
.ye8{bottom:333.066667pt;}
.ybe{bottom:333.226667pt;}
.y4a{bottom:337.786667pt;}
.y95{bottom:344.906667pt;}
.ye7{bottom:348.746667pt;}
.y94{bottom:360.506667pt;}
.y1b{bottom:364.586667pt;}
.ybd{bottom:366.106667pt;}
.ye6{bottom:372.346667pt;}
.y48{bottom:377.786667pt;}
.y1a{bottom:380.266667pt;}
.ybc{bottom:381.786667pt;}
.y93{bottom:384.106667pt;}
.y6a{bottom:385.146667pt;}
.ye5{bottom:387.946667pt;}
.y19{bottom:395.866667pt;}
.ybb{bottom:397.386667pt;}
.ye4{bottom:403.626667pt;}
.y92{bottom:415.786667pt;}
.y47{bottom:421.093333pt;}
.ye3{bottom:427.253333pt;}
.y18{bottom:427.493333pt;}
.yba{bottom:429.093333pt;}
.y91{bottom:431.413333pt;}
.ye2{bottom:442.933333pt;}
.y17{bottom:443.173333pt;}
.y46{bottom:444.693333pt;}
.y16{bottom:458.773333pt;}
.yb9{bottom:460.293333pt;}
.y90{bottom:463.093333pt;}
.ye1{bottom:466.533333pt;}
.y65{bottom:471.973333pt;}
.y15{bottom:474.373333pt;}
.yb8{bottom:475.973333pt;}
.y45{bottom:476.293333pt;}
.y8f{bottom:478.693333pt;}
.ye0{bottom:482.133333pt;}
.y14{bottom:490.053333pt;}
.y44{bottom:491.973333pt;}
.y8e{bottom:494.293333pt;}
.y13{bottom:505.653333pt;}
.ydf{bottom:505.813333pt;}
.y43{bottom:507.573333pt;}
.y8d{bottom:509.973333pt;}
.y12{bottom:521.333333pt;}
.yde{bottom:521.413333pt;}
.yb7{bottom:523.253333pt;}
.y42{bottom:531.493333pt;}
.y11{bottom:536.933333pt;}
.yb6{bottom:538.853333pt;}
.y8c{bottom:541.573333pt;}
.ydd{bottom:545.093333pt;}
.y8b{bottom:557.253333pt;}
.ydc{bottom:560.693333pt;}
.y10{bottom:568.533333pt;}
.yb5{bottom:570.453333pt;}
.y8a{bottom:572.853333pt;}
.y101{bottom:574.053333pt;}
.y41{bottom:574.453333pt;}
.yf{bottom:584.213333pt;}
.ydb{bottom:584.293333pt;}
.yb4{bottom:586.133333pt;}
.y40{bottom:590.053333pt;}
.y89{bottom:596.453333pt;}
.y100{bottom:597.653333pt;}
.ye{bottom:599.813333pt;}
.yda{bottom:599.973333pt;}
.yb3{bottom:601.733333pt;}
.y3f{bottom:605.653333pt;}
.yff{bottom:613.333333pt;}
.yd{bottom:615.493333pt;}
.yd9{bottom:615.573333pt;}
.yb2{bottom:617.413333pt;}
.y3e{bottom:621.333333pt;}
.y88{bottom:628.373333pt;}
.yfe{bottom:628.933333pt;}
.yc{bottom:631.093333pt;}
.yb1{bottom:633.013333pt;}
.y3d{bottom:636.933333pt;}
.yd8{bottom:639.253333pt;}
.yb0{bottom:648.613333pt;}
.y64{bottom:649.013333pt;}
.yfd{bottom:652.613333pt;}
.yd7{bottom:654.853333pt;}
.yb{bottom:655.013333pt;}
.yaf{bottom:664.293333pt;}
.yfc{bottom:668.213333pt;}
.y3c{bottom:668.613333pt;}
.y79{bottom:669.013333pt;}
.yd6{bottom:678.773333pt;}
.yae{bottom:679.893333pt;}
.y63{bottom:680.613333pt;}
.y3b{bottom:684.213333pt;}
.yfb{bottom:691.813333pt;}
.y62{bottom:696.293333pt;}
.ya{bottom:697.893333pt;}
.y3a{bottom:699.813333pt;}
.yfa{bottom:707.493333pt;}
.yad{bottom:711.573333pt;}
.y39{bottom:715.493333pt;}
.y61{bottom:720.213333pt;}
.yd5{bottom:721.653333pt;}
.yac{bottom:727.173333pt;}
.y9{bottom:729.733333pt;}
.y38{bottom:731.093333pt;}
.yab{bottom:742.773333pt;}
.yd4{bottom:745.573333pt;}
.y37{bottom:746.693333pt;}
.yaa{bottom:758.453333pt;}
.y8{bottom:761.733333pt;}
.y60{bottom:763.093333pt;}
.yf9{bottom:770.373333pt;}
.ya9{bottom:774.053333pt;}
.y36{bottom:778.373333pt;}
.y5f{bottom:778.693333pt;}
.yd3{bottom:778.773333pt;}
.yf8{bottom:785.973333pt;}
.ya8{bottom:789.733333pt;}
.y35{bottom:793.973333pt;}
.y5e{bottom:794.373333pt;}
.y7{bottom:797.093333pt;}
.y34{bottom:809.653333pt;}
.y5d{bottom:809.973333pt;}
.y6{bottom:813.093333pt;}
.ya7{bottom:821.333333pt;}
.yd2{bottom:821.733333pt;}
.y33{bottom:825.253333pt;}
.y5c{bottom:825.653333pt;}
.yf7{bottom:833.253333pt;}
.ya6{bottom:836.933333pt;}
.yd1{bottom:837.333333pt;}
.y5b{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yf6{bottom:848.853333pt;}
.ya5{bottom:852.613333pt;}
.yd0{bottom:852.933333pt;}
.y32{bottom:856.853333pt;}
.yf5{bottom:864.533333pt;}
.ycf{bottom:868.613333pt;}
.y31{bottom:872.533333pt;}
.y5a{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.ya4{bottom:876.533333pt;}
.yce{bottom:884.213333pt;}
.y30{bottom:888.133333pt;}
.y59{bottom:888.533333pt;}
.y3{bottom:897.840000pt;}
.ycd{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y58{bottom:904.160000pt;}
.ycc{bottom:915.520000pt;}
.y2e{bottom:919.440000pt;}
.y57{bottom:919.840000pt;}
.y2d{bottom:935.040000pt;}
.y56{bottom:935.440000pt;}
.ycb{bottom:939.440000pt;}
.yf4{bottom:943.040000pt;}
.ya3{bottom:950.720000pt;}
.y55{bottom:951.040000pt;}
.yf3{bottom:958.720000pt;}
.ya2{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y2b{bottom:982.320000pt;}
.y78{bottom:990.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h12{height:35.280000pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:54.880000pt;}
.h14{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.h11{height:66.480000pt;}
.hf{height:86.186667pt;}
.h10{height:101.760000pt;}
.he{height:101.840000pt;}
.h13{height:320.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:77.840000pt;}
.w3{width:91.626667pt;}
.w9{width:107.306667pt;}
.wa{width:113.360000pt;}
.w8{width:114.960000pt;}
.w7{width:115.706667pt;}
.wb{width:139.360000pt;}
.w5{width:237.040000pt;}
.w4{width:341.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.x7{left:139.600000pt;}
.x5{left:153.466667pt;}
.x2{left:180.266655pt;}
.x8{left:255.946667pt;}
.x9{left:371.546667pt;}
.xa{left:479.493333pt;}
.x6{left:495.813333pt;}
.xb{left:593.493333pt;}
.x3{left:704.053322pt;}
}




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