
    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_2e5f25b0a0ca1ff58d881597.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0f22571de5e6c3af000b3656.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_466d270a4ef10a971fc89318.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.326400px;}
.ls10{letter-spacing:-0.240600px;}
.ls6{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.115800px;}
.ls20{letter-spacing:-0.078600px;}
.ls16{letter-spacing:-0.067200px;}
.ls22{letter-spacing:-0.064800px;}
.ls19{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.038160px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.023760px;}
.ls11{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.038880px;}
.lsb{letter-spacing:0.060600px;}
.lse{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.174000px;}
.ls1d{letter-spacing:0.174240px;}
.ls1e{letter-spacing:0.175200px;}
.ls15{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.190200px;}
.ls9{letter-spacing:0.210000px;}
.ls1f{letter-spacing:0.218400px;}
.lsd{letter-spacing:0.306000px;}
.ls0{letter-spacing:0.427680px;}
.ls1c{letter-spacing:0.433440px;}
.ls21{letter-spacing:0.479400px;}
.ls28{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.617760px;}
.ls1b{letter-spacing:2.106720px;}
.ls13{letter-spacing:5.706720px;}
.ls29{letter-spacing:12.186720px;}
.ls23{letter-spacing:17.946720px;}
.ls3{letter-spacing:21.546720px;}
.ls1{letter-spacing:38.106720px;}
.ls25{letter-spacing:42.570720px;}
.ls14{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.811760px;}
.ws10{word-spacing:-13.724160px;}
.wsc{word-spacing:-13.692360px;}
.wsf{word-spacing:-13.680960px;}
.wse{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.566360px;}
.wsa{word-spacing:-13.530960px;}
.ws6{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.467600px;}
.wsd{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.440960px;}
.ws11{word-spacing:-13.427160px;}
.ws8{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-532.918560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-190.074240px;}
._24{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.765680px;}
._1c{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-31.530240px;}
._26{margin-left:-4.827600px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.257120px;}
._29{width:2.340960px;}
._2c{width:4.230720px;}
._2f{width:5.292000px;}
._28{width:6.292800px;}
._2e{width:7.298400px;}
._2d{width:8.786400px;}
._2b{width:10.455840px;}
._2a{width:11.473920px;}
._34{width:12.485520px;}
._30{width:14.700960px;}
._31{width:15.921600px;}
._3a{width:16.959600px;}
._35{width:18.107280px;}
._39{width:19.185120px;}
._33{width:20.854080px;}
._32{width:22.111200px;}
._36{width:23.485680px;}
._37{width:26.662560px;}
._38{width:59.879520px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y66{bottom:6.660000px;}
.y64{bottom:27.720000px;}
.y69{bottom:27.750000px;}
.y7e{bottom:48.780000px;}
.y80{bottom:48.810000px;}
.y6{bottom:61.416000px;}
.ya8{bottom:88.776000px;}
.yd8{bottom:90.576000px;}
.y89{bottom:92.016000px;}
.y87{bottom:99.756000px;}
.y30{bottom:102.636000px;}
.y63{bottom:104.976000px;}
.y88{bottom:109.296000px;}
.ya7{bottom:109.836000px;}
.yd7{bottom:111.636000px;}
.y86{bottom:116.856000px;}
.y2f{bottom:123.696000px;}
.y65{bottom:126.036000px;}
.yd9{bottom:129.996000px;}
.ya6{bottom:130.896000px;}
.yd6{bottom:132.696000px;}
.y2e{bottom:144.756000px;}
.ya5{bottom:151.950000px;}
.yd5{bottom:153.750000px;}
.y62{bottom:154.470000px;}
.y2d{bottom:165.810000px;}
.ya4{bottom:173.010000px;}
.yd4{bottom:174.810000px;}
.y61{bottom:175.530000px;}
.y2c{bottom:186.870000px;}
.ya3{bottom:194.070000px;}
.yd3{bottom:195.870000px;}
.y60{bottom:196.590000px;}
.y2b{bottom:207.930000px;}
.ya2{bottom:215.130000px;}
.yd2{bottom:216.930000px;}
.y5f{bottom:217.650000px;}
.y2a{bottom:228.990000px;}
.ya1{bottom:236.190000px;}
.yd1{bottom:237.990000px;}
.y5e{bottom:238.710000px;}
.y29{bottom:250.050000px;}
.ya0{bottom:257.250000px;}
.yd0{bottom:259.050000px;}
.y5d{bottom:259.770000px;}
.y28{bottom:271.110000px;}
.y9f{bottom:278.310000px;}
.ycf{bottom:280.110000px;}
.y5c{bottom:280.830000px;}
.y27{bottom:292.170000px;}
.y9e{bottom:299.370000px;}
.yce{bottom:301.170000px;}
.y5b{bottom:301.890000px;}
.y26{bottom:313.230000px;}
.y9d{bottom:320.430000px;}
.ycd{bottom:322.230000px;}
.y5a{bottom:322.950000px;}
.y25{bottom:334.335000px;}
.y9c{bottom:341.535000px;}
.ycc{bottom:343.335000px;}
.y59{bottom:344.055000px;}
.y24{bottom:355.395000px;}
.y9b{bottom:362.595000px;}
.ycb{bottom:364.395000px;}
.y58{bottom:365.115000px;}
.y23{bottom:376.455000px;}
.y9a{bottom:383.655000px;}
.yca{bottom:385.455000px;}
.y57{bottom:386.175000px;}
.y22{bottom:397.515000px;}
.y99{bottom:404.715000px;}
.yc9{bottom:406.515000px;}
.y56{bottom:407.235000px;}
.y21{bottom:418.575000px;}
.y98{bottom:426.495000px;}
.yc8{bottom:427.395000px;}
.y55{bottom:428.295000px;}
.y20{bottom:439.635000px;}
.yc7{bottom:448.455000px;}
.y54{bottom:449.355000px;}
.y97{bottom:454.935000px;}
.y1f{bottom:460.695000px;}
.yc6{bottom:469.515000px;}
.y53{bottom:470.415000px;}
.y96{bottom:475.995000px;}
.y1e{bottom:481.755000px;}
.y85{bottom:489.135000px;}
.yc5{bottom:490.575000px;}
.y52{bottom:491.475000px;}
.y95{bottom:497.055000px;}
.y1d{bottom:502.815000px;}
.y84{bottom:510.195000px;}
.yc4{bottom:511.635000px;}
.y51{bottom:512.535000px;}
.y94{bottom:518.115000px;}
.y1c{bottom:523.875000px;}
.y83{bottom:531.255000px;}
.yc3{bottom:532.695000px;}
.y50{bottom:533.595000px;}
.y93{bottom:539.175000px;}
.y1b{bottom:544.935000px;}
.y82{bottom:552.315000px;}
.yc2{bottom:553.755000px;}
.y4f{bottom:554.655000px;}
.y92{bottom:560.235000px;}
.y1a{bottom:565.995000px;}
.y81{bottom:566.715000px;}
.yc1{bottom:574.815000px;}
.y4e{bottom:575.715000px;}
.y91{bottom:581.295000px;}
.y19{bottom:587.055000px;}
.y7f{bottom:587.775000px;}
.yc0{bottom:595.905000px;}
.y4d{bottom:596.805000px;}
.y90{bottom:602.385000px;}
.y18{bottom:608.145000px;}
.ybf{bottom:616.965000px;}
.y4c{bottom:617.865000px;}
.y8f{bottom:623.445000px;}
.ybe{bottom:638.025000px;}
.y4b{bottom:638.925000px;}
.y8e{bottom:644.505000px;}
.y7d{bottom:650.985000px;}
.y17{bottom:652.605000px;}
.ybd{bottom:659.085000px;}
.y4a{bottom:659.805000px;}
.y8d{bottom:661.425000px;}
.ybc{bottom:680.145000px;}
.y49{bottom:680.865000px;}
.y16{bottom:682.485000px;}
.ybb{bottom:701.205000px;}
.y48{bottom:701.925000px;}
.y15{bottom:703.545000px;}
.y7c{bottom:714.165000px;}
.yba{bottom:722.265000px;}
.y47{bottom:722.985000px;}
.y14{bottom:724.605000px;}
.y7b{bottom:735.225000px;}
.yb9{bottom:736.665000px;}
.y46{bottom:744.045000px;}
.y13{bottom:745.665000px;}
.y7a{bottom:756.285000px;}
.y45{bottom:765.105000px;}
.y12{bottom:766.725000px;}
.y79{bottom:777.345000px;}
.yb8{bottom:779.505000px;}
.y44{bottom:786.165000px;}
.y11{bottom:787.785000px;}
.y78{bottom:799.125000px;}
.yb7{bottom:800.565000px;}
.y43{bottom:807.225000px;}
.y10{bottom:808.845000px;}
.yb6{bottom:821.625000px;}
.y77{bottom:827.565000px;}
.y42{bottom:828.285000px;}
.yf{bottom:829.905000px;}
.yb5{bottom:842.685000px;}
.y76{bottom:848.625000px;}
.y41{bottom:849.345000px;}
.ye{bottom:850.965000px;}
.yb4{bottom:863.790000px;}
.y75{bottom:869.730000px;}
.y40{bottom:870.450000px;}
.yd{bottom:872.250000px;}
.yb3{bottom:884.850000px;}
.y74{bottom:890.790000px;}
.y3f{bottom:891.510000px;}
.yc{bottom:895.470000px;}
.yb2{bottom:905.910000px;}
.y73{bottom:911.850000px;}
.y3e{bottom:912.570000px;}
.yb{bottom:921.750000px;}
.yb1{bottom:926.970000px;}
.y72{bottom:932.910000px;}
.y3d{bottom:933.630000px;}
.ya{bottom:938.310000px;}
.yb0{bottom:948.030000px;}
.y71{bottom:953.970000px;}
.y3c{bottom:954.690000px;}
.y9{bottom:961.530000px;}
.yaf{bottom:969.090000px;}
.y70{bottom:975.030000px;}
.y3b{bottom:975.750000px;}
.y8{bottom:983.850000px;}
.yae{bottom:990.150000px;}
.y6f{bottom:996.090000px;}
.y3a{bottom:996.810000px;}
.y7{bottom:1009.050000px;}
.yad{bottom:1011.210000px;}
.y6e{bottom:1017.150000px;}
.y39{bottom:1017.870000px;}
.y8c{bottom:1029.930000px;}
.yac{bottom:1032.270000px;}
.y6d{bottom:1038.210000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y8b{bottom:1050.990000px;}
.yab{bottom:1053.330000px;}
.y6c{bottom:1059.270000px;}
.y37{bottom:1059.990000px;}
.y8a{bottom:1072.050000px;}
.y6b{bottom:1073.670000px;}
.yaa{bottom:1074.390000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.ya9{bottom:1095.450000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y68{bottom:1116.510000px;}
.y34{bottom:1123.170000px;}
.y6a{bottom:1137.600000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y67{bottom:1158.660000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hc{height:21.060000px;}
.he{height:21.096000px;}
.h8{height:38.671172px;}
.hb{height:42.120000px;}
.hd{height:42.156000px;}
.h11{height:45.140977px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.hf{height:63.180000px;}
.h10{height:63.216000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.ha{height:71.613281px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:60.480000px;}
.w6{width:67.500000px;}
.wc{width:74.520000px;}
.we{width:116.856000px;}
.wd{width:159.510000px;}
.wb{width:162.750000px;}
.w3{width:180.570000px;}
.w7{width:208.830000px;}
.w8{width:234.075000px;}
.w4{width:425.235000px;}
.w9{width:510.405000px;}
.wf{width:574.125000px;}
.w5{width:605.985000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x6{left:53.999987px;}
.x7{left:70.199987px;}
.x16{left:75.599987px;}
.x17{left:102.635987px;}
.x8{left:128.556000px;}
.xb{left:171.030000px;}
.x5{left:173.189987px;}
.x12{left:231.510000px;}
.xc{left:238.530000px;}
.x3{left:286.634987px;}
.xf{left:303.914987px;}
.xa{left:309.315000px;}
.x2{left:350.534987px;}
.x11{left:352.874987px;}
.x13{left:394.275000px;}
.x4{left:419.114987px;}
.xd{left:447.375000px;}
.x14{left:468.795000px;}
.x1{left:479.264987px;}
.x15{left:628.305000px;}
.x10{left:784.229987px;}
.xe{left:815.009987px;}
.x18{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.290133pt;}
.ls10{letter-spacing:-0.213867pt;}
.ls6{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls20{letter-spacing:-0.069867pt;}
.ls16{letter-spacing:-0.059733pt;}
.ls22{letter-spacing:-0.057600pt;}
.ls19{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.021120pt;}
.ls11{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.034560pt;}
.lsb{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.154667pt;}
.ls1d{letter-spacing:0.154880pt;}
.ls1e{letter-spacing:0.155733pt;}
.ls15{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.169067pt;}
.ls9{letter-spacing:0.186667pt;}
.ls1f{letter-spacing:0.194133pt;}
.lsd{letter-spacing:0.272000pt;}
.ls0{letter-spacing:0.380160pt;}
.ls1c{letter-spacing:0.385280pt;}
.ls21{letter-spacing:0.426133pt;}
.ls28{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.549120pt;}
.ls1b{letter-spacing:1.872640pt;}
.ls13{letter-spacing:5.072640pt;}
.ls29{letter-spacing:10.832640pt;}
.ls23{letter-spacing:15.952640pt;}
.ls3{letter-spacing:19.152640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls25{letter-spacing:37.840640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.277120pt;}
.ws10{word-spacing:-12.199253pt;}
.wsc{word-spacing:-12.170987pt;}
.wsf{word-spacing:-12.160853pt;}
.wse{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.058987pt;}
.wsa{word-spacing:-12.027520pt;}
.ws6{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.971200pt;}
.wsd{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.947520pt;}
.ws11{word-spacing:-11.935253pt;}
.ws8{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-473.705387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.954880pt;}
._24{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.569493pt;}
._1c{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.026880pt;}
._26{margin-left:-4.291200pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.117440pt;}
._29{width:2.080853pt;}
._2c{width:3.760640pt;}
._2f{width:4.704000pt;}
._28{width:5.593600pt;}
._2e{width:6.487467pt;}
._2d{width:7.810133pt;}
._2b{width:9.294080pt;}
._2a{width:10.199040pt;}
._34{width:11.098240pt;}
._30{width:13.067520pt;}
._31{width:14.152533pt;}
._3a{width:15.075200pt;}
._35{width:16.095360pt;}
._39{width:17.053440pt;}
._33{width:18.536960pt;}
._32{width:19.654400pt;}
._36{width:20.876160pt;}
._37{width:23.700053pt;}
._38{width:53.226240pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:5.920000pt;}
.y64{bottom:24.640000pt;}
.y69{bottom:24.666667pt;}
.y7e{bottom:43.360000pt;}
.y80{bottom:43.386667pt;}
.y6{bottom:54.592000pt;}
.ya8{bottom:78.912000pt;}
.yd8{bottom:80.512000pt;}
.y89{bottom:81.792000pt;}
.y87{bottom:88.672000pt;}
.y30{bottom:91.232000pt;}
.y63{bottom:93.312000pt;}
.y88{bottom:97.152000pt;}
.ya7{bottom:97.632000pt;}
.yd7{bottom:99.232000pt;}
.y86{bottom:103.872000pt;}
.y2f{bottom:109.952000pt;}
.y65{bottom:112.032000pt;}
.yd9{bottom:115.552000pt;}
.ya6{bottom:116.352000pt;}
.yd6{bottom:117.952000pt;}
.y2e{bottom:128.672000pt;}
.ya5{bottom:135.066667pt;}
.yd5{bottom:136.666667pt;}
.y62{bottom:137.306667pt;}
.y2d{bottom:147.386667pt;}
.ya4{bottom:153.786667pt;}
.yd4{bottom:155.386667pt;}
.y61{bottom:156.026667pt;}
.y2c{bottom:166.106667pt;}
.ya3{bottom:172.506667pt;}
.yd3{bottom:174.106667pt;}
.y60{bottom:174.746667pt;}
.y2b{bottom:184.826667pt;}
.ya2{bottom:191.226667pt;}
.yd2{bottom:192.826667pt;}
.y5f{bottom:193.466667pt;}
.y2a{bottom:203.546667pt;}
.ya1{bottom:209.946667pt;}
.yd1{bottom:211.546667pt;}
.y5e{bottom:212.186667pt;}
.y29{bottom:222.266667pt;}
.ya0{bottom:228.666667pt;}
.yd0{bottom:230.266667pt;}
.y5d{bottom:230.906667pt;}
.y28{bottom:240.986667pt;}
.y9f{bottom:247.386667pt;}
.ycf{bottom:248.986667pt;}
.y5c{bottom:249.626667pt;}
.y27{bottom:259.706667pt;}
.y9e{bottom:266.106667pt;}
.yce{bottom:267.706667pt;}
.y5b{bottom:268.346667pt;}
.y26{bottom:278.426667pt;}
.y9d{bottom:284.826667pt;}
.ycd{bottom:286.426667pt;}
.y5a{bottom:287.066667pt;}
.y25{bottom:297.186667pt;}
.y9c{bottom:303.586667pt;}
.ycc{bottom:305.186667pt;}
.y59{bottom:305.826667pt;}
.y24{bottom:315.906667pt;}
.y9b{bottom:322.306667pt;}
.ycb{bottom:323.906667pt;}
.y58{bottom:324.546667pt;}
.y23{bottom:334.626667pt;}
.y9a{bottom:341.026667pt;}
.yca{bottom:342.626667pt;}
.y57{bottom:343.266667pt;}
.y22{bottom:353.346667pt;}
.y99{bottom:359.746667pt;}
.yc9{bottom:361.346667pt;}
.y56{bottom:361.986667pt;}
.y21{bottom:372.066667pt;}
.y98{bottom:379.106667pt;}
.yc8{bottom:379.906667pt;}
.y55{bottom:380.706667pt;}
.y20{bottom:390.786667pt;}
.yc7{bottom:398.626667pt;}
.y54{bottom:399.426667pt;}
.y97{bottom:404.386667pt;}
.y1f{bottom:409.506667pt;}
.yc6{bottom:417.346667pt;}
.y53{bottom:418.146667pt;}
.y96{bottom:423.106667pt;}
.y1e{bottom:428.226667pt;}
.y85{bottom:434.786667pt;}
.yc5{bottom:436.066667pt;}
.y52{bottom:436.866667pt;}
.y95{bottom:441.826667pt;}
.y1d{bottom:446.946667pt;}
.y84{bottom:453.506667pt;}
.yc4{bottom:454.786667pt;}
.y51{bottom:455.586667pt;}
.y94{bottom:460.546667pt;}
.y1c{bottom:465.666667pt;}
.y83{bottom:472.226667pt;}
.yc3{bottom:473.506667pt;}
.y50{bottom:474.306667pt;}
.y93{bottom:479.266667pt;}
.y1b{bottom:484.386667pt;}
.y82{bottom:490.946667pt;}
.yc2{bottom:492.226667pt;}
.y4f{bottom:493.026667pt;}
.y92{bottom:497.986667pt;}
.y1a{bottom:503.106667pt;}
.y81{bottom:503.746667pt;}
.yc1{bottom:510.946667pt;}
.y4e{bottom:511.746667pt;}
.y91{bottom:516.706667pt;}
.y19{bottom:521.826667pt;}
.y7f{bottom:522.466667pt;}
.yc0{bottom:529.693333pt;}
.y4d{bottom:530.493333pt;}
.y90{bottom:535.453333pt;}
.y18{bottom:540.573333pt;}
.ybf{bottom:548.413333pt;}
.y4c{bottom:549.213333pt;}
.y8f{bottom:554.173333pt;}
.ybe{bottom:567.133333pt;}
.y4b{bottom:567.933333pt;}
.y8e{bottom:572.893333pt;}
.y7d{bottom:578.653333pt;}
.y17{bottom:580.093333pt;}
.ybd{bottom:585.853333pt;}
.y4a{bottom:586.493333pt;}
.y8d{bottom:587.933333pt;}
.ybc{bottom:604.573333pt;}
.y49{bottom:605.213333pt;}
.y16{bottom:606.653333pt;}
.ybb{bottom:623.293333pt;}
.y48{bottom:623.933333pt;}
.y15{bottom:625.373333pt;}
.y7c{bottom:634.813333pt;}
.yba{bottom:642.013333pt;}
.y47{bottom:642.653333pt;}
.y14{bottom:644.093333pt;}
.y7b{bottom:653.533333pt;}
.yb9{bottom:654.813333pt;}
.y46{bottom:661.373333pt;}
.y13{bottom:662.813333pt;}
.y7a{bottom:672.253333pt;}
.y45{bottom:680.093333pt;}
.y12{bottom:681.533333pt;}
.y79{bottom:690.973333pt;}
.yb8{bottom:692.893333pt;}
.y44{bottom:698.813333pt;}
.y11{bottom:700.253333pt;}
.y78{bottom:710.333333pt;}
.yb7{bottom:711.613333pt;}
.y43{bottom:717.533333pt;}
.y10{bottom:718.973333pt;}
.yb6{bottom:730.333333pt;}
.y77{bottom:735.613333pt;}
.y42{bottom:736.253333pt;}
.yf{bottom:737.693333pt;}
.yb5{bottom:749.053333pt;}
.y76{bottom:754.333333pt;}
.y41{bottom:754.973333pt;}
.ye{bottom:756.413333pt;}
.yb4{bottom:767.813333pt;}
.y75{bottom:773.093333pt;}
.y40{bottom:773.733333pt;}
.yd{bottom:775.333333pt;}
.yb3{bottom:786.533333pt;}
.y74{bottom:791.813333pt;}
.y3f{bottom:792.453333pt;}
.yc{bottom:795.973333pt;}
.yb2{bottom:805.253333pt;}
.y73{bottom:810.533333pt;}
.y3e{bottom:811.173333pt;}
.yb{bottom:819.333333pt;}
.yb1{bottom:823.973333pt;}
.y72{bottom:829.253333pt;}
.y3d{bottom:829.893333pt;}
.ya{bottom:834.053333pt;}
.yb0{bottom:842.693333pt;}
.y71{bottom:847.973333pt;}
.y3c{bottom:848.613333pt;}
.y9{bottom:854.693333pt;}
.yaf{bottom:861.413333pt;}
.y70{bottom:866.693333pt;}
.y3b{bottom:867.333333pt;}
.y8{bottom:874.533333pt;}
.yae{bottom:880.133333pt;}
.y6f{bottom:885.413333pt;}
.y3a{bottom:886.053333pt;}
.y7{bottom:896.933333pt;}
.yad{bottom:898.853333pt;}
.y6e{bottom:904.133333pt;}
.y39{bottom:904.773333pt;}
.y8c{bottom:915.493333pt;}
.yac{bottom:917.573333pt;}
.y6d{bottom:922.853333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y8b{bottom:934.213333pt;}
.yab{bottom:936.293333pt;}
.y6c{bottom:941.573333pt;}
.y37{bottom:942.213333pt;}
.y8a{bottom:952.933333pt;}
.y6b{bottom:954.373333pt;}
.yaa{bottom:955.013333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.ya9{bottom:973.733333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y68{bottom:992.453333pt;}
.y34{bottom:998.373333pt;}
.y6a{bottom:1011.200000pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y67{bottom:1029.920000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hc{height:18.720000pt;}
.he{height:18.752000pt;}
.h8{height:34.374375pt;}
.hb{height:37.440000pt;}
.hd{height:37.472000pt;}
.h11{height:40.125312pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.hf{height:56.160000pt;}
.h10{height:56.192000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.ha{height:63.656250pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:53.760000pt;}
.w6{width:60.000000pt;}
.wc{width:66.240000pt;}
.we{width:103.872000pt;}
.wd{width:141.786667pt;}
.wb{width:144.666667pt;}
.w3{width:160.506667pt;}
.w7{width:185.626667pt;}
.w8{width:208.066667pt;}
.w4{width:377.986667pt;}
.w9{width:453.693333pt;}
.wf{width:510.333333pt;}
.w5{width:538.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x6{left:47.999988pt;}
.x7{left:62.399988pt;}
.x16{left:67.199988pt;}
.x17{left:91.231988pt;}
.x8{left:114.272000pt;}
.xb{left:152.026667pt;}
.x5{left:153.946655pt;}
.x12{left:205.786667pt;}
.xc{left:212.026667pt;}
.x3{left:254.786655pt;}
.xf{left:270.146655pt;}
.xa{left:274.946667pt;}
.x2{left:311.586655pt;}
.x11{left:313.666655pt;}
.x13{left:350.466667pt;}
.x4{left:372.546655pt;}
.xd{left:397.666667pt;}
.x14{left:416.706667pt;}
.x1{left:426.013322pt;}
.x15{left:558.493333pt;}
.x10{left:697.093322pt;}
.xe{left:724.453322pt;}
.x18{left:746.053322pt;}
}




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