
    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_d46b0f04e57162b4441b8827.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_56e1cef1e1b9e14919d1cfe4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b1572a50b42357283ed96478.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_117ecd9a66223b6109b19efb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_7f6b610f58040e5e847a856d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_9b0be501761b622e3a8ec801.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_5e9857af14d65862e355a275.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.835000;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_d66df2d9975141069582600c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041992;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0755e37593d81d9b3709258e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937988;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_e4879e7a962cbe9fdecfb4f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.762207;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_12b5b1c8be9b7c12e9678b08.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cea0120305b0662ca8dff114.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.892578;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_67b756b529a08957d6fcf2b0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.va{vertical-align:-11.520000px;}
.v7{vertical-align:-10.080000px;}
.vf{vertical-align:-8.640000px;}
.v3{vertical-align:-7.200000px;}
.v5{vertical-align:-5.760000px;}
.vd{vertical-align:-4.320000px;}
.v1{vertical-align:-2.880000px;}
.vc{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.v2{vertical-align:2.880000px;}
.ve{vertical-align:4.320000px;}
.v6{vertical-align:5.760000px;}
.v4{vertical-align:7.200000px;}
.v10{vertical-align:8.640000px;}
.v8{vertical-align:10.080000px;}
.vb{vertical-align:11.520000px;}
.ls38{letter-spacing:-15.180000px;}
.ls35{letter-spacing:-1.668000px;}
.ls25{letter-spacing:-0.548400px;}
.ls22{letter-spacing:-0.483600px;}
.ls2d{letter-spacing:-0.447600px;}
.lsf{letter-spacing:-0.420600px;}
.ls15{letter-spacing:-0.366000px;}
.ls2f{letter-spacing:-0.312600px;}
.ls16{letter-spacing:-0.229200px;}
.ls10{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.015840px;}
.ls11{letter-spacing:0.078000px;}
.ls14{letter-spacing:0.104987px;}
.ls13{letter-spacing:0.132600px;}
.ls2b{letter-spacing:0.198720px;}
.lsa{letter-spacing:0.414720px;}
.ls2e{letter-spacing:0.472200px;}
.ls6{letter-spacing:0.472320px;}
.ls3{letter-spacing:0.491793px;}
.ls23{letter-spacing:0.493800px;}
.ls2a{letter-spacing:0.516960px;}
.ls12{letter-spacing:0.576000px;}
.ls26{letter-spacing:0.584400px;}
.ls24{letter-spacing:0.654000px;}
.lsd{letter-spacing:0.675360px;}
.ls37{letter-spacing:0.678000px;}
.ls2c{letter-spacing:0.686880px;}
.ls9{letter-spacing:1.074240px;}
.ls1c{letter-spacing:1.356480px;}
.ls19{letter-spacing:1.435680px;}
.ls5{letter-spacing:1.440000px;}
.lse{letter-spacing:2.880000px;}
.ls1e{letter-spacing:3.060000px;}
.lsc{letter-spacing:4.320000px;}
.ls1b{letter-spacing:5.531040px;}
.ls1f{letter-spacing:5.760000px;}
.ls31{letter-spacing:6.971040px;}
.ls36{letter-spacing:8.400000px;}
.lsb{letter-spacing:11.520000px;}
.ls18{letter-spacing:12.731040px;}
.ls0{letter-spacing:12.960000px;}
.ls1{letter-spacing:14.400000px;}
.ls32{letter-spacing:15.611040px;}
.ls21{letter-spacing:15.840000px;}
.ls7{letter-spacing:27.131040px;}
.ls8{letter-spacing:28.571040px;}
.ls17{letter-spacing:30.131040px;}
.ls30{letter-spacing:30.939840px;}
.ls1d{letter-spacing:70.331040px;}
.ls33{letter-spacing:77.531040px;}
.ls20{letter-spacing:114.971040px;}
.ls2{letter-spacing:128.259360px;}
.ls28{letter-spacing:141.071040px;}
.ls29{letter-spacing:163.931040px;}
.ls1a{letter-spacing:198.611040px;}
.ls4{letter-spacing:198.647040px;}
.ls34{letter-spacing:1444.667040px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(36,64,97),0 0.015em rgb(36,64,97),0.015em 0 rgb(36,64,97),0 -0.015em  rgb(36,64,97);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(36,64,97);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-83.520000px;}
.ws0{word-spacing:-23.549640px;}
.ws6{word-spacing:-19.864920px;}
.ws5{word-spacing:-19.732320px;}
.ws7{word-spacing:-19.627682px;}
.ws1{word-spacing:-19.010880px;}
.ws10{word-spacing:-18.186960px;}
.wsd{word-spacing:-18.093360px;}
.wsc{word-spacing:-18.002760px;}
.wsb{word-spacing:-17.890800px;}
.ws9{word-spacing:-17.508960px;}
.wse{word-spacing:-17.061360px;}
.wsf{word-spacing:-16.960560px;}
.ws4{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.650800px;}
.ws11{word-spacing:-2.328960px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:14.890080px;}
.ws12{word-spacing:452.709120px;}
._52{margin-left:-495.039360px;}
._50{margin-left:-111.037920px;}
._4f{margin-left:-102.429600px;}
._4e{margin-left:-81.005760px;}
._51{margin-left:-52.450080px;}
._8{margin-left:-37.056960px;}
._9{margin-left:-33.348960px;}
._26{margin-left:-16.040160px;}
._4{margin-left:-14.948040px;}
._3{margin-left:-13.314600px;}
._32{margin-left:-12.118560px;}
._6{margin-left:-11.080510px;}
._3c{margin-left:-5.798160px;}
._16{margin-left:-4.596360px;}
._11{margin-left:-2.819880px;}
._2{margin-left:-1.722240px;}
._0{width:1.620360px;}
._1{width:3.264840px;}
._d{width:4.914720px;}
._17{width:6.713280px;}
._1b{width:7.925760px;}
._1f{width:9.206107px;}
._7{width:10.549253px;}
._27{width:11.812896px;}
._5{width:13.898880px;}
._19{width:15.382080px;}
._28{width:16.446000px;}
._12{width:19.506240px;}
._13{width:20.619360px;}
._10{width:22.325760px;}
._25{width:23.409120px;}
._21{width:25.449120px;}
._20{width:26.602560px;}
._45{width:27.633960px;}
._15{width:28.644120px;}
._1e{width:29.948760px;}
._14{width:31.084560px;}
._3b{width:32.637240px;}
._24{width:34.314840px;}
._a{width:35.771040px;}
._1d{width:37.821600px;}
._36{width:39.288960px;}
._2b{width:41.004000px;}
._23{width:42.274080px;}
._35{width:43.859160px;}
._1a{width:45.801790px;}
._e{width:47.083680px;}
._f{width:48.805920px;}
._33{width:50.279760px;}
._2e{width:51.303720px;}
._40{width:54.976320px;}
._41{width:56.514240px;}
._4c{width:59.493600px;}
._18{width:62.694720px;}
._4a{width:65.237760px;}
._42{width:66.768480px;}
._43{width:68.342040px;}
._4b{width:69.400800px;}
._2c{width:72.725760px;}
._34{width:74.311080px;}
._48{width:76.747680px;}
._47{width:78.017520px;}
._3e{width:79.231680px;}
._3d{width:80.794080px;}
._46{width:84.143640px;}
._31{width:100.897440px;}
._1c{width:105.499320px;}
._30{width:108.096960px;}
._53{width:112.065600px;}
._3f{width:127.148040px;}
._39{width:131.738040px;}
._38{width:134.405280px;}
._37{width:136.101240px;}
._b{width:149.531040px;}
._2d{width:151.548480px;}
._44{width:152.684640px;}
._2a{width:153.893760px;}
._49{width:157.372680px;}
._3a{width:186.348960px;}
._29{width:190.248600px;}
._22{width:197.538360px;}
._c{width:198.611040px;}
._2f{width:199.643160px;}
._4d{width:286.176053px;}
._54{width:846.911040px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:60.480000px;}
.fsa{font-size:63.750880px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fsd{font-size:90.720000px;}
.fsc{font-size:93.600000px;}
.fs7{font-size:96.480000px;}
.fs8{font-size:101.697833px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y19{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y10{bottom:20.160000px;}
.y16{bottom:29.865000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.120000px;}
.y15{bottom:57.615000px;}
.y33{bottom:77.796000px;}
.y14{bottom:89.655000px;}
.y53{bottom:121.356000px;}
.y30{bottom:143.676000px;}
.y52{bottom:155.190000px;}
.y2f{bottom:177.510000px;}
.y51{bottom:189.030000px;}
.y2e{bottom:211.395000px;}
.y50{bottom:222.555000px;}
.y2d{bottom:244.875000px;}
.y4f{bottom:256.395000px;}
.y2c{bottom:278.715000px;}
.y4e{bottom:290.235000px;}
.y2b{bottom:312.555000px;}
.y4d{bottom:323.715000px;}
.y2a{bottom:346.065000px;}
.y4c{bottom:357.585000px;}
.y29{bottom:379.905000px;}
.y4b{bottom:391.425000px;}
.y28{bottom:413.745000px;}
.y4a{bottom:424.905000px;}
.y27{bottom:447.225000px;}
.y49{bottom:458.790000px;}
.y26{bottom:481.110000px;}
.y48{bottom:492.630000px;}
.y25{bottom:514.950000px;}
.y47{bottom:526.110000px;}
.y24{bottom:548.430000px;}
.y46{bottom:559.950000px;}
.y23{bottom:582.300000px;}
.y45{bottom:593.820000px;}
.y22{bottom:616.140000px;}
.y44{bottom:627.300000px;}
.y21{bottom:649.620000px;}
.y43{bottom:661.140000px;}
.y20{bottom:683.460000px;}
.y42{bottom:694.980000px;}
.y1f{bottom:717.330000px;}
.y41{bottom:728.490000px;}
.y1e{bottom:750.810000px;}
.y40{bottom:762.330000px;}
.y1d{bottom:784.650000px;}
.y3f{bottom:796.170000px;}
.y1c{bottom:818.490000px;}
.y3e{bottom:830.055000px;}
.y1b{bottom:852.015000px;}
.y3d{bottom:863.535000px;}
.y1a{bottom:885.855000px;}
.y3c{bottom:897.375000px;}
.y18{bottom:903.870000px;}
.y13{bottom:911.070000px;}
.y17{bottom:915.594772px;}
.y3b{bottom:931.215000px;}
.y3a{bottom:964.725000px;}
.y39{bottom:998.565000px;}
.y11{bottom:1029.165000px;}
.y38{bottom:1032.405000px;}
.yf{bottom:1035.645000px;}
.y37{bottom:1065.885000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y36{bottom:1099.770000px;}
.y2{bottom:1106.250000px;}
.y7{bottom:1128.570000px;}
.y35{bottom:1133.610000px;}
.y4{bottom:1156.650000px;}
.y34{bottom:1167.090000px;}
.y32{bottom:1187.250000px;}
.y31{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h19{height:7.185000px;}
.hd{height:13.857187px;}
.h1a{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1d{height:30.480469px;}
.he{height:41.070000px;}
.h5{height:52.950000px;}
.h16{height:55.586356px;}
.h9{height:56.084062px;}
.h15{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h1b{height:62.015625px;}
.h17{height:63.984375px;}
.h1c{height:66.445312px;}
.h13{height:70.664062px;}
.h6{height:70.714687px;}
.h18{height:72.562500px;}
.h14{height:74.485717px;}
.hf{height:74.882812px;}
.h4{height:79.925027px;}
.h1e{height:93.245864px;}
.h3{height:103.350000px;}
.h12{height:118.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.x12{left:31.342500px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x19{left:162.075000px;}
.x4{left:168.930000px;}
.x14{left:190.495500px;}
.x6{left:208.860000px;}
.x13{left:227.620500px;}
.x17{left:325.030998px;}
.x11{left:335.650500px;}
.x15{left:342.130500px;}
.xa{left:445.860000px;}
.x1a{left:473.580000px;}
.x16{left:481.165500px;}
.x1c{left:489.090000px;}
.x1d{left:516.090000px;}
.x1b{left:527.610000px;}
.x7{left:722.445000px;}
.x1{left:749.445000px;}
@media print{
.va{vertical-align:-10.240000pt;}
.v7{vertical-align:-8.960000pt;}
.vf{vertical-align:-7.680000pt;}
.v3{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.120000pt;}
.vd{vertical-align:-3.840000pt;}
.v1{vertical-align:-2.560000pt;}
.vc{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.v2{vertical-align:2.560000pt;}
.ve{vertical-align:3.840000pt;}
.v6{vertical-align:5.120000pt;}
.v4{vertical-align:6.400000pt;}
.v10{vertical-align:7.680000pt;}
.v8{vertical-align:8.960000pt;}
.vb{vertical-align:10.240000pt;}
.ls38{letter-spacing:-13.493333pt;}
.ls35{letter-spacing:-1.482667pt;}
.ls25{letter-spacing:-0.487467pt;}
.ls22{letter-spacing:-0.429867pt;}
.ls2d{letter-spacing:-0.397867pt;}
.lsf{letter-spacing:-0.373867pt;}
.ls15{letter-spacing:-0.325333pt;}
.ls2f{letter-spacing:-0.277867pt;}
.ls16{letter-spacing:-0.203733pt;}
.ls10{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.014080pt;}
.ls11{letter-spacing:0.069333pt;}
.ls14{letter-spacing:0.093321pt;}
.ls13{letter-spacing:0.117867pt;}
.ls2b{letter-spacing:0.176640pt;}
.lsa{letter-spacing:0.368640pt;}
.ls2e{letter-spacing:0.419733pt;}
.ls6{letter-spacing:0.419840pt;}
.ls3{letter-spacing:0.437149pt;}
.ls23{letter-spacing:0.438933pt;}
.ls2a{letter-spacing:0.459520pt;}
.ls12{letter-spacing:0.512000pt;}
.ls26{letter-spacing:0.519467pt;}
.ls24{letter-spacing:0.581333pt;}
.lsd{letter-spacing:0.600320pt;}
.ls37{letter-spacing:0.602667pt;}
.ls2c{letter-spacing:0.610560pt;}
.ls9{letter-spacing:0.954880pt;}
.ls1c{letter-spacing:1.205760pt;}
.ls19{letter-spacing:1.276160pt;}
.ls5{letter-spacing:1.280000pt;}
.lse{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:2.720000pt;}
.lsc{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:4.916480pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls31{letter-spacing:6.196480pt;}
.ls36{letter-spacing:7.466667pt;}
.lsb{letter-spacing:10.240000pt;}
.ls18{letter-spacing:11.316480pt;}
.ls0{letter-spacing:11.520000pt;}
.ls1{letter-spacing:12.800000pt;}
.ls32{letter-spacing:13.876480pt;}
.ls21{letter-spacing:14.080000pt;}
.ls7{letter-spacing:24.116480pt;}
.ls8{letter-spacing:25.396480pt;}
.ls17{letter-spacing:26.783147pt;}
.ls30{letter-spacing:27.502080pt;}
.ls1d{letter-spacing:62.516480pt;}
.ls33{letter-spacing:68.916480pt;}
.ls20{letter-spacing:102.196480pt;}
.ls2{letter-spacing:114.008320pt;}
.ls28{letter-spacing:125.396480pt;}
.ls29{letter-spacing:145.716480pt;}
.ls1a{letter-spacing:176.543147pt;}
.ls4{letter-spacing:176.575147pt;}
.ls34{letter-spacing:1284.148480pt;}
.ws2{word-spacing:-74.240000pt;}
.ws0{word-spacing:-20.933013pt;}
.ws6{word-spacing:-17.657707pt;}
.ws5{word-spacing:-17.539840pt;}
.ws7{word-spacing:-17.446828pt;}
.ws1{word-spacing:-16.898560pt;}
.ws10{word-spacing:-16.166187pt;}
.wsd{word-spacing:-16.082987pt;}
.wsc{word-spacing:-16.002453pt;}
.wsb{word-spacing:-15.902933pt;}
.ws9{word-spacing:-15.563520pt;}
.wse{word-spacing:-15.165653pt;}
.wsf{word-spacing:-15.076053pt;}
.ws4{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws11{word-spacing:-2.070187pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:13.235627pt;}
.ws12{word-spacing:402.408107pt;}
._52{margin-left:-440.034987pt;}
._50{margin-left:-98.700373pt;}
._4f{margin-left:-91.048533pt;}
._4e{margin-left:-72.005120pt;}
._51{margin-left:-46.622293pt;}
._8{margin-left:-32.939520pt;}
._9{margin-left:-29.643520pt;}
._26{margin-left:-14.257920pt;}
._4{margin-left:-13.287147pt;}
._3{margin-left:-11.835200pt;}
._32{margin-left:-10.772053pt;}
._6{margin-left:-9.849342pt;}
._3c{margin-left:-5.153920pt;}
._16{margin-left:-4.085653pt;}
._11{margin-left:-2.506560pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.440320pt;}
._1{width:2.902080pt;}
._d{width:4.368640pt;}
._17{width:5.967360pt;}
._1b{width:7.045120pt;}
._1f{width:8.183206pt;}
._7{width:9.377114pt;}
._27{width:10.500352pt;}
._5{width:12.354560pt;}
._19{width:13.672960pt;}
._28{width:14.618667pt;}
._12{width:17.338880pt;}
._13{width:18.328320pt;}
._10{width:19.845120pt;}
._25{width:20.808107pt;}
._21{width:22.621440pt;}
._20{width:23.646720pt;}
._45{width:24.563520pt;}
._15{width:25.461440pt;}
._1e{width:26.621120pt;}
._14{width:27.630720pt;}
._3b{width:29.010880pt;}
._24{width:30.502080pt;}
._a{width:31.796480pt;}
._1d{width:33.619200pt;}
._36{width:34.923520pt;}
._2b{width:36.448000pt;}
._23{width:37.576960pt;}
._35{width:38.985920pt;}
._1a{width:40.712702pt;}
._e{width:41.852160pt;}
._f{width:43.383040pt;}
._33{width:44.693120pt;}
._2e{width:45.603307pt;}
._40{width:48.867840pt;}
._41{width:50.234880pt;}
._4c{width:52.883200pt;}
._18{width:55.728640pt;}
._4a{width:57.989120pt;}
._42{width:59.349760pt;}
._43{width:60.748480pt;}
._4b{width:61.689600pt;}
._2c{width:64.645120pt;}
._34{width:66.054293pt;}
._48{width:68.220160pt;}
._47{width:69.348907pt;}
._3e{width:70.428160pt;}
._3d{width:71.816960pt;}
._46{width:74.794347pt;}
._31{width:89.686613pt;}
._1c{width:93.777173pt;}
._30{width:96.086187pt;}
._53{width:99.613867pt;}
._3f{width:113.020480pt;}
._39{width:117.100480pt;}
._38{width:119.471360pt;}
._37{width:120.978880pt;}
._b{width:132.916480pt;}
._2d{width:134.709760pt;}
._44{width:135.719680pt;}
._2a{width:136.794453pt;}
._49{width:139.886827pt;}
._3a{width:165.643520pt;}
._29{width:169.109867pt;}
._22{width:175.589653pt;}
._c{width:176.543147pt;}
._2f{width:177.460587pt;}
._4d{width:254.378714pt;}
._54{width:752.809813pt;}
.fs4{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:53.760000pt;}
.fsa{font-size:56.667449pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fsd{font-size:80.640000pt;}
.fsc{font-size:83.200000pt;}
.fs7{font-size:85.760000pt;}
.fs8{font-size:90.398073pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y19{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y10{bottom:17.920000pt;}
.y16{bottom:26.546667pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.440000pt;}
.y15{bottom:51.213333pt;}
.y33{bottom:69.152000pt;}
.y14{bottom:79.693333pt;}
.y53{bottom:107.872000pt;}
.y30{bottom:127.712000pt;}
.y52{bottom:137.946667pt;}
.y2f{bottom:157.786667pt;}
.y51{bottom:168.026667pt;}
.y2e{bottom:187.906667pt;}
.y50{bottom:197.826667pt;}
.y2d{bottom:217.666667pt;}
.y4f{bottom:227.906667pt;}
.y2c{bottom:247.746667pt;}
.y4e{bottom:257.986667pt;}
.y2b{bottom:277.826667pt;}
.y4d{bottom:287.746667pt;}
.y2a{bottom:307.613333pt;}
.y4c{bottom:317.853333pt;}
.y29{bottom:337.693333pt;}
.y4b{bottom:347.933333pt;}
.y28{bottom:367.773333pt;}
.y4a{bottom:377.693333pt;}
.y27{bottom:397.533333pt;}
.y49{bottom:407.813333pt;}
.y26{bottom:427.653333pt;}
.y48{bottom:437.893333pt;}
.y25{bottom:457.733333pt;}
.y47{bottom:467.653333pt;}
.y24{bottom:487.493333pt;}
.y46{bottom:497.733333pt;}
.y23{bottom:517.600000pt;}
.y45{bottom:527.840000pt;}
.y22{bottom:547.680000pt;}
.y44{bottom:557.600000pt;}
.y21{bottom:577.440000pt;}
.y43{bottom:587.680000pt;}
.y20{bottom:607.520000pt;}
.y42{bottom:617.760000pt;}
.y1f{bottom:637.626667pt;}
.y41{bottom:647.546667pt;}
.y1e{bottom:667.386667pt;}
.y40{bottom:677.626667pt;}
.y1d{bottom:697.466667pt;}
.y3f{bottom:707.706667pt;}
.y1c{bottom:727.546667pt;}
.y3e{bottom:737.826667pt;}
.y1b{bottom:757.346667pt;}
.y3d{bottom:767.586667pt;}
.y1a{bottom:787.426667pt;}
.y3c{bottom:797.666667pt;}
.y18{bottom:803.440000pt;}
.y13{bottom:809.840000pt;}
.y17{bottom:813.862020pt;}
.y3b{bottom:827.746667pt;}
.y3a{bottom:857.533333pt;}
.y39{bottom:887.613333pt;}
.y11{bottom:914.813333pt;}
.y38{bottom:917.693333pt;}
.yf{bottom:920.573333pt;}
.y37{bottom:947.453333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y36{bottom:977.573333pt;}
.y2{bottom:983.333333pt;}
.y7{bottom:1003.173333pt;}
.y35{bottom:1007.653333pt;}
.y4{bottom:1028.133333pt;}
.y34{bottom:1037.413333pt;}
.y32{bottom:1055.333333pt;}
.y31{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h19{height:6.386667pt;}
.hd{height:12.317500pt;}
.h1a{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1d{height:27.093750pt;}
.he{height:36.506667pt;}
.h5{height:47.066667pt;}
.h16{height:49.410094pt;}
.h9{height:49.852500pt;}
.h15{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h1b{height:55.125000pt;}
.h17{height:56.875000pt;}
.h1c{height:59.062500pt;}
.h13{height:62.812500pt;}
.h6{height:62.857500pt;}
.h18{height:64.500000pt;}
.h14{height:66.209526pt;}
.hf{height:66.562500pt;}
.h4{height:71.044468pt;}
.h1e{height:82.885213pt;}
.h3{height:91.866667pt;}
.h12{height:104.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.x12{left:27.860000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x19{left:144.066667pt;}
.x4{left:150.160000pt;}
.x14{left:169.329333pt;}
.x6{left:185.653333pt;}
.x13{left:202.329333pt;}
.x17{left:288.916443pt;}
.x11{left:298.356000pt;}
.x15{left:304.116000pt;}
.xa{left:396.320000pt;}
.x1a{left:420.960000pt;}
.x16{left:427.702667pt;}
.x1c{left:434.746667pt;}
.x1d{left:458.746667pt;}
.x1b{left:468.986667pt;}
.x7{left:642.173333pt;}
.x1{left:666.173333pt;}
}




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