
    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_3061d8222e2161b50f5906a4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_7c49de2e9fa2fabcda9fe5b6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_89ad88eb4acfd1a64f92612a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.688477;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_75ea01c7a81f61f24a2e6e1d.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_6c7a6fa9ec597cc07fd51292.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_e278c2b75a117e49d092fca0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_19bbddc157d4db58656adfa5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.046387;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4d9cc371bab7741e03f700a4.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;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:-23.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.176000px;}
.lsa{letter-spacing:-1.134000px;}
.ls5{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.472200px;}
.ls6{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.238800px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:2.880000px;}
.lse{letter-spacing:3.600000px;}
.ls12{letter-spacing:15.840000px;}
.lsb{letter-spacing:25.344000px;}
.ls8{letter-spacing:26.064000px;}
.ls7{letter-spacing:30.545280px;}
.ls14{letter-spacing:39.905280px;}
.lsf{letter-spacing:65.825280px;}
.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;}
}
.ws3{word-spacing:-20.821200px;}
.wse{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.426000px;}
.wsb{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._18{margin-left:-9.774720px;}
._1a{margin-left:-6.624720px;}
._15{margin-left:-2.260560px;}
._0{margin-left:-1.258800px;}
._2{width:1.042800px;}
._1{width:2.122560px;}
._c{width:3.491280px;}
._b{width:4.504320px;}
._a{width:5.783040px;}
._9{width:6.802800px;}
._5{width:8.743680px;}
._4{width:10.598400px;}
._d{width:12.121920px;}
._13{width:13.181760px;}
._3{width:15.093000px;}
._12{width:18.149760px;}
._14{width:20.004480px;}
._19{width:21.066240px;}
._10{width:22.455360px;}
._f{width:23.714160px;}
._7{width:25.436160px;}
._6{width:26.496240px;}
._8{width:28.042080px;}
._1c{width:29.100720px;}
._1d{width:30.143040px;}
._1b{width:31.331760px;}
._11{width:35.173680px;}
._e{width:36.564480px;}
._16{width:47.494080px;}
._17{width:847.740000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:5.580000px;}
.y90{bottom:6.480000px;}
.y79{bottom:7.020000px;}
.y89{bottom:8.820000px;}
.y97{bottom:9.750000px;}
.y1d{bottom:11.880000px;}
.y9d{bottom:12.960000px;}
.y93{bottom:15.120000px;}
.y9b{bottom:21.600000px;}
.y82{bottom:22.860000px;}
.y8e{bottom:23.760000px;}
.y77{bottom:24.300000px;}
.y87{bottom:25.920000px;}
.y95{bottom:27.030000px;}
.y13{bottom:27.900000px;}
.ya0{bottom:29.160000px;}
.y9c{bottom:30.240000px;}
.y7f{bottom:31.500000px;}
.y92{bottom:32.400000px;}
.y47{bottom:32.940000px;}
.y1e{bottom:34.380000px;}
.y8b{bottom:34.560000px;}
.y46{bottom:37.620000px;}
.y1c{bottom:37.800000px;}
.y7c{bottom:40.140000px;}
.y8d{bottom:41.040000px;}
.y78{bottom:41.400000px;}
.y85{bottom:43.200000px;}
.y96{bottom:44.310000px;}
.y9f{bottom:46.440000px;}
.y7e{bottom:48.600000px;}
.y91{bottom:49.680000px;}
.y8a{bottom:51.840000px;}
.y48{bottom:56.520000px;}
.y7b{bottom:57.240000px;}
.y1f{bottom:57.420000px;}
.y8f{bottom:58.320000px;}
.y86{bottom:60.480000px;}
.y45{bottom:63.540000px;}
.y1b{bottom:63.720000px;}
.y7d{bottom:65.880000px;}
.y7{bottom:72.540000px;}
.y81{bottom:74.520000px;}
.y44{bottom:77.220000px;}
.y88{bottom:77.805000px;}
.y1a{bottom:78.300000px;}
.y80{bottom:91.800000px;}
.y6{bottom:104.760000px;}
.y5{bottom:137.160000px;}
.y4{bottom:160.200000px;}
.yd2{bottom:174.420000px;}
.y70{bottom:178.380000px;}
.yb5{bottom:179.280000px;}
.y43{bottom:179.640000px;}
.y64{bottom:180.540000px;}
.yf2{bottom:183.420000px;}
.y94{bottom:186.660000px;}
.yd1{bottom:196.230000px;}
.y6f{bottom:200.190000px;}
.yb4{bottom:201.090000px;}
.y42{bottom:201.450000px;}
.y63{bottom:202.350000px;}
.y3{bottom:202.530000px;}
.yf1{bottom:205.230000px;}
.yd0{bottom:218.010000px;}
.y6e{bottom:221.970000px;}
.yb3{bottom:222.870000px;}
.y41{bottom:223.230000px;}
.y2{bottom:223.410000px;}
.y62{bottom:224.310000px;}
.ye6{bottom:227.010000px;}
.yf7{bottom:236.010000px;}
.ycf{bottom:239.790000px;}
.y6d{bottom:243.930000px;}
.y40{bottom:245.010000px;}
.y61{bottom:246.090000px;}
.ye5{bottom:248.790000px;}
.y8c{bottom:252.210000px;}
.yb2{bottom:253.830000px;}
.yf0{bottom:257.790000px;}
.yce{bottom:261.750000px;}
.y18{bottom:262.650000px;}
.y6c{bottom:265.710000px;}
.y3f{bottom:266.790000px;}
.y60{bottom:267.870000px;}
.ye4{bottom:270.750000px;}
.yb1{bottom:275.610000px;}
.yf6{bottom:279.750000px;}
.ycd{bottom:283.530000px;}
.y17{bottom:284.610000px;}
.y6b{bottom:287.490000px;}
.y3e{bottom:288.750000px;}
.y5f{bottom:289.650000px;}
.ye3{bottom:292.530000px;}
.yb0{bottom:297.390000px;}
.yf5{bottom:301.530000px;}
.ycc{bottom:305.310000px;}
.y16{bottom:306.390000px;}
.y3d{bottom:310.530000px;}
.y5e{bottom:311.610000px;}
.yed{bottom:314.310000px;}
.y6a{bottom:318.270000px;}
.yaf{bottom:319.170000px;}
.y109{bottom:322.050000px;}
.ye2{bottom:323.310000px;}
.y15{bottom:328.170000px;}
.y84{bottom:328.530000px;}
.y3c{bottom:332.310000px;}
.ycb{bottom:336.090000px;}
.y69{bottom:340.230000px;}
.yae{bottom:341.130000px;}
.y5d{bottom:342.570000px;}
.y108{bottom:343.830000px;}
.ye1{bottom:345.090000px;}
.y14{bottom:349.950000px;}
.y3b{bottom:354.090000px;}
.yca{bottom:358.050000px;}
.y68{bottom:362.010000px;}
.yad{bottom:362.910000px;}
.yef{bottom:363.090000px;}
.y107{bottom:365.610000px;}
.ye0{bottom:367.050000px;}
.y5c{bottom:374.610000px;}
.y10a{bottom:376.050000px;}
.y67{bottom:383.790000px;}
.yac{bottom:384.690000px;}
.y3a{bottom:385.050000px;}
.yc9{bottom:388.830000px;}
.y5b{bottom:396.435000px;}
.yf4{bottom:397.875000px;}
.y12{bottom:401.475000px;}
.y66{bottom:405.615000px;}
.yab{bottom:406.515000px;}
.y39{bottom:406.875000px;}
.yc8{bottom:410.655000px;}
.y5a{bottom:418.215000px;}
.yf3{bottom:419.655000px;}
.y7a{bottom:426.495000px;}
.yaa{bottom:428.295000px;}
.y38{bottom:428.655000px;}
.yc7{bottom:432.435000px;}
.y65{bottom:432.975000px;}
.y59{bottom:439.995000px;}
.ydf{bottom:441.435000px;}
.y106{bottom:449.175000px;}
.y37{bottom:450.435000px;}
.yc6{bottom:454.215000px;}
.ya9{bottom:459.255000px;}
.y58{bottom:461.955000px;}
.yde{bottom:463.215000px;}
.y105{bottom:470.955000px;}
.y36{bottom:472.215000px;}
.ya8{bottom:481.035000px;}
.y57{bottom:483.735000px;}
.yc5{bottom:485.175000px;}
.y104{bottom:492.735000px;}
.y35{bottom:494.175000px;}
.y10f{bottom:497.955000px;}
.ydd{bottom:506.955000px;}
.y11{bottom:508.035000px;}
.ya7{bottom:511.815000px;}
.y56{bottom:514.515000px;}
.y34{bottom:515.955000px;}
.y10e{bottom:519.735000px;}
.y103{bottom:523.515000px;}
.ydc{bottom:528.735000px;}
.ya6{bottom:533.595000px;}
.y76{bottom:535.395000px;}
.yc4{bottom:537.735000px;}
.y10d{bottom:541.515000px;}
.y55{bottom:545.295000px;}
.y33{bottom:546.735000px;}
.ydb{bottom:550.515000px;}
.y10{bottom:552.495000px;}
.y102{bottom:554.295000px;}
.ya5{bottom:555.555000px;}
.yc3{bottom:559.515000px;}
.y54{bottom:567.075000px;}
.y32{bottom:568.515000px;}
.yda{bottom:572.295000px;}
.y101{bottom:576.255000px;}
.yf{bottom:577.335000px;}
.yee{bottom:581.295000px;}
.y53{bottom:589.035000px;}
.y31{bottom:590.295000px;}
.y10c{bottom:594.255000px;}
.y100{bottom:598.035000px;}
.yd9{bottom:603.285000px;}
.ye{bottom:605.085000px;}
.ya4{bottom:608.145000px;}
.y52{bottom:610.845000px;}
.y30{bottom:612.285000px;}
.yd8{bottom:625.065000px;}
.yff{bottom:628.845000px;}
.y51{bottom:632.625000px;}
.y2f{bottom:634.065000px;}
.yd{bottom:636.585000px;}
.ya3{bottom:639.105000px;}
.y10b{bottom:646.845000px;}
.yfe{bottom:650.625000px;}
.y2e{bottom:655.845000px;}
.y50{bottom:663.405000px;}
.y75{bottom:663.585000px;}
.ya2{bottom:671.145000px;}
.yfd{bottom:672.585000px;}
.yc2{bottom:677.625000px;}
.y4f{bottom:685.365000px;}
.y2d{bottom:686.625000px;}
.ya1{bottom:692.925000px;}
.yfc{bottom:694.365000px;}
.y74{bottom:695.625000px;}
.yc1{bottom:699.585000px;}
.yc{bottom:699.945000px;}
.y4e{bottom:707.145000px;}
.yec{bottom:708.585000px;}
.yfb{bottom:716.145000px;}
.y73{bottom:717.585000px;}
.y9e{bottom:718.305000px;}
.yc0{bottom:721.365000px;}
.y2c{bottom:726.585000px;}
.y4d{bottom:728.925000px;}
.yeb{bottom:730.365000px;}
.yb{bottom:736.485000px;}
.y72{bottom:739.365000px;}
.ybf{bottom:743.145000px;}
.yfa{bottom:746.925000px;}
.y2b{bottom:748.365000px;}
.y4c{bottom:750.705000px;}
.yd7{bottom:752.145000px;}
.y71{bottom:761.145000px;}
.ybe{bottom:764.925000px;}
.y2a{bottom:770.145000px;}
.y4b{bottom:772.485000px;}
.ya{bottom:772.845000px;}
.yea{bottom:773.925000px;}
.yf9{bottom:777.705000px;}
.yd6{bottom:782.925000px;}
.ybd{bottom:786.705000px;}
.y29{bottom:791.925000px;}
.ye9{bottom:795.705000px;}
.y4a{bottom:803.445000px;}
.yd5{bottom:804.705000px;}
.y9a{bottom:805.470000px;}
.yf8{bottom:808.710000px;}
.y9{bottom:809.250000px;}
.y28{bottom:813.750000px;}
.ybc{bottom:817.710000px;}
.yd4{bottom:826.710000px;}
.y27{bottom:835.710000px;}
.ybb{bottom:839.490000px;}
.ye8{bottom:848.490000px;}
.y26{bottom:857.490000px;}
.y99{bottom:860.190000px;}
.yba{bottom:870.270000px;}
.y25{bottom:879.270000px;}
.yb9{bottom:892.050000px;}
.y49{bottom:901.050000px;}
.y8{bottom:906.270000px;}
.y24{bottom:910.050000px;}
.yb8{bottom:914.010000px;}
.yd3{bottom:923.010000px;}
.y23{bottom:932.010000px;}
.yb7{bottom:935.790000px;}
.y98{bottom:936.510000px;}
.ye7{bottom:944.790000px;}
.y22{bottom:953.790000px;}
.yb6{bottom:966.570000px;}
.y21{bottom:975.570000px;}
.y20{bottom:997.350000px;}
.y1{bottom:1036.980000px;}
.y19{bottom:1037.160000px;}
.h8{height:34.684453px;}
.h3{height:40.066523px;}
.h12{height:42.164648px;}
.h4{height:44.850586px;}
.h1a{height:46.736719px;}
.he{height:48.224531px;}
.ha{height:49.634648px;}
.h10{height:52.417969px;}
.h18{height:54.000000px;}
.h9{height:54.596250px;}
.hc{height:55.016719px;}
.h5{height:57.051211px;}
.h7{height:57.796523px;}
.h11{height:59.400000px;}
.hb{height:64.800000px;}
.h16{height:64.836000px;}
.h2{height:65.884219px;}
.h15{height:75.600000px;}
.h17{height:75.636000px;}
.hf{height:77.580000px;}
.hd{height:77.760000px;}
.h19{height:86.400000px;}
.h6{height:91.441406px;}
.h14{height:97.236000px;}
.h13{height:108.000000px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w4{width:39.600000px;}
.w6{width:39.996000px;}
.wd{width:124.200000px;}
.wb{width:124.236000px;}
.w9{width:124.776000px;}
.w7{width:142.200000px;}
.wc{width:142.236000px;}
.w8{width:146.376000px;}
.wa{width:167.250000px;}
.w5{width:676.230000px;}
.w3{width:682.530000px;}
.w2{width:702.105000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x18{left:2.700000px;}
.x1a{left:5.760000px;}
.x19{left:7.380000px;}
.x6{left:8.640000px;}
.x3{left:28.800000px;}
.x5{left:45.360000px;}
.x8{left:53.999987px;}
.xb{left:83.160000px;}
.x1{left:91.835987px;}
.x2{left:93.096000px;}
.xa{left:99.575987px;}
.x9{left:108.035987px;}
.x1b{left:118.835987px;}
.xe{left:145.835987px;}
.x14{left:196.230000px;}
.x10{left:234.030000px;}
.x4{left:252.029987px;}
.x15{left:342.615000px;}
.x11{left:380.415000px;}
.x16{left:467.385000px;}
.x12{left:505.185000px;}
.x17{left:634.650000px;}
.x13{left:672.450000px;}
.xf{left:684.329987px;}
.x7{left:727.890000px;}
.xc{left:759.390000px;}
.xd{left:796.679987px;}
@media print{
.v2{vertical-align:-21.226667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.045333pt;}
.lsa{letter-spacing:-1.008000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.419733pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.212267pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:2.560000pt;}
.lse{letter-spacing:3.200000pt;}
.ls12{letter-spacing:14.080000pt;}
.lsb{letter-spacing:22.528000pt;}
.ls8{letter-spacing:23.168000pt;}
.ls7{letter-spacing:27.151360pt;}
.ls14{letter-spacing:35.471360pt;}
.lsf{letter-spacing:58.511360pt;}
.ws3{word-spacing:-18.507733pt;}
.wse{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws7{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.712000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._18{margin-left:-8.688640pt;}
._1a{margin-left:-5.888640pt;}
._15{margin-left:-2.009387pt;}
._0{margin-left:-1.118933pt;}
._2{width:0.926933pt;}
._1{width:1.886720pt;}
._c{width:3.103360pt;}
._b{width:4.003840pt;}
._a{width:5.140480pt;}
._9{width:6.046933pt;}
._5{width:7.772160pt;}
._4{width:9.420800pt;}
._d{width:10.775040pt;}
._13{width:11.717120pt;}
._3{width:13.416000pt;}
._12{width:16.133120pt;}
._14{width:17.781760pt;}
._19{width:18.725547pt;}
._10{width:19.960320pt;}
._f{width:21.079253pt;}
._7{width:22.609920pt;}
._6{width:23.552213pt;}
._8{width:24.926293pt;}
._1c{width:25.867307pt;}
._1d{width:26.793813pt;}
._1b{width:27.850453pt;}
._11{width:31.265493pt;}
._e{width:32.501760pt;}
._16{width:42.216960pt;}
._17{width:753.546667pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:4.960000pt;}
.y90{bottom:5.760000pt;}
.y79{bottom:6.240000pt;}
.y89{bottom:7.840000pt;}
.y97{bottom:8.666667pt;}
.y1d{bottom:10.560000pt;}
.y9d{bottom:11.520000pt;}
.y93{bottom:13.440000pt;}
.y9b{bottom:19.200000pt;}
.y82{bottom:20.320000pt;}
.y8e{bottom:21.120000pt;}
.y77{bottom:21.600000pt;}
.y87{bottom:23.040000pt;}
.y95{bottom:24.026667pt;}
.y13{bottom:24.800000pt;}
.ya0{bottom:25.920000pt;}
.y9c{bottom:26.880000pt;}
.y7f{bottom:28.000000pt;}
.y92{bottom:28.800000pt;}
.y47{bottom:29.280000pt;}
.y1e{bottom:30.560000pt;}
.y8b{bottom:30.720000pt;}
.y46{bottom:33.440000pt;}
.y1c{bottom:33.600000pt;}
.y7c{bottom:35.680000pt;}
.y8d{bottom:36.480000pt;}
.y78{bottom:36.800000pt;}
.y85{bottom:38.400000pt;}
.y96{bottom:39.386667pt;}
.y9f{bottom:41.280000pt;}
.y7e{bottom:43.200000pt;}
.y91{bottom:44.160000pt;}
.y8a{bottom:46.080000pt;}
.y48{bottom:50.240000pt;}
.y7b{bottom:50.880000pt;}
.y1f{bottom:51.040000pt;}
.y8f{bottom:51.840000pt;}
.y86{bottom:53.760000pt;}
.y45{bottom:56.480000pt;}
.y1b{bottom:56.640000pt;}
.y7d{bottom:58.560000pt;}
.y7{bottom:64.480000pt;}
.y81{bottom:66.240000pt;}
.y44{bottom:68.640000pt;}
.y88{bottom:69.160000pt;}
.y1a{bottom:69.600000pt;}
.y80{bottom:81.600000pt;}
.y6{bottom:93.120000pt;}
.y5{bottom:121.920000pt;}
.y4{bottom:142.400000pt;}
.yd2{bottom:155.040000pt;}
.y70{bottom:158.560000pt;}
.yb5{bottom:159.360000pt;}
.y43{bottom:159.680000pt;}
.y64{bottom:160.480000pt;}
.yf2{bottom:163.040000pt;}
.y94{bottom:165.920000pt;}
.yd1{bottom:174.426667pt;}
.y6f{bottom:177.946667pt;}
.yb4{bottom:178.746667pt;}
.y42{bottom:179.066667pt;}
.y63{bottom:179.866667pt;}
.y3{bottom:180.026667pt;}
.yf1{bottom:182.426667pt;}
.yd0{bottom:193.786667pt;}
.y6e{bottom:197.306667pt;}
.yb3{bottom:198.106667pt;}
.y41{bottom:198.426667pt;}
.y2{bottom:198.586667pt;}
.y62{bottom:199.386667pt;}
.ye6{bottom:201.786667pt;}
.yf7{bottom:209.786667pt;}
.ycf{bottom:213.146667pt;}
.y6d{bottom:216.826667pt;}
.y40{bottom:217.786667pt;}
.y61{bottom:218.746667pt;}
.ye5{bottom:221.146667pt;}
.y8c{bottom:224.186667pt;}
.yb2{bottom:225.626667pt;}
.yf0{bottom:229.146667pt;}
.yce{bottom:232.666667pt;}
.y18{bottom:233.466667pt;}
.y6c{bottom:236.186667pt;}
.y3f{bottom:237.146667pt;}
.y60{bottom:238.106667pt;}
.ye4{bottom:240.666667pt;}
.yb1{bottom:244.986667pt;}
.yf6{bottom:248.666667pt;}
.ycd{bottom:252.026667pt;}
.y17{bottom:252.986667pt;}
.y6b{bottom:255.546667pt;}
.y3e{bottom:256.666667pt;}
.y5f{bottom:257.466667pt;}
.ye3{bottom:260.026667pt;}
.yb0{bottom:264.346667pt;}
.yf5{bottom:268.026667pt;}
.ycc{bottom:271.386667pt;}
.y16{bottom:272.346667pt;}
.y3d{bottom:276.026667pt;}
.y5e{bottom:276.986667pt;}
.yed{bottom:279.386667pt;}
.y6a{bottom:282.906667pt;}
.yaf{bottom:283.706667pt;}
.y109{bottom:286.266667pt;}
.ye2{bottom:287.386667pt;}
.y15{bottom:291.706667pt;}
.y84{bottom:292.026667pt;}
.y3c{bottom:295.386667pt;}
.ycb{bottom:298.746667pt;}
.y69{bottom:302.426667pt;}
.yae{bottom:303.226667pt;}
.y5d{bottom:304.506667pt;}
.y108{bottom:305.626667pt;}
.ye1{bottom:306.746667pt;}
.y14{bottom:311.066667pt;}
.y3b{bottom:314.746667pt;}
.yca{bottom:318.266667pt;}
.y68{bottom:321.786667pt;}
.yad{bottom:322.586667pt;}
.yef{bottom:322.746667pt;}
.y107{bottom:324.986667pt;}
.ye0{bottom:326.266667pt;}
.y5c{bottom:332.986667pt;}
.y10a{bottom:334.266667pt;}
.y67{bottom:341.146667pt;}
.yac{bottom:341.946667pt;}
.y3a{bottom:342.266667pt;}
.yc9{bottom:345.626667pt;}
.y5b{bottom:352.386667pt;}
.yf4{bottom:353.666667pt;}
.y12{bottom:356.866667pt;}
.y66{bottom:360.546667pt;}
.yab{bottom:361.346667pt;}
.y39{bottom:361.666667pt;}
.yc8{bottom:365.026667pt;}
.y5a{bottom:371.746667pt;}
.yf3{bottom:373.026667pt;}
.y7a{bottom:379.106667pt;}
.yaa{bottom:380.706667pt;}
.y38{bottom:381.026667pt;}
.yc7{bottom:384.386667pt;}
.y65{bottom:384.866667pt;}
.y59{bottom:391.106667pt;}
.ydf{bottom:392.386667pt;}
.y106{bottom:399.266667pt;}
.y37{bottom:400.386667pt;}
.yc6{bottom:403.746667pt;}
.ya9{bottom:408.226667pt;}
.y58{bottom:410.626667pt;}
.yde{bottom:411.746667pt;}
.y105{bottom:418.626667pt;}
.y36{bottom:419.746667pt;}
.ya8{bottom:427.586667pt;}
.y57{bottom:429.986667pt;}
.yc5{bottom:431.266667pt;}
.y104{bottom:437.986667pt;}
.y35{bottom:439.266667pt;}
.y10f{bottom:442.626667pt;}
.ydd{bottom:450.626667pt;}
.y11{bottom:451.586667pt;}
.ya7{bottom:454.946667pt;}
.y56{bottom:457.346667pt;}
.y34{bottom:458.626667pt;}
.y10e{bottom:461.986667pt;}
.y103{bottom:465.346667pt;}
.ydc{bottom:469.986667pt;}
.ya6{bottom:474.306667pt;}
.y76{bottom:475.906667pt;}
.yc4{bottom:477.986667pt;}
.y10d{bottom:481.346667pt;}
.y55{bottom:484.706667pt;}
.y33{bottom:485.986667pt;}
.ydb{bottom:489.346667pt;}
.y10{bottom:491.106667pt;}
.y102{bottom:492.706667pt;}
.ya5{bottom:493.826667pt;}
.yc3{bottom:497.346667pt;}
.y54{bottom:504.066667pt;}
.y32{bottom:505.346667pt;}
.yda{bottom:508.706667pt;}
.y101{bottom:512.226667pt;}
.yf{bottom:513.186667pt;}
.yee{bottom:516.706667pt;}
.y53{bottom:523.586667pt;}
.y31{bottom:524.706667pt;}
.y10c{bottom:528.226667pt;}
.y100{bottom:531.586667pt;}
.yd9{bottom:536.253333pt;}
.ye{bottom:537.853333pt;}
.ya4{bottom:540.573333pt;}
.y52{bottom:542.973333pt;}
.y30{bottom:544.253333pt;}
.yd8{bottom:555.613333pt;}
.yff{bottom:558.973333pt;}
.y51{bottom:562.333333pt;}
.y2f{bottom:563.613333pt;}
.yd{bottom:565.853333pt;}
.ya3{bottom:568.093333pt;}
.y10b{bottom:574.973333pt;}
.yfe{bottom:578.333333pt;}
.y2e{bottom:582.973333pt;}
.y50{bottom:589.693333pt;}
.y75{bottom:589.853333pt;}
.ya2{bottom:596.573333pt;}
.yfd{bottom:597.853333pt;}
.yc2{bottom:602.333333pt;}
.y4f{bottom:609.213333pt;}
.y2d{bottom:610.333333pt;}
.ya1{bottom:615.933333pt;}
.yfc{bottom:617.213333pt;}
.y74{bottom:618.333333pt;}
.yc1{bottom:621.853333pt;}
.yc{bottom:622.173333pt;}
.y4e{bottom:628.573333pt;}
.yec{bottom:629.853333pt;}
.yfb{bottom:636.573333pt;}
.y73{bottom:637.853333pt;}
.y9e{bottom:638.493333pt;}
.yc0{bottom:641.213333pt;}
.y2c{bottom:645.853333pt;}
.y4d{bottom:647.933333pt;}
.yeb{bottom:649.213333pt;}
.yb{bottom:654.653333pt;}
.y72{bottom:657.213333pt;}
.ybf{bottom:660.573333pt;}
.yfa{bottom:663.933333pt;}
.y2b{bottom:665.213333pt;}
.y4c{bottom:667.293333pt;}
.yd7{bottom:668.573333pt;}
.y71{bottom:676.573333pt;}
.ybe{bottom:679.933333pt;}
.y2a{bottom:684.573333pt;}
.y4b{bottom:686.653333pt;}
.ya{bottom:686.973333pt;}
.yea{bottom:687.933333pt;}
.yf9{bottom:691.293333pt;}
.yd6{bottom:695.933333pt;}
.ybd{bottom:699.293333pt;}
.y29{bottom:703.933333pt;}
.ye9{bottom:707.293333pt;}
.y4a{bottom:714.173333pt;}
.yd5{bottom:715.293333pt;}
.y9a{bottom:715.973333pt;}
.yf8{bottom:718.853333pt;}
.y9{bottom:719.333333pt;}
.y28{bottom:723.333333pt;}
.ybc{bottom:726.853333pt;}
.yd4{bottom:734.853333pt;}
.y27{bottom:742.853333pt;}
.ybb{bottom:746.213333pt;}
.ye8{bottom:754.213333pt;}
.y26{bottom:762.213333pt;}
.y99{bottom:764.613333pt;}
.yba{bottom:773.573333pt;}
.y25{bottom:781.573333pt;}
.yb9{bottom:792.933333pt;}
.y49{bottom:800.933333pt;}
.y8{bottom:805.573333pt;}
.y24{bottom:808.933333pt;}
.yb8{bottom:812.453333pt;}
.yd3{bottom:820.453333pt;}
.y23{bottom:828.453333pt;}
.yb7{bottom:831.813333pt;}
.y98{bottom:832.453333pt;}
.ye7{bottom:839.813333pt;}
.y22{bottom:847.813333pt;}
.yb6{bottom:859.173333pt;}
.y21{bottom:867.173333pt;}
.y20{bottom:886.533333pt;}
.y1{bottom:921.760000pt;}
.y19{bottom:921.920000pt;}
.h8{height:30.830625pt;}
.h3{height:35.614687pt;}
.h12{height:37.479688pt;}
.h4{height:39.867188pt;}
.h1a{height:41.543750pt;}
.he{height:42.866250pt;}
.ha{height:44.119688pt;}
.h10{height:46.593750pt;}
.h18{height:48.000000pt;}
.h9{height:48.530000pt;}
.hc{height:48.903750pt;}
.h5{height:50.712187pt;}
.h7{height:51.374688pt;}
.h11{height:52.800000pt;}
.hb{height:57.600000pt;}
.h16{height:57.632000pt;}
.h2{height:58.563750pt;}
.h15{height:67.200000pt;}
.h17{height:67.232000pt;}
.hf{height:68.960000pt;}
.hd{height:69.120000pt;}
.h19{height:76.800000pt;}
.h6{height:81.281250pt;}
.h14{height:86.432000pt;}
.h13{height:96.000000pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w4{width:35.200000pt;}
.w6{width:35.552000pt;}
.wd{width:110.400000pt;}
.wb{width:110.432000pt;}
.w9{width:110.912000pt;}
.w7{width:126.400000pt;}
.wc{width:126.432000pt;}
.w8{width:130.112000pt;}
.wa{width:148.666667pt;}
.w5{width:601.093333pt;}
.w3{width:606.693333pt;}
.w2{width:624.093333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x18{left:2.400000pt;}
.x1a{left:5.120000pt;}
.x19{left:6.560000pt;}
.x6{left:7.680000pt;}
.x3{left:25.600000pt;}
.x5{left:40.320000pt;}
.x8{left:47.999989pt;}
.xb{left:73.920000pt;}
.x1{left:81.631989pt;}
.x2{left:82.752000pt;}
.xa{left:88.511989pt;}
.x9{left:96.031989pt;}
.x1b{left:105.631989pt;}
.xe{left:129.631989pt;}
.x14{left:174.426667pt;}
.x10{left:208.026667pt;}
.x4{left:224.026655pt;}
.x15{left:304.546667pt;}
.x11{left:338.146667pt;}
.x16{left:415.453333pt;}
.x12{left:449.053333pt;}
.x17{left:564.133333pt;}
.x13{left:597.733333pt;}
.xf{left:608.293322pt;}
.x7{left:647.013333pt;}
.xc{left:675.013333pt;}
.xd{left:708.159989pt;}
}




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