
    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_0d73803afdccc5eabf242ac1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_7ef85bbbe150fd6a581c8fa8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b6830c6535b017f4da50220e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.928711;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_ff65ab2e7901bec881935a34.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997070;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_aa153c783f8daa6889faab15.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8132c0eae73425e938c5dfb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4bb0bec1d4c009720ef0fe77.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7dc6d5024c498a389dc7fbce.woff')format("woff");}.ff9{font-family:ff9;line-height:0.928711;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_3f73cc032f4f108ec265faf3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_404642d995097c8d98b3d5fe.woff')format("woff");}.ffb{font-family:ffb;line-height:0.928711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_012334b7c919b1d7c8ce3506.woff')format("woff");}.ffc{font-family:ffc;line-height:0.928711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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:ffe;src:url('chunks/assets/font_6721ff0d8956cd0e40732ef9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.928711;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:fff;src:url('chunks/assets/font_c2ec4e566fa4fbed0ad384b9.woff')format("woff");}.fff{font-family:fff;line-height:0.722168;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:ff10;src:url('chunks/assets/font_bea5f976ab28ab197746c2f0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.928711;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.636000px;}
.lsf{letter-spacing:-0.481200px;}
.ls3{letter-spacing:-0.337200px;}
.ls4{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.204600px;}
.ls5{letter-spacing:-0.090600px;}
.ls14{letter-spacing:-0.034560px;}
.lsb{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006480px;}
.lsc{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.083400px;}
.lse{letter-spacing:0.083520px;}
.ls10{letter-spacing:0.155400px;}
.ls12{letter-spacing:0.178560px;}
.lsd{letter-spacing:0.303576px;}
.ls11{letter-spacing:0.358560px;}
.ls7{letter-spacing:0.803520px;}
.ls13{letter-spacing:0.983520px;}
.ls9{letter-spacing:2.565214px;}
.ls6{letter-spacing:5.221440px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-66.240000px;}
.ws4{word-spacing:-28.262880px;}
.ws5{word-spacing:-20.142720px;}
.wsf{word-spacing:-17.973960px;}
.ws6{word-spacing:-17.901960px;}
.wsd{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.818560px;}
.ws10{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.602560px;}
.ws0{word-spacing:-17.481360px;}
.wse{word-spacing:-17.337360px;}
.ws9{word-spacing:-16.920000px;}
.wsc{word-spacing:-16.408262px;}
.ws1{word-spacing:-14.526000px;}
.ws2{word-spacing:-8.909280px;}
.ws3{word-spacing:-8.818680px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-13.279200px;}
._8{margin-left:-11.830560px;}
._a{margin-left:-10.680360px;}
._5{margin-left:-9.400680px;}
._6{margin-left:-7.606440px;}
._4{margin-left:-5.856000px;}
._9{margin-left:-4.120800px;}
._12{margin-left:-2.384640px;}
._0{margin-left:-1.192320px;}
._2{width:1.080000px;}
._e{width:3.113640px;}
._11{width:4.503600px;}
._14{width:5.696640px;}
._13{width:6.756480px;}
._1d{width:7.764720px;}
._1b{width:9.429480px;}
._1c{width:10.664640px;}
._15{width:11.856960px;}
._17{width:12.983040px;}
._16{width:14.042880px;}
._19{width:15.698880px;}
._18{width:16.758720px;}
._b{width:19.050240px;}
._23{width:20.124480px;}
._10{width:21.859200px;}
._f{width:23.118120px;}
._21{width:26.231040px;}
._22{width:27.423360px;}
._1a{width:31.530240px;}
._26{width:34.312320px;}
._27{width:35.372160px;}
._28{width:36.546240px;}
._c{width:55.111680px;}
._d{width:56.127840px;}
._1e{width:125.874000px;}
._24{width:151.358400px;}
._25{width:152.385600px;}
._1f{width:590.424000px;}
._20{width:849.203760px;}
._1{width:1145.058720px;}
._3{width:2094.378000px;}
.fc3{color:transparent;}
.fc2{color:rgb(46,116,181);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fs3{font-size:33.120000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs9{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs7{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.yc2{bottom:-112.860000px;}
.yc1{bottom:-75.960000px;}
.y90{bottom:-74.550000px;}
.yc0{bottom:-38.160000px;}
.y8f{bottom:-37.470000px;}
.ybf{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:0.360000px;}
.y8d{bottom:26.100000px;}
.ybe{bottom:26.280000px;}
.y8c{bottom:52.740000px;}
.yc{bottom:57.600000px;}
.ybd{bottom:65.385000px;}
.yb{bottom:77.580000px;}
.y8b{bottom:91.800000px;}
.ybc{bottom:92.025000px;}
.ya{bottom:94.860000px;}
.y9{bottom:108.180000px;}
.y8a{bottom:117.540000px;}
.y8{bottom:124.380000px;}
.ybb{bottom:131.265000px;}
.y89{bottom:144.180000px;}
.yda{bottom:144.720000px;}
.y81{bottom:148.860000px;}
.y6e{bottom:154.080000px;}
.y45{bottom:154.260000px;}
.yba{bottom:157.905000px;}
.yb3{bottom:164.520000px;}
.yd9{bottom:170.490000px;}
.y80{bottom:174.630000px;}
.y6d{bottom:179.850000px;}
.y44{bottom:180.030000px;}
.y5b{bottom:180.210000px;}
.y88{bottom:183.420000px;}
.yb2{bottom:190.290000px;}
.yb9{bottom:197.145000px;}
.y7f{bottom:200.370000px;}
.y5a{bottom:201.270000px;}
.y6c{bottom:205.590000px;}
.y87{bottom:209.160000px;}
.yd8{bottom:209.370000px;}
.y43{bottom:210.270000px;}
.yb1{bottom:216.030000px;}
.yb8{bottom:223.785000px;}
.y7e{bottom:226.110000px;}
.y6b{bottom:231.330000px;}
.y59{bottom:234.390000px;}
.y86{bottom:235.845000px;}
.y42{bottom:236.910000px;}
.yd7{bottom:238.710000px;}
.y27{bottom:241.050000px;}
.yb0{bottom:241.770000px;}
.y7d{bottom:251.850000px;}
.yb7{bottom:262.845000px;}
.y41{bottom:264.990000px;}
.y26{bottom:266.790000px;}
.y58{bottom:267.510000px;}
.yd6{bottom:267.870000px;}
.y6a{bottom:270.030000px;}
.y85{bottom:275.085000px;}
.y7c{bottom:277.590000px;}
.yb6{bottom:289.515000px;}
.y25{bottom:292.530000px;}
.y40{bottom:293.070000px;}
.y57{bottom:300.450000px;}
.y84{bottom:300.825000px;}
.y7b{bottom:304.230000px;}
.yaf{bottom:306.210000px;}
.y69{bottom:309.090000px;}
.y24{bottom:318.450000px;}
.yb5{bottom:329.655000px;}
.y7a{bottom:331.410000px;}
.yd5{bottom:331.950000px;}
.y3f{bottom:332.130000px;}
.y56{bottom:333.570000px;}
.y68{bottom:334.830000px;}
.y83{bottom:339.525000px;}
.y23{bottom:344.190000px;}
.y79{bottom:357.150000px;}
.yd4{bottom:357.690000px;}
.y55{bottom:366.690000px;}
.y22{bottom:369.750000px;}
.y3e{bottom:371.010000px;}
.yb4{bottom:372.450000px;}
.y67{bottom:373.890000px;}
.y78{bottom:382.890000px;}
.yd3{bottom:395.490000px;}
.y54{bottom:399.630000px;}
.y21{bottom:407.730000px;}
.y77{bottom:408.630000px;}
.yd2{bottom:421.275000px;}
.y53{bottom:432.795000px;}
.y20{bottom:433.515000px;}
.y76{bottom:435.315000px;}
.ya5{bottom:435.675000px;}
.y3d{bottom:444.315000px;}
.y66{bottom:447.015000px;}
.y1f{bottom:459.255000px;}
.ya4{bottom:461.415000px;}
.y52{bottom:465.915000px;}
.y65{bottom:472.755000px;}
.y75{bottom:474.555000px;}
.y3c{bottom:481.935000px;}
.ya3{bottom:487.155000px;}
.y1e{bottom:497.955000px;}
.y64{bottom:498.495000px;}
.y51{bottom:501.915000px;}
.y3b{bottom:507.675000px;}
.y74{bottom:512.175000px;}
.ya2{bottom:512.895000px;}
.y63{bottom:524.235000px;}
.y50{bottom:528.015000px;}
.yd1{bottom:537.195000px;}
.y73{bottom:537.915000px;}
.ya1{bottom:538.635000px;}
.y3a{bottom:545.475000px;}
.y1d{bottom:548.895000px;}
.y62{bottom:549.975000px;}
.y4f{bottom:553.035000px;}
.y72{bottom:563.655000px;}
.ya0{bottom:564.375000px;}
.y39{bottom:571.215000px;}
.y61{bottom:575.715000px;}
.y1c{bottom:577.695000px;}
.y4e{bottom:578.775000px;}
.y38{bottom:596.955000px;}
.y71{bottom:602.535000px;}
.y9f{bottom:603.075000px;}
.y4d{bottom:604.695000px;}
.y1b{bottom:606.675000px;}
.yd0{bottom:610.455000px;}
.y60{bottom:613.335000px;}
.y37{bottom:622.695000px;}
.y4c{bottom:630.435000px;}
.y1a{bottom:635.475000px;}
.ycf{bottom:636.195000px;}
.y5f{bottom:639.075000px;}
.y36{bottom:648.435000px;}
.y4b{bottom:656.175000px;}
.yce{bottom:661.965000px;}
.y19{bottom:664.305000px;}
.y82{bottom:667.905000px;}
.y35{bottom:674.205000px;}
.y9e{bottom:674.565000px;}
.y5e{bottom:675.105000px;}
.y4a{bottom:681.945000px;}
.ycd{bottom:687.705000px;}
.y18{bottom:693.285000px;}
.y5d{bottom:693.465000px;}
.y34{bottom:699.945000px;}
.y49{bottom:707.685000px;}
.y9d{bottom:709.485000px;}
.ycc{bottom:713.445000px;}
.y17{bottom:722.085000px;}
.y33{bottom:725.685000px;}
.y48{bottom:746.385000px;}
.y9c{bottom:747.105000px;}
.y16{bottom:751.065000px;}
.ycb{bottom:751.245000px;}
.yae{bottom:761.865000px;}
.y32{bottom:763.485000px;}
.yca{bottom:776.985000px;}
.y15{bottom:779.865000px;}
.y9b{bottom:781.665000px;}
.y31{bottom:789.225000px;}
.yad{bottom:792.285000px;}
.yc9{bottom:802.725000px;}
.y14{bottom:808.665000px;}
.y30{bottom:814.965000px;}
.y47{bottom:817.845000px;}
.y9a{bottom:818.565000px;}
.yac{bottom:825.765000px;}
.yc8{bottom:828.465000px;}
.y13{bottom:837.645000px;}
.y2f{bottom:840.705000px;}
.y46{bottom:852.225000px;}
.y99{bottom:856.365000px;}
.yab{bottom:859.065000px;}
.y12{bottom:866.445000px;}
.yc7{bottom:867.345000px;}
.y2e{bottom:892.185000px;}
.yaa{bottom:892.545000px;}
.y98{bottom:894.165000px;}
.y11{bottom:895.245000px;}
.y10{bottom:917.430000px;}
.y2d{bottom:918.870000px;}
.y97{bottom:924.450000px;}
.ya9{bottom:930.210000px;}
.yc6{bottom:940.470000px;}
.y96{bottom:950.190000px;}
.y2c{bottom:959.010000px;}
.yf{bottom:960.090000px;}
.yc5{bottom:966.210000px;}
.ya8{bottom:968.010000px;}
.y95{bottom:975.930000px;}
.y2b{bottom:987.090000px;}
.ye{bottom:995.910000px;}
.y94{bottom:1001.670000px;}
.yc4{bottom:1004.010000px;}
.ya7{bottom:1005.810000px;}
.y2a{bottom:1014.270000px;}
.y93{bottom:1027.410000px;}
.yc3{bottom:1029.750000px;}
.y29{bottom:1040.010000px;}
.ya6{bottom:1043.430000px;}
.yd{bottom:1049.730000px;}
.y92{bottom:1053.150000px;}
.y70{bottom:1055.490000px;}
.y5c{bottom:1078.710000px;}
.y28{bottom:1078.890000px;}
.y91{bottom:1079.790000px;}
.y6f{bottom:1081.230000px;}
.y7{bottom:1098.510000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1124.250000px;}
.y4{bottom:1140.450000px;}
.y3{bottom:1156.680000px;}
.y2{bottom:1173.600000px;}
.y1{bottom:1193.400000px;}
.h4{height:15.618164px;}
.h5{height:28.737422px;}
.hd{height:38.733398px;}
.hf{height:40.948242px;}
.h3{height:46.854492px;}
.h12{height:47.254219px;}
.he{height:50.082566px;}
.h10{height:51.644531px;}
.h2{height:57.474844px;}
.ha{height:58.829062px;}
.h6{height:65.884219px;}
.hb{height:68.084282px;}
.hc{height:74.004654px;}
.h9{height:83.088633px;}
.h8{height:84.849609px;}
.h7{height:86.246367px;}
.h13{height:347.475000px;}
.h11{height:357.330000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:677.085000px;}
.w2{width:892.979986px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:10.800000px;}
.x1d{left:40.320000px;}
.x1e{left:42.840000px;}
.x4{left:63.899987px;}
.x5{left:82.799987px;}
.x25{left:100.116000px;}
.x1{left:106.415987px;}
.x6{left:122.975987px;}
.x1f{left:125.135987px;}
.x20{left:127.655987px;}
.x19{left:135.935987px;}
.x1a{left:138.455987px;}
.x7{left:157.889987px;}
.x8{left:160.409987px;}
.x17{left:181.649987px;}
.x1b{left:199.649987px;}
.x11{left:201.089987px;}
.x13{left:211.169987px;}
.x12{left:239.069987px;}
.x18{left:270.929987px;}
.x24{left:273.629987px;}
.x14{left:296.354987px;}
.x21{left:313.634987px;}
.x15{left:321.194987px;}
.xa{left:331.454987px;}
.x10{left:336.494987px;}
.x16{left:424.334987px;}
.xd{left:425.594987px;}
.xb{left:448.094987px;}
.x26{left:490.064986px;}
.xe{left:492.044987px;}
.xc{left:579.344987px;}
.x2{left:650.624986px;}
.x22{left:680.549987px;}
.x9{left:700.889987px;}
.x23{left:735.629987px;}
.x3{left:786.749986px;}
.xf{left:790.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.565333pt;}
.lsf{letter-spacing:-0.427733pt;}
.ls3{letter-spacing:-0.299733pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.181867pt;}
.ls5{letter-spacing:-0.080533pt;}
.ls14{letter-spacing:-0.030720pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005760pt;}
.lsc{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.074133pt;}
.lse{letter-spacing:0.074240pt;}
.ls10{letter-spacing:0.138133pt;}
.ls12{letter-spacing:0.158720pt;}
.lsd{letter-spacing:0.269845pt;}
.ls11{letter-spacing:0.318720pt;}
.ls7{letter-spacing:0.714240pt;}
.ls13{letter-spacing:0.874240pt;}
.ls9{letter-spacing:2.280190pt;}
.ls6{letter-spacing:4.641280pt;}
.ws7{word-spacing:-58.880000pt;}
.ws4{word-spacing:-25.122560pt;}
.ws5{word-spacing:-17.904640pt;}
.wsf{word-spacing:-15.976853pt;}
.ws6{word-spacing:-15.912853pt;}
.wsd{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.838720pt;}
.ws10{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.646720pt;}
.ws0{word-spacing:-15.538987pt;}
.wse{word-spacing:-15.410987pt;}
.ws9{word-spacing:-15.040000pt;}
.wsc{word-spacing:-14.585122pt;}
.ws1{word-spacing:-12.912000pt;}
.ws2{word-spacing:-7.919360pt;}
.ws3{word-spacing:-7.838827pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-11.803733pt;}
._8{margin-left:-10.516053pt;}
._a{margin-left:-9.493653pt;}
._5{margin-left:-8.356160pt;}
._6{margin-left:-6.761280pt;}
._4{margin-left:-5.205333pt;}
._9{margin-left:-3.662933pt;}
._12{margin-left:-2.119680pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.960000pt;}
._e{width:2.767680pt;}
._11{width:4.003200pt;}
._14{width:5.063680pt;}
._13{width:6.005760pt;}
._1d{width:6.901973pt;}
._1b{width:8.381760pt;}
._1c{width:9.479680pt;}
._15{width:10.539520pt;}
._17{width:11.540480pt;}
._16{width:12.482560pt;}
._19{width:13.954560pt;}
._18{width:14.896640pt;}
._b{width:16.933547pt;}
._23{width:17.888427pt;}
._10{width:19.430400pt;}
._f{width:20.549440pt;}
._21{width:23.316480pt;}
._22{width:24.376320pt;}
._1a{width:28.026880pt;}
._26{width:30.499840pt;}
._27{width:31.441920pt;}
._28{width:32.485547pt;}
._c{width:48.988160pt;}
._d{width:49.891413pt;}
._1e{width:111.888000pt;}
._24{width:134.540800pt;}
._25{width:135.453867pt;}
._1f{width:524.821333pt;}
._20{width:754.847787pt;}
._1{width:1017.829973pt;}
._3{width:1861.669333pt;}
.fs8{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fs3{font-size:29.440000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs9{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs7{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.yc2{bottom:-100.320000pt;}
.yc1{bottom:-67.520000pt;}
.y90{bottom:-66.266667pt;}
.yc0{bottom:-33.920000pt;}
.y8f{bottom:-33.306667pt;}
.ybf{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:0.320000pt;}
.y8d{bottom:23.200000pt;}
.ybe{bottom:23.360000pt;}
.y8c{bottom:46.880000pt;}
.yc{bottom:51.200000pt;}
.ybd{bottom:58.120000pt;}
.yb{bottom:68.960000pt;}
.y8b{bottom:81.600000pt;}
.ybc{bottom:81.800000pt;}
.ya{bottom:84.320000pt;}
.y9{bottom:96.160000pt;}
.y8a{bottom:104.480000pt;}
.y8{bottom:110.560000pt;}
.ybb{bottom:116.680000pt;}
.y89{bottom:128.160000pt;}
.yda{bottom:128.640000pt;}
.y81{bottom:132.320000pt;}
.y6e{bottom:136.960000pt;}
.y45{bottom:137.120000pt;}
.yba{bottom:140.360000pt;}
.yb3{bottom:146.240000pt;}
.yd9{bottom:151.546667pt;}
.y80{bottom:155.226667pt;}
.y6d{bottom:159.866667pt;}
.y44{bottom:160.026667pt;}
.y5b{bottom:160.186667pt;}
.y88{bottom:163.040000pt;}
.yb2{bottom:169.146667pt;}
.yb9{bottom:175.240000pt;}
.y7f{bottom:178.106667pt;}
.y5a{bottom:178.906667pt;}
.y6c{bottom:182.746667pt;}
.y87{bottom:185.920000pt;}
.yd8{bottom:186.106667pt;}
.y43{bottom:186.906667pt;}
.yb1{bottom:192.026667pt;}
.yb8{bottom:198.920000pt;}
.y7e{bottom:200.986667pt;}
.y6b{bottom:205.626667pt;}
.y59{bottom:208.346667pt;}
.y86{bottom:209.640000pt;}
.y42{bottom:210.586667pt;}
.yd7{bottom:212.186667pt;}
.y27{bottom:214.266667pt;}
.yb0{bottom:214.906667pt;}
.y7d{bottom:223.866667pt;}
.yb7{bottom:233.640000pt;}
.y41{bottom:235.546667pt;}
.y26{bottom:237.146667pt;}
.y58{bottom:237.786667pt;}
.yd6{bottom:238.106667pt;}
.y6a{bottom:240.026667pt;}
.y85{bottom:244.520000pt;}
.y7c{bottom:246.746667pt;}
.yb6{bottom:257.346667pt;}
.y25{bottom:260.026667pt;}
.y40{bottom:260.506667pt;}
.y57{bottom:267.066667pt;}
.y84{bottom:267.400000pt;}
.y7b{bottom:270.426667pt;}
.yaf{bottom:272.186667pt;}
.y69{bottom:274.746667pt;}
.y24{bottom:283.066667pt;}
.yb5{bottom:293.026667pt;}
.y7a{bottom:294.586667pt;}
.yd5{bottom:295.066667pt;}
.y3f{bottom:295.226667pt;}
.y56{bottom:296.506667pt;}
.y68{bottom:297.626667pt;}
.y83{bottom:301.800000pt;}
.y23{bottom:305.946667pt;}
.y79{bottom:317.466667pt;}
.yd4{bottom:317.946667pt;}
.y55{bottom:325.946667pt;}
.y22{bottom:328.666667pt;}
.y3e{bottom:329.786667pt;}
.yb4{bottom:331.066667pt;}
.y67{bottom:332.346667pt;}
.y78{bottom:340.346667pt;}
.yd3{bottom:351.546667pt;}
.y54{bottom:355.226667pt;}
.y21{bottom:362.426667pt;}
.y77{bottom:363.226667pt;}
.yd2{bottom:374.466667pt;}
.y53{bottom:384.706667pt;}
.y20{bottom:385.346667pt;}
.y76{bottom:386.946667pt;}
.ya5{bottom:387.266667pt;}
.y3d{bottom:394.946667pt;}
.y66{bottom:397.346667pt;}
.y1f{bottom:408.226667pt;}
.ya4{bottom:410.146667pt;}
.y52{bottom:414.146667pt;}
.y65{bottom:420.226667pt;}
.y75{bottom:421.826667pt;}
.y3c{bottom:428.386667pt;}
.ya3{bottom:433.026667pt;}
.y1e{bottom:442.626667pt;}
.y64{bottom:443.106667pt;}
.y51{bottom:446.146667pt;}
.y3b{bottom:451.266667pt;}
.y74{bottom:455.266667pt;}
.ya2{bottom:455.906667pt;}
.y63{bottom:465.986667pt;}
.y50{bottom:469.346667pt;}
.yd1{bottom:477.506667pt;}
.y73{bottom:478.146667pt;}
.ya1{bottom:478.786667pt;}
.y3a{bottom:484.866667pt;}
.y1d{bottom:487.906667pt;}
.y62{bottom:488.866667pt;}
.y4f{bottom:491.586667pt;}
.y72{bottom:501.026667pt;}
.ya0{bottom:501.666667pt;}
.y39{bottom:507.746667pt;}
.y61{bottom:511.746667pt;}
.y1c{bottom:513.506667pt;}
.y4e{bottom:514.466667pt;}
.y38{bottom:530.626667pt;}
.y71{bottom:535.586667pt;}
.y9f{bottom:536.066667pt;}
.y4d{bottom:537.506667pt;}
.y1b{bottom:539.266667pt;}
.yd0{bottom:542.626667pt;}
.y60{bottom:545.186667pt;}
.y37{bottom:553.506667pt;}
.y4c{bottom:560.386667pt;}
.y1a{bottom:564.866667pt;}
.ycf{bottom:565.506667pt;}
.y5f{bottom:568.066667pt;}
.y36{bottom:576.386667pt;}
.y4b{bottom:583.266667pt;}
.yce{bottom:588.413333pt;}
.y19{bottom:590.493333pt;}
.y82{bottom:593.693333pt;}
.y35{bottom:599.293333pt;}
.y9e{bottom:599.613333pt;}
.y5e{bottom:600.093333pt;}
.y4a{bottom:606.173333pt;}
.ycd{bottom:611.293333pt;}
.y18{bottom:616.253333pt;}
.y5d{bottom:616.413333pt;}
.y34{bottom:622.173333pt;}
.y49{bottom:629.053333pt;}
.y9d{bottom:630.653333pt;}
.ycc{bottom:634.173333pt;}
.y17{bottom:641.853333pt;}
.y33{bottom:645.053333pt;}
.y48{bottom:663.453333pt;}
.y9c{bottom:664.093333pt;}
.y16{bottom:667.613333pt;}
.ycb{bottom:667.773333pt;}
.yae{bottom:677.213333pt;}
.y32{bottom:678.653333pt;}
.yca{bottom:690.653333pt;}
.y15{bottom:693.213333pt;}
.y9b{bottom:694.813333pt;}
.y31{bottom:701.533333pt;}
.yad{bottom:704.253333pt;}
.yc9{bottom:713.533333pt;}
.y14{bottom:718.813333pt;}
.y30{bottom:724.413333pt;}
.y47{bottom:726.973333pt;}
.y9a{bottom:727.613333pt;}
.yac{bottom:734.013333pt;}
.yc8{bottom:736.413333pt;}
.y13{bottom:744.573333pt;}
.y2f{bottom:747.293333pt;}
.y46{bottom:757.533333pt;}
.y99{bottom:761.213333pt;}
.yab{bottom:763.613333pt;}
.y12{bottom:770.173333pt;}
.yc7{bottom:770.973333pt;}
.y2e{bottom:793.053333pt;}
.yaa{bottom:793.373333pt;}
.y98{bottom:794.813333pt;}
.y11{bottom:795.773333pt;}
.y10{bottom:815.493333pt;}
.y2d{bottom:816.773333pt;}
.y97{bottom:821.733333pt;}
.ya9{bottom:826.853333pt;}
.yc6{bottom:835.973333pt;}
.y96{bottom:844.613333pt;}
.y2c{bottom:852.453333pt;}
.yf{bottom:853.413333pt;}
.yc5{bottom:858.853333pt;}
.ya8{bottom:860.453333pt;}
.y95{bottom:867.493333pt;}
.y2b{bottom:877.413333pt;}
.ye{bottom:885.253333pt;}
.y94{bottom:890.373333pt;}
.yc4{bottom:892.453333pt;}
.ya7{bottom:894.053333pt;}
.y2a{bottom:901.573333pt;}
.y93{bottom:913.253333pt;}
.yc3{bottom:915.333333pt;}
.y29{bottom:924.453333pt;}
.ya6{bottom:927.493333pt;}
.yd{bottom:933.093333pt;}
.y92{bottom:936.133333pt;}
.y70{bottom:938.213333pt;}
.y5c{bottom:958.853333pt;}
.y28{bottom:959.013333pt;}
.y91{bottom:959.813333pt;}
.y6f{bottom:961.093333pt;}
.y7{bottom:976.453333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:999.333333pt;}
.y4{bottom:1013.733333pt;}
.y3{bottom:1028.160000pt;}
.y2{bottom:1043.200000pt;}
.y1{bottom:1060.800000pt;}
.h4{height:13.882812pt;}
.h5{height:25.544375pt;}
.hd{height:34.429688pt;}
.hf{height:36.398438pt;}
.h3{height:41.648438pt;}
.h12{height:42.003750pt;}
.he{height:44.517836pt;}
.h10{height:45.906250pt;}
.h2{height:51.088750pt;}
.ha{height:52.292500pt;}
.h6{height:58.563750pt;}
.hb{height:60.519362pt;}
.hc{height:65.781915pt;}
.h9{height:73.856563pt;}
.h8{height:75.421875pt;}
.h7{height:76.663438pt;}
.h13{height:308.866667pt;}
.h11{height:317.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:601.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:9.600000pt;}
.x1d{left:35.840000pt;}
.x1e{left:38.080000pt;}
.x4{left:56.799988pt;}
.x5{left:73.599988pt;}
.x25{left:88.992000pt;}
.x1{left:94.591988pt;}
.x6{left:109.311988pt;}
.x1f{left:111.231988pt;}
.x20{left:113.471988pt;}
.x19{left:120.831988pt;}
.x1a{left:123.071988pt;}
.x7{left:140.346655pt;}
.x8{left:142.586655pt;}
.x17{left:161.466655pt;}
.x1b{left:177.466655pt;}
.x11{left:178.746655pt;}
.x13{left:187.706655pt;}
.x12{left:212.506655pt;}
.x18{left:240.826655pt;}
.x24{left:243.226655pt;}
.x14{left:263.426655pt;}
.x21{left:278.786655pt;}
.x15{left:285.506655pt;}
.xa{left:294.626655pt;}
.x10{left:299.106655pt;}
.x16{left:377.186655pt;}
.xd{left:378.306655pt;}
.xb{left:398.306655pt;}
.x26{left:435.613321pt;}
.xe{left:437.373322pt;}
.xc{left:514.973322pt;}
.x2{left:578.333321pt;}
.x22{left:604.933322pt;}
.x9{left:623.013322pt;}
.x23{left:653.893322pt;}
.x3{left:699.333321pt;}
.xf{left:702.693322pt;}
}




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