
    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_16241c83c1e32fff03b19ce4.woff')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_5ac86fa7672b47ca7c4c0a48.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e6abf0a3912a87b6fb2c656e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_34fcd9badcb73e62f19c10ec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_9980b1ab8c922fca9b6c5aa1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dc16ac4819136261d8eee0bf.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9d7e200327496366e9b4fdc4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c641eda092f9ecf136fa5292.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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:-74.160000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.684000px;}
.ls1c{letter-spacing:-0.369600px;}
.lsa{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.350400px;}
.ls14{letter-spacing:-0.341400px;}
.ls2{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.073440px;}
.ls5{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.341400px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.480000px;}
.ls8{letter-spacing:4.860000px;}
.ls17{letter-spacing:7.740000px;}
.ls7{letter-spacing:14.741280px;}
.lsc{letter-spacing:17.621280px;}
.ls0{letter-spacing:18.540000px;}
.ls12{letter-spacing:19.980000px;}
.ls1d{letter-spacing:21.221280px;}
.ls15{letter-spacing:23.580000px;}
.ls16{letter-spacing:32.940000px;}
.ls1b{letter-spacing:33.060000px;}
.ls1a{letter-spacing:37.260000px;}
.ls18{letter-spacing:52.380000px;}
.ls13{letter-spacing:60.420000px;}
.ls19{letter-spacing:64.080000px;}
.ls10{letter-spacing:84.780000px;}
.ls11{letter-spacing:88.380000px;}
.lsd{letter-spacing:202.860000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.097440px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.709600px;}
.ws8{word-spacing:-20.376000px;}
.ws7{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._4b{margin-left:-20.450880px;}
._47{margin-left:-6.420240px;}
._21{margin-left:-4.063680px;}
._48{margin-left:-2.515440px;}
._0{margin-left:-1.347840px;}
._1{width:1.054560px;}
._7{width:2.891760px;}
._15{width:4.394640px;}
._13{width:5.475600px;}
._19{width:7.413120px;}
._18{width:8.760960px;}
._1f{width:9.812400px;}
._a{width:11.540880px;}
._9{width:12.551760px;}
._20{width:13.687440px;}
._16{width:14.742000px;}
._5{width:15.877680px;}
._6{width:17.063280px;}
._3{width:18.869760px;}
._4a{width:19.999440px;}
._1e{width:22.239360px;}
._1a{width:23.924160px;}
._f{width:25.103520px;}
._1c{width:26.198640px;}
._1d{width:27.209520px;}
._26{width:28.388880px;}
._1b{width:29.628480px;}
._8{width:30.639360px;}
._22{width:31.678560px;}
._2e{width:32.685120px;}
._3f{width:33.864480px;}
._24{width:36.307440px;}
._25{width:37.318320px;}
._46{width:38.413440px;}
._23{width:39.424320px;}
._44{width:40.687920px;}
._4{width:43.696560px;}
._b{width:45.573840px;}
._45{width:47.427120px;}
._11{width:48.943440px;}
._10{width:49.954320px;}
._12{width:51.884640px;}
._14{width:52.902720px;}
._c{width:56.440800px;}
._29{width:57.788640px;}
._17{width:60.147360px;}
._3c{width:61.579440px;}
._43{width:63.136320px;}
._42{width:64.527840px;}
._28{width:67.805520px;}
._27{width:68.916000px;}
._37{width:74.720880px;}
._38{width:75.816000px;}
._2b{width:79.775280px;}
._3e{width:81.965520px;}
._2f{width:84.408480px;}
._34{width:89.411040px;}
._32{width:93.337920px;}
._31{width:94.601520px;}
._30{width:95.612400px;}
._40{width:104.794560px;}
._2d{width:110.185920px;}
._e{width:114.060960px;}
._d{width:115.240320px;}
._41{width:129.729600px;}
._49{width:145.532160px;}
._36{width:160.982640px;}
._35{width:161.993520px;}
._2a{width:167.806080px;}
._33{width:184.232880px;}
._2c{width:202.512960px;}
._39{width:240.168240px;}
._3a{width:241.347600px;}
._3d{width:287.848080px;}
._3b{width:371.582640px;}
._2{width:1619.640960px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,100,162);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(95,73,122);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y71{bottom:16.740000px;}
.y8f{bottom:17.100000px;}
.ya3{bottom:17.136000px;}
.y8a{bottom:17.280000px;}
.ya2{bottom:53.310000px;}
.y89{bottom:53.490000px;}
.y8{bottom:57.960000px;}
.ya7{bottom:74.340000px;}
.y7{bottom:76.860000px;}
.y88{bottom:89.670000px;}
.y52{bottom:95.400000px;}
.yc3{bottom:100.620000px;}
.y23{bottom:104.220000px;}
.y72{bottom:106.560000px;}
.y3e{bottom:109.980000px;}
.ya6{bottom:110.520000px;}
.y51{bottom:112.680000px;}
.yd5{bottom:113.040000px;}
.yc2{bottom:117.900000px;}
.y87{bottom:125.850000px;}
.y91{bottom:126.900000px;}
.y50{bottom:129.960000px;}
.y4f{bottom:135.216000px;}
.y22{bottom:140.436000px;}
.y6f{bottom:143.856000px;}
.y3d{bottom:146.376000px;}
.ya5{bottom:146.700000px;}
.y4e{bottom:147.276000px;}
.y5f{bottom:147.636000px;}
.ya1{bottom:162.030000px;}
.y86{bottom:162.210000px;}
.y4d{bottom:164.370000px;}
.y4c{bottom:169.590000px;}
.y21{bottom:176.430000px;}
.y4b{bottom:182.190000px;}
.y3c{bottom:182.550000px;}
.ya0{bottom:197.850000px;}
.y85{bottom:198.030000px;}
.y6e{bottom:201.450000px;}
.y20{bottom:212.970000px;}
.y3b{bottom:218.730000px;}
.y5e{bottom:222.330000px;}
.y4a{bottom:228.270000px;}
.yd4{bottom:234.030000px;}
.y9f{bottom:234.390000px;}
.y84{bottom:234.570000px;}
.yb7{bottom:236.190000px;}
.y6d{bottom:237.630000px;}
.y1f{bottom:249.150000px;}
.y3a{bottom:254.910000px;}
.y5d{bottom:258.690000px;}
.y49{bottom:264.450000px;}
.yd3{bottom:270.210000px;}
.y83{bottom:270.750000px;}
.y9d{bottom:270.795000px;}
.yb6{bottom:272.370000px;}
.y6c{bottom:273.810000px;}
.y1e{bottom:284.970000px;}
.y39{bottom:291.270000px;}
.y5c{bottom:294.870000px;}
.y48{bottom:300.630000px;}
.yd2{bottom:306.390000px;}
.y82{bottom:306.975000px;}
.yc1{bottom:309.990000px;}
.y1d{bottom:321.690000px;}
.y38{bottom:327.450000px;}
.yb5{bottom:329.610000px;}
.y6b{bottom:330.690000px;}
.y5b{bottom:331.050000px;}
.y47{bottom:336.810000px;}
.yd1{bottom:342.570000px;}
.y9c{bottom:343.155000px;}
.y81{bottom:343.335000px;}
.yc0{bottom:346.350000px;}
.y1c{bottom:357.870000px;}
.y37{bottom:363.630000px;}
.yb4{bottom:365.790000px;}
.y5a{bottom:367.230000px;}
.yd0{bottom:378.930000px;}
.y80{bottom:379.155000px;}
.y9b{bottom:379.335000px;}
.y8d{bottom:379.515000px;}
.y6a{bottom:388.335000px;}
.y1b{bottom:394.095000px;}
.y36{bottom:399.855000px;}
.ybf{bottom:403.635000px;}
.ycf{bottom:415.155000px;}
.y9a{bottom:415.335000px;}
.y7f{bottom:415.695000px;}
.yb3{bottom:423.075000px;}
.y59{bottom:423.975000px;}
.y69{bottom:424.515000px;}
.y1a{bottom:430.275000px;}
.y35{bottom:436.035000px;}
.ybe{bottom:439.815000px;}
.yce{bottom:451.335000px;}
.y99{bottom:451.515000px;}
.y7e{bottom:451.875000px;}
.yb2{bottom:459.255000px;}
.y68{bottom:460.695000px;}
.y19{bottom:466.635000px;}
.y34{bottom:472.395000px;}
.y46{bottom:474.195000px;}
.y58{bottom:481.755000px;}
.ycd{bottom:487.515000px;}
.y98{bottom:488.055000px;}
.y7d{bottom:488.235000px;}
.yb1{bottom:495.435000px;}
.ybd{bottom:496.695000px;}
.y67{bottom:497.055000px;}
.y18{bottom:502.815000px;}
.y33{bottom:508.575000px;}
.y57{bottom:517.935000px;}
.ycc{bottom:523.695000px;}
.y97{bottom:524.265000px;}
.y7c{bottom:524.415000px;}
.yb0{bottom:531.795000px;}
.y66{bottom:533.235000px;}
.y17{bottom:538.995000px;}
.y32{bottom:544.755000px;}
.y56{bottom:554.295000px;}
.ycb{bottom:560.055000px;}
.y7b{bottom:560.625000px;}
.yaf{bottom:567.975000px;}
.y65{bottom:569.415000px;}
.y16{bottom:575.175000px;}
.y31{bottom:580.575000px;}
.y55{bottom:590.475000px;}
.yca{bottom:596.235000px;}
.y7a{bottom:596.445000px;}
.y8c{bottom:596.805000px;}
.yae{bottom:604.155000px;}
.y15{bottom:611.535000px;}
.y30{bottom:617.295000px;}
.y54{bottom:626.655000px;}
.yc9{bottom:632.415000px;}
.y96{bottom:632.625000px;}
.y8b{bottom:632.805000px;}
.y79{bottom:633.165000px;}
.y14{bottom:647.745000px;}
.y2f{bottom:653.505000px;}
.yad{bottom:661.065000px;}
.y53{bottom:662.865000px;}
.yc8{bottom:668.625000px;}
.y95{bottom:669.165000px;}
.y78{bottom:669.345000px;}
.y13{bottom:683.925000px;}
.y2e{bottom:689.685000px;}
.y64{bottom:699.225000px;}
.yc7{bottom:704.985000px;}
.y77{bottom:705.525000px;}
.yac{bottom:718.665000px;}
.y12{bottom:719.745000px;}
.y45{bottom:720.105000px;}
.y2d{bottom:725.505000px;}
.ybc{bottom:727.665000px;}
.y63{bottom:735.405000px;}
.yc6{bottom:741.165000px;}
.y76{bottom:741.705000px;}
.yab{bottom:754.845000px;}
.ybb{bottom:756.285000px;}
.y2c{bottom:762.225000px;}
.y62{bottom:771.585000px;}
.y11{bottom:777.345000px;}
.y75{bottom:777.885000px;}
.y94{bottom:777.930000px;}
.y44{bottom:784.905000px;}
.yaa{bottom:791.025000px;}
.yba{bottom:792.645000px;}
.y2b{bottom:798.405000px;}
.y10{bottom:813.525000px;}
.y93{bottom:813.750000px;}
.y74{bottom:813.930000px;}
.y9e{bottom:814.110000px;}
.ya9{bottom:827.385000px;}
.y61{bottom:828.825000px;}
.y2a{bottom:834.585000px;}
.y43{bottom:849.885000px;}
.y92{bottom:849.930000px;}
.y73{bottom:850.110000px;}
.yd6{bottom:856.185000px;}
.yb9{bottom:857.445000px;}
.ya8{bottom:863.385000px;}
.y60{bottom:865.005000px;}
.yf{bottom:870.405000px;}
.y29{bottom:870.765000px;}
.y42{bottom:886.065000px;}
.ya4{bottom:904.470000px;}
.ye{bottom:906.630000px;}
.y28{bottom:906.990000px;}
.yc5{bottom:921.930000px;}
.y41{bottom:922.290000px;}
.yd{bottom:930.930000px;}
.y27{bottom:943.350000px;}
.yc{bottom:955.050000px;}
.y40{bottom:958.470000px;}
.y70{bottom:976.830000px;}
.yb{bottom:979.170000px;}
.y26{bottom:979.530000px;}
.yc4{bottom:987.090000px;}
.y3f{bottom:994.650000px;}
.y90{bottom:997.170000px;}
.ya{bottom:1015.350000px;}
.y25{bottom:1015.710000px;}
.yb8{bottom:1023.270000px;}
.y8e{bottom:1034.070000px;}
.y9{bottom:1051.530000px;}
.y24{bottom:1051.890000px;}
.y6{bottom:1074.750000px;}
.y5{bottom:1094.010000px;}
.y4{bottom:1131.630000px;}
.y3{bottom:1150.920000px;}
.y2{bottom:1170.000000px;}
.y1{bottom:1189.620000px;}
.he{height:36.180000px;}
.h9{height:38.158594px;}
.hb{height:41.902031px;}
.h8{height:52.998047px;}
.ha{height:58.651172px;}
.h7{height:59.066719px;}
.h5{height:59.436914px;}
.h3{height:65.010937px;}
.h4{height:66.757500px;}
.hd{height:82.635820px;}
.h6{height:82.676953px;}
.h2{height:84.898125px;}
.hc{height:86.585445px;}
.h12{height:93.983203px;}
.h11{height:165.780000px;}
.h10{height:869.370000px;}
.hf{height:869.550000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:349.665000px;}
.w5{width:349.815000px;}
.w1{width:893.250000px;}
.w3{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x12{left:7.596000px;}
.x16{left:19.836000px;}
.x14{left:34.596000px;}
.x15{left:61.596000px;}
.x11{left:77.400000px;}
.x2{left:84.995987px;}
.xb{left:89.855987px;}
.x1f{left:111.995987px;}
.x5{left:127.475987px;}
.x20{left:138.995987px;}
.xe{left:154.469987px;}
.x19{left:165.269973px;}
.x1a{left:172.109987px;}
.xf{left:181.469987px;}
.x1d{left:188.669973px;}
.x1e{left:195.509987px;}
.x1{left:209.729987px;}
.xa{left:301.034987px;}
.xc{left:330.914973px;}
.xd{left:337.754987px;}
.x6{left:363.494973px;}
.x7{left:370.334987px;}
.x1b{left:376.994987px;}
.x17{left:400.394973px;}
.x18{left:407.234987px;}
.x13{left:427.785000px;}
.x1c{left:459.644987px;}
.x4{left:463.784987px;}
.x8{left:595.769973px;}
.x9{left:602.609987px;}
.x3{left:615.389987px;}
.x10{left:787.319987px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.608000pt;}
.ls1c{letter-spacing:-0.328533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.311467pt;}
.ls14{letter-spacing:-0.303467pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.065280pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.303467pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.426667pt;}
.ls8{letter-spacing:4.320000pt;}
.ls17{letter-spacing:6.880000pt;}
.ls7{letter-spacing:13.103360pt;}
.lsc{letter-spacing:15.663360pt;}
.ls0{letter-spacing:16.480000pt;}
.ls12{letter-spacing:17.760000pt;}
.ls1d{letter-spacing:18.863360pt;}
.ls15{letter-spacing:20.960000pt;}
.ls16{letter-spacing:29.280000pt;}
.ls1b{letter-spacing:29.386667pt;}
.ls1a{letter-spacing:33.120000pt;}
.ls18{letter-spacing:46.560000pt;}
.ls13{letter-spacing:53.706667pt;}
.ls19{letter-spacing:56.960000pt;}
.ls10{letter-spacing:75.360000pt;}
.ls11{letter-spacing:78.560000pt;}
.lsd{letter-spacing:180.320000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.753280pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.408533pt;}
.ws8{word-spacing:-18.112000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._4b{margin-left:-18.178560pt;}
._47{margin-left:-5.706880pt;}
._21{margin-left:-3.612160pt;}
._48{margin-left:-2.235947pt;}
._0{margin-left:-1.198080pt;}
._1{width:0.937387pt;}
._7{width:2.570453pt;}
._15{width:3.906347pt;}
._13{width:4.867200pt;}
._19{width:6.589440pt;}
._18{width:7.787520pt;}
._1f{width:8.722133pt;}
._a{width:10.258560pt;}
._9{width:11.157120pt;}
._20{width:12.166613pt;}
._16{width:13.104000pt;}
._5{width:14.113493pt;}
._6{width:15.167360pt;}
._3{width:16.773120pt;}
._4a{width:17.777280pt;}
._1e{width:19.768320pt;}
._1a{width:21.265920pt;}
._f{width:22.314240pt;}
._1c{width:23.287680pt;}
._1d{width:24.186240pt;}
._26{width:25.234560pt;}
._1b{width:26.336427pt;}
._8{width:27.234987pt;}
._22{width:28.158720pt;}
._2e{width:29.053440pt;}
._3f{width:30.101760pt;}
._24{width:32.273280pt;}
._25{width:33.171840pt;}
._46{width:34.145280pt;}
._23{width:35.043840pt;}
._44{width:36.167040pt;}
._4{width:38.841387pt;}
._b{width:40.510080pt;}
._45{width:42.157440pt;}
._11{width:43.505280pt;}
._10{width:44.403840pt;}
._12{width:46.119680pt;}
._14{width:47.024640pt;}
._c{width:50.169600pt;}
._29{width:51.367680pt;}
._17{width:53.464320pt;}
._3c{width:54.737280pt;}
._43{width:56.121173pt;}
._42{width:57.358080pt;}
._28{width:60.271573pt;}
._27{width:61.258667pt;}
._37{width:66.418560pt;}
._38{width:67.392000pt;}
._2b{width:70.911360pt;}
._3e{width:72.858240pt;}
._2f{width:75.029760pt;}
._34{width:79.476480pt;}
._32{width:82.967040pt;}
._31{width:84.090240pt;}
._30{width:84.988800pt;}
._40{width:93.150720pt;}
._2d{width:97.943040pt;}
._e{width:101.387520pt;}
._d{width:102.435840pt;}
._41{width:115.315200pt;}
._49{width:129.361920pt;}
._36{width:143.095680pt;}
._35{width:143.994240pt;}
._2a{width:149.160960pt;}
._33{width:163.762560pt;}
._2c{width:180.011520pt;}
._39{width:213.482880pt;}
._3a{width:214.531200pt;}
._3d{width:255.864960pt;}
._3b{width:330.295680pt;}
._2{width:1439.680853pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:14.880000pt;}
.y8f{bottom:15.200000pt;}
.ya3{bottom:15.232000pt;}
.y8a{bottom:15.360000pt;}
.ya2{bottom:47.386667pt;}
.y89{bottom:47.546667pt;}
.y8{bottom:51.520000pt;}
.ya7{bottom:66.080000pt;}
.y7{bottom:68.320000pt;}
.y88{bottom:79.706667pt;}
.y52{bottom:84.800000pt;}
.yc3{bottom:89.440000pt;}
.y23{bottom:92.640000pt;}
.y72{bottom:94.720000pt;}
.y3e{bottom:97.760000pt;}
.ya6{bottom:98.240000pt;}
.y51{bottom:100.160000pt;}
.yd5{bottom:100.480000pt;}
.yc2{bottom:104.800000pt;}
.y87{bottom:111.866667pt;}
.y91{bottom:112.800000pt;}
.y50{bottom:115.520000pt;}
.y4f{bottom:120.192000pt;}
.y22{bottom:124.832000pt;}
.y6f{bottom:127.872000pt;}
.y3d{bottom:130.112000pt;}
.ya5{bottom:130.400000pt;}
.y4e{bottom:130.912000pt;}
.y5f{bottom:131.232000pt;}
.ya1{bottom:144.026667pt;}
.y86{bottom:144.186667pt;}
.y4d{bottom:146.106667pt;}
.y4c{bottom:150.746667pt;}
.y21{bottom:156.826667pt;}
.y4b{bottom:161.946667pt;}
.y3c{bottom:162.266667pt;}
.ya0{bottom:175.866667pt;}
.y85{bottom:176.026667pt;}
.y6e{bottom:179.066667pt;}
.y20{bottom:189.306667pt;}
.y3b{bottom:194.426667pt;}
.y5e{bottom:197.626667pt;}
.y4a{bottom:202.906667pt;}
.yd4{bottom:208.026667pt;}
.y9f{bottom:208.346667pt;}
.y84{bottom:208.506667pt;}
.yb7{bottom:209.946667pt;}
.y6d{bottom:211.226667pt;}
.y1f{bottom:221.466667pt;}
.y3a{bottom:226.586667pt;}
.y5d{bottom:229.946667pt;}
.y49{bottom:235.066667pt;}
.yd3{bottom:240.186667pt;}
.y83{bottom:240.666667pt;}
.y9d{bottom:240.706667pt;}
.yb6{bottom:242.106667pt;}
.y6c{bottom:243.386667pt;}
.y1e{bottom:253.306667pt;}
.y39{bottom:258.906667pt;}
.y5c{bottom:262.106667pt;}
.y48{bottom:267.226667pt;}
.yd2{bottom:272.346667pt;}
.y82{bottom:272.866667pt;}
.yc1{bottom:275.546667pt;}
.y1d{bottom:285.946667pt;}
.y38{bottom:291.066667pt;}
.yb5{bottom:292.986667pt;}
.y6b{bottom:293.946667pt;}
.y5b{bottom:294.266667pt;}
.y47{bottom:299.386667pt;}
.yd1{bottom:304.506667pt;}
.y9c{bottom:305.026667pt;}
.y81{bottom:305.186667pt;}
.yc0{bottom:307.866667pt;}
.y1c{bottom:318.106667pt;}
.y37{bottom:323.226667pt;}
.yb4{bottom:325.146667pt;}
.y5a{bottom:326.426667pt;}
.yd0{bottom:336.826667pt;}
.y80{bottom:337.026667pt;}
.y9b{bottom:337.186667pt;}
.y8d{bottom:337.346667pt;}
.y6a{bottom:345.186667pt;}
.y1b{bottom:350.306667pt;}
.y36{bottom:355.426667pt;}
.ybf{bottom:358.786667pt;}
.ycf{bottom:369.026667pt;}
.y9a{bottom:369.186667pt;}
.y7f{bottom:369.506667pt;}
.yb3{bottom:376.066667pt;}
.y59{bottom:376.866667pt;}
.y69{bottom:377.346667pt;}
.y1a{bottom:382.466667pt;}
.y35{bottom:387.586667pt;}
.ybe{bottom:390.946667pt;}
.yce{bottom:401.186667pt;}
.y99{bottom:401.346667pt;}
.y7e{bottom:401.666667pt;}
.yb2{bottom:408.226667pt;}
.y68{bottom:409.506667pt;}
.y19{bottom:414.786667pt;}
.y34{bottom:419.906667pt;}
.y46{bottom:421.506667pt;}
.y58{bottom:428.226667pt;}
.ycd{bottom:433.346667pt;}
.y98{bottom:433.826667pt;}
.y7d{bottom:433.986667pt;}
.yb1{bottom:440.386667pt;}
.ybd{bottom:441.506667pt;}
.y67{bottom:441.826667pt;}
.y18{bottom:446.946667pt;}
.y33{bottom:452.066667pt;}
.y57{bottom:460.386667pt;}
.ycc{bottom:465.506667pt;}
.y97{bottom:466.013333pt;}
.y7c{bottom:466.146667pt;}
.yb0{bottom:472.706667pt;}
.y66{bottom:473.986667pt;}
.y17{bottom:479.106667pt;}
.y32{bottom:484.226667pt;}
.y56{bottom:492.706667pt;}
.ycb{bottom:497.826667pt;}
.y7b{bottom:498.333333pt;}
.yaf{bottom:504.866667pt;}
.y65{bottom:506.146667pt;}
.y16{bottom:511.266667pt;}
.y31{bottom:516.066667pt;}
.y55{bottom:524.866667pt;}
.yca{bottom:529.986667pt;}
.y7a{bottom:530.173333pt;}
.y8c{bottom:530.493333pt;}
.yae{bottom:537.026667pt;}
.y15{bottom:543.586667pt;}
.y30{bottom:548.706667pt;}
.y54{bottom:557.026667pt;}
.yc9{bottom:562.146667pt;}
.y96{bottom:562.333333pt;}
.y8b{bottom:562.493333pt;}
.y79{bottom:562.813333pt;}
.y14{bottom:575.773333pt;}
.y2f{bottom:580.893333pt;}
.yad{bottom:587.613333pt;}
.y53{bottom:589.213333pt;}
.yc8{bottom:594.333333pt;}
.y95{bottom:594.813333pt;}
.y78{bottom:594.973333pt;}
.y13{bottom:607.933333pt;}
.y2e{bottom:613.053333pt;}
.y64{bottom:621.533333pt;}
.yc7{bottom:626.653333pt;}
.y77{bottom:627.133333pt;}
.yac{bottom:638.813333pt;}
.y12{bottom:639.773333pt;}
.y45{bottom:640.093333pt;}
.y2d{bottom:644.893333pt;}
.ybc{bottom:646.813333pt;}
.y63{bottom:653.693333pt;}
.yc6{bottom:658.813333pt;}
.y76{bottom:659.293333pt;}
.yab{bottom:670.973333pt;}
.ybb{bottom:672.253333pt;}
.y2c{bottom:677.533333pt;}
.y62{bottom:685.853333pt;}
.y11{bottom:690.973333pt;}
.y75{bottom:691.453333pt;}
.y94{bottom:691.493333pt;}
.y44{bottom:697.693333pt;}
.yaa{bottom:703.133333pt;}
.yba{bottom:704.573333pt;}
.y2b{bottom:709.693333pt;}
.y10{bottom:723.133333pt;}
.y93{bottom:723.333333pt;}
.y74{bottom:723.493333pt;}
.y9e{bottom:723.653333pt;}
.ya9{bottom:735.453333pt;}
.y61{bottom:736.733333pt;}
.y2a{bottom:741.853333pt;}
.y43{bottom:755.453333pt;}
.y92{bottom:755.493333pt;}
.y73{bottom:755.653333pt;}
.yd6{bottom:761.053333pt;}
.yb9{bottom:762.173333pt;}
.ya8{bottom:767.453333pt;}
.y60{bottom:768.893333pt;}
.yf{bottom:773.693333pt;}
.y29{bottom:774.013333pt;}
.y42{bottom:787.613333pt;}
.ya4{bottom:803.973333pt;}
.ye{bottom:805.893333pt;}
.y28{bottom:806.213333pt;}
.yc5{bottom:819.493333pt;}
.y41{bottom:819.813333pt;}
.yd{bottom:827.493333pt;}
.y27{bottom:838.533333pt;}
.yc{bottom:848.933333pt;}
.y40{bottom:851.973333pt;}
.y70{bottom:868.293333pt;}
.yb{bottom:870.373333pt;}
.y26{bottom:870.693333pt;}
.yc4{bottom:877.413333pt;}
.y3f{bottom:884.133333pt;}
.y90{bottom:886.373333pt;}
.ya{bottom:902.533333pt;}
.y25{bottom:902.853333pt;}
.yb8{bottom:909.573333pt;}
.y8e{bottom:919.173333pt;}
.y9{bottom:934.693333pt;}
.y24{bottom:935.013333pt;}
.y6{bottom:955.333333pt;}
.y5{bottom:972.453333pt;}
.y4{bottom:1005.893333pt;}
.y3{bottom:1023.040000pt;}
.y2{bottom:1040.000000pt;}
.y1{bottom:1057.440000pt;}
.he{height:32.160000pt;}
.h9{height:33.918750pt;}
.hb{height:37.246250pt;}
.h8{height:47.109375pt;}
.ha{height:52.134375pt;}
.h7{height:52.503750pt;}
.h5{height:52.832812pt;}
.h3{height:57.787500pt;}
.h4{height:59.340000pt;}
.hd{height:73.454062pt;}
.h6{height:73.490625pt;}
.h2{height:75.465000pt;}
.hc{height:76.964840pt;}
.h12{height:83.540625pt;}
.h11{height:147.360000pt;}
.h10{height:772.773333pt;}
.hf{height:772.933333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:310.813333pt;}
.w5{width:310.946667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x12{left:6.752000pt;}
.x16{left:17.632000pt;}
.x14{left:30.752000pt;}
.x15{left:54.752000pt;}
.x11{left:68.800000pt;}
.x2{left:75.551988pt;}
.xb{left:79.871988pt;}
.x1f{left:99.551988pt;}
.x5{left:113.311988pt;}
.x20{left:123.551988pt;}
.xe{left:137.306655pt;}
.x19{left:146.906643pt;}
.x1a{left:152.986655pt;}
.xf{left:161.306655pt;}
.x1d{left:167.706643pt;}
.x1e{left:173.786655pt;}
.x1{left:186.426655pt;}
.xa{left:267.586655pt;}
.xc{left:294.146643pt;}
.xd{left:300.226655pt;}
.x6{left:323.106643pt;}
.x7{left:329.186655pt;}
.x1b{left:335.106655pt;}
.x17{left:355.906643pt;}
.x18{left:361.986655pt;}
.x13{left:380.253333pt;}
.x1c{left:408.573321pt;}
.x4{left:412.253321pt;}
.x8{left:529.573310pt;}
.x9{left:535.653322pt;}
.x3{left:547.013321pt;}
.x10{left:699.839988pt;}
}




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