
    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_aa5c2321fab2e6bd7a390579.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_b04ab054e0a0249d798a4084.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_84bbfaff144762f67833ccba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a7abfb02f690a228d043ad2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_0ae7bd6bc1c663707c564752.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_c610f88925517924e82547fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_600bb80d436249dd31d5c79c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_0b4737ad8d7098d57d3e0814.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050000;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_93405dad2d1466a2871975ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_e2b40c203df1ecb0b859c66f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,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;}
.ls17{letter-spacing:-1.632960px;}
.ls32{letter-spacing:-1.614816px;}
.ls2f{letter-spacing:-1.596672px;}
.ls2d{letter-spacing:-1.584576px;}
.ls19{letter-spacing:-1.536192px;}
.ls2c{letter-spacing:-1.518048px;}
.ls18{letter-spacing:-1.505952px;}
.ls28{letter-spacing:-1.499904px;}
.ls30{letter-spacing:-1.457568px;}
.ls2a{letter-spacing:-1.439424px;}
.ls2e{letter-spacing:-1.421280px;}
.ls31{letter-spacing:-1.378944px;}
.ls2b{letter-spacing:-1.360800px;}
.ls29{letter-spacing:-1.342656px;}
.ls10{letter-spacing:-1.209600px;}
.lsf{letter-spacing:-1.202400px;}
.lse{letter-spacing:-1.188000px;}
.lsc{letter-spacing:-0.399168px;}
.lsa{letter-spacing:-0.320544px;}
.lsd{letter-spacing:-0.241920px;}
.ls15{letter-spacing:-0.221760px;}
.ls8{letter-spacing:-0.178848px;}
.ls16{letter-spacing:-0.177408px;}
.ls2{letter-spacing:-0.145728px;}
.ls7{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.120960px;}
.ls6{letter-spacing:-0.066240px;}
.ls3{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.052992px;}
.ls9{letter-spacing:-0.021600px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.202752px;}
.ls1f{letter-spacing:0.328320px;}
.ls1{letter-spacing:0.676656px;}
.ls25{letter-spacing:3.942720px;}
.ls27{letter-spacing:4.446720px;}
.ls22{letter-spacing:5.297760px;}
.ls13{letter-spacing:6.632640px;}
.ls14{letter-spacing:6.634080px;}
.ls20{letter-spacing:6.899040px;}
.ls1c{letter-spacing:7.037136px;}
.ls1d{letter-spacing:7.037280px;}
.ls26{letter-spacing:12.192480px;}
.ls1e{letter-spacing:16.070400px;}
.ls1b{letter-spacing:17.570880px;}
.ls1a{letter-spacing:17.572320px;}
.ls0{letter-spacing:20.131200px;}
.ls24{letter-spacing:20.171520px;}
.ls23{letter-spacing:23.996160px;}
.ls12{letter-spacing:24.544800px;}
.ls21{letter-spacing:27.802080px;}
.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:-18.414720px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.813440px;}
.ws3{word-spacing:-16.812000px;}
.ws5{word-spacing:-16.797600px;}
.ws6{word-spacing:-16.790400px;}
.wsa{word-spacing:-15.277248px;}
.ws8{word-spacing:-15.180480px;}
.wsb{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.878080px;}
.wsd{word-spacing:-13.777344px;}
.wsc{word-spacing:-13.680576px;}
.wse{word-spacing:-13.583808px;}
.ws1{word-spacing:-0.050400px;}
.ws7{word-spacing:0.000000px;}
._1f{margin-left:-2.114208px;}
._0{margin-left:-1.009872px;}
._1{width:1.149120px;}
._6{width:3.040992px;}
._1c{width:4.104000px;}
._5{width:5.112000px;}
._15{width:6.192000px;}
._12{width:7.200000px;}
._b{width:8.496000px;}
._8{width:10.080000px;}
._c{width:11.434320px;}
._d{width:12.582720px;}
._18{width:13.680000px;}
._7{width:14.904000px;}
._24{width:16.571520px;}
._a{width:18.792000px;}
._4{width:20.380464px;}
._3{width:21.960000px;}
._f{width:23.040000px;}
._19{width:24.192000px;}
._9{width:25.272000px;}
._1b{width:26.568000px;}
._16{width:27.792000px;}
._10{width:29.088000px;}
._1d{width:30.197520px;}
._13{width:31.320000px;}
._14{width:33.120000px;}
._17{width:34.128000px;}
._23{width:35.136000px;}
._1a{width:36.216000px;}
._20{width:37.296000px;}
._22{width:38.448000px;}
._11{width:40.032000px;}
._21{width:41.040000px;}
._e{width:42.192000px;}
._1e{width:49.104000px;}
._2{width:55.008000px;}
._27{width:81.456912px;}
._26{width:82.770624px;}
._2a{width:93.018240px;}
._2b{width:94.601952px;}
._2c{width:97.675200px;}
._29{width:120.689856px;}
._28{width:122.210352px;}
._25{width:153.451008px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y35{bottom:94.320000px;}
.y6a{bottom:96.120000px;}
.ya7{bottom:99.360000px;}
.y84{bottom:104.760000px;}
.y34{bottom:115.200000px;}
.y69{bottom:116.640000px;}
.ya6{bottom:120.240000px;}
.y83{bottom:125.640000px;}
.y33{bottom:135.720000px;}
.y68{bottom:137.520000px;}
.ya5{bottom:140.760000px;}
.y32{bottom:156.600000px;}
.y82{bottom:157.680000px;}
.y67{bottom:158.040000px;}
.ya4{bottom:161.640000px;}
.y31{bottom:177.120000px;}
.y66{bottom:178.920000px;}
.ya3{bottom:182.160000px;}
.y30{bottom:198.000000px;}
.y65{bottom:199.440000px;}
.ya2{bottom:203.040000px;}
.ye0{bottom:207.360000px;}
.y2f{bottom:218.520000px;}
.y64{bottom:220.320000px;}
.ya1{bottom:223.560000px;}
.ydf{bottom:224.640000px;}
.y2e{bottom:239.400000px;}
.y63{bottom:240.840000px;}
.yde{bottom:241.920000px;}
.ya0{bottom:244.440000px;}
.ydd{bottom:258.840000px;}
.y2d{bottom:259.920000px;}
.y62{bottom:261.720000px;}
.y9f{bottom:264.960000px;}
.ydc{bottom:276.120000px;}
.y2c{bottom:280.800000px;}
.y81{bottom:282.240000px;}
.y9e{bottom:285.840000px;}
.ydb{bottom:293.400000px;}
.y61{bottom:294.120000px;}
.y80{bottom:303.120000px;}
.y9d{bottom:306.360000px;}
.yda{bottom:310.680000px;}
.y2b{bottom:313.200000px;}
.y60{bottom:315.000000px;}
.y7f{bottom:323.640000px;}
.y9c{bottom:327.240000px;}
.yd9{bottom:327.960000px;}
.y5f{bottom:335.880000px;}
.y2a{bottom:342.720000px;}
.y7e{bottom:344.520000px;}
.yd8{bottom:345.240000px;}
.y9b{bottom:347.760000px;}
.y5e{bottom:356.400000px;}
.yd7{bottom:362.520000px;}
.y7d{bottom:365.040000px;}
.y9a{bottom:368.640000px;}
.y29{bottom:372.600000px;}
.y5d{bottom:377.280000px;}
.yd6{bottom:379.800000px;}
.y7c{bottom:385.920000px;}
.y99{bottom:389.160000px;}
.y28{bottom:393.480000px;}
.yd5{bottom:397.080000px;}
.y5c{bottom:397.800000px;}
.y7b{bottom:406.440000px;}
.y98{bottom:410.040000px;}
.y27{bottom:414.360000px;}
.y5b{bottom:418.680000px;}
.y7a{bottom:427.320000px;}
.y97{bottom:430.560000px;}
.yd4{bottom:431.640000px;}
.y5a{bottom:439.200000px;}
.y26{bottom:443.520000px;}
.y79{bottom:447.840000px;}
.yd3{bottom:448.560000px;}
.y96{bottom:451.440000px;}
.y59{bottom:460.080000px;}
.y25{bottom:464.760000px;}
.yd2{bottom:465.840000px;}
.y78{bottom:468.720000px;}
.y95{bottom:471.960000px;}
.y58{bottom:480.600000px;}
.yd1{bottom:483.120000px;}
.y24{bottom:485.280000px;}
.y77{bottom:489.240000px;}
.y94{bottom:492.840000px;}
.yd0{bottom:500.400000px;}
.y57{bottom:501.480000px;}
.y23{bottom:506.160000px;}
.y76{bottom:510.120000px;}
.y93{bottom:513.360000px;}
.ycf{bottom:517.680000px;}
.y56{bottom:522.000000px;}
.y22{bottom:526.680000px;}
.yab{bottom:530.640000px;}
.y92{bottom:534.240000px;}
.yce{bottom:534.960000px;}
.y75{bottom:542.520000px;}
.y55{bottom:542.880000px;}
.y21{bottom:547.560000px;}
.ycd{bottom:552.240000px;}
.y91{bottom:554.760000px;}
.yaa{bottom:563.040000px;}
.y54{bottom:563.400000px;}
.y20{bottom:568.080000px;}
.ycc{bottom:569.520000px;}
.y90{bottom:575.640000px;}
.y53{bottom:584.280000px;}
.ycb{bottom:586.800000px;}
.y1f{bottom:588.960000px;}
.y8f{bottom:596.160000px;}
.yca{bottom:604.080000px;}
.y52{bottom:604.800000px;}
.y1e{bottom:609.480000px;}
.y8e{bottom:617.040000px;}
.yc9{bottom:621.360000px;}
.y51{bottom:625.680000px;}
.y1d{bottom:630.360000px;}
.y8d{bottom:637.560000px;}
.yc8{bottom:638.640000px;}
.y50{bottom:646.200000px;}
.y1c{bottom:650.880000px;}
.yc7{bottom:655.560000px;}
.y8c{bottom:658.440000px;}
.y4f{bottom:667.080000px;}
.y1b{bottom:671.760000px;}
.yc6{bottom:672.840000px;}
.y8b{bottom:678.960000px;}
.y4e{bottom:687.600000px;}
.yc5{bottom:690.120000px;}
.y1a{bottom:692.280000px;}
.y8a{bottom:699.840000px;}
.yc4{bottom:707.400000px;}
.y4d{bottom:708.480000px;}
.y19{bottom:713.160000px;}
.y89{bottom:720.360000px;}
.yc3{bottom:724.680000px;}
.y4c{bottom:729.000000px;}
.y18{bottom:733.680000px;}
.y88{bottom:741.240000px;}
.yc2{bottom:741.960000px;}
.y4b{bottom:749.880000px;}
.y17{bottom:754.560000px;}
.yc1{bottom:759.240000px;}
.y87{bottom:761.760000px;}
.y4a{bottom:770.400000px;}
.y16{bottom:775.080000px;}
.yc0{bottom:776.520000px;}
.y86{bottom:782.280000px;}
.y74{bottom:791.280000px;}
.ybf{bottom:793.800000px;}
.y15{bottom:795.960000px;}
.y49{bottom:802.800000px;}
.y85{bottom:803.160000px;}
.ybe{bottom:811.080000px;}
.y73{bottom:811.800000px;}
.y14{bottom:816.480000px;}
.y48{bottom:823.680000px;}
.ybd{bottom:828.360000px;}
.y72{bottom:832.680000px;}
.y13{bottom:837.360000px;}
.y47{bottom:844.560000px;}
.ybc{bottom:845.280000px;}
.y71{bottom:853.200000px;}
.y12{bottom:857.880000px;}
.ybb{bottom:862.560000px;}
.y46{bottom:865.080000px;}
.y70{bottom:874.080000px;}
.y11{bottom:878.760000px;}
.yba{bottom:879.840000px;}
.y45{bottom:885.960000px;}
.y6f{bottom:894.600000px;}
.yb9{bottom:897.120000px;}
.y10{bottom:899.280000px;}
.y44{bottom:906.480000px;}
.yb8{bottom:914.400000px;}
.y6e{bottom:915.480000px;}
.yf{bottom:919.080000px;}
.y43{bottom:927.360000px;}
.yb7{bottom:931.680000px;}
.ya9{bottom:936.000000px;}
.ye{bottom:936.360000px;}
.y6d{bottom:947.520000px;}
.y42{bottom:947.880000px;}
.yb6{bottom:948.960000px;}
.yd{bottom:953.640000px;}
.yb5{bottom:966.240000px;}
.ya8{bottom:968.400000px;}
.y41{bottom:968.760000px;}
.yc{bottom:980.280000px;}
.yb4{bottom:983.520000px;}
.y40{bottom:989.280000px;}
.yb3{bottom:1000.800000px;}
.yb{bottom:1001.520000px;}
.y3f{bottom:1010.160000px;}
.yb2{bottom:1018.080000px;}
.ya{bottom:1023.840000px;}
.y3e{bottom:1030.680000px;}
.yb1{bottom:1035.360000px;}
.y3d{bottom:1051.560000px;}
.yb0{bottom:1052.280000px;}
.y9{bottom:1054.800000px;}
.yaf{bottom:1069.560000px;}
.y3c{bottom:1072.080000px;}
.y8{bottom:1086.120000px;}
.yae{bottom:1086.840000px;}
.y3b{bottom:1092.960000px;}
.yad{bottom:1104.120000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.yac{bottom:1134.000000px;}
.y39{bottom:1134.360000px;}
.y3{bottom:1146.600000px;}
.y38{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y6c{bottom:1171.800000px;}
.y1{bottom:1190.880000px;}
.y37{bottom:1191.240000px;}
.y36{bottom:1191.600000px;}
.y6b{bottom:1192.320000px;}
.h5{height:24.000000px;}
.hd{height:40.310156px;}
.h9{height:41.993438px;}
.hc{height:42.022969px;}
.h3{height:44.149219px;}
.hb{height:46.448640px;}
.ha{height:48.660480px;}
.h8{height:48.796875px;}
.h7{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:127.439928px;}
.x4{left:154.439928px;}
.xc{left:169.965072px;}
.xa{left:172.021356px;}
.x7{left:181.458612px;}
.xe{left:222.208740px;}
.x2{left:233.702280px;}
.x1{left:242.852076px;}
.x6{left:286.380252px;}
.xb{left:359.052624px;}
.x9{left:367.393320px;}
.x3{left:446.152320px;}
.xd{left:534.392985px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.451520pt;}
.ls32{letter-spacing:-1.435392pt;}
.ls2f{letter-spacing:-1.419264pt;}
.ls2d{letter-spacing:-1.408512pt;}
.ls19{letter-spacing:-1.365504pt;}
.ls2c{letter-spacing:-1.349376pt;}
.ls18{letter-spacing:-1.338624pt;}
.ls28{letter-spacing:-1.333248pt;}
.ls30{letter-spacing:-1.295616pt;}
.ls2a{letter-spacing:-1.279488pt;}
.ls2e{letter-spacing:-1.263360pt;}
.ls31{letter-spacing:-1.225728pt;}
.ls2b{letter-spacing:-1.209600pt;}
.ls29{letter-spacing:-1.193472pt;}
.ls10{letter-spacing:-1.075200pt;}
.lsf{letter-spacing:-1.068800pt;}
.lse{letter-spacing:-1.056000pt;}
.lsc{letter-spacing:-0.354816pt;}
.lsa{letter-spacing:-0.284928pt;}
.lsd{letter-spacing:-0.215040pt;}
.ls15{letter-spacing:-0.197120pt;}
.ls8{letter-spacing:-0.158976pt;}
.ls16{letter-spacing:-0.157696pt;}
.ls2{letter-spacing:-0.129536pt;}
.ls7{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.107520pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.047104pt;}
.ls9{letter-spacing:-0.019200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.180224pt;}
.ls1f{letter-spacing:0.291840pt;}
.ls1{letter-spacing:0.601472pt;}
.ls25{letter-spacing:3.504640pt;}
.ls27{letter-spacing:3.952640pt;}
.ls22{letter-spacing:4.709120pt;}
.ls13{letter-spacing:5.895680pt;}
.ls14{letter-spacing:5.896960pt;}
.ls20{letter-spacing:6.132480pt;}
.ls1c{letter-spacing:6.255232pt;}
.ls1d{letter-spacing:6.255360pt;}
.ls26{letter-spacing:10.837760pt;}
.ls1e{letter-spacing:14.284800pt;}
.ls1b{letter-spacing:15.618560pt;}
.ls1a{letter-spacing:15.619840pt;}
.ls0{letter-spacing:17.894400pt;}
.ls24{letter-spacing:17.930240pt;}
.ls23{letter-spacing:21.329920pt;}
.ls12{letter-spacing:21.817600pt;}
.ls21{letter-spacing:24.712960pt;}
.ws0{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.945280pt;}
.ws3{word-spacing:-14.944000pt;}
.ws5{word-spacing:-14.931200pt;}
.ws6{word-spacing:-14.924800pt;}
.wsa{word-spacing:-13.579776pt;}
.ws8{word-spacing:-13.493760pt;}
.wsb{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.224960pt;}
.wsd{word-spacing:-12.246528pt;}
.wsc{word-spacing:-12.160512pt;}
.wse{word-spacing:-12.074496pt;}
.ws1{word-spacing:-0.044800pt;}
.ws7{word-spacing:0.000000pt;}
._1f{margin-left:-1.879296pt;}
._0{margin-left:-0.897664pt;}
._1{width:1.021440pt;}
._6{width:2.703104pt;}
._1c{width:3.648000pt;}
._5{width:4.544000pt;}
._15{width:5.504000pt;}
._12{width:6.400000pt;}
._b{width:7.552000pt;}
._8{width:8.960000pt;}
._c{width:10.163840pt;}
._d{width:11.184640pt;}
._18{width:12.160000pt;}
._7{width:13.248000pt;}
._24{width:14.730240pt;}
._a{width:16.704000pt;}
._4{width:18.115968pt;}
._3{width:19.520000pt;}
._f{width:20.480000pt;}
._19{width:21.504000pt;}
._9{width:22.464000pt;}
._1b{width:23.616000pt;}
._16{width:24.704000pt;}
._10{width:25.856000pt;}
._1d{width:26.842240pt;}
._13{width:27.840000pt;}
._14{width:29.440000pt;}
._17{width:30.336000pt;}
._23{width:31.232000pt;}
._1a{width:32.192000pt;}
._20{width:33.152000pt;}
._22{width:34.176000pt;}
._11{width:35.584000pt;}
._21{width:36.480000pt;}
._e{width:37.504000pt;}
._1e{width:43.648000pt;}
._2{width:48.896000pt;}
._27{width:72.406144pt;}
._26{width:73.573888pt;}
._2a{width:82.682880pt;}
._2b{width:84.090624pt;}
._2c{width:86.822400pt;}
._29{width:107.279872pt;}
._28{width:108.631424pt;}
._25{width:136.400896pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y35{bottom:83.840000pt;}
.y6a{bottom:85.440000pt;}
.ya7{bottom:88.320000pt;}
.y84{bottom:93.120000pt;}
.y34{bottom:102.400000pt;}
.y69{bottom:103.680000pt;}
.ya6{bottom:106.880000pt;}
.y83{bottom:111.680000pt;}
.y33{bottom:120.640000pt;}
.y68{bottom:122.240000pt;}
.ya5{bottom:125.120000pt;}
.y32{bottom:139.200000pt;}
.y82{bottom:140.160000pt;}
.y67{bottom:140.480000pt;}
.ya4{bottom:143.680000pt;}
.y31{bottom:157.440000pt;}
.y66{bottom:159.040000pt;}
.ya3{bottom:161.920000pt;}
.y30{bottom:176.000000pt;}
.y65{bottom:177.280000pt;}
.ya2{bottom:180.480000pt;}
.ye0{bottom:184.320000pt;}
.y2f{bottom:194.240000pt;}
.y64{bottom:195.840000pt;}
.ya1{bottom:198.720000pt;}
.ydf{bottom:199.680000pt;}
.y2e{bottom:212.800000pt;}
.y63{bottom:214.080000pt;}
.yde{bottom:215.040000pt;}
.ya0{bottom:217.280000pt;}
.ydd{bottom:230.080000pt;}
.y2d{bottom:231.040000pt;}
.y62{bottom:232.640000pt;}
.y9f{bottom:235.520000pt;}
.ydc{bottom:245.440000pt;}
.y2c{bottom:249.600000pt;}
.y81{bottom:250.880000pt;}
.y9e{bottom:254.080000pt;}
.ydb{bottom:260.800000pt;}
.y61{bottom:261.440000pt;}
.y80{bottom:269.440000pt;}
.y9d{bottom:272.320000pt;}
.yda{bottom:276.160000pt;}
.y2b{bottom:278.400000pt;}
.y60{bottom:280.000000pt;}
.y7f{bottom:287.680000pt;}
.y9c{bottom:290.880000pt;}
.yd9{bottom:291.520000pt;}
.y5f{bottom:298.560000pt;}
.y2a{bottom:304.640000pt;}
.y7e{bottom:306.240000pt;}
.yd8{bottom:306.880000pt;}
.y9b{bottom:309.120000pt;}
.y5e{bottom:316.800000pt;}
.yd7{bottom:322.240000pt;}
.y7d{bottom:324.480000pt;}
.y9a{bottom:327.680000pt;}
.y29{bottom:331.200000pt;}
.y5d{bottom:335.360000pt;}
.yd6{bottom:337.600000pt;}
.y7c{bottom:343.040000pt;}
.y99{bottom:345.920000pt;}
.y28{bottom:349.760000pt;}
.yd5{bottom:352.960000pt;}
.y5c{bottom:353.600000pt;}
.y7b{bottom:361.280000pt;}
.y98{bottom:364.480000pt;}
.y27{bottom:368.320000pt;}
.y5b{bottom:372.160000pt;}
.y7a{bottom:379.840000pt;}
.y97{bottom:382.720000pt;}
.yd4{bottom:383.680000pt;}
.y5a{bottom:390.400000pt;}
.y26{bottom:394.240000pt;}
.y79{bottom:398.080000pt;}
.yd3{bottom:398.720000pt;}
.y96{bottom:401.280000pt;}
.y59{bottom:408.960000pt;}
.y25{bottom:413.120000pt;}
.yd2{bottom:414.080000pt;}
.y78{bottom:416.640000pt;}
.y95{bottom:419.520000pt;}
.y58{bottom:427.200000pt;}
.yd1{bottom:429.440000pt;}
.y24{bottom:431.360000pt;}
.y77{bottom:434.880000pt;}
.y94{bottom:438.080000pt;}
.yd0{bottom:444.800000pt;}
.y57{bottom:445.760000pt;}
.y23{bottom:449.920000pt;}
.y76{bottom:453.440000pt;}
.y93{bottom:456.320000pt;}
.ycf{bottom:460.160000pt;}
.y56{bottom:464.000000pt;}
.y22{bottom:468.160000pt;}
.yab{bottom:471.680000pt;}
.y92{bottom:474.880000pt;}
.yce{bottom:475.520000pt;}
.y75{bottom:482.240000pt;}
.y55{bottom:482.560000pt;}
.y21{bottom:486.720000pt;}
.ycd{bottom:490.880000pt;}
.y91{bottom:493.120000pt;}
.yaa{bottom:500.480000pt;}
.y54{bottom:500.800000pt;}
.y20{bottom:504.960000pt;}
.ycc{bottom:506.240000pt;}
.y90{bottom:511.680000pt;}
.y53{bottom:519.360000pt;}
.ycb{bottom:521.600000pt;}
.y1f{bottom:523.520000pt;}
.y8f{bottom:529.920000pt;}
.yca{bottom:536.960000pt;}
.y52{bottom:537.600000pt;}
.y1e{bottom:541.760000pt;}
.y8e{bottom:548.480000pt;}
.yc9{bottom:552.320000pt;}
.y51{bottom:556.160000pt;}
.y1d{bottom:560.320000pt;}
.y8d{bottom:566.720000pt;}
.yc8{bottom:567.680000pt;}
.y50{bottom:574.400000pt;}
.y1c{bottom:578.560000pt;}
.yc7{bottom:582.720000pt;}
.y8c{bottom:585.280000pt;}
.y4f{bottom:592.960000pt;}
.y1b{bottom:597.120000pt;}
.yc6{bottom:598.080000pt;}
.y8b{bottom:603.520000pt;}
.y4e{bottom:611.200000pt;}
.yc5{bottom:613.440000pt;}
.y1a{bottom:615.360000pt;}
.y8a{bottom:622.080000pt;}
.yc4{bottom:628.800000pt;}
.y4d{bottom:629.760000pt;}
.y19{bottom:633.920000pt;}
.y89{bottom:640.320000pt;}
.yc3{bottom:644.160000pt;}
.y4c{bottom:648.000000pt;}
.y18{bottom:652.160000pt;}
.y88{bottom:658.880000pt;}
.yc2{bottom:659.520000pt;}
.y4b{bottom:666.560000pt;}
.y17{bottom:670.720000pt;}
.yc1{bottom:674.880000pt;}
.y87{bottom:677.120000pt;}
.y4a{bottom:684.800000pt;}
.y16{bottom:688.960000pt;}
.yc0{bottom:690.240000pt;}
.y86{bottom:695.360000pt;}
.y74{bottom:703.360000pt;}
.ybf{bottom:705.600000pt;}
.y15{bottom:707.520000pt;}
.y49{bottom:713.600000pt;}
.y85{bottom:713.920000pt;}
.ybe{bottom:720.960000pt;}
.y73{bottom:721.600000pt;}
.y14{bottom:725.760000pt;}
.y48{bottom:732.160000pt;}
.ybd{bottom:736.320000pt;}
.y72{bottom:740.160000pt;}
.y13{bottom:744.320000pt;}
.y47{bottom:750.720000pt;}
.ybc{bottom:751.360000pt;}
.y71{bottom:758.400000pt;}
.y12{bottom:762.560000pt;}
.ybb{bottom:766.720000pt;}
.y46{bottom:768.960000pt;}
.y70{bottom:776.960000pt;}
.y11{bottom:781.120000pt;}
.yba{bottom:782.080000pt;}
.y45{bottom:787.520000pt;}
.y6f{bottom:795.200000pt;}
.yb9{bottom:797.440000pt;}
.y10{bottom:799.360000pt;}
.y44{bottom:805.760000pt;}
.yb8{bottom:812.800000pt;}
.y6e{bottom:813.760000pt;}
.yf{bottom:816.960000pt;}
.y43{bottom:824.320000pt;}
.yb7{bottom:828.160000pt;}
.ya9{bottom:832.000000pt;}
.ye{bottom:832.320000pt;}
.y6d{bottom:842.240000pt;}
.y42{bottom:842.560000pt;}
.yb6{bottom:843.520000pt;}
.yd{bottom:847.680000pt;}
.yb5{bottom:858.880000pt;}
.ya8{bottom:860.800000pt;}
.y41{bottom:861.120000pt;}
.yc{bottom:871.360000pt;}
.yb4{bottom:874.240000pt;}
.y40{bottom:879.360000pt;}
.yb3{bottom:889.600000pt;}
.yb{bottom:890.240000pt;}
.y3f{bottom:897.920000pt;}
.yb2{bottom:904.960000pt;}
.ya{bottom:910.080000pt;}
.y3e{bottom:916.160000pt;}
.yb1{bottom:920.320000pt;}
.y3d{bottom:934.720000pt;}
.yb0{bottom:935.360000pt;}
.y9{bottom:937.600000pt;}
.yaf{bottom:950.720000pt;}
.y3c{bottom:952.960000pt;}
.y8{bottom:965.440000pt;}
.yae{bottom:966.080000pt;}
.y3b{bottom:971.520000pt;}
.yad{bottom:981.440000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.yac{bottom:1008.000000pt;}
.y39{bottom:1008.320000pt;}
.y3{bottom:1019.200000pt;}
.y38{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y6c{bottom:1041.600000pt;}
.y1{bottom:1058.560000pt;}
.y37{bottom:1058.880000pt;}
.y36{bottom:1059.200000pt;}
.y6b{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.hd{height:35.831250pt;}
.h9{height:37.327500pt;}
.hc{height:37.353750pt;}
.h3{height:39.243750pt;}
.hb{height:41.287680pt;}
.ha{height:43.253760pt;}
.h8{height:43.375000pt;}
.h7{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:113.279936pt;}
.x4{left:137.279936pt;}
.xc{left:151.080064pt;}
.xa{left:152.907872pt;}
.x7{left:161.296544pt;}
.xe{left:197.518880pt;}
.x2{left:207.735360pt;}
.x1{left:215.868512pt;}
.x6{left:254.560224pt;}
.xb{left:319.157888pt;}
.x9{left:326.571840pt;}
.x3{left:396.579840pt;}
.xd{left:475.015987pt;}
.x5{left:653.333333pt;}
}




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