
    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_7920bc2e07c4526ee8d4ce88.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dac2e4dd3d498704d94728f0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_7cc31284fc84b93930b651e1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_038fc3b9fa7995e7a3448ce3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_92ee8e8b1400c8bf2fb5ef4f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_796b77eb552ab6f89391fd0d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_de2a2f89a9bdc6a46b8d669f.woff')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_f1a508c7d10c13473392db54.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lse{letter-spacing:-0.478200px;}
.ls18{letter-spacing:-0.322800px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.270600px;}
.lsc{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.233400px;}
.ls15{letter-spacing:-0.207600px;}
.ls14{letter-spacing:-0.193200px;}
.ls6{letter-spacing:-0.172800px;}
.lsf{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.085200px;}
.ls8{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.100800px;}
.ls5{letter-spacing:0.126000px;}
.ls17{letter-spacing:0.155400px;}
.lsa{letter-spacing:0.187200px;}
.ls10{letter-spacing:0.190800px;}
.ls16{letter-spacing:0.252600px;}
.lsd{letter-spacing:0.328200px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.145280px;}
.ls1{letter-spacing:202.852800px;}
.ls3{letter-spacing:378.163200px;}
.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;}
}
.wse{word-spacing:-14.728200px;}
.wsc{word-spacing:-14.595840px;}
.wsb{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.339400px;}
.ws0{word-spacing:-13.626000px;}
.ws1{word-spacing:-13.500000px;}
.wsd{word-spacing:-10.865400px;}
.ws4{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.527600px;}
.ws8{word-spacing:-10.342200px;}
.ws9{word-spacing:-10.134600px;}
.ws2{word-spacing:-9.187200px;}
.wsa{word-spacing:-9.092400px;}
.ws5{word-spacing:-7.884000px;}
.ws6{word-spacing:-7.632000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-203.082960px;}
._16{margin-left:-3.776400px;}
._10{margin-left:-2.450160px;}
._2{margin-left:-1.188000px;}
._1{width:1.254000px;}
._4{width:3.077760px;}
._c{width:4.214640px;}
._d{width:5.617440px;}
._f{width:6.754800px;}
._15{width:7.764960px;}
._11{width:9.083520px;}
._17{width:10.267200px;}
._18{width:11.808000px;}
._19{width:13.152000px;}
._a{width:16.405440px;}
._9{width:17.509680px;}
._14{width:18.645120px;}
._b{width:20.198880px;}
._1e{width:21.594240px;}
._23{width:23.117760px;}
._13{width:24.741600px;}
._24{width:26.297280px;}
._26{width:27.547200px;}
._20{width:28.560960px;}
._1c{width:31.132800px;}
._1d{width:32.850720px;}
._6{width:35.019360px;}
._7{width:36.453600px;}
._25{width:39.795600px;}
._21{width:40.870080px;}
._22{width:42.323040px;}
._1a{width:46.636440px;}
._8{width:48.823920px;}
._1f{width:51.137280px;}
._e{width:56.652480px;}
._0{width:75.000000px;}
._12{width:76.731600px;}
._29{width:92.548800px;}
._28{width:94.181760px;}
._27{width:102.075840px;}
._3{width:181.404000px;}
._1b{width:1069.687200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.y54{bottom:-7.020000px;}
.y0{bottom:0.000000px;}
.y53{bottom:6.300000px;}
.y52{bottom:16.740000px;}
.y51{bottom:27.360000px;}
.y50{bottom:44.820000px;}
.y7{bottom:56.340000px;}
.y56{bottom:56.520000px;}
.y6{bottom:70.056000px;}
.y4f{bottom:88.200000px;}
.y4e{bottom:102.240000px;}
.y98{bottom:108.936000px;}
.y97{bottom:111.996000px;}
.y4d{bottom:116.280000px;}
.y96{bottom:122.976000px;}
.y3e{bottom:123.876000px;}
.yd0{bottom:126.036000px;}
.y4c{bottom:130.320000px;}
.y95{bottom:137.016000px;}
.y94{bottom:140.076000px;}
.y3d{bottom:143.136000px;}
.y4b{bottom:144.360000px;}
.y93{bottom:151.050000px;}
.y92{bottom:154.110000px;}
.y4a{bottom:158.400000px;}
.y3c{bottom:162.570000px;}
.y91{bottom:165.090000px;}
.ye8{bottom:166.350000px;}
.ye2{bottom:168.150000px;}
.y49{bottom:172.620000px;}
.y90{bottom:179.310000px;}
.y3b{bottom:181.830000px;}
.y8f{bottom:182.370000px;}
.y48{bottom:186.660000px;}
.ye7{bottom:192.810000px;}
.y8e{bottom:193.350000px;}
.ycf{bottom:194.610000px;}
.ye1{bottom:196.410000px;}
.y47{bottom:199.260000px;}
.y3a{bottom:201.270000px;}
.y8d{bottom:207.390000px;}
.y46{bottom:207.720000px;}
.y8c{bottom:210.450000px;}
.ye6{bottom:212.250000px;}
.y39{bottom:220.530000px;}
.ye0{bottom:221.430000px;}
.y45{bottom:221.805000px;}
.y8b{bottom:222.690000px;}
.ydf{bottom:224.490000px;}
.yd5{bottom:231.510000px;}
.yde{bottom:235.470000px;}
.y44{bottom:235.845000px;}
.y38{bottom:239.970000px;}
.yce{bottom:247.710000px;}
.ydd{bottom:249.510000px;}
.y43{bottom:249.885000px;}
.y8a{bottom:250.950000px;}
.ydc{bottom:252.570000px;}
.y37{bottom:259.230000px;}
.y42{bottom:264.105000px;}
.ydb{bottom:264.810000px;}
.ycd{bottom:267.150000px;}
.y89{bottom:270.210000px;}
.y41{bottom:276.705000px;}
.y36{bottom:278.670000px;}
.ycc{bottom:286.410000px;}
.y40{bottom:287.685000px;}
.y88{bottom:289.650000px;}
.y35{bottom:297.930000px;}
.ycb{bottom:305.850000px;}
.y87{bottom:308.910000px;}
.y34{bottom:317.370000px;}
.yca{bottom:325.110000px;}
.y86{bottom:328.350000px;}
.y33{bottom:336.675000px;}
.yc9{bottom:344.595000px;}
.y84{bottom:347.655000px;}
.y85{bottom:351.435000px;}
.y32{bottom:355.755000px;}
.yc8{bottom:363.855000px;}
.y83{bottom:367.095000px;}
.yda{bottom:367.635000px;}
.y31{bottom:373.395000px;}
.yc7{bottom:383.295000px;}
.y82{bottom:386.355000px;}
.y30{bottom:391.035000px;}
.yc6{bottom:402.555000px;}
.y81{bottom:405.615000px;}
.y2f{bottom:408.495000px;}
.yc5{bottom:421.995000px;}
.y80{bottom:425.055000px;}
.y2e{bottom:426.135000px;}
.yc4{bottom:441.255000px;}
.y2d{bottom:443.775000px;}
.y7f{bottom:444.315000px;}
.yc3{bottom:460.695000px;}
.y2c{bottom:461.235000px;}
.y7e{bottom:463.755000px;}
.yd9{bottom:464.475000px;}
.y2b{bottom:478.875000px;}
.yc2{bottom:479.955000px;}
.y7d{bottom:483.015000px;}
.y2a{bottom:496.515000px;}
.yc1{bottom:499.215000px;}
.y7c{bottom:502.455000px;}
.y29{bottom:513.975000px;}
.yc0{bottom:518.655000px;}
.y7b{bottom:521.715000px;}
.y28{bottom:531.615000px;}
.ybf{bottom:537.915000px;}
.y7a{bottom:541.155000px;}
.y27{bottom:549.255000px;}
.ybe{bottom:557.355000px;}
.y79{bottom:560.415000px;}
.y26{bottom:569.055000px;}
.ybd{bottom:576.615000px;}
.y77{bottom:579.855000px;}
.y78{bottom:583.635000px;}
.y25{bottom:586.695000px;}
.ybc{bottom:596.055000px;}
.y76{bottom:599.115000px;}
.y24{bottom:604.185000px;}
.ybb{bottom:615.345000px;}
.y75{bottom:618.585000px;}
.y23{bottom:621.825000px;}
.yd4{bottom:622.365000px;}
.yba{bottom:634.785000px;}
.y74{bottom:637.845000px;}
.yd8{bottom:638.565000px;}
.y22{bottom:639.465000px;}
.y3f{bottom:649.545000px;}
.yb9{bottom:654.045000px;}
.y21{bottom:656.925000px;}
.y73{bottom:657.285000px;}
.yb8{bottom:673.485000px;}
.y20{bottom:674.565000px;}
.y72{bottom:676.545000px;}
.y1f{bottom:692.205000px;}
.yb7{bottom:692.745000px;}
.y71{bottom:695.805000px;}
.y1e{bottom:709.845000px;}
.yb5{bottom:712.185000px;}
.y70{bottom:715.245000px;}
.yb6{bottom:715.965000px;}
.y1d{bottom:727.305000px;}
.yb4{bottom:731.445000px;}
.y6e{bottom:734.505000px;}
.y6f{bottom:738.285000px;}
.y1c{bottom:744.945000px;}
.yb2{bottom:750.885000px;}
.y6d{bottom:753.945000px;}
.yb3{bottom:754.665000px;}
.y1b{bottom:762.585000px;}
.yb1{bottom:770.145000px;}
.y6c{bottom:773.205000px;}
.yd3{bottom:776.985000px;}
.y1a{bottom:780.045000px;}
.yb0{bottom:789.405000px;}
.y6b{bottom:792.645000px;}
.y19{bottom:797.685000px;}
.yae{bottom:808.845000px;}
.y6a{bottom:811.905000px;}
.yaf{bottom:812.625000px;}
.y18{bottom:815.325000px;}
.yad{bottom:828.105000px;}
.y69{bottom:831.345000px;}
.y17{bottom:832.785000px;}
.yac{bottom:847.545000px;}
.y16{bottom:850.425000px;}
.y67{bottom:850.605000px;}
.yd7{bottom:851.325000px;}
.y68{bottom:854.385000px;}
.yab{bottom:866.805000px;}
.y15{bottom:868.065000px;}
.y66{bottom:870.045000px;}
.y14{bottom:885.750000px;}
.yaa{bottom:886.290000px;}
.y65{bottom:889.350000px;}
.yd2{bottom:893.130000px;}
.y13{bottom:903.210000px;}
.ya9{bottom:905.550000px;}
.y64{bottom:908.790000px;}
.y12{bottom:920.850000px;}
.ya8{bottom:924.990000px;}
.y63{bottom:928.050000px;}
.yd6{bottom:928.770000px;}
.y11{bottom:938.490000px;}
.ya7{bottom:944.250000px;}
.y62{bottom:947.490000px;}
.y10{bottom:955.950000px;}
.ya6{bottom:963.690000px;}
.y61{bottom:966.750000px;}
.ye5{bottom:970.530000px;}
.yf{bottom:973.590000px;}
.ya4{bottom:982.950000px;}
.y60{bottom:986.010000px;}
.ya5{bottom:986.730000px;}
.ye{bottom:991.410000px;}
.ya3{bottom:1002.390000px;}
.y5e{bottom:1005.450000px;}
.y5f{bottom:1009.230000px;}
.yd{bottom:1014.270000px;}
.ya2{bottom:1021.650000px;}
.y5d{bottom:1024.710000px;}
.yc{bottom:1028.310000px;}
.yd1{bottom:1028.490000px;}
.ya1{bottom:1041.090000px;}
.y5c{bottom:1044.150000px;}
.yb{bottom:1047.750000px;}
.ye4{bottom:1047.930000px;}
.ya0{bottom:1060.350000px;}
.y5b{bottom:1063.410000px;}
.ya{bottom:1067.730000px;}
.y9f{bottom:1079.610000px;}
.y5a{bottom:1082.850000px;}
.y9{bottom:1090.590000px;}
.y9d{bottom:1099.050000px;}
.y59{bottom:1102.110000px;}
.y9e{bottom:1102.830000px;}
.y8{bottom:1112.730000px;}
.y9c{bottom:1118.310000px;}
.y58{bottom:1121.550000px;}
.ye3{bottom:1125.330000px;}
.y5{bottom:1135.050000px;}
.y9b{bottom:1137.780000px;}
.y57{bottom:1140.840000px;}
.y4{bottom:1150.740000px;}
.y9a{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y99{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y55{bottom:1197.540000px;}
.hb{height:20.117109px;}
.h11{height:25.603594px;}
.he{height:30.480469px;}
.h4{height:33.683203px;}
.h2{height:35.357344px;}
.h7{height:35.477578px;}
.h3{height:38.100586px;}
.hc{height:40.843828px;}
.ha{height:45.720703px;}
.h10{height:50.273438px;}
.h8{height:50.597578px;}
.h5{height:56.084062px;}
.hf{height:58.819922px;}
.hd{height:60.960938px;}
.h6{height:65.837812px;}
.h9{height:300.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x13{left:110.555987px;}
.x1f{left:114.695987px;}
.x3{left:122.075987px;}
.x18{left:127.655987px;}
.xd{left:135.935973px;}
.xe{left:141.695987px;}
.x15{left:148.895973px;}
.xa{left:155.189973px;}
.x9{left:160.409987px;}
.x35{left:162.569987px;}
.x2a{left:189.749973px;}
.x11{left:192.809973px;}
.x2e{left:195.149973px;}
.x12{left:198.569987px;}
.x2b{left:201.269987px;}
.x2f{left:206.669987px;}
.x1d{left:292.214973px;}
.x1e{left:303.734987px;}
.x20{left:306.794973px;}
.x4{left:317.774987px;}
.x7{left:322.454987px;}
.x5{left:331.094987px;}
.x8{left:342.614987px;}
.x2c{left:345.134973px;}
.x2d{left:356.654987px;}
.x19{left:360.254973px;}
.x1b{left:363.314973px;}
.x1a{left:366.014987px;}
.x1c{left:369.074987px;}
.x30{left:374.114987px;}
.x26{left:432.434973px;}
.xf{left:435.854973px;}
.x10{left:441.614987px;}
.x27{left:443.954987px;}
.x6{left:446.654987px;}
.x14{left:457.814987px;}
.x33{left:511.664973px;}
.x34{left:523.184987px;}
.x16{left:551.264973px;}
.x17{left:557.024987px;}
.x21{left:562.064973px;}
.x22{left:573.584987px;}
.x23{left:585.464987px;}
.xb{left:600.944973px;}
.xc{left:606.704987px;}
.x31{left:642.344973px;}
.x32{left:653.864987px;}
.x24{left:664.529973px;}
.x25{left:676.049987px;}
.x28{left:693.509973px;}
.x29{left:705.029987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.425067pt;}
.ls18{letter-spacing:-0.286933pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.240533pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.207467pt;}
.ls15{letter-spacing:-0.184533pt;}
.ls14{letter-spacing:-0.171733pt;}
.ls6{letter-spacing:-0.153600pt;}
.lsf{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.089600pt;}
.ls5{letter-spacing:0.112000pt;}
.ls17{letter-spacing:0.138133pt;}
.lsa{letter-spacing:0.166400pt;}
.ls10{letter-spacing:0.169600pt;}
.ls16{letter-spacing:0.224533pt;}
.lsd{letter-spacing:0.291733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.351360pt;}
.ls1{letter-spacing:180.313600pt;}
.ls3{letter-spacing:336.145067pt;}
.wse{word-spacing:-13.091733pt;}
.wsc{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.746133pt;}
.ws0{word-spacing:-12.112000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsd{word-spacing:-9.658133pt;}
.ws4{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.357867pt;}
.ws8{word-spacing:-9.193067pt;}
.ws9{word-spacing:-9.008533pt;}
.ws2{word-spacing:-8.166400pt;}
.wsa{word-spacing:-8.082133pt;}
.ws5{word-spacing:-7.008000pt;}
.ws6{word-spacing:-6.784000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-180.518187pt;}
._16{margin-left:-3.356800pt;}
._10{margin-left:-2.177920pt;}
._2{margin-left:-1.056000pt;}
._1{width:1.114667pt;}
._4{width:2.735787pt;}
._c{width:3.746347pt;}
._d{width:4.993280pt;}
._f{width:6.004267pt;}
._15{width:6.902187pt;}
._11{width:8.074240pt;}
._17{width:9.126400pt;}
._18{width:10.496000pt;}
._19{width:11.690667pt;}
._a{width:14.582613pt;}
._9{width:15.564160pt;}
._14{width:16.573440pt;}
._b{width:17.954560pt;}
._1e{width:19.194880pt;}
._23{width:20.549120pt;}
._13{width:21.992533pt;}
._24{width:23.375360pt;}
._26{width:24.486400pt;}
._20{width:25.387520pt;}
._1c{width:27.673600pt;}
._1d{width:29.200640pt;}
._6{width:31.128320pt;}
._7{width:32.403200pt;}
._25{width:35.373867pt;}
._21{width:36.328960pt;}
._22{width:37.620480pt;}
._1a{width:41.454613pt;}
._8{width:43.399040pt;}
._1f{width:45.455360pt;}
._e{width:50.357760pt;}
._0{width:66.666667pt;}
._12{width:68.205867pt;}
._29{width:82.265600pt;}
._28{width:83.717120pt;}
._27{width:90.734080pt;}
._3{width:161.248000pt;}
._1b{width:950.833067pt;}
.fs7{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.y54{bottom:-6.240000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.600000pt;}
.y52{bottom:14.880000pt;}
.y51{bottom:24.320000pt;}
.y50{bottom:39.840000pt;}
.y7{bottom:50.080000pt;}
.y56{bottom:50.240000pt;}
.y6{bottom:62.272000pt;}
.y4f{bottom:78.400000pt;}
.y4e{bottom:90.880000pt;}
.y98{bottom:96.832000pt;}
.y97{bottom:99.552000pt;}
.y4d{bottom:103.360000pt;}
.y96{bottom:109.312000pt;}
.y3e{bottom:110.112000pt;}
.yd0{bottom:112.032000pt;}
.y4c{bottom:115.840000pt;}
.y95{bottom:121.792000pt;}
.y94{bottom:124.512000pt;}
.y3d{bottom:127.232000pt;}
.y4b{bottom:128.320000pt;}
.y93{bottom:134.266667pt;}
.y92{bottom:136.986667pt;}
.y4a{bottom:140.800000pt;}
.y3c{bottom:144.506667pt;}
.y91{bottom:146.746667pt;}
.ye8{bottom:147.866667pt;}
.ye2{bottom:149.466667pt;}
.y49{bottom:153.440000pt;}
.y90{bottom:159.386667pt;}
.y3b{bottom:161.626667pt;}
.y8f{bottom:162.106667pt;}
.y48{bottom:165.920000pt;}
.ye7{bottom:171.386667pt;}
.y8e{bottom:171.866667pt;}
.ycf{bottom:172.986667pt;}
.ye1{bottom:174.586667pt;}
.y47{bottom:177.120000pt;}
.y3a{bottom:178.906667pt;}
.y8d{bottom:184.346667pt;}
.y46{bottom:184.640000pt;}
.y8c{bottom:187.066667pt;}
.ye6{bottom:188.666667pt;}
.y39{bottom:196.026667pt;}
.ye0{bottom:196.826667pt;}
.y45{bottom:197.160000pt;}
.y8b{bottom:197.946667pt;}
.ydf{bottom:199.546667pt;}
.yd5{bottom:205.786667pt;}
.yde{bottom:209.306667pt;}
.y44{bottom:209.640000pt;}
.y38{bottom:213.306667pt;}
.yce{bottom:220.186667pt;}
.ydd{bottom:221.786667pt;}
.y43{bottom:222.120000pt;}
.y8a{bottom:223.066667pt;}
.ydc{bottom:224.506667pt;}
.y37{bottom:230.426667pt;}
.y42{bottom:234.760000pt;}
.ydb{bottom:235.386667pt;}
.ycd{bottom:237.466667pt;}
.y89{bottom:240.186667pt;}
.y41{bottom:245.960000pt;}
.y36{bottom:247.706667pt;}
.ycc{bottom:254.586667pt;}
.y40{bottom:255.720000pt;}
.y88{bottom:257.466667pt;}
.y35{bottom:264.826667pt;}
.ycb{bottom:271.866667pt;}
.y87{bottom:274.586667pt;}
.y34{bottom:282.106667pt;}
.yca{bottom:288.986667pt;}
.y86{bottom:291.866667pt;}
.y33{bottom:299.266667pt;}
.yc9{bottom:306.306667pt;}
.y84{bottom:309.026667pt;}
.y85{bottom:312.386667pt;}
.y32{bottom:316.226667pt;}
.yc8{bottom:323.426667pt;}
.y83{bottom:326.306667pt;}
.yda{bottom:326.786667pt;}
.y31{bottom:331.906667pt;}
.yc7{bottom:340.706667pt;}
.y82{bottom:343.426667pt;}
.y30{bottom:347.586667pt;}
.yc6{bottom:357.826667pt;}
.y81{bottom:360.546667pt;}
.y2f{bottom:363.106667pt;}
.yc5{bottom:375.106667pt;}
.y80{bottom:377.826667pt;}
.y2e{bottom:378.786667pt;}
.yc4{bottom:392.226667pt;}
.y2d{bottom:394.466667pt;}
.y7f{bottom:394.946667pt;}
.yc3{bottom:409.506667pt;}
.y2c{bottom:409.986667pt;}
.y7e{bottom:412.226667pt;}
.yd9{bottom:412.866667pt;}
.y2b{bottom:425.666667pt;}
.yc2{bottom:426.626667pt;}
.y7d{bottom:429.346667pt;}
.y2a{bottom:441.346667pt;}
.yc1{bottom:443.746667pt;}
.y7c{bottom:446.626667pt;}
.y29{bottom:456.866667pt;}
.yc0{bottom:461.026667pt;}
.y7b{bottom:463.746667pt;}
.y28{bottom:472.546667pt;}
.ybf{bottom:478.146667pt;}
.y7a{bottom:481.026667pt;}
.y27{bottom:488.226667pt;}
.ybe{bottom:495.426667pt;}
.y79{bottom:498.146667pt;}
.y26{bottom:505.826667pt;}
.ybd{bottom:512.546667pt;}
.y77{bottom:515.426667pt;}
.y78{bottom:518.786667pt;}
.y25{bottom:521.506667pt;}
.ybc{bottom:529.826667pt;}
.y76{bottom:532.546667pt;}
.y24{bottom:537.053333pt;}
.ybb{bottom:546.973333pt;}
.y75{bottom:549.853333pt;}
.y23{bottom:552.733333pt;}
.yd4{bottom:553.213333pt;}
.yba{bottom:564.253333pt;}
.y74{bottom:566.973333pt;}
.yd8{bottom:567.613333pt;}
.y22{bottom:568.413333pt;}
.y3f{bottom:577.373333pt;}
.yb9{bottom:581.373333pt;}
.y21{bottom:583.933333pt;}
.y73{bottom:584.253333pt;}
.yb8{bottom:598.653333pt;}
.y20{bottom:599.613333pt;}
.y72{bottom:601.373333pt;}
.y1f{bottom:615.293333pt;}
.yb7{bottom:615.773333pt;}
.y71{bottom:618.493333pt;}
.y1e{bottom:630.973333pt;}
.yb5{bottom:633.053333pt;}
.y70{bottom:635.773333pt;}
.yb6{bottom:636.413333pt;}
.y1d{bottom:646.493333pt;}
.yb4{bottom:650.173333pt;}
.y6e{bottom:652.893333pt;}
.y6f{bottom:656.253333pt;}
.y1c{bottom:662.173333pt;}
.yb2{bottom:667.453333pt;}
.y6d{bottom:670.173333pt;}
.yb3{bottom:670.813333pt;}
.y1b{bottom:677.853333pt;}
.yb1{bottom:684.573333pt;}
.y6c{bottom:687.293333pt;}
.yd3{bottom:690.653333pt;}
.y1a{bottom:693.373333pt;}
.yb0{bottom:701.693333pt;}
.y6b{bottom:704.573333pt;}
.y19{bottom:709.053333pt;}
.yae{bottom:718.973333pt;}
.y6a{bottom:721.693333pt;}
.yaf{bottom:722.333333pt;}
.y18{bottom:724.733333pt;}
.yad{bottom:736.093333pt;}
.y69{bottom:738.973333pt;}
.y17{bottom:740.253333pt;}
.yac{bottom:753.373333pt;}
.y16{bottom:755.933333pt;}
.y67{bottom:756.093333pt;}
.yd7{bottom:756.733333pt;}
.y68{bottom:759.453333pt;}
.yab{bottom:770.493333pt;}
.y15{bottom:771.613333pt;}
.y66{bottom:773.373333pt;}
.y14{bottom:787.333333pt;}
.yaa{bottom:787.813333pt;}
.y65{bottom:790.533333pt;}
.yd2{bottom:793.893333pt;}
.y13{bottom:802.853333pt;}
.ya9{bottom:804.933333pt;}
.y64{bottom:807.813333pt;}
.y12{bottom:818.533333pt;}
.ya8{bottom:822.213333pt;}
.y63{bottom:824.933333pt;}
.yd6{bottom:825.573333pt;}
.y11{bottom:834.213333pt;}
.ya7{bottom:839.333333pt;}
.y62{bottom:842.213333pt;}
.y10{bottom:849.733333pt;}
.ya6{bottom:856.613333pt;}
.y61{bottom:859.333333pt;}
.ye5{bottom:862.693333pt;}
.yf{bottom:865.413333pt;}
.ya4{bottom:873.733333pt;}
.y60{bottom:876.453333pt;}
.ya5{bottom:877.093333pt;}
.ye{bottom:881.253333pt;}
.ya3{bottom:891.013333pt;}
.y5e{bottom:893.733333pt;}
.y5f{bottom:897.093333pt;}
.yd{bottom:901.573333pt;}
.ya2{bottom:908.133333pt;}
.y5d{bottom:910.853333pt;}
.yc{bottom:914.053333pt;}
.yd1{bottom:914.213333pt;}
.ya1{bottom:925.413333pt;}
.y5c{bottom:928.133333pt;}
.yb{bottom:931.333333pt;}
.ye4{bottom:931.493333pt;}
.ya0{bottom:942.533333pt;}
.y5b{bottom:945.253333pt;}
.ya{bottom:949.093333pt;}
.y9f{bottom:959.653333pt;}
.y5a{bottom:962.533333pt;}
.y9{bottom:969.413333pt;}
.y9d{bottom:976.933333pt;}
.y59{bottom:979.653333pt;}
.y9e{bottom:980.293333pt;}
.y8{bottom:989.093333pt;}
.y9c{bottom:994.053333pt;}
.y58{bottom:996.933333pt;}
.ye3{bottom:1000.293333pt;}
.y5{bottom:1008.933333pt;}
.y9b{bottom:1011.360000pt;}
.y57{bottom:1014.080000pt;}
.y4{bottom:1022.880000pt;}
.y9a{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y99{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y55{bottom:1064.480000pt;}
.hb{height:17.881875pt;}
.h11{height:22.758750pt;}
.he{height:27.093750pt;}
.h4{height:29.940625pt;}
.h2{height:31.428750pt;}
.h7{height:31.535625pt;}
.h3{height:33.867188pt;}
.hc{height:36.305625pt;}
.ha{height:40.640625pt;}
.h10{height:44.687500pt;}
.h8{height:44.975625pt;}
.h5{height:49.852500pt;}
.hf{height:52.284375pt;}
.hd{height:54.187500pt;}
.h6{height:58.522500pt;}
.h9{height:267.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x13{left:98.271988pt;}
.x1f{left:101.951988pt;}
.x3{left:108.511988pt;}
.x18{left:113.471988pt;}
.xd{left:120.831976pt;}
.xe{left:125.951988pt;}
.x15{left:132.351976pt;}
.xa{left:137.946643pt;}
.x9{left:142.586655pt;}
.x35{left:144.506655pt;}
.x2a{left:168.666643pt;}
.x11{left:171.386643pt;}
.x2e{left:173.466643pt;}
.x12{left:176.506655pt;}
.x2b{left:178.906655pt;}
.x2f{left:183.706655pt;}
.x1d{left:259.746643pt;}
.x1e{left:269.986655pt;}
.x20{left:272.706643pt;}
.x4{left:282.466655pt;}
.x7{left:286.626655pt;}
.x5{left:294.306655pt;}
.x8{left:304.546655pt;}
.x2c{left:306.786643pt;}
.x2d{left:317.026655pt;}
.x19{left:320.226643pt;}
.x1b{left:322.946643pt;}
.x1a{left:325.346655pt;}
.x1c{left:328.066655pt;}
.x30{left:332.546655pt;}
.x26{left:384.386643pt;}
.xf{left:387.426643pt;}
.x10{left:392.546655pt;}
.x27{left:394.626655pt;}
.x6{left:397.026655pt;}
.x14{left:406.946655pt;}
.x33{left:454.813310pt;}
.x34{left:465.053322pt;}
.x16{left:490.013310pt;}
.x17{left:495.133322pt;}
.x21{left:499.613310pt;}
.x22{left:509.853322pt;}
.x23{left:520.413322pt;}
.xb{left:534.173310pt;}
.xc{left:539.293322pt;}
.x31{left:570.973310pt;}
.x32{left:581.213322pt;}
.x24{left:590.693310pt;}
.x25{left:600.933322pt;}
.x28{left:616.453310pt;}
.x29{left:626.693322pt;}
}




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