
    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_e23d6d152c26200952e5fbeb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114746;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_8d64e5ca4717b28e620e5bfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068848;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_6b5734d2e9e852ef24a35765.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_2ed6976677f93811e6a58ec7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e551b1ba9409311642d37a21.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1bc8d2e52edacdd45d5fa3c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982422;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_9ba520f5b28a720cbea1992c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_cbf472e6e0ce6d83c64eb41b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_27d6c80e0f9768f2106a3117.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_175039e6216464ef18eb8f3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_08241de3899dfd628108b8ce.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1bc8d2e52edacdd45d5fa3c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.982422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c6422e3708d746704b74de20.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_157db83821d44dcb73d3f403.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.068848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c213528f933cef1cf03ea24c.woff2')format("woff");}.fff{font-family:fff;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e6e5f6e8842c13cf54be025f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.960000px;}
.ls4{letter-spacing:-19.706400px;}
.ls15{letter-spacing:-18.711000px;}
.ls7{letter-spacing:-18.144000px;}
.ls8{letter-spacing:-16.380000px;}
.lsb{letter-spacing:-15.523200px;}
.ls18{letter-spacing:-15.384600px;}
.ls9{letter-spacing:-15.170400px;}
.lsa{letter-spacing:-14.322000px;}
.ls6{letter-spacing:-9.626400px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003000px;}
.lse{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.010800px;}
.ls12{letter-spacing:0.019800px;}
.ls0{letter-spacing:0.033600px;}
.ls11{letter-spacing:0.040800px;}
.ls16{letter-spacing:0.594000px;}
.lsf{letter-spacing:0.924000px;}
.ls10{letter-spacing:1.386000px;}
.ls3{letter-spacing:1.452000px;}
.lsc{letter-spacing:2.046000px;}
.ls14{letter-spacing:5.082000px;}
.ls13{letter-spacing:5.940000px;}
.ls17{letter-spacing:7.392000px;}
.ls2{letter-spacing:8.514000px;}
.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;}
}
.wsf{word-spacing:-20.016000px;}
.ws7{word-spacing:-16.500000px;}
.wsa{word-spacing:-9.619500px;}
.wsb{word-spacing:-7.870500px;}
.wsc{word-spacing:-7.114932px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:6.436800px;}
.ws4{word-spacing:6.451200px;}
.ws6{word-spacing:17.094000px;}
.ws5{word-spacing:17.539200px;}
.wse{word-spacing:19.219200px;}
.ws8{word-spacing:19.496400px;}
.ws3{word-spacing:19.958400px;}
.ws2{word-spacing:23.486400px;}
.wsd{word-spacing:25.872000px;}
.ws0{word-spacing:26.611200px;}
._17{margin-left:-7.366200px;}
._13{margin-left:-6.336000px;}
._f{margin-left:-4.884000px;}
._b{margin-left:-3.696000px;}
._a{margin-left:-2.376000px;}
._1{margin-left:-1.254000px;}
._4{width:1.188000px;}
._2{width:2.640000px;}
._3{width:3.828000px;}
._7{width:5.082000px;}
._5{width:6.336000px;}
._c{width:7.524000px;}
._8{width:8.712000px;}
._d{width:9.834000px;}
._10{width:11.220000px;}
._0{width:12.279000px;}
._9{width:13.794000px;}
._6{width:15.114000px;}
._e{width:18.084000px;}
._16{width:20.460000px;}
._14{width:22.044000px;}
._15{width:26.664000px;}
._11{width:91.476000px;}
._12{width:199.518000px;}
.fcd{color:rgb(0,0,0);}
.fc1{color:rgb(20,29,29);}
.fc2{color:rgb(20,29,29);}
.fc3{color:rgb(238,34,43);}
.fc8{color:rgb(50,28,29);}
.fc4{color:rgb(21,29,29);}
.fca{color:rgb(21,29,29);}
.fcc{color:rgb(21,29,29);}
.fc6{color:rgb(20,30,29);}
.fc7{color:rgb(20,30,29);}
.fc0{color:rgb(35,31,32);}
.fc9{color:rgb(21,30,29);}
.fc5{color:rgb(33,28,28);}
.fcb{color:rgb(20,26,53);}
.fs6{font-size:31.482000px;}
.fs4{font-size:38.478000px;}
.fs3{font-size:46.200000px;}
.fs1{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:109.143450px;}
.y69{bottom:109.159500px;}
.y3f{bottom:109.159650px;}
.yfa{bottom:111.226500px;}
.yab{bottom:126.601200px;}
.y29{bottom:126.785700px;}
.y8d{bottom:128.938950px;}
.y68{bottom:128.959500px;}
.y3e{bottom:128.959650px;}
.yf9{bottom:131.026500px;}
.yaa{bottom:146.401200px;}
.y28{bottom:146.585700px;}
.y8c{bottom:148.738950px;}
.y67{bottom:148.759500px;}
.y3d{bottom:148.759650px;}
.yf8{bottom:150.826500px;}
.ya9{bottom:166.201200px;}
.y27{bottom:166.385700px;}
.y8b{bottom:168.538950px;}
.y66{bottom:168.559500px;}
.y3c{bottom:168.559650px;}
.yf7{bottom:170.626500px;}
.ya8{bottom:186.001200px;}
.y26{bottom:186.185700px;}
.y8a{bottom:188.338950px;}
.y9e{bottom:188.343450px;}
.yd0{bottom:188.347650px;}
.y65{bottom:188.359500px;}
.y3b{bottom:188.359650px;}
.yf6{bottom:190.426500px;}
.ya7{bottom:205.801200px;}
.y25{bottom:205.985700px;}
.y89{bottom:208.138950px;}
.y9d{bottom:208.143450px;}
.ycf{bottom:208.147650px;}
.yaf{bottom:208.159500px;}
.yf5{bottom:210.226500px;}
.ya6{bottom:225.601200px;}
.y24{bottom:225.785700px;}
.y88{bottom:227.938950px;}
.y9c{bottom:227.943450px;}
.yce{bottom:227.947650px;}
.y64{bottom:227.959500px;}
.y3a{bottom:227.959650px;}
.yf4{bottom:230.026500px;}
.y23{bottom:245.585700px;}
.y9b{bottom:247.743450px;}
.ycd{bottom:247.747650px;}
.yae{bottom:247.759500px;}
.yf3{bottom:249.826500px;}
.ya5{bottom:265.201200px;}
.y22{bottom:265.385700px;}
.y87{bottom:267.538950px;}
.ycc{bottom:267.547650px;}
.y63{bottom:267.559500px;}
.yf2{bottom:269.626500px;}
.ya4{bottom:285.001200px;}
.y21{bottom:285.185700px;}
.y86{bottom:287.338950px;}
.y9a{bottom:287.343450px;}
.ycb{bottom:287.347650px;}
.y62{bottom:287.359500px;}
.yf1{bottom:289.426500px;}
.ya3{bottom:304.801200px;}
.y20{bottom:304.985700px;}
.y85{bottom:307.138950px;}
.yca{bottom:307.147650px;}
.y61{bottom:307.159500px;}
.yf0{bottom:309.226500px;}
.ya2{bottom:324.601200px;}
.y1f{bottom:324.785700px;}
.y84{bottom:326.938950px;}
.yc9{bottom:326.947650px;}
.y60{bottom:326.959500px;}
.yef{bottom:329.026500px;}
.ya1{bottom:344.401200px;}
.y1e{bottom:344.585700px;}
.y83{bottom:346.738950px;}
.yc8{bottom:346.747650px;}
.y5f{bottom:346.759500px;}
.yee{bottom:348.826500px;}
.ya0{bottom:364.201200px;}
.y1d{bottom:364.385700px;}
.y82{bottom:366.538950px;}
.yc7{bottom:366.547650px;}
.yad{bottom:366.559500px;}
.yed{bottom:368.626500px;}
.y1c{bottom:384.185700px;}
.y81{bottom:386.338950px;}
.yc6{bottom:386.347650px;}
.y5e{bottom:386.359500px;}
.yec{bottom:388.426500px;}
.y9f{bottom:403.801200px;}
.y1b{bottom:403.985700px;}
.y80{bottom:406.138950px;}
.yc5{bottom:406.147650px;}
.y5d{bottom:406.159500px;}
.yeb{bottom:408.226500px;}
.y1a{bottom:423.785700px;}
.y7f{bottom:425.938950px;}
.yc4{bottom:425.947650px;}
.y5c{bottom:425.959500px;}
.yea{bottom:428.026500px;}
.y19{bottom:443.585700px;}
.y7e{bottom:445.738950px;}
.yc3{bottom:445.747650px;}
.y5b{bottom:445.759500px;}
.ye9{bottom:447.826500px;}
.y18{bottom:463.385700px;}
.yc2{bottom:465.547650px;}
.y5a{bottom:465.559500px;}
.ye8{bottom:467.626500px;}
.y17{bottom:483.185700px;}
.y7d{bottom:485.338950px;}
.yc1{bottom:485.347650px;}
.y59{bottom:485.359500px;}
.yac{bottom:485.359650px;}
.ye7{bottom:487.426500px;}
.y16{bottom:502.985700px;}
.y7c{bottom:505.138950px;}
.yc0{bottom:505.147650px;}
.y58{bottom:505.159500px;}
.ye6{bottom:507.226500px;}
.y15{bottom:522.785700px;}
.y7b{bottom:524.938950px;}
.ybf{bottom:524.947650px;}
.y57{bottom:524.959500px;}
.ye5{bottom:527.026500px;}
.y14{bottom:542.585700px;}
.y7a{bottom:544.738950px;}
.ybe{bottom:544.747650px;}
.y56{bottom:544.755000px;}
.ye4{bottom:546.826500px;}
.y13{bottom:562.385700px;}
.ybd{bottom:564.547650px;}
.y55{bottom:564.555000px;}
.y106{bottom:564.559500px;}
.ye3{bottom:566.626500px;}
.y12{bottom:582.185700px;}
.y79{bottom:584.338950px;}
.ybc{bottom:584.347650px;}
.y54{bottom:584.355000px;}
.y105{bottom:584.359500px;}
.ye2{bottom:586.426500px;}
.y11{bottom:601.985700px;}
.y78{bottom:604.138950px;}
.ybb{bottom:604.147650px;}
.y53{bottom:604.155000px;}
.y104{bottom:604.159500px;}
.ye1{bottom:606.226500px;}
.y10{bottom:621.785700px;}
.yba{bottom:623.947650px;}
.y52{bottom:623.955000px;}
.y103{bottom:623.959500px;}
.ye0{bottom:626.026500px;}
.yf{bottom:641.585700px;}
.yb9{bottom:643.747650px;}
.y51{bottom:643.755000px;}
.y102{bottom:643.759500px;}
.ydf{bottom:645.826500px;}
.y77{bottom:648.247950px;}
.ye{bottom:661.385700px;}
.yb8{bottom:663.547650px;}
.y50{bottom:663.555000px;}
.yde{bottom:665.626500px;}
.y76{bottom:668.047950px;}
.yd{bottom:681.185700px;}
.yb7{bottom:683.347650px;}
.y4f{bottom:683.355000px;}
.y39{bottom:683.359500px;}
.ydd{bottom:685.426500px;}
.y75{bottom:687.847950px;}
.yc{bottom:700.985700px;}
.y99{bottom:703.143450px;}
.yb6{bottom:703.147650px;}
.y4e{bottom:703.155000px;}
.y38{bottom:703.159500px;}
.ydc{bottom:705.226500px;}
.y74{bottom:707.647950px;}
.yb{bottom:720.785700px;}
.y98{bottom:722.943450px;}
.yb5{bottom:722.947650px;}
.y4d{bottom:722.955000px;}
.y37{bottom:722.959500px;}
.y73{bottom:727.447950px;}
.ya{bottom:740.585700px;}
.y97{bottom:742.743450px;}
.yb4{bottom:742.747650px;}
.y4c{bottom:742.755000px;}
.y36{bottom:742.759500px;}
.y72{bottom:747.247950px;}
.y9{bottom:760.385700px;}
.y96{bottom:762.543450px;}
.yb3{bottom:762.547650px;}
.y4b{bottom:762.555000px;}
.y35{bottom:762.559500px;}
.y8{bottom:780.185700px;}
.y71{bottom:782.343450px;}
.yb2{bottom:782.347650px;}
.y4a{bottom:782.355000px;}
.y101{bottom:782.359500px;}
.y34{bottom:782.359650px;}
.ydb{bottom:788.922000px;}
.y7{bottom:799.985700px;}
.y95{bottom:802.143450px;}
.y70{bottom:802.147650px;}
.y49{bottom:802.155000px;}
.y100{bottom:802.159500px;}
.y33{bottom:802.159650px;}
.yda{bottom:804.217500px;}
.y6{bottom:819.785700px;}
.y94{bottom:821.943450px;}
.yb1{bottom:821.947650px;}
.y48{bottom:821.955000px;}
.yff{bottom:821.959500px;}
.y32{bottom:821.959650px;}
.yd9{bottom:824.022000px;}
.y5{bottom:839.585700px;}
.y93{bottom:841.743450px;}
.y6f{bottom:841.747650px;}
.y47{bottom:841.755000px;}
.yfe{bottom:841.759500px;}
.y31{bottom:841.759650px;}
.yd8{bottom:848.322000px;}
.y4{bottom:859.385700px;}
.y92{bottom:861.543450px;}
.y6e{bottom:861.547650px;}
.y46{bottom:861.555000px;}
.yfd{bottom:861.559500px;}
.y30{bottom:861.559650px;}
.yd7{bottom:863.617500px;}
.y91{bottom:881.343450px;}
.y6d{bottom:881.347650px;}
.y45{bottom:881.355000px;}
.yfc{bottom:881.359500px;}
.y2f{bottom:881.364150px;}
.yd6{bottom:883.422000px;}
.y3{bottom:898.985850px;}
.y90{bottom:901.143450px;}
.y6c{bottom:901.147650px;}
.y44{bottom:901.155000px;}
.yfb{bottom:901.159500px;}
.y2e{bottom:901.164150px;}
.yd5{bottom:907.722000px;}
.y2{bottom:918.785700px;}
.yb0{bottom:920.947650px;}
.y43{bottom:920.955000px;}
.y2d{bottom:920.964150px;}
.yd4{bottom:927.522000px;}
.y8f{bottom:940.743450px;}
.y6b{bottom:940.747650px;}
.y42{bottom:940.755000px;}
.y2c{bottom:940.764150px;}
.yd3{bottom:942.822000px;}
.y1{bottom:958.385700px;}
.y8e{bottom:960.538500px;}
.y6a{bottom:960.547650px;}
.y41{bottom:960.555000px;}
.y2b{bottom:960.564150px;}
.yd2{bottom:967.122000px;}
.y2a{bottom:1012.803150px;}
.y40{bottom:1014.559500px;}
.y107{bottom:1113.000000px;}
.hc{height:29.399836px;}
.ha{height:29.531672px;}
.h9{height:37.520508px;}
.h3{height:44.891602px;}
.h5{height:45.858398px;}
.hb{height:47.381836px;}
.h7{height:48.713446px;}
.h6{height:48.855469px;}
.h4{height:57.911133px;}
.h8{height:58.072266px;}
.h2{height:58.620117px;}
.h1{height:65.671875px;}
.he{height:75.093750px;}
.h0{height:1080.000000px;}
.hd{height:1188.000000px;}
.w0{width:756.000000px;}
.w1{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:54.000000px;}
.x1{left:108.000000px;}
.x2{left:134.994000px;}
.x7{left:162.004500px;}
.x6{left:221.737350px;}
.x4{left:244.265550px;}
.x3{left:287.241900px;}
.x9{left:288.631650px;}
.x8{left:311.750100px;}
.xa{left:336.069150px;}
.x5{left:344.101350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.520000pt;}
.ls4{letter-spacing:-17.516800pt;}
.ls15{letter-spacing:-16.632000pt;}
.ls7{letter-spacing:-16.128000pt;}
.ls8{letter-spacing:-14.560000pt;}
.lsb{letter-spacing:-13.798400pt;}
.ls18{letter-spacing:-13.675200pt;}
.ls9{letter-spacing:-13.484800pt;}
.lsa{letter-spacing:-12.730667pt;}
.ls6{letter-spacing:-8.556800pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.002667pt;}
.lse{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.009600pt;}
.ls12{letter-spacing:0.017600pt;}
.ls0{letter-spacing:0.029867pt;}
.ls11{letter-spacing:0.036267pt;}
.ls16{letter-spacing:0.528000pt;}
.lsf{letter-spacing:0.821333pt;}
.ls10{letter-spacing:1.232000pt;}
.ls3{letter-spacing:1.290667pt;}
.lsc{letter-spacing:1.818667pt;}
.ls14{letter-spacing:4.517333pt;}
.ls13{letter-spacing:5.280000pt;}
.ls17{letter-spacing:6.570667pt;}
.ls2{letter-spacing:7.568000pt;}
.wsf{word-spacing:-17.792000pt;}
.ws7{word-spacing:-14.666667pt;}
.wsa{word-spacing:-8.550667pt;}
.wsb{word-spacing:-6.996000pt;}
.wsc{word-spacing:-6.324384pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:5.721600pt;}
.ws4{word-spacing:5.734400pt;}
.ws6{word-spacing:15.194667pt;}
.ws5{word-spacing:15.590400pt;}
.wse{word-spacing:17.083733pt;}
.ws8{word-spacing:17.330133pt;}
.ws3{word-spacing:17.740800pt;}
.ws2{word-spacing:20.876800pt;}
.wsd{word-spacing:22.997333pt;}
.ws0{word-spacing:23.654400pt;}
._17{margin-left:-6.547733pt;}
._13{margin-left:-5.632000pt;}
._f{margin-left:-4.341333pt;}
._b{margin-left:-3.285333pt;}
._a{margin-left:-2.112000pt;}
._1{margin-left:-1.114667pt;}
._4{width:1.056000pt;}
._2{width:2.346667pt;}
._3{width:3.402667pt;}
._7{width:4.517333pt;}
._5{width:5.632000pt;}
._c{width:6.688000pt;}
._8{width:7.744000pt;}
._d{width:8.741333pt;}
._10{width:9.973333pt;}
._0{width:10.914667pt;}
._9{width:12.261333pt;}
._6{width:13.434667pt;}
._e{width:16.074667pt;}
._16{width:18.186667pt;}
._14{width:19.594667pt;}
._15{width:23.701333pt;}
._11{width:81.312000pt;}
._12{width:177.349333pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:34.202667pt;}
.fs3{font-size:41.066667pt;}
.fs1{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:97.016400pt;}
.y69{bottom:97.030667pt;}
.y3f{bottom:97.030800pt;}
.yfa{bottom:98.868000pt;}
.yab{bottom:112.534400pt;}
.y29{bottom:112.698400pt;}
.y8d{bottom:114.612400pt;}
.y68{bottom:114.630667pt;}
.y3e{bottom:114.630800pt;}
.yf9{bottom:116.468000pt;}
.yaa{bottom:130.134400pt;}
.y28{bottom:130.298400pt;}
.y8c{bottom:132.212400pt;}
.y67{bottom:132.230667pt;}
.y3d{bottom:132.230800pt;}
.yf8{bottom:134.068000pt;}
.ya9{bottom:147.734400pt;}
.y27{bottom:147.898400pt;}
.y8b{bottom:149.812400pt;}
.y66{bottom:149.830667pt;}
.y3c{bottom:149.830800pt;}
.yf7{bottom:151.668000pt;}
.ya8{bottom:165.334400pt;}
.y26{bottom:165.498400pt;}
.y8a{bottom:167.412400pt;}
.y9e{bottom:167.416400pt;}
.yd0{bottom:167.420133pt;}
.y65{bottom:167.430667pt;}
.y3b{bottom:167.430800pt;}
.yf6{bottom:169.268000pt;}
.ya7{bottom:182.934400pt;}
.y25{bottom:183.098400pt;}
.y89{bottom:185.012400pt;}
.y9d{bottom:185.016400pt;}
.ycf{bottom:185.020133pt;}
.yaf{bottom:185.030667pt;}
.yf5{bottom:186.868000pt;}
.ya6{bottom:200.534400pt;}
.y24{bottom:200.698400pt;}
.y88{bottom:202.612400pt;}
.y9c{bottom:202.616400pt;}
.yce{bottom:202.620133pt;}
.y64{bottom:202.630667pt;}
.y3a{bottom:202.630800pt;}
.yf4{bottom:204.468000pt;}
.y23{bottom:218.298400pt;}
.y9b{bottom:220.216400pt;}
.ycd{bottom:220.220133pt;}
.yae{bottom:220.230667pt;}
.yf3{bottom:222.068000pt;}
.ya5{bottom:235.734400pt;}
.y22{bottom:235.898400pt;}
.y87{bottom:237.812400pt;}
.ycc{bottom:237.820133pt;}
.y63{bottom:237.830667pt;}
.yf2{bottom:239.668000pt;}
.ya4{bottom:253.334400pt;}
.y21{bottom:253.498400pt;}
.y86{bottom:255.412400pt;}
.y9a{bottom:255.416400pt;}
.ycb{bottom:255.420133pt;}
.y62{bottom:255.430667pt;}
.yf1{bottom:257.268000pt;}
.ya3{bottom:270.934400pt;}
.y20{bottom:271.098400pt;}
.y85{bottom:273.012400pt;}
.yca{bottom:273.020133pt;}
.y61{bottom:273.030667pt;}
.yf0{bottom:274.868000pt;}
.ya2{bottom:288.534400pt;}
.y1f{bottom:288.698400pt;}
.y84{bottom:290.612400pt;}
.yc9{bottom:290.620133pt;}
.y60{bottom:290.630667pt;}
.yef{bottom:292.468000pt;}
.ya1{bottom:306.134400pt;}
.y1e{bottom:306.298400pt;}
.y83{bottom:308.212400pt;}
.yc8{bottom:308.220133pt;}
.y5f{bottom:308.230667pt;}
.yee{bottom:310.068000pt;}
.ya0{bottom:323.734400pt;}
.y1d{bottom:323.898400pt;}
.y82{bottom:325.812400pt;}
.yc7{bottom:325.820133pt;}
.yad{bottom:325.830667pt;}
.yed{bottom:327.668000pt;}
.y1c{bottom:341.498400pt;}
.y81{bottom:343.412400pt;}
.yc6{bottom:343.420133pt;}
.y5e{bottom:343.430667pt;}
.yec{bottom:345.268000pt;}
.y9f{bottom:358.934400pt;}
.y1b{bottom:359.098400pt;}
.y80{bottom:361.012400pt;}
.yc5{bottom:361.020133pt;}
.y5d{bottom:361.030667pt;}
.yeb{bottom:362.868000pt;}
.y1a{bottom:376.698400pt;}
.y7f{bottom:378.612400pt;}
.yc4{bottom:378.620133pt;}
.y5c{bottom:378.630667pt;}
.yea{bottom:380.468000pt;}
.y19{bottom:394.298400pt;}
.y7e{bottom:396.212400pt;}
.yc3{bottom:396.220133pt;}
.y5b{bottom:396.230667pt;}
.ye9{bottom:398.068000pt;}
.y18{bottom:411.898400pt;}
.yc2{bottom:413.820133pt;}
.y5a{bottom:413.830667pt;}
.ye8{bottom:415.668000pt;}
.y17{bottom:429.498400pt;}
.y7d{bottom:431.412400pt;}
.yc1{bottom:431.420133pt;}
.y59{bottom:431.430667pt;}
.yac{bottom:431.430800pt;}
.ye7{bottom:433.268000pt;}
.y16{bottom:447.098400pt;}
.y7c{bottom:449.012400pt;}
.yc0{bottom:449.020133pt;}
.y58{bottom:449.030667pt;}
.ye6{bottom:450.868000pt;}
.y15{bottom:464.698400pt;}
.y7b{bottom:466.612400pt;}
.ybf{bottom:466.620133pt;}
.y57{bottom:466.630667pt;}
.ye5{bottom:468.468000pt;}
.y14{bottom:482.298400pt;}
.y7a{bottom:484.212400pt;}
.ybe{bottom:484.220133pt;}
.y56{bottom:484.226667pt;}
.ye4{bottom:486.068000pt;}
.y13{bottom:499.898400pt;}
.ybd{bottom:501.820133pt;}
.y55{bottom:501.826667pt;}
.y106{bottom:501.830667pt;}
.ye3{bottom:503.668000pt;}
.y12{bottom:517.498400pt;}
.y79{bottom:519.412400pt;}
.ybc{bottom:519.420133pt;}
.y54{bottom:519.426667pt;}
.y105{bottom:519.430667pt;}
.ye2{bottom:521.268000pt;}
.y11{bottom:535.098400pt;}
.y78{bottom:537.012400pt;}
.ybb{bottom:537.020133pt;}
.y53{bottom:537.026667pt;}
.y104{bottom:537.030667pt;}
.ye1{bottom:538.868000pt;}
.y10{bottom:552.698400pt;}
.yba{bottom:554.620133pt;}
.y52{bottom:554.626667pt;}
.y103{bottom:554.630667pt;}
.ye0{bottom:556.468000pt;}
.yf{bottom:570.298400pt;}
.yb9{bottom:572.220133pt;}
.y51{bottom:572.226667pt;}
.y102{bottom:572.230667pt;}
.ydf{bottom:574.068000pt;}
.y77{bottom:576.220400pt;}
.ye{bottom:587.898400pt;}
.yb8{bottom:589.820133pt;}
.y50{bottom:589.826667pt;}
.yde{bottom:591.668000pt;}
.y76{bottom:593.820400pt;}
.yd{bottom:605.498400pt;}
.yb7{bottom:607.420133pt;}
.y4f{bottom:607.426667pt;}
.y39{bottom:607.430667pt;}
.ydd{bottom:609.268000pt;}
.y75{bottom:611.420400pt;}
.yc{bottom:623.098400pt;}
.y99{bottom:625.016400pt;}
.yb6{bottom:625.020133pt;}
.y4e{bottom:625.026667pt;}
.y38{bottom:625.030667pt;}
.ydc{bottom:626.868000pt;}
.y74{bottom:629.020400pt;}
.yb{bottom:640.698400pt;}
.y98{bottom:642.616400pt;}
.yb5{bottom:642.620133pt;}
.y4d{bottom:642.626667pt;}
.y37{bottom:642.630667pt;}
.y73{bottom:646.620400pt;}
.ya{bottom:658.298400pt;}
.y97{bottom:660.216400pt;}
.yb4{bottom:660.220133pt;}
.y4c{bottom:660.226667pt;}
.y36{bottom:660.230667pt;}
.y72{bottom:664.220400pt;}
.y9{bottom:675.898400pt;}
.y96{bottom:677.816400pt;}
.yb3{bottom:677.820133pt;}
.y4b{bottom:677.826667pt;}
.y35{bottom:677.830667pt;}
.y8{bottom:693.498400pt;}
.y71{bottom:695.416400pt;}
.yb2{bottom:695.420133pt;}
.y4a{bottom:695.426667pt;}
.y101{bottom:695.430667pt;}
.y34{bottom:695.430800pt;}
.ydb{bottom:701.264000pt;}
.y7{bottom:711.098400pt;}
.y95{bottom:713.016400pt;}
.y70{bottom:713.020133pt;}
.y49{bottom:713.026667pt;}
.y100{bottom:713.030667pt;}
.y33{bottom:713.030800pt;}
.yda{bottom:714.860000pt;}
.y6{bottom:728.698400pt;}
.y94{bottom:730.616400pt;}
.yb1{bottom:730.620133pt;}
.y48{bottom:730.626667pt;}
.yff{bottom:730.630667pt;}
.y32{bottom:730.630800pt;}
.yd9{bottom:732.464000pt;}
.y5{bottom:746.298400pt;}
.y93{bottom:748.216400pt;}
.y6f{bottom:748.220133pt;}
.y47{bottom:748.226667pt;}
.yfe{bottom:748.230667pt;}
.y31{bottom:748.230800pt;}
.yd8{bottom:754.064000pt;}
.y4{bottom:763.898400pt;}
.y92{bottom:765.816400pt;}
.y6e{bottom:765.820133pt;}
.y46{bottom:765.826667pt;}
.yfd{bottom:765.830667pt;}
.y30{bottom:765.830800pt;}
.yd7{bottom:767.660000pt;}
.y91{bottom:783.416400pt;}
.y6d{bottom:783.420133pt;}
.y45{bottom:783.426667pt;}
.yfc{bottom:783.430667pt;}
.y2f{bottom:783.434800pt;}
.yd6{bottom:785.264000pt;}
.y3{bottom:799.098533pt;}
.y90{bottom:801.016400pt;}
.y6c{bottom:801.020133pt;}
.y44{bottom:801.026667pt;}
.yfb{bottom:801.030667pt;}
.y2e{bottom:801.034800pt;}
.yd5{bottom:806.864000pt;}
.y2{bottom:816.698400pt;}
.yb0{bottom:818.620133pt;}
.y43{bottom:818.626667pt;}
.y2d{bottom:818.634800pt;}
.yd4{bottom:824.464000pt;}
.y8f{bottom:836.216400pt;}
.y6b{bottom:836.220133pt;}
.y42{bottom:836.226667pt;}
.y2c{bottom:836.234800pt;}
.yd3{bottom:838.064000pt;}
.y1{bottom:851.898400pt;}
.y8e{bottom:853.812000pt;}
.y6a{bottom:853.820133pt;}
.y41{bottom:853.826667pt;}
.y2b{bottom:853.834800pt;}
.yd2{bottom:859.664000pt;}
.y2a{bottom:900.269467pt;}
.y40{bottom:901.830667pt;}
.y107{bottom:989.333333pt;}
.hc{height:26.133187pt;}
.ha{height:26.250375pt;}
.h9{height:33.351562pt;}
.h3{height:39.903646pt;}
.h5{height:40.763021pt;}
.hb{height:42.117188pt;}
.h7{height:43.300841pt;}
.h6{height:43.427083pt;}
.h4{height:51.476562pt;}
.h8{height:51.619792pt;}
.h2{height:52.106771pt;}
.h1{height:58.375000pt;}
.he{height:66.750000pt;}
.h0{height:960.000000pt;}
.hd{height:1056.000000pt;}
.w0{width:672.000000pt;}
.w1{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:48.000000pt;}
.x1{left:96.000000pt;}
.x2{left:119.994667pt;}
.x7{left:144.004000pt;}
.x6{left:197.099867pt;}
.x4{left:217.124933pt;}
.x3{left:255.326133pt;}
.x9{left:256.561467pt;}
.x8{left:277.111200pt;}
.xa{left:298.728133pt;}
.x5{left:305.867867pt;}
}




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