
    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_e134149248da744a55ab09c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_1f8b69f1def6e8354392777d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_c2f3f2c8e4e2ec0706b273fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ce15fe12bf8fc3180e8b0215.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_23868747c116198c9eba6e1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_a74192ad7553336439dbf65d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_a39f2ff7c639bce5bcffec5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_9a6ec5b36a25123b29a7db18.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_b62e9e9e8342e4409732b144.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4d8d9370c708a3ed3e4ef3f5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5fe18c61fa0da7a92ece0cc3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.714000px;}
.ls26{letter-spacing:-0.606000px;}
.ls29{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.538200px;}
.ls12{letter-spacing:-0.469800px;}
.ls13{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.348600px;}
.ls3{letter-spacing:-0.174000px;}
.lse{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.136200px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.038040px;}
.lsf{letter-spacing:0.067800px;}
.ls21{letter-spacing:0.067968px;}
.ls23{letter-spacing:0.076032px;}
.ls20{letter-spacing:0.106200px;}
.ls1b{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.156000px;}
.lsb{letter-spacing:0.225984px;}
.ls18{letter-spacing:0.260064px;}
.ls17{letter-spacing:0.296064px;}
.ls22{letter-spacing:0.390048px;}
.ls2{letter-spacing:0.402000px;}
.ls4{letter-spacing:0.439800px;}
.ls1c{letter-spacing:0.440064px;}
.ls28{letter-spacing:0.564000px;}
.ls7{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.642000px;}
.ls14{letter-spacing:0.696000px;}
.ls24{letter-spacing:0.756000px;}
.ls9{letter-spacing:1.219968px;}
.ls25{letter-spacing:4.284000px;}
.lsd{letter-spacing:4.464000px;}
.ls1d{letter-spacing:5.472000px;}
.ls1{letter-spacing:7.224000px;}
.ls1f{letter-spacing:9.204000px;}
.ls27{letter-spacing:9.744000px;}
.lsc{letter-spacing:14.724000px;}
.lsa{letter-spacing:16.081920px;}
.ls8{letter-spacing:25.699968px;}
.ls2a{letter-spacing:26.064000px;}
.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;}
}
.ws7{word-spacing:-15.696000px;}
.ws0{word-spacing:-14.616000px;}
.ws5{word-spacing:-14.178000px;}
.wsb{word-spacing:-14.112000px;}
.wsc{word-spacing:-13.975800px;}
.ws2{word-spacing:-13.938000px;}
.ws8{word-spacing:-13.603800px;}
.ws4{word-spacing:-13.574040px;}
.ws6{word-spacing:-13.536000px;}
.wsa{word-spacing:-13.399800px;}
.ws3{word-spacing:-13.362000px;}
.wsd{word-spacing:-13.066200px;}
.ws9{word-spacing:-12.997800px;}
.wsf{word-spacing:-12.528000px;}
.wse{word-spacing:-10.911624px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-3.194496px;}
._a{margin-left:-2.186592px;}
._4{margin-left:-1.059840px;}
._0{width:1.052352px;}
._1{width:2.102304px;}
._7{width:3.790080px;}
._8{width:5.579136px;}
._2{width:6.822144px;}
._3{width:8.137344px;}
._5{width:9.962496px;}
._6{width:11.698560px;}
._13{width:14.974272px;}
._17{width:16.051968px;}
._11{width:17.163648px;}
._12{width:18.246528px;}
._14{width:20.033280px;}
._15{width:21.086880px;}
._19{width:24.581376px;}
._18{width:25.610112px;}
._1d{width:26.817360px;}
._1c{width:28.443840px;}
._21{width:35.247744px;}
._20{width:36.331776px;}
._24{width:81.594528px;}
._d{width:109.119936px;}
._b{width:117.656064px;}
._10{width:131.924352px;}
._16{width:137.376000px;}
._e{width:138.791712px;}
._f{width:143.384256px;}
._c{width:146.424000px;}
._1e{width:157.829760px;}
._1f{width:158.930688px;}
._1b{width:203.967360px;}
._22{width:249.840000px;}
._23{width:250.929696px;}
._1a{width:422.884032px;}
.fc2{color:rgb(14,16,26);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.288000px;}
.fs2{font-size:49.824000px;}
.fs1{font-size:54.144000px;}
.fs0{font-size:58.464000px;}
.fs3{font-size:63.360000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:5.190000px;}
.y1d{bottom:201.135000px;}
.y1c{bottom:217.545000px;}
.ya9{bottom:241.710000px;}
.yab{bottom:241.815000px;}
.y55{bottom:250.095000px;}
.ycc{bottom:252.150000px;}
.ydd{bottom:253.770000px;}
.ycd{bottom:255.675000px;}
.yd0{bottom:256.065000px;}
.y9f{bottom:261.210000px;}
.yec{bottom:261.360000px;}
.yaa{bottom:261.900000px;}
.y6c{bottom:262.155000px;}
.y80{bottom:262.695000px;}
.y18{bottom:264.345000px;}
.y39{bottom:264.450000px;}
.ya8{bottom:265.035000px;}
.y103{bottom:273.570000px;}
.ycb{bottom:275.580000px;}
.ydc{bottom:277.095000px;}
.ycf{bottom:279.390000px;}
.y54{bottom:282.630000px;}
.y9e{bottom:284.550000px;}
.yeb{bottom:284.835000px;}
.y7f{bottom:286.170000px;}
.ya7{bottom:288.465000px;}
.y17{bottom:290.235000px;}
.y6b{bottom:294.585000px;}
.y38{bottom:296.895000px;}
.yca{bottom:298.905000px;}
.ydb{bottom:300.570000px;}
.y9d{bottom:308.010000px;}
.yea{bottom:308.130000px;}
.y7e{bottom:309.495000px;}
.yce{bottom:311.400000px;}
.ya6{bottom:311.790000px;}
.y53{bottom:315.075000px;}
.y16{bottom:316.155000px;}
.y102{bottom:320.370000px;}
.yc9{bottom:322.380000px;}
.yda{bottom:323.850000px;}
.y6a{bottom:326.985000px;}
.y37{bottom:329.430000px;}
.y9c{bottom:331.350000px;}
.y7d{bottom:332.970000px;}
.ya5{bottom:335.265000px;}
.y15{bottom:341.925000px;}
.y101{bottom:343.650000px;}
.ye9{bottom:345.165000px;}
.yc8{bottom:345.705000px;}
.yd9{bottom:347.325000px;}
.y52{bottom:347.475000px;}
.y9b{bottom:354.780000px;}
.y7c{bottom:356.295000px;}
.ya4{bottom:358.590000px;}
.y69{bottom:359.535000px;}
.y36{bottom:361.830000px;}
.y100{bottom:367.125000px;}
.y14{bottom:367.815000px;}
.ye8{bottom:368.490000px;}
.yc7{bottom:369.030000px;}
.yd8{bottom:370.650000px;}
.y9a{bottom:378.105000px;}
.y7b{bottom:379.770000px;}
.y51{bottom:379.875000px;}
.ya3{bottom:382.065000px;}
.y68{bottom:391.965000px;}
.yc6{bottom:392.505000px;}
.y13{bottom:393.840000px;}
.yd7{bottom:394.125000px;}
.y35{bottom:394.275000px;}
.y99{bottom:401.580000px;}
.y7a{bottom:403.095000px;}
.yff{bottom:404.025000px;}
.ya2{bottom:405.390000px;}
.ye7{bottom:405.510000px;}
.y50{bottom:412.305000px;}
.yc5{bottom:415.830000px;}
.yd6{bottom:417.450000px;}
.y12{bottom:421.125000px;}
.y67{bottom:424.365000px;}
.y98{bottom:424.515000px;}
.y79{bottom:426.525000px;}
.y34{bottom:426.675000px;}
.yfe{bottom:427.500000px;}
.ya1{bottom:428.835000px;}
.yc4{bottom:439.275000px;}
.yd5{bottom:440.925000px;}
.y4f{bottom:444.705000px;}
.y11{bottom:448.380000px;}
.y97{bottom:449.715000px;}
.y78{bottom:449.850000px;}
.yfd{bottom:450.825000px;}
.ya0{bottom:452.160000px;}
.y66{bottom:456.765000px;}
.y33{bottom:459.075000px;}
.yc3{bottom:462.600000px;}
.yd4{bottom:464.220000px;}
.ye6{bottom:465.870000px;}
.y77{bottom:473.325000px;}
.yfc{bottom:474.270000px;}
.y10{bottom:475.635000px;}
.y4e{bottom:477.105000px;}
.yc2{bottom:486.075000px;}
.yd3{bottom:487.695000px;}
.y65{bottom:489.210000px;}
.y32{bottom:491.505000px;}
.y76{bottom:496.650000px;}
.y96{bottom:498.960000px;}
.ye5{bottom:499.755000px;}
.y4d{bottom:500.580000px;}
.yf{bottom:503.025000px;}
.yc1{bottom:509.400000px;}
.yfb{bottom:511.170000px;}
.y75{bottom:520.125000px;}
.yd2{bottom:521.460000px;}
.y64{bottom:521.610000px;}
.y95{bottom:522.435000px;}
.y31{bottom:523.905000px;}
.ye{bottom:530.280000px;}
.yc0{bottom:532.875000px;}
.y4c{bottom:532.980000px;}
.ye4{bottom:534.630000px;}
.y74{bottom:543.450000px;}
.y94{bottom:545.760000px;}
.y63{bottom:554.010000px;}
.ybf{bottom:556.200000px;}
.y30{bottom:556.455000px;}
.yfa{bottom:557.970000px;}
.yd{bottom:564.450000px;}
.y4b{bottom:565.410000px;}
.y73{bottom:566.895000px;}
.ye3{bottom:567.030000px;}
.y93{bottom:569.190000px;}
.ybe{bottom:579.630000px;}
.yf9{bottom:581.400000px;}
.y62{bottom:586.545000px;}
.y2f{bottom:588.885000px;}
.yc{bottom:589.830000px;}
.y72{bottom:590.220000px;}
.y92{bottom:592.530000px;}
.ye2{bottom:599.430000px;}
.ybd{bottom:602.970000px;}
.yf8{bottom:604.725000px;}
.y4a{bottom:612.180000px;}
.y71{bottom:613.695000px;}
.yb{bottom:615.165000px;}
.y91{bottom:615.990000px;}
.y61{bottom:618.990000px;}
.y2e{bottom:621.285000px;}
.ybc{bottom:626.430000px;}
.ye1{bottom:631.875000px;}
.y49{bottom:635.655000px;}
.y70{bottom:637.020000px;}
.y90{bottom:639.330000px;}
.yf7{bottom:641.775000px;}
.ya{bottom:642.570000px;}
.y2d{bottom:644.610000px;}
.ybb{bottom:649.770000px;}
.y60{bottom:651.390000px;}
.yd1{bottom:653.685000px;}
.y48{bottom:658.980000px;}
.y6f{bottom:660.495000px;}
.y8f{bottom:662.790000px;}
.ye0{bottom:664.275000px;}
.yf6{bottom:665.100000px;}
.y2c{bottom:668.085000px;}
.y9{bottom:669.855000px;}
.yba{bottom:673.230000px;}
.y47{bottom:682.455000px;}
.y5f{bottom:683.820000px;}
.y8e{bottom:686.130000px;}
.yf5{bottom:688.530000px;}
.y2b{bottom:691.410000px;}
.yb9{bottom:696.570000px;}
.ydf{bottom:696.810000px;}
.y8{bottom:697.110000px;}
.y46{bottom:705.780000px;}
.y5e{bottom:707.250000px;}
.y8d{bottom:709.560000px;}
.y2a{bottom:714.855000px;}
.yb8{bottom:720.000000px;}
.y7{bottom:724.350000px;}
.yf4{bottom:725.430000px;}
.y45{bottom:729.255000px;}
.y5d{bottom:730.590000px;}
.y8c{bottom:732.885000px;}
.y29{bottom:738.180000px;}
.yb7{bottom:743.325000px;}
.yf3{bottom:748.905000px;}
.y6{bottom:751.605000px;}
.y44{bottom:752.580000px;}
.y5c{bottom:754.050000px;}
.y8b{bottom:756.360000px;}
.y28{bottom:761.655000px;}
.yb6{bottom:766.800000px;}
.yf2{bottom:772.230000px;}
.y43{bottom:776.010000px;}
.y5b{bottom:777.390000px;}
.y5{bottom:779.010000px;}
.y8a{bottom:779.685000px;}
.y27{bottom:784.980000px;}
.yb5{bottom:790.125000px;}
.yde{bottom:794.055000px;}
.y42{bottom:799.350000px;}
.y5a{bottom:800.850000px;}
.y89{bottom:803.160000px;}
.y4{bottom:806.250000px;}
.y26{bottom:808.455000px;}
.yf1{bottom:809.250000px;}
.yb4{bottom:813.600000px;}
.y41{bottom:822.810000px;}
.y59{bottom:824.190000px;}
.y88{bottom:826.485000px;}
.y25{bottom:831.780000px;}
.yf0{bottom:832.575000px;}
.y3{bottom:833.550000px;}
.yb3{bottom:836.925000px;}
.y40{bottom:846.150000px;}
.y58{bottom:847.515000px;}
.y87{bottom:849.930000px;}
.y24{bottom:855.210000px;}
.yef{bottom:856.050000px;}
.y6e{bottom:856.590000px;}
.yb2{bottom:860.370000px;}
.y2{bottom:860.790000px;}
.y3f{bottom:869.610000px;}
.y86{bottom:873.255000px;}
.y23{bottom:878.550000px;}
.y57{bottom:880.050000px;}
.y6d{bottom:881.385000px;}
.y104{bottom:882.750000px;}
.yb1{bottom:883.695000px;}
.y3e{bottom:892.950000px;}
.y85{bottom:896.730000px;}
.y22{bottom:902.010000px;}
.yb0{bottom:907.170000px;}
.y56{bottom:913.935000px;}
.y3d{bottom:916.380000px;}
.y84{bottom:920.055000px;}
.y21{bottom:925.350000px;}
.yee{bottom:929.955000px;}
.yaf{bottom:930.495000px;}
.y83{bottom:943.530000px;}
.y3c{bottom:948.390000px;}
.y20{bottom:948.810000px;}
.yed{bottom:953.280000px;}
.yae{bottom:962.490000px;}
.y82{bottom:966.855000px;}
.y1f{bottom:980.820000px;}
.y3b{bottom:981.210000px;}
.yad{bottom:986.370000px;}
.y81{bottom:990.285000px;}
.yac{bottom:1011.210000px;}
.y1{bottom:1012.395000px;}
.y1e{bottom:1013.220000px;}
.y3a{bottom:1013.610000px;}
.y1b{bottom:1037.910000px;}
.y19{bottom:1049.685000px;}
.h4{height:16.956000px;}
.ha{height:48.539250px;}
.h5{height:49.556391px;}
.h3{height:53.139375px;}
.h6{height:54.567000px;}
.h8{height:55.651500px;}
.hb{height:56.364750px;}
.h2{height:58.920750px;}
.h7{height:63.855000px;}
.h9{height:65.958750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:169.815000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:80.279987px;}
.x2{left:81.359987px;}
.x4{left:82.475987px;}
.xb{left:84.915000px;}
.x3{left:95.219987px;}
.x12{left:101.735987px;}
.xf{left:120.995987px;}
.x13{left:122.075987px;}
.xa{left:138.455987px;}
.xd{left:170.205000px;}
.x16{left:201.419987px;}
.x5{left:202.754987px;}
.x7{left:207.359987px;}
.x6{left:251.459987px;}
.x8{left:265.679987px;}
.x11{left:276.119987px;}
.x17{left:293.069987px;}
.x9{left:307.334987px;}
.x1{left:336.344987px;}
.xc{left:420.990000px;}
.x15{left:514.004987px;}
.x14{left:578.849987px;}
.xe{left:585.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.634667pt;}
.ls26{letter-spacing:-0.538667pt;}
.ls29{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.478400pt;}
.ls12{letter-spacing:-0.417600pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.309867pt;}
.ls3{letter-spacing:-0.154667pt;}
.lse{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.121067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.033813pt;}
.lsf{letter-spacing:0.060267pt;}
.ls21{letter-spacing:0.060416pt;}
.ls23{letter-spacing:0.067584pt;}
.ls20{letter-spacing:0.094400pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.138667pt;}
.lsb{letter-spacing:0.200875pt;}
.ls18{letter-spacing:0.231168pt;}
.ls17{letter-spacing:0.263168pt;}
.ls22{letter-spacing:0.346709pt;}
.ls2{letter-spacing:0.357333pt;}
.ls4{letter-spacing:0.390933pt;}
.ls1c{letter-spacing:0.391168pt;}
.ls28{letter-spacing:0.501333pt;}
.ls7{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.570667pt;}
.ls14{letter-spacing:0.618667pt;}
.ls24{letter-spacing:0.672000pt;}
.ls9{letter-spacing:1.084416pt;}
.ls25{letter-spacing:3.808000pt;}
.lsd{letter-spacing:3.968000pt;}
.ls1d{letter-spacing:4.864000pt;}
.ls1{letter-spacing:6.421333pt;}
.ls1f{letter-spacing:8.181333pt;}
.ls27{letter-spacing:8.661333pt;}
.lsc{letter-spacing:13.088000pt;}
.lsa{letter-spacing:14.295040pt;}
.ls8{letter-spacing:22.844416pt;}
.ls2a{letter-spacing:23.168000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws5{word-spacing:-12.602667pt;}
.wsb{word-spacing:-12.544000pt;}
.wsc{word-spacing:-12.422933pt;}
.ws2{word-spacing:-12.389333pt;}
.ws8{word-spacing:-12.092267pt;}
.ws4{word-spacing:-12.065813pt;}
.ws6{word-spacing:-12.032000pt;}
.wsa{word-spacing:-11.910933pt;}
.ws3{word-spacing:-11.877333pt;}
.wsd{word-spacing:-11.614400pt;}
.ws9{word-spacing:-11.553600pt;}
.wsf{word-spacing:-11.136000pt;}
.wse{word-spacing:-9.699221pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-2.839552pt;}
._a{margin-left:-1.943637pt;}
._4{margin-left:-0.942080pt;}
._0{width:0.935424pt;}
._1{width:1.868715pt;}
._7{width:3.368960pt;}
._8{width:4.959232pt;}
._2{width:6.064128pt;}
._3{width:7.233195pt;}
._5{width:8.855552pt;}
._6{width:10.398720pt;}
._13{width:13.310464pt;}
._17{width:14.268416pt;}
._11{width:15.256576pt;}
._12{width:16.219136pt;}
._14{width:17.807360pt;}
._15{width:18.743893pt;}
._19{width:21.850112pt;}
._18{width:22.764544pt;}
._1d{width:23.837653pt;}
._1c{width:25.283413pt;}
._21{width:31.331328pt;}
._20{width:32.294912pt;}
._24{width:72.528469pt;}
._d{width:96.995499pt;}
._b{width:104.583168pt;}
._10{width:117.266091pt;}
._16{width:122.112000pt;}
._e{width:123.370411pt;}
._f{width:127.452672pt;}
._c{width:130.154667pt;}
._1e{width:140.293120pt;}
._1f{width:141.271723pt;}
._1b{width:181.304320pt;}
._22{width:222.080000pt;}
._23{width:223.048619pt;}
._1a{width:375.896917pt;}
.fs4{font-size:32.256000pt;}
.fs2{font-size:44.288000pt;}
.fs1{font-size:48.128000pt;}
.fs0{font-size:51.968000pt;}
.fs3{font-size:56.320000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:4.613333pt;}
.y1d{bottom:178.786667pt;}
.y1c{bottom:193.373333pt;}
.ya9{bottom:214.853333pt;}
.yab{bottom:214.946667pt;}
.y55{bottom:222.306667pt;}
.ycc{bottom:224.133333pt;}
.ydd{bottom:225.573333pt;}
.ycd{bottom:227.266667pt;}
.yd0{bottom:227.613333pt;}
.y9f{bottom:232.186667pt;}
.yec{bottom:232.320000pt;}
.yaa{bottom:232.800000pt;}
.y6c{bottom:233.026667pt;}
.y80{bottom:233.506667pt;}
.y18{bottom:234.973333pt;}
.y39{bottom:235.066667pt;}
.ya8{bottom:235.586667pt;}
.y103{bottom:243.173333pt;}
.ycb{bottom:244.960000pt;}
.ydc{bottom:246.306667pt;}
.ycf{bottom:248.346667pt;}
.y54{bottom:251.226667pt;}
.y9e{bottom:252.933333pt;}
.yeb{bottom:253.186667pt;}
.y7f{bottom:254.373333pt;}
.ya7{bottom:256.413333pt;}
.y17{bottom:257.986667pt;}
.y6b{bottom:261.853333pt;}
.y38{bottom:263.906667pt;}
.yca{bottom:265.693333pt;}
.ydb{bottom:267.173333pt;}
.y9d{bottom:273.786667pt;}
.yea{bottom:273.893333pt;}
.y7e{bottom:275.106667pt;}
.yce{bottom:276.800000pt;}
.ya6{bottom:277.146667pt;}
.y53{bottom:280.066667pt;}
.y16{bottom:281.026667pt;}
.y102{bottom:284.773333pt;}
.yc9{bottom:286.560000pt;}
.yda{bottom:287.866667pt;}
.y6a{bottom:290.653333pt;}
.y37{bottom:292.826667pt;}
.y9c{bottom:294.533333pt;}
.y7d{bottom:295.973333pt;}
.ya5{bottom:298.013333pt;}
.y15{bottom:303.933333pt;}
.y101{bottom:305.466667pt;}
.ye9{bottom:306.813333pt;}
.yc8{bottom:307.293333pt;}
.yd9{bottom:308.733333pt;}
.y52{bottom:308.866667pt;}
.y9b{bottom:315.360000pt;}
.y7c{bottom:316.706667pt;}
.ya4{bottom:318.746667pt;}
.y69{bottom:319.586667pt;}
.y36{bottom:321.626667pt;}
.y100{bottom:326.333333pt;}
.y14{bottom:326.946667pt;}
.ye8{bottom:327.546667pt;}
.yc7{bottom:328.026667pt;}
.yd8{bottom:329.466667pt;}
.y9a{bottom:336.093333pt;}
.y7b{bottom:337.573333pt;}
.y51{bottom:337.666667pt;}
.ya3{bottom:339.613333pt;}
.y68{bottom:348.413333pt;}
.yc6{bottom:348.893333pt;}
.y13{bottom:350.080000pt;}
.yd7{bottom:350.333333pt;}
.y35{bottom:350.466667pt;}
.y99{bottom:356.960000pt;}
.y7a{bottom:358.306667pt;}
.yff{bottom:359.133333pt;}
.ya2{bottom:360.346667pt;}
.ye7{bottom:360.453333pt;}
.y50{bottom:366.493333pt;}
.yc5{bottom:369.626667pt;}
.yd6{bottom:371.066667pt;}
.y12{bottom:374.333333pt;}
.y67{bottom:377.213333pt;}
.y98{bottom:377.346667pt;}
.y79{bottom:379.133333pt;}
.y34{bottom:379.266667pt;}
.yfe{bottom:380.000000pt;}
.ya1{bottom:381.186667pt;}
.yc4{bottom:390.466667pt;}
.yd5{bottom:391.933333pt;}
.y4f{bottom:395.293333pt;}
.y11{bottom:398.560000pt;}
.y97{bottom:399.746667pt;}
.y78{bottom:399.866667pt;}
.yfd{bottom:400.733333pt;}
.ya0{bottom:401.920000pt;}
.y66{bottom:406.013333pt;}
.y33{bottom:408.066667pt;}
.yc3{bottom:411.200000pt;}
.yd4{bottom:412.640000pt;}
.ye6{bottom:414.106667pt;}
.y77{bottom:420.733333pt;}
.yfc{bottom:421.573333pt;}
.y10{bottom:422.786667pt;}
.y4e{bottom:424.093333pt;}
.yc2{bottom:432.066667pt;}
.yd3{bottom:433.506667pt;}
.y65{bottom:434.853333pt;}
.y32{bottom:436.893333pt;}
.y76{bottom:441.466667pt;}
.y96{bottom:443.520000pt;}
.ye5{bottom:444.226667pt;}
.y4d{bottom:444.960000pt;}
.yf{bottom:447.133333pt;}
.yc1{bottom:452.800000pt;}
.yfb{bottom:454.373333pt;}
.y75{bottom:462.333333pt;}
.yd2{bottom:463.520000pt;}
.y64{bottom:463.653333pt;}
.y95{bottom:464.386667pt;}
.y31{bottom:465.693333pt;}
.ye{bottom:471.360000pt;}
.yc0{bottom:473.666667pt;}
.y4c{bottom:473.760000pt;}
.ye4{bottom:475.226667pt;}
.y74{bottom:483.066667pt;}
.y94{bottom:485.120000pt;}
.y63{bottom:492.453333pt;}
.ybf{bottom:494.400000pt;}
.y30{bottom:494.626667pt;}
.yfa{bottom:495.973333pt;}
.yd{bottom:501.733333pt;}
.y4b{bottom:502.586667pt;}
.y73{bottom:503.906667pt;}
.ye3{bottom:504.026667pt;}
.y93{bottom:505.946667pt;}
.ybe{bottom:515.226667pt;}
.yf9{bottom:516.800000pt;}
.y62{bottom:521.373333pt;}
.y2f{bottom:523.453333pt;}
.yc{bottom:524.293333pt;}
.y72{bottom:524.640000pt;}
.y92{bottom:526.693333pt;}
.ye2{bottom:532.826667pt;}
.ybd{bottom:535.973333pt;}
.yf8{bottom:537.533333pt;}
.y4a{bottom:544.160000pt;}
.y71{bottom:545.506667pt;}
.yb{bottom:546.813333pt;}
.y91{bottom:547.546667pt;}
.y61{bottom:550.213333pt;}
.y2e{bottom:552.253333pt;}
.ybc{bottom:556.826667pt;}
.ye1{bottom:561.666667pt;}
.y49{bottom:565.026667pt;}
.y70{bottom:566.240000pt;}
.y90{bottom:568.293333pt;}
.yf7{bottom:570.466667pt;}
.ya{bottom:571.173333pt;}
.y2d{bottom:572.986667pt;}
.ybb{bottom:577.573333pt;}
.y60{bottom:579.013333pt;}
.yd1{bottom:581.053333pt;}
.y48{bottom:585.760000pt;}
.y6f{bottom:587.106667pt;}
.y8f{bottom:589.146667pt;}
.ye0{bottom:590.466667pt;}
.yf6{bottom:591.200000pt;}
.y2c{bottom:593.853333pt;}
.y9{bottom:595.426667pt;}
.yba{bottom:598.426667pt;}
.y47{bottom:606.626667pt;}
.y5f{bottom:607.840000pt;}
.y8e{bottom:609.893333pt;}
.yf5{bottom:612.026667pt;}
.y2b{bottom:614.586667pt;}
.yb9{bottom:619.173333pt;}
.ydf{bottom:619.386667pt;}
.y8{bottom:619.653333pt;}
.y46{bottom:627.360000pt;}
.y5e{bottom:628.666667pt;}
.y8d{bottom:630.720000pt;}
.y2a{bottom:635.426667pt;}
.yb8{bottom:640.000000pt;}
.y7{bottom:643.866667pt;}
.yf4{bottom:644.826667pt;}
.y45{bottom:648.226667pt;}
.y5d{bottom:649.413333pt;}
.y8c{bottom:651.453333pt;}
.y29{bottom:656.160000pt;}
.yb7{bottom:660.733333pt;}
.yf3{bottom:665.693333pt;}
.y6{bottom:668.093333pt;}
.y44{bottom:668.960000pt;}
.y5c{bottom:670.266667pt;}
.y8b{bottom:672.320000pt;}
.y28{bottom:677.026667pt;}
.yb6{bottom:681.600000pt;}
.yf2{bottom:686.426667pt;}
.y43{bottom:689.786667pt;}
.y5b{bottom:691.013333pt;}
.y5{bottom:692.453333pt;}
.y8a{bottom:693.053333pt;}
.y27{bottom:697.760000pt;}
.yb5{bottom:702.333333pt;}
.yde{bottom:705.826667pt;}
.y42{bottom:710.533333pt;}
.y5a{bottom:711.866667pt;}
.y89{bottom:713.920000pt;}
.y4{bottom:716.666667pt;}
.y26{bottom:718.626667pt;}
.yf1{bottom:719.333333pt;}
.yb4{bottom:723.200000pt;}
.y41{bottom:731.386667pt;}
.y59{bottom:732.613333pt;}
.y88{bottom:734.653333pt;}
.y25{bottom:739.360000pt;}
.yf0{bottom:740.066667pt;}
.y3{bottom:740.933333pt;}
.yb3{bottom:743.933333pt;}
.y40{bottom:752.133333pt;}
.y58{bottom:753.346667pt;}
.y87{bottom:755.493333pt;}
.y24{bottom:760.186667pt;}
.yef{bottom:760.933333pt;}
.y6e{bottom:761.413333pt;}
.yb2{bottom:764.773333pt;}
.y2{bottom:765.146667pt;}
.y3f{bottom:772.986667pt;}
.y86{bottom:776.226667pt;}
.y23{bottom:780.933333pt;}
.y57{bottom:782.266667pt;}
.y6d{bottom:783.453333pt;}
.y104{bottom:784.666667pt;}
.yb1{bottom:785.506667pt;}
.y3e{bottom:793.733333pt;}
.y85{bottom:797.093333pt;}
.y22{bottom:801.786667pt;}
.yb0{bottom:806.373333pt;}
.y56{bottom:812.386667pt;}
.y3d{bottom:814.560000pt;}
.y84{bottom:817.826667pt;}
.y21{bottom:822.533333pt;}
.yee{bottom:826.626667pt;}
.yaf{bottom:827.106667pt;}
.y83{bottom:838.693333pt;}
.y3c{bottom:843.013333pt;}
.y20{bottom:843.386667pt;}
.yed{bottom:847.360000pt;}
.yae{bottom:855.546667pt;}
.y82{bottom:859.426667pt;}
.y1f{bottom:871.840000pt;}
.y3b{bottom:872.186667pt;}
.yad{bottom:876.773333pt;}
.y81{bottom:880.253333pt;}
.yac{bottom:898.853333pt;}
.y1{bottom:899.906667pt;}
.y1e{bottom:900.640000pt;}
.y3a{bottom:900.986667pt;}
.y1b{bottom:922.586667pt;}
.y19{bottom:933.053333pt;}
.h4{height:15.072000pt;}
.ha{height:43.146000pt;}
.h5{height:44.050125pt;}
.h3{height:47.235000pt;}
.h6{height:48.504000pt;}
.h8{height:49.468000pt;}
.hb{height:50.102000pt;}
.h2{height:52.374000pt;}
.h7{height:56.760000pt;}
.h9{height:58.630000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:150.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:71.359988pt;}
.x2{left:72.319988pt;}
.x4{left:73.311988pt;}
.xb{left:75.480000pt;}
.x3{left:84.639988pt;}
.x12{left:90.431988pt;}
.xf{left:107.551988pt;}
.x13{left:108.511988pt;}
.xa{left:123.071988pt;}
.xd{left:151.293333pt;}
.x16{left:179.039988pt;}
.x5{left:180.226655pt;}
.x7{left:184.319988pt;}
.x6{left:223.519988pt;}
.x8{left:236.159988pt;}
.x11{left:245.439988pt;}
.x17{left:260.506655pt;}
.x9{left:273.186655pt;}
.x1{left:298.973322pt;}
.xc{left:374.213333pt;}
.x15{left:456.893322pt;}
.x14{left:514.533322pt;}
.xe{left:520.186655pt;}
}




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