
    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_77ce841da2fd8e61703f9cb1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.841309;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_6821af5db2f9c1d80fada105.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_da1cc1a5f58a79e1b175a0f7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675293;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_8e0fca467af1387d9ce989ef.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851074;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_0d3ecbf936da9344191d5062.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_48e50caa1e1785e67d40064c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_5b579a1b30427a5a58eeff55.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_336e4730648350722046846d.woff')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_829aa333c2441b08bfb3a745.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls27{letter-spacing:-8.677440px;}
.ls1b{letter-spacing:-8.280000px;}
.ls22{letter-spacing:-7.948800px;}
.ls28{letter-spacing:-7.683840px;}
.ls1c{letter-spacing:-7.021440px;}
.ls17{letter-spacing:-4.901760px;}
.ls2a{letter-spacing:-3.775680px;}
.ls2b{letter-spacing:-2.715840px;}
.lsf{letter-spacing:-2.649600px;}
.lse{letter-spacing:-2.583360px;}
.ls2d{letter-spacing:-2.517120px;}
.ls1f{letter-spacing:-2.384640px;}
.ls25{letter-spacing:-2.252160px;}
.ls11{letter-spacing:-1.788480px;}
.ls1d{letter-spacing:-1.589760px;}
.ls14{letter-spacing:-1.192320px;}
.ls12{letter-spacing:-1.126080px;}
.ls29{letter-spacing:-1.059840px;}
.ls13{letter-spacing:-0.993600px;}
.lsc{letter-spacing:-0.927360px;}
.ls26{letter-spacing:-0.861120px;}
.ls20{letter-spacing:-0.794880px;}
.ls24{letter-spacing:-0.728640px;}
.ls16{letter-spacing:-0.662400px;}
.ls21{letter-spacing:-0.596160px;}
.ls7{letter-spacing:-0.529920px;}
.ls9{letter-spacing:-0.463680px;}
.ls6{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.331200px;}
.lsa{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.132480px;}
.ls5{letter-spacing:-0.066240px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.066240px;}
.ls1e{letter-spacing:0.132480px;}
.ls18{letter-spacing:0.175680px;}
.ls0{letter-spacing:0.198720px;}
.ls1{letter-spacing:0.205344px;}
.ls2c{letter-spacing:0.218592px;}
.ls23{letter-spacing:0.225216px;}
.lsb{letter-spacing:0.264960px;}
.ls19{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.397440px;}
.ls2{letter-spacing:1.391040px;}
.ls3{letter-spacing:845.553600px;}
.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;}
}
.ws3c{word-spacing:-13.512960px;}
.ws3b{word-spacing:-13.446720px;}
.ws2{word-spacing:-13.115520px;}
.ws21{word-spacing:-13.049280px;}
.ws32{word-spacing:-12.983040px;}
.ws22{word-spacing:-12.916800px;}
.wsc{word-spacing:-12.850560px;}
.ws3{word-spacing:-12.784320px;}
.ws1{word-spacing:-12.718080px;}
.ws8{word-spacing:-12.651840px;}
.ws5{word-spacing:-12.519360px;}
.ws6{word-spacing:-12.453120px;}
.ws0{word-spacing:-12.386880px;}
.ws4{word-spacing:-12.320640px;}
.ws44{word-spacing:-12.254400px;}
.ws25{word-spacing:-12.188160px;}
.ws40{word-spacing:-12.121920px;}
.ws2f{word-spacing:-12.055680px;}
.ws31{word-spacing:-11.923200px;}
.wsa{word-spacing:-11.790720px;}
.ws26{word-spacing:-11.658240px;}
.wsb{word-spacing:-11.592000px;}
.ws27{word-spacing:-11.194560px;}
.ws9{word-spacing:-10.995840px;}
.ws30{word-spacing:-10.532160px;}
.ws24{word-spacing:-10.399680px;}
.ws43{word-spacing:-10.267200px;}
.ws7{word-spacing:-10.134720px;}
.ws3f{word-spacing:-10.068480px;}
.ws3e{word-spacing:-9.008640px;}
.wsd{word-spacing:-7.882560px;}
.ws41{word-spacing:-7.503840px;}
.ws23{word-spacing:-5.762880px;}
.ws34{word-spacing:-5.100480px;}
.ws28{word-spacing:-4.835520px;}
.ws20{word-spacing:-4.504320px;}
.ws1d{word-spacing:-0.861120px;}
.ws46{word-spacing:-0.728640px;}
.ws17{word-spacing:-0.463680px;}
.ws29{word-spacing:-0.397440px;}
.ws1b{word-spacing:-0.331200px;}
.ws14{word-spacing:-0.264960px;}
.ws11{word-spacing:-0.198720px;}
.ws12{word-spacing:-0.132480px;}
.ws1c{word-spacing:-0.066240px;}
.wse{word-spacing:0.000000px;}
.wsf{word-spacing:0.066240px;}
.ws3d{word-spacing:0.132480px;}
.ws16{word-spacing:0.264960px;}
.ws18{word-spacing:0.331200px;}
.ws1e{word-spacing:0.397440px;}
.ws13{word-spacing:0.463680px;}
.ws10{word-spacing:0.529920px;}
.ws1a{word-spacing:0.596160px;}
.ws2e{word-spacing:0.662400px;}
.ws39{word-spacing:0.728640px;}
.ws2d{word-spacing:0.794880px;}
.ws1f{word-spacing:0.861120px;}
.ws2c{word-spacing:0.993600px;}
.ws45{word-spacing:1.059840px;}
.ws15{word-spacing:1.126080px;}
.ws35{word-spacing:1.192320px;}
.ws36{word-spacing:1.324800px;}
.ws2b{word-spacing:1.589760px;}
.ws3a{word-spacing:1.788480px;}
.ws38{word-spacing:2.252160px;}
.ws37{word-spacing:2.649600px;}
.ws19{word-spacing:2.782080px;}
.ws42{word-spacing:4.040640px;}
.ws33{word-spacing:4.835520px;}
.ws2a{word-spacing:7.220160px;}
._a{margin-left:-10.306944px;}
._9{margin-left:-8.240256px;}
._f{margin-left:-7.226784px;}
._5{margin-left:-5.544288px;}
._7{margin-left:-4.206240px;}
._4{margin-left:-2.603232px;}
._2{margin-left:-1.291680px;}
._3{width:1.185696px;}
._6{width:2.596608px;}
._8{width:3.934656px;}
._b{width:5.345568px;}
._e{width:6.564384px;}
._c{width:7.915680px;}
._d{width:9.118368px;}
._1{width:1247.961600px;}
._0{width:1340.167680px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:4.680000px;}
.y81{bottom:24.839850px;}
.y2f{bottom:24.840000px;}
.y4b{bottom:44.820000px;}
.y48{bottom:45.000000px;}
.y1{bottom:57.780000px;}
.y94{bottom:65.160000px;}
.y9f{bottom:120.963600px;}
.y9e{bottom:142.740000px;}
.y9d{bottom:167.940000px;}
.y9c{bottom:188.820000px;}
.y58{bottom:190.820880px;}
.y9b{bottom:209.700000px;}
.y57{bottom:224.652960px;}
.y98{bottom:230.580000px;}
.y56{bottom:246.247200px;}
.y9a{bottom:255.426480px;}
.y25{bottom:264.332880px;}
.y55{bottom:268.023600px;}
.y99{bottom:275.580000px;}
.y54{bottom:289.800000px;}
.y24{bottom:296.376480px;}
.y93{bottom:311.940000px;}
.y51{bottom:315.000000px;}
.y97{bottom:316.632960px;}
.y53{bottom:319.686480px;}
.y23{bottom:330.208560px;}
.y96{bottom:336.786480px;}
.y52{bottom:339.840000px;}
.y22{bottom:351.802800px;}
.y95{bottom:356.940000px;}
.y21{bottom:373.579200px;}
.y4f{bottom:376.200000px;}
.y91{bottom:393.300000px;}
.y20{bottom:395.355600px;}
.y50{bottom:401.040000px;}
.y92{bottom:418.140000px;}
.y1f{bottom:429.022080px;}
.y4d{bottom:437.400000px;}
.y1e{bottom:450.798480px;}
.y90{bottom:454.500000px;}
.y4e{bottom:462.240000px;}
.y8d{bottom:475.380000px;}
.y6e{bottom:476.640720px;}
.y8f{bottom:480.066480px;}
.y1d{bottom:484.630560px;}
.y4a{bottom:498.600000px;}
.y8e{bottom:500.220000px;}
.y1c{bottom:506.224800px;}
.y6d{bottom:510.307200px;}
.y4c{bottom:523.260000px;}
.y6c{bottom:532.083600px;}
.y3f{bottom:535.504320px;}
.y8c{bottom:536.580000px;}
.y1b{bottom:540.056880px;}
.y6b{bottom:553.860000px;}
.y8b{bottom:557.460000px;}
.y47{bottom:559.620000px;}
.y1a{bottom:561.651120px;}
.y3e{bottom:569.170800px;}
.y8a{bottom:578.340000px;}
.y6a{bottom:579.060000px;}
.y19{bottom:583.427520px;}
.y49{bottom:584.460000px;}
.y3d{bottom:590.947200px;}
.y89{bottom:599.220000px;}
.y18{bottom:605.203920px;}
.y3c{bottom:612.723600px;}
.y69{bottom:620.100000px;}
.y46{bottom:620.820000px;}
.y17{bottom:626.980320px;}
.y3b{bottom:634.500000px;}
.y88{bottom:638.287920px;}
.y68{bottom:640.980000px;}
.y45{bottom:641.700000px;}
.y16{bottom:648.574560px;}
.y3a{bottom:659.700000px;}
.y87{bottom:660.064320px;}
.y67{bottom:661.860000px;}
.y44{bottom:662.580000px;}
.y15{bottom:670.350960px;}
.y39{bottom:680.580000px;}
.y86{bottom:681.840720px;}
.y14{bottom:692.127360px;}
.y66{bottom:701.110080px;}
.y38{bottom:701.460000px;}
.y85{bottom:703.617120px;}
.y43{bottom:703.620000px;}
.y13{bottom:713.903760px;}
.y37{bottom:722.340000px;}
.y65{bottom:722.704320px;}
.y12{bottom:735.498000px;}
.y84{bottom:737.283600px;}
.y36{bottom:743.220000px;}
.y64{bottom:744.480720px;}
.y42{bottom:744.660000px;}
.y83{bottom:759.060000px;}
.y60{bottom:761.253840px;}
.y35{bottom:764.100000px;}
.y63{bottom:766.257120px;}
.y11{bottom:769.330080px;}
.y82{bottom:784.260000px;}
.y34{bottom:784.980000px;}
.y41{bottom:785.700000px;}
.y10{bottom:791.106480px;}
.y5f{bottom:795.085920px;}
.y75{bottom:798.311520px;}
.y62{bottom:799.923600px;}
.y80{bottom:805.140000px;}
.y33{bottom:805.860000px;}
.yf{bottom:812.700720px;}
.y5e{bottom:816.680160px;}
.y61{bottom:821.700000px;}
.y40{bottom:826.740000px;}
.y74{bottom:832.143600px;}
.ye{bottom:834.477120px;}
.y5d{bottom:838.456560px;}
.y7f{bottom:846.180000px;}
.y32{bottom:846.900000px;}
.y73{bottom:853.920000px;}
.y5c{bottom:860.232960px;}
.yd{bottom:866.702880px;}
.y7e{bottom:867.060000px;}
.y31{bottom:867.780000px;}
.y71{bottom:870.120000px;}
.y5b{bottom:882.009360px;}
.yc{bottom:886.856400px;}
.y7d{bottom:887.940000px;}
.y30{bottom:888.660000px;}
.y72{bottom:894.960000px;}
.y5a{bottom:903.603600px;}
.yb{bottom:907.009920px;}
.y7c{bottom:908.820000px;}
.y2e{bottom:909.540000px;}
.y59{bottom:925.380000px;}
.y7b{bottom:929.700000px;}
.y6f{bottom:931.320000px;}
.y7a{bottom:931.883040px;}
.ya{bottom:939.053520px;}
.y2d{bottom:950.580000px;}
.y70{bottom:955.980000px;}
.y9{bottom:959.207040px;}
.y79{bottom:965.549520px;}
.y2c{bottom:971.460000px;}
.y78{bottom:987.325920px;}
.y8{bottom:991.432800px;}
.y2b{bottom:992.340000px;}
.y77{bottom:1008.920160px;}
.y7{bottom:1011.586320px;}
.y29{bottom:1013.220000px;}
.y76{bottom:1030.696560px;}
.y6{bottom:1031.574240px;}
.y28{bottom:1052.472960px;}
.y5{bottom:1063.800000px;}
.y27{bottom:1074.249360px;}
.y4{bottom:1083.953520px;}
.y26{bottom:1095.843600px;}
.y3{bottom:1117.620000px;}
.y2{bottom:1139.396400px;}
.h5{height:20.160000px;}
.h4{height:20.161500px;}
.h6{height:40.320000px;}
.h2{height:44.149219px;}
.h3{height:44.181562px;}
.h9{height:60.298500px;}
.h8{height:60.300000px;}
.h7{height:60.480000px;}
.ha{height:80.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:137.160000px;}
.w3{width:222.480000px;}
.w5{width:256.680000px;}
.w6{width:294.660000px;}
.w4{width:328.860000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.x1{left:108.000000px;}
.x4{left:246.600000px;}
.x6{left:254.340000px;}
.x5{left:469.800000px;}
.x7{left:504.000000px;}
.x8{left:511.740000px;}
.x2{left:668.804400px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls27{letter-spacing:-7.713280pt;}
.ls1b{letter-spacing:-7.360000pt;}
.ls22{letter-spacing:-7.065600pt;}
.ls28{letter-spacing:-6.830080pt;}
.ls1c{letter-spacing:-6.241280pt;}
.ls17{letter-spacing:-4.357120pt;}
.ls2a{letter-spacing:-3.356160pt;}
.ls2b{letter-spacing:-2.414080pt;}
.lsf{letter-spacing:-2.355200pt;}
.lse{letter-spacing:-2.296320pt;}
.ls2d{letter-spacing:-2.237440pt;}
.ls1f{letter-spacing:-2.119680pt;}
.ls25{letter-spacing:-2.001920pt;}
.ls11{letter-spacing:-1.589760pt;}
.ls1d{letter-spacing:-1.413120pt;}
.ls14{letter-spacing:-1.059840pt;}
.ls12{letter-spacing:-1.000960pt;}
.ls29{letter-spacing:-0.942080pt;}
.ls13{letter-spacing:-0.883200pt;}
.lsc{letter-spacing:-0.824320pt;}
.ls26{letter-spacing:-0.765440pt;}
.ls20{letter-spacing:-0.706560pt;}
.ls24{letter-spacing:-0.647680pt;}
.ls16{letter-spacing:-0.588800pt;}
.ls21{letter-spacing:-0.529920pt;}
.ls7{letter-spacing:-0.471040pt;}
.ls9{letter-spacing:-0.412160pt;}
.ls6{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.294400pt;}
.lsa{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.117760pt;}
.ls5{letter-spacing:-0.058880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.058880pt;}
.ls1e{letter-spacing:0.117760pt;}
.ls18{letter-spacing:0.156160pt;}
.ls0{letter-spacing:0.176640pt;}
.ls1{letter-spacing:0.182528pt;}
.ls2c{letter-spacing:0.194304pt;}
.ls23{letter-spacing:0.200192pt;}
.lsb{letter-spacing:0.235520pt;}
.ls19{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.353280pt;}
.ls2{letter-spacing:1.236480pt;}
.ls3{letter-spacing:751.603200pt;}
.ws3c{word-spacing:-12.011520pt;}
.ws3b{word-spacing:-11.952640pt;}
.ws2{word-spacing:-11.658240pt;}
.ws21{word-spacing:-11.599360pt;}
.ws32{word-spacing:-11.540480pt;}
.ws22{word-spacing:-11.481600pt;}
.wsc{word-spacing:-11.422720pt;}
.ws3{word-spacing:-11.363840pt;}
.ws1{word-spacing:-11.304960pt;}
.ws8{word-spacing:-11.246080pt;}
.ws5{word-spacing:-11.128320pt;}
.ws6{word-spacing:-11.069440pt;}
.ws0{word-spacing:-11.010560pt;}
.ws4{word-spacing:-10.951680pt;}
.ws44{word-spacing:-10.892800pt;}
.ws25{word-spacing:-10.833920pt;}
.ws40{word-spacing:-10.775040pt;}
.ws2f{word-spacing:-10.716160pt;}
.ws31{word-spacing:-10.598400pt;}
.wsa{word-spacing:-10.480640pt;}
.ws26{word-spacing:-10.362880pt;}
.wsb{word-spacing:-10.304000pt;}
.ws27{word-spacing:-9.950720pt;}
.ws9{word-spacing:-9.774080pt;}
.ws30{word-spacing:-9.361920pt;}
.ws24{word-spacing:-9.244160pt;}
.ws43{word-spacing:-9.126400pt;}
.ws7{word-spacing:-9.008640pt;}
.ws3f{word-spacing:-8.949760pt;}
.ws3e{word-spacing:-8.007680pt;}
.wsd{word-spacing:-7.006720pt;}
.ws41{word-spacing:-6.670080pt;}
.ws23{word-spacing:-5.122560pt;}
.ws34{word-spacing:-4.533760pt;}
.ws28{word-spacing:-4.298240pt;}
.ws20{word-spacing:-4.003840pt;}
.ws1d{word-spacing:-0.765440pt;}
.ws46{word-spacing:-0.647680pt;}
.ws17{word-spacing:-0.412160pt;}
.ws29{word-spacing:-0.353280pt;}
.ws1b{word-spacing:-0.294400pt;}
.ws14{word-spacing:-0.235520pt;}
.ws11{word-spacing:-0.176640pt;}
.ws12{word-spacing:-0.117760pt;}
.ws1c{word-spacing:-0.058880pt;}
.wse{word-spacing:0.000000pt;}
.wsf{word-spacing:0.058880pt;}
.ws3d{word-spacing:0.117760pt;}
.ws16{word-spacing:0.235520pt;}
.ws18{word-spacing:0.294400pt;}
.ws1e{word-spacing:0.353280pt;}
.ws13{word-spacing:0.412160pt;}
.ws10{word-spacing:0.471040pt;}
.ws1a{word-spacing:0.529920pt;}
.ws2e{word-spacing:0.588800pt;}
.ws39{word-spacing:0.647680pt;}
.ws2d{word-spacing:0.706560pt;}
.ws1f{word-spacing:0.765440pt;}
.ws2c{word-spacing:0.883200pt;}
.ws45{word-spacing:0.942080pt;}
.ws15{word-spacing:1.000960pt;}
.ws35{word-spacing:1.059840pt;}
.ws36{word-spacing:1.177600pt;}
.ws2b{word-spacing:1.413120pt;}
.ws3a{word-spacing:1.589760pt;}
.ws38{word-spacing:2.001920pt;}
.ws37{word-spacing:2.355200pt;}
.ws19{word-spacing:2.472960pt;}
.ws42{word-spacing:3.591680pt;}
.ws33{word-spacing:4.298240pt;}
.ws2a{word-spacing:6.417920pt;}
._a{margin-left:-9.161728pt;}
._9{margin-left:-7.324672pt;}
._f{margin-left:-6.423808pt;}
._5{margin-left:-4.928256pt;}
._7{margin-left:-3.738880pt;}
._4{margin-left:-2.313984pt;}
._2{margin-left:-1.148160pt;}
._3{width:1.053952pt;}
._6{width:2.308096pt;}
._8{width:3.497472pt;}
._b{width:4.751616pt;}
._e{width:5.835008pt;}
._c{width:7.036160pt;}
._d{width:8.105216pt;}
._1{width:1109.299200pt;}
._0{width:1191.260160pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:4.160000pt;}
.y81{bottom:22.079867pt;}
.y2f{bottom:22.080000pt;}
.y4b{bottom:39.840000pt;}
.y48{bottom:40.000000pt;}
.y1{bottom:51.360000pt;}
.y94{bottom:57.920000pt;}
.y9f{bottom:107.523200pt;}
.y9e{bottom:126.880000pt;}
.y9d{bottom:149.280000pt;}
.y9c{bottom:167.840000pt;}
.y58{bottom:169.618560pt;}
.y9b{bottom:186.400000pt;}
.y57{bottom:199.691520pt;}
.y98{bottom:204.960000pt;}
.y56{bottom:218.886400pt;}
.y9a{bottom:227.045760pt;}
.y25{bottom:234.962560pt;}
.y55{bottom:238.243200pt;}
.y99{bottom:244.960000pt;}
.y54{bottom:257.600000pt;}
.y24{bottom:263.445760pt;}
.y93{bottom:277.280000pt;}
.y51{bottom:280.000000pt;}
.y97{bottom:281.451520pt;}
.y53{bottom:284.165760pt;}
.y23{bottom:293.518720pt;}
.y96{bottom:299.365760pt;}
.y52{bottom:302.080000pt;}
.y22{bottom:312.713600pt;}
.y95{bottom:317.280000pt;}
.y21{bottom:332.070400pt;}
.y4f{bottom:334.400000pt;}
.y91{bottom:349.600000pt;}
.y20{bottom:351.427200pt;}
.y50{bottom:356.480000pt;}
.y92{bottom:371.680000pt;}
.y1f{bottom:381.352960pt;}
.y4d{bottom:388.800000pt;}
.y1e{bottom:400.709760pt;}
.y90{bottom:404.000000pt;}
.y4e{bottom:410.880000pt;}
.y8d{bottom:422.560000pt;}
.y6e{bottom:423.680640pt;}
.y8f{bottom:426.725760pt;}
.y1d{bottom:430.782720pt;}
.y4a{bottom:443.200000pt;}
.y8e{bottom:444.640000pt;}
.y1c{bottom:449.977600pt;}
.y6d{bottom:453.606400pt;}
.y4c{bottom:465.120000pt;}
.y6c{bottom:472.963200pt;}
.y3f{bottom:476.003840pt;}
.y8c{bottom:476.960000pt;}
.y1b{bottom:480.050560pt;}
.y6b{bottom:492.320000pt;}
.y8b{bottom:495.520000pt;}
.y47{bottom:497.440000pt;}
.y1a{bottom:499.245440pt;}
.y3e{bottom:505.929600pt;}
.y8a{bottom:514.080000pt;}
.y6a{bottom:514.720000pt;}
.y19{bottom:518.602240pt;}
.y49{bottom:519.520000pt;}
.y3d{bottom:525.286400pt;}
.y89{bottom:532.640000pt;}
.y18{bottom:537.959040pt;}
.y3c{bottom:544.643200pt;}
.y69{bottom:551.200000pt;}
.y46{bottom:551.840000pt;}
.y17{bottom:557.315840pt;}
.y3b{bottom:564.000000pt;}
.y88{bottom:567.367040pt;}
.y68{bottom:569.760000pt;}
.y45{bottom:570.400000pt;}
.y16{bottom:576.510720pt;}
.y3a{bottom:586.400000pt;}
.y87{bottom:586.723840pt;}
.y67{bottom:588.320000pt;}
.y44{bottom:588.960000pt;}
.y15{bottom:595.867520pt;}
.y39{bottom:604.960000pt;}
.y86{bottom:606.080640pt;}
.y14{bottom:615.224320pt;}
.y66{bottom:623.208960pt;}
.y38{bottom:623.520000pt;}
.y85{bottom:625.437440pt;}
.y43{bottom:625.440000pt;}
.y13{bottom:634.581120pt;}
.y37{bottom:642.080000pt;}
.y65{bottom:642.403840pt;}
.y12{bottom:653.776000pt;}
.y84{bottom:655.363200pt;}
.y36{bottom:660.640000pt;}
.y64{bottom:661.760640pt;}
.y42{bottom:661.920000pt;}
.y83{bottom:674.720000pt;}
.y60{bottom:676.670080pt;}
.y35{bottom:679.200000pt;}
.y63{bottom:681.117440pt;}
.y11{bottom:683.848960pt;}
.y82{bottom:697.120000pt;}
.y34{bottom:697.760000pt;}
.y41{bottom:698.400000pt;}
.y10{bottom:703.205760pt;}
.y5f{bottom:706.743040pt;}
.y75{bottom:709.610240pt;}
.y62{bottom:711.043200pt;}
.y80{bottom:715.680000pt;}
.y33{bottom:716.320000pt;}
.yf{bottom:722.400640pt;}
.y5e{bottom:725.937920pt;}
.y61{bottom:730.400000pt;}
.y40{bottom:734.880000pt;}
.y74{bottom:739.683200pt;}
.ye{bottom:741.757440pt;}
.y5d{bottom:745.294720pt;}
.y7f{bottom:752.160000pt;}
.y32{bottom:752.800000pt;}
.y73{bottom:759.040000pt;}
.y5c{bottom:764.651520pt;}
.yd{bottom:770.402560pt;}
.y7e{bottom:770.720000pt;}
.y31{bottom:771.360000pt;}
.y71{bottom:773.440000pt;}
.y5b{bottom:784.008320pt;}
.yc{bottom:788.316800pt;}
.y7d{bottom:789.280000pt;}
.y30{bottom:789.920000pt;}
.y72{bottom:795.520000pt;}
.y5a{bottom:803.203200pt;}
.yb{bottom:806.231040pt;}
.y7c{bottom:807.840000pt;}
.y2e{bottom:808.480000pt;}
.y59{bottom:822.560000pt;}
.y7b{bottom:826.400000pt;}
.y6f{bottom:827.840000pt;}
.y7a{bottom:828.340480pt;}
.ya{bottom:834.714240pt;}
.y2d{bottom:844.960000pt;}
.y70{bottom:849.760000pt;}
.y9{bottom:852.628480pt;}
.y79{bottom:858.266240pt;}
.y2c{bottom:863.520000pt;}
.y78{bottom:877.623040pt;}
.y8{bottom:881.273600pt;}
.y2b{bottom:882.080000pt;}
.y77{bottom:896.817920pt;}
.y7{bottom:899.187840pt;}
.y29{bottom:900.640000pt;}
.y76{bottom:916.174720pt;}
.y6{bottom:916.954880pt;}
.y28{bottom:935.531520pt;}
.y5{bottom:945.600000pt;}
.y27{bottom:954.888320pt;}
.y4{bottom:963.514240pt;}
.y26{bottom:974.083200pt;}
.y3{bottom:993.440000pt;}
.y2{bottom:1012.796800pt;}
.h5{height:17.920000pt;}
.h4{height:17.921333pt;}
.h6{height:35.840000pt;}
.h2{height:39.243750pt;}
.h3{height:39.272500pt;}
.h9{height:53.598667pt;}
.h8{height:53.600000pt;}
.h7{height:53.760000pt;}
.ha{height:71.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:121.920000pt;}
.w3{width:197.760000pt;}
.w5{width:228.160000pt;}
.w6{width:261.920000pt;}
.w4{width:292.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.x1{left:96.000000pt;}
.x4{left:219.200000pt;}
.x6{left:226.080000pt;}
.x5{left:417.600000pt;}
.x7{left:448.000000pt;}
.x8{left:454.880000pt;}
.x2{left:594.492800pt;}
}




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