
    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_85a8fa53fa78e5131a8dbe32.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_05149de2c60461da54420e8a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_36bdbe4b48b00d705d7194e4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.950195;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_84b1dcee47ca8ec9ea41cf59.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_7e990dd5582d599244e9174a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.855957;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;}
.md{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{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);}
.mc{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8{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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.931531px;}
.ls3{letter-spacing:0.935925px;}
.ls2{letter-spacing:1.200000px;}
.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;}
}
.ws1{word-spacing:-111.600000px;}
.ws5{word-spacing:-79.200000px;}
.ws4{word-spacing:-52.200000px;}
.ws0{word-spacing:-21.750000px;}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:1942.363948px;}
._1{margin-left:-2.660786px;}
._0{margin-left:-1.325081px;}
._8{width:1.889997px;}
._a{width:3.794989px;}
._12{width:5.103688px;}
._4{width:6.487296px;}
._3{width:7.726289px;}
._9{width:8.741741px;}
._18{width:9.797342px;}
._5{width:10.812765px;}
._6{width:11.940122px;}
._7{width:13.044547px;}
._d{width:16.040871px;}
._14{width:17.199255px;}
._15{width:19.053946px;}
._1b{width:21.078257px;}
._2{width:22.549090px;}
._19{width:24.060477px;}
._13{width:25.121741px;}
._16{width:26.762611px;}
._1a{width:28.333027px;}
._17{width:30.563527px;}
._b{width:31.710002px;}
._c{width:33.091394px;}
._f{width:879.876168px;}
._10{width:965.589671px;}
._e{width:1245.450246px;}
._11{width:1518.629621px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:67.500000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:75.000000px;}
.fs1{font-size:87.000000px;}
.fs8{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fs2{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.229483px;}
.y10{bottom:2.594965px;}
.y50{bottom:3.244464px;}
.y4{bottom:3.244503px;}
.ye{bottom:4.500000px;}
.y3{bottom:26.494503px;}
.y2{bottom:50.100004px;}
.y7f{bottom:95.316004px;}
.y7e{bottom:127.924479px;}
.y9d{bottom:133.432477px;}
.y7d{bottom:150.130478px;}
.y9c{bottom:156.958478px;}
.y7c{bottom:182.356467px;}
.y30{bottom:187.284039px;}
.y9b{bottom:189.620959px;}
.y7b{bottom:205.282468px;}
.ybb{bottom:209.395474px;}
.y2f{bottom:210.712543px;}
.y9a{bottom:213.451459px;}
.y2e{bottom:234.141043px;}
.y99{bottom:245.955025px;}
.yba{bottom:247.448994px;}
.y2d{bottom:257.569542px;}
.y7a{bottom:266.431509px;}
.y98{bottom:268.881020px;}
.yb9{bottom:270.877487px;}
.y2c{bottom:280.998044px;}
.y97{bottom:292.941022px;}
.yb8{bottom:294.305981px;}
.y65{bottom:309.716984px;}
.yb7{bottom:317.734486px;}
.y96{bottom:325.603495px;}
.y2b{bottom:325.995023px;}
.y64{bottom:332.785492px;}
.yb6{bottom:341.162985px;}
.y95{bottom:348.313494px;}
.y63{bottom:355.853989px;}
.y79{bottom:362.318988px;}
.y94{bottom:371.023496px;}
.yb5{bottom:379.366516px;}
.y62{bottom:380.065488px;}
.y78{bottom:384.524989px;}
.yb4{bottom:402.795010px;}
.y2a{bottom:403.193985px;}
.y61{bottom:412.728018px;}
.y77{bottom:416.668510px;}
.yb3{bottom:426.223515px;}
.y29{bottom:426.622478px;}
.y93{bottom:432.381014px;}
.y60{bottom:435.438017px;}
.y76{bottom:439.737007px;}
.yb2{bottom:449.652014px;}
.y28{bottom:450.050983px;}
.y5f{bottom:459.268518px;}
.y75{bottom:462.805504px;}
.y43{bottom:466.401009px;}
.y92{bottom:472.986013px;}
.yb1{bottom:473.080516px;}
.y27{bottom:473.479483px;}
.y74{bottom:487.017008px;}
.y42{bottom:489.829514px;}
.yb0{bottom:511.209011px;}
.y26{bottom:511.683014px;}
.y41{bottom:513.257996px;}
.y73{bottom:519.625491px;}
.yc{bottom:519.715516px;}
.y5e{bottom:520.619986px;}
.yaf{bottom:534.637516px;}
.y25{bottom:535.111507px;}
.y40{bottom:536.686501px;}
.y72{bottom:542.921991px;}
.yb{bottom:550.678522px;}
.yae{bottom:558.066015px;}
.y24{bottom:558.540012px;}
.y3f{bottom:560.115005px;}
.y91{bottom:568.993492px;}
.yad{bottom:581.494517px;}
.y23{bottom:581.968512px;}
.y3e{bottom:583.543499px;}
.y90{bottom:591.919490px;}
.ya{bottom:593.241005px;}
.y71{bottom:604.632019px;}
.y22{bottom:605.397011px;}
.y3d{bottom:606.972004px;}
.y8f{bottom:615.979490px;}
.y5d{bottom:616.394989px;}
.yac{bottom:619.622990px;}
.y21{bottom:628.825513px;}
.y3c{bottom:630.400509px;}
.y5c{bottom:639.463486px;}
.yab{bottom:643.051495px;}
.ycf{bottom:643.665021px;}
.y70{bottom:645.237019px;}
.y8e{bottom:648.250500px;}
.y9{bottom:648.640514px;}
.y3b{bottom:653.829002px;}
.y5b{bottom:663.674985px;}
.yaa{bottom:666.479988px;}
.y4e{bottom:666.595496px;}
.y8d{bottom:671.318996px;}
.y20{bottom:673.822492px;}
.y3a{bottom:677.257496px;}
.ya9{bottom:689.908490px;}
.yce{bottom:694.062009px;}
.y8c{bottom:694.387497px;}
.y5a{bottom:696.337498px;}
.y39{bottom:700.686001px;}
.y4d{bottom:703.081495px;}
.y8{bottom:704.040012px;}
.y59{bottom:719.047497px;}
.y38{bottom:724.114500px;}
.y8b{bottom:726.772505px;}
.ya8{bottom:727.962009px;}
.y4c{bottom:731.542494px;}
.y6f{bottom:741.190491px;}
.y58{bottom:742.878001px;}
.ycd{bottom:744.338985px;}
.y1f{bottom:745.787988px;}
.y37{bottom:747.543002px;}
.y8a{bottom:749.482504px;}
.ya7{bottom:751.390503px;}
.y7{bottom:760.664995px;}
.y1e{bottom:763.682988px;}
.ycc{bottom:767.767490px;}
.y4b{bottom:767.878507px;}
.y89{bottom:773.313005px;}
.y6e{bottom:773.575493px;}
.ya6{bottom:774.819008px;}
.y57{bottom:775.477501px;}
.ycb{bottom:791.195991px;}
.y6d{bottom:796.285498px;}
.ya5{bottom:798.247513px;}
.y56{bottom:799.003504px;}
.y4a{bottom:804.064496px;}
.y36{bottom:808.766996px;}
.yca{bottom:814.594508px;}
.y1d{bottom:817.678502px;}
.y6c{bottom:820.115999px;}
.ya4{bottom:821.676006px;}
.y88{bottom:834.814510px;}
.y1c{bottom:835.676991px;}
.yc3{bottom:839.977507px;}
.y49{bottom:840.250491px;}
.ya3{bottom:845.104500px;}
.y6b{bottom:852.694508px;}
.y55{bottom:860.638498px;}
.yc2{bottom:863.406006px;}
.yc9{bottom:864.991490px;}
.ya2{bottom:868.533005px;}
.y6a{bottom:875.620505px;}
.y48{bottom:876.886502px;}
.yc1{bottom:886.834508px;}
.y1b{bottom:890.243998px;}
.ya1{bottom:891.961504px;}
.y69{bottom:898.546506px;}
.y54{bottom:901.243498px;}
.y47{bottom:905.197503px;}
.y1a{bottom:908.138998px;}
.yc8{bottom:915.388500px;}
.ya0{bottom:915.390006px;}
.yc0{bottom:925.156497px;}
.y35{bottom:925.969500px;}
.y19{bottom:926.033998px;}
.y87{bottom:930.664501px;}
.yc7{bottom:938.787005px;}
.y46{bottom:941.758504px;}
.y18{bottom:943.928999px;}
.y34{bottom:951.881999px;}
.y86{bottom:953.732998px;}
.y68{bottom:959.620502px;}
.y17{bottom:961.823999px;}
.ybf{bottom:963.553502px;}
.y6{bottom:969.961504px;}
.y9f{bottom:976.614000px;}
.y85{bottom:976.801506px;}
.y45{bottom:977.944505px;}
.y16{bottom:979.719000px;}
.yc6{bottom:989.259002px;}
.y53{bottom:995.732998px;}
.y15{bottom:997.614000px;}
.y67{bottom:998.292000px;}
.y33{bottom:999.016500px;}
.y84{bottom:999.870003px;}
.yd{bottom:1001.580150px;}
.ybe{bottom:1002.025495px;}
.y5{bottom:1006.447502px;}
.yc5{bottom:1012.657502px;}
.y14{bottom:1015.509001px;}
.y83{bottom:1022.938502px;}
.y13{bottom:1033.403998px;}
.y52{bottom:1036.658998px;}
.y32{bottom:1038.588000px;}
.y66{bottom:1038.913502px;}
.y12{bottom:1051.298999px;}
.y82{bottom:1055.262001px;}
.ybd{bottom:1056.356998px;}
.y9e{bottom:1072.567500px;}
.y51{bottom:1077.584999px;}
.y81{bottom:1078.060498px;}
.y44{bottom:1078.860000px;}
.yc4{bottom:1079.925001px;}
.ybc{bottom:1089.993001px;}
.y31{bottom:1092.531000px;}
.y11{bottom:1096.071001px;}
.y80{bottom:1096.093500px;}
.y4f{bottom:1192.656037px;}
.yf{bottom:1194.702034px;}
.h8{height:13.288324px;}
.hf{height:18.673465px;}
.h6{height:21.000000px;}
.h9{height:33.351562px;}
.ha{height:41.074219px;}
.h2{height:41.689453px;}
.h11{height:42.861328px;}
.h7{height:49.669189px;}
.he{height:51.342773px;}
.hd{height:55.089844px;}
.hb{height:57.385254px;}
.h12{height:59.557617px;}
.h3{height:60.449707px;}
.h1{height:63.900003px;}
.h4{height:66.566895px;}
.h10{height:96.407227px;}
.hc{height:100.998047px;}
.h5{height:142.315430px;}
.h0{height:1263.000000px;}
.w4{width:21.150001px;}
.w1{width:215.174881px;}
.w3{width:327.590813px;}
.w2{width:516.154244px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:1.500000px;}
.xa{left:98.021505px;}
.xb{left:111.060001px;}
.x28{left:119.099999px;}
.x32{left:127.574999px;}
.xc{left:129.750000px;}
.x5{left:131.925001px;}
.x33{left:136.049999px;}
.x4f{left:142.649999px;}
.x1d{left:147.449999px;}
.x6{left:149.850002px;}
.x2b{left:155.099999px;}
.x29{left:156.750000px;}
.x31{left:161.400001px;}
.x2{left:167.910000px;}
.x7{left:170.250003px;}
.x2e{left:184.822502px;}
.x8{left:189.424504px;}
.xd{left:190.557005px;}
.xe{left:204.879007px;}
.x25{left:212.859007px;}
.x3c{left:221.366998px;}
.x36{left:230.343006px;}
.x9{left:265.495501px;}
.xf{left:273.446995px;}
.x10{left:287.970002px;}
.x42{left:309.922518px;}
.x2f{left:313.540498px;}
.x24{left:330.710995px;}
.x1{left:337.500000px;}
.x43{left:339.803999px;}
.x19{left:350.322006px;}
.x1a{left:359.457003px;}
.x37{left:363.541495px;}
.x46{left:366.009001px;}
.x16{left:384.710994px;}
.x21{left:399.747004px;}
.x30{left:406.615495px;}
.x18{left:435.111028px;}
.x17{left:445.201484px;}
.x4b{left:447.919517px;}
.x1e{left:449.215505px;}
.x22{left:458.791489px;}
.x23{left:460.009514px;}
.x11{left:464.593508px;}
.x12{left:471.484499px;}
.x26{left:484.346982px;}
.x3e{left:487.855512px;}
.x1b{left:520.641001px;}
.x40{left:532.571974px;}
.x34{left:541.042503px;}
.x4d{left:559.578013px;}
.x4e{left:570.640525px;}
.x1f{left:578.007083px;}
.x3a{left:584.080530px;}
.x1c{left:593.731519px;}
.x45{left:596.823014px;}
.x47{left:622.483480px;}
.x13{left:626.832005px;}
.x20{left:636.080995px;}
.x44{left:640.546442px;}
.x3b{left:643.699537px;}
.x3{left:660.722992px;}
.x4c{left:665.368496px;}
.x35{left:675.032979px;}
.x3f{left:689.909975px;}
.x3d{left:691.318496px;}
.x41{left:692.329497px;}
.x14{left:696.392979px;}
.x49{left:700.492527px;}
.x15{left:706.716019px;}
.x38{left:710.301032px;}
.x27{left:718.090505px;}
.x4a{left:722.728512px;}
.x39{left:724.994978px;}
.x4{left:728.025009px;}
.x48{left:730.009479px;}
.x2a{left:763.069478px;}
.x2c{left:795.179993px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.828027pt;}
.ls3{letter-spacing:0.831934pt;}
.ls2{letter-spacing:1.066667pt;}
.ws1{word-spacing:-99.200000pt;}
.ws5{word-spacing:-70.400000pt;}
.ws4{word-spacing:-46.400000pt;}
.ws0{word-spacing:-19.333333pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:1726.545731pt;}
._1{margin-left:-2.365143pt;}
._0{margin-left:-1.177849pt;}
._8{width:1.679997pt;}
._a{width:3.373324pt;}
._12{width:4.536612pt;}
._4{width:5.766486pt;}
._3{width:6.867812pt;}
._9{width:7.770437pt;}
._18{width:8.708748pt;}
._5{width:9.611347pt;}
._6{width:10.613442pt;}
._7{width:11.595153pt;}
._d{width:14.258552pt;}
._14{width:15.288227pt;}
._15{width:16.936841pt;}
._1b{width:18.736229pt;}
._2{width:20.043636pt;}
._19{width:21.387090pt;}
._13{width:22.330436pt;}
._16{width:23.788988pt;}
._1a{width:25.184913pt;}
._17{width:27.167580pt;}
._b{width:28.186669pt;}
._c{width:29.414573pt;}
._f{width:782.112150pt;}
._10{width:858.301930pt;}
._e{width:1107.066885pt;}
._11{width:1349.892996pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:60.000000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:66.666667pt;}
.fs1{font-size:77.333333pt;}
.fs8{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fs2{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.203985pt;}
.y10{bottom:2.306636pt;}
.y50{bottom:2.883968pt;}
.y4{bottom:2.884003pt;}
.ye{bottom:4.000000pt;}
.y3{bottom:23.550669pt;}
.y2{bottom:44.533337pt;}
.y7f{bottom:84.725337pt;}
.y7e{bottom:113.710648pt;}
.y9d{bottom:118.606646pt;}
.y7d{bottom:133.449314pt;}
.y9c{bottom:139.518648pt;}
.y7c{bottom:162.094638pt;}
.y30{bottom:166.474701pt;}
.y9b{bottom:168.551964pt;}
.y7b{bottom:182.473305pt;}
.ybb{bottom:186.129311pt;}
.y2f{bottom:187.300039pt;}
.y9a{bottom:189.734631pt;}
.y2e{bottom:208.125371pt;}
.y99{bottom:218.626689pt;}
.yba{bottom:219.954661pt;}
.y2d{bottom:228.950704pt;}
.y7a{bottom:236.828008pt;}
.y98{bottom:239.005351pt;}
.yb9{bottom:240.779989pt;}
.y2c{bottom:249.776039pt;}
.y97{bottom:260.392020pt;}
.yb8{bottom:261.605316pt;}
.y65{bottom:275.303986pt;}
.yb7{bottom:282.430654pt;}
.y96{bottom:289.425329pt;}
.y2b{bottom:289.773354pt;}
.y64{bottom:295.809326pt;}
.yb6{bottom:303.255987pt;}
.y95{bottom:309.611994pt;}
.y63{bottom:316.314657pt;}
.y79{bottom:322.061323pt;}
.y94{bottom:329.798663pt;}
.yb5{bottom:337.214681pt;}
.y62{bottom:337.835990pt;}
.y78{bottom:341.799990pt;}
.yb4{bottom:358.040009pt;}
.y2a{bottom:358.394653pt;}
.y61{bottom:366.869349pt;}
.y77{bottom:370.372009pt;}
.yb3{bottom:378.865346pt;}
.y29{bottom:379.219981pt;}
.y93{bottom:384.338679pt;}
.y60{bottom:387.056015pt;}
.y76{bottom:390.877340pt;}
.yb2{bottom:399.690679pt;}
.y28{bottom:400.045319pt;}
.y5f{bottom:408.238683pt;}
.y75{bottom:411.382670pt;}
.y43{bottom:414.578674pt;}
.y92{bottom:420.432012pt;}
.yb1{bottom:420.516014pt;}
.y27{bottom:420.870651pt;}
.y74{bottom:432.904007pt;}
.y42{bottom:435.404012pt;}
.yb0{bottom:454.408010pt;}
.y26{bottom:454.829346pt;}
.y41{bottom:456.229329pt;}
.y73{bottom:461.889325pt;}
.yc{bottom:461.969348pt;}
.y5e{bottom:462.773321pt;}
.yaf{bottom:475.233348pt;}
.y25{bottom:475.654673pt;}
.y40{bottom:477.054667pt;}
.y72{bottom:482.597326pt;}
.yb{bottom:489.492020pt;}
.yae{bottom:496.058680pt;}
.y24{bottom:496.480011pt;}
.y3f{bottom:497.880005pt;}
.y91{bottom:505.771993pt;}
.yad{bottom:516.884015pt;}
.y23{bottom:517.305344pt;}
.y3e{bottom:518.705332pt;}
.y90{bottom:526.150658pt;}
.ya{bottom:527.325338pt;}
.y71{bottom:537.450684pt;}
.y22{bottom:538.130676pt;}
.y3d{bottom:539.530670pt;}
.y8f{bottom:547.537324pt;}
.y5d{bottom:547.906657pt;}
.yac{bottom:550.775991pt;}
.y21{bottom:558.956011pt;}
.y3c{bottom:560.356008pt;}
.y5c{bottom:568.411987pt;}
.yab{bottom:571.601329pt;}
.ycf{bottom:572.146685pt;}
.y70{bottom:573.544017pt;}
.y8e{bottom:576.222666pt;}
.y9{bottom:576.569346pt;}
.y3b{bottom:581.181335pt;}
.y5b{bottom:589.933320pt;}
.yaa{bottom:592.426656pt;}
.y4e{bottom:592.529330pt;}
.y8d{bottom:596.727997pt;}
.y20{bottom:598.953326pt;}
.y3a{bottom:602.006663pt;}
.ya9{bottom:613.251991pt;}
.yce{bottom:616.944008pt;}
.y8c{bottom:617.233331pt;}
.y5a{bottom:618.966665pt;}
.y39{bottom:622.832001pt;}
.y4d{bottom:624.961329pt;}
.y8{bottom:625.813344pt;}
.y59{bottom:639.153330pt;}
.y38{bottom:643.657333pt;}
.y8b{bottom:646.020004pt;}
.ya8{bottom:647.077342pt;}
.y4c{bottom:650.259995pt;}
.y6f{bottom:658.835992pt;}
.y58{bottom:660.336001pt;}
.ycd{bottom:661.634654pt;}
.y1f{bottom:662.922656pt;}
.y37{bottom:664.482669pt;}
.y8a{bottom:666.206670pt;}
.ya7{bottom:667.902669pt;}
.y7{bottom:676.146662pt;}
.y1e{bottom:678.829323pt;}
.ycc{bottom:682.459991pt;}
.y4b{bottom:682.558673pt;}
.y89{bottom:687.389338pt;}
.y6e{bottom:687.622660pt;}
.ya6{bottom:688.728007pt;}
.y57{bottom:689.313334pt;}
.ycb{bottom:703.285325pt;}
.y6d{bottom:707.809331pt;}
.ya5{bottom:709.553345pt;}
.y56{bottom:710.225337pt;}
.y4a{bottom:714.723996pt;}
.y36{bottom:718.903997pt;}
.yca{bottom:724.084007pt;}
.y1d{bottom:726.825335pt;}
.y6c{bottom:728.991999pt;}
.ya4{bottom:730.378672pt;}
.y88{bottom:742.057343pt;}
.y1c{bottom:742.823992pt;}
.yc3{bottom:746.646673pt;}
.y49{bottom:746.889325pt;}
.ya3{bottom:751.204000pt;}
.y6b{bottom:757.950673pt;}
.y55{bottom:765.011998pt;}
.yc2{bottom:767.472005pt;}
.yc9{bottom:768.881325pt;}
.ya2{bottom:772.029338pt;}
.y6a{bottom:778.329338pt;}
.y48{bottom:779.454669pt;}
.yc1{bottom:788.297340pt;}
.y1b{bottom:791.327998pt;}
.ya1{bottom:792.854670pt;}
.y69{bottom:798.708005pt;}
.y54{bottom:801.105331pt;}
.y47{bottom:804.620003pt;}
.y1a{bottom:807.234665pt;}
.yc8{bottom:813.678666pt;}
.ya0{bottom:813.680005pt;}
.yc0{bottom:822.361331pt;}
.y35{bottom:823.084000pt;}
.y19{bottom:823.141332pt;}
.y87{bottom:827.257334pt;}
.yc7{bottom:834.477338pt;}
.y46{bottom:837.118670pt;}
.y18{bottom:839.047999pt;}
.y34{bottom:846.117332pt;}
.y86{bottom:847.762665pt;}
.y68{bottom:852.996002pt;}
.y17{bottom:854.954666pt;}
.ybf{bottom:856.492002pt;}
.y6{bottom:862.188004pt;}
.y9f{bottom:868.101334pt;}
.y85{bottom:868.268005pt;}
.y45{bottom:869.284004pt;}
.y16{bottom:870.861333pt;}
.yc6{bottom:879.341335pt;}
.y53{bottom:885.095998pt;}
.y15{bottom:886.768000pt;}
.y67{bottom:887.370667pt;}
.y33{bottom:888.014666pt;}
.y84{bottom:888.773336pt;}
.yd{bottom:890.293467pt;}
.ybe{bottom:890.689329pt;}
.y5{bottom:894.620001pt;}
.yc5{bottom:900.140002pt;}
.y14{bottom:902.674667pt;}
.y83{bottom:909.278669pt;}
.y13{bottom:918.581332pt;}
.y52{bottom:921.474665pt;}
.y32{bottom:923.189334pt;}
.y66{bottom:923.478668pt;}
.y12{bottom:934.487999pt;}
.y82{bottom:938.010667pt;}
.ybd{bottom:938.983999pt;}
.y9e{bottom:953.393333pt;}
.y51{bottom:957.853333pt;}
.y81{bottom:958.275998pt;}
.y44{bottom:958.986666pt;}
.yc4{bottom:959.933334pt;}
.ybc{bottom:968.882668pt;}
.y31{bottom:971.138667pt;}
.y11{bottom:974.285334pt;}
.y80{bottom:974.305333pt;}
.y4f{bottom:1060.138700pt;}
.yf{bottom:1061.957363pt;}
.h8{height:11.811844pt;}
.hf{height:16.598635pt;}
.h6{height:18.666667pt;}
.h9{height:29.645833pt;}
.ha{height:36.510417pt;}
.h2{height:37.057292pt;}
.h11{height:38.098958pt;}
.h7{height:44.150391pt;}
.he{height:45.638021pt;}
.hd{height:48.968750pt;}
.hb{height:51.009115pt;}
.h12{height:52.940104pt;}
.h3{height:53.733073pt;}
.h1{height:56.800003pt;}
.h4{height:59.170573pt;}
.h10{height:85.695312pt;}
.hc{height:89.776042pt;}
.h5{height:126.502604pt;}
.h0{height:1122.666667pt;}
.w4{width:18.800001pt;}
.w1{width:191.266561pt;}
.w3{width:291.191833pt;}
.w2{width:458.803773pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:1.333333pt;}
.xa{left:87.130227pt;}
.xb{left:98.720001pt;}
.x28{left:105.866666pt;}
.x32{left:113.399999pt;}
.xc{left:115.333333pt;}
.x5{left:117.266668pt;}
.x33{left:120.933332pt;}
.x4f{left:126.799999pt;}
.x1d{left:131.066665pt;}
.x6{left:133.200002pt;}
.x2b{left:137.866666pt;}
.x29{left:139.333334pt;}
.x31{left:143.466668pt;}
.x2{left:149.253334pt;}
.x7{left:151.333336pt;}
.x2e{left:164.286668pt;}
.x8{left:168.377337pt;}
.xd{left:169.384004pt;}
.xe{left:182.114673pt;}
.x25{left:189.208006pt;}
.x3c{left:196.770665pt;}
.x36{left:204.749338pt;}
.x9{left:235.996001pt;}
.xf{left:243.063995pt;}
.x10{left:255.973336pt;}
.x42{left:275.486683pt;}
.x2f{left:278.702665pt;}
.x24{left:293.965328pt;}
.x1{left:300.000000pt;}
.x43{left:302.047999pt;}
.x19{left:311.397339pt;}
.x1a{left:319.517336pt;}
.x37{left:323.147995pt;}
.x46{left:325.341334pt;}
.x16{left:341.965328pt;}
.x21{left:355.330670pt;}
.x30{left:361.435996pt;}
.x18{left:386.765358pt;}
.x17{left:395.734652pt;}
.x4b{left:398.150681pt;}
.x1e{left:399.302671pt;}
.x22{left:407.814657pt;}
.x23{left:408.897345pt;}
.x11{left:412.972007pt;}
.x12{left:419.097333pt;}
.x26{left:430.530651pt;}
.x3e{left:433.649344pt;}
.x1b{left:462.792001pt;}
.x40{left:473.397310pt;}
.x34{left:480.926669pt;}
.x4d{left:497.402678pt;}
.x4e{left:507.236022pt;}
.x1f{left:513.784074pt;}
.x3a{left:519.182693pt;}
.x1c{left:527.761350pt;}
.x45{left:530.509346pt;}
.x47{left:553.318649pt;}
.x13{left:557.184004pt;}
.x20{left:565.405329pt;}
.x44{left:569.374615pt;}
.x3b{left:572.177366pt;}
.x3{left:587.309326pt;}
.x4c{left:591.438663pt;}
.x35{left:600.029315pt;}
.x3f{left:613.253311pt;}
.x3d{left:614.505330pt;}
.x41{left:615.403997pt;}
.x14{left:619.015981pt;}
.x49{left:622.660024pt;}
.x15{left:628.192017pt;}
.x38{left:631.378695pt;}
.x27{left:638.302671pt;}
.x4a{left:642.425344pt;}
.x39{left:644.439981pt;}
.x4{left:647.133341pt;}
.x48{left:648.897315pt;}
.x2a{left:678.283981pt;}
.x2c{left:706.826660pt;}
}




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