
    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_a6afa2354d3c3757ff1477e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_fb70f064025101b3be722fbb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6b79952822e196635e512b5d.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_8f07ab27720e9ae262dfcf7d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a18428d7608de400dc734363.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3725112f7c94cd6a72e13d49.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_e290d89fdf8e8905c54b05a2.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_9e9dc55574140b644c1024f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_15c24b3dc41b678d9673491a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1bdafae5d9784d700cabb080.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1ac7460b5561850ac82ce021.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.880000px;}
.ls18{letter-spacing:7.920000px;}
.ls10{letter-spacing:18.000000px;}
.ls17{letter-spacing:44.784000px;}
.ls9{letter-spacing:65.880000px;}
.lsa{letter-spacing:197.976000px;}
.ls12{letter-spacing:414.696000px;}
.ls11{letter-spacing:484.536000px;}
.lse{letter-spacing:556.536000px;}
.ls1a{letter-spacing:879.300000px;}
.ls2{letter-spacing:923.940000px;}
.ls19{letter-spacing:1142.796000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.820000px;}
.ws0{word-spacing:-13.338000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-2708.673000px;}
._7{margin-left:-2597.130000px;}
._6{margin-left:-2222.922000px;}
._c{margin-left:-1207.986000px;}
._1{margin-left:-967.759800px;}
._a{margin-left:-842.874600px;}
._10{margin-left:-818.202000px;}
._11{margin-left:-594.066000px;}
._f{margin-left:-301.605000px;}
._d{margin-left:-263.259000px;}
._8{margin-left:-5.559000px;}
._9{margin-left:-3.839400px;}
._e{margin-left:-2.476800px;}
._2{margin-left:-1.467000px;}
._5{width:1.659000px;}
._0{width:2.959800px;}
._17{width:4.007400px;}
._1e{width:5.226600px;}
._22{width:6.254400px;}
._1b{width:7.632000px;}
._2f{width:8.712000px;}
._26{width:9.792000px;}
._16{width:11.160000px;}
._14{width:12.672000px;}
._15{width:14.256000px;}
._1a{width:15.291000px;}
._27{width:16.776000px;}
._1f{width:19.944000px;}
._28{width:21.456000px;}
._18{width:23.472000px;}
._19{width:24.768000px;}
._2b{width:26.136000px;}
._2c{width:27.168000px;}
._20{width:28.872000px;}
._21{width:29.952000px;}
._2a{width:31.392000px;}
._29{width:32.688000px;}
._23{width:35.851200px;}
._33{width:38.376000px;}
._32{width:39.528000px;}
._30{width:43.488000px;}
._31{width:45.285000px;}
._1c{width:47.304000px;}
._34{width:53.064000px;}
._40{width:55.728000px;}
._41{width:56.952000px;}
._3{width:76.771200px;}
._3f{width:82.152000px;}
._36{width:99.072000px;}
._37{width:100.236000px;}
._3d{width:112.392000px;}
._42{width:115.704000px;}
._43{width:116.820000px;}
._3a{width:131.688000px;}
._3b{width:133.356000px;}
._25{width:140.700000px;}
._35{width:147.672000px;}
._38{width:167.544000px;}
._39{width:168.564000px;}
._1d{width:198.000000px;}
._24{width:201.060000px;}
._3e{width:213.624000px;}
._12{width:245.362440px;}
._3c{width:558.864000px;}
._2e{width:600.780000px;}
._13{width:1181.249760px;}
._2d{width:1283.556000px;}
._4{width:1869.121800px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,61,125);}
.fsb{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:61.188234px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs9{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:1.620000px;}
.yae{bottom:3.954000px;}
.ya0{bottom:3.960000px;}
.yca{bottom:11.700000px;}
.ycf{bottom:24.300000px;}
.yad{bottom:24.654000px;}
.ya4{bottom:24.660000px;}
.ybe{bottom:24.840000px;}
.yc9{bottom:32.400000px;}
.yce{bottom:45.000000px;}
.yac{bottom:45.354000px;}
.ya3{bottom:45.360000px;}
.ya9{bottom:45.405000px;}
.yd2{bottom:45.540000px;}
.ybd{bottom:45.900000px;}
.yc8{bottom:53.280000px;}
.yab{bottom:66.054000px;}
.ya2{bottom:66.060000px;}
.ya8{bottom:66.105000px;}
.yd1{bottom:66.240000px;}
.ybc{bottom:66.600000px;}
.yc6{bottom:74.340000px;}
.ya6{bottom:86.760000px;}
.yd0{bottom:86.940000px;}
.ybb{bottom:87.660000px;}
.yb8{bottom:88.020000px;}
.yc5{bottom:95.040000px;}
.yc7{bottom:95.400000px;}
.ycd{bottom:107.640000px;}
.ycc{bottom:108.000000px;}
.yb7{bottom:108.720000px;}
.y17{bottom:111.823200px;}
.yc4{bottom:116.130000px;}
.y61{bottom:119.736000px;}
.yaf{bottom:122.616000px;}
.y92{bottom:123.696000px;}
.yda{bottom:127.116000px;}
.y16{bottom:128.698200px;}
.y9d{bottom:128.916000px;}
.yb6{bottom:129.420000px;}
.yc3{bottom:136.830000px;}
.yc1{bottom:137.190000px;}
.y60{bottom:140.436000px;}
.y91{bottom:144.396000px;}
.y15{bottom:145.573200px;}
.yd9{bottom:147.816000px;}
.yaa{bottom:148.356000px;}
.y9c{bottom:149.616000px;}
.yb5{bottom:150.120000px;}
.yba{bottom:150.480000px;}
.yc2{bottom:157.530000px;}
.yc0{bottom:157.890000px;}
.y5f{bottom:161.130000px;}
.y90{bottom:165.090000px;}
.yd8{bottom:168.510000px;}
.y9b{bottom:170.310000px;}
.yb4{bottom:171.180000px;}
.yb9{bottom:171.540000px;}
.y5e{bottom:181.830000px;}
.y8f{bottom:185.790000px;}
.yd7{bottom:189.210000px;}
.y9a{bottom:191.010000px;}
.yb3{bottom:192.240000px;}
.yb2{bottom:192.420000px;}
.y14{bottom:201.273000px;}
.y5d{bottom:202.530000px;}
.y8e{bottom:206.490000px;}
.yd6{bottom:209.910000px;}
.y99{bottom:211.710000px;}
.y13{bottom:221.223000px;}
.y5c{bottom:223.230000px;}
.y8d{bottom:227.190000px;}
.yd5{bottom:230.610000px;}
.y98{bottom:232.410000px;}
.y12{bottom:241.173000px;}
.y5b{bottom:243.930000px;}
.ya7{bottom:247.530000px;}
.y8c{bottom:247.890000px;}
.yd4{bottom:251.310000px;}
.y97{bottom:253.110000px;}
.y11{bottom:263.010300px;}
.y5a{bottom:264.630000px;}
.y8b{bottom:268.590000px;}
.y96{bottom:273.810000px;}
.y59{bottom:285.375000px;}
.y2f{bottom:287.117100px;}
.y8a{bottom:289.335000px;}
.yd3{bottom:292.755000px;}
.y95{bottom:294.555000px;}
.y2e{bottom:305.867100px;}
.y58{bottom:306.075000px;}
.y89{bottom:310.035000px;}
.y94{bottom:311.295000px;}
.ycb{bottom:318.495000px;}
.y10{bottom:322.398000px;}
.y57{bottom:326.775000px;}
.y2d{bottom:327.104400px;}
.y88{bottom:330.735000px;}
.ya5{bottom:346.935000px;}
.yf{bottom:347.148000px;}
.y56{bottom:347.475000px;}
.y87{bottom:351.435000px;}
.y2c{bottom:362.867100px;}
.y55{bottom:368.175000px;}
.y86{bottom:372.135000px;}
.ye{bottom:378.396150px;}
.y2b{bottom:381.617100px;}
.y54{bottom:388.875000px;}
.y85{bottom:392.835000px;}
.y53{bottom:409.575000px;}
.y84{bottom:413.535000px;}
.y52{bottom:430.275000px;}
.y83{bottom:434.235000px;}
.y2a{bottom:435.602550px;}
.y51{bottom:450.975000px;}
.y82{bottom:454.935000px;}
.ybf{bottom:459.795000px;}
.ya1{bottom:466.995000px;}
.y29{bottom:471.365250px;}
.y50{bottom:471.675000px;}
.y81{bottom:475.635000px;}
.y28{bottom:492.602550px;}
.y80{bottom:496.335000px;}
.y4f{bottom:513.075000px;}
.y7f{bottom:517.035000px;}
.y27{bottom:528.365250px;}
.y4e{bottom:533.775000px;}
.y7e{bottom:537.735000px;}
.y26{bottom:547.115250px;}
.yd{bottom:552.210300px;}
.y4d{bottom:554.475000px;}
.y7d{bottom:558.435000px;}
.y25{bottom:565.865250px;}
.y9f{bottom:566.205000px;}
.yc{bottom:572.010300px;}
.y4c{bottom:575.205000px;}
.y7c{bottom:579.165000px;}
.y24{bottom:584.615250px;}
.y4b{bottom:595.905000px;}
.y7b{bottom:599.865000px;}
.y23{bottom:603.365250px;}
.yb{bottom:608.310300px;}
.y4a{bottom:616.605000px;}
.y7a{bottom:620.565000px;}
.y22{bottom:622.115250px;}
.ya{bottom:628.110300px;}
.y49{bottom:637.305000px;}
.y21{bottom:640.865250px;}
.y79{bottom:641.265000px;}
.yb1{bottom:650.985000px;}
.y48{bottom:658.005000px;}
.y20{bottom:659.615250px;}
.y78{bottom:661.965000px;}
.y9{bottom:664.410300px;}
.y1f{bottom:678.365250px;}
.y47{bottom:678.705000px;}
.y77{bottom:682.665000px;}
.y8{bottom:684.210300px;}
.y1e{bottom:697.115250px;}
.y46{bottom:699.405000px;}
.y76{bottom:703.365000px;}
.y1d{bottom:715.865250px;}
.y45{bottom:720.105000px;}
.y7{bottom:720.510300px;}
.y93{bottom:724.065000px;}
.y1c{bottom:734.615250px;}
.y6{bottom:740.310300px;}
.y44{bottom:740.805000px;}
.y75{bottom:744.765000px;}
.ydf{bottom:751.785000px;}
.y1b{bottom:753.365250px;}
.y43{bottom:761.505000px;}
.y74{bottom:765.465000px;}
.yde{bottom:772.485000px;}
.y1a{bottom:774.602550px;}
.y5{bottom:781.846950px;}
.y42{bottom:782.205000px;}
.y73{bottom:786.165000px;}
.ydd{bottom:793.185000px;}
.y41{bottom:802.905000px;}
.y72{bottom:806.865000px;}
.ydc{bottom:813.885000px;}
.y19{bottom:814.527150px;}
.y4{bottom:817.846950px;}
.y40{bottom:823.605000px;}
.y71{bottom:827.565000px;}
.ydb{bottom:834.585000px;}
.y18{bottom:839.277150px;}
.y3f{bottom:844.305000px;}
.y70{bottom:848.310000px;}
.y3e{bottom:865.050000px;}
.y3{bottom:866.985300px;}
.y6f{bottom:869.010000px;}
.yb0{bottom:876.750000px;}
.y3d{bottom:885.750000px;}
.y6e{bottom:889.710000px;}
.y3c{bottom:906.450000px;}
.y6d{bottom:910.410000px;}
.y2{bottom:922.860300px;}
.y3b{bottom:927.150000px;}
.y6c{bottom:931.110000px;}
.y3a{bottom:948.390000px;}
.y6b{bottom:951.810000px;}
.y39{bottom:969.090000px;}
.y6a{bottom:972.510000px;}
.y1{bottom:981.796800px;}
.y38{bottom:989.790000px;}
.y69{bottom:993.210000px;}
.y37{bottom:1010.490000px;}
.y68{bottom:1013.910000px;}
.y36{bottom:1031.730000px;}
.y67{bottom:1034.610000px;}
.y66{bottom:1055.310000px;}
.y35{bottom:1055.850000px;}
.y65{bottom:1076.010000px;}
.y34{bottom:1079.970000px;}
.y64{bottom:1096.710000px;}
.y33{bottom:1104.990000px;}
.y63{bottom:1117.410000px;}
.y32{bottom:1132.560000px;}
.y62{bottom:1138.140000px;}
.y31{bottom:1178.460000px;}
.y30{bottom:1195.740000px;}
.h12{height:20.700000px;}
.h16{height:41.400000px;}
.h5{height:43.321289px;}
.h4{height:48.134766px;}
.h3{height:49.088022px;}
.h2{height:52.948242px;}
.h9{height:58.651172px;}
.h6{height:62.575195px;}
.hf{height:64.546875px;}
.ha{height:65.884219px;}
.he{height:70.628906px;}
.hd{height:70.664062px;}
.h10{height:72.562500px;}
.h18{height:74.004654px;}
.h1{height:77.015625px;}
.hc{height:82.676953px;}
.h13{height:82.800000px;}
.h15{height:82.836000px;}
.hb{height:96.508125px;}
.h14{height:103.500000px;}
.h1a{height:124.740000px;}
.h19{height:174.630000px;}
.h17{height:209.190000px;}
.h11{height:331.230000px;}
.h0{height:1188.000000px;}
.h7{height:1262.880000px;}
.h8{height:1263.000000px;}
.w7{width:196.590000px;}
.w8{width:283.530000px;}
.w4{width:338.070000px;}
.w5{width:338.295000px;}
.w6{width:679.605000px;}
.w3{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:6.840000px;}
.x18{left:33.840000px;}
.x2{left:108.000000px;}
.x12{left:109.476000px;}
.x9{left:127.115987px;}
.x4{left:128.250000px;}
.xe{left:162.029987px;}
.xb{left:164.189987px;}
.x8{left:176.249987px;}
.xc{left:187.229987px;}
.x13{left:228.999000px;}
.x5{left:255.817350px;}
.x6{left:262.475100px;}
.x7{left:279.320850px;}
.xd{left:283.709987px;}
.x10{left:289.299000px;}
.x16{left:307.515000px;}
.x15{left:316.334987px;}
.x11{left:318.675000px;}
.x3{left:392.545950px;}
.x19{left:404.534987px;}
.xa{left:446.474987px;}
.x17{left:505.545000px;}
.x1{left:573.492150px;}
.xf{left:651.344987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls18{letter-spacing:7.040000pt;}
.ls10{letter-spacing:16.000000pt;}
.ls17{letter-spacing:39.808000pt;}
.ls9{letter-spacing:58.560000pt;}
.lsa{letter-spacing:175.978667pt;}
.ls12{letter-spacing:368.618667pt;}
.ls11{letter-spacing:430.698667pt;}
.lse{letter-spacing:494.698667pt;}
.ls1a{letter-spacing:781.600000pt;}
.ls2{letter-spacing:821.280000pt;}
.ls19{letter-spacing:1015.818667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.173333pt;}
.ws0{word-spacing:-11.856000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-2407.709333pt;}
._7{margin-left:-2308.560000pt;}
._6{margin-left:-1975.930667pt;}
._c{margin-left:-1073.765333pt;}
._1{margin-left:-860.230933pt;}
._a{margin-left:-749.221867pt;}
._10{margin-left:-727.290667pt;}
._11{margin-left:-528.058667pt;}
._f{margin-left:-268.093333pt;}
._d{margin-left:-234.008000pt;}
._8{margin-left:-4.941333pt;}
._9{margin-left:-3.412800pt;}
._e{margin-left:-2.201600pt;}
._2{margin-left:-1.304000pt;}
._5{width:1.474667pt;}
._0{width:2.630933pt;}
._17{width:3.562133pt;}
._1e{width:4.645867pt;}
._22{width:5.559467pt;}
._1b{width:6.784000pt;}
._2f{width:7.744000pt;}
._26{width:8.704000pt;}
._16{width:9.920000pt;}
._14{width:11.264000pt;}
._15{width:12.672000pt;}
._1a{width:13.592000pt;}
._27{width:14.912000pt;}
._1f{width:17.728000pt;}
._28{width:19.072000pt;}
._18{width:20.864000pt;}
._19{width:22.016000pt;}
._2b{width:23.232000pt;}
._2c{width:24.149333pt;}
._20{width:25.664000pt;}
._21{width:26.624000pt;}
._2a{width:27.904000pt;}
._29{width:29.056000pt;}
._23{width:31.867733pt;}
._33{width:34.112000pt;}
._32{width:35.136000pt;}
._30{width:38.656000pt;}
._31{width:40.253333pt;}
._1c{width:42.048000pt;}
._34{width:47.168000pt;}
._40{width:49.536000pt;}
._41{width:50.624000pt;}
._3{width:68.241067pt;}
._3f{width:73.024000pt;}
._36{width:88.064000pt;}
._37{width:89.098667pt;}
._3d{width:99.904000pt;}
._42{width:102.848000pt;}
._43{width:103.840000pt;}
._3a{width:117.056000pt;}
._3b{width:118.538667pt;}
._25{width:125.066667pt;}
._35{width:131.264000pt;}
._38{width:148.928000pt;}
._39{width:149.834667pt;}
._1d{width:176.000000pt;}
._24{width:178.720000pt;}
._3e{width:189.888000pt;}
._12{width:218.099947pt;}
._3c{width:496.768000pt;}
._2e{width:534.026667pt;}
._13{width:1049.999787pt;}
._2d{width:1140.938667pt;}
._4{width:1661.441600pt;}
.fsb{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:54.389541pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs9{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:1.440000pt;}
.yae{bottom:3.514667pt;}
.ya0{bottom:3.520000pt;}
.yca{bottom:10.400000pt;}
.ycf{bottom:21.600000pt;}
.yad{bottom:21.914667pt;}
.ya4{bottom:21.920000pt;}
.ybe{bottom:22.080000pt;}
.yc9{bottom:28.800000pt;}
.yce{bottom:40.000000pt;}
.yac{bottom:40.314667pt;}
.ya3{bottom:40.320000pt;}
.ya9{bottom:40.360000pt;}
.yd2{bottom:40.480000pt;}
.ybd{bottom:40.800000pt;}
.yc8{bottom:47.360000pt;}
.yab{bottom:58.714667pt;}
.ya2{bottom:58.720000pt;}
.ya8{bottom:58.760000pt;}
.yd1{bottom:58.880000pt;}
.ybc{bottom:59.200000pt;}
.yc6{bottom:66.080000pt;}
.ya6{bottom:77.120000pt;}
.yd0{bottom:77.280000pt;}
.ybb{bottom:77.920000pt;}
.yb8{bottom:78.240000pt;}
.yc5{bottom:84.480000pt;}
.yc7{bottom:84.800000pt;}
.ycd{bottom:95.680000pt;}
.ycc{bottom:96.000000pt;}
.yb7{bottom:96.640000pt;}
.y17{bottom:99.398400pt;}
.yc4{bottom:103.226667pt;}
.y61{bottom:106.432000pt;}
.yaf{bottom:108.992000pt;}
.y92{bottom:109.952000pt;}
.yda{bottom:112.992000pt;}
.y16{bottom:114.398400pt;}
.y9d{bottom:114.592000pt;}
.yb6{bottom:115.040000pt;}
.yc3{bottom:121.626667pt;}
.yc1{bottom:121.946667pt;}
.y60{bottom:124.832000pt;}
.y91{bottom:128.352000pt;}
.y15{bottom:129.398400pt;}
.yd9{bottom:131.392000pt;}
.yaa{bottom:131.872000pt;}
.y9c{bottom:132.992000pt;}
.yb5{bottom:133.440000pt;}
.yba{bottom:133.760000pt;}
.yc2{bottom:140.026667pt;}
.yc0{bottom:140.346667pt;}
.y5f{bottom:143.226667pt;}
.y90{bottom:146.746667pt;}
.yd8{bottom:149.786667pt;}
.y9b{bottom:151.386667pt;}
.yb4{bottom:152.160000pt;}
.yb9{bottom:152.480000pt;}
.y5e{bottom:161.626667pt;}
.y8f{bottom:165.146667pt;}
.yd7{bottom:168.186667pt;}
.y9a{bottom:169.786667pt;}
.yb3{bottom:170.880000pt;}
.yb2{bottom:171.040000pt;}
.y14{bottom:178.909333pt;}
.y5d{bottom:180.026667pt;}
.y8e{bottom:183.546667pt;}
.yd6{bottom:186.586667pt;}
.y99{bottom:188.186667pt;}
.y13{bottom:196.642667pt;}
.y5c{bottom:198.426667pt;}
.y8d{bottom:201.946667pt;}
.yd5{bottom:204.986667pt;}
.y98{bottom:206.586667pt;}
.y12{bottom:214.376000pt;}
.y5b{bottom:216.826667pt;}
.ya7{bottom:220.026667pt;}
.y8c{bottom:220.346667pt;}
.yd4{bottom:223.386667pt;}
.y97{bottom:224.986667pt;}
.y11{bottom:233.786933pt;}
.y5a{bottom:235.226667pt;}
.y8b{bottom:238.746667pt;}
.y96{bottom:243.386667pt;}
.y59{bottom:253.666667pt;}
.y2f{bottom:255.215200pt;}
.y8a{bottom:257.186667pt;}
.yd3{bottom:260.226667pt;}
.y95{bottom:261.826667pt;}
.y2e{bottom:271.881867pt;}
.y58{bottom:272.066667pt;}
.y89{bottom:275.586667pt;}
.y94{bottom:276.706667pt;}
.ycb{bottom:283.106667pt;}
.y10{bottom:286.576000pt;}
.y57{bottom:290.466667pt;}
.y2d{bottom:290.759467pt;}
.y88{bottom:293.986667pt;}
.ya5{bottom:308.386667pt;}
.yf{bottom:308.576000pt;}
.y56{bottom:308.866667pt;}
.y87{bottom:312.386667pt;}
.y2c{bottom:322.548533pt;}
.y55{bottom:327.266667pt;}
.y86{bottom:330.786667pt;}
.ye{bottom:336.352133pt;}
.y2b{bottom:339.215200pt;}
.y54{bottom:345.666667pt;}
.y85{bottom:349.186667pt;}
.y53{bottom:364.066667pt;}
.y84{bottom:367.586667pt;}
.y52{bottom:382.466667pt;}
.y83{bottom:385.986667pt;}
.y2a{bottom:387.202267pt;}
.y51{bottom:400.866667pt;}
.y82{bottom:404.386667pt;}
.ybf{bottom:408.706667pt;}
.ya1{bottom:415.106667pt;}
.y29{bottom:418.991333pt;}
.y50{bottom:419.266667pt;}
.y81{bottom:422.786667pt;}
.y28{bottom:437.868933pt;}
.y80{bottom:441.186667pt;}
.y4f{bottom:456.066667pt;}
.y7f{bottom:459.586667pt;}
.y27{bottom:469.658000pt;}
.y4e{bottom:474.466667pt;}
.y7e{bottom:477.986667pt;}
.y26{bottom:486.324667pt;}
.yd{bottom:490.853600pt;}
.y4d{bottom:492.866667pt;}
.y7d{bottom:496.386667pt;}
.y25{bottom:502.991333pt;}
.y9f{bottom:503.293333pt;}
.yc{bottom:508.453600pt;}
.y4c{bottom:511.293333pt;}
.y7c{bottom:514.813333pt;}
.y24{bottom:519.658000pt;}
.y4b{bottom:529.693333pt;}
.y7b{bottom:533.213333pt;}
.y23{bottom:536.324667pt;}
.yb{bottom:540.720267pt;}
.y4a{bottom:548.093333pt;}
.y7a{bottom:551.613333pt;}
.y22{bottom:552.991333pt;}
.ya{bottom:558.320267pt;}
.y49{bottom:566.493333pt;}
.y21{bottom:569.658000pt;}
.y79{bottom:570.013333pt;}
.yb1{bottom:578.653333pt;}
.y48{bottom:584.893333pt;}
.y20{bottom:586.324667pt;}
.y78{bottom:588.413333pt;}
.y9{bottom:590.586933pt;}
.y1f{bottom:602.991333pt;}
.y47{bottom:603.293333pt;}
.y77{bottom:606.813333pt;}
.y8{bottom:608.186933pt;}
.y1e{bottom:619.658000pt;}
.y46{bottom:621.693333pt;}
.y76{bottom:625.213333pt;}
.y1d{bottom:636.324667pt;}
.y45{bottom:640.093333pt;}
.y7{bottom:640.453600pt;}
.y93{bottom:643.613333pt;}
.y1c{bottom:652.991333pt;}
.y6{bottom:658.053600pt;}
.y44{bottom:658.493333pt;}
.y75{bottom:662.013333pt;}
.ydf{bottom:668.253333pt;}
.y1b{bottom:669.658000pt;}
.y43{bottom:676.893333pt;}
.y74{bottom:680.413333pt;}
.yde{bottom:686.653333pt;}
.y1a{bottom:688.535600pt;}
.y5{bottom:694.975067pt;}
.y42{bottom:695.293333pt;}
.y73{bottom:698.813333pt;}
.ydd{bottom:705.053333pt;}
.y41{bottom:713.693333pt;}
.y72{bottom:717.213333pt;}
.ydc{bottom:723.453333pt;}
.y19{bottom:724.024133pt;}
.y4{bottom:726.975067pt;}
.y40{bottom:732.093333pt;}
.y71{bottom:735.613333pt;}
.ydb{bottom:741.853333pt;}
.y18{bottom:746.024133pt;}
.y3f{bottom:750.493333pt;}
.y70{bottom:754.053333pt;}
.y3e{bottom:768.933333pt;}
.y3{bottom:770.653600pt;}
.y6f{bottom:772.453333pt;}
.yb0{bottom:779.333333pt;}
.y3d{bottom:787.333333pt;}
.y6e{bottom:790.853333pt;}
.y3c{bottom:805.733333pt;}
.y6d{bottom:809.253333pt;}
.y2{bottom:820.320267pt;}
.y3b{bottom:824.133333pt;}
.y6c{bottom:827.653333pt;}
.y3a{bottom:843.013333pt;}
.y6b{bottom:846.053333pt;}
.y39{bottom:861.413333pt;}
.y6a{bottom:864.453333pt;}
.y1{bottom:872.708267pt;}
.y38{bottom:879.813333pt;}
.y69{bottom:882.853333pt;}
.y37{bottom:898.213333pt;}
.y68{bottom:901.253333pt;}
.y36{bottom:917.093333pt;}
.y67{bottom:919.653333pt;}
.y66{bottom:938.053333pt;}
.y35{bottom:938.533333pt;}
.y65{bottom:956.453333pt;}
.y34{bottom:959.973333pt;}
.y64{bottom:974.853333pt;}
.y33{bottom:982.213333pt;}
.y63{bottom:993.253333pt;}
.y32{bottom:1006.720000pt;}
.y62{bottom:1011.680000pt;}
.y31{bottom:1047.520000pt;}
.y30{bottom:1062.880000pt;}
.h12{height:18.400000pt;}
.h16{height:36.800000pt;}
.h5{height:38.507812pt;}
.h4{height:42.786458pt;}
.h3{height:43.633797pt;}
.h2{height:47.065104pt;}
.h9{height:52.134375pt;}
.h6{height:55.622396pt;}
.hf{height:57.375000pt;}
.ha{height:58.563750pt;}
.he{height:62.781250pt;}
.hd{height:62.812500pt;}
.h10{height:64.500000pt;}
.h18{height:65.781915pt;}
.h1{height:68.458333pt;}
.hc{height:73.490625pt;}
.h13{height:73.600000pt;}
.h15{height:73.632000pt;}
.hb{height:85.785000pt;}
.h14{height:92.000000pt;}
.h1a{height:110.880000pt;}
.h19{height:155.226667pt;}
.h17{height:185.946667pt;}
.h11{height:294.426667pt;}
.h0{height:1056.000000pt;}
.h7{height:1122.560000pt;}
.h8{height:1122.666667pt;}
.w7{width:174.746667pt;}
.w8{width:252.026667pt;}
.w4{width:300.506667pt;}
.w5{width:300.706667pt;}
.w6{width:604.093333pt;}
.w3{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.080000pt;}
.x18{left:30.080000pt;}
.x2{left:96.000000pt;}
.x12{left:97.312000pt;}
.x9{left:112.991988pt;}
.x4{left:114.000000pt;}
.xe{left:144.026655pt;}
.xb{left:145.946655pt;}
.x8{left:156.666655pt;}
.xc{left:166.426655pt;}
.x13{left:203.554667pt;}
.x5{left:227.393200pt;}
.x6{left:233.311200pt;}
.x7{left:248.285200pt;}
.xd{left:252.186655pt;}
.x10{left:257.154667pt;}
.x16{left:273.346667pt;}
.x15{left:281.186655pt;}
.x11{left:283.266667pt;}
.x3{left:348.929733pt;}
.x19{left:359.586655pt;}
.xa{left:396.866655pt;}
.x17{left:449.373333pt;}
.x1{left:509.770800pt;}
.xf{left:578.973322pt;}
}




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