
    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_53dabec9c7dcbe0559ae6685.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_3cc68a83b44192a531fba32c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_16a29dc9b07bdd820a5ee896.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_58d130f06ddc297c89b17f9a.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_2845dba26ff22871b1f68b5c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27cc736dffe91f9663f8272a.woff')format("woff");}.ff7{font-family:ff7;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.243600px;}
.ls14{letter-spacing:-0.232800px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsd{letter-spacing:-0.049800px;}
.ls12{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.lse{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:80.846640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.176600px;}
.ws4{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.993600px;}
.wsc{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.586197px;}
._a{margin-left:-2.229000px;}
._0{margin-left:-1.110000px;}
._1{width:1.006728px;}
._2{width:2.104200px;}
._3{width:3.547200px;}
._c{width:4.599143px;}
._4{width:5.651400px;}
._d{width:7.395000px;}
._9{width:8.493000px;}
._5{width:10.401000px;}
._6{width:11.677871px;}
._7{width:14.489640px;}
._15{width:16.292520px;}
._20{width:17.317033px;}
._1e{width:18.516960px;}
._1f{width:19.604472px;}
._8{width:21.102000px;}
._32{width:22.259520px;}
._1b{width:23.322120px;}
._13{width:24.468840px;}
._1d{width:26.152200px;}
._1c{width:27.174240px;}
._33{width:28.224120px;}
._14{width:29.278440px;}
._f{width:33.847560px;}
._30{width:35.049960px;}
._e{width:37.575000px;}
._16{width:39.138120px;}
._2b{width:41.023320px;}
._2a{width:45.691200px;}
._17{width:54.949680px;}
._12{width:56.031840px;}
._29{width:64.027800px;}
._2e{width:68.717160px;}
._1a{width:75.029760px;}
._36{width:76.622760px;}
._37{width:77.645160px;}
._19{width:85.069800px;}
._27{width:89.239560px;}
._25{width:95.590800px;}
._2f{width:113.566680px;}
._2d{width:115.610760px;}
._10{width:118.195920px;}
._24{width:126.853200px;}
._22{width:139.839120px;}
._2c{width:148.977360px;}
._18{width:154.929240px;}
._11{width:166.772880px;}
._23{width:174.648600px;}
._21{width:176.692680px;}
._28{width:177.834960px;}
._34{width:204.167520px;}
._35{width:205.309800px;}
._31{width:217.574280px;}
._26{width:220.880880px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y36{bottom:7.830000px;}
.y34{bottom:7.920000px;}
.y33{bottom:25.470000px;}
.y3a{bottom:43.020000px;}
.y38{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya7{bottom:111.540000px;}
.yf0{bottom:119.280000px;}
.yd6{bottom:130.530000px;}
.y28{bottom:131.160000px;}
.yef{bottom:136.830000px;}
.ya6{bottom:147.090000px;}
.yd5{bottom:148.170000px;}
.y27{bottom:148.710000px;}
.y92{bottom:161.310000px;}
.yee{bottom:163.380000px;}
.yd4{bottom:165.720000px;}
.y26{bottom:166.350000px;}
.y7f{bottom:178.860000px;}
.ya5{bottom:179.310000px;}
.yed{bottom:181.020000px;}
.yd3{bottom:183.270000px;}
.y25{bottom:183.900000px;}
.y7e{bottom:196.500000px;}
.yec{bottom:198.570000px;}
.y51{bottom:203.700000px;}
.y7d{bottom:214.050000px;}
.yd2{bottom:218.910000px;}
.y24{bottom:219.540000px;}
.y50{bottom:221.340000px;}
.yeb{bottom:225.210000px;}
.y7c{bottom:231.600000px;}
.yd1{bottom:236.460000px;}
.y23{bottom:237.090000px;}
.y4f{bottom:238.890000px;}
.yea{bottom:242.760000px;}
.y7b{bottom:249.240000px;}
.yd0{bottom:254.100000px;}
.y22{bottom:254.640000px;}
.y4e{bottom:256.440000px;}
.ye9{bottom:260.310000px;}
.y7a{bottom:266.790000px;}
.ycf{bottom:271.650000px;}
.y21{bottom:272.280000px;}
.y91{bottom:284.790000px;}
.ye8{bottom:287.220000px;}
.yce{bottom:289.200000px;}
.y20{bottom:289.830000px;}
.y4d{bottom:292.080000px;}
.y79{bottom:302.430000px;}
.ycd{bottom:306.840000px;}
.y1f{bottom:307.380000px;}
.y4c{bottom:309.630000px;}
.y78{bottom:319.980000px;}
.ycc{bottom:324.390000px;}
.y4b{bottom:327.270000px;}
.ye7{bottom:335.550000px;}
.y77{bottom:337.530000px;}
.y1e{bottom:343.020000px;}
.y4a{bottom:344.820000px;}
.ye6{bottom:353.100000px;}
.y76{bottom:355.170000px;}
.ycb{bottom:359.940000px;}
.y1d{bottom:360.570000px;}
.ye5{bottom:370.740000px;}
.y75{bottom:372.720000px;}
.yca{bottom:377.580000px;}
.y1c{bottom:378.210000px;}
.y49{bottom:380.370000px;}
.ye4{bottom:388.290000px;}
.y74{bottom:390.360000px;}
.y90{bottom:390.720000px;}
.yc9{bottom:395.130000px;}
.y1b{bottom:395.760000px;}
.y48{bottom:398.010000px;}
.ye3{bottom:405.840000px;}
.y8f{bottom:408.360000px;}
.yc8{bottom:412.770000px;}
.y1a{bottom:413.310000px;}
.y47{bottom:415.560000px;}
.ye2{bottom:423.480000px;}
.y73{bottom:425.910000px;}
.yc7{bottom:430.320000px;}
.y19{bottom:440.220000px;}
.ye1{bottom:441.030000px;}
.y72{bottom:443.460000px;}
.yc6{bottom:447.870000px;}
.y46{bottom:451.200000px;}
.ye0{bottom:458.670000px;}
.y71{bottom:461.100000px;}
.yc5{bottom:465.510000px;}
.y45{bottom:468.750000px;}
.ydf{bottom:476.250000px;}
.ya4{bottom:477.420000px;}
.y70{bottom:478.680000px;}
.yc4{bottom:483.090000px;}
.y44{bottom:486.330000px;}
.y18{bottom:488.580000px;}
.yde{bottom:493.800000px;}
.ya3{bottom:495.060000px;}
.y6f{bottom:496.230000px;}
.y8e{bottom:496.680000px;}
.y43{bottom:503.970000px;}
.y17{bottom:506.490000px;}
.ydd{bottom:511.440000px;}
.ya2{bottom:512.610000px;}
.y8d{bottom:514.230000px;}
.yc3{bottom:518.730000px;}
.ydc{bottom:528.990000px;}
.ya1{bottom:530.160000px;}
.y6e{bottom:531.870000px;}
.yc2{bottom:536.280000px;}
.y42{bottom:539.520000px;}
.y16{bottom:543.480000px;}
.ydb{bottom:546.540000px;}
.ya0{bottom:547.800000px;}
.y6d{bottom:549.420000px;}
.yc1{bottom:553.830000px;}
.y41{bottom:557.160000px;}
.y15{bottom:561.120000px;}
.yda{bottom:564.180000px;}
.y6c{bottom:567.060000px;}
.yc0{bottom:571.470000px;}
.y40{bottom:574.710000px;}
.y14{bottom:578.670000px;}
.y6b{bottom:584.610000px;}
.ybf{bottom:589.020000px;}
.yd9{bottom:591.090000px;}
.y3f{bottom:592.260000px;}
.y8c{bottom:593.970000px;}
.y13{bottom:596.220000px;}
.y6a{bottom:602.160000px;}
.ybe{bottom:606.660000px;}
.y3e{bottom:609.900000px;}
.y12{bottom:613.860000px;}
.y69{bottom:619.800000px;}
.y9f{bottom:622.950000px;}
.ybd{bottom:624.210000px;}
.y3d{bottom:627.450000px;}
.y11{bottom:631.410000px;}
.y68{bottom:637.350000px;}
.yd8{bottom:639.330000px;}
.y9e{bottom:640.590000px;}
.y8b{bottom:642.210000px;}
.y10{bottom:648.960000px;}
.ybc{bottom:651.120000px;}
.y3c{bottom:654.360000px;}
.y9d{bottom:658.140000px;}
.y8a{bottom:659.760000px;}
.y67{bottom:664.260000px;}
.yf{bottom:666.600000px;}
.yd7{bottom:671.550000px;}
.y9c{bottom:675.690000px;}
.y89{bottom:677.400000px;}
.ye{bottom:684.150000px;}
.y9b{bottom:693.330000px;}
.y88{bottom:694.950000px;}
.ybb{bottom:699.360000px;}
.y3b{bottom:699.990000px;}
.yd{bottom:701.790000px;}
.y9a{bottom:710.880000px;}
.y66{bottom:712.590000px;}
.yba{bottom:717.000000px;}
.yc{bottom:719.340000px;}
.y65{bottom:730.140000px;}
.yb9{bottom:734.550000px;}
.yb{bottom:736.890000px;}
.y99{bottom:746.520000px;}
.y64{bottom:747.690000px;}
.yb8{bottom:752.190000px;}
.ya{bottom:754.530000px;}
.y98{bottom:761.460000px;}
.y39{bottom:762.540000px;}
.y63{bottom:765.330000px;}
.yb7{bottom:769.740000px;}
.y9{bottom:781.440000px;}
.y62{bottom:782.880000px;}
.y87{bottom:783.330000px;}
.yb6{bottom:787.290000px;}
.y61{bottom:800.520000px;}
.y86{bottom:800.880000px;}
.yb5{bottom:804.930000px;}
.y85{bottom:818.520000px;}
.y97{bottom:823.920000px;}
.y37{bottom:825.000000px;}
.y8{bottom:828.240000px;}
.y60{bottom:836.070000px;}
.yb4{bottom:840.480000px;}
.y5f{bottom:853.620000px;}
.yb3{bottom:858.030000px;}
.y7{bottom:863.790000px;}
.y5e{bottom:871.260000px;}
.yb2{bottom:875.670000px;}
.yf8{bottom:884.220000px;}
.y96{bottom:886.470000px;}
.y35{bottom:887.550000px;}
.y5d{bottom:888.810000px;}
.y84{bottom:889.260000px;}
.yb1{bottom:893.220000px;}
.y6{bottom:899.610000px;}
.yf7{bottom:901.860000px;}
.y5c{bottom:906.450000px;}
.y83{bottom:906.810000px;}
.yb0{bottom:910.860000px;}
.y82{bottom:924.450000px;}
.yaf{bottom:928.410000px;}
.y32{bottom:932.460000px;}
.y5{bottom:935.610000px;}
.y5b{bottom:942.000000px;}
.yf6{bottom:945.960000px;}
.y95{bottom:948.930000px;}
.y5a{bottom:959.550000px;}
.yae{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.yf5{bottom:972.600000px;}
.y59{bottom:977.190000px;}
.yad{bottom:981.600000px;}
.yf4{bottom:990.150000px;}
.y58{bottom:994.740000px;}
.y81{bottom:995.190000px;}
.y31{bottom:998.790000px;}
.yac{bottom:999.150000px;}
.yf3{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y94{bottom:1011.510000px;}
.y80{bottom:1012.770000px;}
.yab{bottom:1016.820000px;}
.y57{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y56{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y55{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.yaa{bottom:1069.920000px;}
.y93{bottom:1073.970000px;}
.y54{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.ya9{bottom:1087.560000px;}
.yf2{bottom:1096.110000px;}
.y53{bottom:1100.700000px;}
.ya8{bottom:1105.110000px;}
.yf1{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y52{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h8{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.740000px;}
.hd{height:61.793886px;}
.h9{height:61.830000px;}
.hc{height:61.860000px;}
.hb{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:92.430000px;}
.w6{width:105.870000px;}
.w4{width:121.350000px;}
.w5{width:125.370000px;}
.wd{width:131.130000px;}
.w9{width:139.170000px;}
.w7{width:145.260000px;}
.wa{width:147.960000px;}
.w8{width:161.640000px;}
.wb{width:161.760000px;}
.wc{width:172.800000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.x12{left:111.239987px;}
.x11{left:123.659987px;}
.x5{left:161.910000px;}
.xf{left:166.529987px;}
.x2{left:201.539987px;}
.xa{left:208.650000px;}
.x6{left:283.980000px;}
.xb{left:357.330000px;}
.x7{left:410.160000px;}
.x8{left:516.840000px;}
.xc{left:519.810000px;}
.x9{left:662.820000px;}
.xd{left:693.330000px;}
.xe{left:721.139987px;}
.x10{left:762.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.216533pt;}
.ls14{letter-spacing:-0.206933pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsd{letter-spacing:-0.044267pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.712533pt;}
.ws4{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.549867pt;}
.wsc{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-3.187731pt;}
._a{margin-left:-1.981334pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894869pt;}
._2{width:1.870400pt;}
._3{width:3.153067pt;}
._c{width:4.088127pt;}
._4{width:5.023467pt;}
._d{width:6.573334pt;}
._9{width:7.549334pt;}
._5{width:9.245334pt;}
._6{width:10.380330pt;}
._7{width:12.879680pt;}
._15{width:14.482240pt;}
._20{width:15.392918pt;}
._1e{width:16.459520pt;}
._1f{width:17.426198pt;}
._8{width:18.757333pt;}
._32{width:19.786240pt;}
._1b{width:20.730773pt;}
._13{width:21.750080pt;}
._1d{width:23.246400pt;}
._1c{width:24.154880pt;}
._33{width:25.088107pt;}
._14{width:26.025280pt;}
._f{width:30.086720pt;}
._30{width:31.155520pt;}
._e{width:33.400000pt;}
._16{width:34.789440pt;}
._2b{width:36.465173pt;}
._2a{width:40.614400pt;}
._17{width:48.844160pt;}
._12{width:49.806080pt;}
._29{width:56.913600pt;}
._2e{width:61.081920pt;}
._1a{width:66.693120pt;}
._36{width:68.109120pt;}
._37{width:69.017920pt;}
._19{width:75.617600pt;}
._27{width:79.324053pt;}
._25{width:84.969600pt;}
._2f{width:100.948160pt;}
._2d{width:102.765120pt;}
._10{width:105.063040pt;}
._24{width:112.758400pt;}
._22{width:124.301440pt;}
._2c{width:132.424320pt;}
._18{width:137.714880pt;}
._11{width:148.242560pt;}
._23{width:155.243200pt;}
._21{width:157.060160pt;}
._28{width:158.075520pt;}
._34{width:181.482240pt;}
._35{width:182.497600pt;}
._31{width:193.399360pt;}
._26{width:196.338560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:6.960000pt;}
.y34{bottom:7.040000pt;}
.y33{bottom:22.640000pt;}
.y3a{bottom:38.240000pt;}
.y38{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya7{bottom:99.146667pt;}
.yf0{bottom:106.026667pt;}
.yd6{bottom:116.026667pt;}
.y28{bottom:116.586667pt;}
.yef{bottom:121.626667pt;}
.ya6{bottom:130.746667pt;}
.yd5{bottom:131.706667pt;}
.y27{bottom:132.186667pt;}
.y92{bottom:143.386667pt;}
.yee{bottom:145.226667pt;}
.yd4{bottom:147.306667pt;}
.y26{bottom:147.866667pt;}
.y7f{bottom:158.986667pt;}
.ya5{bottom:159.386667pt;}
.yed{bottom:160.906667pt;}
.yd3{bottom:162.906667pt;}
.y25{bottom:163.466667pt;}
.y7e{bottom:174.666667pt;}
.yec{bottom:176.506667pt;}
.y51{bottom:181.066667pt;}
.y7d{bottom:190.266667pt;}
.yd2{bottom:194.586667pt;}
.y24{bottom:195.146667pt;}
.y50{bottom:196.746667pt;}
.yeb{bottom:200.186667pt;}
.y7c{bottom:205.866667pt;}
.yd1{bottom:210.186667pt;}
.y23{bottom:210.746667pt;}
.y4f{bottom:212.346667pt;}
.yea{bottom:215.786667pt;}
.y7b{bottom:221.546667pt;}
.yd0{bottom:225.866667pt;}
.y22{bottom:226.346667pt;}
.y4e{bottom:227.946667pt;}
.ye9{bottom:231.386667pt;}
.y7a{bottom:237.146667pt;}
.ycf{bottom:241.466667pt;}
.y21{bottom:242.026667pt;}
.y91{bottom:253.146667pt;}
.ye8{bottom:255.306667pt;}
.yce{bottom:257.066667pt;}
.y20{bottom:257.626667pt;}
.y4d{bottom:259.626667pt;}
.y79{bottom:268.826667pt;}
.ycd{bottom:272.746667pt;}
.y1f{bottom:273.226667pt;}
.y4c{bottom:275.226667pt;}
.y78{bottom:284.426667pt;}
.ycc{bottom:288.346667pt;}
.y4b{bottom:290.906667pt;}
.ye7{bottom:298.266667pt;}
.y77{bottom:300.026667pt;}
.y1e{bottom:304.906667pt;}
.y4a{bottom:306.506667pt;}
.ye6{bottom:313.866667pt;}
.y76{bottom:315.706667pt;}
.ycb{bottom:319.946667pt;}
.y1d{bottom:320.506667pt;}
.ye5{bottom:329.546667pt;}
.y75{bottom:331.306667pt;}
.yca{bottom:335.626667pt;}
.y1c{bottom:336.186667pt;}
.y49{bottom:338.106667pt;}
.ye4{bottom:345.146667pt;}
.y74{bottom:346.986667pt;}
.y90{bottom:347.306667pt;}
.yc9{bottom:351.226667pt;}
.y1b{bottom:351.786667pt;}
.y48{bottom:353.786667pt;}
.ye3{bottom:360.746667pt;}
.y8f{bottom:362.986667pt;}
.yc8{bottom:366.906667pt;}
.y1a{bottom:367.386667pt;}
.y47{bottom:369.386667pt;}
.ye2{bottom:376.426667pt;}
.y73{bottom:378.586667pt;}
.yc7{bottom:382.506667pt;}
.y19{bottom:391.306667pt;}
.ye1{bottom:392.026667pt;}
.y72{bottom:394.186667pt;}
.yc6{bottom:398.106667pt;}
.y46{bottom:401.066667pt;}
.ye0{bottom:407.706667pt;}
.y71{bottom:409.866667pt;}
.yc5{bottom:413.786667pt;}
.y45{bottom:416.666667pt;}
.ydf{bottom:423.333333pt;}
.ya4{bottom:424.373333pt;}
.y70{bottom:425.493333pt;}
.yc4{bottom:429.413333pt;}
.y44{bottom:432.293333pt;}
.y18{bottom:434.293333pt;}
.yde{bottom:438.933333pt;}
.ya3{bottom:440.053333pt;}
.y6f{bottom:441.093333pt;}
.y8e{bottom:441.493333pt;}
.y43{bottom:447.973333pt;}
.y17{bottom:450.213333pt;}
.ydd{bottom:454.613333pt;}
.ya2{bottom:455.653333pt;}
.y8d{bottom:457.093333pt;}
.yc3{bottom:461.093333pt;}
.ydc{bottom:470.213333pt;}
.ya1{bottom:471.253333pt;}
.y6e{bottom:472.773333pt;}
.yc2{bottom:476.693333pt;}
.y42{bottom:479.573333pt;}
.y16{bottom:483.093333pt;}
.ydb{bottom:485.813333pt;}
.ya0{bottom:486.933333pt;}
.y6d{bottom:488.373333pt;}
.yc1{bottom:492.293333pt;}
.y41{bottom:495.253333pt;}
.y15{bottom:498.773333pt;}
.yda{bottom:501.493333pt;}
.y6c{bottom:504.053333pt;}
.yc0{bottom:507.973333pt;}
.y40{bottom:510.853333pt;}
.y14{bottom:514.373333pt;}
.y6b{bottom:519.653333pt;}
.ybf{bottom:523.573333pt;}
.yd9{bottom:525.413333pt;}
.y3f{bottom:526.453333pt;}
.y8c{bottom:527.973333pt;}
.y13{bottom:529.973333pt;}
.y6a{bottom:535.253333pt;}
.ybe{bottom:539.253333pt;}
.y3e{bottom:542.133333pt;}
.y12{bottom:545.653333pt;}
.y69{bottom:550.933333pt;}
.y9f{bottom:553.733333pt;}
.ybd{bottom:554.853333pt;}
.y3d{bottom:557.733333pt;}
.y11{bottom:561.253333pt;}
.y68{bottom:566.533333pt;}
.yd8{bottom:568.293333pt;}
.y9e{bottom:569.413333pt;}
.y8b{bottom:570.853333pt;}
.y10{bottom:576.853333pt;}
.ybc{bottom:578.773333pt;}
.y3c{bottom:581.653333pt;}
.y9d{bottom:585.013333pt;}
.y8a{bottom:586.453333pt;}
.y67{bottom:590.453333pt;}
.yf{bottom:592.533333pt;}
.yd7{bottom:596.933333pt;}
.y9c{bottom:600.613333pt;}
.y89{bottom:602.133333pt;}
.ye{bottom:608.133333pt;}
.y9b{bottom:616.293333pt;}
.y88{bottom:617.733333pt;}
.ybb{bottom:621.653333pt;}
.y3b{bottom:622.213333pt;}
.yd{bottom:623.813333pt;}
.y9a{bottom:631.893333pt;}
.y66{bottom:633.413333pt;}
.yba{bottom:637.333333pt;}
.yc{bottom:639.413333pt;}
.y65{bottom:649.013333pt;}
.yb9{bottom:652.933333pt;}
.yb{bottom:655.013333pt;}
.y99{bottom:663.573333pt;}
.y64{bottom:664.613333pt;}
.yb8{bottom:668.613333pt;}
.ya{bottom:670.693333pt;}
.y98{bottom:676.853333pt;}
.y39{bottom:677.813333pt;}
.y63{bottom:680.293333pt;}
.yb7{bottom:684.213333pt;}
.y9{bottom:694.613333pt;}
.y62{bottom:695.893333pt;}
.y87{bottom:696.293333pt;}
.yb6{bottom:699.813333pt;}
.y61{bottom:711.573333pt;}
.y86{bottom:711.893333pt;}
.yb5{bottom:715.493333pt;}
.y85{bottom:727.573333pt;}
.y97{bottom:732.373333pt;}
.y37{bottom:733.333333pt;}
.y8{bottom:736.213333pt;}
.y60{bottom:743.173333pt;}
.yb4{bottom:747.093333pt;}
.y5f{bottom:758.773333pt;}
.yb3{bottom:762.693333pt;}
.y7{bottom:767.813333pt;}
.y5e{bottom:774.453333pt;}
.yb2{bottom:778.373333pt;}
.yf8{bottom:785.973333pt;}
.y96{bottom:787.973333pt;}
.y35{bottom:788.933333pt;}
.y5d{bottom:790.053333pt;}
.y84{bottom:790.453333pt;}
.yb1{bottom:793.973333pt;}
.y6{bottom:799.653333pt;}
.yf7{bottom:801.653333pt;}
.y5c{bottom:805.733333pt;}
.y83{bottom:806.053333pt;}
.yb0{bottom:809.653333pt;}
.y82{bottom:821.733333pt;}
.yaf{bottom:825.253333pt;}
.y32{bottom:828.853333pt;}
.y5{bottom:831.653333pt;}
.y5b{bottom:837.333333pt;}
.yf6{bottom:840.853333pt;}
.y95{bottom:843.493333pt;}
.y5a{bottom:852.933333pt;}
.yae{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.yf5{bottom:864.533333pt;}
.y59{bottom:868.613333pt;}
.yad{bottom:872.533333pt;}
.yf4{bottom:880.133333pt;}
.y58{bottom:884.213333pt;}
.y81{bottom:884.613333pt;}
.y31{bottom:887.813333pt;}
.yac{bottom:888.133333pt;}
.yf3{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y94{bottom:899.120000pt;}
.y80{bottom:900.240000pt;}
.yab{bottom:903.840000pt;}
.y57{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y56{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y55{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.yaa{bottom:951.040000pt;}
.y93{bottom:954.640000pt;}
.y54{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.ya9{bottom:966.720000pt;}
.yf2{bottom:974.320000pt;}
.y53{bottom:978.400000pt;}
.ya8{bottom:982.320000pt;}
.yf1{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y52{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h8{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.880000pt;}
.hd{height:54.927899pt;}
.h9{height:54.960000pt;}
.hc{height:54.986667pt;}
.hb{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:82.160000pt;}
.w6{width:94.106667pt;}
.w4{width:107.866667pt;}
.w5{width:111.440000pt;}
.wd{width:116.560000pt;}
.w9{width:123.706667pt;}
.w7{width:129.120000pt;}
.wa{width:131.520000pt;}
.w8{width:143.680000pt;}
.wb{width:143.786667pt;}
.wc{width:153.600000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.x12{left:98.879988pt;}
.x11{left:109.919988pt;}
.x5{left:143.920000pt;}
.xf{left:148.026655pt;}
.x2{left:179.146655pt;}
.xa{left:185.466667pt;}
.x6{left:252.426667pt;}
.xb{left:317.626667pt;}
.x7{left:364.586667pt;}
.x8{left:459.413333pt;}
.xc{left:462.053333pt;}
.x9{left:589.173333pt;}
.xd{left:616.293333pt;}
.xe{left:641.013322pt;}
.x10{left:678.053322pt;}
.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; }
  