
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b551271adc2db08d58ad0224.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_268949cee7462055a19a14b9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_51f7da5f92dd6570cc01aefe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_04328e3e94ad219cde219866.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_42fbbe993e9d1ce4e9ec384a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0add8fe2d577f63cc076a08b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_490ec412b13cd9fd8e2b376d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_c6fc648f9de61cb0391607e2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.444600px;}
.ls12{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls1d{letter-spacing:0.068400px;}
.ls15{letter-spacing:0.069600px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lse{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.275400px;}
.ls14{letter-spacing:0.310200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.893600px;}
.ls1c{letter-spacing:47.726640px;}
.ls1a{letter-spacing:48.446640px;}
.ls19{letter-spacing:80.846640px;}
.ls18{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.424400px;}
.ws9{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.064400px;}
.wsa{word-spacing:-13.039800px;}
.wsd{word-spacing:-10.603200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._2{margin-left:-4.153548px;}
._1{margin-left:-3.008760px;}
._0{margin-left:-1.110000px;}
._4{width:1.106664px;}
._3{width:2.612977px;}
._6{width:3.930673px;}
._a{width:4.967328px;}
._5{width:6.100866px;}
._9{width:7.460226px;}
._8{width:8.467374px;}
._b{width:9.586871px;}
._c{width:11.095849px;}
._d{width:12.220560px;}
._7{width:14.475720px;}
._10{width:15.610680px;}
._11{width:17.939616px;}
._e{width:18.997920px;}
._f{width:20.087400px;}
._12{width:21.177741px;}
._13{width:22.304520px;}
._14{width:23.611659px;}
._16{width:31.414920px;}
._15{width:32.492640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:0.090000px;}
.y79{bottom:0.720000px;}
.y7c{bottom:2.700000px;}
.y6f{bottom:7.830000px;}
.y6d{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y84{bottom:121.440000px;}
.y5b{bottom:130.170000px;}
.y29{bottom:131.070000px;}
.y83{bottom:138.990000px;}
.yd6{bottom:143.130000px;}
.y5a{bottom:147.720000px;}
.y28{bottom:148.620000px;}
.yab{bottom:156.090000px;}
.y82{bottom:156.630000px;}
.yd5{bottom:160.680000px;}
.y59{bottom:165.270000px;}
.y27{bottom:166.260000px;}
.yaa{bottom:173.730000px;}
.y81{bottom:174.180000px;}
.yd4{bottom:178.320000px;}
.y58{bottom:182.910000px;}
.y26{bottom:183.810000px;}
.y80{bottom:191.730000px;}
.ya9{bottom:200.280000px;}
.y57{bottom:200.460000px;}
.y25{bottom:201.450000px;}
.yd3{bottom:204.870000px;}
.ya8{bottom:217.830000px;}
.y56{bottom:218.100000px;}
.y7f{bottom:218.640000px;}
.yd2{bottom:222.510000px;}
.y24{bottom:237.000000px;}
.yd1{bottom:240.060000px;}
.ya7{bottom:244.470000px;}
.y55{bottom:244.650000px;}
.y23{bottom:254.550000px;}
.ya6{bottom:262.020000px;}
.yd0{bottom:266.610000px;}
.y7e{bottom:266.970000px;}
.y22{bottom:272.190000px;}
.y54{bottom:280.200000px;}
.ycf{bottom:284.250000px;}
.y7d{bottom:284.520000px;}
.ya5{bottom:288.660000px;}
.y21{bottom:289.740000px;}
.y53{bottom:297.840000px;}
.yce{bottom:301.800000px;}
.ya4{bottom:306.210000px;}
.y20{bottom:307.380000px;}
.y7b{bottom:308.460000px;}
.y52{bottom:315.390000px;}
.y78{bottom:323.310000px;}
.ya3{bottom:323.760000px;}
.y1f{bottom:324.930000px;}
.yf6{bottom:327.990000px;}
.ycd{bottom:328.440000px;}
.y51{bottom:332.940000px;}
.y1e{bottom:342.480000px;}
.yf5{bottom:345.540000px;}
.ycc{bottom:345.990000px;}
.ya2{bottom:350.400000px;}
.y50{bottom:359.580000px;}
.y1d{bottom:360.120000px;}
.yf4{bottom:363.180000px;}
.ycb{bottom:363.540000px;}
.ya1{bottom:367.950000px;}
.y1c{bottom:377.670000px;}
.ya0{bottom:385.590000px;}
.yf3{bottom:389.730000px;}
.yca{bottom:390.180000px;}
.y4f{bottom:395.130000px;}
.y1b{bottom:395.310000px;}
.yf2{bottom:407.370000px;}
.yc9{bottom:407.730000px;}
.y9f{bottom:412.140000px;}
.y4e{bottom:412.770000px;}
.y1a{bottom:412.860000px;}
.yc8{bottom:425.370000px;}
.y9e{bottom:429.690000px;}
.y19{bottom:430.410000px;}
.yf1{bottom:433.920000px;}
.y4d{bottom:439.320000px;}
.y9d{bottom:447.330000px;}
.y18{bottom:448.050000px;}
.yf0{bottom:451.470000px;}
.yc7{bottom:451.920000px;}
.y17{bottom:465.600000px;}
.yc6{bottom:469.470000px;}
.y9c{bottom:473.910000px;}
.y4c{bottom:475.260000px;}
.yef{bottom:478.140000px;}
.y16{bottom:483.270000px;}
.yc5{bottom:487.140000px;}
.y9b{bottom:491.550000px;}
.yee{bottom:495.690000px;}
.y15{bottom:510.090000px;}
.yed{bottom:513.330000px;}
.yc4{bottom:513.690000px;}
.y9a{bottom:518.100000px;}
.y4b{bottom:523.500000px;}
.yc3{bottom:531.330000px;}
.y99{bottom:535.650000px;}
.yec{bottom:539.880000px;}
.y4a{bottom:541.140000px;}
.yc2{bottom:548.880000px;}
.y98{bottom:553.290000px;}
.y77{bottom:556.890000px;}
.yeb{bottom:557.430000px;}
.y14{bottom:558.690000px;}
.y76{bottom:569.130000px;}
.yc1{bottom:575.430000px;}
.y49{bottom:576.330000px;}
.y97{bottom:579.840000px;}
.yea{bottom:584.070000px;}
.yc0{bottom:593.070000px;}
.y48{bottom:593.880000px;}
.y13{bottom:595.770000px;}
.y75{bottom:596.400000px;}
.y96{bottom:597.480000px;}
.ye9{bottom:601.620000px;}
.ybf{bottom:610.620000px;}
.y47{bottom:611.430000px;}
.y12{bottom:613.320000px;}
.y74{bottom:623.760000px;}
.y95{bottom:624.030000px;}
.ye8{bottom:628.260000px;}
.y11{bottom:630.960000px;}
.ybe{bottom:637.260000px;}
.y94{bottom:641.580000px;}
.ye7{bottom:645.810000px;}
.y46{bottom:647.070000px;}
.y10{bottom:648.510000px;}
.y73{bottom:651.120000px;}
.ybd{bottom:654.810000px;}
.ye6{bottom:663.360000px;}
.y45{bottom:664.620000px;}
.yf{bottom:666.060000px;}
.y93{bottom:668.220000px;}
.ybc{bottom:672.360000px;}
.y72{bottom:678.480000px;}
.y44{bottom:682.260000px;}
.ye{bottom:683.700000px;}
.y92{bottom:685.770000px;}
.ye5{bottom:690.000000px;}
.ybb{bottom:699.000000px;}
.y43{bottom:699.810000px;}
.yd{bottom:701.250000px;}
.y71{bottom:705.750000px;}
.ye4{bottom:707.550000px;}
.y91{bottom:712.410000px;}
.yba{bottom:716.550000px;}
.y42{bottom:717.360000px;}
.yc{bottom:718.890000px;}
.y90{bottom:729.960000px;}
.y70{bottom:733.110000px;}
.ye3{bottom:734.190000px;}
.y41{bottom:735.000000px;}
.yb9{bottom:743.190000px;}
.yb{bottom:745.800000px;}
.ye2{bottom:751.740000px;}
.y40{bottom:752.550000px;}
.y8f{bottom:756.510000px;}
.y6e{bottom:760.470000px;}
.yb8{bottom:760.740000px;}
.y3f{bottom:770.190000px;}
.y8e{bottom:774.150000px;}
.yb7{bottom:778.290000px;}
.y6c{bottom:787.740000px;}
.ya{bottom:794.040000px;}
.ye1{bottom:795.930000px;}
.y8d{bottom:800.700000px;}
.yb6{bottom:804.930000px;}
.y3e{bottom:805.740000px;}
.ye0{bottom:813.480000px;}
.y8c{bottom:818.340000px;}
.yb5{bottom:822.480000px;}
.y3d{bottom:823.290000px;}
.y9{bottom:829.860000px;}
.y6b{bottom:836.520000px;}
.ydf{bottom:840.030000px;}
.y3c{bottom:840.930000px;}
.y8b{bottom:845.160000px;}
.yb4{bottom:849.030000px;}
.yde{bottom:857.670000px;}
.y3b{bottom:858.480000px;}
.y8{bottom:865.860000px;}
.yb3{bottom:866.670000px;}
.y6a{bottom:872.070000px;}
.y3a{bottom:876.030000px;}
.ydd{bottom:884.220000px;}
.y69{bottom:889.620000px;}
.yb2{bottom:893.220000px;}
.y8a{bottom:893.490000px;}
.y39{bottom:893.670000px;}
.ydc{bottom:901.860000px;}
.y7{bottom:905.640000px;}
.y68{bottom:907.260000px;}
.yb1{bottom:910.860000px;}
.y89{bottom:911.040000px;}
.y38{bottom:911.220000px;}
.y6{bottom:923.640000px;}
.y67{bottom:924.810000px;}
.ydb{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.yb0{bottom:937.410000px;}
.y88{bottom:937.950000px;}
.y5{bottom:941.640000px;}
.y66{bottom:942.450000px;}
.yda{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.yaf{bottom:954.960000px;}
.y65{bottom:960.000000px;}
.y35{bottom:963.960000px;}
.yd9{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y87{bottom:975.030000px;}
.y64{bottom:977.550000px;}
.y34{bottom:981.600000px;}
.yd8{bottom:990.150000px;}
.y63{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.y86{bottom:1001.850000px;}
.y3{bottom:1012.230000px;}
.y62{bottom:1012.770000px;}
.y32{bottom:1016.820000px;}
.y61{bottom:1030.320000px;}
.y31{bottom:1034.370000px;}
.y85{bottom:1039.230000px;}
.yae{bottom:1043.370000px;}
.y60{bottom:1047.960000px;}
.y30{bottom:1051.920000px;}
.yad{bottom:1060.920000px;}
.y5f{bottom:1065.510000px;}
.yac{bottom:1078.560000px;}
.y5e{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.yd7{bottom:1096.110000px;}
.y5d{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y5c{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h11{height:14.130000px;}
.he{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h3{height:44.538574px;}
.hf{height:47.389043px;}
.hd{height:50.902383px;}
.h9{height:55.779258px;}
.h7{height:59.503535px;}
.h12{height:61.793886px;}
.hb{height:62.585859px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h8{height:74.004654px;}
.h4{height:83.019902px;}
.h10{height:212.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:81.300000px;}
.w6{width:90.180000px;}
.w7{width:102.330000px;}
.w4{width:126.630000px;}
.w3{width:196.860000px;}
.w9{width:251.370000px;}
.w8{width:251.400000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:98.729987px;}
.x13{left:111.419987px;}
.xf{left:118.200000px;}
.x10{left:120.510000px;}
.x4{left:146.520000px;}
.x2{left:202.799987px;}
.xd{left:230.340000px;}
.xb{left:234.840000px;}
.xc{left:320.880000px;}
.x6{left:344.100000px;}
.x12{left:376.229987px;}
.xa{left:393.419987px;}
.x7{left:471.450000px;}
.x8{left:553.470000px;}
.xe{left:573.090000px;}
.x9{left:644.370000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.395200pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls1d{letter-spacing:0.060800pt;}
.ls15{letter-spacing:0.061867pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.244800pt;}
.ls14{letter-spacing:0.275733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:1.683200pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:43.063680pt;}
.ls19{letter-spacing:71.863680pt;}
.ls18{letter-spacing:72.503680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.932800pt;}
.ws9{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.612800pt;}
.wsa{word-spacing:-11.590933pt;}
.wsd{word-spacing:-9.425067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._2{margin-left:-3.692043pt;}
._1{margin-left:-2.674453pt;}
._0{margin-left:-0.986667pt;}
._4{width:0.983701pt;}
._3{width:2.322646pt;}
._6{width:3.493931pt;}
._a{width:4.415402pt;}
._5{width:5.422992pt;}
._9{width:6.631312pt;}
._8{width:7.526555pt;}
._b{width:8.521663pt;}
._c{width:9.862977pt;}
._d{width:10.862720pt;}
._7{width:12.867307pt;}
._10{width:13.876160pt;}
._11{width:15.946326pt;}
._e{width:16.887040pt;}
._f{width:17.855467pt;}
._12{width:18.824659pt;}
._13{width:19.826240pt;}
._14{width:20.988141pt;}
._16{width:27.924373pt;}
._15{width:28.882347pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:0.080000pt;}
.y79{bottom:0.640000pt;}
.y7c{bottom:2.400000pt;}
.y6f{bottom:6.960000pt;}
.y6d{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y84{bottom:107.946667pt;}
.y5b{bottom:115.706667pt;}
.y29{bottom:116.506667pt;}
.y83{bottom:123.546667pt;}
.yd6{bottom:127.226667pt;}
.y5a{bottom:131.306667pt;}
.y28{bottom:132.106667pt;}
.yab{bottom:138.746667pt;}
.y82{bottom:139.226667pt;}
.yd5{bottom:142.826667pt;}
.y59{bottom:146.906667pt;}
.y27{bottom:147.786667pt;}
.yaa{bottom:154.426667pt;}
.y81{bottom:154.826667pt;}
.yd4{bottom:158.506667pt;}
.y58{bottom:162.586667pt;}
.y26{bottom:163.386667pt;}
.y80{bottom:170.426667pt;}
.ya9{bottom:178.026667pt;}
.y57{bottom:178.186667pt;}
.y25{bottom:179.066667pt;}
.yd3{bottom:182.106667pt;}
.ya8{bottom:193.626667pt;}
.y56{bottom:193.866667pt;}
.y7f{bottom:194.346667pt;}
.yd2{bottom:197.786667pt;}
.y24{bottom:210.666667pt;}
.yd1{bottom:213.386667pt;}
.ya7{bottom:217.306667pt;}
.y55{bottom:217.466667pt;}
.y23{bottom:226.266667pt;}
.ya6{bottom:232.906667pt;}
.yd0{bottom:236.986667pt;}
.y7e{bottom:237.306667pt;}
.y22{bottom:241.946667pt;}
.y54{bottom:249.066667pt;}
.ycf{bottom:252.666667pt;}
.y7d{bottom:252.906667pt;}
.ya5{bottom:256.586667pt;}
.y21{bottom:257.546667pt;}
.y53{bottom:264.746667pt;}
.yce{bottom:268.266667pt;}
.ya4{bottom:272.186667pt;}
.y20{bottom:273.226667pt;}
.y7b{bottom:274.186667pt;}
.y52{bottom:280.346667pt;}
.y78{bottom:287.386667pt;}
.ya3{bottom:287.786667pt;}
.y1f{bottom:288.826667pt;}
.yf6{bottom:291.546667pt;}
.ycd{bottom:291.946667pt;}
.y51{bottom:295.946667pt;}
.y1e{bottom:304.426667pt;}
.yf5{bottom:307.146667pt;}
.ycc{bottom:307.546667pt;}
.ya2{bottom:311.466667pt;}
.y50{bottom:319.626667pt;}
.y1d{bottom:320.106667pt;}
.yf4{bottom:322.826667pt;}
.ycb{bottom:323.146667pt;}
.ya1{bottom:327.066667pt;}
.y1c{bottom:335.706667pt;}
.ya0{bottom:342.746667pt;}
.yf3{bottom:346.426667pt;}
.yca{bottom:346.826667pt;}
.y4f{bottom:351.226667pt;}
.y1b{bottom:351.386667pt;}
.yf2{bottom:362.106667pt;}
.yc9{bottom:362.426667pt;}
.y9f{bottom:366.346667pt;}
.y4e{bottom:366.906667pt;}
.y1a{bottom:366.986667pt;}
.yc8{bottom:378.106667pt;}
.y9e{bottom:381.946667pt;}
.y19{bottom:382.586667pt;}
.yf1{bottom:385.706667pt;}
.y4d{bottom:390.506667pt;}
.y9d{bottom:397.626667pt;}
.y18{bottom:398.266667pt;}
.yf0{bottom:401.306667pt;}
.yc7{bottom:401.706667pt;}
.y17{bottom:413.866667pt;}
.yc6{bottom:417.306667pt;}
.y9c{bottom:421.253333pt;}
.y4c{bottom:422.453333pt;}
.yef{bottom:425.013333pt;}
.y16{bottom:429.573333pt;}
.yc5{bottom:433.013333pt;}
.y9b{bottom:436.933333pt;}
.yee{bottom:440.613333pt;}
.y15{bottom:453.413333pt;}
.yed{bottom:456.293333pt;}
.yc4{bottom:456.613333pt;}
.y9a{bottom:460.533333pt;}
.y4b{bottom:465.333333pt;}
.yc3{bottom:472.293333pt;}
.y99{bottom:476.133333pt;}
.yec{bottom:479.893333pt;}
.y4a{bottom:481.013333pt;}
.yc2{bottom:487.893333pt;}
.y98{bottom:491.813333pt;}
.y77{bottom:495.013333pt;}
.yeb{bottom:495.493333pt;}
.y14{bottom:496.613333pt;}
.y76{bottom:505.893333pt;}
.yc1{bottom:511.493333pt;}
.y49{bottom:512.293333pt;}
.y97{bottom:515.413333pt;}
.yea{bottom:519.173333pt;}
.yc0{bottom:527.173333pt;}
.y48{bottom:527.893333pt;}
.y13{bottom:529.573333pt;}
.y75{bottom:530.133333pt;}
.y96{bottom:531.093333pt;}
.ye9{bottom:534.773333pt;}
.ybf{bottom:542.773333pt;}
.y47{bottom:543.493333pt;}
.y12{bottom:545.173333pt;}
.y74{bottom:554.453333pt;}
.y95{bottom:554.693333pt;}
.ye8{bottom:558.453333pt;}
.y11{bottom:560.853333pt;}
.ybe{bottom:566.453333pt;}
.y94{bottom:570.293333pt;}
.ye7{bottom:574.053333pt;}
.y46{bottom:575.173333pt;}
.y10{bottom:576.453333pt;}
.y73{bottom:578.773333pt;}
.ybd{bottom:582.053333pt;}
.ye6{bottom:589.653333pt;}
.y45{bottom:590.773333pt;}
.yf{bottom:592.053333pt;}
.y93{bottom:593.973333pt;}
.ybc{bottom:597.653333pt;}
.y72{bottom:603.093333pt;}
.y44{bottom:606.453333pt;}
.ye{bottom:607.733333pt;}
.y92{bottom:609.573333pt;}
.ye5{bottom:613.333333pt;}
.ybb{bottom:621.333333pt;}
.y43{bottom:622.053333pt;}
.yd{bottom:623.333333pt;}
.y71{bottom:627.333333pt;}
.ye4{bottom:628.933333pt;}
.y91{bottom:633.253333pt;}
.yba{bottom:636.933333pt;}
.y42{bottom:637.653333pt;}
.yc{bottom:639.013333pt;}
.y90{bottom:648.853333pt;}
.y70{bottom:651.653333pt;}
.ye3{bottom:652.613333pt;}
.y41{bottom:653.333333pt;}
.yb9{bottom:660.613333pt;}
.yb{bottom:662.933333pt;}
.ye2{bottom:668.213333pt;}
.y40{bottom:668.933333pt;}
.y8f{bottom:672.453333pt;}
.y6e{bottom:675.973333pt;}
.yb8{bottom:676.213333pt;}
.y3f{bottom:684.613333pt;}
.y8e{bottom:688.133333pt;}
.yb7{bottom:691.813333pt;}
.y6c{bottom:700.213333pt;}
.ya{bottom:705.813333pt;}
.ye1{bottom:707.493333pt;}
.y8d{bottom:711.733333pt;}
.yb6{bottom:715.493333pt;}
.y3e{bottom:716.213333pt;}
.ye0{bottom:723.093333pt;}
.y8c{bottom:727.413333pt;}
.yb5{bottom:731.093333pt;}
.y3d{bottom:731.813333pt;}
.y9{bottom:737.653333pt;}
.y6b{bottom:743.573333pt;}
.ydf{bottom:746.693333pt;}
.y3c{bottom:747.493333pt;}
.y8b{bottom:751.253333pt;}
.yb4{bottom:754.693333pt;}
.yde{bottom:762.373333pt;}
.y3b{bottom:763.093333pt;}
.y8{bottom:769.653333pt;}
.yb3{bottom:770.373333pt;}
.y6a{bottom:775.173333pt;}
.y3a{bottom:778.693333pt;}
.ydd{bottom:785.973333pt;}
.y69{bottom:790.773333pt;}
.yb2{bottom:793.973333pt;}
.y8a{bottom:794.213333pt;}
.y39{bottom:794.373333pt;}
.ydc{bottom:801.653333pt;}
.y7{bottom:805.013333pt;}
.y68{bottom:806.453333pt;}
.yb1{bottom:809.653333pt;}
.y89{bottom:809.813333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:821.013333pt;}
.y67{bottom:822.053333pt;}
.ydb{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.yb0{bottom:833.253333pt;}
.y88{bottom:833.733333pt;}
.y5{bottom:837.013333pt;}
.y66{bottom:837.733333pt;}
.yda{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.yaf{bottom:848.853333pt;}
.y65{bottom:853.333333pt;}
.y35{bottom:856.853333pt;}
.yd9{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y87{bottom:866.693333pt;}
.y64{bottom:868.933333pt;}
.y34{bottom:872.533333pt;}
.yd8{bottom:880.133333pt;}
.y63{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.y86{bottom:890.533333pt;}
.y3{bottom:899.760000pt;}
.y62{bottom:900.240000pt;}
.y32{bottom:903.840000pt;}
.y61{bottom:915.840000pt;}
.y31{bottom:919.440000pt;}
.y85{bottom:923.760000pt;}
.yae{bottom:927.440000pt;}
.y60{bottom:931.520000pt;}
.y30{bottom:935.040000pt;}
.yad{bottom:943.040000pt;}
.y5f{bottom:947.120000pt;}
.yac{bottom:958.720000pt;}
.y5e{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.yd7{bottom:974.320000pt;}
.y5d{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y5c{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h11{height:12.560000pt;}
.he{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h3{height:39.589844pt;}
.hf{height:42.123594pt;}
.hd{height:45.246562pt;}
.h9{height:49.581562pt;}
.h7{height:52.892031pt;}
.h12{height:54.927899pt;}
.hb{height:55.631875pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h8{height:65.781915pt;}
.h4{height:73.795469pt;}
.h10{height:188.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:72.266667pt;}
.w6{width:80.160000pt;}
.w7{width:90.960000pt;}
.w4{width:112.560000pt;}
.w3{width:174.986667pt;}
.w9{width:223.440000pt;}
.w8{width:223.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:87.759988pt;}
.x13{left:99.039988pt;}
.xf{left:105.066667pt;}
.x10{left:107.120000pt;}
.x4{left:130.240000pt;}
.x2{left:180.266655pt;}
.xd{left:204.746667pt;}
.xb{left:208.746667pt;}
.xc{left:285.226667pt;}
.x6{left:305.866667pt;}
.x12{left:334.426655pt;}
.xa{left:349.706655pt;}
.x7{left:419.066667pt;}
.x8{left:491.973333pt;}
.xe{left:509.413333pt;}
.x9{left:572.773333pt;}
.x3{left:704.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; }
  