
    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_1d19613e9a4720e13fbe533a.woff2')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_42845e0edea403476a7942c9.woff2')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_fcc2108c299096277a9ea740.woff2')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_85a1161ab660184afb5ae321.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_50a7cff37dfabfb5616965fc.woff2')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_932cfd94fb3b95515f328db6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_278e5ca7f7720619a042f333.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.612000px;}
.ls2{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.206400px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:11.466720px;}
.lsb{letter-spacing:41.850720px;}
.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:-34.063200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.wsb{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-936.230400px;}
._6{margin-left:-592.908480px;}
._1c{margin-left:-5.228160px;}
._13{margin-left:-3.647520px;}
._f{margin-left:-2.608560px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.599440px;}
._9{width:3.711120px;}
._d{width:5.378400px;}
._c{width:6.573600px;}
._b{width:8.496000px;}
._12{width:9.691200px;}
._11{width:10.756800px;}
._10{width:11.911200px;}
._e{width:13.934160px;}
._1b{width:16.304400px;}
._1a{width:17.639280px;}
._18{width:18.660960px;}
._19{width:20.258640px;}
._1e{width:24.680880px;}
._1d{width:25.752720px;}
._17{width:30.099600px;}
._8{width:34.473600px;}
._7{width:35.718480px;}
._16{width:134.699040px;}
._15{width:228.283200px;}
._14{width:242.685360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:3.240000px;}
.y6d{bottom:5.400000px;}
.y80{bottom:5.760000px;}
.y88{bottom:8.100000px;}
.y82{bottom:9.000000px;}
.ya4{bottom:10.080000px;}
.ya5{bottom:10.980000px;}
.y6a{bottom:16.020000px;}
.ya1{bottom:17.460000px;}
.y9e{bottom:18.180000px;}
.y7d{bottom:18.900000px;}
.y68{bottom:20.514000px;}
.y70{bottom:20.520000px;}
.y6c{bottom:22.500000px;}
.y7f{bottom:25.560000px;}
.y84{bottom:25.740000px;}
.ya8{bottom:25.785000px;}
.y87{bottom:27.900000px;}
.ya3{bottom:30.060000px;}
.ye2{bottom:35.460000px;}
.ya0{bottom:37.260000px;}
.yaa{bottom:45.360000px;}
.ye4{bottom:54.000000px;}
.y6{bottom:57.240000px;}
.ye3{bottom:70.734000px;}
.ye1{bottom:84.456000px;}
.y69{bottom:105.156000px;}
.y97{bottom:109.116000px;}
.y34{bottom:115.056000px;}
.ycb{bottom:117.036000px;}
.y96{bottom:128.916000px;}
.y33{bottom:134.856000px;}
.y67{bottom:135.936000px;}
.yca{bottom:136.836000px;}
.y95{bottom:148.716000px;}
.y32{bottom:154.650000px;}
.yc9{bottom:156.630000px;}
.y94{bottom:165.450000px;}
.y66{bottom:171.210000px;}
.y31{bottom:174.450000px;}
.yc8{bottom:176.610000px;}
.y30{bottom:194.430000px;}
.y65{bottom:194.970000px;}
.yc7{bottom:196.410000px;}
.y2f{bottom:214.230000px;}
.y64{bottom:214.770000px;}
.yc6{bottom:216.210000px;}
.y2e{bottom:234.030000px;}
.y63{bottom:234.750000px;}
.yc5{bottom:236.010000px;}
.y2d{bottom:253.830000px;}
.y62{bottom:254.550000px;}
.yc4{bottom:255.810000px;}
.ye0{bottom:269.850000px;}
.y2c{bottom:273.630000px;}
.y61{bottom:274.350000px;}
.yc3{bottom:275.790000px;}
.ydf{bottom:289.830000px;}
.y2b{bottom:293.610000px;}
.yc2{bottom:295.590000px;}
.y60{bottom:303.150000px;}
.yde{bottom:309.630000px;}
.y2a{bottom:313.410000px;}
.yc1{bottom:315.390000px;}
.y5f{bottom:322.950000px;}
.ydd{bottom:329.475000px;}
.y29{bottom:333.255000px;}
.yc0{bottom:335.235000px;}
.y5e{bottom:342.975000px;}
.ydc{bottom:349.275000px;}
.y28{bottom:353.055000px;}
.ybf{bottom:355.035000px;}
.y5d{bottom:362.775000px;}
.ydb{bottom:369.075000px;}
.y27{bottom:372.855000px;}
.ybe{bottom:375.015000px;}
.y5c{bottom:382.575000px;}
.yda{bottom:389.055000px;}
.y26{bottom:392.835000px;}
.ybd{bottom:394.815000px;}
.y5b{bottom:402.375000px;}
.yd9{bottom:408.855000px;}
.y25{bottom:412.635000px;}
.y93{bottom:414.255000px;}
.ybc{bottom:414.615000px;}
.y5a{bottom:422.175000px;}
.yd8{bottom:428.655000px;}
.y24{bottom:432.435000px;}
.y92{bottom:434.055000px;}
.ybb{bottom:434.415000px;}
.y59{bottom:442.155000px;}
.yd7{bottom:448.455000px;}
.y23{bottom:452.235000px;}
.y91{bottom:453.855000px;}
.yba{bottom:454.215000px;}
.y58{bottom:461.955000px;}
.yd6{bottom:468.255000px;}
.y22{bottom:472.035000px;}
.y90{bottom:473.655000px;}
.yb9{bottom:474.195000px;}
.y57{bottom:481.755000px;}
.yd5{bottom:488.235000px;}
.y21{bottom:492.015000px;}
.y8f{bottom:493.635000px;}
.yb8{bottom:493.995000px;}
.y56{bottom:496.515000px;}
.yd4{bottom:508.035000px;}
.y20{bottom:511.815000px;}
.yb7{bottom:513.795000px;}
.y55{bottom:519.555000px;}
.y8e{bottom:522.435000px;}
.yd3{bottom:527.835000px;}
.y1f{bottom:531.615000px;}
.yb6{bottom:533.595000px;}
.y8d{bottom:542.235000px;}
.y54{bottom:542.595000px;}
.yd2{bottom:547.635000px;}
.y1e{bottom:551.415000px;}
.yb5{bottom:553.395000px;}
.y8c{bottom:562.035000px;}
.y53{bottom:565.635000px;}
.yd1{bottom:567.435000px;}
.y1d{bottom:571.215000px;}
.yb4{bottom:573.375000px;}
.y8b{bottom:581.835000px;}
.yd0{bottom:587.415000px;}
.y52{bottom:588.675000px;}
.y1c{bottom:591.195000px;}
.yb3{bottom:593.175000px;}
.y8a{bottom:601.845000px;}
.ycf{bottom:607.245000px;}
.y51{bottom:611.745000px;}
.yb2{bottom:613.005000px;}
.y1b{bottom:613.185000px;}
.y89{bottom:621.645000px;}
.yce{bottom:627.045000px;}
.yb1{bottom:632.805000px;}
.y50{bottom:634.785000px;}
.y86{bottom:636.405000px;}
.y1a{bottom:641.985000px;}
.ycd{bottom:646.845000px;}
.yb0{bottom:652.605000px;}
.y4e{bottom:657.645000px;}
.y19{bottom:661.965000px;}
.ycc{bottom:666.645000px;}
.y85{bottom:679.245000px;}
.yaf{bottom:681.585000px;}
.y18{bottom:681.765000px;}
.y4d{bottom:686.625000px;}
.yae{bottom:701.385000px;}
.y17{bottom:701.565000px;}
.y4c{bottom:706.425000px;}
.y83{bottom:719.565000px;}
.yad{bottom:721.185000px;}
.y16{bottom:721.365000px;}
.y4b{bottom:726.225000px;}
.yac{bottom:740.985000px;}
.y15{bottom:741.165000px;}
.y4a{bottom:746.025000px;}
.y81{bottom:760.065000px;}
.yab{bottom:760.785000px;}
.y14{bottom:761.145000px;}
.y49{bottom:765.825000px;}
.ya9{bottom:775.725000px;}
.y13{bottom:780.945000px;}
.y7e{bottom:784.005000px;}
.y48{bottom:785.805000px;}
.y12{bottom:800.745000px;}
.y47{bottom:805.605000px;}
.y11{bottom:820.545000px;}
.y7c{bottom:824.325000px;}
.y46{bottom:825.405000px;}
.ya7{bottom:837.285000px;}
.y10{bottom:840.345000px;}
.y45{bottom:845.205000px;}
.yf{bottom:860.325000px;}
.y7b{bottom:863.970000px;}
.y44{bottom:865.050000px;}
.ya6{bottom:879.270000px;}
.ye{bottom:880.170000px;}
.y7a{bottom:883.770000px;}
.y43{bottom:885.030000px;}
.yd{bottom:902.310000px;}
.y79{bottom:903.570000px;}
.y42{bottom:904.830000px;}
.y9f{bottom:921.030000px;}
.y78{bottom:923.370000px;}
.y41{bottom:924.630000px;}
.yc{bottom:927.330000px;}
.yb{bottom:942.450000px;}
.y77{bottom:943.350000px;}
.y40{bottom:944.430000px;}
.ya2{bottom:948.210000px;}
.ya{bottom:964.230000px;}
.y76{bottom:972.150000px;}
.y3f{bottom:984.210000px;}
.y9{bottom:985.470000px;}
.y75{bottom:991.950000px;}
.y9d{bottom:994.470000px;}
.y3e{bottom:1004.010000px;}
.y8{bottom:1009.050000px;}
.y74{bottom:1011.750000px;}
.y3d{bottom:1023.810000px;}
.y73{bottom:1031.550000px;}
.y9c{bottom:1034.610000px;}
.y7{bottom:1040.730000px;}
.y3c{bottom:1043.610000px;}
.y72{bottom:1051.530000px;}
.y9b{bottom:1054.410000px;}
.y3b{bottom:1063.410000px;}
.y71{bottom:1071.330000px;}
.y9a{bottom:1074.390000px;}
.y5{bottom:1076.190000px;}
.y3a{bottom:1083.390000px;}
.y6f{bottom:1086.090000px;}
.y99{bottom:1094.190000px;}
.y39{bottom:1103.190000px;}
.y4{bottom:1103.550000px;}
.y98{bottom:1113.990000px;}
.y6e{bottom:1121.370000px;}
.y38{bottom:1122.990000px;}
.y3{bottom:1130.940000px;}
.y6b{bottom:1139.400000px;}
.y37{bottom:1142.820000px;}
.y2{bottom:1158.300000px;}
.y36{bottom:1162.620000px;}
.y1{bottom:1187.280000px;}
.y35{bottom:1193.220000px;}
.h1d{height:2.826563px;}
.hb{height:17.100000px;}
.ha{height:17.280000px;}
.hc{height:17.316000px;}
.h12{height:23.040000px;}
.h18{height:25.020000px;}
.he{height:30.060000px;}
.h15{height:32.220000px;}
.h10{height:32.940000px;}
.hd{height:34.560000px;}
.hf{height:36.540000px;}
.h6{height:38.158594px;}
.h11{height:39.600000px;}
.h13{height:39.780000px;}
.h19{height:39.816000px;}
.h8{height:41.726953px;}
.h14{height:41.940000px;}
.h17{height:44.100000px;}
.h5{height:58.651172px;}
.h1a{height:59.400000px;}
.h7{height:60.226875px;}
.h1b{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.h16{height:71.280000px;}
.h1c{height:84.420000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:39.420000px;}
.w23{width:45.720000px;}
.w29{width:45.900000px;}
.w27{width:46.260000px;}
.w2b{width:47.160000px;}
.w18{width:50.220000px;}
.w17{width:50.256000px;}
.w1b{width:50.400000px;}
.wf{width:52.560000px;}
.wc{width:52.596000px;}
.w22{width:53.316000px;}
.wd{width:56.880000px;}
.w24{width:57.600000px;}
.w1c{width:66.060000px;}
.w4{width:67.500000px;}
.w12{width:68.220000px;}
.w2c{width:70.380000px;}
.w2a{width:70.596000px;}
.w26{width:71.316000px;}
.w28{width:71.820000px;}
.w16{width:74.340000px;}
.wb{width:76.140000px;}
.w19{width:80.280000px;}
.we{width:81.360000px;}
.w5{width:87.516000px;}
.w1d{width:101.196000px;}
.w1e{width:111.096000px;}
.w8{width:115.596000px;}
.w20{width:116.856000px;}
.w21{width:117.900000px;}
.w1f{width:118.440000px;}
.w6{width:125.640000px;}
.w1a{width:126.756000px;}
.w10{width:132.336000px;}
.w11{width:132.516000px;}
.w7{width:135.396000px;}
.w13{width:139.176000px;}
.w14{width:169.950000px;}
.w15{width:176.610000px;}
.w9{width:176.970000px;}
.wa{width:185.610000px;}
.w2d{width:210.810000px;}
.w3{width:242.310000px;}
.w2e{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:7.740000px;}
.x2{left:53.279987px;}
.x1{left:54.359987px;}
.x9{left:72.900000px;}
.x13{left:75.240000px;}
.x2b{left:80.999987px;}
.x1f{left:84.420000px;}
.x3{left:107.315987px;}
.x4{left:116.856000px;}
.x20{left:185.970000px;}
.xa{left:188.850000px;}
.x2c{left:191.370000px;}
.x14{left:214.770000px;}
.x27{left:225.750000px;}
.x10{left:241.770000px;}
.x1a{left:265.350000px;}
.x21{left:297.435000px;}
.x28{left:344.055000px;}
.x5{left:359.535000px;}
.xb{left:366.375000px;}
.x11{left:374.475000px;}
.x15{left:385.095000px;}
.x1b{left:392.475000px;}
.x22{left:416.235000px;}
.x6{left:427.395000px;}
.x1c{left:443.235000px;}
.x29{left:462.495000px;}
.x7{left:515.265000px;}
.x23{left:533.445000px;}
.xc{left:552.345000px;}
.x12{left:560.265000px;}
.x16{left:562.065000px;}
.x1d{left:570.345000px;}
.x2a{left:580.965000px;}
.xd{left:628.845000px;}
.x17{left:636.765000px;}
.x8{left:641.265000px;}
.x24{left:651.705000px;}
.xe{left:681.810000px;}
.x18{left:687.390000px;}
.x25{left:705.390000px;}
.x19{left:737.970000px;}
.xf{left:739.050000px;}
.x26{left:751.470000px;}
.x1e{left:803.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:10.192640pt;}
.lsb{letter-spacing:37.200640pt;}
.ws8{word-spacing:-30.278400pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-832.204800pt;}
._6{margin-left:-527.029760pt;}
._1c{margin-left:-4.647253pt;}
._13{margin-left:-3.242240pt;}
._f{margin-left:-2.318720pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.310613pt;}
._9{width:3.298773pt;}
._d{width:4.780800pt;}
._c{width:5.843200pt;}
._b{width:7.552000pt;}
._12{width:8.614400pt;}
._11{width:9.561600pt;}
._10{width:10.587733pt;}
._e{width:12.385920pt;}
._1b{width:14.492800pt;}
._1a{width:15.679360pt;}
._18{width:16.587520pt;}
._19{width:18.007680pt;}
._1e{width:21.938560pt;}
._1d{width:22.891307pt;}
._17{width:26.755200pt;}
._8{width:30.643200pt;}
._7{width:31.749760pt;}
._16{width:119.732480pt;}
._15{width:202.918400pt;}
._14{width:215.720320pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.880000pt;}
.y6d{bottom:4.800000pt;}
.y80{bottom:5.120000pt;}
.y88{bottom:7.200000pt;}
.y82{bottom:8.000000pt;}
.ya4{bottom:8.960000pt;}
.ya5{bottom:9.760000pt;}
.y6a{bottom:14.240000pt;}
.ya1{bottom:15.520000pt;}
.y9e{bottom:16.160000pt;}
.y7d{bottom:16.800000pt;}
.y68{bottom:18.234667pt;}
.y70{bottom:18.240000pt;}
.y6c{bottom:20.000000pt;}
.y7f{bottom:22.720000pt;}
.y84{bottom:22.880000pt;}
.ya8{bottom:22.920000pt;}
.y87{bottom:24.800000pt;}
.ya3{bottom:26.720000pt;}
.ye2{bottom:31.520000pt;}
.ya0{bottom:33.120000pt;}
.yaa{bottom:40.320000pt;}
.ye4{bottom:48.000000pt;}
.y6{bottom:50.880000pt;}
.ye3{bottom:62.874667pt;}
.ye1{bottom:75.072000pt;}
.y69{bottom:93.472000pt;}
.y97{bottom:96.992000pt;}
.y34{bottom:102.272000pt;}
.ycb{bottom:104.032000pt;}
.y96{bottom:114.592000pt;}
.y33{bottom:119.872000pt;}
.y67{bottom:120.832000pt;}
.yca{bottom:121.632000pt;}
.y95{bottom:132.192000pt;}
.y32{bottom:137.466667pt;}
.yc9{bottom:139.226667pt;}
.y94{bottom:147.066667pt;}
.y66{bottom:152.186667pt;}
.y31{bottom:155.066667pt;}
.yc8{bottom:156.986667pt;}
.y30{bottom:172.826667pt;}
.y65{bottom:173.306667pt;}
.yc7{bottom:174.586667pt;}
.y2f{bottom:190.426667pt;}
.y64{bottom:190.906667pt;}
.yc6{bottom:192.186667pt;}
.y2e{bottom:208.026667pt;}
.y63{bottom:208.666667pt;}
.yc5{bottom:209.786667pt;}
.y2d{bottom:225.626667pt;}
.y62{bottom:226.266667pt;}
.yc4{bottom:227.386667pt;}
.ye0{bottom:239.866667pt;}
.y2c{bottom:243.226667pt;}
.y61{bottom:243.866667pt;}
.yc3{bottom:245.146667pt;}
.ydf{bottom:257.626667pt;}
.y2b{bottom:260.986667pt;}
.yc2{bottom:262.746667pt;}
.y60{bottom:269.466667pt;}
.yde{bottom:275.226667pt;}
.y2a{bottom:278.586667pt;}
.yc1{bottom:280.346667pt;}
.y5f{bottom:287.066667pt;}
.ydd{bottom:292.866667pt;}
.y29{bottom:296.226667pt;}
.yc0{bottom:297.986667pt;}
.y5e{bottom:304.866667pt;}
.ydc{bottom:310.466667pt;}
.y28{bottom:313.826667pt;}
.ybf{bottom:315.586667pt;}
.y5d{bottom:322.466667pt;}
.ydb{bottom:328.066667pt;}
.y27{bottom:331.426667pt;}
.ybe{bottom:333.346667pt;}
.y5c{bottom:340.066667pt;}
.yda{bottom:345.826667pt;}
.y26{bottom:349.186667pt;}
.ybd{bottom:350.946667pt;}
.y5b{bottom:357.666667pt;}
.yd9{bottom:363.426667pt;}
.y25{bottom:366.786667pt;}
.y93{bottom:368.226667pt;}
.ybc{bottom:368.546667pt;}
.y5a{bottom:375.266667pt;}
.yd8{bottom:381.026667pt;}
.y24{bottom:384.386667pt;}
.y92{bottom:385.826667pt;}
.ybb{bottom:386.146667pt;}
.y59{bottom:393.026667pt;}
.yd7{bottom:398.626667pt;}
.y23{bottom:401.986667pt;}
.y91{bottom:403.426667pt;}
.yba{bottom:403.746667pt;}
.y58{bottom:410.626667pt;}
.yd6{bottom:416.226667pt;}
.y22{bottom:419.586667pt;}
.y90{bottom:421.026667pt;}
.yb9{bottom:421.506667pt;}
.y57{bottom:428.226667pt;}
.yd5{bottom:433.986667pt;}
.y21{bottom:437.346667pt;}
.y8f{bottom:438.786667pt;}
.yb8{bottom:439.106667pt;}
.y56{bottom:441.346667pt;}
.yd4{bottom:451.586667pt;}
.y20{bottom:454.946667pt;}
.yb7{bottom:456.706667pt;}
.y55{bottom:461.826667pt;}
.y8e{bottom:464.386667pt;}
.yd3{bottom:469.186667pt;}
.y1f{bottom:472.546667pt;}
.yb6{bottom:474.306667pt;}
.y8d{bottom:481.986667pt;}
.y54{bottom:482.306667pt;}
.yd2{bottom:486.786667pt;}
.y1e{bottom:490.146667pt;}
.yb5{bottom:491.906667pt;}
.y8c{bottom:499.586667pt;}
.y53{bottom:502.786667pt;}
.yd1{bottom:504.386667pt;}
.y1d{bottom:507.746667pt;}
.yb4{bottom:509.666667pt;}
.y8b{bottom:517.186667pt;}
.yd0{bottom:522.146667pt;}
.y52{bottom:523.266667pt;}
.y1c{bottom:525.506667pt;}
.yb3{bottom:527.266667pt;}
.y8a{bottom:534.973333pt;}
.ycf{bottom:539.773333pt;}
.y51{bottom:543.773333pt;}
.yb2{bottom:544.893333pt;}
.y1b{bottom:545.053333pt;}
.y89{bottom:552.573333pt;}
.yce{bottom:557.373333pt;}
.yb1{bottom:562.493333pt;}
.y50{bottom:564.253333pt;}
.y86{bottom:565.693333pt;}
.y1a{bottom:570.653333pt;}
.ycd{bottom:574.973333pt;}
.yb0{bottom:580.093333pt;}
.y4e{bottom:584.573333pt;}
.y19{bottom:588.413333pt;}
.ycc{bottom:592.573333pt;}
.y85{bottom:603.773333pt;}
.yaf{bottom:605.853333pt;}
.y18{bottom:606.013333pt;}
.y4d{bottom:610.333333pt;}
.yae{bottom:623.453333pt;}
.y17{bottom:623.613333pt;}
.y4c{bottom:627.933333pt;}
.y83{bottom:639.613333pt;}
.yad{bottom:641.053333pt;}
.y16{bottom:641.213333pt;}
.y4b{bottom:645.533333pt;}
.yac{bottom:658.653333pt;}
.y15{bottom:658.813333pt;}
.y4a{bottom:663.133333pt;}
.y81{bottom:675.613333pt;}
.yab{bottom:676.253333pt;}
.y14{bottom:676.573333pt;}
.y49{bottom:680.733333pt;}
.ya9{bottom:689.533333pt;}
.y13{bottom:694.173333pt;}
.y7e{bottom:696.893333pt;}
.y48{bottom:698.493333pt;}
.y12{bottom:711.773333pt;}
.y47{bottom:716.093333pt;}
.y11{bottom:729.373333pt;}
.y7c{bottom:732.733333pt;}
.y46{bottom:733.693333pt;}
.ya7{bottom:744.253333pt;}
.y10{bottom:746.973333pt;}
.y45{bottom:751.293333pt;}
.yf{bottom:764.733333pt;}
.y7b{bottom:767.973333pt;}
.y44{bottom:768.933333pt;}
.ya6{bottom:781.573333pt;}
.ye{bottom:782.373333pt;}
.y7a{bottom:785.573333pt;}
.y43{bottom:786.693333pt;}
.yd{bottom:802.053333pt;}
.y79{bottom:803.173333pt;}
.y42{bottom:804.293333pt;}
.y9f{bottom:818.693333pt;}
.y78{bottom:820.773333pt;}
.y41{bottom:821.893333pt;}
.yc{bottom:824.293333pt;}
.yb{bottom:837.733333pt;}
.y77{bottom:838.533333pt;}
.y40{bottom:839.493333pt;}
.ya2{bottom:842.853333pt;}
.ya{bottom:857.093333pt;}
.y76{bottom:864.133333pt;}
.y3f{bottom:874.853333pt;}
.y9{bottom:875.973333pt;}
.y75{bottom:881.733333pt;}
.y9d{bottom:883.973333pt;}
.y3e{bottom:892.453333pt;}
.y8{bottom:896.933333pt;}
.y74{bottom:899.333333pt;}
.y3d{bottom:910.053333pt;}
.y73{bottom:916.933333pt;}
.y9c{bottom:919.653333pt;}
.y7{bottom:925.093333pt;}
.y3c{bottom:927.653333pt;}
.y72{bottom:934.693333pt;}
.y9b{bottom:937.253333pt;}
.y3b{bottom:945.253333pt;}
.y71{bottom:952.293333pt;}
.y9a{bottom:955.013333pt;}
.y5{bottom:956.613333pt;}
.y3a{bottom:963.013333pt;}
.y6f{bottom:965.413333pt;}
.y99{bottom:972.613333pt;}
.y39{bottom:980.613333pt;}
.y4{bottom:980.933333pt;}
.y98{bottom:990.213333pt;}
.y6e{bottom:996.773333pt;}
.y38{bottom:998.213333pt;}
.y3{bottom:1005.280000pt;}
.y6b{bottom:1012.800000pt;}
.y37{bottom:1015.840000pt;}
.y2{bottom:1029.600000pt;}
.y36{bottom:1033.440000pt;}
.y1{bottom:1055.360000pt;}
.y35{bottom:1060.640000pt;}
.h1d{height:2.512500pt;}
.hb{height:15.200000pt;}
.ha{height:15.360000pt;}
.hc{height:15.392000pt;}
.h12{height:20.480000pt;}
.h18{height:22.240000pt;}
.he{height:26.720000pt;}
.h15{height:28.640000pt;}
.h10{height:29.280000pt;}
.hd{height:30.720000pt;}
.hf{height:32.480000pt;}
.h6{height:33.918750pt;}
.h11{height:35.200000pt;}
.h13{height:35.360000pt;}
.h19{height:35.392000pt;}
.h8{height:37.090625pt;}
.h14{height:37.280000pt;}
.h17{height:39.200000pt;}
.h5{height:52.134375pt;}
.h1a{height:52.800000pt;}
.h7{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.h16{height:63.360000pt;}
.h1c{height:75.040000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:35.040000pt;}
.w23{width:40.640000pt;}
.w29{width:40.800000pt;}
.w27{width:41.120000pt;}
.w2b{width:41.920000pt;}
.w18{width:44.640000pt;}
.w17{width:44.672000pt;}
.w1b{width:44.800000pt;}
.wf{width:46.720000pt;}
.wc{width:46.752000pt;}
.w22{width:47.392000pt;}
.wd{width:50.560000pt;}
.w24{width:51.200000pt;}
.w1c{width:58.720000pt;}
.w4{width:60.000000pt;}
.w12{width:60.640000pt;}
.w2c{width:62.560000pt;}
.w2a{width:62.752000pt;}
.w26{width:63.392000pt;}
.w28{width:63.840000pt;}
.w16{width:66.080000pt;}
.wb{width:67.680000pt;}
.w19{width:71.360000pt;}
.we{width:72.320000pt;}
.w5{width:77.792000pt;}
.w1d{width:89.952000pt;}
.w1e{width:98.752000pt;}
.w8{width:102.752000pt;}
.w20{width:103.872000pt;}
.w21{width:104.800000pt;}
.w1f{width:105.280000pt;}
.w6{width:111.680000pt;}
.w1a{width:112.672000pt;}
.w10{width:117.632000pt;}
.w11{width:117.792000pt;}
.w7{width:120.352000pt;}
.w13{width:123.712000pt;}
.w14{width:151.066667pt;}
.w15{width:156.986667pt;}
.w9{width:157.306667pt;}
.wa{width:164.986667pt;}
.w2d{width:187.386667pt;}
.w3{width:215.386667pt;}
.w2e{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:6.880000pt;}
.x2{left:47.359988pt;}
.x1{left:48.319988pt;}
.x9{left:64.800000pt;}
.x13{left:66.880000pt;}
.x2b{left:71.999988pt;}
.x1f{left:75.040000pt;}
.x3{left:95.391988pt;}
.x4{left:103.872000pt;}
.x20{left:165.306667pt;}
.xa{left:167.866667pt;}
.x2c{left:170.106667pt;}
.x14{left:190.906667pt;}
.x27{left:200.666667pt;}
.x10{left:214.906667pt;}
.x1a{left:235.866667pt;}
.x21{left:264.386667pt;}
.x28{left:305.826667pt;}
.x5{left:319.586667pt;}
.xb{left:325.666667pt;}
.x11{left:332.866667pt;}
.x15{left:342.306667pt;}
.x1b{left:348.866667pt;}
.x22{left:369.986667pt;}
.x6{left:379.906667pt;}
.x1c{left:393.986667pt;}
.x29{left:411.106667pt;}
.x7{left:458.013333pt;}
.x23{left:474.173333pt;}
.xc{left:490.973333pt;}
.x12{left:498.013333pt;}
.x16{left:499.613333pt;}
.x1d{left:506.973333pt;}
.x2a{left:516.413333pt;}
.xd{left:558.973333pt;}
.x17{left:566.013333pt;}
.x8{left:570.013333pt;}
.x24{left:579.293333pt;}
.xe{left:606.053333pt;}
.x18{left:611.013333pt;}
.x25{left:627.013333pt;}
.x19{left:655.973333pt;}
.xf{left:656.933333pt;}
.x26{left:667.973333pt;}
.x1e{left:714.053322pt;}
}




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