
    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_e29d75a83342513ca2be894e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e5bdd4c98622e28210bf59e9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_778e8bfa67d44917c5880e01.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7c8c15acd7d462e04da18525.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_1d294c86da7c9cc65a44993f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_6e472916f9d43b2d06f8984f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3aad526d156e811ecd7a5025.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.681600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.681600px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-4.224000px;}
.lse{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-1.200000px;}
.ls15{letter-spacing:-0.600000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.620000px;}
.ls13{letter-spacing:1.717200px;}
.ls19{letter-spacing:1.728000px;}
.ls8{letter-spacing:1.800000px;}
.ls16{letter-spacing:2.520000px;}
.lsa{letter-spacing:4.320000px;}
.ls0{letter-spacing:4.500000px;}
.ls6{letter-spacing:6.016200px;}
.ls1a{letter-spacing:6.480000px;}
.ls14{letter-spacing:6.493800px;}
.ls12{letter-spacing:9.597600px;}
.ls4{letter-spacing:9.981600px;}
.ls9{letter-spacing:9.990000px;}
.ls11{letter-spacing:10.344600px;}
.ls18{letter-spacing:10.368000px;}
.ls3{letter-spacing:12.441600px;}
.ls5{letter-spacing:17.100000px;}
.lsc{letter-spacing:20.400000px;}
.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:-27.000000px;}
.ws14{word-spacing:-20.400000px;}
.ws13{word-spacing:-17.100000px;}
.ws5{word-spacing:-15.000000px;}
.ws28{word-spacing:-14.400000px;}
.ws4{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.000000px;}
.ws2c{word-spacing:-10.368000px;}
.wsd{word-spacing:-9.990000px;}
.ws2f{word-spacing:-6.480000px;}
.wse{word-spacing:-4.320000px;}
.ws2a{word-spacing:-2.520000px;}
.ws18{word-spacing:-2.160000px;}
.wsa{word-spacing:-1.800000px;}
.ws2e{word-spacing:-1.728000px;}
.ws23{word-spacing:-1.620000px;}
.ws9{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.192000px;}
.ws20{word-spacing:-0.060000px;}
.ws2{word-spacing:-0.048000px;}
.ws0{word-spacing:-0.041760px;}
.ws21{word-spacing:-0.034800px;}
.ws3{word-spacing:-0.027562px;}
.ws7{word-spacing:0.000000px;}
.ws12{word-spacing:0.120000px;}
.ws29{word-spacing:0.600000px;}
.ws1a{word-spacing:1.020000px;}
.wsf{word-spacing:1.200000px;}
.ws22{word-spacing:1.620000px;}
.ws17{word-spacing:2.160000px;}
.ws1b{word-spacing:2.352000px;}
.ws19{word-spacing:2.520000px;}
.ws24{word-spacing:2.880000px;}
.ws11{word-spacing:3.540000px;}
.ws1c{word-spacing:4.020000px;}
.ws2b{word-spacing:4.224000px;}
.ws1f{word-spacing:4.380000px;}
.ws8{word-spacing:4.500000px;}
.ws10{word-spacing:4.740000px;}
.ws15{word-spacing:6.000000px;}
.ws27{word-spacing:6.816000px;}
.wsc{word-spacing:9.990000px;}
.ws2d{word-spacing:10.704000px;}
.ws26{word-spacing:11.232000px;}
.wsb{word-spacing:12.420000px;}
.ws1d{word-spacing:13.620000px;}
.ws1e{word-spacing:14.520000px;}
._3{margin-left:-17.915400px;}
._13{margin-left:-15.623400px;}
._19{margin-left:-14.216088px;}
._1b{margin-left:-11.599200px;}
._b{margin-left:-10.047600px;}
._17{margin-left:-8.883600px;}
._12{margin-left:-7.726800px;}
._0{margin-left:-5.860800px;}
._4{margin-left:-4.035600px;}
._7{margin-left:-2.722896px;}
._d{margin-left:-1.092000px;}
._6{width:1.800000px;}
._e{width:3.244800px;}
._5{width:4.544400px;}
._f{width:5.567496px;}
._c{width:6.582600px;}
._16{width:7.592496px;}
._10{width:8.789400px;}
._a{width:10.006200px;}
._9{width:11.448000px;}
._8{width:12.463200px;}
._18{width:13.608000px;}
._1a{width:15.024000px;}
._11{width:16.632000px;}
._15{width:18.018000px;}
._1c{width:20.216796px;}
._14{width:21.300000px;}
._1{width:47.289600px;}
._2{width:78.454200px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.561600px;}
.fs8{font-size:34.800000px;}
.fs1{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.802900px;}
.yb8{bottom:95.828250px;}
.y3b{bottom:102.326400px;}
.y74{bottom:102.631050px;}
.y7c{bottom:102.886200px;}
.y22{bottom:103.698900px;}
.y4d{bottom:103.948050px;}
.y5d{bottom:104.738700px;}
.yb7{bottom:112.328250px;}
.y3a{bottom:120.026400px;}
.y73{bottom:120.631050px;}
.y21{bottom:121.698900px;}
.y4c{bottom:121.948050px;}
.y5c{bottom:122.738700px;}
.y7b{bottom:125.588100px;}
.yb6{bottom:131.769000px;}
.y39{bottom:137.726400px;}
.y72{bottom:138.631050px;}
.y20{bottom:139.698900px;}
.y4b{bottom:139.948050px;}
.y5b{bottom:144.990600px;}
.yb5{bottom:146.169000px;}
.y7a{bottom:148.290150px;}
.y38{bottom:155.426400px;}
.y71{bottom:156.631050px;}
.yb4{bottom:160.569000px;}
.y1f{bottom:161.950950px;}
.y4a{bottom:162.199950px;}
.y5a{bottom:162.990600px;}
.y79{bottom:166.740150px;}
.y70{bottom:174.631050px;}
.yb3{bottom:174.969000px;}
.y1e{bottom:179.950950px;}
.y49{bottom:180.199950px;}
.y59{bottom:180.990600px;}
.y37{bottom:183.520200px;}
.y78{bottom:185.190150px;}
.yb2{bottom:189.369000px;}
.y6f{bottom:192.631050px;}
.y1d{bottom:197.950950px;}
.y48{bottom:198.199950px;}
.y36{bottom:198.520200px;}
.y58{bottom:198.990600px;}
.yb1{bottom:203.769000px;}
.y6e{bottom:210.631050px;}
.y35{bottom:213.520200px;}
.y1c{bottom:215.950950px;}
.y57{bottom:216.990600px;}
.yb0{bottom:218.169000px;}
.y47{bottom:220.452000px;}
.y84{bottom:225.325350px;}
.y34{bottom:228.520200px;}
.y6d{bottom:228.631050px;}
.yaf{bottom:232.569000px;}
.y1b{bottom:233.950950px;}
.y56{bottom:234.990600px;}
.y46{bottom:238.452000px;}
.y83{bottom:240.325350px;}
.y33{bottom:243.520200px;}
.y6c{bottom:246.631050px;}
.yae{bottom:247.119000px;}
.y1a{bottom:251.950950px;}
.y55{bottom:252.990600px;}
.y82{bottom:255.325350px;}
.y45{bottom:256.452000px;}
.y32{bottom:258.520200px;}
.yad{bottom:261.669000px;}
.y6b{bottom:264.631050px;}
.y19{bottom:269.950950px;}
.y81{bottom:270.325350px;}
.y54{bottom:275.242650px;}
.yac{bottom:276.219000px;}
.y80{bottom:286.825350px;}
.y6a{bottom:286.883100px;}
.y18{bottom:287.950950px;}
.yab{bottom:290.769000px;}
.y53{bottom:293.242650px;}
.y7f{bottom:301.825350px;}
.y44{bottom:304.069500px;}
.y69{bottom:304.883100px;}
.yaa{bottom:305.319000px;}
.y17{bottom:305.950950px;}
.y52{bottom:315.494550px;}
.y7e{bottom:316.825350px;}
.y43{bottom:319.069500px;}
.ya9{bottom:319.869000px;}
.y68{bottom:322.883100px;}
.y16{bottom:323.950950px;}
.y7d{bottom:331.825350px;}
.y51{bottom:333.494550px;}
.ya8{bottom:334.419000px;}
.y67{bottom:340.883100px;}
.y15{bottom:341.950950px;}
.ya7{bottom:348.969000px;}
.y50{bottom:351.494550px;}
.y66{bottom:358.883100px;}
.ya6{bottom:363.519000px;}
.y14{bottom:372.706800px;}
.y4f{bottom:373.746600px;}
.y65{bottom:376.883100px;}
.ya5{bottom:378.069000px;}
.ya4{bottom:392.619000px;}
.y64{bottom:394.883100px;}
.y4e{bottom:404.502450px;}
.ya3{bottom:407.169000px;}
.y13{bottom:411.966600px;}
.y63{bottom:412.883100px;}
.ya2{bottom:421.719000px;}
.y62{bottom:430.883100px;}
.ya1{bottom:436.269000px;}
.y12{bottom:444.966600px;}
.ya0{bottom:450.819000px;}
.y61{bottom:453.135000px;}
.y5f{bottom:455.014350px;}
.y11{bottom:464.466600px;}
.y9f{bottom:465.369000px;}
.y5e{bottom:470.014350px;}
.y60{bottom:471.135000px;}
.y9e{bottom:479.919000px;}
.y10{bottom:483.966600px;}
.y9d{bottom:494.469000px;}
.yf{bottom:503.466750px;}
.y77{bottom:505.919850px;}
.y9c{bottom:509.019000px;}
.y76{bottom:520.919850px;}
.y9b{bottom:523.569000px;}
.y75{bottom:535.919850px;}
.y9a{bottom:538.119000px;}
.y99{bottom:552.669000px;}
.y98{bottom:567.219000px;}
.ye{bottom:578.250750px;}
.y97{bottom:581.769000px;}
.y96{bottom:596.319000px;}
.yd{bottom:599.525700px;}
.y95{bottom:610.869000px;}
.yc{bottom:620.800500px;}
.y94{bottom:625.419000px;}
.y93{bottom:639.969000px;}
.yb{bottom:642.075300px;}
.y92{bottom:654.519000px;}
.ya{bottom:659.429850px;}
.y9{bottom:673.685700px;}
.y91{bottom:677.572950px;}
.y8{bottom:691.861950px;}
.y90{bottom:707.728800px;}
.y42{bottom:711.248400px;}
.y7{bottom:718.960500px;}
.y8f{bottom:725.128800px;}
.y41{bottom:728.948400px;}
.y6{bottom:737.612550px;}
.y40{bottom:746.648400px;}
.y8e{bottom:746.780850px;}
.y3f{bottom:764.348400px;}
.y5{bottom:764.612550px;}
.y31{bottom:768.600450px;}
.y8d{bottom:776.936700px;}
.y3e{bottom:782.048400px;}
.y30{bottom:786.300450px;}
.y4{bottom:791.612550px;}
.y8c{bottom:794.336550px;}
.y3d{bottom:799.748400px;}
.y2f{bottom:804.000300px;}
.y8b{bottom:815.988600px;}
.y3c{bottom:817.448400px;}
.y2e{bottom:821.700300px;}
.y2d{bottom:839.400450px;}
.y3{bottom:842.612550px;}
.y8a{bottom:846.144450px;}
.y2c{bottom:857.100450px;}
.y2{bottom:864.212550px;}
.y89{bottom:867.796350px;}
.y2b{bottom:874.800450px;}
.y88{bottom:885.196500px;}
.y2a{bottom:892.500300px;}
.y87{bottom:906.848400px;}
.y29{bottom:910.200300px;}
.y25{bottom:920.042100px;}
.y28{bottom:927.900450px;}
.y86{bottom:928.500300px;}
.y24{bottom:942.542100px;}
.y27{bottom:945.600450px;}
.y85{bottom:945.900450px;}
.y26{bottom:963.300450px;}
.y23{bottom:963.542100px;}
.h6{height:26.014416px;}
.h8{height:26.015016px;}
.h5{height:33.328125px;}
.hf{height:35.411133px;}
.h7{height:41.696016px;}
.he{height:42.117188px;}
.ha{height:47.381836px;}
.h9{height:47.961914px;}
.h2{height:49.992188px;}
.hc{height:52.646484px;}
.hd{height:53.291016px;}
.h3{height:63.175781px;}
.hb{height:63.949219px;}
.h4{height:79.936523px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:68.031450px;}
.x13{left:93.543300px;}
.x2{left:102.047250px;}
.x7{left:112.200750px;}
.x10{left:127.558950px;}
.x4{left:129.820650px;}
.x3{left:132.709350px;}
.x15{left:136.062900px;}
.xe{left:153.070800px;}
.x8{left:159.627600px;}
.xb{left:196.216350px;}
.xc{left:198.686100px;}
.xd{left:223.354050px;}
.xa{left:229.008450px;}
.x14{left:247.559250px;}
.x6{left:279.038400px;}
.x16{left:297.618600px;}
.x9{left:302.596050px;}
.x11{left:318.076350px;}
.xf{left:344.750700px;}
.x5{left:347.313000px;}
.x1{left:645.803100px;}
@media print{
.v2{vertical-align:-13.939200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.939200pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-3.754667pt;}
.lse{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls13{letter-spacing:1.526400pt;}
.ls19{letter-spacing:1.536000pt;}
.ls8{letter-spacing:1.600000pt;}
.ls16{letter-spacing:2.240000pt;}
.lsa{letter-spacing:3.840000pt;}
.ls0{letter-spacing:4.000000pt;}
.ls6{letter-spacing:5.347733pt;}
.ls1a{letter-spacing:5.760000pt;}
.ls14{letter-spacing:5.772267pt;}
.ls12{letter-spacing:8.531200pt;}
.ls4{letter-spacing:8.872533pt;}
.ls9{letter-spacing:8.880000pt;}
.ls11{letter-spacing:9.195200pt;}
.ls18{letter-spacing:9.216000pt;}
.ls3{letter-spacing:11.059200pt;}
.ls5{letter-spacing:15.200000pt;}
.lsc{letter-spacing:18.133333pt;}
.ws1{word-spacing:-24.000000pt;}
.ws14{word-spacing:-18.133333pt;}
.ws13{word-spacing:-15.200000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws28{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws2c{word-spacing:-9.216000pt;}
.wsd{word-spacing:-8.880000pt;}
.ws2f{word-spacing:-5.760000pt;}
.wse{word-spacing:-3.840000pt;}
.ws2a{word-spacing:-2.240000pt;}
.ws18{word-spacing:-1.920000pt;}
.wsa{word-spacing:-1.600000pt;}
.ws2e{word-spacing:-1.536000pt;}
.ws23{word-spacing:-1.440000pt;}
.ws9{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.170667pt;}
.ws20{word-spacing:-0.053333pt;}
.ws2{word-spacing:-0.042667pt;}
.ws0{word-spacing:-0.037120pt;}
.ws21{word-spacing:-0.030933pt;}
.ws3{word-spacing:-0.024499pt;}
.ws7{word-spacing:0.000000pt;}
.ws12{word-spacing:0.106667pt;}
.ws29{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.906667pt;}
.wsf{word-spacing:1.066667pt;}
.ws22{word-spacing:1.440000pt;}
.ws17{word-spacing:1.920000pt;}
.ws1b{word-spacing:2.090667pt;}
.ws19{word-spacing:2.240000pt;}
.ws24{word-spacing:2.560000pt;}
.ws11{word-spacing:3.146667pt;}
.ws1c{word-spacing:3.573333pt;}
.ws2b{word-spacing:3.754667pt;}
.ws1f{word-spacing:3.893333pt;}
.ws8{word-spacing:4.000000pt;}
.ws10{word-spacing:4.213333pt;}
.ws15{word-spacing:5.333333pt;}
.ws27{word-spacing:6.058667pt;}
.wsc{word-spacing:8.880000pt;}
.ws2d{word-spacing:9.514667pt;}
.ws26{word-spacing:9.984000pt;}
.wsb{word-spacing:11.040000pt;}
.ws1d{word-spacing:12.106667pt;}
.ws1e{word-spacing:12.906667pt;}
._3{margin-left:-15.924800pt;}
._13{margin-left:-13.887467pt;}
._19{margin-left:-12.636523pt;}
._1b{margin-left:-10.310400pt;}
._b{margin-left:-8.931200pt;}
._17{margin-left:-7.896533pt;}
._12{margin-left:-6.868267pt;}
._0{margin-left:-5.209600pt;}
._4{margin-left:-3.587200pt;}
._7{margin-left:-2.420352pt;}
._d{margin-left:-0.970667pt;}
._6{width:1.600000pt;}
._e{width:2.884267pt;}
._5{width:4.039467pt;}
._f{width:4.948885pt;}
._c{width:5.851200pt;}
._16{width:6.748885pt;}
._10{width:7.812800pt;}
._a{width:8.894400pt;}
._9{width:10.176000pt;}
._8{width:11.078400pt;}
._18{width:12.096000pt;}
._1a{width:13.354667pt;}
._11{width:14.784000pt;}
._15{width:16.016000pt;}
._1c{width:17.970485pt;}
._14{width:18.933333pt;}
._1{width:42.035200pt;}
._2{width:69.737067pt;}
.fs4{font-size:24.499200pt;}
.fs8{font-size:30.933333pt;}
.fs1{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.158133pt;}
.yb8{bottom:85.180667pt;}
.y3b{bottom:90.956800pt;}
.y74{bottom:91.227600pt;}
.y7c{bottom:91.454400pt;}
.y22{bottom:92.176800pt;}
.y4d{bottom:92.398267pt;}
.y5d{bottom:93.101067pt;}
.yb7{bottom:99.847333pt;}
.y3a{bottom:106.690133pt;}
.y73{bottom:107.227600pt;}
.y21{bottom:108.176800pt;}
.y4c{bottom:108.398267pt;}
.y5c{bottom:109.101067pt;}
.y7b{bottom:111.633867pt;}
.yb6{bottom:117.128000pt;}
.y39{bottom:122.423467pt;}
.y72{bottom:123.227600pt;}
.y20{bottom:124.176800pt;}
.y4b{bottom:124.398267pt;}
.y5b{bottom:128.880533pt;}
.yb5{bottom:129.928000pt;}
.y7a{bottom:131.813467pt;}
.y38{bottom:138.156800pt;}
.y71{bottom:139.227600pt;}
.yb4{bottom:142.728000pt;}
.y1f{bottom:143.956400pt;}
.y4a{bottom:144.177733pt;}
.y5a{bottom:144.880533pt;}
.y79{bottom:148.213467pt;}
.y70{bottom:155.227600pt;}
.yb3{bottom:155.528000pt;}
.y1e{bottom:159.956400pt;}
.y49{bottom:160.177733pt;}
.y59{bottom:160.880533pt;}
.y37{bottom:163.129067pt;}
.y78{bottom:164.613467pt;}
.yb2{bottom:168.328000pt;}
.y6f{bottom:171.227600pt;}
.y1d{bottom:175.956400pt;}
.y48{bottom:176.177733pt;}
.y36{bottom:176.462400pt;}
.y58{bottom:176.880533pt;}
.yb1{bottom:181.128000pt;}
.y6e{bottom:187.227600pt;}
.y35{bottom:189.795733pt;}
.y1c{bottom:191.956400pt;}
.y57{bottom:192.880533pt;}
.yb0{bottom:193.928000pt;}
.y47{bottom:195.957333pt;}
.y84{bottom:200.289200pt;}
.y34{bottom:203.129067pt;}
.y6d{bottom:203.227600pt;}
.yaf{bottom:206.728000pt;}
.y1b{bottom:207.956400pt;}
.y56{bottom:208.880533pt;}
.y46{bottom:211.957333pt;}
.y83{bottom:213.622533pt;}
.y33{bottom:216.462400pt;}
.y6c{bottom:219.227600pt;}
.yae{bottom:219.661333pt;}
.y1a{bottom:223.956400pt;}
.y55{bottom:224.880533pt;}
.y82{bottom:226.955867pt;}
.y45{bottom:227.957333pt;}
.y32{bottom:229.795733pt;}
.yad{bottom:232.594667pt;}
.y6b{bottom:235.227600pt;}
.y19{bottom:239.956400pt;}
.y81{bottom:240.289200pt;}
.y54{bottom:244.660133pt;}
.yac{bottom:245.528000pt;}
.y80{bottom:254.955867pt;}
.y6a{bottom:255.007200pt;}
.y18{bottom:255.956400pt;}
.yab{bottom:258.461333pt;}
.y53{bottom:260.660133pt;}
.y7f{bottom:268.289200pt;}
.y44{bottom:270.284000pt;}
.y69{bottom:271.007200pt;}
.yaa{bottom:271.394667pt;}
.y17{bottom:271.956400pt;}
.y52{bottom:280.439600pt;}
.y7e{bottom:281.622533pt;}
.y43{bottom:283.617333pt;}
.ya9{bottom:284.328000pt;}
.y68{bottom:287.007200pt;}
.y16{bottom:287.956400pt;}
.y7d{bottom:294.955867pt;}
.y51{bottom:296.439600pt;}
.ya8{bottom:297.261333pt;}
.y67{bottom:303.007200pt;}
.y15{bottom:303.956400pt;}
.ya7{bottom:310.194667pt;}
.y50{bottom:312.439600pt;}
.y66{bottom:319.007200pt;}
.ya6{bottom:323.128000pt;}
.y14{bottom:331.294933pt;}
.y4f{bottom:332.219200pt;}
.y65{bottom:335.007200pt;}
.ya5{bottom:336.061333pt;}
.ya4{bottom:348.994667pt;}
.y64{bottom:351.007200pt;}
.y4e{bottom:359.557733pt;}
.ya3{bottom:361.928000pt;}
.y13{bottom:366.192533pt;}
.y63{bottom:367.007200pt;}
.ya2{bottom:374.861333pt;}
.y62{bottom:383.007200pt;}
.ya1{bottom:387.794667pt;}
.y12{bottom:395.525867pt;}
.ya0{bottom:400.728000pt;}
.y61{bottom:402.786667pt;}
.y5f{bottom:404.457200pt;}
.y11{bottom:412.859200pt;}
.y9f{bottom:413.661333pt;}
.y5e{bottom:417.790533pt;}
.y60{bottom:418.786667pt;}
.y9e{bottom:426.594667pt;}
.y10{bottom:430.192533pt;}
.y9d{bottom:439.528000pt;}
.yf{bottom:447.526000pt;}
.y77{bottom:449.706533pt;}
.y9c{bottom:452.461333pt;}
.y76{bottom:463.039867pt;}
.y9b{bottom:465.394667pt;}
.y75{bottom:476.373200pt;}
.y9a{bottom:478.328000pt;}
.y99{bottom:491.261333pt;}
.y98{bottom:504.194667pt;}
.ye{bottom:514.000667pt;}
.y97{bottom:517.128000pt;}
.y96{bottom:530.061333pt;}
.yd{bottom:532.911733pt;}
.y95{bottom:542.994667pt;}
.yc{bottom:551.822667pt;}
.y94{bottom:555.928000pt;}
.y93{bottom:568.861333pt;}
.yb{bottom:570.733600pt;}
.y92{bottom:581.794667pt;}
.ya{bottom:586.159867pt;}
.y9{bottom:598.831733pt;}
.y91{bottom:602.287067pt;}
.y8{bottom:614.988400pt;}
.y90{bottom:629.092267pt;}
.y42{bottom:632.220800pt;}
.y7{bottom:639.076000pt;}
.y8f{bottom:644.558933pt;}
.y41{bottom:647.954133pt;}
.y6{bottom:655.655600pt;}
.y40{bottom:663.687467pt;}
.y8e{bottom:663.805200pt;}
.y3f{bottom:679.420800pt;}
.y5{bottom:679.655600pt;}
.y31{bottom:683.200400pt;}
.y8d{bottom:690.610400pt;}
.y3e{bottom:695.154133pt;}
.y30{bottom:698.933733pt;}
.y4{bottom:703.655600pt;}
.y8c{bottom:706.076933pt;}
.y3d{bottom:710.887467pt;}
.y2f{bottom:714.666933pt;}
.y8b{bottom:725.323200pt;}
.y3c{bottom:726.620800pt;}
.y2e{bottom:730.400267pt;}
.y2d{bottom:746.133733pt;}
.y3{bottom:748.988933pt;}
.y8a{bottom:752.128400pt;}
.y2c{bottom:761.867067pt;}
.y2{bottom:768.188933pt;}
.y89{bottom:771.374533pt;}
.y2b{bottom:777.600400pt;}
.y88{bottom:786.841333pt;}
.y2a{bottom:793.333600pt;}
.y87{bottom:806.087467pt;}
.y29{bottom:809.066933pt;}
.y25{bottom:817.815200pt;}
.y28{bottom:824.800400pt;}
.y86{bottom:825.333600pt;}
.y24{bottom:837.815200pt;}
.y27{bottom:840.533733pt;}
.y85{bottom:840.800400pt;}
.y26{bottom:856.267067pt;}
.y23{bottom:856.481867pt;}
.h6{height:23.123925pt;}
.h8{height:23.124458pt;}
.h5{height:29.625000pt;}
.hf{height:31.476562pt;}
.h7{height:37.063125pt;}
.he{height:37.437500pt;}
.ha{height:42.117188pt;}
.h9{height:42.632812pt;}
.h2{height:44.437500pt;}
.hc{height:46.796875pt;}
.hd{height:47.369792pt;}
.h3{height:56.156250pt;}
.hb{height:56.843750pt;}
.h4{height:71.054688pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:60.472400pt;}
.x13{left:83.149600pt;}
.x2{left:90.708667pt;}
.x7{left:99.734000pt;}
.x10{left:113.385733pt;}
.x4{left:115.396133pt;}
.x3{left:117.963867pt;}
.x15{left:120.944800pt;}
.xe{left:136.062933pt;}
.x8{left:141.891200pt;}
.xb{left:174.414533pt;}
.xc{left:176.609867pt;}
.xd{left:198.536933pt;}
.xa{left:203.563067pt;}
.x14{left:220.052667pt;}
.x6{left:248.034133pt;}
.x16{left:264.549867pt;}
.x9{left:268.974267pt;}
.x11{left:282.734533pt;}
.xf{left:306.445067pt;}
.x5{left:308.722667pt;}
.x1{left:574.047200pt;}
}




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