
    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_09f939e1d8bf262cbd565ef7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_a1ccf80b1181a3df32bcf514.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_207495f705a8907aa7fc4c0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_1c3974f5a657faf25ca6ef60.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_321387c0d35fbf89d04e0ca6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_464872f91b185257edad297d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_29b44ebb895a09a0a416813a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_0df1af3c967b1337fd74b315.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_b6c4eaf693f55182329d7c65.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_6ea36b3fca68796e15fda14c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_2a1846793dded7be16688b63.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_2ebdfba6c0c5b8b91537123c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_3d0421ce4c682543f66c3531.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_aeee84ebb24adb22aaad06fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_da323f93c0e9804a4cab5a12.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_df8d15f2513b66cffbbe8c90.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-4.680000px;}
.ls11{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.lsc{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls4{letter-spacing:0.900000px;}
.ls10{letter-spacing:15.786720px;}
.lsa{letter-spacing:17.460000px;}
.lsf{letter-spacing:45.306720px;}
.lsd{letter-spacing:63.450720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.093600px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws7{word-spacing:-10.260000px;}
.ws9{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.711360px;}
.ws3{word-spacing:-8.786880px;}
.ws10{word-spacing:-8.280000px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.430160px;}
._2{margin-left:-3.101760px;}
._b{margin-left:-2.062560px;}
._0{margin-left:-1.026000px;}
._1{width:1.236000px;}
._a{width:2.387520px;}
._10{width:3.463440px;}
._6{width:4.625520px;}
._5{width:5.779440px;}
._13{width:6.812640px;}
._17{width:8.050320px;}
._11{width:9.262800px;}
._8{width:11.014800px;}
._9{width:12.728880px;}
._12{width:13.811040px;}
._7{width:16.374240px;}
._16{width:18.167040px;}
._14{width:23.146080px;}
._15{width:24.170640px;}
._f{width:26.791440px;}
._d{width:31.732560px;}
._c{width:32.987520px;}
._e{width:110.574960px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y3d{bottom:3.960000px;}
.y19{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y3b{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2a{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y3c{bottom:22.320000px;}
.y3a{bottom:25.380000px;}
.y18{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y29{bottom:33.300000px;}
.y5{bottom:43.380000px;}
.y17{bottom:45.765000px;}
.y38{bottom:45.900000px;}
.ya{bottom:46.620000px;}
.y28{bottom:50.790000px;}
.y16{bottom:62.325000px;}
.y37{bottom:63.210000px;}
.y1{bottom:64.440000px;}
.y27{bottom:68.070000px;}
.y9{bottom:73.470000px;}
.y15{bottom:78.165000px;}
.y36{bottom:80.310000px;}
.y26{bottom:85.350000px;}
.y14{bottom:88.605000px;}
.y8{bottom:93.090000px;}
.y35{bottom:97.590000px;}
.y25{bottom:103.170000px;}
.y13{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.y34{bottom:114.870000px;}
.y91{bottom:117.756000px;}
.y24{bottom:120.450000px;}
.y12{bottom:125.865000px;}
.y33{bottom:132.150000px;}
.y90{bottom:135.036000px;}
.y23{bottom:137.910000px;}
.y53{bottom:140.976000px;}
.y32{bottom:149.430000px;}
.y11{bottom:151.605000px;}
.y8f{bottom:153.390000px;}
.y22{bottom:155.370000px;}
.y52{bottom:158.250000px;}
.y31{bottom:166.710000px;}
.y8e{bottom:171.750000px;}
.y21{bottom:172.650000px;}
.y51{bottom:175.530000px;}
.y10{bottom:175.905000px;}
.y30{bottom:183.810000px;}
.y8d{bottom:189.930000px;}
.y20{bottom:190.110000px;}
.y50{bottom:192.810000px;}
.y2f{bottom:201.090000px;}
.y8c{bottom:208.290000px;}
.y4f{bottom:210.090000px;}
.y1f{bottom:210.450000px;}
.y2e{bottom:218.370000px;}
.y8b{bottom:225.570000px;}
.y4e{bottom:227.190000px;}
.y2d{bottom:235.650000px;}
.y1e{bottom:237.810000px;}
.y8a{bottom:242.850000px;}
.y4d{bottom:244.470000px;}
.y2c{bottom:252.930000px;}
.y1d{bottom:255.630000px;}
.y89{bottom:260.130000px;}
.y4c{bottom:261.750000px;}
.y88{bottom:277.410000px;}
.y4b{bottom:279.030000px;}
.y87{bottom:294.510000px;}
.y4a{bottom:296.310000px;}
.y86{bottom:311.790000px;}
.y49{bottom:313.410000px;}
.y85{bottom:329.070000px;}
.y48{bottom:330.690000px;}
.y84{bottom:346.395000px;}
.y47{bottom:348.015000px;}
.y83{bottom:363.675000px;}
.y46{bottom:365.295000px;}
.y82{bottom:380.775000px;}
.y45{bottom:382.575000px;}
.y81{bottom:398.055000px;}
.y44{bottom:399.855000px;}
.y80{bottom:415.335000px;}
.y43{bottom:416.955000px;}
.y7f{bottom:432.615000px;}
.y42{bottom:434.235000px;}
.y7e{bottom:449.895000px;}
.y41{bottom:451.515000px;}
.y7d{bottom:467.175000px;}
.y40{bottom:468.795000px;}
.yba{bottom:482.115000px;}
.y7c{bottom:484.275000px;}
.y3f{bottom:486.075000px;}
.yb9{bottom:499.395000px;}
.y7b{bottom:501.555000px;}
.y3e{bottom:503.355000px;}
.yb8{bottom:516.675000px;}
.y39{bottom:517.215000px;}
.y7a{bottom:518.835000px;}
.yb7{bottom:533.955000px;}
.y79{bottom:536.115000px;}
.yb6{bottom:551.235000px;}
.y78{bottom:553.395000px;}
.y1c{bottom:553.935000px;}
.yb5{bottom:568.515000px;}
.y77{bottom:570.675000px;}
.yb4{bottom:585.615000px;}
.y76{bottom:587.775000px;}
.yb3{bottom:602.895000px;}
.y75{bottom:605.085000px;}
.yb2{bottom:620.205000px;}
.y74{bottom:622.365000px;}
.yb1{bottom:637.485000px;}
.y73{bottom:639.645000px;}
.yb0{bottom:654.765000px;}
.y72{bottom:656.925000px;}
.yaf{bottom:672.045000px;}
.y71{bottom:674.025000px;}
.yae{bottom:689.145000px;}
.y70{bottom:691.305000px;}
.yad{bottom:706.425000px;}
.y6f{bottom:708.585000px;}
.yac{bottom:723.705000px;}
.y6e{bottom:725.865000px;}
.yab{bottom:740.985000px;}
.y6d{bottom:743.145000px;}
.yaa{bottom:758.265000px;}
.y6c{bottom:760.425000px;}
.ya9{bottom:775.365000px;}
.y6b{bottom:777.525000px;}
.ya8{bottom:792.645000px;}
.y6a{bottom:794.805000px;}
.ya7{bottom:809.925000px;}
.y69{bottom:812.085000px;}
.y1a{bottom:820.905000px;}
.ya6{bottom:827.205000px;}
.y68{bottom:829.365000px;}
.ya5{bottom:844.485000px;}
.y67{bottom:846.645000px;}
.yf{bottom:850.425000px;}
.ya4{bottom:861.765000px;}
.y66{bottom:863.925000px;}
.ya3{bottom:878.910000px;}
.y65{bottom:881.070000px;}
.ya2{bottom:896.190000px;}
.y64{bottom:898.350000px;}
.ya1{bottom:913.470000px;}
.y63{bottom:915.630000px;}
.ya0{bottom:930.750000px;}
.y62{bottom:932.910000px;}
.y9f{bottom:948.030000px;}
.y61{bottom:950.190000px;}
.y9e{bottom:965.310000px;}
.y60{bottom:967.470000px;}
.y9d{bottom:982.410000px;}
.y5f{bottom:984.570000px;}
.y9c{bottom:999.690000px;}
.y5e{bottom:1001.850000px;}
.y9b{bottom:1016.970000px;}
.y5d{bottom:1019.130000px;}
.y9a{bottom:1034.250000px;}
.y5c{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y99{bottom:1051.530000px;}
.y5b{bottom:1053.690000px;}
.y6{bottom:1066.830000px;}
.y98{bottom:1068.810000px;}
.y5a{bottom:1070.790000px;}
.y97{bottom:1085.910000px;}
.y59{bottom:1088.070000px;}
.y96{bottom:1103.190000px;}
.y58{bottom:1105.350000px;}
.y95{bottom:1120.470000px;}
.y57{bottom:1122.630000px;}
.y94{bottom:1137.780000px;}
.y56{bottom:1139.940000px;}
.y93{bottom:1155.060000px;}
.y55{bottom:1157.220000px;}
.y92{bottom:1173.240000px;}
.y54{bottom:1174.320000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1d{height:36.720000px;}
.h1b{height:38.818125px;}
.h1c{height:41.726953px;}
.h1f{height:42.164648px;}
.h1a{height:42.281367px;}
.h21{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h20{height:48.027656px;}
.h1e{height:48.088125px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:191.010000px;}
.h16{height:266.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.w8{width:216.075000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.xb{left:12.996000px;}
.x10{left:34.776000px;}
.xe{left:44.856000px;}
.xf{left:47.556000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x13{left:107.855987px;}
.xd{left:167.250000px;}
.xc{left:195.510000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x9{left:439.500000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-4.160000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.lsc{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls4{letter-spacing:0.800000pt;}
.ls10{letter-spacing:14.032640pt;}
.lsa{letter-spacing:15.520000pt;}
.lsf{letter-spacing:40.272640pt;}
.lsd{letter-spacing:56.400640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws7{word-spacing:-9.120000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.632320pt;}
.ws3{word-spacing:-7.810560pt;}
.ws10{word-spacing:-7.360000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.937920pt;}
._2{margin-left:-2.757120pt;}
._b{margin-left:-1.833387pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.098667pt;}
._a{width:2.122240pt;}
._10{width:3.078613pt;}
._6{width:4.111573pt;}
._5{width:5.137280pt;}
._13{width:6.055680pt;}
._17{width:7.155840pt;}
._11{width:8.233600pt;}
._8{width:9.790933pt;}
._9{width:11.314560pt;}
._12{width:12.276480pt;}
._7{width:14.554880pt;}
._16{width:16.148480pt;}
._14{width:20.574293pt;}
._15{width:21.485013pt;}
._f{width:23.814613pt;}
._d{width:28.206720pt;}
._c{width:29.322240pt;}
._e{width:98.288853pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y3d{bottom:3.520000pt;}
.y19{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y3b{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2a{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y3c{bottom:19.840000pt;}
.y3a{bottom:22.560000pt;}
.y18{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y29{bottom:29.600000pt;}
.y5{bottom:38.560000pt;}
.y17{bottom:40.680000pt;}
.y38{bottom:40.800000pt;}
.ya{bottom:41.440000pt;}
.y28{bottom:45.146667pt;}
.y16{bottom:55.400000pt;}
.y37{bottom:56.186667pt;}
.y1{bottom:57.280000pt;}
.y27{bottom:60.506667pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:69.480000pt;}
.y36{bottom:71.386667pt;}
.y26{bottom:75.866667pt;}
.y14{bottom:78.760000pt;}
.y8{bottom:82.746667pt;}
.y35{bottom:86.746667pt;}
.y25{bottom:91.706667pt;}
.y13{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.y34{bottom:102.106667pt;}
.y91{bottom:104.672000pt;}
.y24{bottom:107.066667pt;}
.y12{bottom:111.880000pt;}
.y33{bottom:117.466667pt;}
.y90{bottom:120.032000pt;}
.y23{bottom:122.586667pt;}
.y53{bottom:125.312000pt;}
.y32{bottom:132.826667pt;}
.y11{bottom:134.760000pt;}
.y8f{bottom:136.346667pt;}
.y22{bottom:138.106667pt;}
.y52{bottom:140.666667pt;}
.y31{bottom:148.186667pt;}
.y8e{bottom:152.666667pt;}
.y21{bottom:153.466667pt;}
.y51{bottom:156.026667pt;}
.y10{bottom:156.360000pt;}
.y30{bottom:163.386667pt;}
.y8d{bottom:168.826667pt;}
.y20{bottom:168.986667pt;}
.y50{bottom:171.386667pt;}
.y2f{bottom:178.746667pt;}
.y8c{bottom:185.146667pt;}
.y4f{bottom:186.746667pt;}
.y1f{bottom:187.066667pt;}
.y2e{bottom:194.106667pt;}
.y8b{bottom:200.506667pt;}
.y4e{bottom:201.946667pt;}
.y2d{bottom:209.466667pt;}
.y1e{bottom:211.386667pt;}
.y8a{bottom:215.866667pt;}
.y4d{bottom:217.306667pt;}
.y2c{bottom:224.826667pt;}
.y1d{bottom:227.226667pt;}
.y89{bottom:231.226667pt;}
.y4c{bottom:232.666667pt;}
.y88{bottom:246.586667pt;}
.y4b{bottom:248.026667pt;}
.y87{bottom:261.786667pt;}
.y4a{bottom:263.386667pt;}
.y86{bottom:277.146667pt;}
.y49{bottom:278.586667pt;}
.y85{bottom:292.506667pt;}
.y48{bottom:293.946667pt;}
.y84{bottom:307.906667pt;}
.y47{bottom:309.346667pt;}
.y83{bottom:323.266667pt;}
.y46{bottom:324.706667pt;}
.y82{bottom:338.466667pt;}
.y45{bottom:340.066667pt;}
.y81{bottom:353.826667pt;}
.y44{bottom:355.426667pt;}
.y80{bottom:369.186667pt;}
.y43{bottom:370.626667pt;}
.y7f{bottom:384.546667pt;}
.y42{bottom:385.986667pt;}
.y7e{bottom:399.906667pt;}
.y41{bottom:401.346667pt;}
.y7d{bottom:415.266667pt;}
.y40{bottom:416.706667pt;}
.yba{bottom:428.546667pt;}
.y7c{bottom:430.466667pt;}
.y3f{bottom:432.066667pt;}
.yb9{bottom:443.906667pt;}
.y7b{bottom:445.826667pt;}
.y3e{bottom:447.426667pt;}
.yb8{bottom:459.266667pt;}
.y39{bottom:459.746667pt;}
.y7a{bottom:461.186667pt;}
.yb7{bottom:474.626667pt;}
.y79{bottom:476.546667pt;}
.yb6{bottom:489.986667pt;}
.y78{bottom:491.906667pt;}
.y1c{bottom:492.386667pt;}
.yb5{bottom:505.346667pt;}
.y77{bottom:507.266667pt;}
.yb4{bottom:520.546667pt;}
.y76{bottom:522.466667pt;}
.yb3{bottom:535.906667pt;}
.y75{bottom:537.853333pt;}
.yb2{bottom:551.293333pt;}
.y74{bottom:553.213333pt;}
.yb1{bottom:566.653333pt;}
.y73{bottom:568.573333pt;}
.yb0{bottom:582.013333pt;}
.y72{bottom:583.933333pt;}
.yaf{bottom:597.373333pt;}
.y71{bottom:599.133333pt;}
.yae{bottom:612.573333pt;}
.y70{bottom:614.493333pt;}
.yad{bottom:627.933333pt;}
.y6f{bottom:629.853333pt;}
.yac{bottom:643.293333pt;}
.y6e{bottom:645.213333pt;}
.yab{bottom:658.653333pt;}
.y6d{bottom:660.573333pt;}
.yaa{bottom:674.013333pt;}
.y6c{bottom:675.933333pt;}
.ya9{bottom:689.213333pt;}
.y6b{bottom:691.133333pt;}
.ya8{bottom:704.573333pt;}
.y6a{bottom:706.493333pt;}
.ya7{bottom:719.933333pt;}
.y69{bottom:721.853333pt;}
.y1a{bottom:729.693333pt;}
.ya6{bottom:735.293333pt;}
.y68{bottom:737.213333pt;}
.ya5{bottom:750.653333pt;}
.y67{bottom:752.573333pt;}
.yf{bottom:755.933333pt;}
.ya4{bottom:766.013333pt;}
.y66{bottom:767.933333pt;}
.ya3{bottom:781.253333pt;}
.y65{bottom:783.173333pt;}
.ya2{bottom:796.613333pt;}
.y64{bottom:798.533333pt;}
.ya1{bottom:811.973333pt;}
.y63{bottom:813.893333pt;}
.ya0{bottom:827.333333pt;}
.y62{bottom:829.253333pt;}
.y9f{bottom:842.693333pt;}
.y61{bottom:844.613333pt;}
.y9e{bottom:858.053333pt;}
.y60{bottom:859.973333pt;}
.y9d{bottom:873.253333pt;}
.y5f{bottom:875.173333pt;}
.y9c{bottom:888.613333pt;}
.y5e{bottom:890.533333pt;}
.y9b{bottom:903.973333pt;}
.y5d{bottom:905.893333pt;}
.y9a{bottom:919.333333pt;}
.y5c{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y99{bottom:934.693333pt;}
.y5b{bottom:936.613333pt;}
.y6{bottom:948.293333pt;}
.y98{bottom:950.053333pt;}
.y5a{bottom:951.813333pt;}
.y97{bottom:965.253333pt;}
.y59{bottom:967.173333pt;}
.y96{bottom:980.613333pt;}
.y58{bottom:982.533333pt;}
.y95{bottom:995.973333pt;}
.y57{bottom:997.893333pt;}
.y94{bottom:1011.360000pt;}
.y56{bottom:1013.280000pt;}
.y93{bottom:1026.720000pt;}
.y55{bottom:1028.640000pt;}
.y92{bottom:1042.880000pt;}
.y54{bottom:1043.840000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1d{height:32.640000pt;}
.h1b{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1f{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h21{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h20{height:42.691250pt;}
.h1e{height:42.745000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:169.786667pt;}
.h16{height:237.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.w8{width:192.066667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.xb{left:11.552000pt;}
.x10{left:30.912000pt;}
.xe{left:39.872000pt;}
.xf{left:42.272000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x13{left:95.871988pt;}
.xd{left:148.666667pt;}
.xc{left:173.786667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x9{left:390.666667pt;}
.x3{left:656.933333pt;}
}




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