
    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_fc1a77a4f04f389c2e8cdc32.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_cb7b55761577aa2d3f494192.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_4be58dde55e89c6c51997554.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_d1fe1a0170b58ea1692d5067.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d9703e73b252580928e70b88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_63ce9d563b942f38744aab41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_2561a200d214adba7c39aa64.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_be0460e69a8ece6cc8c7de3c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_66d94781afddab197b94f88b.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_8fd566ef3f92265a5287c471.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cf30262452a6c6c416b7e2ee.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_21aa8a2ccafbb023c1978da7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8e790463cf3504b889d0c5f2.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_3aead1a3d381e9bbf0829ed9.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_2bd562a6484cf60c68b39fa4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_31d0311626b48e82cb7d441e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.944824;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:ff15;src:url('chunks/assets/font_9e1332c340b14645b9d37789.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.944824;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:ff16;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff16{font-family:ff16;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.127200px;}
.ls16{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.567840px;}
.ls13{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.786240px;}
.ls12{letter-spacing:1.080000px;}
.ls15{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.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;}
}
.ws4{word-spacing:-84.240000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._13{margin-left:-7.414320px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.106400px;}
._2{margin-left:-2.885760px;}
._0{margin-left:-1.242000px;}
._1{width:1.038000px;}
._3{width:2.155440px;}
._12{width:3.358080px;}
._17{width:4.460640px;}
._9{width:5.655120px;}
._16{width:6.752880px;}
._d{width:8.105280px;}
._e{width:9.300480px;}
._b{width:10.376160px;}
._8{width:11.885760px;}
._c{width:13.200720px;}
._18{width:16.162560px;}
._14{width:17.243280px;}
._a{width:18.493200px;}
._15{width:19.997520px;}
._7{width:21.472080px;}
._6{width:22.608720px;}
._11{width:24.113760px;}
._10{width:25.338240px;}
._1e{width:26.504880px;}
._f{width:29.486880px;}
._1b{width:30.856320px;}
._1d{width:36.991440px;}
._1c{width:38.306160px;}
._19{width:55.078320px;}
._1a{width:191.153760px;}
.fc6{color:transparent;}
.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);}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{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;}
.y42{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y18{bottom:3.645000px;}
.y47{bottom:3.960000px;}
.yf{bottom:9.540000px;}
.y45{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.yb3{bottom:17.280000px;}
.y17{bottom:20.025000px;}
.y3{bottom:20.160000px;}
.y41{bottom:20.520000px;}
.y46{bottom:22.320000px;}
.y44{bottom:25.380000px;}
.y6{bottom:25.740000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y16{bottom:36.225000px;}
.y2{bottom:36.576000px;}
.y40{bottom:37.620000px;}
.yb{bottom:46.620000px;}
.y1{bottom:48.240000px;}
.y15{bottom:51.525000px;}
.y3f{bottom:54.900000px;}
.y14{bottom:70.605000px;}
.y3e{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y3d{bottom:89.460000px;}
.y9{bottom:93.090000px;}
.y13{bottom:96.345000px;}
.y3c{bottom:106.740000px;}
.y8{bottom:111.270000px;}
.y95{bottom:111.456000px;}
.y57{bottom:116.316000px;}
.y12{bottom:122.085000px;}
.ybf{bottom:122.436000px;}
.y3b{bottom:124.020000px;}
.y94{bottom:128.736000px;}
.y56{bottom:133.596000px;}
.ybe{bottom:140.436000px;}
.y3a{bottom:141.120000px;}
.y93{bottom:146.016000px;}
.y11{bottom:146.385000px;}
.y2a{bottom:150.300000px;}
.y55{bottom:150.870000px;}
.y39{bottom:158.400000px;}
.ybd{bottom:158.430000px;}
.y92{bottom:163.110000px;}
.y29{bottom:165.600000px;}
.y54{bottom:168.150000px;}
.y38{bottom:175.680000px;}
.ybc{bottom:176.430000px;}
.y91{bottom:180.390000px;}
.y28{bottom:183.270000px;}
.y53{bottom:185.250000px;}
.y37{bottom:192.990000px;}
.ybb{bottom:194.430000px;}
.y90{bottom:197.670000px;}
.y27{bottom:200.550000px;}
.y52{bottom:202.530000px;}
.y36{bottom:210.270000px;}
.yba{bottom:212.430000px;}
.y8f{bottom:214.950000px;}
.y26{bottom:217.830000px;}
.y51{bottom:219.810000px;}
.y35{bottom:227.370000px;}
.yb9{bottom:230.430000px;}
.y8e{bottom:232.230000px;}
.y25{bottom:235.470000px;}
.y50{bottom:237.090000px;}
.y34{bottom:244.650000px;}
.yb8{bottom:248.430000px;}
.y8d{bottom:249.510000px;}
.y24{bottom:252.930000px;}
.y4f{bottom:254.370000px;}
.y33{bottom:261.930000px;}
.yb7{bottom:266.430000px;}
.y8c{bottom:266.610000px;}
.y23{bottom:270.390000px;}
.y4e{bottom:271.650000px;}
.y32{bottom:279.210000px;}
.y8b{bottom:283.890000px;}
.yb6{bottom:284.430000px;}
.y22{bottom:287.670000px;}
.y4d{bottom:288.750000px;}
.y31{bottom:296.490000px;}
.y8a{bottom:301.170000px;}
.yb5{bottom:302.430000px;}
.y21{bottom:305.130000px;}
.y4c{bottom:306.030000px;}
.y30{bottom:313.770000px;}
.y89{bottom:318.450000px;}
.yb4{bottom:320.430000px;}
.y20{bottom:322.590000px;}
.y4b{bottom:323.310000px;}
.y2f{bottom:330.870000px;}
.y88{bottom:335.730000px;}
.yb2{bottom:338.475000px;}
.y1f{bottom:339.870000px;}
.y4a{bottom:340.635000px;}
.y2e{bottom:348.150000px;}
.y87{bottom:352.875000px;}
.yb1{bottom:356.475000px;}
.y1e{bottom:357.510000px;}
.y49{bottom:357.915000px;}
.y2d{bottom:365.430000px;}
.y86{bottom:370.155000px;}
.yb0{bottom:374.475000px;}
.y48{bottom:375.015000px;}
.y2c{bottom:382.710000px;}
.y1d{bottom:384.870000px;}
.y85{bottom:387.435000px;}
.y43{bottom:389.055000px;}
.yaf{bottom:392.475000px;}
.y2b{bottom:399.990000px;}
.y1c{bottom:402.690000px;}
.y84{bottom:404.715000px;}
.yae{bottom:413.715000px;}
.y83{bottom:421.995000px;}
.y1b{bottom:425.775000px;}
.yad{bottom:430.995000px;}
.y82{bottom:439.275000px;}
.yac{bottom:448.275000px;}
.y81{bottom:456.375000px;}
.yab{bottom:465.375000px;}
.y80{bottom:473.655000px;}
.yaa{bottom:482.655000px;}
.y7f{bottom:490.935000px;}
.ya9{bottom:499.935000px;}
.y7e{bottom:508.215000px;}
.ya8{bottom:517.215000px;}
.y7d{bottom:525.495000px;}
.ya7{bottom:534.495000px;}
.y7c{bottom:542.775000px;}
.ya6{bottom:551.775000px;}
.y7b{bottom:559.875000px;}
.ya5{bottom:568.875000px;}
.y7a{bottom:577.155000px;}
.ya4{bottom:586.155000px;}
.y79{bottom:594.435000px;}
.ya3{bottom:603.435000px;}
.y78{bottom:611.745000px;}
.ya2{bottom:620.745000px;}
.y77{bottom:629.025000px;}
.ya1{bottom:638.025000px;}
.y76{bottom:646.305000px;}
.ya0{bottom:655.125000px;}
.y75{bottom:663.405000px;}
.y9f{bottom:669.885000px;}
.y74{bottom:680.685000px;}
.y9e{bottom:687.885000px;}
.y73{bottom:697.965000px;}
.y9d{bottom:705.885000px;}
.y72{bottom:715.245000px;}
.y9c{bottom:723.885000px;}
.y71{bottom:732.525000px;}
.y9b{bottom:741.885000px;}
.y70{bottom:749.625000px;}
.y9a{bottom:759.885000px;}
.y6f{bottom:766.905000px;}
.y99{bottom:777.885000px;}
.y6e{bottom:784.185000px;}
.y98{bottom:795.885000px;}
.y6d{bottom:801.465000px;}
.y97{bottom:813.885000px;}
.y6c{bottom:818.745000px;}
.y96{bottom:831.885000px;}
.y6b{bottom:836.025000px;}
.y19{bottom:839.805000px;}
.y6a{bottom:853.125000px;}
.y10{bottom:869.325000px;}
.y69{bottom:870.405000px;}
.y68{bottom:887.730000px;}
.y67{bottom:905.010000px;}
.y66{bottom:922.290000px;}
.y65{bottom:939.570000px;}
.y64{bottom:956.670000px;}
.y63{bottom:973.950000px;}
.y62{bottom:991.230000px;}
.y61{bottom:1008.510000px;}
.y60{bottom:1025.790000px;}
.ye{bottom:1030.830000px;}
.y5f{bottom:1042.890000px;}
.y7{bottom:1056.210000px;}
.y5e{bottom:1060.170000px;}
.y5d{bottom:1077.450000px;}
.y5c{bottom:1094.730000px;}
.y5b{bottom:1112.010000px;}
.y5a{bottom:1129.290000px;}
.y59{bottom:1146.420000px;}
.y58{bottom:1163.700000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.hc{height:25.020000px;}
.h12{height:29.520000px;}
.h9{height:36.180000px;}
.h1c{height:36.720000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h1f{height:43.302656px;}
.h5{height:43.453125px;}
.h22{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1e{height:48.027656px;}
.h1d{height:48.088125px;}
.h2{height:49.536000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h13{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:161.490000px;}
.h14{height:414.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:65.160000px;}
.w3{width:74.880000px;}
.w11{width:112.140000px;}
.w10{width:115.596000px;}
.wc{width:143.496000px;}
.w5{width:151.950000px;}
.wf{width:156.270000px;}
.wb{width:174.270000px;}
.w8{width:223.275000px;}
.w14{width:228.450000px;}
.we{width:360.255000px;}
.wa{width:361.515000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w13{width:633.750000px;}
.w2{width:673.530000px;}
.w12{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.560000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.x1f{left:20.520000px;}
.x19{left:23.580000px;}
.x1d{left:25.560000px;}
.x21{left:32.220000px;}
.xc{left:33.336000px;}
.xd{left:44.496000px;}
.x10{left:55.476000px;}
.x23{left:70.560000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x24{left:108.035987px;}
.x15{left:117.570000px;}
.x25{left:135.035987px;}
.x1b{left:152.130000px;}
.xe{left:192.090000px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.xf{left:229.935000px;}
.x1a{left:281.054987px;}
.x9{left:288.435000px;}
.x14{left:295.094987px;}
.x12{left:296.175000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1c{left:434.235000px;}
.x16{left:435.495000px;}
.xa{left:455.700000px;}
.x1e{left:591.405000px;}
.x17{left:610.485000px;}
.x20{left:707.730000px;}
.x3{left:745.890000px;}
.x18{left:754.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.504747pt;}
.ls13{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.698880pt;}
.ls12{letter-spacing:0.960000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws4{word-spacing:-74.880000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._13{margin-left:-6.590507pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-3.650133pt;}
._2{margin-left:-2.565120pt;}
._0{margin-left:-1.104000pt;}
._1{width:0.922667pt;}
._3{width:1.915947pt;}
._12{width:2.984960pt;}
._17{width:3.965013pt;}
._9{width:5.026773pt;}
._16{width:6.002560pt;}
._d{width:7.204693pt;}
._e{width:8.267093pt;}
._b{width:9.223253pt;}
._8{width:10.565120pt;}
._c{width:11.733973pt;}
._18{width:14.366720pt;}
._14{width:15.327360pt;}
._a{width:16.438400pt;}
._15{width:17.775573pt;}
._7{width:19.086293pt;}
._6{width:20.096640pt;}
._11{width:21.434453pt;}
._10{width:22.522880pt;}
._1e{width:23.559893pt;}
._f{width:26.210560pt;}
._1b{width:27.427840pt;}
._1d{width:32.881280pt;}
._1c{width:34.049920pt;}
._19{width:48.958507pt;}
._1a{width:169.914453pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{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;}
.y42{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y18{bottom:3.240000pt;}
.y47{bottom:3.520000pt;}
.yf{bottom:8.480000pt;}
.y45{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.yb3{bottom:15.360000pt;}
.y17{bottom:17.800000pt;}
.y3{bottom:17.920000pt;}
.y41{bottom:18.240000pt;}
.y46{bottom:19.840000pt;}
.y44{bottom:22.560000pt;}
.y6{bottom:22.880000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y16{bottom:32.200000pt;}
.y2{bottom:32.512000pt;}
.y40{bottom:33.440000pt;}
.yb{bottom:41.440000pt;}
.y1{bottom:42.880000pt;}
.y15{bottom:45.800000pt;}
.y3f{bottom:48.800000pt;}
.y14{bottom:62.760000pt;}
.y3e{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y3d{bottom:79.520000pt;}
.y9{bottom:82.746667pt;}
.y13{bottom:85.640000pt;}
.y3c{bottom:94.880000pt;}
.y8{bottom:98.906667pt;}
.y95{bottom:99.072000pt;}
.y57{bottom:103.392000pt;}
.y12{bottom:108.520000pt;}
.ybf{bottom:108.832000pt;}
.y3b{bottom:110.240000pt;}
.y94{bottom:114.432000pt;}
.y56{bottom:118.752000pt;}
.ybe{bottom:124.832000pt;}
.y3a{bottom:125.440000pt;}
.y93{bottom:129.792000pt;}
.y11{bottom:130.120000pt;}
.y2a{bottom:133.600000pt;}
.y55{bottom:134.106667pt;}
.y39{bottom:140.800000pt;}
.ybd{bottom:140.826667pt;}
.y92{bottom:144.986667pt;}
.y29{bottom:147.200000pt;}
.y54{bottom:149.466667pt;}
.y38{bottom:156.160000pt;}
.ybc{bottom:156.826667pt;}
.y91{bottom:160.346667pt;}
.y28{bottom:162.906667pt;}
.y53{bottom:164.666667pt;}
.y37{bottom:171.546667pt;}
.ybb{bottom:172.826667pt;}
.y90{bottom:175.706667pt;}
.y27{bottom:178.266667pt;}
.y52{bottom:180.026667pt;}
.y36{bottom:186.906667pt;}
.yba{bottom:188.826667pt;}
.y8f{bottom:191.066667pt;}
.y26{bottom:193.626667pt;}
.y51{bottom:195.386667pt;}
.y35{bottom:202.106667pt;}
.yb9{bottom:204.826667pt;}
.y8e{bottom:206.426667pt;}
.y25{bottom:209.306667pt;}
.y50{bottom:210.746667pt;}
.y34{bottom:217.466667pt;}
.yb8{bottom:220.826667pt;}
.y8d{bottom:221.786667pt;}
.y24{bottom:224.826667pt;}
.y4f{bottom:226.106667pt;}
.y33{bottom:232.826667pt;}
.yb7{bottom:236.826667pt;}
.y8c{bottom:236.986667pt;}
.y23{bottom:240.346667pt;}
.y4e{bottom:241.466667pt;}
.y32{bottom:248.186667pt;}
.y8b{bottom:252.346667pt;}
.yb6{bottom:252.826667pt;}
.y22{bottom:255.706667pt;}
.y4d{bottom:256.666667pt;}
.y31{bottom:263.546667pt;}
.y8a{bottom:267.706667pt;}
.yb5{bottom:268.826667pt;}
.y21{bottom:271.226667pt;}
.y4c{bottom:272.026667pt;}
.y30{bottom:278.906667pt;}
.y89{bottom:283.066667pt;}
.yb4{bottom:284.826667pt;}
.y20{bottom:286.746667pt;}
.y4b{bottom:287.386667pt;}
.y2f{bottom:294.106667pt;}
.y88{bottom:298.426667pt;}
.yb2{bottom:300.866667pt;}
.y1f{bottom:302.106667pt;}
.y4a{bottom:302.786667pt;}
.y2e{bottom:309.466667pt;}
.y87{bottom:313.666667pt;}
.yb1{bottom:316.866667pt;}
.y1e{bottom:317.786667pt;}
.y49{bottom:318.146667pt;}
.y2d{bottom:324.826667pt;}
.y86{bottom:329.026667pt;}
.yb0{bottom:332.866667pt;}
.y48{bottom:333.346667pt;}
.y2c{bottom:340.186667pt;}
.y1d{bottom:342.106667pt;}
.y85{bottom:344.386667pt;}
.y43{bottom:345.826667pt;}
.yaf{bottom:348.866667pt;}
.y2b{bottom:355.546667pt;}
.y1c{bottom:357.946667pt;}
.y84{bottom:359.746667pt;}
.yae{bottom:367.746667pt;}
.y83{bottom:375.106667pt;}
.y1b{bottom:378.466667pt;}
.yad{bottom:383.106667pt;}
.y82{bottom:390.466667pt;}
.yac{bottom:398.466667pt;}
.y81{bottom:405.666667pt;}
.yab{bottom:413.666667pt;}
.y80{bottom:421.026667pt;}
.yaa{bottom:429.026667pt;}
.y7f{bottom:436.386667pt;}
.ya9{bottom:444.386667pt;}
.y7e{bottom:451.746667pt;}
.ya8{bottom:459.746667pt;}
.y7d{bottom:467.106667pt;}
.ya7{bottom:475.106667pt;}
.y7c{bottom:482.466667pt;}
.ya6{bottom:490.466667pt;}
.y7b{bottom:497.666667pt;}
.ya5{bottom:505.666667pt;}
.y7a{bottom:513.026667pt;}
.ya4{bottom:521.026667pt;}
.y79{bottom:528.386667pt;}
.ya3{bottom:536.386667pt;}
.y78{bottom:543.773333pt;}
.ya2{bottom:551.773333pt;}
.y77{bottom:559.133333pt;}
.ya1{bottom:567.133333pt;}
.y76{bottom:574.493333pt;}
.ya0{bottom:582.333333pt;}
.y75{bottom:589.693333pt;}
.y9f{bottom:595.453333pt;}
.y74{bottom:605.053333pt;}
.y9e{bottom:611.453333pt;}
.y73{bottom:620.413333pt;}
.y9d{bottom:627.453333pt;}
.y72{bottom:635.773333pt;}
.y9c{bottom:643.453333pt;}
.y71{bottom:651.133333pt;}
.y9b{bottom:659.453333pt;}
.y70{bottom:666.333333pt;}
.y9a{bottom:675.453333pt;}
.y6f{bottom:681.693333pt;}
.y99{bottom:691.453333pt;}
.y6e{bottom:697.053333pt;}
.y98{bottom:707.453333pt;}
.y6d{bottom:712.413333pt;}
.y97{bottom:723.453333pt;}
.y6c{bottom:727.773333pt;}
.y96{bottom:739.453333pt;}
.y6b{bottom:743.133333pt;}
.y19{bottom:746.493333pt;}
.y6a{bottom:758.333333pt;}
.y10{bottom:772.733333pt;}
.y69{bottom:773.693333pt;}
.y68{bottom:789.093333pt;}
.y67{bottom:804.453333pt;}
.y66{bottom:819.813333pt;}
.y65{bottom:835.173333pt;}
.y64{bottom:850.373333pt;}
.y63{bottom:865.733333pt;}
.y62{bottom:881.093333pt;}
.y61{bottom:896.453333pt;}
.y60{bottom:911.813333pt;}
.ye{bottom:916.293333pt;}
.y5f{bottom:927.013333pt;}
.y7{bottom:938.853333pt;}
.y5e{bottom:942.373333pt;}
.y5d{bottom:957.733333pt;}
.y5c{bottom:973.093333pt;}
.y5b{bottom:988.453333pt;}
.y5a{bottom:1003.813333pt;}
.y59{bottom:1019.040000pt;}
.y58{bottom:1034.400000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.hc{height:22.240000pt;}
.h12{height:26.240000pt;}
.h9{height:32.160000pt;}
.h1c{height:32.640000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h1f{height:38.491250pt;}
.h5{height:38.625000pt;}
.h22{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1e{height:42.691250pt;}
.h1d{height:42.745000pt;}
.h2{height:44.032000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h13{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:143.546667pt;}
.h14{height:368.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:57.920000pt;}
.w3{width:66.560000pt;}
.w11{width:99.680000pt;}
.w10{width:102.752000pt;}
.wc{width:127.552000pt;}
.w5{width:135.066667pt;}
.wf{width:138.906667pt;}
.wb{width:154.906667pt;}
.w8{width:198.466667pt;}
.w14{width:203.066667pt;}
.we{width:320.226667pt;}
.wa{width:321.346667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w13{width:563.333333pt;}
.w2{width:598.693333pt;}
.w12{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.720000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.x1f{left:18.240000pt;}
.x19{left:20.960000pt;}
.x1d{left:22.720000pt;}
.x21{left:28.640000pt;}
.xc{left:29.632000pt;}
.xd{left:39.552000pt;}
.x10{left:49.312000pt;}
.x23{left:62.720000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x24{left:96.031988pt;}
.x15{left:104.506667pt;}
.x25{left:120.031988pt;}
.x1b{left:135.226667pt;}
.xe{left:170.746667pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.xf{left:204.386667pt;}
.x1a{left:249.826655pt;}
.x9{left:256.386667pt;}
.x14{left:262.306655pt;}
.x12{left:263.266667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1c{left:385.986667pt;}
.x16{left:387.106667pt;}
.xa{left:405.066667pt;}
.x1e{left:525.693333pt;}
.x17{left:542.653333pt;}
.x20{left:629.093333pt;}
.x3{left:663.013333pt;}
.x18{left:670.853333pt;}
}




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