
    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_6f6ec0ab95cd612b2064838d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fac0ac66700d1c047fd55dd8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_32f55f97bd225e071421f731.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7194fafdcf8cc4e2f9f0d8ae.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f74004a2da9d3fb1aba8dc5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_28a376ff2a7e1ebf8ee5974b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1273e114f67f7c5cf052b811.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_33e968b0110fbee9522e25ff.woff')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_af76ac5d664f2987f10e5e4a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_90726357632850cac8a0a860.woff')format("woff");}.ffc{font-family:ffc;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5e998802b77bdb80c336bf97.woff')format("woff");}.ffd{font-family:ffd;line-height:1.378906;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.224000px;}
.ls7{letter-spacing:2.106720px;}
.ls15{letter-spacing:2.160000px;}
.ls4{letter-spacing:8.640000px;}
.ls12{letter-spacing:10.224000px;}
.ls6{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.680000px;}
.ls13{letter-spacing:14.400000px;}
.ls20{letter-spacing:17.424000px;}
.ls1e{letter-spacing:18.000000px;}
.ls14{letter-spacing:20.880000px;}
.ls1f{letter-spacing:35.280000px;}
.ls1d{letter-spacing:36.000000px;}
.ls9{letter-spacing:41.706720px;}
.ls19{letter-spacing:53.424000px;}
.ls1{letter-spacing:63.360000px;}
.ls0{letter-spacing:63.540000px;}
.ls1a{letter-spacing:65.640000px;}
.ls10{letter-spacing:639.486720px;}
.lsf{letter-spacing:776.286720px;}
.lse{letter-spacing:909.486720px;}
.lsa{letter-spacing:1316.406720px;}
.lsc{letter-spacing:1320.006720px;}
.ls11{letter-spacing:1370.406720px;}
.lsb{letter-spacing:1374.006720px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._28{margin-left:-2.160000px;}
._1{margin-left:-1.008000px;}
._0{width:1.224000px;}
._14{width:2.328000px;}
._1b{width:4.320000px;}
._a{width:5.544000px;}
._9{width:6.552000px;}
._c{width:8.064000px;}
._26{width:9.144000px;}
._27{width:10.944000px;}
._1c{width:11.952000px;}
._15{width:13.392000px;}
._4{width:14.472000px;}
._11{width:15.840000px;}
._10{width:16.848000px;}
._b{width:19.080000px;}
._3{width:20.088000px;}
._2{width:21.168000px;}
._f{width:23.040000px;}
._12{width:24.768000px;}
._6{width:26.496000px;}
._5{width:27.648000px;}
._21{width:28.944000px;}
._20{width:30.240000px;}
._13{width:32.112000px;}
._16{width:33.192000px;}
._29{width:34.200000px;}
._1a{width:36.072000px;}
._24{width:37.728000px;}
._1e{width:39.216000px;}
._25{width:40.560000px;}
._19{width:42.840000px;}
._8{width:45.336000px;}
._7{width:46.368000px;}
._e{width:47.952000px;}
._d{width:49.536000px;}
._1d{width:52.128000px;}
._1f{width:53.640000px;}
._18{width:62.424000px;}
._17{width:63.792000px;}
._2f{width:65.100000px;}
._2e{width:66.528000px;}
._22{width:72.720000px;}
._23{width:73.872000px;}
._2b{width:148.176000px;}
._30{width:164.592000px;}
._2a{width:183.708000px;}
._2c{width:522.720000px;}
._2d{width:565.320000px;}
.fcb{color:rgb(17,102,68);}
.fc9{color:rgb(163,21,21);}
.fc8{color:rgb(106,82,33);}
.fc7{color:rgb(151,35,180);}
.fca{color:rgb(0,0,255);}
.fc6{color:rgb(0,128,0);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.ya8{bottom:7.020000px;}
.yab{bottom:7.380000px;}
.yae{bottom:7.560000px;}
.ya7{bottom:30.780000px;}
.yb5{bottom:30.810000px;}
.yb0{bottom:31.140000px;}
.yaa{bottom:31.185000px;}
.yad{bottom:31.320000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.ydd{bottom:109.476000px;}
.y32{bottom:113.976000px;}
.y86{bottom:117.216000px;}
.yb2{bottom:120.456000px;}
.y40{bottom:120.996000px;}
.ydc{bottom:133.236000px;}
.y31{bottom:137.736000px;}
.y85{bottom:142.056000px;}
.yb1{bottom:144.576000px;}
.y3f{bottom:144.936000px;}
.ydb{bottom:156.990000px;}
.y5c{bottom:159.870000px;}
.y30{bottom:161.490000px;}
.yaf{bottom:161.850000px;}
.y3e{bottom:164.370000px;}
.y84{bottom:169.590000px;}
.yda{bottom:180.930000px;}
.y5b{bottom:183.630000px;}
.y2f{bottom:185.430000px;}
.y83{bottom:196.050000px;}
.yd9{bottom:204.690000px;}
.y5a{bottom:207.570000px;}
.y2e{bottom:209.190000px;}
.yac{bottom:210.090000px;}
.y82{bottom:219.810000px;}
.y59{bottom:227.550000px;}
.yd8{bottom:228.450000px;}
.y2d{bottom:232.590000px;}
.y3c{bottom:232.950000px;}
.y81{bottom:244.650000px;}
.yd7{bottom:252.210000px;}
.y2c{bottom:256.350000px;}
.y3b{bottom:256.710000px;}
.ya9{bottom:258.510000px;}
.y80{bottom:271.110000px;}
.yd6{bottom:276.150000px;}
.y58{bottom:279.435000px;}
.y2b{bottom:280.695000px;}
.y7f{bottom:295.995000px;}
.yd5{bottom:299.955000px;}
.y2a{bottom:304.455000px;}
.ya6{bottom:306.975000px;}
.y7e{bottom:323.535000px;}
.yd4{bottom:323.715000px;}
.y29{bottom:328.215000px;}
.yd3{bottom:347.475000px;}
.y57{bottom:349.815000px;}
.y7d{bottom:349.995000px;}
.y28{bottom:351.975000px;}
.ya5{bottom:362.235000px;}
.yd2{bottom:371.415000px;}
.y56{bottom:373.575000px;}
.y7c{bottom:373.935000px;}
.y27{bottom:375.915000px;}
.ya4{bottom:386.175000px;}
.yd1{bottom:395.175000px;}
.y55{bottom:397.335000px;}
.y7b{bottom:397.695000px;}
.y26{bottom:399.675000px;}
.ya3{bottom:405.975000px;}
.yd0{bottom:418.935000px;}
.y54{bottom:421.095000px;}
.y7a{bottom:421.455000px;}
.y25{bottom:423.435000px;}
.ycf{bottom:442.335000px;}
.y53{bottom:445.035000px;}
.y79{bottom:445.215000px;}
.y24{bottom:447.195000px;}
.yce{bottom:466.275000px;}
.y52{bottom:468.795000px;}
.y78{bottom:469.155000px;}
.y3d{bottom:470.775000px;}
.y23{bottom:471.135000px;}
.ya2{bottom:484.815000px;}
.ycd{bottom:490.395000px;}
.y51{bottom:492.555000px;}
.y77{bottom:493.995000px;}
.y22{bottom:494.895000px;}
.ya1{bottom:508.935000px;}
.ycc{bottom:514.155000px;}
.y50{bottom:515.955000px;}
.y21{bottom:518.655000px;}
.y76{bottom:520.095000px;}
.ya0{bottom:532.695000px;}
.ycb{bottom:537.915000px;}
.y4f{bottom:541.695000px;}
.y20{bottom:542.415000px;}
.y75{bottom:544.215000px;}
.y9f{bottom:556.455000px;}
.yca{bottom:561.885000px;}
.y1f{bottom:566.385000px;}
.y74{bottom:568.005000px;}
.y4e{bottom:568.365000px;}
.y9e{bottom:580.425000px;}
.yc9{bottom:585.645000px;}
.y3a{bottom:589.785000px;}
.y1e{bottom:590.145000px;}
.y4d{bottom:591.585000px;}
.y73{bottom:591.945000px;}
.y9d{bottom:604.185000px;}
.yc8{bottom:609.405000px;}
.y4c{bottom:611.205000px;}
.y1d{bottom:613.905000px;}
.y72{bottom:615.705000px;}
.y9c{bottom:629.025000px;}
.yc7{bottom:633.165000px;}
.y1c{bottom:637.665000px;}
.y71{bottom:639.465000px;}
.y4b{bottom:641.985000px;}
.y9b{bottom:655.485000px;}
.yc6{bottom:656.925000px;}
.y1b{bottom:661.425000px;}
.y70{bottom:663.225000px;}
.y4a{bottom:665.745000px;}
.y9a{bottom:679.245000px;}
.yc5{bottom:680.865000px;}
.y1a{bottom:685.365000px;}
.y6f{bottom:687.165000px;}
.y49{bottom:689.505000px;}
.y99{bottom:703.005000px;}
.yc4{bottom:704.625000px;}
.y19{bottom:709.125000px;}
.y6e{bottom:710.925000px;}
.y48{bottom:713.445000px;}
.y98{bottom:726.945000px;}
.yc3{bottom:728.385000px;}
.y18{bottom:732.885000px;}
.y6d{bottom:734.685000px;}
.y47{bottom:737.205000px;}
.y97{bottom:751.785000px;}
.yc2{bottom:752.145000px;}
.y17{bottom:756.645000px;}
.y6c{bottom:758.445000px;}
.y46{bottom:760.965000px;}
.yc1{bottom:776.085000px;}
.y96{bottom:779.325000px;}
.y16{bottom:780.585000px;}
.y6b{bottom:782.205000px;}
.y45{bottom:784.725000px;}
.yc0{bottom:799.845000px;}
.y15{bottom:804.345000px;}
.y6a{bottom:806.145000px;}
.y95{bottom:806.865000px;}
.y44{bottom:808.665000px;}
.ybf{bottom:823.605000px;}
.y14{bottom:828.105000px;}
.y43{bottom:828.285000px;}
.y69{bottom:829.905000px;}
.y94{bottom:833.325000px;}
.ybe{bottom:847.410000px;}
.y13{bottom:851.910000px;}
.y68{bottom:853.710000px;}
.y93{bottom:857.130000px;}
.ybd{bottom:871.350000px;}
.y12{bottom:875.850000px;}
.y67{bottom:877.470000px;}
.y92{bottom:881.970000px;}
.ybc{bottom:895.110000px;}
.y42{bottom:898.530000px;}
.y11{bottom:899.610000px;}
.y66{bottom:901.410000px;}
.y91{bottom:908.430000px;}
.y41{bottom:918.150000px;}
.ybb{bottom:918.870000px;}
.y10{bottom:923.370000px;}
.y65{bottom:925.170000px;}
.y90{bottom:932.190000px;}
.yba{bottom:942.630000px;}
.yf{bottom:946.770000px;}
.y39{bottom:947.130000px;}
.y64{bottom:948.930000px;}
.y8f{bottom:957.030000px;}
.yb9{bottom:966.570000px;}
.yb3{bottom:970.710000px;}
.ye{bottom:971.070000px;}
.y63{bottom:972.690000px;}
.y8e{bottom:983.670000px;}
.yd{bottom:994.470000px;}
.y38{bottom:994.830000px;}
.y62{bottom:996.450000px;}
.y8d{bottom:1007.430000px;}
.yc{bottom:1018.230000px;}
.y37{bottom:1018.590000px;}
.y61{bottom:1022.010000px;}
.yb8{bottom:1031.910000px;}
.y8c{bottom:1032.270000px;}
.yb{bottom:1042.350000px;}
.y60{bottom:1047.930000px;}
.yb7{bottom:1056.570000px;}
.y8b{bottom:1058.730000px;}
.ya{bottom:1065.930000px;}
.y36{bottom:1066.290000px;}
.y5f{bottom:1074.030000px;}
.yb6{bottom:1081.050000px;}
.y8a{bottom:1083.570000px;}
.y9{bottom:1089.690000px;}
.y35{bottom:1090.050000px;}
.y5e{bottom:1097.970000px;}
.yb4{bottom:1105.710000px;}
.y89{bottom:1110.030000px;}
.y8{bottom:1113.810000px;}
.y5d{bottom:1117.770000px;}
.y88{bottom:1134.000000px;}
.y7{bottom:1137.240000px;}
.y34{bottom:1137.600000px;}
.y87{bottom:1158.840000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.h12{height:23.760000px;}
.h13{height:23.940000px;}
.hf{height:47.520000px;}
.h10{height:47.556000px;}
.h11{height:47.700000px;}
.ha{height:50.273438px;}
.h8{height:59.343750px;}
.hb{height:60.679688px;}
.hc{height:61.423863px;}
.h9{height:62.261719px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.hd{height:74.004654px;}
.he{height:79.453125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:33.480000px;}
.w2{width:43.020000px;}
.wb{width:59.400000px;}
.w7{width:59.436000px;}
.w6{width:91.620000px;}
.wa{width:98.100000px;}
.w9{width:162.030000px;}
.w5{width:203.790000px;}
.w8{width:326.010000px;}
.wc{width:361.155000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x2{left:9.180000px;}
.x28{left:10.800000px;}
.x24{left:12.240000px;}
.x27{left:14.040000px;}
.x2c{left:20.160000px;}
.x1f{left:22.320000px;}
.x2d{left:24.300000px;}
.x20{left:28.800000px;}
.x26{left:30.060000px;}
.x25{left:42.120000px;}
.x2b{left:52.920000px;}
.x2a{left:56.160000px;}
.x1d{left:60.120000px;}
.x2e{left:72.900000px;}
.x2f{left:118.440000px;}
.x1a{left:119.916000px;}
.x29{left:126.360000px;}
.x6{left:128.555987px;}
.x34{left:138.275987px;}
.x23{left:145.980000px;}
.x12{left:148.355987px;}
.x1c{left:154.110000px;}
.x10{left:156.089987px;}
.x3{left:159.689987px;}
.x14{left:170.129987px;}
.xf{left:180.749987px;}
.x18{left:191.549987px;}
.x30{left:241.949987px;}
.xb{left:310.034987px;}
.x31{left:316.875000px;}
.xe{left:327.674987px;}
.xc{left:337.934987px;}
.x17{left:348.194987px;}
.x1e{left:358.635000px;}
.x8{left:375.194987px;}
.x9{left:376.454987px;}
.x11{left:387.974987px;}
.xd{left:411.194987px;}
.x19{left:414.794987px;}
.x32{left:415.875000px;}
.x7{left:418.214987px;}
.xa{left:433.154987px;}
.x1{left:439.815000px;}
.x21{left:450.975000px;}
.x33{left:475.995000px;}
.x5{left:478.514987px;}
.x22{left:511.125000px;}
.x13{left:522.824987px;}
.x16{left:561.524987px;}
.x15{left:635.324987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.088000pt;}
.ls7{letter-spacing:1.872640pt;}
.ls15{letter-spacing:1.920000pt;}
.ls4{letter-spacing:7.680000pt;}
.ls12{letter-spacing:9.088000pt;}
.ls6{letter-spacing:9.600000pt;}
.ls3{letter-spacing:12.160000pt;}
.ls13{letter-spacing:12.800000pt;}
.ls20{letter-spacing:15.488000pt;}
.ls1e{letter-spacing:16.000000pt;}
.ls14{letter-spacing:18.560000pt;}
.ls1f{letter-spacing:31.360000pt;}
.ls1d{letter-spacing:32.000000pt;}
.ls9{letter-spacing:37.072640pt;}
.ls19{letter-spacing:47.488000pt;}
.ls1{letter-spacing:56.320000pt;}
.ls0{letter-spacing:56.480000pt;}
.ls1a{letter-spacing:58.346667pt;}
.ls10{letter-spacing:568.432640pt;}
.lsf{letter-spacing:690.032640pt;}
.lse{letter-spacing:808.432640pt;}
.lsa{letter-spacing:1170.139307pt;}
.lsc{letter-spacing:1173.339307pt;}
.ls11{letter-spacing:1218.139307pt;}
.lsb{letter-spacing:1221.339307pt;}
.ws6{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._28{margin-left:-1.920000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.088000pt;}
._14{width:2.069333pt;}
._1b{width:3.840000pt;}
._a{width:4.928000pt;}
._9{width:5.824000pt;}
._c{width:7.168000pt;}
._26{width:8.128000pt;}
._27{width:9.728000pt;}
._1c{width:10.624000pt;}
._15{width:11.904000pt;}
._4{width:12.864000pt;}
._11{width:14.080000pt;}
._10{width:14.976000pt;}
._b{width:16.960000pt;}
._3{width:17.856000pt;}
._2{width:18.816000pt;}
._f{width:20.480000pt;}
._12{width:22.016000pt;}
._6{width:23.552000pt;}
._5{width:24.576000pt;}
._21{width:25.728000pt;}
._20{width:26.880000pt;}
._13{width:28.544000pt;}
._16{width:29.504000pt;}
._29{width:30.400000pt;}
._1a{width:32.064000pt;}
._24{width:33.536000pt;}
._1e{width:34.858667pt;}
._25{width:36.053333pt;}
._19{width:38.080000pt;}
._8{width:40.298667pt;}
._7{width:41.216000pt;}
._e{width:42.624000pt;}
._d{width:44.032000pt;}
._1d{width:46.336000pt;}
._1f{width:47.680000pt;}
._18{width:55.488000pt;}
._17{width:56.704000pt;}
._2f{width:57.866667pt;}
._2e{width:59.136000pt;}
._22{width:64.640000pt;}
._23{width:65.664000pt;}
._2b{width:131.712000pt;}
._30{width:146.304000pt;}
._2a{width:163.296000pt;}
._2c{width:464.640000pt;}
._2d{width:502.506667pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.ya8{bottom:6.240000pt;}
.yab{bottom:6.560000pt;}
.yae{bottom:6.720000pt;}
.ya7{bottom:27.360000pt;}
.yb5{bottom:27.386667pt;}
.yb0{bottom:27.680000pt;}
.yaa{bottom:27.720000pt;}
.yad{bottom:27.840000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.ydd{bottom:97.312000pt;}
.y32{bottom:101.312000pt;}
.y86{bottom:104.192000pt;}
.yb2{bottom:107.072000pt;}
.y40{bottom:107.552000pt;}
.ydc{bottom:118.432000pt;}
.y31{bottom:122.432000pt;}
.y85{bottom:126.272000pt;}
.yb1{bottom:128.512000pt;}
.y3f{bottom:128.832000pt;}
.ydb{bottom:139.546667pt;}
.y5c{bottom:142.106667pt;}
.y30{bottom:143.546667pt;}
.yaf{bottom:143.866667pt;}
.y3e{bottom:146.106667pt;}
.y84{bottom:150.746667pt;}
.yda{bottom:160.826667pt;}
.y5b{bottom:163.226667pt;}
.y2f{bottom:164.826667pt;}
.y83{bottom:174.266667pt;}
.yd9{bottom:181.946667pt;}
.y5a{bottom:184.506667pt;}
.y2e{bottom:185.946667pt;}
.yac{bottom:186.746667pt;}
.y82{bottom:195.386667pt;}
.y59{bottom:202.266667pt;}
.yd8{bottom:203.066667pt;}
.y2d{bottom:206.746667pt;}
.y3c{bottom:207.066667pt;}
.y81{bottom:217.466667pt;}
.yd7{bottom:224.186667pt;}
.y2c{bottom:227.866667pt;}
.y3b{bottom:228.186667pt;}
.ya9{bottom:229.786667pt;}
.y80{bottom:240.986667pt;}
.yd6{bottom:245.466667pt;}
.y58{bottom:248.386667pt;}
.y2b{bottom:249.506667pt;}
.y7f{bottom:263.106667pt;}
.yd5{bottom:266.626667pt;}
.y2a{bottom:270.626667pt;}
.ya6{bottom:272.866667pt;}
.y7e{bottom:287.586667pt;}
.yd4{bottom:287.746667pt;}
.y29{bottom:291.746667pt;}
.yd3{bottom:308.866667pt;}
.y57{bottom:310.946667pt;}
.y7d{bottom:311.106667pt;}
.y28{bottom:312.866667pt;}
.ya5{bottom:321.986667pt;}
.yd2{bottom:330.146667pt;}
.y56{bottom:332.066667pt;}
.y7c{bottom:332.386667pt;}
.y27{bottom:334.146667pt;}
.ya4{bottom:343.266667pt;}
.yd1{bottom:351.266667pt;}
.y55{bottom:353.186667pt;}
.y7b{bottom:353.506667pt;}
.y26{bottom:355.266667pt;}
.ya3{bottom:360.866667pt;}
.yd0{bottom:372.386667pt;}
.y54{bottom:374.306667pt;}
.y7a{bottom:374.626667pt;}
.y25{bottom:376.386667pt;}
.ycf{bottom:393.186667pt;}
.y53{bottom:395.586667pt;}
.y79{bottom:395.746667pt;}
.y24{bottom:397.506667pt;}
.yce{bottom:414.466667pt;}
.y52{bottom:416.706667pt;}
.y78{bottom:417.026667pt;}
.y3d{bottom:418.466667pt;}
.y23{bottom:418.786667pt;}
.ya2{bottom:430.946667pt;}
.ycd{bottom:435.906667pt;}
.y51{bottom:437.826667pt;}
.y77{bottom:439.106667pt;}
.y22{bottom:439.906667pt;}
.ya1{bottom:452.386667pt;}
.ycc{bottom:457.026667pt;}
.y50{bottom:458.626667pt;}
.y21{bottom:461.026667pt;}
.y76{bottom:462.306667pt;}
.ya0{bottom:473.506667pt;}
.ycb{bottom:478.146667pt;}
.y4f{bottom:481.506667pt;}
.y20{bottom:482.146667pt;}
.y75{bottom:483.746667pt;}
.y9f{bottom:494.626667pt;}
.yca{bottom:499.453333pt;}
.y1f{bottom:503.453333pt;}
.y74{bottom:504.893333pt;}
.y4e{bottom:505.213333pt;}
.y9e{bottom:515.933333pt;}
.yc9{bottom:520.573333pt;}
.y3a{bottom:524.253333pt;}
.y1e{bottom:524.573333pt;}
.y4d{bottom:525.853333pt;}
.y73{bottom:526.173333pt;}
.y9d{bottom:537.053333pt;}
.yc8{bottom:541.693333pt;}
.y4c{bottom:543.293333pt;}
.y1d{bottom:545.693333pt;}
.y72{bottom:547.293333pt;}
.y9c{bottom:559.133333pt;}
.yc7{bottom:562.813333pt;}
.y1c{bottom:566.813333pt;}
.y71{bottom:568.413333pt;}
.y4b{bottom:570.653333pt;}
.y9b{bottom:582.653333pt;}
.yc6{bottom:583.933333pt;}
.y1b{bottom:587.933333pt;}
.y70{bottom:589.533333pt;}
.y4a{bottom:591.773333pt;}
.y9a{bottom:603.773333pt;}
.yc5{bottom:605.213333pt;}
.y1a{bottom:609.213333pt;}
.y6f{bottom:610.813333pt;}
.y49{bottom:612.893333pt;}
.y99{bottom:624.893333pt;}
.yc4{bottom:626.333333pt;}
.y19{bottom:630.333333pt;}
.y6e{bottom:631.933333pt;}
.y48{bottom:634.173333pt;}
.y98{bottom:646.173333pt;}
.yc3{bottom:647.453333pt;}
.y18{bottom:651.453333pt;}
.y6d{bottom:653.053333pt;}
.y47{bottom:655.293333pt;}
.y97{bottom:668.253333pt;}
.yc2{bottom:668.573333pt;}
.y17{bottom:672.573333pt;}
.y6c{bottom:674.173333pt;}
.y46{bottom:676.413333pt;}
.yc1{bottom:689.853333pt;}
.y96{bottom:692.733333pt;}
.y16{bottom:693.853333pt;}
.y6b{bottom:695.293333pt;}
.y45{bottom:697.533333pt;}
.yc0{bottom:710.973333pt;}
.y15{bottom:714.973333pt;}
.y6a{bottom:716.573333pt;}
.y95{bottom:717.213333pt;}
.y44{bottom:718.813333pt;}
.ybf{bottom:732.093333pt;}
.y14{bottom:736.093333pt;}
.y43{bottom:736.253333pt;}
.y69{bottom:737.693333pt;}
.y94{bottom:740.733333pt;}
.ybe{bottom:753.253333pt;}
.y13{bottom:757.253333pt;}
.y68{bottom:758.853333pt;}
.y93{bottom:761.893333pt;}
.ybd{bottom:774.533333pt;}
.y12{bottom:778.533333pt;}
.y67{bottom:779.973333pt;}
.y92{bottom:783.973333pt;}
.ybc{bottom:795.653333pt;}
.y42{bottom:798.693333pt;}
.y11{bottom:799.653333pt;}
.y66{bottom:801.253333pt;}
.y91{bottom:807.493333pt;}
.y41{bottom:816.133333pt;}
.ybb{bottom:816.773333pt;}
.y10{bottom:820.773333pt;}
.y65{bottom:822.373333pt;}
.y90{bottom:828.613333pt;}
.yba{bottom:837.893333pt;}
.yf{bottom:841.573333pt;}
.y39{bottom:841.893333pt;}
.y64{bottom:843.493333pt;}
.y8f{bottom:850.693333pt;}
.yb9{bottom:859.173333pt;}
.yb3{bottom:862.853333pt;}
.ye{bottom:863.173333pt;}
.y63{bottom:864.613333pt;}
.y8e{bottom:874.373333pt;}
.yd{bottom:883.973333pt;}
.y38{bottom:884.293333pt;}
.y62{bottom:885.733333pt;}
.y8d{bottom:895.493333pt;}
.yc{bottom:905.093333pt;}
.y37{bottom:905.413333pt;}
.y61{bottom:908.453333pt;}
.yb8{bottom:917.253333pt;}
.y8c{bottom:917.573333pt;}
.yb{bottom:926.533333pt;}
.y60{bottom:931.493333pt;}
.yb7{bottom:939.173333pt;}
.y8b{bottom:941.093333pt;}
.ya{bottom:947.493333pt;}
.y36{bottom:947.813333pt;}
.y5f{bottom:954.693333pt;}
.yb6{bottom:960.933333pt;}
.y8a{bottom:963.173333pt;}
.y9{bottom:968.613333pt;}
.y35{bottom:968.933333pt;}
.y5e{bottom:975.973333pt;}
.yb4{bottom:982.853333pt;}
.y89{bottom:986.693333pt;}
.y8{bottom:990.053333pt;}
.y5d{bottom:993.573333pt;}
.y88{bottom:1008.000000pt;}
.y7{bottom:1010.880000pt;}
.y34{bottom:1011.200000pt;}
.y87{bottom:1030.080000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.h12{height:21.120000pt;}
.h13{height:21.280000pt;}
.hf{height:42.240000pt;}
.h10{height:42.272000pt;}
.h11{height:42.400000pt;}
.ha{height:44.687500pt;}
.h8{height:52.750000pt;}
.hb{height:53.937500pt;}
.hc{height:54.598989pt;}
.h9{height:55.343750pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.hd{height:65.781915pt;}
.he{height:70.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:29.760000pt;}
.w2{width:38.240000pt;}
.wb{width:52.800000pt;}
.w7{width:52.832000pt;}
.w6{width:81.440000pt;}
.wa{width:87.200000pt;}
.w9{width:144.026667pt;}
.w5{width:181.146667pt;}
.w8{width:289.786667pt;}
.wc{width:321.026667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x2{left:8.160000pt;}
.x28{left:9.600000pt;}
.x24{left:10.880000pt;}
.x27{left:12.480000pt;}
.x2c{left:17.920000pt;}
.x1f{left:19.840000pt;}
.x2d{left:21.600000pt;}
.x20{left:25.600000pt;}
.x26{left:26.720000pt;}
.x25{left:37.440000pt;}
.x2b{left:47.040000pt;}
.x2a{left:49.920000pt;}
.x1d{left:53.440000pt;}
.x2e{left:64.800000pt;}
.x2f{left:105.280000pt;}
.x1a{left:106.592000pt;}
.x29{left:112.320000pt;}
.x6{left:114.271988pt;}
.x34{left:122.911988pt;}
.x23{left:129.760000pt;}
.x12{left:131.871988pt;}
.x1c{left:136.986667pt;}
.x10{left:138.746655pt;}
.x3{left:141.946655pt;}
.x14{left:151.226655pt;}
.xf{left:160.666655pt;}
.x18{left:170.266655pt;}
.x30{left:215.066655pt;}
.xb{left:275.586655pt;}
.x31{left:281.666667pt;}
.xe{left:291.266655pt;}
.xc{left:300.386655pt;}
.x17{left:309.506655pt;}
.x1e{left:318.786667pt;}
.x8{left:333.506655pt;}
.x9{left:334.626655pt;}
.x11{left:344.866655pt;}
.xd{left:365.506655pt;}
.x19{left:368.706655pt;}
.x32{left:369.666667pt;}
.x7{left:371.746655pt;}
.xa{left:385.026655pt;}
.x1{left:390.946667pt;}
.x21{left:400.866667pt;}
.x33{left:423.106667pt;}
.x5{left:425.346655pt;}
.x22{left:454.333333pt;}
.x13{left:464.733322pt;}
.x16{left:499.133322pt;}
.x15{left:564.733322pt;}
.x4{left:737.253322pt;}
}




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