
    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_da56819d6febbf8c78b75761.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_132e03057d66dbc9f588598b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_17c5bb334db8230b4f7e3f24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_ac09e49e14440dff61dbbc62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_85678bba84765326e99fa906.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_1bed2fa69043679a1e76c135.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_81afa2a5eb63e3086c2b7d61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_82f1df69450763506d4ccb49.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_b8956eb88418097122270b9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_22d5c04e698c7a3436f3a0da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_e331bbfb72cb40ac6b3245d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_b1bfaf69c46f49abcd91fe27.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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);}
.v7{vertical-align:-55.068000px;}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.754000px;}
.v6{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v4{vertical-align:44.280000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.002155px;}
.lse{letter-spacing:0.010693px;}
.ls18{letter-spacing:0.019357px;}
.ls28{letter-spacing:0.022067px;}
.ls20{letter-spacing:1.767274px;}
.ls2c{letter-spacing:1.780251px;}
.ls21{letter-spacing:1.814831px;}
.ls1e{letter-spacing:1.832729px;}
.ls26{letter-spacing:1.835239px;}
.ls0{letter-spacing:2.986053px;}
.ls27{letter-spacing:2.986478px;}
.ls2d{letter-spacing:2.992449px;}
.lsc{letter-spacing:3.272730px;}
.ls12{letter-spacing:3.338185px;}
.ls2a{letter-spacing:3.665458px;}
.ls2e{letter-spacing:4.394022px;}
.ls2b{letter-spacing:4.400022px;}
.lsa{letter-spacing:4.843640px;}
.ls3{letter-spacing:4.909095px;}
.ls1d{letter-spacing:7.134551px;}
.ls13{letter-spacing:10.865464px;}
.lsd{letter-spacing:10.930918px;}
.ls19{letter-spacing:13.892915px;}
.ls11{letter-spacing:18.130924px;}
.ls10{letter-spacing:18.196379px;}
.ls8{letter-spacing:18.327288px;}
.ls30{letter-spacing:19.963653px;}
.lsb{letter-spacing:21.469109px;}
.ls9{letter-spacing:21.534563px;}
.ls16{letter-spacing:21.861836px;}
.ls1f{letter-spacing:23.629111px;}
.ls1a{letter-spacing:24.676384px;}
.lsf{letter-spacing:24.806915px;}
.ls22{letter-spacing:24.808478px;}
.ls29{letter-spacing:25.028022px;}
.ls17{letter-spacing:25.069112px;}
.ls2f{letter-spacing:25.352712px;}
.ls25{letter-spacing:26.216022px;}
.ls4{letter-spacing:28.538206px;}
.ls7{letter-spacing:28.603660px;}
.ls24{letter-spacing:28.734569px;}
.ls1b{letter-spacing:29.323661px;}
.ls15{letter-spacing:29.847298px;}
.ls31{letter-spacing:29.912752px;}
.ls23{letter-spacing:31.328022px;}
.ls6{letter-spacing:31.876390px;}
.ls2{letter-spacing:32.727300px;}
.ls5{letter-spacing:33.578210px;}
.ls1c{letter-spacing:34.690938px;}
.ls32{letter-spacing:37.374577px;}
.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;}
}
.ws3a{word-spacing:-65.454600px;}
.ws40{word-spacing:-47.258221px;}
.ws10{word-spacing:-18.183288px;}
.ws47{word-spacing:-3.325094px;}
.ws1e{word-spacing:-2.736002px;}
.ws31{word-spacing:-2.539638px;}
.wse{word-spacing:-1.754183px;}
.ws46{word-spacing:-1.361456px;}
.ws3e{word-spacing:-0.837819px;}
.wsf{word-spacing:-0.706910px;}
.ws30{word-spacing:-0.510546px;}
.ws12{word-spacing:-0.071731px;}
.ws2d{word-spacing:-0.052364px;}
.ws11{word-spacing:0.000000px;}
.ws2a{word-spacing:0.013091px;}
.ws28{word-spacing:0.078546px;}
.ws29{word-spacing:0.144000px;}
.ws17{word-spacing:0.340364px;}
.ws1a{word-spacing:0.536728px;}
.ws49{word-spacing:0.733092px;}
.ws16{word-spacing:0.929455px;}
.ws1f{word-spacing:1.060365px;}
.ws18{word-spacing:1.125819px;}
.wsd{word-spacing:1.911274px;}
.ws24{word-spacing:1.976729px;}
.ws23{word-spacing:2.264729px;}
.ws3b{word-spacing:2.434911px;}
.ws8{word-spacing:2.565820px;}
.ws39{word-spacing:3.089457px;}
.ws4c{word-spacing:3.299613px;}
.ws4a{word-spacing:3.359389px;}
.ws4{word-spacing:3.613094px;}
.ws7{word-spacing:3.678549px;}
.wsb{word-spacing:4.005822px;}
.ws14{word-spacing:4.162913px;}
.ws37{word-spacing:4.228367px;}
.ws1b{word-spacing:4.398549px;}
.wsc{word-spacing:4.464004px;}
.ws3f{word-spacing:4.660368px;}
.ws41{word-spacing:4.987641px;}
.ws36{word-spacing:5.380368px;}
.wsa{word-spacing:5.576732px;}
.ws9{word-spacing:6.034914px;}
.ws2f{word-spacing:6.493096px;}
.ws22{word-spacing:7.344006px;}
.ws21{word-spacing:7.409461px;}
.ws48{word-spacing:7.736734px;}
.ws45{word-spacing:7.933098px;}
.ws2{word-spacing:7.990856px;}
.ws1d{word-spacing:8.653098px;}
.ws1c{word-spacing:8.718553px;}
.ws38{word-spacing:9.373099px;}
.ws3d{word-spacing:9.569463px;}
.ws3{word-spacing:9.589000px;}
.ws3c{word-spacing:9.634917px;}
.ws27{word-spacing:10.354918px;}
.ws26{word-spacing:10.420372px;}
.ws2c{word-spacing:10.865464px;}
.ws5{word-spacing:10.878555px;}
.ws32{word-spacing:11.467646px;}
.ws25{word-spacing:11.952010px;}
.ws34{word-spacing:12.514920px;}
.ws1{word-spacing:16.567698px;}
.ws44{word-spacing:17.358560px;}
.ws2b{word-spacing:18.065470px;}
.ws4b{word-spacing:21.339889px;}
.ws19{word-spacing:25.003657px;}
.ws20{word-spacing:26.827469px;}
.ws42{word-spacing:30.370934px;}
.ws0{word-spacing:31.322414px;}
.ws2e{word-spacing:32.661845px;}
.ws6{word-spacing:32.720093px;}
.ws35{word-spacing:36.850940px;}
.ws33{word-spacing:38.552759px;}
.ws13{word-spacing:39.639306px;}
.ws43{word-spacing:43.003672px;}
.ws15{word-spacing:80.625869px;}
._4{margin-left:-5.929579px;}
._1{margin-left:-4.610401px;}
._16{margin-left:-3.274519px;}
._2{margin-left:-2.223667px;}
._5{margin-left:-1.178183px;}
._1f{width:1.112728px;}
._3{width:2.223667px;}
._24{width:3.391322px;}
._0{width:4.461678px;}
._2a{width:15.770980px;}
._b{width:18.389164px;}
._1c{width:19.675045px;}
._25{width:22.806779px;}
._6{width:25.261897px;}
._a{width:28.016358px;}
._1e{width:29.137384px;}
._8{width:30.500054px;}
._9{width:31.876390px;}
._29{width:32.952242px;}
._7{width:35.278240px;}
._22{width:40.316455px;}
._1d{width:44.509128px;}
._26{width:46.049671px;}
._27{width:47.692531px;}
._d{width:60.545505px;}
._23{width:65.454600px;}
._f{width:66.894601px;}
._21{width:75.272790px;}
._20{width:80.697600px;}
._28{width:937.327976px;}
._18{width:1117.439142px;}
._14{width:1281.662944px;}
._1a{width:1438.952137px;}
._15{width:1536.412247px;}
._11{width:1691.870501px;}
._e{width:1712.723729px;}
._17{width:1781.936030px;}
._12{width:1814.859694px;}
._13{width:1818.654272px;}
._10{width:1820.357881px;}
._19{width:1843.199747px;}
._c{width:2079.361733px;}
._1b{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y35{bottom:93.813000px;}
.y34{bottom:176.005500px;}
.y7a{bottom:196.329000px;}
.y58{bottom:199.816500px;}
.y33{bottom:209.319000px;}
.y79{bottom:216.652500px;}
.y57{bottom:220.140000px;}
.y56{bottom:240.465000px;}
.y32{bottom:242.632500px;}
.y78{bottom:242.971500px;}
.y77{bottom:263.295000px;}
.y55{bottom:272.943000px;}
.y31{bottom:275.946000px;}
.y54{bottom:293.266500px;}
.y76{bottom:299.274000px;}
.y30{bottom:309.259500px;}
.y53{bottom:325.744500px;}
.y2f{bottom:341.884500px;}
.y75{bottom:343.890000px;}
.y52{bottom:346.069500px;}
.y2e{bottom:362.208000px;}
.y51{bottom:366.393000px;}
.y74{bottom:373.053000px;}
.y2d{bottom:382.531500px;}
.y12{bottom:391.509000px;}
.y73{bottom:393.376500px;}
.y50{bottom:400.479000px;}
.y2c{bottom:402.855000px;}
.y11{bottom:411.832500px;}
.y72{bottom:413.700000px;}
.y2b{bottom:423.178500px;}
.y10{bottom:432.156000px;}
.y71{bottom:434.023500px;}
.y4f{bottom:441.786000px;}
.y2a{bottom:443.503500px;}
.yf{bottom:452.479500px;}
.y70{bottom:459.810000px;}
.y29{bottom:463.827000px;}
.ye{bottom:472.804500px;}
.y4e{bottom:474.265500px;}
.y28{bottom:484.150500px;}
.yd{bottom:493.128000px;}
.y4d{bottom:494.589000px;}
.y6f{bottom:495.873000px;}
.y27{bottom:504.474000px;}
.yc{bottom:513.451500px;}
.y4c{bottom:514.912500px;}
.y6e{bottom:516.196500px;}
.y26{bottom:524.797500px;}
.yb{bottom:533.775000px;}
.y6d{bottom:536.520000px;}
.y25{bottom:545.122500px;}
.y4b{bottom:547.390500px;}
.ya{bottom:554.098500px;}
.y6c{bottom:564.885000px;}
.y24{bottom:565.446000px;}
.y9{bottom:574.423500px;}
.y4a{bottom:576.384000px;}
.y23{bottom:585.769500px;}
.y8{bottom:594.747000px;}
.y6b{bottom:600.726000px;}
.y49{bottom:605.377500px;}
.y6a{bottom:621.049500px;}
.y22{bottom:621.864000px;}
.y7{bottom:634.497000px;}
.y48{bottom:639.463500px;}
.y69{bottom:641.373000px;}
.y68{bottom:661.696500px;}
.y21{bottom:667.323000px;}
.y6{bottom:671.220000px;}
.y47{bottom:680.770500px;}
.y67{bottom:682.020000px;}
.y5{bottom:699.952500px;}
.y20{bottom:704.010000px;}
.y46{bottom:704.752500px;}
.y45{bottom:715.977000px;}
.y66{bottom:717.031500px;}
.y1f{bottom:740.697000px;}
.y65{bottom:752.041500px;}
.y44{bottom:753.574500px;}
.y1e{bottom:761.020500px;}
.y64{bottom:772.366500px;}
.y43{bottom:780.520500px;}
.y1d{bottom:781.345500px;}
.y63{bottom:800.731500px;}
.y42{bottom:813.997500px;}
.y1c{bottom:818.032500px;}
.y4{bottom:818.038500px;}
.y85{bottom:824.890500px;}
.y41{bottom:834.321000px;}
.y62{bottom:836.571000px;}
.y1b{bottom:838.356000px;}
.y84{bottom:850.294500px;}
.y3{bottom:855.319500px;}
.y61{bottom:856.896000px;}
.y40{bottom:861.619500px;}
.y1a{bottom:875.043000px;}
.y83{bottom:875.700000px;}
.y60{bottom:877.219500px;}
.y3f{bottom:881.943000px;}
.y2{bottom:900.151500px;}
.y82{bottom:901.104000px;}
.y3e{bottom:902.268000px;}
.y19{bottom:911.731500px;}
.y5f{bottom:913.197000px;}
.y3d{bottom:929.214000px;}
.y81{bottom:935.241000px;}
.y18{bottom:948.418500px;}
.y5e{bottom:957.814500px;}
.y3c{bottom:962.689500px;}
.y17{bottom:968.742000px;}
.y5d{bottom:978.138000px;}
.y80{bottom:980.821500px;}
.y16{bottom:989.065500px;}
.y3b{bottom:989.989500px;}
.y7f{bottom:1001.145000px;}
.y5c{bottom:1006.503000px;}
.y15{bottom:1009.390500px;}
.y3a{bottom:1010.313000px;}
.y7e{bottom:1021.470000px;}
.y39{bottom:1037.611500px;}
.y7d{bottom:1041.793500px;}
.y5b{bottom:1042.344000px;}
.y14{bottom:1046.077500px;}
.y38{bottom:1057.936500px;}
.y7c{bottom:1062.117000px;}
.y5a{bottom:1062.667500px;}
.y7b{bottom:1082.440500px;}
.y13{bottom:1082.764500px;}
.y59{bottom:1082.991000px;}
.y37{bottom:1084.882500px;}
.y1{bottom:1087.587000px;}
.y36{bottom:1118.968500px;}
.h6{height:33.187496px;}
.h2{height:41.484266px;}
.hf{height:44.831700px;}
.h9{height:45.818220px;}
.hb{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.hc{height:56.941496px;}
.hd{height:60.211496px;}
.h5{height:74.035330px;}
.ha{height:93.370950px;}
.he{height:93.988950px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x10{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.xb{left:326.629500px;}
.x8{left:332.509500px;}
.xd{left:409.203000px;}
.xc{left:417.703500px;}
.xe{left:423.232500px;}
.xf{left:434.662500px;}
.x7{left:438.466500px;}
.x9{left:539.013000px;}
.xa{left:575.334000px;}
@media print{
.v7{vertical-align:-48.949333pt;}
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.114667pt;}
.v6{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v4{vertical-align:39.360000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.001916pt;}
.lse{letter-spacing:0.009505pt;}
.ls18{letter-spacing:0.017206pt;}
.ls28{letter-spacing:0.019615pt;}
.ls20{letter-spacing:1.570910pt;}
.ls2c{letter-spacing:1.582445pt;}
.ls21{letter-spacing:1.613183pt;}
.ls1e{letter-spacing:1.629092pt;}
.ls26{letter-spacing:1.631323pt;}
.ls0{letter-spacing:2.654270pt;}
.ls27{letter-spacing:2.654647pt;}
.ls2d{letter-spacing:2.659955pt;}
.lsc{letter-spacing:2.909093pt;}
.ls12{letter-spacing:2.967275pt;}
.ls2a{letter-spacing:3.258185pt;}
.ls2e{letter-spacing:3.905798pt;}
.ls2b{letter-spacing:3.911131pt;}
.lsa{letter-spacing:4.305458pt;}
.ls3{letter-spacing:4.363640pt;}
.ls1d{letter-spacing:6.341823pt;}
.ls13{letter-spacing:9.658190pt;}
.lsd{letter-spacing:9.716372pt;}
.ls19{letter-spacing:12.349258pt;}
.ls11{letter-spacing:16.116377pt;}
.ls10{letter-spacing:16.174559pt;}
.ls8{letter-spacing:16.290923pt;}
.ls30{letter-spacing:17.745469pt;}
.lsb{letter-spacing:19.083652pt;}
.ls9{letter-spacing:19.141834pt;}
.ls16{letter-spacing:19.432743pt;}
.ls1f{letter-spacing:21.003654pt;}
.ls1a{letter-spacing:21.934564pt;}
.lsf{letter-spacing:22.050591pt;}
.ls22{letter-spacing:22.051980pt;}
.ls29{letter-spacing:22.247131pt;}
.ls17{letter-spacing:22.283655pt;}
.ls2f{letter-spacing:22.535744pt;}
.ls25{letter-spacing:23.303131pt;}
.ls4{letter-spacing:25.367294pt;}
.ls7{letter-spacing:25.425476pt;}
.ls24{letter-spacing:25.541839pt;}
.ls1b{letter-spacing:26.065476pt;}
.ls15{letter-spacing:26.530931pt;}
.ls31{letter-spacing:26.589113pt;}
.ls23{letter-spacing:27.847131pt;}
.ls6{letter-spacing:28.334569pt;}
.ls2{letter-spacing:29.090933pt;}
.ls5{letter-spacing:29.847298pt;}
.ls1c{letter-spacing:30.836389pt;}
.ls32{letter-spacing:33.221846pt;}
.ws3a{word-spacing:-58.181867pt;}
.ws40{word-spacing:-42.007308pt;}
.ws10{word-spacing:-16.162923pt;}
.ws47{word-spacing:-2.955639pt;}
.ws1e{word-spacing:-2.432002pt;}
.ws31{word-spacing:-2.257456pt;}
.wse{word-spacing:-1.559274pt;}
.ws46{word-spacing:-1.210183pt;}
.ws3e{word-spacing:-0.744728pt;}
.wsf{word-spacing:-0.628364pt;}
.ws30{word-spacing:-0.453819pt;}
.ws12{word-spacing:-0.063761pt;}
.ws2d{word-spacing:-0.046545pt;}
.ws11{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.011636pt;}
.ws28{word-spacing:0.069818pt;}
.ws29{word-spacing:0.128000pt;}
.ws17{word-spacing:0.302546pt;}
.ws1a{word-spacing:0.477091pt;}
.ws49{word-spacing:0.651637pt;}
.ws16{word-spacing:0.826183pt;}
.ws1f{word-spacing:0.942546pt;}
.ws18{word-spacing:1.000728pt;}
.wsd{word-spacing:1.698911pt;}
.ws24{word-spacing:1.757092pt;}
.ws23{word-spacing:2.013093pt;}
.ws3b{word-spacing:2.164365pt;}
.ws8{word-spacing:2.280729pt;}
.ws39{word-spacing:2.746184pt;}
.ws4c{word-spacing:2.932989pt;}
.ws4a{word-spacing:2.986123pt;}
.ws4{word-spacing:3.211639pt;}
.ws7{word-spacing:3.269821pt;}
.wsb{word-spacing:3.560730pt;}
.ws14{word-spacing:3.700367pt;}
.ws37{word-spacing:3.758549pt;}
.ws1b{word-spacing:3.909821pt;}
.wsc{word-spacing:3.968003pt;}
.ws3f{word-spacing:4.142549pt;}
.ws41{word-spacing:4.433458pt;}
.ws36{word-spacing:4.782549pt;}
.wsa{word-spacing:4.957095pt;}
.ws9{word-spacing:5.364368pt;}
.ws2f{word-spacing:5.771641pt;}
.ws22{word-spacing:6.528005pt;}
.ws21{word-spacing:6.586187pt;}
.ws48{word-spacing:6.877097pt;}
.ws45{word-spacing:7.051642pt;}
.ws2{word-spacing:7.102983pt;}
.ws1d{word-spacing:7.691643pt;}
.ws1c{word-spacing:7.749825pt;}
.ws38{word-spacing:8.331643pt;}
.ws3d{word-spacing:8.506189pt;}
.ws3{word-spacing:8.523556pt;}
.ws3c{word-spacing:8.564371pt;}
.ws27{word-spacing:9.204371pt;}
.ws26{word-spacing:9.262553pt;}
.ws2c{word-spacing:9.658190pt;}
.ws5{word-spacing:9.669826pt;}
.ws32{word-spacing:10.193463pt;}
.ws25{word-spacing:10.624009pt;}
.ws34{word-spacing:11.124373pt;}
.ws1{word-spacing:14.726842pt;}
.ws44{word-spacing:15.429831pt;}
.ws2b{word-spacing:16.058195pt;}
.ws4b{word-spacing:18.968790pt;}
.ws19{word-spacing:22.225473pt;}
.ws20{word-spacing:23.846639pt;}
.ws42{word-spacing:26.996386pt;}
.ws0{word-spacing:27.842146pt;}
.ws2e{word-spacing:29.032751pt;}
.ws6{word-spacing:29.084527pt;}
.ws35{word-spacing:32.756391pt;}
.ws33{word-spacing:34.269119pt;}
.ws13{word-spacing:35.234938pt;}
.ws43{word-spacing:38.225486pt;}
.ws15{word-spacing:71.667439pt;}
._4{margin-left:-5.270737pt;}
._1{margin-left:-4.098134pt;}
._16{margin-left:-2.910684pt;}
._2{margin-left:-1.976593pt;}
._5{margin-left:-1.047274pt;}
._1f{width:0.989092pt;}
._3{width:1.976593pt;}
._24{width:3.014508pt;}
._0{width:3.965936pt;}
._2a{width:14.018649pt;}
._b{width:16.345924pt;}
._1c{width:17.488929pt;}
._25{width:20.272693pt;}
._6{width:22.455020pt;}
._a{width:24.903429pt;}
._1e{width:25.899897pt;}
._8{width:27.111159pt;}
._9{width:28.334569pt;}
._29{width:29.290882pt;}
._7{width:31.358436pt;}
._22{width:35.836849pt;}
._1d{width:39.563669pt;}
._26{width:40.933041pt;}
._27{width:42.393361pt;}
._d{width:53.818227pt;}
._23{width:58.181867pt;}
._f{width:59.461868pt;}
._21{width:66.909147pt;}
._20{width:71.731200pt;}
._28{width:833.180423pt;}
._18{width:993.279237pt;}
._14{width:1139.255950pt;}
._1a{width:1279.068566pt;}
._15{width:1365.699775pt;}
._11{width:1503.884890pt;}
._e{width:1522.421092pt;}
._17{width:1583.943138pt;}
._12{width:1613.208617pt;}
._13{width:1616.581575pt;}
._10{width:1618.095894pt;}
._19{width:1638.399775pt;}
._c{width:1848.321540pt;}
._1b{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:83.389333pt;}
.y34{bottom:156.449333pt;}
.y7a{bottom:174.514667pt;}
.y58{bottom:177.614667pt;}
.y33{bottom:186.061333pt;}
.y79{bottom:192.580000pt;}
.y57{bottom:195.680000pt;}
.y56{bottom:213.746667pt;}
.y32{bottom:215.673333pt;}
.y78{bottom:215.974667pt;}
.y77{bottom:234.040000pt;}
.y55{bottom:242.616000pt;}
.y31{bottom:245.285333pt;}
.y54{bottom:260.681333pt;}
.y76{bottom:266.021333pt;}
.y30{bottom:274.897333pt;}
.y53{bottom:289.550667pt;}
.y2f{bottom:303.897333pt;}
.y75{bottom:305.680000pt;}
.y52{bottom:307.617333pt;}
.y2e{bottom:321.962667pt;}
.y51{bottom:325.682667pt;}
.y74{bottom:331.602667pt;}
.y2d{bottom:340.028000pt;}
.y12{bottom:348.008000pt;}
.y73{bottom:349.668000pt;}
.y50{bottom:355.981333pt;}
.y2c{bottom:358.093333pt;}
.y11{bottom:366.073333pt;}
.y72{bottom:367.733333pt;}
.y2b{bottom:376.158667pt;}
.y10{bottom:384.138667pt;}
.y71{bottom:385.798667pt;}
.y4f{bottom:392.698667pt;}
.y2a{bottom:394.225333pt;}
.yf{bottom:402.204000pt;}
.y70{bottom:408.720000pt;}
.y29{bottom:412.290667pt;}
.ye{bottom:420.270667pt;}
.y4e{bottom:421.569333pt;}
.y28{bottom:430.356000pt;}
.yd{bottom:438.336000pt;}
.y4d{bottom:439.634667pt;}
.y6f{bottom:440.776000pt;}
.y27{bottom:448.421333pt;}
.yc{bottom:456.401333pt;}
.y4c{bottom:457.700000pt;}
.y6e{bottom:458.841333pt;}
.y26{bottom:466.486667pt;}
.yb{bottom:474.466667pt;}
.y6d{bottom:476.906667pt;}
.y25{bottom:484.553333pt;}
.y4b{bottom:486.569333pt;}
.ya{bottom:492.532000pt;}
.y6c{bottom:502.120000pt;}
.y24{bottom:502.618667pt;}
.y9{bottom:510.598667pt;}
.y4a{bottom:512.341333pt;}
.y23{bottom:520.684000pt;}
.y8{bottom:528.664000pt;}
.y6b{bottom:533.978667pt;}
.y49{bottom:538.113333pt;}
.y6a{bottom:552.044000pt;}
.y22{bottom:552.768000pt;}
.y7{bottom:563.997333pt;}
.y48{bottom:568.412000pt;}
.y69{bottom:570.109333pt;}
.y68{bottom:588.174667pt;}
.y21{bottom:593.176000pt;}
.y6{bottom:596.640000pt;}
.y47{bottom:605.129333pt;}
.y67{bottom:606.240000pt;}
.y5{bottom:622.180000pt;}
.y20{bottom:625.786667pt;}
.y46{bottom:626.446667pt;}
.y45{bottom:636.424000pt;}
.y66{bottom:637.361333pt;}
.y1f{bottom:658.397333pt;}
.y65{bottom:668.481333pt;}
.y44{bottom:669.844000pt;}
.y1e{bottom:676.462667pt;}
.y64{bottom:686.548000pt;}
.y43{bottom:693.796000pt;}
.y1d{bottom:694.529333pt;}
.y63{bottom:711.761333pt;}
.y42{bottom:723.553333pt;}
.y1c{bottom:727.140000pt;}
.y4{bottom:727.145333pt;}
.y85{bottom:733.236000pt;}
.y41{bottom:741.618667pt;}
.y62{bottom:743.618667pt;}
.y1b{bottom:745.205333pt;}
.y84{bottom:755.817333pt;}
.y3{bottom:760.284000pt;}
.y61{bottom:761.685333pt;}
.y40{bottom:765.884000pt;}
.y1a{bottom:777.816000pt;}
.y83{bottom:778.400000pt;}
.y60{bottom:779.750667pt;}
.y3f{bottom:783.949333pt;}
.y2{bottom:800.134667pt;}
.y82{bottom:800.981333pt;}
.y3e{bottom:802.016000pt;}
.y19{bottom:810.428000pt;}
.y5f{bottom:811.730667pt;}
.y3d{bottom:825.968000pt;}
.y81{bottom:831.325333pt;}
.y18{bottom:843.038667pt;}
.y5e{bottom:851.390667pt;}
.y3c{bottom:855.724000pt;}
.y17{bottom:861.104000pt;}
.y5d{bottom:869.456000pt;}
.y80{bottom:871.841333pt;}
.y16{bottom:879.169333pt;}
.y3b{bottom:879.990667pt;}
.y7f{bottom:889.906667pt;}
.y5c{bottom:894.669333pt;}
.y15{bottom:897.236000pt;}
.y3a{bottom:898.056000pt;}
.y7e{bottom:907.973333pt;}
.y39{bottom:922.321333pt;}
.y7d{bottom:926.038667pt;}
.y5b{bottom:926.528000pt;}
.y14{bottom:929.846667pt;}
.y38{bottom:940.388000pt;}
.y7c{bottom:944.104000pt;}
.y5a{bottom:944.593333pt;}
.y7b{bottom:962.169333pt;}
.y13{bottom:962.457333pt;}
.y59{bottom:962.658667pt;}
.y37{bottom:964.340000pt;}
.y1{bottom:966.744000pt;}
.y36{bottom:994.638667pt;}
.h6{height:29.499997pt;}
.h2{height:36.874903pt;}
.hf{height:39.850400pt;}
.h9{height:40.727307pt;}
.hb{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.hc{height:50.614663pt;}
.hd{height:53.521330pt;}
.h5{height:65.809182pt;}
.ha{height:82.996400pt;}
.he{height:83.545733pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x10{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.xb{left:290.337333pt;}
.x8{left:295.564000pt;}
.xd{left:363.736000pt;}
.xc{left:371.292000pt;}
.xe{left:376.206667pt;}
.xf{left:386.366667pt;}
.x7{left:389.748000pt;}
.x9{left:479.122667pt;}
.xa{left:511.408000pt;}
}




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