
    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_6eb2d5772e06bc00761f65cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_65ce91c209d50138866ef159.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_ef28423f89b79146ff5fd4b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_0126886a8a65fd150353c4d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.177000;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_3ddc8bf4b7d02d2b3b8aef68.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_749bbd0212655b007238c058.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_3fe853f9800d699a3fd941bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.183000;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_449c65c4c5f8500c87a96b9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_1b16872066d2a863abc67bac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_ea8551feab480716850521d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_aa44023291976a4f0109a1d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.770000;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_a9af87deafc3e5dc013c5ba2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853000;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_d48fab95da1ea93c25a2e2de.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_df289e3f5d827730bcb93b87.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.772000;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_97d552c319dd3ac115d2828d.woff2')format("woff");}.fff{font-family:fff;line-height:0.714000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.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:-12.006000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.986000px;}
.ls19{letter-spacing:-6.240000px;}
.ls7{letter-spacing:-4.897200px;}
.lsf{letter-spacing:-0.918000px;}
.ls6{letter-spacing:-0.714000px;}
.lsb{letter-spacing:-0.486000px;}
.ls4{letter-spacing:-0.306000px;}
.ls5{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.204000px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.038400px;}
.lsa{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.546000px;}
.ls13{letter-spacing:0.714000px;}
.ls12{letter-spacing:0.798000px;}
.ls8{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.882000px;}
.ls10{letter-spacing:0.924000px;}
.lse{letter-spacing:1.092000px;}
.ls17{letter-spacing:2.743200px;}
.ls0{letter-spacing:3.240000px;}
.lsd{letter-spacing:216.342000px;}
.ls1{letter-spacing:2824.848000px;}
.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;}
}
.ws16{word-spacing:-20.706000px;}
.ws0{word-spacing:-20.604000px;}
.ws2b{word-spacing:-19.992000px;}
.ws2{word-spacing:-11.178000px;}
.ws22{word-spacing:-10.638000px;}
.ws15{word-spacing:-10.152000px;}
.ws61{word-spacing:-9.936000px;}
.ws35{word-spacing:-9.660000px;}
.ws45{word-spacing:-8.694000px;}
.ws1{word-spacing:-6.366360px;}
.ws5d{word-spacing:-2.052000px;}
.ws3e{word-spacing:-1.998000px;}
.ws42{word-spacing:-1.674000px;}
.ws62{word-spacing:-1.512000px;}
.ws53{word-spacing:-1.404000px;}
.ws69{word-spacing:-1.344000px;}
.ws68{word-spacing:-1.248000px;}
.ws28{word-spacing:-1.188000px;}
.wsa{word-spacing:-1.134000px;}
.ws6d{word-spacing:-1.104000px;}
.ws17{word-spacing:-0.816000px;}
.ws27{word-spacing:-0.756000px;}
.ws67{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.486000px;}
.ws18{word-spacing:-0.480000px;}
.ws5c{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.420000px;}
.ws3c{word-spacing:-0.324000px;}
.ws19{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.096000px;}
.ws54{word-spacing:-0.084000px;}
.ws4f{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws71{word-spacing:0.144000px;}
.ws5f{word-spacing:0.204000px;}
.ws55{word-spacing:0.252000px;}
.wsd{word-spacing:0.270000px;}
.wse{word-spacing:0.540000px;}
.ws29{word-spacing:0.594000px;}
.ws2a{word-spacing:0.648000px;}
.ws13{word-spacing:0.714000px;}
.ws6c{word-spacing:0.720000px;}
.ws1a{word-spacing:0.810000px;}
.ws20{word-spacing:0.864000px;}
.ws41{word-spacing:0.972000px;}
.ws4e{word-spacing:1.134000px;}
.ws5b{word-spacing:1.188000px;}
.ws8{word-spacing:1.350000px;}
.ws6a{word-spacing:1.392000px;}
.ws3f{word-spacing:1.458000px;}
.wsb{word-spacing:1.512000px;}
.ws4d{word-spacing:1.566000px;}
.ws6{word-spacing:1.620000px;}
.ws73{word-spacing:1.680000px;}
.ws6f{word-spacing:1.824000px;}
.ws40{word-spacing:1.836000px;}
.ws23{word-spacing:1.998000px;}
.ws9{word-spacing:2.106000px;}
.ws1c{word-spacing:2.214000px;}
.ws66{word-spacing:2.256000px;}
.ws65{word-spacing:2.352000px;}
.ws11{word-spacing:2.376000px;}
.ws58{word-spacing:2.430000px;}
.ws57{word-spacing:2.484000px;}
.ws56{word-spacing:2.592000px;}
.ws5{word-spacing:2.646000px;}
.ws46{word-spacing:2.700000px;}
.wsc{word-spacing:2.808000px;}
.ws5e{word-spacing:2.862000px;}
.ws4c{word-spacing:2.970000px;}
.ws43{word-spacing:3.024000px;}
.ws4b{word-spacing:3.132000px;}
.ws6b{word-spacing:3.168000px;}
.ws44{word-spacing:3.186000px;}
.ws50{word-spacing:3.294000px;}
.wsf{word-spacing:3.348000px;}
.ws52{word-spacing:3.888000px;}
.ws7{word-spacing:3.942000px;}
.ws64{word-spacing:3.984000px;}
.ws26{word-spacing:4.050000px;}
.ws47{word-spacing:4.266000px;}
.ws24{word-spacing:4.320000px;}
.ws25{word-spacing:4.374000px;}
.ws5a{word-spacing:4.536000px;}
.ws4a{word-spacing:4.590000px;}
.ws6e{word-spacing:4.704000px;}
.ws59{word-spacing:4.752000px;}
.ws4{word-spacing:4.860000px;}
.ws14{word-spacing:4.897200px;}
.ws1f{word-spacing:5.076000px;}
.ws51{word-spacing:5.508000px;}
.ws49{word-spacing:5.562000px;}
.ws60{word-spacing:5.616000px;}
.ws1b{word-spacing:5.778000px;}
.ws48{word-spacing:5.832000px;}
.ws10{word-spacing:5.886000px;}
.ws1e{word-spacing:6.048000px;}
.ws70{word-spacing:6.240000px;}
.ws1d{word-spacing:6.318000px;}
.ws63{word-spacing:6.336000px;}
.ws3d{word-spacing:7.236000px;}
.ws75{word-spacing:8.496000px;}
.ws74{word-spacing:8.928000px;}
.ws2f{word-spacing:145.374600px;}
.ws3b{word-spacing:147.882000px;}
.ws2c{word-spacing:148.738800px;}
.ws32{word-spacing:148.961400px;}
.ws33{word-spacing:149.221800px;}
.ws30{word-spacing:158.785200px;}
.ws3a{word-spacing:161.070000px;}
.ws2e{word-spacing:165.694200px;}
.ws37{word-spacing:167.748000px;}
.ws34{word-spacing:178.911600px;}
.ws31{word-spacing:180.423600px;}
.ws2d{word-spacing:181.675200px;}
.ws36{word-spacing:187.572000px;}
.ws38{word-spacing:269.472000px;}
.ws39{word-spacing:312.942000px;}
._8{margin-left:-13.809600px;}
._3{margin-left:-6.096000px;}
._7{margin-left:-4.933200px;}
._6{margin-left:-3.375600px;}
._4{margin-left:-2.339400px;}
._0{margin-left:-1.176000px;}
._2{width:1.171800px;}
._5{width:2.209800px;}
._1{width:3.996000px;}
._9{width:5.228928px;}
._f{width:6.458400px;}
._e{width:8.252400px;}
._c{width:23.868000px;}
._b{width:25.272000px;}
._a{width:29.592000px;}
._1f{width:38.398200px;}
._16{width:156.618000px;}
._13{width:176.442000px;}
._15{width:189.630000px;}
._18{width:196.266000px;}
._12{width:209.454000px;}
._1a{width:247.506000px;}
._19{width:270.480000px;}
._17{width:276.738000px;}
._1c{width:288.204000px;}
._14{width:295.470000px;}
._11{width:297.234000px;}
._1d{width:301.896000px;}
._1b{width:322.980000px;}
._10{width:1537.077600px;}
._d{width:1538.373600px;}
._20{width:1540.053600px;}
._1e{width:1541.061600px;}
.fc4{color:rgb(0,103,104);}
.fc3{color:rgb(0,93,145);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.y172{bottom:82.153350px;}
.y1b2{bottom:84.510600px;}
.y13f{bottom:85.907850px;}
.y107{bottom:87.104250px;}
.y74{bottom:90.502350px;}
.yd7{bottom:92.549100px;}
.y8e{bottom:92.899350px;}
.y171{bottom:98.653350px;}
.yb7{bottom:100.335450px;}
.y1b1{bottom:101.010600px;}
.y13e{bottom:103.907850px;}
.y106{bottom:105.099750px;}
.y73{bottom:108.497850px;}
.yd6{bottom:110.544600px;}
.y8d{bottom:110.894850px;}
.y170{bottom:115.153350px;}
.y1b0{bottom:117.510600px;}
.yb6{bottom:118.330950px;}
.y13d{bottom:121.936350px;}
.y105{bottom:123.095250px;}
.y72{bottom:126.493350px;}
.yd5{bottom:128.540100px;}
.y8c{bottom:128.890350px;}
.yc{bottom:129.076950px;}
.y2e{bottom:129.162450px;}
.y16f{bottom:131.653350px;}
.y1af{bottom:134.010600px;}
.yb5{bottom:136.326450px;}
.yb{bottom:139.876950px;}
.y13c{bottom:139.931850px;}
.y104{bottom:141.090750px;}
.y71{bottom:144.488850px;}
.yd4{bottom:146.535600px;}
.y8b{bottom:146.885850px;}
.y2d{bottom:147.157950px;}
.y16e{bottom:148.153350px;}
.y1ae{bottom:150.510600px;}
.ya{bottom:150.676950px;}
.yb4{bottom:154.321950px;}
.y103{bottom:159.086250px;}
.y9{bottom:161.476950px;}
.y70{bottom:162.484350px;}
.y13b{bottom:163.934850px;}
.yd3{bottom:164.531100px;}
.y16d{bottom:164.653350px;}
.y8a{bottom:164.881350px;}
.y2c{bottom:165.153450px;}
.y1ad{bottom:167.010600px;}
.yb3{bottom:172.317450px;}
.y102{bottom:177.081750px;}
.y6f{bottom:180.479850px;}
.y16c{bottom:181.153350px;}
.y13a{bottom:181.930350px;}
.y89{bottom:182.876850px;}
.y2b{bottom:183.148950px;}
.y1ac{bottom:183.510600px;}
.yd2{bottom:185.531100px;}
.yb2{bottom:193.323450px;}
.y101{bottom:195.077250px;}
.y16b{bottom:197.653350px;}
.y6e{bottom:198.475350px;}
.y8{bottom:199.276950px;}
.y139{bottom:199.925850px;}
.y1ab{bottom:200.010600px;}
.y88{bottom:200.872350px;}
.y2a{bottom:201.144450px;}
.yb1{bottom:211.318950px;}
.y7{bottom:211.876950px;}
.y100{bottom:213.072750px;}
.y16a{bottom:214.153350px;}
.y6d{bottom:216.470850px;}
.y1aa{bottom:216.510600px;}
.y138{bottom:217.921350px;}
.y87{bottom:218.867850px;}
.y29{bottom:219.139950px;}
.y6{bottom:224.476950px;}
.yb0{bottom:229.314450px;}
.y169{bottom:230.653350px;}
.yff{bottom:231.068250px;}
.y1a9{bottom:233.010600px;}
.y6c{bottom:234.466350px;}
.y137{bottom:235.916850px;}
.y86{bottom:236.863350px;}
.y5{bottom:237.076950px;}
.y28{bottom:237.135450px;}
.yd1{bottom:241.824600px;}
.y168{bottom:247.153350px;}
.yaf{bottom:247.309950px;}
.yfe{bottom:249.063750px;}
.y1a8{bottom:249.510600px;}
.y6b{bottom:252.461850px;}
.y27{bottom:255.130950px;}
.y85{bottom:257.869350px;}
.yd0{bottom:259.820100px;}
.y136{bottom:259.919850px;}
.y167{bottom:263.653350px;}
.yae{bottom:265.305450px;}
.y1a7{bottom:266.010600px;}
.yfd{bottom:267.059250px;}
.y6a{bottom:270.457350px;}
.y26{bottom:273.126450px;}
.y84{bottom:275.864850px;}
.ycf{bottom:277.815600px;}
.y135{bottom:277.915350px;}
.y166{bottom:280.153350px;}
.y1a6{bottom:282.510600px;}
.yad{bottom:283.300950px;}
.yfc{bottom:285.054750px;}
.y69{bottom:288.452850px;}
.y25{bottom:291.121950px;}
.y83{bottom:293.860350px;}
.yce{bottom:295.811100px;}
.y134{bottom:295.910850px;}
.y165{bottom:296.653350px;}
.y1a5{bottom:299.010600px;}
.yac{bottom:301.296450px;}
.yfb{bottom:303.050250px;}
.y68{bottom:306.448350px;}
.y24{bottom:309.117450px;}
.y82{bottom:311.855850px;}
.y164{bottom:313.153350px;}
.ycd{bottom:313.806600px;}
.y133{bottom:313.906350px;}
.y1a4{bottom:315.510600px;}
.yfa{bottom:321.045750px;}
.yab{bottom:322.302450px;}
.y67{bottom:324.443850px;}
.y23{bottom:327.112950px;}
.y163{bottom:329.653350px;}
.y81{bottom:329.851350px;}
.ycc{bottom:331.802100px;}
.y1a3{bottom:332.010600px;}
.y132{bottom:337.909350px;}
.yf9{bottom:339.041250px;}
.y66{bottom:342.439350px;}
.y22{bottom:345.108450px;}
.y162{bottom:346.153350px;}
.y80{bottom:347.846850px;}
.y1a2{bottom:348.510600px;}
.ycb{bottom:349.797600px;}
.yaa{bottom:352.299450px;}
.y131{bottom:355.904850px;}
.yf8{bottom:357.036750px;}
.y65{bottom:360.434850px;}
.y161{bottom:362.653350px;}
.y21{bottom:363.103950px;}
.y1a1{bottom:365.010600px;}
.y7f{bottom:365.842350px;}
.yca{bottom:367.793100px;}
.yf7{bottom:375.032250px;}
.y64{bottom:378.430350px;}
.y160{bottom:379.153350px;}
.y130{bottom:379.907850px;}
.y20{bottom:381.099450px;}
.y1a0{bottom:381.510600px;}
.ya9{bottom:382.299450px;}
.y7e{bottom:383.837850px;}
.yc9{bottom:385.788600px;}
.yf6{bottom:393.027750px;}
.y15f{bottom:395.653350px;}
.y63{bottom:396.425850px;}
.y12f{bottom:397.903350px;}
.y19f{bottom:398.010600px;}
.y1f{bottom:399.094950px;}
.y7d{bottom:401.833350px;}
.yc8{bottom:403.784100px;}
.yf5{bottom:411.023250px;}
.y15e{bottom:412.153350px;}
.y62{bottom:414.421350px;}
.y19e{bottom:414.510600px;}
.y1e{bottom:417.090450px;}
.y7c{bottom:419.828850px;}
.y12e{bottom:421.903350px;}
.yc7{bottom:424.790100px;}
.y15d{bottom:428.653350px;}
.yf4{bottom:429.018750px;}
.y19d{bottom:431.010600px;}
.y61{bottom:432.416850px;}
.y1d{bottom:435.085950px;}
.y7b{bottom:437.824350px;}
.ya8{bottom:438.661950px;}
.yc6{bottom:442.785600px;}
.y15c{bottom:445.153350px;}
.yf3{bottom:447.014250px;}
.y19c{bottom:447.510600px;}
.y60{bottom:450.412350px;}
.y1c{bottom:453.081450px;}
.y7a{bottom:455.819850px;}
.ya7{bottom:456.657450px;}
.yc5{bottom:460.781100px;}
.y15b{bottom:461.653350px;}
.y19b{bottom:464.010600px;}
.yf2{bottom:465.009750px;}
.y5f{bottom:468.407850px;}
.y1b{bottom:471.076950px;}
.y12d{bottom:473.716350px;}
.y79{bottom:473.815350px;}
.ya6{bottom:474.652950px;}
.y15a{bottom:478.153350px;}
.y19a{bottom:480.510600px;}
.yf1{bottom:483.005250px;}
.y5e{bottom:486.403350px;}
.y12c{bottom:491.711850px;}
.y78{bottom:491.810850px;}
.y1a{bottom:492.076950px;}
.ya5{bottom:492.648450px;}
.y159{bottom:494.653350px;}
.y199{bottom:497.010600px;}
.yf0{bottom:501.000750px;}
.ye2{bottom:502.167450px;}
.y5d{bottom:507.403350px;}
.y12b{bottom:509.707350px;}
.y77{bottom:509.806350px;}
.ya4{bottom:510.643950px;}
.y158{bottom:511.153350px;}
.y198{bottom:513.510600px;}
.ye1{bottom:517.171950px;}
.yef{bottom:518.996250px;}
.y157{bottom:527.653350px;}
.y12a{bottom:527.702850px;}
.y76{bottom:527.801850px;}
.ya3{bottom:528.639450px;}
.y197{bottom:530.010600px;}
.ye0{bottom:532.176450px;}
.yee{bottom:536.991750px;}
.y156{bottom:544.153350px;}
.y129{bottom:545.698350px;}
.y75{bottom:545.797350px;}
.y196{bottom:546.510600px;}
.ya2{bottom:546.634950px;}
.ydf{bottom:547.180950px;}
.y19{bottom:548.367450px;}
.yed{bottom:554.987250px;}
.y155{bottom:560.653350px;}
.yde{bottom:562.185450px;}
.y195{bottom:563.010600px;}
.y128{bottom:563.693850px;}
.y5c{bottom:563.792850px;}
.ya1{bottom:564.630450px;}
.y18{bottom:566.362950px;}
.yec{bottom:572.982750px;}
.y154{bottom:577.153350px;}
.ydd{bottom:577.189950px;}
.y194{bottom:579.510600px;}
.y127{bottom:581.689350px;}
.y5b{bottom:581.788350px;}
.ya0{bottom:582.625950px;}
.y17{bottom:584.358450px;}
.yeb{bottom:590.978250px;}
.ydc{bottom:592.194450px;}
.y153{bottom:593.653350px;}
.y193{bottom:596.010600px;}
.y126{bottom:599.684850px;}
.y5a{bottom:599.783850px;}
.y9f{bottom:600.621450px;}
.ydb{bottom:607.198950px;}
.yea{bottom:608.973750px;}
.y152{bottom:610.153350px;}
.y192{bottom:612.510600px;}
.y125{bottom:617.680350px;}
.y59{bottom:617.779350px;}
.y9e{bottom:618.616950px;}
.y16{bottom:620.362950px;}
.yda{bottom:622.203450px;}
.y151{bottom:626.653350px;}
.ye9{bottom:626.969250px;}
.y191{bottom:629.010600px;}
.y124{bottom:635.675850px;}
.y58{bottom:635.774850px;}
.y9d{bottom:636.612450px;}
.yd9{bottom:637.207950px;}
.y15{bottom:638.358450px;}
.y150{bottom:643.153350px;}
.ye8{bottom:644.964750px;}
.y190{bottom:645.510600px;}
.yd8{bottom:652.212450px;}
.y123{bottom:653.671350px;}
.y57{bottom:653.770350px;}
.y9c{bottom:654.607950px;}
.y14f{bottom:659.653350px;}
.y18f{bottom:662.010600px;}
.ye7{bottom:662.960250px;}
.y14{bottom:665.358450px;}
.y122{bottom:671.666850px;}
.y56{bottom:671.765850px;}
.y9b{bottom:672.603450px;}
.y14e{bottom:676.153350px;}
.y18e{bottom:678.510600px;}
.ye6{bottom:680.955750px;}
.y13{bottom:683.353950px;}
.y121{bottom:689.662350px;}
.y55{bottom:689.761350px;}
.y9a{bottom:690.598950px;}
.y14d{bottom:692.653350px;}
.y18d{bottom:695.010600px;}
.ye5{bottom:698.951250px;}
.y12{bottom:701.349450px;}
.y120{bottom:707.657850px;}
.y54{bottom:707.756850px;}
.y99{bottom:708.594450px;}
.y14c{bottom:709.153350px;}
.y18c{bottom:711.510600px;}
.ye4{bottom:716.946750px;}
.y11{bottom:719.344950px;}
.y11f{bottom:725.653350px;}
.y53{bottom:725.752350px;}
.y98{bottom:726.589950px;}
.y18b{bottom:728.010600px;}
.y30{bottom:730.155900px;}
.ye3{bottom:734.942250px;}
.y10{bottom:737.340450px;}
.y14b{bottom:742.153350px;}
.y52{bottom:743.747850px;}
.y18a{bottom:744.510600px;}
.y97{bottom:744.585450px;}
.y2f{bottom:745.031550px;}
.y11e{bottom:746.653350px;}
.yf{bottom:755.335950px;}
.y14a{bottom:758.653350px;}
.y189{bottom:761.010600px;}
.y51{bottom:761.743350px;}
.y96{bottom:762.580950px;}
.ye{bottom:773.331450px;}
.y149{bottom:775.153350px;}
.y188{bottom:777.510600px;}
.y50{bottom:779.738850px;}
.y95{bottom:780.576450px;}
.y10a{bottom:785.364600px;}
.yd{bottom:791.326950px;}
.y148{bottom:791.653350px;}
.y187{bottom:794.010600px;}
.y4f{bottom:797.734350px;}
.y11d{bottom:798.484350px;}
.y94{bottom:798.571950px;}
.y109{bottom:800.369100px;}
.y147{bottom:808.153350px;}
.y186{bottom:810.510600px;}
.y108{bottom:815.373600px;}
.y4e{bottom:815.729850px;}
.y11c{bottom:816.479850px;}
.y93{bottom:816.567450px;}
.y146{bottom:824.653350px;}
.y185{bottom:827.010600px;}
.y4d{bottom:833.725350px;}
.y11b{bottom:834.475350px;}
.y92{bottom:834.562950px;}
.y145{bottom:841.153350px;}
.y3a{bottom:841.774650px;}
.y184{bottom:843.510600px;}
.y4c{bottom:851.720850px;}
.y11a{bottom:852.470850px;}
.y91{bottom:852.558450px;}
.y144{bottom:857.653350px;}
.y183{bottom:860.010600px;}
.y39{bottom:867.276150px;}
.y4b{bottom:869.716350px;}
.y119{bottom:870.466350px;}
.y90{bottom:870.553950px;}
.y143{bottom:874.153350px;}
.y182{bottom:876.510600px;}
.y38{bottom:885.271650px;}
.y4a{bottom:887.711850px;}
.y118{bottom:888.461850px;}
.y8f{bottom:888.549450px;}
.y142{bottom:890.653350px;}
.y181{bottom:893.010600px;}
.y37{bottom:903.267150px;}
.y49{bottom:905.707350px;}
.y117{bottom:906.457350px;}
.y141{bottom:907.153350px;}
.y180{bottom:909.510600px;}
.y36{bottom:921.262650px;}
.y48{bottom:923.702850px;}
.y116{bottom:924.452850px;}
.y17f{bottom:926.010600px;}
.y140{bottom:926.653350px;}
.yc4{bottom:937.636500px;}
.y35{bottom:939.258150px;}
.y47{bottom:941.698350px;}
.y115{bottom:942.448350px;}
.y17e{bottom:942.510600px;}
.yc3{bottom:951.864000px;}
.y17d{bottom:959.010600px;}
.y46{bottom:959.693850px;}
.y114{bottom:960.443850px;}
.yc2{bottom:966.091500px;}
.y33{bottom:972.258150px;}
.y17c{bottom:975.510600px;}
.y45{bottom:977.689350px;}
.y113{bottom:978.439350px;}
.y34{bottom:980.254650px;}
.yc1{bottom:980.319000px;}
.y17b{bottom:992.010600px;}
.yc0{bottom:994.546500px;}
.y44{bottom:995.684850px;}
.y112{bottom:996.434850px;}
.y32{bottom:1008.258150px;}
.y17a{bottom:1008.510600px;}
.ybf{bottom:1008.774000px;}
.y43{bottom:1013.680350px;}
.y111{bottom:1014.430350px;}
.ybe{bottom:1023.001500px;}
.y179{bottom:1025.010600px;}
.y42{bottom:1031.675850px;}
.y110{bottom:1032.425850px;}
.ybd{bottom:1037.229000px;}
.y31{bottom:1038.858150px;}
.y178{bottom:1041.510600px;}
.y41{bottom:1049.671350px;}
.y10f{bottom:1050.421350px;}
.ybc{bottom:1051.456500px;}
.y177{bottom:1058.010600px;}
.ybb{bottom:1065.684000px;}
.y40{bottom:1067.666850px;}
.y10e{bottom:1068.416850px;}
.y176{bottom:1074.510600px;}
.yba{bottom:1079.911500px;}
.y3f{bottom:1085.662350px;}
.y10d{bottom:1086.412350px;}
.y175{bottom:1091.010600px;}
.yb9{bottom:1101.636000px;}
.y3{bottom:1103.536350px;}
.y3e{bottom:1103.657850px;}
.y10c{bottom:1104.407850px;}
.y174{bottom:1107.510600px;}
.y3d{bottom:1121.653350px;}
.y10b{bottom:1122.403350px;}
.y173{bottom:1124.010600px;}
.yb8{bottom:1125.610350px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y3c{bottom:1175.538600px;}
.he{height:17.727864px;}
.h6{height:27.540000px;}
.h5{height:32.130000px;}
.hb{height:39.606000px;}
.h3{height:41.094000px;}
.h7{height:41.310000px;}
.h4{height:44.976000px;}
.hf{height:45.264000px;}
.h2{height:45.441000px;}
.h10{height:50.790000px;}
.h11{height:50.904000px;}
.h8{height:50.922000px;}
.hd{height:56.220000px;}
.ha{height:63.840000px;}
.h9{height:78.132000px;}
.hc{height:95.574000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-270.843300px;}
.x0{left:0.000000px;}
.x3{left:81.000000px;}
.x2{left:93.000000px;}
.x8{left:251.044050px;}
.x9{left:253.321050px;}
.x4{left:288.000000px;}
.x5{left:305.995500px;}
.x1{left:717.106200px;}
@media print{
.v2{vertical-align:-10.672000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.432000pt;}
.ls19{letter-spacing:-5.546667pt;}
.ls7{letter-spacing:-4.353067pt;}
.lsf{letter-spacing:-0.816000pt;}
.ls6{letter-spacing:-0.634667pt;}
.lsb{letter-spacing:-0.432000pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls5{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.181333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.034133pt;}
.lsa{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.485333pt;}
.ls13{letter-spacing:0.634667pt;}
.ls12{letter-spacing:0.709333pt;}
.ls8{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.784000pt;}
.ls10{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.970667pt;}
.ls17{letter-spacing:2.438400pt;}
.ls0{letter-spacing:2.880000pt;}
.lsd{letter-spacing:192.304000pt;}
.ls1{letter-spacing:2510.976000pt;}
.ws16{word-spacing:-18.405333pt;}
.ws0{word-spacing:-18.314667pt;}
.ws2b{word-spacing:-17.770667pt;}
.ws2{word-spacing:-9.936000pt;}
.ws22{word-spacing:-9.456000pt;}
.ws15{word-spacing:-9.024000pt;}
.ws61{word-spacing:-8.832000pt;}
.ws35{word-spacing:-8.586667pt;}
.ws45{word-spacing:-7.728000pt;}
.ws1{word-spacing:-5.658987pt;}
.ws5d{word-spacing:-1.824000pt;}
.ws3e{word-spacing:-1.776000pt;}
.ws42{word-spacing:-1.488000pt;}
.ws62{word-spacing:-1.344000pt;}
.ws53{word-spacing:-1.248000pt;}
.ws69{word-spacing:-1.194667pt;}
.ws68{word-spacing:-1.109333pt;}
.ws28{word-spacing:-1.056000pt;}
.wsa{word-spacing:-1.008000pt;}
.ws6d{word-spacing:-0.981333pt;}
.ws17{word-spacing:-0.725333pt;}
.ws27{word-spacing:-0.672000pt;}
.ws67{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.432000pt;}
.ws18{word-spacing:-0.426667pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.373333pt;}
.ws3c{word-spacing:-0.288000pt;}
.ws19{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.085333pt;}
.ws54{word-spacing:-0.074667pt;}
.ws4f{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws71{word-spacing:0.128000pt;}
.ws5f{word-spacing:0.181333pt;}
.ws55{word-spacing:0.224000pt;}
.wsd{word-spacing:0.240000pt;}
.wse{word-spacing:0.480000pt;}
.ws29{word-spacing:0.528000pt;}
.ws2a{word-spacing:0.576000pt;}
.ws13{word-spacing:0.634667pt;}
.ws6c{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.720000pt;}
.ws20{word-spacing:0.768000pt;}
.ws41{word-spacing:0.864000pt;}
.ws4e{word-spacing:1.008000pt;}
.ws5b{word-spacing:1.056000pt;}
.ws8{word-spacing:1.200000pt;}
.ws6a{word-spacing:1.237333pt;}
.ws3f{word-spacing:1.296000pt;}
.wsb{word-spacing:1.344000pt;}
.ws4d{word-spacing:1.392000pt;}
.ws6{word-spacing:1.440000pt;}
.ws73{word-spacing:1.493333pt;}
.ws6f{word-spacing:1.621333pt;}
.ws40{word-spacing:1.632000pt;}
.ws23{word-spacing:1.776000pt;}
.ws9{word-spacing:1.872000pt;}
.ws1c{word-spacing:1.968000pt;}
.ws66{word-spacing:2.005333pt;}
.ws65{word-spacing:2.090667pt;}
.ws11{word-spacing:2.112000pt;}
.ws58{word-spacing:2.160000pt;}
.ws57{word-spacing:2.208000pt;}
.ws56{word-spacing:2.304000pt;}
.ws5{word-spacing:2.352000pt;}
.ws46{word-spacing:2.400000pt;}
.wsc{word-spacing:2.496000pt;}
.ws5e{word-spacing:2.544000pt;}
.ws4c{word-spacing:2.640000pt;}
.ws43{word-spacing:2.688000pt;}
.ws4b{word-spacing:2.784000pt;}
.ws6b{word-spacing:2.816000pt;}
.ws44{word-spacing:2.832000pt;}
.ws50{word-spacing:2.928000pt;}
.wsf{word-spacing:2.976000pt;}
.ws52{word-spacing:3.456000pt;}
.ws7{word-spacing:3.504000pt;}
.ws64{word-spacing:3.541333pt;}
.ws26{word-spacing:3.600000pt;}
.ws47{word-spacing:3.792000pt;}
.ws24{word-spacing:3.840000pt;}
.ws25{word-spacing:3.888000pt;}
.ws5a{word-spacing:4.032000pt;}
.ws4a{word-spacing:4.080000pt;}
.ws6e{word-spacing:4.181333pt;}
.ws59{word-spacing:4.224000pt;}
.ws4{word-spacing:4.320000pt;}
.ws14{word-spacing:4.353067pt;}
.ws1f{word-spacing:4.512000pt;}
.ws51{word-spacing:4.896000pt;}
.ws49{word-spacing:4.944000pt;}
.ws60{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.136000pt;}
.ws48{word-spacing:5.184000pt;}
.ws10{word-spacing:5.232000pt;}
.ws1e{word-spacing:5.376000pt;}
.ws70{word-spacing:5.546667pt;}
.ws1d{word-spacing:5.616000pt;}
.ws63{word-spacing:5.632000pt;}
.ws3d{word-spacing:6.432000pt;}
.ws75{word-spacing:7.552000pt;}
.ws74{word-spacing:7.936000pt;}
.ws2f{word-spacing:129.221867pt;}
.ws3b{word-spacing:131.450667pt;}
.ws2c{word-spacing:132.212267pt;}
.ws32{word-spacing:132.410133pt;}
.ws33{word-spacing:132.641600pt;}
.ws30{word-spacing:141.142400pt;}
.ws3a{word-spacing:143.173333pt;}
.ws2e{word-spacing:147.283733pt;}
.ws37{word-spacing:149.109333pt;}
.ws34{word-spacing:159.032533pt;}
.ws31{word-spacing:160.376533pt;}
.ws2d{word-spacing:161.489067pt;}
.ws36{word-spacing:166.730667pt;}
.ws38{word-spacing:239.530667pt;}
.ws39{word-spacing:278.170667pt;}
._8{margin-left:-12.275200pt;}
._3{margin-left:-5.418667pt;}
._7{margin-left:-4.385067pt;}
._6{margin-left:-3.000533pt;}
._4{margin-left:-2.079467pt;}
._0{margin-left:-1.045333pt;}
._2{width:1.041600pt;}
._5{width:1.964267pt;}
._1{width:3.552000pt;}
._9{width:4.647936pt;}
._f{width:5.740800pt;}
._e{width:7.335467pt;}
._c{width:21.216000pt;}
._b{width:22.464000pt;}
._a{width:26.304000pt;}
._1f{width:34.131733pt;}
._16{width:139.216000pt;}
._13{width:156.837333pt;}
._15{width:168.560000pt;}
._18{width:174.458667pt;}
._12{width:186.181333pt;}
._1a{width:220.005333pt;}
._19{width:240.426667pt;}
._17{width:245.989333pt;}
._1c{width:256.181333pt;}
._14{width:262.640000pt;}
._11{width:264.208000pt;}
._1d{width:268.352000pt;}
._1b{width:287.093333pt;}
._10{width:1366.291200pt;}
._d{width:1367.443200pt;}
._20{width:1368.936533pt;}
._1e{width:1369.832533pt;}
.fs8{font-size:21.765333pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.y172{bottom:73.025200pt;}
.y1b2{bottom:75.120533pt;}
.y13f{bottom:76.362533pt;}
.y107{bottom:77.426000pt;}
.y74{bottom:80.446533pt;}
.yd7{bottom:82.265867pt;}
.y8e{bottom:82.577200pt;}
.y171{bottom:87.691867pt;}
.yb7{bottom:89.187067pt;}
.y1b1{bottom:89.787200pt;}
.y13e{bottom:92.362533pt;}
.y106{bottom:93.422000pt;}
.y73{bottom:96.442533pt;}
.yd6{bottom:98.261867pt;}
.y8d{bottom:98.573200pt;}
.y170{bottom:102.358533pt;}
.y1b0{bottom:104.453867pt;}
.yb6{bottom:105.183067pt;}
.y13d{bottom:108.387867pt;}
.y105{bottom:109.418000pt;}
.y72{bottom:112.438533pt;}
.yd5{bottom:114.257867pt;}
.y8c{bottom:114.569200pt;}
.yc{bottom:114.735067pt;}
.y2e{bottom:114.811067pt;}
.y16f{bottom:117.025200pt;}
.y1af{bottom:119.120533pt;}
.yb5{bottom:121.179067pt;}
.yb{bottom:124.335067pt;}
.y13c{bottom:124.383867pt;}
.y104{bottom:125.414000pt;}
.y71{bottom:128.434533pt;}
.yd4{bottom:130.253867pt;}
.y8b{bottom:130.565200pt;}
.y2d{bottom:130.807067pt;}
.y16e{bottom:131.691867pt;}
.y1ae{bottom:133.787200pt;}
.ya{bottom:133.935067pt;}
.yb4{bottom:137.175067pt;}
.y103{bottom:141.410000pt;}
.y9{bottom:143.535067pt;}
.y70{bottom:144.430533pt;}
.y13b{bottom:145.719867pt;}
.yd3{bottom:146.249867pt;}
.y16d{bottom:146.358533pt;}
.y8a{bottom:146.561200pt;}
.y2c{bottom:146.803067pt;}
.y1ad{bottom:148.453867pt;}
.yb3{bottom:153.171067pt;}
.y102{bottom:157.406000pt;}
.y6f{bottom:160.426533pt;}
.y16c{bottom:161.025200pt;}
.y13a{bottom:161.715867pt;}
.y89{bottom:162.557200pt;}
.y2b{bottom:162.799067pt;}
.y1ac{bottom:163.120533pt;}
.yd2{bottom:164.916533pt;}
.yb2{bottom:171.843067pt;}
.y101{bottom:173.402000pt;}
.y16b{bottom:175.691867pt;}
.y6e{bottom:176.422533pt;}
.y8{bottom:177.135067pt;}
.y139{bottom:177.711867pt;}
.y1ab{bottom:177.787200pt;}
.y88{bottom:178.553200pt;}
.y2a{bottom:178.795067pt;}
.yb1{bottom:187.839067pt;}
.y7{bottom:188.335067pt;}
.y100{bottom:189.398000pt;}
.y16a{bottom:190.358533pt;}
.y6d{bottom:192.418533pt;}
.y1aa{bottom:192.453867pt;}
.y138{bottom:193.707867pt;}
.y87{bottom:194.549200pt;}
.y29{bottom:194.791067pt;}
.y6{bottom:199.535067pt;}
.yb0{bottom:203.835067pt;}
.y169{bottom:205.025200pt;}
.yff{bottom:205.394000pt;}
.y1a9{bottom:207.120533pt;}
.y6c{bottom:208.414533pt;}
.y137{bottom:209.703867pt;}
.y86{bottom:210.545200pt;}
.y5{bottom:210.735067pt;}
.y28{bottom:210.787067pt;}
.yd1{bottom:214.955200pt;}
.y168{bottom:219.691867pt;}
.yaf{bottom:219.831067pt;}
.yfe{bottom:221.390000pt;}
.y1a8{bottom:221.787200pt;}
.y6b{bottom:224.410533pt;}
.y27{bottom:226.783067pt;}
.y85{bottom:229.217200pt;}
.yd0{bottom:230.951200pt;}
.y136{bottom:231.039867pt;}
.y167{bottom:234.358533pt;}
.yae{bottom:235.827067pt;}
.y1a7{bottom:236.453867pt;}
.yfd{bottom:237.386000pt;}
.y6a{bottom:240.406533pt;}
.y26{bottom:242.779067pt;}
.y84{bottom:245.213200pt;}
.ycf{bottom:246.947200pt;}
.y135{bottom:247.035867pt;}
.y166{bottom:249.025200pt;}
.y1a6{bottom:251.120533pt;}
.yad{bottom:251.823067pt;}
.yfc{bottom:253.382000pt;}
.y69{bottom:256.402533pt;}
.y25{bottom:258.775067pt;}
.y83{bottom:261.209200pt;}
.yce{bottom:262.943200pt;}
.y134{bottom:263.031867pt;}
.y165{bottom:263.691867pt;}
.y1a5{bottom:265.787200pt;}
.yac{bottom:267.819067pt;}
.yfb{bottom:269.378000pt;}
.y68{bottom:272.398533pt;}
.y24{bottom:274.771067pt;}
.y82{bottom:277.205200pt;}
.y164{bottom:278.358533pt;}
.ycd{bottom:278.939200pt;}
.y133{bottom:279.027867pt;}
.y1a4{bottom:280.453867pt;}
.yfa{bottom:285.374000pt;}
.yab{bottom:286.491067pt;}
.y67{bottom:288.394533pt;}
.y23{bottom:290.767067pt;}
.y163{bottom:293.025200pt;}
.y81{bottom:293.201200pt;}
.ycc{bottom:294.935200pt;}
.y1a3{bottom:295.120533pt;}
.y132{bottom:300.363867pt;}
.yf9{bottom:301.370000pt;}
.y66{bottom:304.390533pt;}
.y22{bottom:306.763067pt;}
.y162{bottom:307.691867pt;}
.y80{bottom:309.197200pt;}
.y1a2{bottom:309.787200pt;}
.ycb{bottom:310.931200pt;}
.yaa{bottom:313.155067pt;}
.y131{bottom:316.359867pt;}
.yf8{bottom:317.366000pt;}
.y65{bottom:320.386533pt;}
.y161{bottom:322.358533pt;}
.y21{bottom:322.759067pt;}
.y1a1{bottom:324.453867pt;}
.y7f{bottom:325.193200pt;}
.yca{bottom:326.927200pt;}
.yf7{bottom:333.362000pt;}
.y64{bottom:336.382533pt;}
.y160{bottom:337.025200pt;}
.y130{bottom:337.695867pt;}
.y20{bottom:338.755067pt;}
.y1a0{bottom:339.120533pt;}
.ya9{bottom:339.821733pt;}
.y7e{bottom:341.189200pt;}
.yc9{bottom:342.923200pt;}
.yf6{bottom:349.358000pt;}
.y15f{bottom:351.691867pt;}
.y63{bottom:352.378533pt;}
.y12f{bottom:353.691867pt;}
.y19f{bottom:353.787200pt;}
.y1f{bottom:354.751067pt;}
.y7d{bottom:357.185200pt;}
.yc8{bottom:358.919200pt;}
.yf5{bottom:365.354000pt;}
.y15e{bottom:366.358533pt;}
.y62{bottom:368.374533pt;}
.y19e{bottom:368.453867pt;}
.y1e{bottom:370.747067pt;}
.y7c{bottom:373.181200pt;}
.y12e{bottom:375.025200pt;}
.yc7{bottom:377.591200pt;}
.y15d{bottom:381.025200pt;}
.yf4{bottom:381.350000pt;}
.y19d{bottom:383.120533pt;}
.y61{bottom:384.370533pt;}
.y1d{bottom:386.743067pt;}
.y7b{bottom:389.177200pt;}
.ya8{bottom:389.921733pt;}
.yc6{bottom:393.587200pt;}
.y15c{bottom:395.691867pt;}
.yf3{bottom:397.346000pt;}
.y19c{bottom:397.787200pt;}
.y60{bottom:400.366533pt;}
.y1c{bottom:402.739067pt;}
.y7a{bottom:405.173200pt;}
.ya7{bottom:405.917733pt;}
.yc5{bottom:409.583200pt;}
.y15b{bottom:410.358533pt;}
.y19b{bottom:412.453867pt;}
.yf2{bottom:413.342000pt;}
.y5f{bottom:416.362533pt;}
.y1b{bottom:418.735067pt;}
.y12d{bottom:421.081200pt;}
.y79{bottom:421.169200pt;}
.ya6{bottom:421.913733pt;}
.y15a{bottom:425.025200pt;}
.y19a{bottom:427.120533pt;}
.yf1{bottom:429.338000pt;}
.y5e{bottom:432.358533pt;}
.y12c{bottom:437.077200pt;}
.y78{bottom:437.165200pt;}
.y1a{bottom:437.401733pt;}
.ya5{bottom:437.909733pt;}
.y159{bottom:439.691867pt;}
.y199{bottom:441.787200pt;}
.yf0{bottom:445.334000pt;}
.ye2{bottom:446.371067pt;}
.y5d{bottom:451.025200pt;}
.y12b{bottom:453.073200pt;}
.y77{bottom:453.161200pt;}
.ya4{bottom:453.905733pt;}
.y158{bottom:454.358533pt;}
.y198{bottom:456.453867pt;}
.ye1{bottom:459.708400pt;}
.yef{bottom:461.330000pt;}
.y157{bottom:469.025200pt;}
.y12a{bottom:469.069200pt;}
.y76{bottom:469.157200pt;}
.ya3{bottom:469.901733pt;}
.y197{bottom:471.120533pt;}
.ye0{bottom:473.045733pt;}
.yee{bottom:477.326000pt;}
.y156{bottom:483.691867pt;}
.y129{bottom:485.065200pt;}
.y75{bottom:485.153200pt;}
.y196{bottom:485.787200pt;}
.ya2{bottom:485.897733pt;}
.ydf{bottom:486.383067pt;}
.y19{bottom:487.437733pt;}
.yed{bottom:493.322000pt;}
.y155{bottom:498.358533pt;}
.yde{bottom:499.720400pt;}
.y195{bottom:500.453867pt;}
.y128{bottom:501.061200pt;}
.y5c{bottom:501.149200pt;}
.ya1{bottom:501.893733pt;}
.y18{bottom:503.433733pt;}
.yec{bottom:509.318000pt;}
.y154{bottom:513.025200pt;}
.ydd{bottom:513.057733pt;}
.y194{bottom:515.120533pt;}
.y127{bottom:517.057200pt;}
.y5b{bottom:517.145200pt;}
.ya0{bottom:517.889733pt;}
.y17{bottom:519.429733pt;}
.yeb{bottom:525.314000pt;}
.ydc{bottom:526.395067pt;}
.y153{bottom:527.691867pt;}
.y193{bottom:529.787200pt;}
.y126{bottom:533.053200pt;}
.y5a{bottom:533.141200pt;}
.y9f{bottom:533.885733pt;}
.ydb{bottom:539.732400pt;}
.yea{bottom:541.310000pt;}
.y152{bottom:542.358533pt;}
.y192{bottom:544.453867pt;}
.y125{bottom:549.049200pt;}
.y59{bottom:549.137200pt;}
.y9e{bottom:549.881733pt;}
.y16{bottom:551.433733pt;}
.yda{bottom:553.069733pt;}
.y151{bottom:557.025200pt;}
.ye9{bottom:557.306000pt;}
.y191{bottom:559.120533pt;}
.y124{bottom:565.045200pt;}
.y58{bottom:565.133200pt;}
.y9d{bottom:565.877733pt;}
.yd9{bottom:566.407067pt;}
.y15{bottom:567.429733pt;}
.y150{bottom:571.691867pt;}
.ye8{bottom:573.302000pt;}
.y190{bottom:573.787200pt;}
.yd8{bottom:579.744400pt;}
.y123{bottom:581.041200pt;}
.y57{bottom:581.129200pt;}
.y9c{bottom:581.873733pt;}
.y14f{bottom:586.358533pt;}
.y18f{bottom:588.453867pt;}
.ye7{bottom:589.298000pt;}
.y14{bottom:591.429733pt;}
.y122{bottom:597.037200pt;}
.y56{bottom:597.125200pt;}
.y9b{bottom:597.869733pt;}
.y14e{bottom:601.025200pt;}
.y18e{bottom:603.120533pt;}
.ye6{bottom:605.294000pt;}
.y13{bottom:607.425733pt;}
.y121{bottom:613.033200pt;}
.y55{bottom:613.121200pt;}
.y9a{bottom:613.865733pt;}
.y14d{bottom:615.691867pt;}
.y18d{bottom:617.787200pt;}
.ye5{bottom:621.290000pt;}
.y12{bottom:623.421733pt;}
.y120{bottom:629.029200pt;}
.y54{bottom:629.117200pt;}
.y99{bottom:629.861733pt;}
.y14c{bottom:630.358533pt;}
.y18c{bottom:632.453867pt;}
.ye4{bottom:637.286000pt;}
.y11{bottom:639.417733pt;}
.y11f{bottom:645.025200pt;}
.y53{bottom:645.113200pt;}
.y98{bottom:645.857733pt;}
.y18b{bottom:647.120533pt;}
.y30{bottom:649.027467pt;}
.ye3{bottom:653.282000pt;}
.y10{bottom:655.413733pt;}
.y14b{bottom:659.691867pt;}
.y52{bottom:661.109200pt;}
.y18a{bottom:661.787200pt;}
.y97{bottom:661.853733pt;}
.y2f{bottom:662.250267pt;}
.y11e{bottom:663.691867pt;}
.yf{bottom:671.409733pt;}
.y14a{bottom:674.358533pt;}
.y189{bottom:676.453867pt;}
.y51{bottom:677.105200pt;}
.y96{bottom:677.849733pt;}
.ye{bottom:687.405733pt;}
.y149{bottom:689.025200pt;}
.y188{bottom:691.120533pt;}
.y50{bottom:693.101200pt;}
.y95{bottom:693.845733pt;}
.y10a{bottom:698.101867pt;}
.yd{bottom:703.401733pt;}
.y148{bottom:703.691867pt;}
.y187{bottom:705.787200pt;}
.y4f{bottom:709.097200pt;}
.y11d{bottom:709.763867pt;}
.y94{bottom:709.841733pt;}
.y109{bottom:711.439200pt;}
.y147{bottom:718.358533pt;}
.y186{bottom:720.453867pt;}
.y108{bottom:724.776533pt;}
.y4e{bottom:725.093200pt;}
.y11c{bottom:725.759867pt;}
.y93{bottom:725.837733pt;}
.y146{bottom:733.025200pt;}
.y185{bottom:735.120533pt;}
.y4d{bottom:741.089200pt;}
.y11b{bottom:741.755867pt;}
.y92{bottom:741.833733pt;}
.y145{bottom:747.691867pt;}
.y3a{bottom:748.244133pt;}
.y184{bottom:749.787200pt;}
.y4c{bottom:757.085200pt;}
.y11a{bottom:757.751867pt;}
.y91{bottom:757.829733pt;}
.y144{bottom:762.358533pt;}
.y183{bottom:764.453867pt;}
.y39{bottom:770.912133pt;}
.y4b{bottom:773.081200pt;}
.y119{bottom:773.747867pt;}
.y90{bottom:773.825733pt;}
.y143{bottom:777.025200pt;}
.y182{bottom:779.120533pt;}
.y38{bottom:786.908133pt;}
.y4a{bottom:789.077200pt;}
.y118{bottom:789.743867pt;}
.y8f{bottom:789.821733pt;}
.y142{bottom:791.691867pt;}
.y181{bottom:793.787200pt;}
.y37{bottom:802.904133pt;}
.y49{bottom:805.073200pt;}
.y117{bottom:805.739867pt;}
.y141{bottom:806.358533pt;}
.y180{bottom:808.453867pt;}
.y36{bottom:818.900133pt;}
.y48{bottom:821.069200pt;}
.y116{bottom:821.735867pt;}
.y17f{bottom:823.120533pt;}
.y140{bottom:823.691867pt;}
.yc4{bottom:833.454667pt;}
.y35{bottom:834.896133pt;}
.y47{bottom:837.065200pt;}
.y115{bottom:837.731867pt;}
.y17e{bottom:837.787200pt;}
.yc3{bottom:846.101333pt;}
.y17d{bottom:852.453867pt;}
.y46{bottom:853.061200pt;}
.y114{bottom:853.727867pt;}
.yc2{bottom:858.748000pt;}
.y33{bottom:864.229467pt;}
.y17c{bottom:867.120533pt;}
.y45{bottom:869.057200pt;}
.y113{bottom:869.723867pt;}
.y34{bottom:871.337467pt;}
.yc1{bottom:871.394667pt;}
.y17b{bottom:881.787200pt;}
.yc0{bottom:884.041333pt;}
.y44{bottom:885.053200pt;}
.y112{bottom:885.719867pt;}
.y32{bottom:896.229467pt;}
.y17a{bottom:896.453867pt;}
.ybf{bottom:896.688000pt;}
.y43{bottom:901.049200pt;}
.y111{bottom:901.715867pt;}
.ybe{bottom:909.334667pt;}
.y179{bottom:911.120533pt;}
.y42{bottom:917.045200pt;}
.y110{bottom:917.711867pt;}
.ybd{bottom:921.981333pt;}
.y31{bottom:923.429467pt;}
.y178{bottom:925.787200pt;}
.y41{bottom:933.041200pt;}
.y10f{bottom:933.707867pt;}
.ybc{bottom:934.628000pt;}
.y177{bottom:940.453867pt;}
.ybb{bottom:947.274667pt;}
.y40{bottom:949.037200pt;}
.y10e{bottom:949.703867pt;}
.y176{bottom:955.120533pt;}
.yba{bottom:959.921333pt;}
.y3f{bottom:965.033200pt;}
.y10d{bottom:965.699867pt;}
.y175{bottom:969.787200pt;}
.yb9{bottom:979.232000pt;}
.y3{bottom:980.921200pt;}
.y3e{bottom:981.029200pt;}
.y10c{bottom:981.695867pt;}
.y174{bottom:984.453867pt;}
.y3d{bottom:997.025200pt;}
.y10b{bottom:997.691867pt;}
.y173{bottom:999.120533pt;}
.yb8{bottom:1000.542533pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y3c{bottom:1044.923200pt;}
.he{height:15.758101pt;}
.h6{height:24.480000pt;}
.h5{height:28.560000pt;}
.hb{height:35.205333pt;}
.h3{height:36.528000pt;}
.h7{height:36.720000pt;}
.h4{height:39.978667pt;}
.hf{height:40.234667pt;}
.h2{height:40.392000pt;}
.h10{height:45.146667pt;}
.h11{height:45.248000pt;}
.h8{height:45.264000pt;}
.hd{height:49.973333pt;}
.ha{height:56.746667pt;}
.h9{height:69.450667pt;}
.hc{height:84.954667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x3{left:72.000000pt;}
.x2{left:82.666667pt;}
.x8{left:223.150267pt;}
.x9{left:225.174267pt;}
.x4{left:256.000000pt;}
.x5{left:271.996000pt;}
.x1{left:637.427733pt;}
}




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