
    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_5335af562b700fa746e506c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_cb87a47f15002b0f0696cf95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_76a383602f5f298cd2b62cb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_413ce6960fb48de9eb29df1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_7ac786acc82b12d6eea12c06.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_8e66b4879d88398fe78e86b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730957;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_710a306e8bd274d5a1b9e494.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_1416fc4effd2929cdf62f793.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_7bc9c091e53d6066fe64af45.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7be985395ad85ef567fa867f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b0fac507e24078c0429f5248.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.055000;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_60c37d3b0fa919fffb4c7d89.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.055000;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d928b157f1af222271476f03.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.051000;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_759318331a157d64e423c851.woff2')format("woff");}.fff{font-family:fff;line-height:1.051000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6138411f3a657834ef364989.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.062000;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_377955579104c76dea4c9843.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.062000;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_ac80958dbed7d843710d9db4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.014000;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;}
.ls11{letter-spacing:-1.032000px;}
.lsf{letter-spacing:-0.714000px;}
.lsb{letter-spacing:-0.570000px;}
.lsa{letter-spacing:-0.489600px;}
.lse{letter-spacing:-0.310800px;}
.ls7{letter-spacing:-0.271800px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000001px;}
.ls12{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.029088px;}
.ls2{letter-spacing:0.224640px;}
.ls8{letter-spacing:0.229200px;}
.ls5{letter-spacing:0.230400px;}
.lsc{letter-spacing:0.282240px;}
.ls10{letter-spacing:0.308400px;}
.ls9{letter-spacing:0.351600px;}
.ls6{letter-spacing:0.410400px;}
.ls3{letter-spacing:0.462240px;}
.ls4{letter-spacing:57.080640px;}
.lsd{letter-spacing:845.741280px;}
.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;}
}
.wsb{word-spacing:-69.264000px;}
.ws8{word-spacing:-69.120000px;}
.wsa{word-spacing:-52.047360px;}
.ws3{word-spacing:-48.384000px;}
.ws0{word-spacing:-44.988748px;}
.ws1{word-spacing:-34.187562px;}
.wsd{word-spacing:-17.925120px;}
.ws11{word-spacing:-17.731584px;}
.ws5{word-spacing:-17.694720px;}
.wse{word-spacing:-17.383920px;}
.ws9{word-spacing:-17.205120px;}
.ws4{word-spacing:-17.147760px;}
.ws10{word-spacing:-17.139552px;}
.ws6{word-spacing:-17.026560px;}
.wsf{word-spacing:-16.980720px;}
.wsc{word-spacing:-16.831152px;}
.ws7{word-spacing:-16.796160px;}
.ws12{word-spacing:-16.662720px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-6.232228px;}
._3{margin-left:-4.633116px;}
._7{margin-left:-2.690343px;}
._4{margin-left:-1.325862px;}
._6{width:1.030109px;}
._1{width:2.273932px;}
._c{width:3.386880px;}
._0{width:4.499962px;}
._12{width:6.371622px;}
._11{width:7.464960px;}
._8{width:8.985600px;}
._9{width:10.179913px;}
._16{width:11.592887px;}
._f{width:12.787200px;}
._10{width:14.364248px;}
._13{width:16.035840px;}
._19{width:18.978336px;}
._b{width:20.000843px;}
._a{width:21.288960px;}
._14{width:22.947840px;}
._e{width:24.053760px;}
._d{width:25.228800px;}
._18{width:26.818560px;}
._1a{width:31.210865px;}
._17{width:32.555520px;}
._5{width:586.910363px;}
._15{width:849.115680px;}
.fcd{color:transparent;}
.fc0{color:rgb(127,140,141);}
.fc2{color:rgb(27,38,49);}
.fca{color:rgb(31,73,125);}
.fc3{color:rgb(84,110,122);}
.fc4{color:rgb(149,165,166);}
.fc6{color:rgb(52,73,94);}
.fc7{color:rgb(128,128,128);}
.fc8{color:rgb(127,127,127);}
.fc1{color:rgb(26,82,118);}
.fcb{color:rgb(64,64,64);}
.fc5{color:rgb(44,62,80);}
.fcc{color:rgb(0,0,0);}
.fc9{color:rgb(23,55,94);}
.fs6{font-size:47.969997px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fs7{font-size:56.969997px;}
.fs0{font-size:59.984997px;}
.fs5{font-size:65.969996px;}
.fsd{font-size:66.240000px;}
.fsb{font-size:69.120000px;}
.fsc{font-size:69.264000px;}
.fsa{font-size:72.144000px;}
.fs1{font-size:83.969997px;}
.fs4{font-size:95.984996px;}
.fs3{font-size:107.999996px;}
.fs2{font-size:191.969992px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.049955px;}
.y11{bottom:57.600000px;}
.y10{bottom:73.476000px;}
.yd{bottom:88.330064px;}
.yf{bottom:107.455064px;}
.y38{bottom:113.616000px;}
.yc3{bottom:114.516000px;}
.y78{bottom:118.476000px;}
.y9e{bottom:123.336000px;}
.ye{bottom:131.080063px;}
.yc2{bottom:138.456000px;}
.y37{bottom:146.376000px;}
.y9d{bottom:147.096000px;}
.y5b{bottom:147.996000px;}
.y77{bottom:151.230000px;}
.yc1{bottom:162.210000px;}
.y36{bottom:170.130000px;}
.y9c{bottom:170.850000px;}
.y76{bottom:174.990000px;}
.y5a{bottom:180.930000px;}
.yc0{bottom:185.970000px;}
.y35{bottom:193.890000px;}
.y9b{bottom:194.610000px;}
.y75{bottom:207.930000px;}
.y59{bottom:213.690000px;}
.ybf{bottom:218.730000px;}
.y34{bottom:227.010000px;}
.y9a{bottom:227.550000px;}
.y58{bottom:237.450000px;}
.y74{bottom:240.690000px;}
.y99{bottom:251.310000px;}
.ybe{bottom:251.670000px;}
.y33{bottom:259.950000px;}
.yc{bottom:263.830057px;}
.y57{bottom:270.570000px;}
.y73{bottom:273.450000px;}
.y98{bottom:275.070000px;}
.ybd{bottom:275.430000px;}
.y32{bottom:283.710000px;}
.yb{bottom:289.705056px;}
.y56{bottom:294.510000px;}
.y72{bottom:297.210000px;}
.y97{bottom:298.830000px;}
.y31{bottom:307.470000px;}
.ybc{bottom:308.190000px;}
.ya{bottom:316.705055px;}
.y71{bottom:321.150000px;}
.y96{bottom:322.770000px;}
.y30{bottom:331.230000px;}
.y55{bottom:336.270000px;}
.ybb{bottom:340.995000px;}
.y9{bottom:342.580054px;}
.y70{bottom:344.955000px;}
.y95{bottom:346.575000px;}
.y54{bottom:360.075000px;}
.y2f{bottom:364.395000px;}
.yba{bottom:373.935000px;}
.y6f{bottom:378.075000px;}
.y94{bottom:379.335000px;}
.y53{bottom:392.835000px;}
.y2e{bottom:397.335000px;}
.yb9{bottom:406.695000px;}
.y6e{bottom:410.835000px;}
.y93{bottom:412.095000px;}
.y2d{bottom:421.095000px;}
.y52{bottom:425.775000px;}
.y6d{bottom:434.775000px;}
.y2c{bottom:444.855000px;}
.y92{bottom:445.035000px;}
.y51{bottom:458.535000px;}
.yb8{bottom:466.455000px;}
.y2b{bottom:468.615000px;}
.y91{bottom:468.795000px;}
.y50{bottom:482.295000px;}
.yb7{bottom:490.215000px;}
.y2a{bottom:492.375000px;}
.y90{bottom:492.555000px;}
.y4f{bottom:506.055000px;}
.yb6{bottom:514.155000px;}
.y6c{bottom:515.415000px;}
.y8f{bottom:516.315000px;}
.y29{bottom:525.675000px;}
.yb5{bottom:537.915000px;}
.y4e{bottom:539.175000px;}
.y8{bottom:546.205045px;}
.y6b{bottom:548.175000px;}
.y28{bottom:549.435000px;}
.yb4{bottom:561.675000px;}
.y4d{bottom:572.115000px;}
.y8e{bottom:573.375000px;}
.y7{bottom:576.580044px;}
.yb3{bottom:585.435000px;}
.y27{bottom:591.195000px;}
.y4c{bottom:595.875000px;}
.y8d{bottom:597.135000px;}
.y26{bottom:614.985000px;}
.yb2{bottom:618.405000px;}
.y4b{bottom:619.665000px;}
.y8c{bottom:620.925000px;}
.y25{bottom:638.925000px;}
.yb1{bottom:642.165000px;}
.y4a{bottom:652.785000px;}
.y8b{bottom:654.045000px;}
.yb0{bottom:665.925000px;}
.y24{bottom:671.685000px;}
.y6a{bottom:676.545000px;}
.y49{bottom:685.545000px;}
.y8a{bottom:686.805000px;}
.yaf{bottom:689.685000px;}
.y23{bottom:695.445000px;}
.y48{bottom:709.485000px;}
.y89{bottom:710.745000px;}
.yae{bottom:713.625000px;}
.y69{bottom:718.485000px;}
.y22{bottom:719.205000px;}
.y47{bottom:733.245000px;}
.y88{bottom:734.505000px;}
.yad{bottom:737.385000px;}
.y68{bottom:742.245000px;}
.y21{bottom:743.145000px;}
.y6{bottom:755.455037px;}
.y87{bottom:758.265000px;}
.y46{bottom:766.365000px;}
.y20{bottom:766.905000px;}
.yac{bottom:770.145000px;}
.y67{bottom:775.005000px;}
.y86{bottom:782.025000px;}
.y5{bottom:786.955035px;}
.yab{bottom:793.905000px;}
.y45{bottom:799.125000px;}
.y1f{bottom:799.665000px;}
.y66{bottom:807.765000px;}
.y85{bottom:815.145000px;}
.yaa{bottom:817.845000px;}
.y44{bottom:822.885000px;}
.y1e{bottom:823.425000px;}
.y65{bottom:840.705000px;}
.ya9{bottom:841.605000px;}
.y4{bottom:842.080033px;}
.y43{bottom:846.645000px;}
.y1d{bottom:847.365000px;}
.y84{bottom:848.085000px;}
.y64{bottom:864.465000px;}
.ya8{bottom:865.365000px;}
.y1c{bottom:871.170000px;}
.y83{bottom:871.890000px;}
.y42{bottom:879.990000px;}
.y63{bottom:888.270000px;}
.ya7{bottom:889.170000px;}
.y1b{bottom:894.930000px;}
.y82{bottom:895.650000px;}
.y41{bottom:903.750000px;}
.y3{bottom:903.955030px;}
.y62{bottom:912.030000px;}
.ya6{bottom:913.110000px;}
.y1a{bottom:918.690000px;}
.y81{bottom:919.410000px;}
.ya5{bottom:936.870000px;}
.y80{bottom:943.350000px;}
.y61{bottom:945.150000px;}
.y40{bottom:945.510000px;}
.y19{bottom:951.630000px;}
.y7f{bottom:967.110000px;}
.y3f{bottom:969.270000px;}
.y18{bottom:975.390000px;}
.y60{bottom:978.090000px;}
.ya4{bottom:978.630000px;}
.y17{bottom:999.150000px;}
.y7e{bottom:1000.230000px;}
.y5f{bottom:1001.850000px;}
.y3e{bottom:1002.210000px;}
.ya3{bottom:1002.390000px;}
.y16{bottom:1022.910000px;}
.y7d{bottom:1023.990000px;}
.y5e{bottom:1025.610000px;}
.ya2{bottom:1026.330000px;}
.y3d{bottom:1034.970000px;}
.y15{bottom:1046.850000px;}
.y5d{bottom:1049.370000px;}
.ya1{bottom:1050.090000px;}
.y7c{bottom:1065.750000px;}
.y3c{bottom:1067.730000px;}
.y14{bottom:1070.610000px;}
.y5c{bottom:1082.490000px;}
.y7b{bottom:1089.690000px;}
.y3b{bottom:1091.490000px;}
.ya0{bottom:1091.850000px;}
.y7a{bottom:1113.450000px;}
.y13{bottom:1114.710000px;}
.y3a{bottom:1115.430000px;}
.y9f{bottom:1115.610000px;}
.y12{bottom:1138.860000px;}
.y39{bottom:1139.220000px;}
.y79{bottom:1139.580000px;}
.y2{bottom:1146.955020px;}
.hb{height:34.946892px;}
.hf{height:35.261367px;}
.he{height:35.366625px;}
.hc{height:38.638343px;}
.h7{height:42.938479px;}
.h3{height:43.700008px;}
.ha{height:47.415935px;}
.h9{height:48.027961px;}
.h12{height:59.857920px;}
.h13{height:59.982624px;}
.h14{height:60.376320px;}
.h11{height:60.410880px;}
.h15{height:60.536736px;}
.h4{height:61.132454px;}
.h10{height:63.053856px;}
.h8{height:68.989216px;}
.h6{height:78.626950px;}
.h5{height:139.759403px;}
.h2{height:1262.830015px;}
.h0{height:1262.879970px;}
.hd{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.025387px;}
.x6{left:106.235987px;}
.x3{left:110.900386px;}
.x7{left:133.235987px;}
.x5{left:454.447252px;}
.x4{left:512.402322px;}
.x1{left:541.371071px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.917333pt;}
.lsf{letter-spacing:-0.634667pt;}
.lsb{letter-spacing:-0.506667pt;}
.lsa{letter-spacing:-0.435200pt;}
.lse{letter-spacing:-0.276267pt;}
.ls7{letter-spacing:-0.241600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000001pt;}
.ls12{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.025856pt;}
.ls2{letter-spacing:0.199680pt;}
.ls8{letter-spacing:0.203733pt;}
.ls5{letter-spacing:0.204800pt;}
.lsc{letter-spacing:0.250880pt;}
.ls10{letter-spacing:0.274133pt;}
.ls9{letter-spacing:0.312533pt;}
.ls6{letter-spacing:0.364800pt;}
.ls3{letter-spacing:0.410880pt;}
.ls4{letter-spacing:50.738347pt;}
.lsd{letter-spacing:751.770027pt;}
.wsb{word-spacing:-61.568000pt;}
.ws8{word-spacing:-61.440000pt;}
.wsa{word-spacing:-46.264320pt;}
.ws3{word-spacing:-43.008000pt;}
.ws0{word-spacing:-39.989998pt;}
.ws1{word-spacing:-30.388944pt;}
.wsd{word-spacing:-15.933440pt;}
.ws11{word-spacing:-15.761408pt;}
.ws5{word-spacing:-15.728640pt;}
.wse{word-spacing:-15.452373pt;}
.ws9{word-spacing:-15.293440pt;}
.ws4{word-spacing:-15.242453pt;}
.ws10{word-spacing:-15.235157pt;}
.ws6{word-spacing:-15.134720pt;}
.wsf{word-spacing:-15.093973pt;}
.wsc{word-spacing:-14.961024pt;}
.ws7{word-spacing:-14.929920pt;}
.ws12{word-spacing:-14.811307pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-5.539758pt;}
._3{margin-left:-4.118325pt;}
._7{margin-left:-2.391416pt;}
._4{margin-left:-1.178544pt;}
._6{width:0.915652pt;}
._1{width:2.021273pt;}
._c{width:3.010560pt;}
._0{width:3.999966pt;}
._12{width:5.663664pt;}
._11{width:6.635520pt;}
._8{width:7.987200pt;}
._9{width:9.048812pt;}
._16{width:10.304788pt;}
._f{width:11.366400pt;}
._10{width:12.768221pt;}
._13{width:14.254080pt;}
._19{width:16.869632pt;}
._b{width:17.778527pt;}
._a{width:18.923520pt;}
._14{width:20.398080pt;}
._e{width:21.381120pt;}
._d{width:22.425600pt;}
._18{width:23.838720pt;}
._1a{width:27.742991pt;}
._17{width:28.938240pt;}
._5{width:521.698101pt;}
._15{width:754.769493pt;}
.fs6{font-size:42.639997pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fs7{font-size:50.639997pt;}
.fs0{font-size:53.319997pt;}
.fs5{font-size:58.639997pt;}
.fsd{font-size:58.880000pt;}
.fsb{font-size:61.440000pt;}
.fsc{font-size:61.568000pt;}
.fsa{font-size:64.128000pt;}
.fs1{font-size:74.639997pt;}
.fs4{font-size:85.319996pt;}
.fs3{font-size:95.999996pt;}
.fs2{font-size:170.639993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.044404pt;}
.y11{bottom:51.200000pt;}
.y10{bottom:65.312000pt;}
.yd{bottom:78.515613pt;}
.yf{bottom:95.515612pt;}
.y38{bottom:100.992000pt;}
.yc3{bottom:101.792000pt;}
.y78{bottom:105.312000pt;}
.y9e{bottom:109.632000pt;}
.ye{bottom:116.515611pt;}
.yc2{bottom:123.072000pt;}
.y37{bottom:130.112000pt;}
.y9d{bottom:130.752000pt;}
.y5b{bottom:131.552000pt;}
.y77{bottom:134.426667pt;}
.yc1{bottom:144.186667pt;}
.y36{bottom:151.226667pt;}
.y9c{bottom:151.866667pt;}
.y76{bottom:155.546667pt;}
.y5a{bottom:160.826667pt;}
.yc0{bottom:165.306667pt;}
.y35{bottom:172.346667pt;}
.y9b{bottom:172.986667pt;}
.y75{bottom:184.826667pt;}
.y59{bottom:189.946667pt;}
.ybf{bottom:194.426667pt;}
.y34{bottom:201.786667pt;}
.y9a{bottom:202.266667pt;}
.y58{bottom:211.066667pt;}
.y74{bottom:213.946667pt;}
.y99{bottom:223.386667pt;}
.ybe{bottom:223.706667pt;}
.y33{bottom:231.066667pt;}
.yc{bottom:234.515606pt;}
.y57{bottom:240.506667pt;}
.y73{bottom:243.066667pt;}
.y98{bottom:244.506667pt;}
.ybd{bottom:244.826667pt;}
.y32{bottom:252.186667pt;}
.yb{bottom:257.515605pt;}
.y56{bottom:261.786667pt;}
.y72{bottom:264.186667pt;}
.y97{bottom:265.626667pt;}
.y31{bottom:273.306667pt;}
.ybc{bottom:273.946667pt;}
.ya{bottom:281.515604pt;}
.y71{bottom:285.466667pt;}
.y96{bottom:286.906667pt;}
.y30{bottom:294.426667pt;}
.y55{bottom:298.906667pt;}
.ybb{bottom:303.106667pt;}
.y9{bottom:304.515603pt;}
.y70{bottom:306.626667pt;}
.y95{bottom:308.066667pt;}
.y54{bottom:320.066667pt;}
.y2f{bottom:323.906667pt;}
.yba{bottom:332.386667pt;}
.y6f{bottom:336.066667pt;}
.y94{bottom:337.186667pt;}
.y53{bottom:349.186667pt;}
.y2e{bottom:353.186667pt;}
.yb9{bottom:361.506667pt;}
.y6e{bottom:365.186667pt;}
.y93{bottom:366.306667pt;}
.y2d{bottom:374.306667pt;}
.y52{bottom:378.466667pt;}
.y6d{bottom:386.466667pt;}
.y2c{bottom:395.426667pt;}
.y92{bottom:395.586667pt;}
.y51{bottom:407.586667pt;}
.yb8{bottom:414.626667pt;}
.y2b{bottom:416.546667pt;}
.y91{bottom:416.706667pt;}
.y50{bottom:428.706667pt;}
.yb7{bottom:435.746667pt;}
.y2a{bottom:437.666667pt;}
.y90{bottom:437.826667pt;}
.y4f{bottom:449.826667pt;}
.yb6{bottom:457.026667pt;}
.y6c{bottom:458.146667pt;}
.y8f{bottom:458.946667pt;}
.y29{bottom:467.266667pt;}
.yb5{bottom:478.146667pt;}
.y4e{bottom:479.266667pt;}
.y8{bottom:485.515596pt;}
.y6b{bottom:487.266667pt;}
.y28{bottom:488.386667pt;}
.yb4{bottom:499.266667pt;}
.y4d{bottom:508.546667pt;}
.y8e{bottom:509.666667pt;}
.y7{bottom:512.515595pt;}
.yb3{bottom:520.386667pt;}
.y27{bottom:525.506667pt;}
.y4c{bottom:529.666667pt;}
.y8d{bottom:530.786667pt;}
.y26{bottom:546.653333pt;}
.yb2{bottom:549.693333pt;}
.y4b{bottom:550.813333pt;}
.y8c{bottom:551.933333pt;}
.y25{bottom:567.933333pt;}
.yb1{bottom:570.813333pt;}
.y4a{bottom:580.253333pt;}
.y8b{bottom:581.373333pt;}
.yb0{bottom:591.933333pt;}
.y24{bottom:597.053333pt;}
.y6a{bottom:601.373333pt;}
.y49{bottom:609.373333pt;}
.y8a{bottom:610.493333pt;}
.yaf{bottom:613.053333pt;}
.y23{bottom:618.173333pt;}
.y48{bottom:630.653333pt;}
.y89{bottom:631.773333pt;}
.yae{bottom:634.333333pt;}
.y69{bottom:638.653333pt;}
.y22{bottom:639.293333pt;}
.y47{bottom:651.773333pt;}
.y88{bottom:652.893333pt;}
.yad{bottom:655.453333pt;}
.y68{bottom:659.773333pt;}
.y21{bottom:660.573333pt;}
.y6{bottom:671.515588pt;}
.y87{bottom:674.013333pt;}
.y46{bottom:681.213333pt;}
.y20{bottom:681.693333pt;}
.yac{bottom:684.573333pt;}
.y67{bottom:688.893333pt;}
.y86{bottom:695.133333pt;}
.y5{bottom:699.515587pt;}
.yab{bottom:705.693333pt;}
.y45{bottom:710.333333pt;}
.y1f{bottom:710.813333pt;}
.y66{bottom:718.013333pt;}
.y85{bottom:724.573333pt;}
.yaa{bottom:726.973333pt;}
.y44{bottom:731.453333pt;}
.y1e{bottom:731.933333pt;}
.y65{bottom:747.293333pt;}
.ya9{bottom:748.093333pt;}
.y4{bottom:748.515585pt;}
.y43{bottom:752.573333pt;}
.y1d{bottom:753.213333pt;}
.y84{bottom:753.853333pt;}
.y64{bottom:768.413333pt;}
.ya8{bottom:769.213333pt;}
.y1c{bottom:774.373333pt;}
.y83{bottom:775.013333pt;}
.y42{bottom:782.213333pt;}
.y63{bottom:789.573333pt;}
.ya7{bottom:790.373333pt;}
.y1b{bottom:795.493333pt;}
.y82{bottom:796.133333pt;}
.y41{bottom:803.333333pt;}
.y3{bottom:803.515583pt;}
.y62{bottom:810.693333pt;}
.ya6{bottom:811.653333pt;}
.y1a{bottom:816.613333pt;}
.y81{bottom:817.253333pt;}
.ya5{bottom:832.773333pt;}
.y80{bottom:838.533333pt;}
.y61{bottom:840.133333pt;}
.y40{bottom:840.453333pt;}
.y19{bottom:845.893333pt;}
.y7f{bottom:859.653333pt;}
.y3f{bottom:861.573333pt;}
.y18{bottom:867.013333pt;}
.y60{bottom:869.413333pt;}
.ya4{bottom:869.893333pt;}
.y17{bottom:888.133333pt;}
.y7e{bottom:889.093333pt;}
.y5f{bottom:890.533333pt;}
.y3e{bottom:890.853333pt;}
.ya3{bottom:891.013333pt;}
.y16{bottom:909.253333pt;}
.y7d{bottom:910.213333pt;}
.y5e{bottom:911.653333pt;}
.ya2{bottom:912.293333pt;}
.y3d{bottom:919.973333pt;}
.y15{bottom:930.533333pt;}
.y5d{bottom:932.773333pt;}
.ya1{bottom:933.413333pt;}
.y7c{bottom:947.333333pt;}
.y3c{bottom:949.093333pt;}
.y14{bottom:951.653333pt;}
.y5c{bottom:962.213333pt;}
.y7b{bottom:968.613333pt;}
.y3b{bottom:970.213333pt;}
.ya0{bottom:970.533333pt;}
.y7a{bottom:989.733333pt;}
.y13{bottom:990.853333pt;}
.y3a{bottom:991.493333pt;}
.y9f{bottom:991.653333pt;}
.y12{bottom:1012.320000pt;}
.y39{bottom:1012.640000pt;}
.y79{bottom:1012.960000pt;}
.y2{bottom:1019.515574pt;}
.hb{height:31.063904pt;}
.hf{height:31.343437pt;}
.he{height:31.437000pt;}
.hc{height:34.345193pt;}
.h7{height:38.167537pt;}
.h3{height:38.844451pt;}
.ha{height:42.147498pt;}
.h9{height:42.691521pt;}
.h12{height:53.207040pt;}
.h13{height:53.317888pt;}
.h14{height:53.667840pt;}
.h11{height:53.698560pt;}
.h15{height:53.810432pt;}
.h4{height:54.339959pt;}
.h10{height:56.047872pt;}
.h8{height:61.323747pt;}
.h6{height:69.890622pt;}
.h5{height:124.230581pt;}
.h2{height:1122.515569pt;}
.h0{height:1122.559973pt;}
.hd{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.578122pt;}
.x6{left:94.431988pt;}
.x3{left:98.578121pt;}
.x7{left:118.431988pt;}
.x5{left:403.953113pt;}
.x4{left:455.468731pt;}
.x1{left:481.218730pt;}
}




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