
    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_dbdfd0a63e2e5e2ce45d96a7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f520c47dff0781d307cd64c8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_fd243e3bfe4bf2de3426ce2f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_0e57fa8df4c2f04de34e5418.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_b0bf02d6b4e36eab6adf7d32.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_21c8109de286965280a641fa.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6af6aa88c728b8467bdbe4ac.woff')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_0a7d93fa1f3e7dcfe378f655.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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;}
.ma{transform:matrix(0.034200,-0.247650,0.247650,0.034200,0,0);-ms-transform:matrix(0.034200,-0.247650,0.247650,0.034200,0,0);-webkit-transform:matrix(0.034200,-0.247650,0.247650,0.034200,0,0);}
.mb{transform:matrix(0.056447,-0.243544,0.243544,0.056447,0,0);-ms-transform:matrix(0.056447,-0.243544,0.243544,0.056447,0,0);-webkit-transform:matrix(0.056447,-0.243544,0.243544,0.056447,0,0);}
.mc{transform:matrix(0.065902,-0.241157,0.241157,0.065902,0,0);-ms-transform:matrix(0.065902,-0.241157,0.241157,0.065902,0,0);-webkit-transform:matrix(0.065902,-0.241157,0.241157,0.065902,0,0);}
.md{transform:matrix(0.078788,-0.237260,0.237260,0.078788,0,0);-ms-transform:matrix(0.078788,-0.237260,0.237260,0.078788,0,0);-webkit-transform:matrix(0.078788,-0.237260,0.237260,0.078788,0,0);}
.m9{transform:matrix(0.082290,0.236069,-0.236069,0.082290,0,0);-ms-transform:matrix(0.082290,0.236069,-0.236069,0.082290,0,0);-webkit-transform:matrix(0.082290,0.236069,-0.236069,0.082290,0,0);}
.me{transform:matrix(0.096490,-0.230629,0.230629,0.096490,0,0);-ms-transform:matrix(0.096490,-0.230629,0.230629,0.096490,0,0);-webkit-transform:matrix(0.096490,-0.230629,0.230629,0.096490,0,0);}
.m8{transform:matrix(0.098637,0.229719,-0.229719,0.098637,0,0);-ms-transform:matrix(0.098637,0.229719,-0.229719,0.098637,0,0);-webkit-transform:matrix(0.098637,0.229719,-0.229719,0.098637,0,0);}
.m7{transform:matrix(0.108148,0.225398,-0.225398,0.108148,0,0);-ms-transform:matrix(0.108148,0.225398,-0.225398,0.108148,0,0);-webkit-transform:matrix(0.108148,0.225398,-0.225398,0.108148,0,0);}
.mf{transform:matrix(0.110642,-0.224184,0.224184,0.110642,0,0);-ms-transform:matrix(0.110642,-0.224184,0.224184,0.110642,0,0);-webkit-transform:matrix(0.110642,-0.224184,0.224184,0.110642,0,0);}
.m10{transform:matrix(0.120143,-0.219239,0.219239,0.120143,0,0);-ms-transform:matrix(0.120143,-0.219239,0.219239,0.120143,0,0);-webkit-transform:matrix(0.120143,-0.219239,0.219239,0.120143,0,0);}
.m6{transform:matrix(0.121360,0.218567,-0.218567,0.121360,0,0);-ms-transform:matrix(0.121360,0.218567,-0.218567,0.121360,0,0);-webkit-transform:matrix(0.121360,0.218567,-0.218567,0.121360,0,0);}
.m11{transform:matrix(0.136533,-0.209425,0.209425,0.136533,0,0);-ms-transform:matrix(0.136533,-0.209425,0.209425,0.136533,0,0);-webkit-transform:matrix(0.136533,-0.209425,0.209425,0.136533,0,0);}
.m5{transform:matrix(0.137311,0.208916,-0.208916,0.137311,0,0);-ms-transform:matrix(0.137311,0.208916,-0.208916,0.137311,0,0);-webkit-transform:matrix(0.137311,0.208916,-0.208916,0.137311,0,0);}
.m4{transform:matrix(0.149055,0.200705,-0.200705,0.149055,0,0);-ms-transform:matrix(0.149055,0.200705,-0.200705,0.149055,0,0);-webkit-transform:matrix(0.149055,0.200705,-0.200705,0.149055,0,0);}
.m3{transform:matrix(0.164637,0.188135,-0.188135,0.164637,0,0);-ms-transform:matrix(0.164637,0.188135,-0.188135,0.164637,0,0);-webkit-transform:matrix(0.164637,0.188135,-0.188135,0.164637,0,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(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);}
.m12{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:4.740000px;}
.v2{vertical-align:18.000000px;}
.lsb{letter-spacing:-0.325200px;}
.ls7{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.162600px;}
.ls9{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.281890px;}
.ls4{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.666720px;}
.ls3{letter-spacing:1.503412px;}
.lsf{letter-spacing:2.053809px;}
.lse{letter-spacing:2.507487px;}
.ls1{letter-spacing:52.524000px;}
.ls0{letter-spacing:54.792000px;}
.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;}
}
.ws2{word-spacing:-53.442720px;}
.wsa{word-spacing:-51.641280px;}
.ws5{word-spacing:-46.962480px;}
.ws0{word-spacing:-46.637280px;}
.wsb{word-spacing:-30.024000px;}
.wsc{word-spacing:-23.418720px;}
.ws1{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.506480px;}
.ws8{word-spacing:-11.208960px;}
.ws3{word-spacing:-2.165040px;}
.wsd{word-spacing:0.000000px;}
.ws4{word-spacing:0.324720px;}
.ws6{word-spacing:3770.928000px;}
._a{margin-left:-3513.971760px;}
._3{margin-left:-3.593280px;}
._0{margin-left:-1.986000px;}
._1{width:1.188000px;}
._2{width:3.000000px;}
._8{width:4.219440px;}
._5{width:16.320727px;}
._4{width:50.711040px;}
._7{width:424.624805px;}
._6{width:484.927103px;}
._9{width:4580.868240px;}
.fc11{color:transparent;}
.fc10{color:rgb(189,54,54);}
.fce{color:rgb(219,96,10);}
.fcf{color:rgb(255,128,35);}
.fcd{color:rgb(0,209,0);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(82,82,82);}
.fc7{color:rgb(0,176,80);}
.fc5{color:rgb(255,255,255);}
.fcb{color:rgb(67,120,162);}
.fcc{color:rgb(77,77,77);}
.fc1{color:rgb(0,150,130);}
.fc3{color:rgb(255,85,13);}
.fc2{color:rgb(215,210,0);}
.fc4{color:rgb(183,48,48);}
.fc8{color:rgb(0,176,240);}
.fc9{color:rgb(73,96,179);}
.fca{color:rgb(239,110,94);}
.fs1c{font-size:40.320000px;}
.fsa{font-size:45.102355px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:63.895003px;}
.fs1d{font-size:72.000000px;}
.fs9{font-size:75.170592px;}
.fsb{font-size:75.922298px;}
.fs20{font-size:84.240000px;}
.fs18{font-size:107.855451px;}
.fs11{font-size:107.855926px;}
.fs1b{font-size:107.855960px;}
.fs14{font-size:107.856140px;}
.fs15{font-size:107.856420px;}
.fs12{font-size:107.856548px;}
.fs1a{font-size:107.999397px;}
.fsf{font-size:107.999580px;}
.fs17{font-size:107.999808px;}
.fse{font-size:107.999905px;}
.fs1f{font-size:108.000000px;}
.fs10{font-size:108.000001px;}
.fs16{font-size:108.000069px;}
.fsd{font-size:108.000246px;}
.fs19{font-size:108.000585px;}
.fs13{font-size:108.000595px;}
.fsc{font-size:139.781661px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.fs1e{font-size:185.760000px;}
.fs4{font-size:192.240000px;}
.fs0{font-size:198.000000px;}
.fs3{font-size:288.000000px;}
.fs1{font-size:480.240000px;}
.fs2{font-size:480.384000px;}
.y51{bottom:-1.515000px;}
.y4f{bottom:-1.470000px;}
.y53{bottom:-1.410000px;}
.y4d{bottom:-0.720000px;}
.y4b{bottom:-0.255000px;}
.y47{bottom:-0.030000px;}
.y0{bottom:0.000000px;}
.y49{bottom:1.050000px;}
.y3b{bottom:3.390000px;}
.y43{bottom:5.865000px;}
.y41{bottom:9.150000px;}
.y3d{bottom:11.700000px;}
.y3f{bottom:12.420000px;}
.y39{bottom:12.630000px;}
.y45{bottom:14.145000px;}
.y18{bottom:14.384856px;}
.y23{bottom:31.834921px;}
.y17{bottom:34.117136px;}
.y1e{bottom:165.102676px;}
.y1d{bottom:191.412383px;}
.y19{bottom:230.125238px;}
.y1c{bottom:251.736783px;}
.y1b{bottom:254.555680px;}
.y1a{bottom:255.495313px;}
.y1f{bottom:277.294784px;}
.y20{bottom:314.880080px;}
.y1{bottom:479.370000px;}
.y5b{bottom:608.835000px;}
.y13{bottom:608.940000px;}
.y5a{bottom:641.955000px;}
.y12{bottom:642.060000px;}
.y59{bottom:674.895000px;}
.y11{bottom:675.000000px;}
.y58{bottom:707.835000px;}
.y10{bottom:707.940000px;}
.y57{bottom:740.955000px;}
.yf{bottom:741.060000px;}
.y56{bottom:773.895000px;}
.ye{bottom:774.000000px;}
.y6{bottom:810.030000px;}
.y31{bottom:930.270000px;}
.y30{bottom:988.230000px;}
.y2f{bottom:1103.970000px;}
.y2e{bottom:1161.930000px;}
.y2d{bottom:1219.890000px;}
.y2c{bottom:1335.630000px;}
.y6c{bottom:1425.630000px;}
.y37{bottom:1488.060000px;}
.y36{bottom:1540.980000px;}
.y2b{bottom:1798.815000px;}
.y35{bottom:1858.170000px;}
.y34{bottom:1910.910000px;}
.y22{bottom:1992.728913px;}
.y6d{bottom:2051.385000px;}
.y6e{bottom:2081.085000px;}
.y2a{bottom:2088.435000px;}
.y33{bottom:2122.410000px;}
.y29{bottom:2146.215000px;}
.y32{bottom:2172.810000px;}
.y28{bottom:2203.455000px;}
.y15{bottom:2327.865000px;}
.y27{bottom:2327.910000px;}
.y26{bottom:2436.690000px;}
.y5e{bottom:2442.750000px;}
.y61{bottom:2442.885000px;}
.y25{bottom:2454.690000px;}
.y5d{bottom:2500.530000px;}
.y60{bottom:2500.665000px;}
.y5c{bottom:2558.490000px;}
.y5f{bottom:2558.670000px;}
.yd{bottom:2714.070000px;}
.y64{bottom:2716.230000px;}
.yc{bottom:2766.990000px;}
.yb{bottom:2819.910000px;}
.y16{bottom:2948.359608px;}
.y21{bottom:2956.140000px;}
.y63{bottom:2974.395000px;}
.ya{bottom:3031.230000px;}
.y9{bottom:3084.150000px;}
.y46{bottom:3091.140000px;}
.y48{bottom:3107.340000px;}
.y44{bottom:3113.820000px;}
.y4a{bottom:3115.800000px;}
.y4c{bottom:3121.740000px;}
.y42{bottom:3126.960000px;}
.y40{bottom:3131.460000px;}
.y4e{bottom:3136.320000px;}
.y8{bottom:3137.070000px;}
.y3e{bottom:3140.640000px;}
.y50{bottom:3149.820000px;}
.y3c{bottom:3153.240000px;}
.y52{bottom:3156.300000px;}
.y54{bottom:3161.340000px;}
.y3a{bottom:3165.840000px;}
.y38{bottom:3169.800000px;}
.y7{bottom:3189.810000px;}
.y6f{bottom:3221.070000px;}
.y70{bottom:3221.100000px;}
.y62{bottom:3256.380000px;}
.y14{bottom:3307.605000px;}
.y6b{bottom:3423.810000px;}
.y6a{bottom:3479.610000px;}
.y69{bottom:3535.410000px;}
.y68{bottom:3591.210000px;}
.y67{bottom:3647.010000px;}
.y55{bottom:3702.420000px;}
.y66{bottom:3702.810000px;}
.y24{bottom:3749.760000px;}
.y65{bottom:3758.610000px;}
.y5{bottom:3924.720000px;}
.y4{bottom:3987.720000px;}
.y3{bottom:4116.885000px;}
.y2{bottom:4260.885000px;}
.h24{height:10.260000px;}
.h2c{height:11.520000px;}
.h2a{height:12.600000px;}
.h15{height:13.500000px;}
.h1d{height:13.680000px;}
.h1b{height:14.400000px;}
.h28{height:16.020000px;}
.h2e{height:16.740000px;}
.h26{height:17.100000px;}
.h19{height:18.540000px;}
.h1f{height:19.080000px;}
.h17{height:20.880000px;}
.h21{height:23.580000px;}
.h13{height:24.120000px;}
.hd{height:34.069015px;}
.h9{height:62.327813px;}
.hc{height:63.351778px;}
.hb{height:63.551817px;}
.he{height:74.766844px;}
.h31{height:75.093750px;}
.hf{height:75.514512px;}
.h34{height:87.859687px;}
.h11{height:105.587026px;}
.h29{height:112.489865px;}
.h1c{height:112.490361px;}
.h2f{height:112.490396px;}
.h22{height:112.490584px;}
.h23{height:112.490876px;}
.h1e{height:112.491009px;}
.h2d{height:112.639996px;}
.h18{height:112.640186px;}
.h27{height:112.640425px;}
.h16{height:112.640526px;}
.h33{height:112.640625px;}
.h1a{height:112.640626px;}
.h25{height:112.640696px;}
.h14{height:112.640881px;}
.h2b{height:112.641235px;}
.h20{height:112.641246px;}
.h12{height:122.625352px;}
.h7{height:150.187500px;}
.h30{height:154.927500px;}
.h8{height:174.968437px;}
.h32{height:193.741875px;}
.h6{height:200.500313px;}
.h2{height:206.507812px;}
.h10{height:211.511723px;}
.h5{height:300.375000px;}
.ha{height:339.207296px;}
.h3{height:419.975508px;}
.h4{height:501.025500px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w8{width:16.560000px;}
.wf{width:17.640000px;}
.w11{width:18.000000px;}
.we{width:18.180000px;}
.w6{width:19.080000px;}
.w9{width:19.260000px;}
.wd{width:19.620000px;}
.wa{width:19.980000px;}
.w10{width:20.160000px;}
.wc{width:20.520000px;}
.w7{width:23.220000px;}
.w5{width:25.380000px;}
.wb{width:25.740000px;}
.w4{width:473.020416px;}
.w3{width:478.734279px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x27{left:1.590000px;}
.x34{left:10.950000px;}
.x30{left:12.420000px;}
.x2e{left:13.425000px;}
.x31{left:16.530000px;}
.x2b{left:18.510000px;}
.x29{left:19.830000px;}
.x19{left:58.556648px;}
.xe{left:76.081152px;}
.xd{left:81.160062px;}
.x1{left:85.895947px;}
.x2{left:198.974947px;}
.x3{left:205.889947px;}
.x40{left:216.464947px;}
.x12{left:221.864675px;}
.x16{left:225.062507px;}
.x9{left:226.259947px;}
.x7{left:230.009947px;}
.x3f{left:234.824947px;}
.x3e{left:251.564947px;}
.x41{left:255.344947px;}
.x5{left:262.049947px;}
.x15{left:272.089450px;}
.x42{left:283.964947px;}
.x3d{left:290.084947px;}
.xf{left:297.860215px;}
.x6{left:303.989947px;}
.x8{left:316.049947px;}
.x14{left:326.828812px;}
.x13{left:356.173624px;}
.x11{left:366.331444px;}
.x1b{left:377.849947px;}
.x10{left:382.320605px;}
.xb{left:445.604947px;}
.x1c{left:461.009947px;}
.xa{left:829.289947px;}
.x17{left:993.599947px;}
.x36{left:1205.744947px;}
.x18{left:1223.509999px;}
.xc{left:1250.586819px;}
.x4{left:1506.239947px;}
.x37{left:1882.949947px;}
.x1e{left:1892.729947px;}
.x46{left:1907.534947px;}
.x20{left:1914.689947px;}
.x38{left:1936.949947px;}
.x1f{left:1946.729947px;}
.x43{left:1979.669947px;}
.x35{left:1995.764947px;}
.x44{left:2415.059947px;}
.x3c{left:2436.839947px;}
.x45{left:2438.459947px;}
.x28{left:2444.940000px;}
.x2a{left:2448.900000px;}
.x2c{left:2450.700000px;}
.x2d{left:2457.000000px;}
.x2f{left:2462.580000px;}
.x1a{left:2463.659947px;}
.x32{left:2466.900000px;}
.x1d{left:2474.429947px;}
.x33{left:2475.540000px;}
.x39{left:2638.874947px;}
.x3b{left:2661.014947px;}
.x21{left:2687.040000px;}
.x3a{left:2692.874947px;}
.x22{left:2697.660000px;}
.x23{left:2701.440000px;}
.x24{left:2709.000000px;}
.x25{left:2716.200000px;}
.x26{left:2719.800000px;}
.x47{left:2942.534947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.213333pt;}
.v2{vertical-align:16.000000pt;}
.lsb{letter-spacing:-0.289067pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.144533pt;}
.ls9{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.250569pt;}
.ls4{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.592640pt;}
.ls3{letter-spacing:1.336366pt;}
.lsf{letter-spacing:1.825608pt;}
.lse{letter-spacing:2.228877pt;}
.ls1{letter-spacing:46.688000pt;}
.ls0{letter-spacing:48.704000pt;}
.ws2{word-spacing:-47.504640pt;}
.wsa{word-spacing:-45.903360pt;}
.ws5{word-spacing:-41.744427pt;}
.ws0{word-spacing:-41.455360pt;}
.wsb{word-spacing:-26.688000pt;}
.wsc{word-spacing:-20.816640pt;}
.ws1{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.672427pt;}
.ws8{word-spacing:-9.963520pt;}
.ws3{word-spacing:-1.924480pt;}
.wsd{word-spacing:0.000000pt;}
.ws4{word-spacing:0.288640pt;}
.ws6{word-spacing:3351.936000pt;}
._a{margin-left:-3123.530453pt;}
._3{margin-left:-3.194027pt;}
._0{margin-left:-1.765333pt;}
._1{width:1.056000pt;}
._2{width:2.666667pt;}
._8{width:3.750613pt;}
._5{width:14.507313pt;}
._4{width:45.076480pt;}
._7{width:377.444271pt;}
._6{width:431.046314pt;}
._9{width:4071.882880pt;}
.fs1c{font-size:35.840000pt;}
.fsa{font-size:40.090982pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:56.795558pt;}
.fs1d{font-size:64.000000pt;}
.fs9{font-size:66.818304pt;}
.fsb{font-size:67.486487pt;}
.fs20{font-size:74.880000pt;}
.fs18{font-size:95.871512pt;}
.fs11{font-size:95.871935pt;}
.fs1b{font-size:95.871965pt;}
.fs14{font-size:95.872125pt;}
.fs15{font-size:95.872374pt;}
.fs12{font-size:95.872487pt;}
.fs1a{font-size:95.999464pt;}
.fsf{font-size:95.999626pt;}
.fs17{font-size:95.999829pt;}
.fse{font-size:95.999916pt;}
.fs1f{font-size:96.000000pt;}
.fs10{font-size:96.000001pt;}
.fs16{font-size:96.000061pt;}
.fsd{font-size:96.000219pt;}
.fs19{font-size:96.000520pt;}
.fs13{font-size:96.000529pt;}
.fsc{font-size:124.250365pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.fs1e{font-size:165.120000pt;}
.fs4{font-size:170.880000pt;}
.fs0{font-size:176.000000pt;}
.fs3{font-size:256.000000pt;}
.fs1{font-size:426.880000pt;}
.fs2{font-size:427.008000pt;}
.y51{bottom:-1.346667pt;}
.y4f{bottom:-1.306667pt;}
.y53{bottom:-1.253333pt;}
.y4d{bottom:-0.640000pt;}
.y4b{bottom:-0.226667pt;}
.y47{bottom:-0.026667pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:0.933333pt;}
.y3b{bottom:3.013333pt;}
.y43{bottom:5.213333pt;}
.y41{bottom:8.133333pt;}
.y3d{bottom:10.400000pt;}
.y3f{bottom:11.040000pt;}
.y39{bottom:11.226667pt;}
.y45{bottom:12.573333pt;}
.y18{bottom:12.786539pt;}
.y23{bottom:28.297707pt;}
.y17{bottom:30.326343pt;}
.y1e{bottom:146.757934pt;}
.y1d{bottom:170.144341pt;}
.y19{bottom:204.555767pt;}
.y1c{bottom:223.766029pt;}
.y1b{bottom:226.271716pt;}
.y1a{bottom:227.106945pt;}
.y1f{bottom:246.484253pt;}
.y20{bottom:279.893405pt;}
.y1{bottom:426.106667pt;}
.y5b{bottom:541.186667pt;}
.y13{bottom:541.280000pt;}
.y5a{bottom:570.626667pt;}
.y12{bottom:570.720000pt;}
.y59{bottom:599.906667pt;}
.y11{bottom:600.000000pt;}
.y58{bottom:629.186667pt;}
.y10{bottom:629.280000pt;}
.y57{bottom:658.626667pt;}
.yf{bottom:658.720000pt;}
.y56{bottom:687.906667pt;}
.ye{bottom:688.000000pt;}
.y6{bottom:720.026667pt;}
.y31{bottom:826.906667pt;}
.y30{bottom:878.426667pt;}
.y2f{bottom:981.306667pt;}
.y2e{bottom:1032.826667pt;}
.y2d{bottom:1084.346667pt;}
.y2c{bottom:1187.226667pt;}
.y6c{bottom:1267.226667pt;}
.y37{bottom:1322.720000pt;}
.y36{bottom:1369.760000pt;}
.y2b{bottom:1598.946667pt;}
.y35{bottom:1651.706667pt;}
.y34{bottom:1698.586667pt;}
.y22{bottom:1771.314590pt;}
.y6d{bottom:1823.453333pt;}
.y6e{bottom:1849.853333pt;}
.y2a{bottom:1856.386667pt;}
.y33{bottom:1886.586667pt;}
.y29{bottom:1907.746667pt;}
.y32{bottom:1931.386667pt;}
.y28{bottom:1958.626667pt;}
.y15{bottom:2069.213333pt;}
.y27{bottom:2069.253333pt;}
.y26{bottom:2165.946667pt;}
.y5e{bottom:2171.333333pt;}
.y61{bottom:2171.453333pt;}
.y25{bottom:2181.946667pt;}
.y5d{bottom:2222.693333pt;}
.y60{bottom:2222.813333pt;}
.y5c{bottom:2274.213333pt;}
.y5f{bottom:2274.373333pt;}
.yd{bottom:2412.506667pt;}
.y64{bottom:2414.426667pt;}
.yc{bottom:2459.546667pt;}
.yb{bottom:2506.586667pt;}
.y16{bottom:2620.764096pt;}
.y21{bottom:2627.680000pt;}
.y63{bottom:2643.906667pt;}
.ya{bottom:2694.426667pt;}
.y9{bottom:2741.466667pt;}
.y46{bottom:2747.680000pt;}
.y48{bottom:2762.080000pt;}
.y44{bottom:2767.840000pt;}
.y4a{bottom:2769.600000pt;}
.y4c{bottom:2774.880000pt;}
.y42{bottom:2779.520000pt;}
.y40{bottom:2783.520000pt;}
.y4e{bottom:2787.840000pt;}
.y8{bottom:2788.506667pt;}
.y3e{bottom:2791.680000pt;}
.y50{bottom:2799.840000pt;}
.y3c{bottom:2802.880000pt;}
.y52{bottom:2805.600000pt;}
.y54{bottom:2810.080000pt;}
.y3a{bottom:2814.080000pt;}
.y38{bottom:2817.600000pt;}
.y7{bottom:2835.386667pt;}
.y6f{bottom:2863.173333pt;}
.y70{bottom:2863.200000pt;}
.y62{bottom:2894.560000pt;}
.y14{bottom:2940.093333pt;}
.y6b{bottom:3043.386667pt;}
.y6a{bottom:3092.986667pt;}
.y69{bottom:3142.586667pt;}
.y68{bottom:3192.186667pt;}
.y67{bottom:3241.786667pt;}
.y55{bottom:3291.040000pt;}
.y66{bottom:3291.386667pt;}
.y24{bottom:3333.120000pt;}
.y65{bottom:3340.986667pt;}
.y5{bottom:3488.640000pt;}
.y4{bottom:3544.640000pt;}
.y3{bottom:3659.453333pt;}
.y2{bottom:3787.453333pt;}
.h24{height:9.120000pt;}
.h2c{height:10.240000pt;}
.h2a{height:11.200000pt;}
.h15{height:12.000000pt;}
.h1d{height:12.160000pt;}
.h1b{height:12.800000pt;}
.h28{height:14.240000pt;}
.h2e{height:14.880000pt;}
.h26{height:15.200000pt;}
.h19{height:16.480000pt;}
.h1f{height:16.960000pt;}
.h17{height:18.560000pt;}
.h21{height:20.960000pt;}
.h13{height:21.440000pt;}
.hd{height:30.283569pt;}
.h9{height:55.402500pt;}
.hc{height:56.312692pt;}
.hb{height:56.490504pt;}
.he{height:66.459417pt;}
.h31{height:66.750000pt;}
.hf{height:67.124011pt;}
.h34{height:78.097500pt;}
.h11{height:93.855134pt;}
.h29{height:99.990991pt;}
.h1c{height:99.991432pt;}
.h2f{height:99.991463pt;}
.h22{height:99.991630pt;}
.h23{height:99.991890pt;}
.h1e{height:99.992008pt;}
.h2d{height:100.124441pt;}
.h18{height:100.124610pt;}
.h27{height:100.124822pt;}
.h16{height:100.124912pt;}
.h33{height:100.125000pt;}
.h1a{height:100.125001pt;}
.h25{height:100.125064pt;}
.h14{height:100.125228pt;}
.h2b{height:100.125542pt;}
.h20{height:100.125552pt;}
.h12{height:109.000312pt;}
.h7{height:133.500000pt;}
.h30{height:137.713333pt;}
.h8{height:155.527500pt;}
.h32{height:172.215000pt;}
.h6{height:178.222500pt;}
.h2{height:183.562500pt;}
.h10{height:188.010421pt;}
.h5{height:267.000000pt;}
.ha{height:301.517597pt;}
.h3{height:373.311562pt;}
.h4{height:445.356000pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w8{width:14.720000pt;}
.wf{width:15.680000pt;}
.w11{width:16.000000pt;}
.we{width:16.160000pt;}
.w6{width:16.960000pt;}
.w9{width:17.120000pt;}
.wd{width:17.440000pt;}
.wa{width:17.760000pt;}
.w10{width:17.920000pt;}
.wc{width:18.240000pt;}
.w7{width:20.640000pt;}
.w5{width:22.560000pt;}
.wb{width:22.880000pt;}
.w4{width:420.462592pt;}
.w3{width:425.541581pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x27{left:1.413333pt;}
.x34{left:9.733333pt;}
.x30{left:11.040000pt;}
.x2e{left:11.933333pt;}
.x31{left:14.693333pt;}
.x2b{left:16.453333pt;}
.x29{left:17.626667pt;}
.x19{left:52.050354pt;}
.xe{left:67.627691pt;}
.xd{left:72.142277pt;}
.x1{left:76.351953pt;}
.x2{left:176.866619pt;}
.x3{left:183.013286pt;}
.x40{left:192.413286pt;}
.x12{left:197.213045pt;}
.x16{left:200.055562pt;}
.x9{left:201.119953pt;}
.x7{left:204.453286pt;}
.x3f{left:208.733286pt;}
.x3e{left:223.613286pt;}
.x41{left:226.973286pt;}
.x5{left:232.933286pt;}
.x15{left:241.857289pt;}
.x42{left:252.413286pt;}
.x3d{left:257.853286pt;}
.xf{left:264.764636pt;}
.x6{left:270.213286pt;}
.x8{left:280.933286pt;}
.x14{left:290.514500pt;}
.x13{left:316.598777pt;}
.x11{left:325.627950pt;}
.x1b{left:335.866619pt;}
.x10{left:339.840537pt;}
.xb{left:396.093286pt;}
.x1c{left:409.786619pt;}
.xa{left:737.146619pt;}
.x17{left:883.199953pt;}
.x36{left:1071.773286pt;}
.x18{left:1087.564443pt;}
.xc{left:1111.632728pt;}
.x4{left:1338.879953pt;}
.x37{left:1673.733286pt;}
.x1e{left:1682.426619pt;}
.x46{left:1695.586619pt;}
.x20{left:1701.946619pt;}
.x38{left:1721.733286pt;}
.x1f{left:1730.426619pt;}
.x43{left:1759.706619pt;}
.x35{left:1774.013286pt;}
.x44{left:2146.719953pt;}
.x3c{left:2166.079953pt;}
.x45{left:2167.519953pt;}
.x28{left:2173.280000pt;}
.x2a{left:2176.800000pt;}
.x2c{left:2178.400000pt;}
.x2d{left:2184.000000pt;}
.x2f{left:2188.960000pt;}
.x1a{left:2189.919953pt;}
.x32{left:2192.800000pt;}
.x1d{left:2199.493286pt;}
.x33{left:2200.480000pt;}
.x39{left:2345.666619pt;}
.x3b{left:2365.346619pt;}
.x21{left:2388.480000pt;}
.x3a{left:2393.666619pt;}
.x22{left:2397.920000pt;}
.x23{left:2401.280000pt;}
.x24{left:2408.000000pt;}
.x25{left:2414.400000pt;}
.x26{left:2417.600000pt;}
.x47{left:2615.586619pt;}
}




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