
    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_fdafbe8b05db67fa1e5d9145.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_3cced2eee79f85e8be08c99f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_1adc10a3f0b336f49c4ebe68.woff')format("woff");}.ff3{font-family:ff3;line-height:1.011230;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_5d6cdc1ae5970c0a17bf2c7c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.102539;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_f6bc9613a38f13b242300c9d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.909180;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_3b789f985cfa0b7ac6d83742.woff')format("woff");}.ff6{font-family:ff6;line-height:1.193359;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_05d431cb16e0f32f0085f73b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.829590;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_53ee3a0a9aab8c1d368745c3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.004395;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_0e6244ecb95e4d50837a6cae.woff')format("woff");}.ff9{font-family:ff9;line-height:1.004395;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_53ee3a0a9aab8c1d368745c3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.004395;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_c0d9e5ab13f46f9a13bd638c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_07c706763e213d41c6129301.woff')format("woff");}.ffc{font-family:ffc;line-height:1.004395;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_d500daa3baed769a3e62175e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.679688;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_5ed8245475d77805f6ad46c2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.706055;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_c155e170cdc1dcbbea32dd01.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bb9caf1f97902e5131a28eab.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.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);}
.m3{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);}
.v1{vertical-align:-8.232000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.ls1{letter-spacing:-1.620000px;}
.ls0{letter-spacing:0.000000px;}
.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:-21.000000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-10.494000px;}
.ws15{word-spacing:-5.040000px;}
.wsa{word-spacing:-4.080000px;}
.ws14{word-spacing:-2.880000px;}
.wse{word-spacing:-2.520000px;}
.ws19{word-spacing:-2.304000px;}
.ws11{word-spacing:-1.008000px;}
.wsb{word-spacing:-0.780000px;}
.wsf{word-spacing:-0.420000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.840000px;}
.wsd{word-spacing:4.200000px;}
.ws9{word-spacing:4.440000px;}
.ws7{word-spacing:5.472000px;}
.ws16{word-spacing:7.704000px;}
.ws4{word-spacing:7.920000px;}
.ws10{word-spacing:8.424000px;}
.ws12{word-spacing:8.856000px;}
.ws2{word-spacing:9.648000px;}
.ws18{word-spacing:10.008000px;}
.ws13{word-spacing:11.448000px;}
.ws3{word-spacing:16.056000px;}
.ws6{word-spacing:16.776000px;}
.ws17{word-spacing:18.648000px;}
._19{margin-left:-9.763200px;}
._16{margin-left:-8.424000px;}
._e{margin-left:-6.919200px;}
._1{margin-left:-5.841000px;}
._3{margin-left:-4.608000px;}
._2{margin-left:-3.231000px;}
._14{margin-left:-2.187600px;}
._0{margin-left:-1.141800px;}
._13{width:1.209600px;}
._c{width:2.905800px;}
._d{width:4.542600px;}
._b{width:5.580000px;}
._f{width:6.840000px;}
._15{width:7.984800px;}
._4{width:9.068400px;}
._8{width:10.593000px;}
._a{width:11.602800px;}
._11{width:12.722400px;}
._17{width:13.867200px;}
._12{width:15.451200px;}
._10{width:16.560000px;}
._1d{width:19.008000px;}
._1f{width:20.030400px;}
._1b{width:21.196800px;}
._1c{width:26.496000px;}
._20{width:28.279800px;}
._1a{width:29.311800px;}
._5{width:30.894600px;}
._18{width:31.967400px;}
._6{width:37.613400px;}
._7{width:40.022400px;}
._9{width:41.197200px;}
._1e{width:85.980000px;}
.fc4{color:rgb(100,99,99);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:46.489950px;}
.y3b{bottom:56.625900px;}
.y12{bottom:59.803050px;}
.y1{bottom:60.865950px;}
.y13{bottom:62.689950px;}
.y3a{bottom:72.825900px;}
.ycd{bottom:106.298100px;}
.y4{bottom:106.299150px;}
.y78{bottom:110.376600px;}
.y60{bottom:120.384600px;}
.yec{bottom:123.657000px;}
.y39{bottom:123.928950px;}
.ycc{bottom:124.298100px;}
.ycf{bottom:128.880600px;}
.ya6{bottom:132.424950px;}
.y77{bottom:137.376600px;}
.y5f{bottom:147.384600px;}
.yeb{bottom:150.657000px;}
.ycb{bottom:150.803100px;}
.y38{bottom:150.928950px;}
.yf3{bottom:154.129200px;}
.yce{bottom:155.880600px;}
.ya5{bottom:159.424950px;}
.y76{bottom:164.376600px;}
.yca{bottom:168.803100px;}
.yea{bottom:177.657000px;}
.y37{bottom:177.928950px;}
.y5e{bottom:182.880600px;}
.yf2{bottom:185.377200px;}
.yc9{bottom:186.803100px;}
.y75{bottom:191.376600px;}
.ya4{bottom:194.920950px;}
.y11{bottom:197.985150px;}
.yc8{bottom:204.803100px;}
.y8d{bottom:208.368600px;}
.y5d{bottom:209.880600px;}
.yf1{bottom:212.377200px;}
.ye9{bottom:213.153000px;}
.y36{bottom:213.424950px;}
.y74{bottom:218.376600px;}
.ya3{bottom:221.920950px;}
.yc7{bottom:222.803100px;}
.y10{bottom:226.282650px;}
.y8c{bottom:235.368600px;}
.y5c{bottom:236.880600px;}
.yf0{bottom:239.377200px;}
.ye8{bottom:240.153000px;}
.y35{bottom:240.424950px;}
.yc6{bottom:240.803100px;}
.y73{bottom:245.376600px;}
.ya2{bottom:248.920950px;}
.yc5{bottom:258.803100px;}
.y8b{bottom:262.368600px;}
.y5b{bottom:263.880600px;}
.ye7{bottom:267.153000px;}
.y34{bottom:267.424950px;}
.yef{bottom:270.625200px;}
.y72{bottom:272.376600px;}
.ya1{bottom:275.920950px;}
.yc4{bottom:276.803100px;}
.y8a{bottom:289.368600px;}
.y5a{bottom:290.880600px;}
.ye6{bottom:294.153000px;}
.y33{bottom:294.424950px;}
.yc3{bottom:294.803100px;}
.yee{bottom:297.625200px;}
.y71{bottom:299.376600px;}
.yf{bottom:299.905650px;}
.ya0{bottom:302.920950px;}
.y89{bottom:316.368600px;}
.ye{bottom:319.705650px;}
.y32{bottom:321.424950px;}
.y59{bottom:326.376600px;}
.ye5{bottom:329.649000px;}
.y9f{bottom:329.920950px;}
.yc2{bottom:334.864650px;}
.y70{bottom:334.872600px;}
.yd{bottom:339.505650px;}
.y88{bottom:343.368600px;}
.yed{bottom:345.885000px;}
.y31{bottom:348.424950px;}
.y58{bottom:353.376600px;}
.ye4{bottom:356.649000px;}
.y9e{bottom:356.920950px;}
.yc{bottom:359.305650px;}
.yc1{bottom:361.864650px;}
.y6f{bottom:361.872600px;}
.y87{bottom:370.368600px;}
.y57{bottom:380.376600px;}
.ye3{bottom:383.649000px;}
.y30{bottom:383.920950px;}
.yc0{bottom:388.864650px;}
.y6e{bottom:388.872600px;}
.yb{bottom:391.860150px;}
.y86{bottom:397.368600px;}
.y56{bottom:407.376600px;}
.y2f{bottom:410.920950px;}
.ybf{bottom:415.864650px;}
.y6d{bottom:415.872600px;}
.ye2{bottom:419.145000px;}
.y85{bottom:424.368600px;}
.y55{bottom:434.376600px;}
.y2e{bottom:437.920950px;}
.ybe{bottom:442.864650px;}
.y6c{bottom:442.872600px;}
.ye1{bottom:446.145000px;}
.y9d{bottom:446.416950px;}
.y84{bottom:451.368600px;}
.y54{bottom:461.376600px;}
.y2d{bottom:464.920950px;}
.ybd{bottom:469.864650px;}
.y6b{bottom:469.872600px;}
.ye0{bottom:473.145000px;}
.y9c{bottom:473.416950px;}
.y83{bottom:478.368600px;}
.y2c{bottom:491.920950px;}
.ybc{bottom:496.864650px;}
.y53{bottom:496.872600px;}
.ydf{bottom:500.145000px;}
.y9b{bottom:500.416950px;}
.y82{bottom:505.368600px;}
.y2b{bottom:518.920950px;}
.ybb{bottom:523.864650px;}
.y52{bottom:523.872600px;}
.yde{bottom:527.145000px;}
.y9a{bottom:527.416950px;}
.y6a{bottom:532.368600px;}
.y81{bottom:540.864600px;}
.y2a{bottom:545.920950px;}
.yba{bottom:550.864650px;}
.y51{bottom:550.872600px;}
.ydd{bottom:554.145000px;}
.y99{bottom:554.416950px;}
.y69{bottom:559.368600px;}
.y80{bottom:567.864600px;}
.y29{bottom:572.920950px;}
.yb9{bottom:577.864650px;}
.y50{bottom:577.872600px;}
.ydc{bottom:581.145000px;}
.y98{bottom:581.416950px;}
.y68{bottom:586.368600px;}
.y7f{bottom:594.864600px;}
.y28{bottom:599.920950px;}
.yb8{bottom:604.864650px;}
.yad{bottom:604.872600px;}
.y97{bottom:608.416950px;}
.y4f{bottom:613.368600px;}
.ydb{bottom:616.641000px;}
.y7e{bottom:621.864600px;}
.yac{bottom:631.872600px;}
.y27{bottom:635.416950px;}
.yb7{bottom:640.360650px;}
.y4e{bottom:640.368600px;}
.yda{bottom:643.641000px;}
.y96{bottom:643.912950px;}
.y7d{bottom:648.864600px;}
.yab{bottom:658.872600px;}
.y26{bottom:662.416950px;}
.yb6{bottom:667.360650px;}
.y4d{bottom:667.368600px;}
.yd9{bottom:670.641000px;}
.y95{bottom:670.912950px;}
.y7c{bottom:675.864600px;}
.y25{bottom:689.416950px;}
.yb5{bottom:694.360650px;}
.y4c{bottom:694.368600px;}
.yd8{bottom:697.641000px;}
.y94{bottom:697.912950px;}
.y7b{bottom:702.864600px;}
.yb4{bottom:721.360650px;}
.y4b{bottom:721.368600px;}
.yd7{bottom:724.641000px;}
.y24{bottom:724.912950px;}
.y7a{bottom:729.864600px;}
.yb3{bottom:748.360650px;}
.y4a{bottom:748.368600px;}
.yd6{bottom:751.641000px;}
.y23{bottom:751.912950px;}
.y79{bottom:756.864600px;}
.yb2{bottom:775.360650px;}
.y67{bottom:775.368600px;}
.yd5{bottom:778.641000px;}
.y22{bottom:778.912950px;}
.y49{bottom:783.864600px;}
.yb1{bottom:802.360650px;}
.y66{bottom:802.368600px;}
.yd4{bottom:805.641000px;}
.y21{bottom:805.912950px;}
.y48{bottom:810.864600px;}
.y93{bottom:814.408950px;}
.yb0{bottom:829.360650px;}
.yaa{bottom:829.368600px;}
.yd3{bottom:832.641000px;}
.y20{bottom:832.912950px;}
.y6{bottom:833.405100px;}
.y47{bottom:837.864600px;}
.y92{bottom:841.408950px;}
.yaf{bottom:856.360650px;}
.ya9{bottom:856.368600px;}
.y5{bottom:861.702600px;}
.y46{bottom:864.864600px;}
.y1f{bottom:868.408950px;}
.yd2{bottom:882.951600px;}
.yae{bottom:883.360650px;}
.ya8{bottom:883.368600px;}
.y45{bottom:891.864600px;}
.y1e{bottom:895.408950px;}
.ya7{bottom:910.368600px;}
.yf6{bottom:914.616600px;}
.y44{bottom:918.864600px;}
.y1d{bottom:922.408950px;}
.yd1{bottom:927.360600px;}
.y91{bottom:930.904950px;}
.y43{bottom:945.864600px;}
.y1c{bottom:949.408950px;}
.ya{bottom:949.748850px;}
.yd0{bottom:954.360600px;}
.y90{bottom:957.904950px;}
.y9{bottom:971.348850px;}
.y42{bottom:972.864600px;}
.y1b{bottom:976.408950px;}
.y65{bottom:981.360600px;}
.y8f{bottom:984.904950px;}
.y41{bottom:999.864600px;}
.y1a{bottom:1003.408950px;}
.yf5{bottom:1004.112600px;}
.y8{bottom:1005.704700px;}
.y64{bottom:1008.360600px;}
.y8e{bottom:1011.904950px;}
.y40{bottom:1026.864600px;}
.yf4{bottom:1031.112600px;}
.y7{bottom:1032.704700px;}
.y63{bottom:1035.360600px;}
.y19{bottom:1038.904950px;}
.y3f{bottom:1053.864600px;}
.y62{bottom:1062.360600px;}
.y18{bottom:1065.904950px;}
.y3e{bottom:1080.864600px;}
.y61{bottom:1089.360600px;}
.y17{bottom:1092.904950px;}
.y3d{bottom:1116.360600px;}
.y16{bottom:1143.215550px;}
.y3c{bottom:1143.360600px;}
.y3{bottom:1171.698450px;}
.y2{bottom:1187.898450px;}
.y15{bottom:1204.375350px;}
.h3{height:39.049805px;}
.h10{height:41.660156px;}
.hc{height:43.183594px;}
.h9{height:43.388672px;}
.h4{height:43.798828px;}
.h8{height:46.664062px;}
.h5{height:48.178711px;}
.h2{height:49.992188px;}
.hb{height:52.558594px;}
.hf{height:54.585860px;}
.he{height:54.617660px;}
.ha{height:59.390625px;}
.h7{height:65.707031px;}
.h11{height:66.972656px;}
.hd{height:69.902766px;}
.h6{height:83.715820px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:73.338150px;}
.x4{left:74.401050px;}
.x1{left:86.527500px;}
.x7{left:106.299150px;}
.xc{left:127.559100px;}
.xf{left:131.823300px;}
.x8{left:455.455650px;}
.xd{left:492.632700px;}
.x2{left:551.814900px;}
.x6{left:620.940000px;}
.x5{left:640.080000px;}
.xb{left:653.401350px;}
.x3{left:706.047000px;}
.x9{left:793.488150px;}
.xa{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-9.328000pt;}
.ws15{word-spacing:-4.480000pt;}
.wsa{word-spacing:-3.626667pt;}
.ws14{word-spacing:-2.560000pt;}
.wse{word-spacing:-2.240000pt;}
.ws19{word-spacing:-2.048000pt;}
.ws11{word-spacing:-0.896000pt;}
.wsb{word-spacing:-0.693333pt;}
.wsf{word-spacing:-0.373333pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.746667pt;}
.wsd{word-spacing:3.733333pt;}
.ws9{word-spacing:3.946667pt;}
.ws7{word-spacing:4.864000pt;}
.ws16{word-spacing:6.848000pt;}
.ws4{word-spacing:7.040000pt;}
.ws10{word-spacing:7.488000pt;}
.ws12{word-spacing:7.872000pt;}
.ws2{word-spacing:8.576000pt;}
.ws18{word-spacing:8.896000pt;}
.ws13{word-spacing:10.176000pt;}
.ws3{word-spacing:14.272000pt;}
.ws6{word-spacing:14.912000pt;}
.ws17{word-spacing:16.576000pt;}
._19{margin-left:-8.678400pt;}
._16{margin-left:-7.488000pt;}
._e{margin-left:-6.150400pt;}
._1{margin-left:-5.192000pt;}
._3{margin-left:-4.096000pt;}
._2{margin-left:-2.872000pt;}
._14{margin-left:-1.944533pt;}
._0{margin-left:-1.014933pt;}
._13{width:1.075200pt;}
._c{width:2.582933pt;}
._d{width:4.037867pt;}
._b{width:4.960000pt;}
._f{width:6.080000pt;}
._15{width:7.097600pt;}
._4{width:8.060800pt;}
._8{width:9.416000pt;}
._a{width:10.313600pt;}
._11{width:11.308800pt;}
._17{width:12.326400pt;}
._12{width:13.734400pt;}
._10{width:14.720000pt;}
._1d{width:16.896000pt;}
._1f{width:17.804800pt;}
._1b{width:18.841600pt;}
._1c{width:23.552000pt;}
._20{width:25.137600pt;}
._1a{width:26.054933pt;}
._5{width:27.461867pt;}
._18{width:28.415467pt;}
._6{width:33.434133pt;}
._7{width:35.575467pt;}
._9{width:36.619733pt;}
._1e{width:76.426667pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:41.324400pt;}
.y3b{bottom:50.334133pt;}
.y12{bottom:53.158267pt;}
.y1{bottom:54.103067pt;}
.y13{bottom:55.724400pt;}
.y3a{bottom:64.734133pt;}
.ycd{bottom:94.487200pt;}
.y4{bottom:94.488133pt;}
.y78{bottom:98.112533pt;}
.y60{bottom:107.008533pt;}
.yec{bottom:109.917333pt;}
.y39{bottom:110.159067pt;}
.ycc{bottom:110.487200pt;}
.ycf{bottom:114.560533pt;}
.ya6{bottom:117.711067pt;}
.y77{bottom:122.112533pt;}
.y5f{bottom:131.008533pt;}
.yeb{bottom:133.917333pt;}
.ycb{bottom:134.047200pt;}
.y38{bottom:134.159067pt;}
.yf3{bottom:137.003733pt;}
.yce{bottom:138.560533pt;}
.ya5{bottom:141.711067pt;}
.y76{bottom:146.112533pt;}
.yca{bottom:150.047200pt;}
.yea{bottom:157.917333pt;}
.y37{bottom:158.159067pt;}
.y5e{bottom:162.560533pt;}
.yf2{bottom:164.779733pt;}
.yc9{bottom:166.047200pt;}
.y75{bottom:170.112533pt;}
.ya4{bottom:173.263067pt;}
.y11{bottom:175.986800pt;}
.yc8{bottom:182.047200pt;}
.y8d{bottom:185.216533pt;}
.y5d{bottom:186.560533pt;}
.yf1{bottom:188.779733pt;}
.ye9{bottom:189.469333pt;}
.y36{bottom:189.711067pt;}
.y74{bottom:194.112533pt;}
.ya3{bottom:197.263067pt;}
.yc7{bottom:198.047200pt;}
.y10{bottom:201.140133pt;}
.y8c{bottom:209.216533pt;}
.y5c{bottom:210.560533pt;}
.yf0{bottom:212.779733pt;}
.ye8{bottom:213.469333pt;}
.y35{bottom:213.711067pt;}
.yc6{bottom:214.047200pt;}
.y73{bottom:218.112533pt;}
.ya2{bottom:221.263067pt;}
.yc5{bottom:230.047200pt;}
.y8b{bottom:233.216533pt;}
.y5b{bottom:234.560533pt;}
.ye7{bottom:237.469333pt;}
.y34{bottom:237.711067pt;}
.yef{bottom:240.555733pt;}
.y72{bottom:242.112533pt;}
.ya1{bottom:245.263067pt;}
.yc4{bottom:246.047200pt;}
.y8a{bottom:257.216533pt;}
.y5a{bottom:258.560533pt;}
.ye6{bottom:261.469333pt;}
.y33{bottom:261.711067pt;}
.yc3{bottom:262.047200pt;}
.yee{bottom:264.555733pt;}
.y71{bottom:266.112533pt;}
.yf{bottom:266.582800pt;}
.ya0{bottom:269.263067pt;}
.y89{bottom:281.216533pt;}
.ye{bottom:284.182800pt;}
.y32{bottom:285.711067pt;}
.y59{bottom:290.112533pt;}
.ye5{bottom:293.021333pt;}
.y9f{bottom:293.263067pt;}
.yc2{bottom:297.657467pt;}
.y70{bottom:297.664533pt;}
.yd{bottom:301.782800pt;}
.y88{bottom:305.216533pt;}
.yed{bottom:307.453333pt;}
.y31{bottom:309.711067pt;}
.y58{bottom:314.112533pt;}
.ye4{bottom:317.021333pt;}
.y9e{bottom:317.263067pt;}
.yc{bottom:319.382800pt;}
.yc1{bottom:321.657467pt;}
.y6f{bottom:321.664533pt;}
.y87{bottom:329.216533pt;}
.y57{bottom:338.112533pt;}
.ye3{bottom:341.021333pt;}
.y30{bottom:341.263067pt;}
.yc0{bottom:345.657467pt;}
.y6e{bottom:345.664533pt;}
.yb{bottom:348.320133pt;}
.y86{bottom:353.216533pt;}
.y56{bottom:362.112533pt;}
.y2f{bottom:365.263067pt;}
.ybf{bottom:369.657467pt;}
.y6d{bottom:369.664533pt;}
.ye2{bottom:372.573333pt;}
.y85{bottom:377.216533pt;}
.y55{bottom:386.112533pt;}
.y2e{bottom:389.263067pt;}
.ybe{bottom:393.657467pt;}
.y6c{bottom:393.664533pt;}
.ye1{bottom:396.573333pt;}
.y9d{bottom:396.815067pt;}
.y84{bottom:401.216533pt;}
.y54{bottom:410.112533pt;}
.y2d{bottom:413.263067pt;}
.ybd{bottom:417.657467pt;}
.y6b{bottom:417.664533pt;}
.ye0{bottom:420.573333pt;}
.y9c{bottom:420.815067pt;}
.y83{bottom:425.216533pt;}
.y2c{bottom:437.263067pt;}
.ybc{bottom:441.657467pt;}
.y53{bottom:441.664533pt;}
.ydf{bottom:444.573333pt;}
.y9b{bottom:444.815067pt;}
.y82{bottom:449.216533pt;}
.y2b{bottom:461.263067pt;}
.ybb{bottom:465.657467pt;}
.y52{bottom:465.664533pt;}
.yde{bottom:468.573333pt;}
.y9a{bottom:468.815067pt;}
.y6a{bottom:473.216533pt;}
.y81{bottom:480.768533pt;}
.y2a{bottom:485.263067pt;}
.yba{bottom:489.657467pt;}
.y51{bottom:489.664533pt;}
.ydd{bottom:492.573333pt;}
.y99{bottom:492.815067pt;}
.y69{bottom:497.216533pt;}
.y80{bottom:504.768533pt;}
.y29{bottom:509.263067pt;}
.yb9{bottom:513.657467pt;}
.y50{bottom:513.664533pt;}
.ydc{bottom:516.573333pt;}
.y98{bottom:516.815067pt;}
.y68{bottom:521.216533pt;}
.y7f{bottom:528.768533pt;}
.y28{bottom:533.263067pt;}
.yb8{bottom:537.657467pt;}
.yad{bottom:537.664533pt;}
.y97{bottom:540.815067pt;}
.y4f{bottom:545.216533pt;}
.ydb{bottom:548.125333pt;}
.y7e{bottom:552.768533pt;}
.yac{bottom:561.664533pt;}
.y27{bottom:564.815067pt;}
.yb7{bottom:569.209467pt;}
.y4e{bottom:569.216533pt;}
.yda{bottom:572.125333pt;}
.y96{bottom:572.367067pt;}
.y7d{bottom:576.768533pt;}
.yab{bottom:585.664533pt;}
.y26{bottom:588.815067pt;}
.yb6{bottom:593.209467pt;}
.y4d{bottom:593.216533pt;}
.yd9{bottom:596.125333pt;}
.y95{bottom:596.367067pt;}
.y7c{bottom:600.768533pt;}
.y25{bottom:612.815067pt;}
.yb5{bottom:617.209467pt;}
.y4c{bottom:617.216533pt;}
.yd8{bottom:620.125333pt;}
.y94{bottom:620.367067pt;}
.y7b{bottom:624.768533pt;}
.yb4{bottom:641.209467pt;}
.y4b{bottom:641.216533pt;}
.yd7{bottom:644.125333pt;}
.y24{bottom:644.367067pt;}
.y7a{bottom:648.768533pt;}
.yb3{bottom:665.209467pt;}
.y4a{bottom:665.216533pt;}
.yd6{bottom:668.125333pt;}
.y23{bottom:668.367067pt;}
.y79{bottom:672.768533pt;}
.yb2{bottom:689.209467pt;}
.y67{bottom:689.216533pt;}
.yd5{bottom:692.125333pt;}
.y22{bottom:692.367067pt;}
.y49{bottom:696.768533pt;}
.yb1{bottom:713.209467pt;}
.y66{bottom:713.216533pt;}
.yd4{bottom:716.125333pt;}
.y21{bottom:716.367067pt;}
.y48{bottom:720.768533pt;}
.y93{bottom:723.919067pt;}
.yb0{bottom:737.209467pt;}
.yaa{bottom:737.216533pt;}
.yd3{bottom:740.125333pt;}
.y20{bottom:740.367067pt;}
.y6{bottom:740.804533pt;}
.y47{bottom:744.768533pt;}
.y92{bottom:747.919067pt;}
.yaf{bottom:761.209467pt;}
.ya9{bottom:761.216533pt;}
.y5{bottom:765.957867pt;}
.y46{bottom:768.768533pt;}
.y1f{bottom:771.919067pt;}
.yd2{bottom:784.845867pt;}
.yae{bottom:785.209467pt;}
.ya8{bottom:785.216533pt;}
.y45{bottom:792.768533pt;}
.y1e{bottom:795.919067pt;}
.ya7{bottom:809.216533pt;}
.yf6{bottom:812.992533pt;}
.y44{bottom:816.768533pt;}
.y1d{bottom:819.919067pt;}
.yd1{bottom:824.320533pt;}
.y91{bottom:827.471067pt;}
.y43{bottom:840.768533pt;}
.y1c{bottom:843.919067pt;}
.ya{bottom:844.221200pt;}
.yd0{bottom:848.320533pt;}
.y90{bottom:851.471067pt;}
.y9{bottom:863.421200pt;}
.y42{bottom:864.768533pt;}
.y1b{bottom:867.919067pt;}
.y65{bottom:872.320533pt;}
.y8f{bottom:875.471067pt;}
.y41{bottom:888.768533pt;}
.y1a{bottom:891.919067pt;}
.yf5{bottom:892.544533pt;}
.y8{bottom:893.959733pt;}
.y64{bottom:896.320533pt;}
.y8e{bottom:899.471067pt;}
.y40{bottom:912.768533pt;}
.yf4{bottom:916.544533pt;}
.y7{bottom:917.959733pt;}
.y63{bottom:920.320533pt;}
.y19{bottom:923.471067pt;}
.y3f{bottom:936.768533pt;}
.y62{bottom:944.320533pt;}
.y18{bottom:947.471067pt;}
.y3e{bottom:960.768533pt;}
.y61{bottom:968.320533pt;}
.y17{bottom:971.471067pt;}
.y3d{bottom:992.320533pt;}
.y16{bottom:1016.191600pt;}
.y3c{bottom:1016.320533pt;}
.y3{bottom:1041.509733pt;}
.y2{bottom:1055.909733pt;}
.y15{bottom:1070.555867pt;}
.h3{height:34.710938pt;}
.h10{height:37.031250pt;}
.hc{height:38.385417pt;}
.h9{height:38.567708pt;}
.h4{height:38.932292pt;}
.h8{height:41.479167pt;}
.h5{height:42.825521pt;}
.h2{height:44.437500pt;}
.hb{height:46.718750pt;}
.hf{height:48.520765pt;}
.he{height:48.549031pt;}
.ha{height:52.791667pt;}
.h7{height:58.406250pt;}
.h11{height:59.531250pt;}
.hd{height:62.135792pt;}
.h6{height:74.414062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:65.189467pt;}
.x4{left:66.134267pt;}
.x1{left:76.913333pt;}
.x7{left:94.488133pt;}
.xc{left:113.385867pt;}
.xf{left:117.176267pt;}
.x8{left:404.849467pt;}
.xd{left:437.895733pt;}
.x2{left:490.502133pt;}
.x6{left:551.946667pt;}
.x5{left:568.960000pt;}
.xb{left:580.801200pt;}
.x3{left:627.597333pt;}
.x9{left:705.322800pt;}
.xa{left:745.507200pt;}
}




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