
    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_140738d1a90e591164484874.woff')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_e932ba646b24b889112fdf4e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_33a032937972760b621260b8.woff')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_7e77c54b18ecb16c32895c37.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.570000px;}
.ls4{letter-spacing:-0.463800px;}
.ls1e{letter-spacing:-0.431400px;}
.lsb{letter-spacing:-0.326400px;}
.ls5{letter-spacing:-0.310800px;}
.ls17{letter-spacing:-0.306000px;}
.ls10{letter-spacing:-0.240600px;}
.ls3{letter-spacing:-0.132600px;}
.ls11{letter-spacing:-0.091200px;}
.ls9{letter-spacing:-0.067200px;}
.lsd{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.041040px;}
.ls7{letter-spacing:-0.020160px;}
.ls12{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.ls18{letter-spacing:0.075000px;}
.ls0{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.174000px;}
.lse{letter-spacing:0.175200px;}
.ls8{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.393600px;}
.lsa{letter-spacing:0.479400px;}
.ls1b{letter-spacing:3.774000px;}
.ls1a{letter-spacing:4.494000px;}
.ls14{letter-spacing:6.630240px;}
.ls13{letter-spacing:10.230240px;}
.ls1d{letter-spacing:12.186720px;}
.ls1c{letter-spacing:42.426720px;}
.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;}
}
.ws5{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws8{word-spacing:-13.680960px;}
.wsf{word-spacing:-13.580760px;}
.ws6{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.464720px;}
.ws9{word-spacing:-13.447440px;}
.wsa{word-spacing:-12.204000px;}
.wse{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:73.836000px;}
.wsc{word-spacing:74.460000px;}
._1e{margin-left:-532.558560px;}
._20{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._18{margin-left:-233.737200px;}
._13{margin-left:-232.410240px;}
._17{margin-left:-219.434640px;}
._22{margin-left:-203.408640px;}
._11{margin-left:-202.146240px;}
._19{margin-left:-199.946880px;}
._21{margin-left:-188.893440px;}
._28{margin-left:-172.182240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._25{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._27{margin-left:-142.858800px;}
._e{margin-left:-134.192160px;}
._12{margin-left:-116.242560px;}
._26{margin-left:-110.054880px;}
._1d{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._14{margin-left:-82.131840px;}
._23{margin-left:-80.367360px;}
._16{margin-left:-66.703680px;}
._15{margin-left:-49.583280px;}
._24{margin-left:-34.410240px;}
._1a{margin-left:-30.741360px;}
._3c{margin-left:-6.706080px;}
._2b{margin-left:-5.497920px;}
._29{margin-left:-4.288920px;}
._34{margin-left:-3.283200px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._1f{width:1.082160px;}
._2c{width:2.313840px;}
._2d{width:3.590160px;}
._2e{width:4.601520px;}
._2f{width:5.796720px;}
._33{width:7.234560px;}
._32{width:8.665200px;}
._3a{width:9.678240px;}
._31{width:10.684080px;}
._30{width:11.892240px;}
._35{width:15.179040px;}
._36{width:16.194960px;}
._3b{width:17.254800px;}
._2a{width:25.981200px;}
._39{width:82.857840px;}
._37{width:196.203840px;}
._38{width:206.394000px;}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs9{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:86.400000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y76{bottom:6.660000px;}
.y8c{bottom:13.176000px;}
.yae{bottom:17.670000px;}
.y75{bottom:27.720000px;}
.y86{bottom:30.750000px;}
.y6{bottom:61.560000px;}
.y87{bottom:73.515000px;}
.yd8{bottom:94.500000px;}
.y31{bottom:99.720000px;}
.y7e{bottom:105.300000px;}
.yd7{bottom:111.960000px;}
.y82{bottom:113.430000px;}
.yc5{bottom:115.380000px;}
.y88{bottom:116.280000px;}
.y63{bottom:118.440000px;}
.y30{bottom:120.780000px;}
.y7d{bottom:122.400000px;}
.y7f{bottom:123.840000px;}
.y85{bottom:130.470000px;}
.yc4{bottom:136.440000px;}
.yab{bottom:138.960000px;}
.y62{bottom:139.500000px;}
.y2f{bottom:141.840000px;}
.y84{bottom:147.030000px;}
.yc3{bottom:157.530000px;}
.y89{bottom:159.090000px;}
.yaa{bottom:160.050000px;}
.y61{bottom:160.590000px;}
.y2e{bottom:162.930000px;}
.y81{bottom:173.235000px;}
.yc2{bottom:178.590000px;}
.ya9{bottom:181.110000px;}
.y60{bottom:181.650000px;}
.y2d{bottom:183.990000px;}
.y80{bottom:189.795000px;}
.yc1{bottom:199.650000px;}
.y8a{bottom:201.855000px;}
.ya8{bottom:202.170000px;}
.y5f{bottom:202.710000px;}
.y2c{bottom:205.050000px;}
.yc0{bottom:220.710000px;}
.ya7{bottom:223.230000px;}
.y5e{bottom:223.770000px;}
.y2b{bottom:226.110000px;}
.y83{bottom:233.205000px;}
.ybf{bottom:241.770000px;}
.ya6{bottom:244.290000px;}
.y8b{bottom:244.650000px;}
.y5d{bottom:244.830000px;}
.y2a{bottom:247.170000px;}
.yad{bottom:262.365000px;}
.ybe{bottom:262.830000px;}
.ya5{bottom:265.350000px;}
.y5c{bottom:265.890000px;}
.y29{bottom:268.230000px;}
.y8e{bottom:273.810000px;}
.ybd{bottom:283.890000px;}
.ya4{bottom:286.410000px;}
.y5b{bottom:286.950000px;}
.y28{bottom:289.290000px;}
.ybc{bottom:304.950000px;}
.y8d{bottom:307.155000px;}
.ya3{bottom:307.470000px;}
.y5a{bottom:308.010000px;}
.y27{bottom:310.350000px;}
.yd6{bottom:326.010000px;}
.ya2{bottom:328.530000px;}
.y26{bottom:331.410000px;}
.ybb{bottom:335.010000px;}
.y59{bottom:338.070000px;}
.yd5{bottom:347.070000px;}
.y25{bottom:352.470000px;}
.yba{bottom:356.070000px;}
.ya1{bottom:358.590000px;}
.y58{bottom:359.130000px;}
.yd4{bottom:368.130000px;}
.y24{bottom:373.530000px;}
.yb9{bottom:377.130000px;}
.ya0{bottom:379.650000px;}
.y57{bottom:380.190000px;}
.yd3{bottom:389.190000px;}
.y23{bottom:394.410000px;}
.yb8{bottom:398.190000px;}
.y9f{bottom:400.755000px;}
.y56{bottom:401.295000px;}
.yd2{bottom:410.295000px;}
.y22{bottom:415.515000px;}
.yb7{bottom:419.295000px;}
.y9e{bottom:421.815000px;}
.y55{bottom:422.355000px;}
.yd1{bottom:431.355000px;}
.y21{bottom:436.575000px;}
.yb6{bottom:440.355000px;}
.y9d{bottom:442.875000px;}
.y54{bottom:443.415000px;}
.yd0{bottom:452.415000px;}
.y20{bottom:457.635000px;}
.yb5{bottom:461.415000px;}
.y9c{bottom:463.935000px;}
.y53{bottom:464.475000px;}
.y7c{bottom:468.975000px;}
.ycf{bottom:473.475000px;}
.y1f{bottom:481.215000px;}
.yb4{bottom:482.475000px;}
.y9b{bottom:484.995000px;}
.y7b{bottom:490.035000px;}
.y52{bottom:494.535000px;}
.yb3{bottom:503.535000px;}
.y9a{bottom:506.055000px;}
.y1e{bottom:511.095000px;}
.y51{bottom:515.595000px;}
.yb2{bottom:524.595000px;}
.y99{bottom:527.115000px;}
.y1d{bottom:532.155000px;}
.y50{bottom:536.655000px;}
.y98{bottom:544.215000px;}
.yac{bottom:544.860000px;}
.yb1{bottom:545.655000px;}
.y1c{bottom:553.215000px;}
.y4f{bottom:557.715000px;}
.yb0{bottom:566.715000px;}
.y7a{bottom:568.335000px;}
.y1b{bottom:574.275000px;}
.y4e{bottom:578.775000px;}
.yaf{bottom:587.775000px;}
.y79{bottom:590.115000px;}
.y1a{bottom:595.335000px;}
.yce{bottom:599.835000px;}
.y4d{bottom:608.835000px;}
.y78{bottom:611.895000px;}
.y19{bottom:616.395000px;}
.ycd{bottom:620.895000px;}
.y4c{bottom:629.895000px;}
.y77{bottom:633.675000px;}
.y18{bottom:637.455000px;}
.ycc{bottom:641.775000px;}
.y4b{bottom:650.805000px;}
.y74{bottom:655.485000px;}
.y17{bottom:658.545000px;}
.ycb{bottom:662.865000px;}
.y4a{bottom:671.865000px;}
.y16{bottom:679.605000px;}
.yca{bottom:683.925000px;}
.y49{bottom:692.925000px;}
.y15{bottom:700.665000px;}
.y73{bottom:704.985000px;}
.y48{bottom:713.985000px;}
.y14{bottom:721.725000px;}
.y72{bottom:726.045000px;}
.y47{bottom:735.045000px;}
.y13{bottom:742.785000px;}
.y71{bottom:747.105000px;}
.y46{bottom:756.105000px;}
.y12{bottom:763.845000px;}
.y70{bottom:768.165000px;}
.y11{bottom:784.905000px;}
.y45{bottom:786.165000px;}
.y6f{bottom:789.225000px;}
.y10{bottom:805.965000px;}
.y44{bottom:807.225000px;}
.y6e{bottom:810.285000px;}
.yf{bottom:827.025000px;}
.y43{bottom:828.285000px;}
.y6d{bottom:831.345000px;}
.y97{bottom:845.745000px;}
.ye{bottom:848.085000px;}
.y42{bottom:849.345000px;}
.y6c{bottom:852.405000px;}
.y96{bottom:866.625000px;}
.yd{bottom:869.145000px;}
.y41{bottom:870.405000px;}
.y6b{bottom:873.465000px;}
.y95{bottom:887.685000px;}
.y40{bottom:891.465000px;}
.yc{bottom:892.365000px;}
.y6a{bottom:894.525000px;}
.yc9{bottom:903.570000px;}
.y94{bottom:908.790000px;}
.y3f{bottom:912.570000px;}
.yb{bottom:913.470000px;}
.y69{bottom:915.630000px;}
.yc8{bottom:924.630000px;}
.y93{bottom:929.850000px;}
.y3e{bottom:933.630000px;}
.ya{bottom:935.430000px;}
.y68{bottom:936.690000px;}
.y92{bottom:945.150000px;}
.yc7{bottom:945.690000px;}
.y3d{bottom:954.690000px;}
.y9{bottom:957.750000px;}
.yc6{bottom:966.750000px;}
.y91{bottom:966.930000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:982.950000px;}
.y67{bottom:987.810000px;}
.y90{bottom:988.710000px;}
.y3b{bottom:996.810000px;}
.y66{bottom:1008.870000px;}
.y8f{bottom:1010.490000px;}
.y7{bottom:1016.610000px;}
.y3a{bottom:1017.870000px;}
.y65{bottom:1029.930000px;}
.y39{bottom:1038.930000px;}
.y64{bottom:1050.990000px;}
.y5{bottom:1055.310000px;}
.y38{bottom:1059.990000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1086.090000px;}
.y36{bottom:1102.110000px;}
.y3{bottom:1116.870000px;}
.y35{bottom:1123.170000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1147.500000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.hb{height:21.060000px;}
.ha{height:21.096000px;}
.h9{height:42.120000px;}
.hd{height:53.709961px;}
.he{height:53.853187px;}
.h8{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:71.613281px;}
.hf{height:83.787539px;}
.h11{height:85.935938px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h10{height:294.300000px;}
.hc{height:338.580000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:349.770000px;}
.w4{width:349.950000px;}
.w5{width:694.080000px;}
.w6{width:700.200000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x13{left:9.792000px;}
.x14{left:49.932000px;}
.x6{left:53.999987px;}
.xd{left:81.360000px;}
.xe{left:86.400000px;}
.x7{left:96.336000px;}
.xc{left:98.820000px;}
.x1b{left:108.035987px;}
.x5{left:176.429987px;}
.x19{left:221.010000px;}
.x15{left:223.590000px;}
.xf{left:231.915000px;}
.x3{left:271.514987px;}
.x16{left:275.790000px;}
.x1a{left:293.220000px;}
.x2{left:350.534987px;}
.xb{left:352.154987px;}
.x18{left:360.434987px;}
.x10{left:373.290000px;}
.x4{left:418.214987px;}
.x9{left:446.865000px;}
.x1{left:478.544987px;}
.x11{left:559.110000px;}
.x12{left:561.990000px;}
.xa{left:794.129987px;}
.x17{left:797.549987px;}
.x1c{left:839.339987px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.506667pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls1e{letter-spacing:-0.383467pt;}
.lsb{letter-spacing:-0.290133pt;}
.ls5{letter-spacing:-0.276267pt;}
.ls17{letter-spacing:-0.272000pt;}
.ls10{letter-spacing:-0.213867pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls11{letter-spacing:-0.081067pt;}
.ls9{letter-spacing:-0.059733pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.036480pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.ls18{letter-spacing:0.066667pt;}
.ls0{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.155733pt;}
.ls8{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.349867pt;}
.lsa{letter-spacing:0.426133pt;}
.ls1b{letter-spacing:3.354667pt;}
.ls1a{letter-spacing:3.994667pt;}
.ls14{letter-spacing:5.893547pt;}
.ls13{letter-spacing:9.093547pt;}
.ls1d{letter-spacing:10.832640pt;}
.ls1c{letter-spacing:37.712640pt;}
.ws5{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.160853pt;}
.wsf{word-spacing:-12.071787pt;}
.ws6{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.968640pt;}
.ws9{word-spacing:-11.953280pt;}
.wsa{word-spacing:-10.848000pt;}
.wse{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:65.632000pt;}
.wsc{word-spacing:66.186667pt;}
._1e{margin-left:-473.385387pt;}
._20{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._18{margin-left:-207.766400pt;}
._13{margin-left:-206.586880pt;}
._17{margin-left:-195.053013pt;}
._22{margin-left:-180.807680pt;}
._11{margin-left:-179.685547pt;}
._19{margin-left:-177.730560pt;}
._21{margin-left:-167.905280pt;}
._28{margin-left:-153.050880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._25{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._27{margin-left:-126.985600pt;}
._e{margin-left:-119.281920pt;}
._12{margin-left:-103.326720pt;}
._26{margin-left:-97.826560pt;}
._1d{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._14{margin-left:-73.006080pt;}
._23{margin-left:-71.437653pt;}
._16{margin-left:-59.292160pt;}
._15{margin-left:-44.074027pt;}
._24{margin-left:-30.586880pt;}
._1a{margin-left:-27.325653pt;}
._3c{margin-left:-5.960960pt;}
._2b{margin-left:-4.887040pt;}
._29{margin-left:-3.812373pt;}
._34{margin-left:-2.918400pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._1f{width:0.961920pt;}
._2c{width:2.056747pt;}
._2d{width:3.191253pt;}
._2e{width:4.090240pt;}
._2f{width:5.152640pt;}
._33{width:6.430720pt;}
._32{width:7.702400pt;}
._3a{width:8.602880pt;}
._31{width:9.496960pt;}
._30{width:10.570880pt;}
._35{width:13.492480pt;}
._36{width:14.395520pt;}
._3b{width:15.337600pt;}
._2a{width:23.094400pt;}
._39{width:73.651413pt;}
._37{width:174.403413pt;}
._38{width:183.461333pt;}
.fs9{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:76.800000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:5.920000pt;}
.y8c{bottom:11.712000pt;}
.yae{bottom:15.706667pt;}
.y75{bottom:24.640000pt;}
.y86{bottom:27.333333pt;}
.y6{bottom:54.720000pt;}
.y87{bottom:65.346667pt;}
.yd8{bottom:84.000000pt;}
.y31{bottom:88.640000pt;}
.y7e{bottom:93.600000pt;}
.yd7{bottom:99.520000pt;}
.y82{bottom:100.826667pt;}
.yc5{bottom:102.560000pt;}
.y88{bottom:103.360000pt;}
.y63{bottom:105.280000pt;}
.y30{bottom:107.360000pt;}
.y7d{bottom:108.800000pt;}
.y7f{bottom:110.080000pt;}
.y85{bottom:115.973333pt;}
.yc4{bottom:121.280000pt;}
.yab{bottom:123.520000pt;}
.y62{bottom:124.000000pt;}
.y2f{bottom:126.080000pt;}
.y84{bottom:130.693333pt;}
.yc3{bottom:140.026667pt;}
.y89{bottom:141.413333pt;}
.yaa{bottom:142.266667pt;}
.y61{bottom:142.746667pt;}
.y2e{bottom:144.826667pt;}
.y81{bottom:153.986667pt;}
.yc2{bottom:158.746667pt;}
.ya9{bottom:160.986667pt;}
.y60{bottom:161.466667pt;}
.y2d{bottom:163.546667pt;}
.y80{bottom:168.706667pt;}
.yc1{bottom:177.466667pt;}
.y8a{bottom:179.426667pt;}
.ya8{bottom:179.706667pt;}
.y5f{bottom:180.186667pt;}
.y2c{bottom:182.266667pt;}
.yc0{bottom:196.186667pt;}
.ya7{bottom:198.426667pt;}
.y5e{bottom:198.906667pt;}
.y2b{bottom:200.986667pt;}
.y83{bottom:207.293333pt;}
.ybf{bottom:214.906667pt;}
.ya6{bottom:217.146667pt;}
.y8b{bottom:217.466667pt;}
.y5d{bottom:217.626667pt;}
.y2a{bottom:219.706667pt;}
.yad{bottom:233.213333pt;}
.ybe{bottom:233.626667pt;}
.ya5{bottom:235.866667pt;}
.y5c{bottom:236.346667pt;}
.y29{bottom:238.426667pt;}
.y8e{bottom:243.386667pt;}
.ybd{bottom:252.346667pt;}
.ya4{bottom:254.586667pt;}
.y5b{bottom:255.066667pt;}
.y28{bottom:257.146667pt;}
.ybc{bottom:271.066667pt;}
.y8d{bottom:273.026667pt;}
.ya3{bottom:273.306667pt;}
.y5a{bottom:273.786667pt;}
.y27{bottom:275.866667pt;}
.yd6{bottom:289.786667pt;}
.ya2{bottom:292.026667pt;}
.y26{bottom:294.586667pt;}
.ybb{bottom:297.786667pt;}
.y59{bottom:300.506667pt;}
.yd5{bottom:308.506667pt;}
.y25{bottom:313.306667pt;}
.yba{bottom:316.506667pt;}
.ya1{bottom:318.746667pt;}
.y58{bottom:319.226667pt;}
.yd4{bottom:327.226667pt;}
.y24{bottom:332.026667pt;}
.yb9{bottom:335.226667pt;}
.ya0{bottom:337.466667pt;}
.y57{bottom:337.946667pt;}
.yd3{bottom:345.946667pt;}
.y23{bottom:350.586667pt;}
.yb8{bottom:353.946667pt;}
.y9f{bottom:356.226667pt;}
.y56{bottom:356.706667pt;}
.yd2{bottom:364.706667pt;}
.y22{bottom:369.346667pt;}
.yb7{bottom:372.706667pt;}
.y9e{bottom:374.946667pt;}
.y55{bottom:375.426667pt;}
.yd1{bottom:383.426667pt;}
.y21{bottom:388.066667pt;}
.yb6{bottom:391.426667pt;}
.y9d{bottom:393.666667pt;}
.y54{bottom:394.146667pt;}
.yd0{bottom:402.146667pt;}
.y20{bottom:406.786667pt;}
.yb5{bottom:410.146667pt;}
.y9c{bottom:412.386667pt;}
.y53{bottom:412.866667pt;}
.y7c{bottom:416.866667pt;}
.ycf{bottom:420.866667pt;}
.y1f{bottom:427.746667pt;}
.yb4{bottom:428.866667pt;}
.y9b{bottom:431.106667pt;}
.y7b{bottom:435.586667pt;}
.y52{bottom:439.586667pt;}
.yb3{bottom:447.586667pt;}
.y9a{bottom:449.826667pt;}
.y1e{bottom:454.306667pt;}
.y51{bottom:458.306667pt;}
.yb2{bottom:466.306667pt;}
.y99{bottom:468.546667pt;}
.y1d{bottom:473.026667pt;}
.y50{bottom:477.026667pt;}
.y98{bottom:483.746667pt;}
.yac{bottom:484.320000pt;}
.yb1{bottom:485.026667pt;}
.y1c{bottom:491.746667pt;}
.y4f{bottom:495.746667pt;}
.yb0{bottom:503.746667pt;}
.y7a{bottom:505.186667pt;}
.y1b{bottom:510.466667pt;}
.y4e{bottom:514.466667pt;}
.yaf{bottom:522.466667pt;}
.y79{bottom:524.546667pt;}
.y1a{bottom:529.186667pt;}
.yce{bottom:533.186667pt;}
.y4d{bottom:541.186667pt;}
.y78{bottom:543.906667pt;}
.y19{bottom:547.906667pt;}
.ycd{bottom:551.906667pt;}
.y4c{bottom:559.906667pt;}
.y77{bottom:563.266667pt;}
.y18{bottom:566.626667pt;}
.ycc{bottom:570.466667pt;}
.y4b{bottom:578.493333pt;}
.y74{bottom:582.653333pt;}
.y17{bottom:585.373333pt;}
.ycb{bottom:589.213333pt;}
.y4a{bottom:597.213333pt;}
.y16{bottom:604.093333pt;}
.yca{bottom:607.933333pt;}
.y49{bottom:615.933333pt;}
.y15{bottom:622.813333pt;}
.y73{bottom:626.653333pt;}
.y48{bottom:634.653333pt;}
.y14{bottom:641.533333pt;}
.y72{bottom:645.373333pt;}
.y47{bottom:653.373333pt;}
.y13{bottom:660.253333pt;}
.y71{bottom:664.093333pt;}
.y46{bottom:672.093333pt;}
.y12{bottom:678.973333pt;}
.y70{bottom:682.813333pt;}
.y11{bottom:697.693333pt;}
.y45{bottom:698.813333pt;}
.y6f{bottom:701.533333pt;}
.y10{bottom:716.413333pt;}
.y44{bottom:717.533333pt;}
.y6e{bottom:720.253333pt;}
.yf{bottom:735.133333pt;}
.y43{bottom:736.253333pt;}
.y6d{bottom:738.973333pt;}
.y97{bottom:751.773333pt;}
.ye{bottom:753.853333pt;}
.y42{bottom:754.973333pt;}
.y6c{bottom:757.693333pt;}
.y96{bottom:770.333333pt;}
.yd{bottom:772.573333pt;}
.y41{bottom:773.693333pt;}
.y6b{bottom:776.413333pt;}
.y95{bottom:789.053333pt;}
.y40{bottom:792.413333pt;}
.yc{bottom:793.213333pt;}
.y6a{bottom:795.133333pt;}
.yc9{bottom:803.173333pt;}
.y94{bottom:807.813333pt;}
.y3f{bottom:811.173333pt;}
.yb{bottom:811.973333pt;}
.y69{bottom:813.893333pt;}
.yc8{bottom:821.893333pt;}
.y93{bottom:826.533333pt;}
.y3e{bottom:829.893333pt;}
.ya{bottom:831.493333pt;}
.y68{bottom:832.613333pt;}
.y92{bottom:840.133333pt;}
.yc7{bottom:840.613333pt;}
.y3d{bottom:848.613333pt;}
.y9{bottom:851.333333pt;}
.yc6{bottom:859.333333pt;}
.y91{bottom:859.493333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:873.733333pt;}
.y67{bottom:878.053333pt;}
.y90{bottom:878.853333pt;}
.y3b{bottom:886.053333pt;}
.y66{bottom:896.773333pt;}
.y8f{bottom:898.213333pt;}
.y7{bottom:903.653333pt;}
.y3a{bottom:904.773333pt;}
.y65{bottom:915.493333pt;}
.y39{bottom:923.493333pt;}
.y64{bottom:934.213333pt;}
.y5{bottom:938.053333pt;}
.y38{bottom:942.213333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:965.413333pt;}
.y36{bottom:979.653333pt;}
.y3{bottom:992.773333pt;}
.y35{bottom:998.373333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1020.000000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.ha{height:18.752000pt;}
.h9{height:37.440000pt;}
.hd{height:47.742188pt;}
.he{height:47.869500pt;}
.h8{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:63.656250pt;}
.hf{height:74.477812pt;}
.h11{height:76.387500pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h10{height:261.600000pt;}
.hc{height:300.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:310.906667pt;}
.w4{width:311.066667pt;}
.w5{width:616.960000pt;}
.w6{width:622.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x13{left:8.704000pt;}
.x14{left:44.384000pt;}
.x6{left:47.999988pt;}
.xd{left:72.320000pt;}
.xe{left:76.800000pt;}
.x7{left:85.632000pt;}
.xc{left:87.840000pt;}
.x1b{left:96.031988pt;}
.x5{left:156.826655pt;}
.x19{left:196.453333pt;}
.x15{left:198.746667pt;}
.xf{left:206.146667pt;}
.x3{left:241.346655pt;}
.x16{left:245.146667pt;}
.x1a{left:260.640000pt;}
.x2{left:311.586655pt;}
.xb{left:313.026655pt;}
.x18{left:320.386655pt;}
.x10{left:331.813333pt;}
.x4{left:371.746655pt;}
.x9{left:397.213333pt;}
.x1{left:425.373322pt;}
.x11{left:496.986667pt;}
.x12{left:499.546667pt;}
.xa{left:705.893322pt;}
.x17{left:708.933322pt;}
.x1c{left:746.079988pt;}
}




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