
    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_7fe18e4b55f65640e5b1d354.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_c5806c1143addc0a9a76b96c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_eafd316116566921506753c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c10aaa382532976007370694.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_85f122a82783b40a3ac948d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_7278802bbf1c8e9caa8dbed9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7e764d1ce6b31c743b03295a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_f7691518c0e7ac2d962aa3c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_3cdfb59bf408113d05b394e2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d8820ae75b47c27720334ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:29.520000px;}
.ls39{letter-spacing:-0.852000px;}
.ls29{letter-spacing:-0.834000px;}
.ls33{letter-spacing:-0.744000px;}
.ls9{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.666000px;}
.ls2a{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.630000px;}
.ls2f{letter-spacing:-0.587400px;}
.ls2b{letter-spacing:-0.472200px;}
.ls11{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.310800px;}
.ls3{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.207600px;}
.ls6{letter-spacing:-0.193200px;}
.lsb{letter-spacing:-0.164400px;}
.ls2{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.132600px;}
.ls31{letter-spacing:-0.121200px;}
.ls1d{letter-spacing:-0.115200px;}
.ls14{letter-spacing:-0.078000px;}
.ls2d{letter-spacing:-0.048960px;}
.ls40{letter-spacing:-0.043920px;}
.ls34{letter-spacing:-0.025920px;}
.ls1a{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.017280px;}
.ls35{letter-spacing:0.060600px;}
.lse{letter-spacing:0.083520px;}
.ls25{letter-spacing:0.086400px;}
.ls7{letter-spacing:0.089280px;}
.ls10{letter-spacing:0.089400px;}
.ls1e{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.132480px;}
.ls26{letter-spacing:0.132600px;}
.ls3d{letter-spacing:0.140400px;}
.ls23{letter-spacing:0.149760px;}
.ls3e{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.181440px;}
.ls3f{letter-spacing:0.186600px;}
.ls3b{letter-spacing:0.243360px;}
.ls17{letter-spacing:0.247800px;}
.ls36{letter-spacing:0.252480px;}
.ls5{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.869760px;}
.ls19{letter-spacing:1.589760px;}
.ls27{letter-spacing:2.057760px;}
.lsd{letter-spacing:6.065280px;}
.ls20{letter-spacing:7.349760px;}
.ls38{letter-spacing:8.069760px;}
.ls21{letter-spacing:10.229760px;}
.ls37{letter-spacing:17.429760px;}
.ls28{letter-spacing:18.869760px;}
.ls8{letter-spacing:26.069760px;}
.ls22{letter-spacing:30.389760px;}
.ls16{letter-spacing:31.109760px;}
.ls18{letter-spacing:33.269760px;}
.ls1b{letter-spacing:34.709760px;}
.lsa{letter-spacing:38.465280px;}
.ls1c{letter-spacing:39.029760px;}
.ls13{letter-spacing:63.665280px;}
.ls3a{letter-spacing:162.869760px;}
.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:-16.632000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.984000px;}
.ws7{word-spacing:-15.226440px;}
.ws12{word-spacing:-15.102840px;}
.wsa{word-spacing:-15.059640px;}
.ws11{word-spacing:-15.056640px;}
.ws1a{word-spacing:-15.030840px;}
.ws15{word-spacing:-14.987520px;}
.ws0{word-spacing:-14.970240px;}
.wse{word-spacing:-14.952960px;}
.ws19{word-spacing:-14.944320px;}
.ws14{word-spacing:-14.921280px;}
.wsd{word-spacing:-14.892240px;}
.wsf{word-spacing:-14.855040px;}
.ws16{word-spacing:-14.849040px;}
.ws9{word-spacing:-14.837640px;}
.ws8{word-spacing:-14.805840px;}
.wsc{word-spacing:-14.762640px;}
.ws13{word-spacing:-14.754240px;}
.ws10{word-spacing:-14.659440px;}
.wsb{word-spacing:-14.506440px;}
.ws17{word-spacing:-14.304240px;}
.ws18{word-spacing:-14.226240px;}
.ws1d{word-spacing:-13.811760px;}
.ws1e{word-spacing:-13.692360px;}
.ws1b{word-spacing:-13.646160px;}
.ws1c{word-spacing:-13.505760px;}
.ws1f{word-spacing:-13.461840px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.406720px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-4.813200px;}
._e{margin-left:-3.775680px;}
._b{margin-left:-2.327760px;}
._2{margin-left:-1.082160px;}
._5{width:1.347360px;}
._c{width:2.670480px;}
._10{width:4.394160px;}
._11{width:5.596320px;}
._17{width:7.021440px;}
._18{width:8.083200px;}
._19{width:9.430560px;}
._28{width:10.445280px;}
._8{width:11.448000px;}
._9{width:12.456000px;}
._13{width:13.741680px;}
._4a{width:14.881200px;}
._d{width:16.150320px;}
._a{width:17.686080px;}
._12{width:19.255920px;}
._14{width:20.887920px;}
._15{width:22.046160px;}
._1d{width:23.912640px;}
._1c{width:25.231440px;}
._16{width:26.363520px;}
._7{width:27.696000px;}
._6{width:29.160000px;}
._20{width:30.271680px;}
._2b{width:31.310640px;}
._2a{width:32.410800px;}
._23{width:33.465360px;}
._24{width:34.643760px;}
._37{width:35.769600px;}
._25{width:37.250160px;}
._1a{width:39.057840px;}
._1b{width:40.394880px;}
._1f{width:42.071760px;}
._1{width:47.134080px;}
._0{width:48.216240px;}
._1e{width:49.828320px;}
._3f{width:50.853600px;}
._3e{width:51.982560px;}
._47{width:54.581760px;}
._45{width:56.340720px;}
._21{width:58.468800px;}
._22{width:59.693760px;}
._26{width:61.348080px;}
._27{width:63.022320px;}
._2e{width:64.842480px;}
._41{width:68.889600px;}
._2f{width:72.789000px;}
._29{width:74.144880px;}
._46{width:86.515680px;}
._36{width:87.569280px;}
._34{width:88.761600px;}
._35{width:89.986080px;}
._3b{width:95.783040px;}
._3c{width:97.382160px;}
._38{width:104.565600px;}
._39{width:105.639120px;}
._40{width:112.232880px;}
._3{width:116.031600px;}
._4{width:117.354240px;}
._2c{width:125.311680px;}
._2d{width:126.454080px;}
._42{width:147.251520px;}
._30{width:153.345600px;}
._31{width:154.583520px;}
._3d{width:160.814880px;}
._48{width:161.910720px;}
._49{width:163.747440px;}
._32{width:164.871360px;}
._33{width:166.108320px;}
._43{width:179.642880px;}
._44{width:180.910800px;}
._3a{width:228.991680px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(146,208,80);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y11{bottom:5.580000px;}
.y1d{bottom:7.560000px;}
.yc{bottom:8.280000px;}
.y25{bottom:14.934000px;}
.y9{bottom:28.620000px;}
.y1c{bottom:31.320000px;}
.yb{bottom:33.480000px;}
.y24{bottom:36.894000px;}
.yf{bottom:55.980000px;}
.y1b{bottom:56.700000px;}
.y28{bottom:57.600000px;}
.y23{bottom:59.574000px;}
.y3{bottom:66.996000px;}
.y8{bottom:70.740000px;}
.y27{bottom:77.580000px;}
.y2{bottom:81.576000px;}
.y22{bottom:85.314000px;}
.ye{bottom:96.120000px;}
.y21{bottom:110.154000px;}
.y7{bottom:112.860000px;}
.y46{bottom:126.000000px;}
.y26{bottom:129.276000px;}
.y5f{bottom:133.560000px;}
.y64{bottom:135.720000px;}
.y12{bottom:144.936000px;}
.y20{bottom:150.339000px;}
.y7d{bottom:152.850000px;}
.y45{bottom:166.350000px;}
.y7c{bottom:173.730000px;}
.y5e{bottom:173.910000px;}
.y63{bottom:176.070000px;}
.y1f{bottom:190.479000px;}
.y7b{bottom:194.790000px;}
.y44{bottom:206.670000px;}
.y5d{bottom:214.230000px;}
.y62{bottom:216.390000px;}
.y1e{bottom:230.799000px;}
.y7a{bottom:231.150000px;}
.y43{bottom:246.990000px;}
.y79{bottom:252.030000px;}
.y5c{bottom:254.550000px;}
.y61{bottom:256.530000px;}
.y78{bottom:273.090000px;}
.y42{bottom:287.130000px;}
.y77{bottom:294.150000px;}
.y5b{bottom:294.690000px;}
.y60{bottom:296.850000px;}
.y76{bottom:315.030000px;}
.y41{bottom:327.450000px;}
.y5a{bottom:335.010000px;}
.y75{bottom:336.090000px;}
.y18{bottom:352.299000px;}
.y74{bottom:357.150000px;}
.y40{bottom:367.770000px;}
.y59{bottom:375.330000px;}
.y73{bottom:378.210000px;}
.y1a{bottom:393.015000px;}
.y17{bottom:393.699000px;}
.y72{bottom:399.315000px;}
.y3f{bottom:408.135000px;}
.y58{bottom:415.695000px;}
.y71{bottom:435.675000px;}
.y16{bottom:438.189000px;}
.y3e{bottom:446.295000px;}
.y57{bottom:456.015000px;}
.y70{bottom:456.555000px;}
.y19{bottom:466.815000px;}
.y6f{bottom:477.615000px;}
.y15{bottom:482.649000px;}
.y3d{bottom:486.615000px;}
.y56{bottom:496.155000px;}
.y6e{bottom:513.795000px;}
.y3c{bottom:526.755000px;}
.y14{bottom:527.109000px;}
.y6d{bottom:534.675000px;}
.y55{bottom:536.475000px;}
.y6c{bottom:555.735000px;}
.y3b{bottom:567.075000px;}
.y13{bottom:571.749000px;}
.y54{bottom:576.795000px;}
.y6b{bottom:597.855000px;}
.y3a{bottom:607.395000px;}
.y53{bottom:617.115000px;}
.y6a{bottom:634.035000px;}
.y39{bottom:647.745000px;}
.y69{bottom:654.945000px;}
.y52{bottom:657.465000px;}
.y68{bottom:676.005000px;}
.y38{bottom:688.065000px;}
.y67{bottom:697.065000px;}
.y51{bottom:697.605000px;}
.y66{bottom:718.125000px;}
.y37{bottom:728.205000px;}
.yd{bottom:736.845000px;}
.y50{bottom:737.925000px;}
.y65{bottom:739.185000px;}
.y10{bottom:762.405000px;}
.y36{bottom:768.525000px;}
.y4f{bottom:778.245000px;}
.y35{bottom:808.845000px;}
.y4e{bottom:818.565000px;}
.y34{bottom:849.165000px;}
.ya{bottom:850.290000px;}
.y4d{bottom:858.885000px;}
.y88{bottom:879.225000px;}
.y33{bottom:881.025000px;}
.y4c{bottom:899.070000px;}
.y6{bottom:900.870000px;}
.y32{bottom:908.610000px;}
.y31{bottom:913.110000px;}
.y87{bottom:916.710000px;}
.y30{bottom:936.330000px;}
.y86{bottom:937.590000px;}
.y4b{bottom:939.390000px;}
.y2f{bottom:940.830000px;}
.y85{bottom:958.650000px;}
.y2e{bottom:963.870000px;}
.y4a{bottom:979.710000px;}
.y2d{bottom:999.870000px;}
.y84{bottom:1000.770000px;}
.y49{bottom:1020.030000px;}
.y83{bottom:1021.830000px;}
.y2c{bottom:1040.190000px;}
.y82{bottom:1042.890000px;}
.y48{bottom:1060.350000px;}
.y81{bottom:1063.950000px;}
.y5{bottom:1064.670000px;}
.y2b{bottom:1080.330000px;}
.y80{bottom:1100.130000px;}
.y47{bottom:1100.490000px;}
.y4{bottom:1102.830000px;}
.y2a{bottom:1120.650000px;}
.y7f{bottom:1121.010000px;}
.y1{bottom:1123.020000px;}
.y29{bottom:1140.840000px;}
.y7e{bottom:1142.100000px;}
.hc{height:2.317500px;}
.h9{height:25.560000px;}
.h13{height:32.312812px;}
.h3{height:38.818125px;}
.h12{height:50.312812px;}
.h6{height:50.580000px;}
.h2{height:53.302500px;}
.h7{height:57.937500px;}
.h17{height:59.439023px;}
.hb{height:64.249453px;}
.h10{height:65.884219px;}
.ha{height:67.786875px;}
.h11{height:67.824844px;}
.h16{height:68.084282px;}
.h14{height:68.956875px;}
.h15{height:69.086250px;}
.he{height:73.800000px;}
.h5{height:96.755625px;}
.hf{height:105.300000px;}
.h8{height:113.436000px;}
.h4{height:141.300000px;}
.hd{height:591.915000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:206.175000px;}
.w5{width:709.710000px;}
.w6{width:709.890000px;}
.w3{width:726.090000px;}
.w7{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.096000px;}
.x5{left:8.100000px;}
.xb{left:75.239973px;}
.x4{left:84.600000px;}
.x6{left:92.700000px;}
.x9{left:100.655987px;}
.x2{left:127.655987px;}
.xa{left:154.649987px;}
.xe{left:170.309987px;}
.xd{left:181.649987px;}
.xc{left:438.194987px;}
.x8{left:442.334987px;}
.x3{left:446.654987px;}
.x1{left:725.189987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:26.240000pt;}
.ls39{letter-spacing:-0.757333pt;}
.ls29{letter-spacing:-0.741333pt;}
.ls33{letter-spacing:-0.661333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.592000pt;}
.ls2a{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.560000pt;}
.ls2f{letter-spacing:-0.522133pt;}
.ls2b{letter-spacing:-0.419733pt;}
.ls11{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.276267pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.184533pt;}
.ls6{letter-spacing:-0.171733pt;}
.lsb{letter-spacing:-0.146133pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.117867pt;}
.ls31{letter-spacing:-0.107733pt;}
.ls1d{letter-spacing:-0.102400pt;}
.ls14{letter-spacing:-0.069333pt;}
.ls2d{letter-spacing:-0.043520pt;}
.ls40{letter-spacing:-0.039040pt;}
.ls34{letter-spacing:-0.023040pt;}
.ls1a{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.015360pt;}
.ls35{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.074240pt;}
.ls25{letter-spacing:0.076800pt;}
.ls7{letter-spacing:0.079360pt;}
.ls10{letter-spacing:0.079467pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.117760pt;}
.ls26{letter-spacing:0.117867pt;}
.ls3d{letter-spacing:0.124800pt;}
.ls23{letter-spacing:0.133120pt;}
.ls3e{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.161280pt;}
.ls3f{letter-spacing:0.165867pt;}
.ls3b{letter-spacing:0.216320pt;}
.ls17{letter-spacing:0.220267pt;}
.ls36{letter-spacing:0.224427pt;}
.ls5{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.773120pt;}
.ls19{letter-spacing:1.413120pt;}
.ls27{letter-spacing:1.829120pt;}
.lsd{letter-spacing:5.391360pt;}
.ls20{letter-spacing:6.533120pt;}
.ls38{letter-spacing:7.173120pt;}
.ls21{letter-spacing:9.093120pt;}
.ls37{letter-spacing:15.493120pt;}
.ls28{letter-spacing:16.773120pt;}
.ls8{letter-spacing:23.173120pt;}
.ls22{letter-spacing:27.013120pt;}
.ls16{letter-spacing:27.653120pt;}
.ls18{letter-spacing:29.573120pt;}
.ls1b{letter-spacing:30.853120pt;}
.lsa{letter-spacing:34.191360pt;}
.ls1c{letter-spacing:34.693120pt;}
.ls13{letter-spacing:56.591360pt;}
.ls3a{letter-spacing:144.773120pt;}
.ws3{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.208000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.424747pt;}
.wsa{word-spacing:-13.386347pt;}
.ws11{word-spacing:-13.383680pt;}
.ws1a{word-spacing:-13.360747pt;}
.ws15{word-spacing:-13.322240pt;}
.ws0{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.291520pt;}
.ws19{word-spacing:-13.283840pt;}
.ws14{word-spacing:-13.263360pt;}
.wsd{word-spacing:-13.237547pt;}
.wsf{word-spacing:-13.204480pt;}
.ws16{word-spacing:-13.199147pt;}
.ws9{word-spacing:-13.189013pt;}
.ws8{word-spacing:-13.160747pt;}
.wsc{word-spacing:-13.122347pt;}
.ws13{word-spacing:-13.114880pt;}
.ws10{word-spacing:-13.030613pt;}
.wsb{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.714880pt;}
.ws18{word-spacing:-12.645547pt;}
.ws1d{word-spacing:-12.277120pt;}
.ws1e{word-spacing:-12.170987pt;}
.ws1b{word-spacing:-12.129920pt;}
.ws1c{word-spacing:-12.005120pt;}
.ws1f{word-spacing:-11.966080pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.472640pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-4.278400pt;}
._e{margin-left:-3.356160pt;}
._b{margin-left:-2.069120pt;}
._2{margin-left:-0.961920pt;}
._5{width:1.197653pt;}
._c{width:2.373760pt;}
._10{width:3.905920pt;}
._11{width:4.974507pt;}
._17{width:6.241280pt;}
._18{width:7.185067pt;}
._19{width:8.382720pt;}
._28{width:9.284693pt;}
._8{width:10.176000pt;}
._9{width:11.072000pt;}
._13{width:12.214827pt;}
._4a{width:13.227733pt;}
._d{width:14.355840pt;}
._a{width:15.720960pt;}
._12{width:17.116373pt;}
._14{width:18.567040pt;}
._15{width:19.596587pt;}
._1d{width:21.255680pt;}
._1c{width:22.427947pt;}
._16{width:23.434240pt;}
._7{width:24.618667pt;}
._6{width:25.920000pt;}
._20{width:26.908160pt;}
._2b{width:27.831680pt;}
._2a{width:28.809600pt;}
._23{width:29.746987pt;}
._24{width:30.794453pt;}
._37{width:31.795200pt;}
._25{width:33.111253pt;}
._1a{width:34.718080pt;}
._1b{width:35.906560pt;}
._1f{width:37.397120pt;}
._1{width:41.896960pt;}
._0{width:42.858880pt;}
._1e{width:44.291840pt;}
._3f{width:45.203200pt;}
._3e{width:46.206720pt;}
._47{width:48.517120pt;}
._45{width:50.080640pt;}
._21{width:51.972267pt;}
._22{width:53.061120pt;}
._26{width:54.531627pt;}
._27{width:56.019840pt;}
._2e{width:57.637760pt;}
._41{width:61.235200pt;}
._2f{width:64.701333pt;}
._29{width:65.906560pt;}
._46{width:76.902827pt;}
._36{width:77.839360pt;}
._34{width:78.899200pt;}
._35{width:79.987627pt;}
._3b{width:85.140480pt;}
._3c{width:86.561920pt;}
._38{width:92.947200pt;}
._39{width:93.901440pt;}
._40{width:99.762560pt;}
._3{width:103.139200pt;}
._4{width:104.314880pt;}
._2c{width:111.388160pt;}
._2d{width:112.403627pt;}
._42{width:130.890240pt;}
._30{width:136.307200pt;}
._31{width:137.407573pt;}
._3d{width:142.946560pt;}
._48{width:143.920640pt;}
._49{width:145.553280pt;}
._32{width:146.552320pt;}
._33{width:147.651840pt;}
._43{width:159.682560pt;}
._44{width:160.809600pt;}
._3a{width:203.548160pt;}
.fs5{font-size:2.560000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:4.960000pt;}
.y1d{bottom:6.720000pt;}
.yc{bottom:7.360000pt;}
.y25{bottom:13.274667pt;}
.y9{bottom:25.440000pt;}
.y1c{bottom:27.840000pt;}
.yb{bottom:29.760000pt;}
.y24{bottom:32.794667pt;}
.yf{bottom:49.760000pt;}
.y1b{bottom:50.400000pt;}
.y28{bottom:51.200000pt;}
.y23{bottom:52.954667pt;}
.y3{bottom:59.552000pt;}
.y8{bottom:62.880000pt;}
.y27{bottom:68.960000pt;}
.y2{bottom:72.512000pt;}
.y22{bottom:75.834667pt;}
.ye{bottom:85.440000pt;}
.y21{bottom:97.914667pt;}
.y7{bottom:100.320000pt;}
.y46{bottom:112.000000pt;}
.y26{bottom:114.912000pt;}
.y5f{bottom:118.720000pt;}
.y64{bottom:120.640000pt;}
.y12{bottom:128.832000pt;}
.y20{bottom:133.634667pt;}
.y7d{bottom:135.866667pt;}
.y45{bottom:147.866667pt;}
.y7c{bottom:154.426667pt;}
.y5e{bottom:154.586667pt;}
.y63{bottom:156.506667pt;}
.y1f{bottom:169.314667pt;}
.y7b{bottom:173.146667pt;}
.y44{bottom:183.706667pt;}
.y5d{bottom:190.426667pt;}
.y62{bottom:192.346667pt;}
.y1e{bottom:205.154667pt;}
.y7a{bottom:205.466667pt;}
.y43{bottom:219.546667pt;}
.y79{bottom:224.026667pt;}
.y5c{bottom:226.266667pt;}
.y61{bottom:228.026667pt;}
.y78{bottom:242.746667pt;}
.y42{bottom:255.226667pt;}
.y77{bottom:261.466667pt;}
.y5b{bottom:261.946667pt;}
.y60{bottom:263.866667pt;}
.y76{bottom:280.026667pt;}
.y41{bottom:291.066667pt;}
.y5a{bottom:297.786667pt;}
.y75{bottom:298.746667pt;}
.y18{bottom:313.154667pt;}
.y74{bottom:317.466667pt;}
.y40{bottom:326.906667pt;}
.y59{bottom:333.626667pt;}
.y73{bottom:336.186667pt;}
.y1a{bottom:349.346667pt;}
.y17{bottom:349.954667pt;}
.y72{bottom:354.946667pt;}
.y3f{bottom:362.786667pt;}
.y58{bottom:369.506667pt;}
.y71{bottom:387.266667pt;}
.y16{bottom:389.501333pt;}
.y3e{bottom:396.706667pt;}
.y57{bottom:405.346667pt;}
.y70{bottom:405.826667pt;}
.y19{bottom:414.946667pt;}
.y6f{bottom:424.546667pt;}
.y15{bottom:429.021333pt;}
.y3d{bottom:432.546667pt;}
.y56{bottom:441.026667pt;}
.y6e{bottom:456.706667pt;}
.y3c{bottom:468.226667pt;}
.y14{bottom:468.541333pt;}
.y6d{bottom:475.266667pt;}
.y55{bottom:476.866667pt;}
.y6c{bottom:493.986667pt;}
.y3b{bottom:504.066667pt;}
.y13{bottom:508.221333pt;}
.y54{bottom:512.706667pt;}
.y6b{bottom:531.426667pt;}
.y3a{bottom:539.906667pt;}
.y53{bottom:548.546667pt;}
.y6a{bottom:563.586667pt;}
.y39{bottom:575.773333pt;}
.y69{bottom:582.173333pt;}
.y52{bottom:584.413333pt;}
.y68{bottom:600.893333pt;}
.y38{bottom:611.613333pt;}
.y67{bottom:619.613333pt;}
.y51{bottom:620.093333pt;}
.y66{bottom:638.333333pt;}
.y37{bottom:647.293333pt;}
.yd{bottom:654.973333pt;}
.y50{bottom:655.933333pt;}
.y65{bottom:657.053333pt;}
.y10{bottom:677.693333pt;}
.y36{bottom:683.133333pt;}
.y4f{bottom:691.773333pt;}
.y35{bottom:718.973333pt;}
.y4e{bottom:727.613333pt;}
.y34{bottom:754.813333pt;}
.ya{bottom:755.813333pt;}
.y4d{bottom:763.453333pt;}
.y88{bottom:781.533333pt;}
.y33{bottom:783.133333pt;}
.y4c{bottom:799.173333pt;}
.y6{bottom:800.773333pt;}
.y32{bottom:807.653333pt;}
.y31{bottom:811.653333pt;}
.y87{bottom:814.853333pt;}
.y30{bottom:832.293333pt;}
.y86{bottom:833.413333pt;}
.y4b{bottom:835.013333pt;}
.y2f{bottom:836.293333pt;}
.y85{bottom:852.133333pt;}
.y2e{bottom:856.773333pt;}
.y4a{bottom:870.853333pt;}
.y2d{bottom:888.773333pt;}
.y84{bottom:889.573333pt;}
.y49{bottom:906.693333pt;}
.y83{bottom:908.293333pt;}
.y2c{bottom:924.613333pt;}
.y82{bottom:927.013333pt;}
.y48{bottom:942.533333pt;}
.y81{bottom:945.733333pt;}
.y5{bottom:946.373333pt;}
.y2b{bottom:960.293333pt;}
.y80{bottom:977.893333pt;}
.y47{bottom:978.213333pt;}
.y4{bottom:980.293333pt;}
.y2a{bottom:996.133333pt;}
.y7f{bottom:996.453333pt;}
.y1{bottom:998.240000pt;}
.y29{bottom:1014.080000pt;}
.y7e{bottom:1015.200000pt;}
.hc{height:2.060000pt;}
.h9{height:22.720000pt;}
.h13{height:28.722500pt;}
.h3{height:34.505000pt;}
.h12{height:44.722500pt;}
.h6{height:44.960000pt;}
.h2{height:47.380000pt;}
.h7{height:51.500000pt;}
.h17{height:52.834688pt;}
.hb{height:57.110625pt;}
.h10{height:58.563750pt;}
.ha{height:60.255000pt;}
.h11{height:60.288750pt;}
.h16{height:60.519362pt;}
.h14{height:61.295000pt;}
.h15{height:61.410000pt;}
.he{height:65.600000pt;}
.h5{height:86.005000pt;}
.hf{height:93.600000pt;}
.h8{height:100.832000pt;}
.h4{height:125.600000pt;}
.hd{height:526.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:183.266667pt;}
.w5{width:630.853333pt;}
.w6{width:631.013333pt;}
.w3{width:645.413333pt;}
.w7{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:2.752000pt;}
.x5{left:7.200000pt;}
.xb{left:66.879976pt;}
.x4{left:75.200000pt;}
.x6{left:82.400000pt;}
.x9{left:89.471988pt;}
.x2{left:113.471988pt;}
.xa{left:137.466655pt;}
.xe{left:151.386655pt;}
.xd{left:161.466655pt;}
.xc{left:389.506655pt;}
.x8{left:393.186655pt;}
.x3{left:397.026655pt;}
.x1{left:644.613322pt;}
}




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