
    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_fc61e3a1faefdb748db4fbbb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_21b8894c79f16cad4f69ec81.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_820caed95fa9b244478c6a3b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_092dba28bbc0d49f4d0d3e83.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_73122b65f13403fd2ceaae1f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.074219;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_433f42e85048e808c8bfd21c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_7022b3045ba9291d3504d689.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_b190d6f0c3bd0db3a31cb45a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_a18b16fd7ca134892cc7089a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;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_e010faadd2ac1ba8b309f4a1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.074219;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_2d369aa03f8205ef8a848fe7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_1327835d5c240968163e58fd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.833984;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_816ce1e6972765f48553a785.woff')format("woff");}.ffd{font-family:ffd;line-height:0.912000;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_4b4c2fc245290d14caec6a31.woff')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls3e{letter-spacing:-7.200000px;}
.ls23{letter-spacing:-4.248000px;}
.ls60{letter-spacing:-4.020000px;}
.ls56{letter-spacing:-3.600000px;}
.ls22{letter-spacing:-2.808000px;}
.ls5f{letter-spacing:-1.872000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls2c{letter-spacing:-1.296000px;}
.ls2f{letter-spacing:-1.224000px;}
.ls1a{letter-spacing:-1.152000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls57{letter-spacing:-0.936000px;}
.ls52{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.792000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls4b{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.020400px;}
.ls3d{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.100800px;}
.ls58{letter-spacing:0.129600px;}
.ls14{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls5c{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.338400px;}
.ls28{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.648000px;}
.ls38{letter-spacing:0.662400px;}
.ls33{letter-spacing:0.669600px;}
.ls39{letter-spacing:0.676800px;}
.ls29{letter-spacing:0.684000px;}
.ls25{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls46{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.936000px;}
.ls5{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.296000px;}
.ls53{letter-spacing:1.368000px;}
.ls55{letter-spacing:1.584000px;}
.ls40{letter-spacing:1.656000px;}
.ls43{letter-spacing:1.800000px;}
.ls15{letter-spacing:1.872000px;}
.ls3c{letter-spacing:1.944000px;}
.ls13{letter-spacing:2.088000px;}
.ls3a{letter-spacing:2.232000px;}
.ls4a{letter-spacing:2.340000px;}
.ls30{letter-spacing:3.427200px;}
.ls61{letter-spacing:3.660000px;}
.ls62{letter-spacing:4.200000px;}
.ls5e{letter-spacing:4.218000px;}
.ls3f{letter-spacing:4.356000px;}
.ls32{letter-spacing:4.420800px;}
.ls2{letter-spacing:4.752000px;}
.ls6{letter-spacing:4.788000px;}
.ls41{letter-spacing:6.336000px;}
.ls37{letter-spacing:7.704000px;}
.ls4d{letter-spacing:7.840800px;}
.ls51{letter-spacing:7.848000px;}
.ls45{letter-spacing:8.064000px;}
.ls48{letter-spacing:8.352000px;}
.ls0{letter-spacing:8.436000px;}
.ls4{letter-spacing:8.460000px;}
.ls4e{letter-spacing:8.568000px;}
.ls42{letter-spacing:8.640000px;}
.ls17{letter-spacing:8.712000px;}
.ls49{letter-spacing:8.784000px;}
.ls36{letter-spacing:8.827200px;}
.ls54{letter-spacing:8.856000px;}
.ls4f{letter-spacing:8.928000px;}
.ls5b{letter-spacing:9.000000px;}
.ls4c{letter-spacing:9.144000px;}
.ls3b{letter-spacing:9.288000px;}
.ls50{letter-spacing:9.360000px;}
.ls47{letter-spacing:9.432000px;}
.ls34{letter-spacing:9.504000px;}
.ls5a{letter-spacing:9.648000px;}
.ls59{letter-spacing:9.720000px;}
.ls44{letter-spacing:10.440000px;}
.ls1{letter-spacing:10.740000px;}
.ls20{letter-spacing:10.872000px;}
.ls2a{letter-spacing:11.376000px;}
.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;}
}
.ws68{word-spacing:-26.424000px;}
.ws58{word-spacing:-25.848000px;}
.ws1{word-spacing:-25.320000px;}
.ws28{word-spacing:-20.232000px;}
.ws52{word-spacing:-19.440000px;}
.ws29{word-spacing:-18.720000px;}
.ws59{word-spacing:-18.576000px;}
.ws3c{word-spacing:-18.504000px;}
.ws2e{word-spacing:-18.432000px;}
.ws60{word-spacing:-18.360000px;}
.ws3b{word-spacing:-18.216000px;}
.ws2c{word-spacing:-18.144000px;}
.ws3e{word-spacing:-18.072000px;}
.ws3d{word-spacing:-18.000000px;}
.ws50{word-spacing:-17.928000px;}
.ws3f{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws2d{word-spacing:-17.712000px;}
.ws39{word-spacing:-17.640000px;}
.ws40{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.496000px;}
.ws2a{word-spacing:-17.424000px;}
.ws3a{word-spacing:-17.352000px;}
.ws2{word-spacing:-17.280000px;}
.ws2b{word-spacing:-17.208000px;}
.ws2f{word-spacing:-17.064000px;}
.ws54{word-spacing:-16.860000px;}
.ws13{word-spacing:-16.704000px;}
.ws75{word-spacing:-14.820000px;}
.ws69{word-spacing:-14.184000px;}
.ws73{word-spacing:-13.728000px;}
.ws74{word-spacing:-11.856000px;}
.ws21{word-spacing:-10.872000px;}
.ws76{word-spacing:-10.800000px;}
.ws57{word-spacing:-10.440000px;}
.ws70{word-spacing:-9.720000px;}
.ws71{word-spacing:-9.648000px;}
.ws5b{word-spacing:-9.432000px;}
.ws65{word-spacing:-9.360000px;}
.ws6f{word-spacing:-9.288000px;}
.ws61{word-spacing:-9.144000px;}
.ws72{word-spacing:-9.000000px;}
.ws63{word-spacing:-8.928000px;}
.ws6c{word-spacing:-8.856000px;}
.ws5d{word-spacing:-8.784000px;}
.ws41{word-spacing:-8.640000px;}
.ws62{word-spacing:-8.568000px;}
.ws0{word-spacing:-8.496000px;}
.ws30{word-spacing:-8.460000px;}
.ws5c{word-spacing:-8.352000px;}
.ws64{word-spacing:-8.064000px;}
.ws66{word-spacing:-7.848000px;}
.ws7a{word-spacing:-4.200000px;}
.ws47{word-spacing:-2.232000px;}
.ws1a{word-spacing:-2.088000px;}
.ws48{word-spacing:-1.944000px;}
.ws1d{word-spacing:-1.872000px;}
.ws56{word-spacing:-1.800000px;}
.ws6b{word-spacing:-1.584000px;}
.ws6a{word-spacing:-1.368000px;}
.ws19{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.152000px;}
.ws18{word-spacing:-1.080000px;}
.ws9{word-spacing:-1.008000px;}
.ws33{word-spacing:-0.936000px;}
.ws5a{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.576000px;}
.ws35{word-spacing:-0.504000px;}
.wsb{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.420000px;}
.ws78{word-spacing:-0.384000px;}
.ws34{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.288000px;}
.ws77{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.144000px;}
.wsc{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws22{word-spacing:0.144000px;}
.ws1b{word-spacing:0.216000px;}
.ws16{word-spacing:0.288000px;}
.wse{word-spacing:0.360000px;}
.ws8{word-spacing:0.432000px;}
.ws38{word-spacing:0.504000px;}
.wsf{word-spacing:0.576000px;}
.ws1e{word-spacing:0.648000px;}
.ws36{word-spacing:0.720000px;}
.wsa{word-spacing:0.792000px;}
.ws67{word-spacing:0.864000px;}
.ws6e{word-spacing:0.936000px;}
.ws6d{word-spacing:1.080000px;}
.ws17{word-spacing:1.152000px;}
.ws37{word-spacing:1.224000px;}
.ws32{word-spacing:1.296000px;}
.ws31{word-spacing:1.440000px;}
.ws5{word-spacing:1.800000px;}
.ws79{word-spacing:1.872000px;}
.ws5e{word-spacing:2.160000px;}
.ws5f{word-spacing:2.340000px;}
.ws49{word-spacing:2.400000px;}
.ws23{word-spacing:2.808000px;}
.ws6{word-spacing:3.312000px;}
.ws3{word-spacing:4.200000px;}
.ws25{word-spacing:4.248000px;}
.ws51{word-spacing:7.200000px;}
.ws11{word-spacing:146.196000px;}
.ws4b{word-spacing:507.000000px;}
.ws4f{word-spacing:537.000000px;}
.ws4d{word-spacing:557.820000px;}
.ws43{word-spacing:564.000000px;}
.ws44{word-spacing:575.154000px;}
.ws4c{word-spacing:578.580000px;}
.ws42{word-spacing:579.240000px;}
.ws4e{word-spacing:581.940000px;}
.ws4a{word-spacing:593.400000px;}
.ws45{word-spacing:599.940000px;}
.ws46{word-spacing:614.700000px;}
.ws53{word-spacing:871.920000px;}
.ws55{word-spacing:904.608000px;}
._0{margin-left:-948.820800px;}
._15{margin-left:-18.132000px;}
._17{margin-left:-16.749600px;}
._13{margin-left:-15.190800px;}
._22{margin-left:-14.002800px;}
._12{margin-left:-9.842400px;}
._14{margin-left:-8.118000px;}
._d{margin-left:-7.015200px;}
._1{margin-left:-5.964000px;}
._c{margin-left:-4.168800px;}
._5{margin-left:-3.030000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._7{width:3.142800px;}
._6{width:4.406400px;}
._a{width:5.479200px;}
._9{width:7.137600px;}
._4{width:8.292000px;}
._b{width:9.856800px;}
._8{width:11.419200px;}
._f{width:12.586800px;}
._e{width:13.816800px;}
._10{width:15.402000px;}
._11{width:16.513200px;}
._18{width:18.417600px;}
._16{width:31.646100px;}
._21{width:71.184000px;}
._1f{width:96.028800px;}
._1a{width:208.855200px;}
._19{width:222.955200px;}
._1e{width:230.158800px;}
._20{width:441.780000px;}
._1c{width:479.710800px;}
._1d{width:498.313200px;}
._1b{width:601.620000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y43{bottom:117.000000px;}
.y111{bottom:117.102000px;}
.y67{bottom:118.110000px;}
.ycb{bottom:118.362000px;}
.y14c{bottom:118.710000px;}
.y174{bottom:119.454000px;}
.yec{bottom:119.630400px;}
.y1a4{bottom:122.022000px;}
.y1f{bottom:123.968550px;}
.yaa{bottom:125.064600px;}
.y173{bottom:134.910000px;}
.y87{bottom:136.207500px;}
.y110{bottom:139.008000px;}
.y42{bottom:139.500000px;}
.y1a3{bottom:140.922000px;}
.yca{bottom:141.006000px;}
.y66{bottom:141.204000px;}
.y14b{bottom:141.804000px;}
.yeb{bottom:142.130400px;}
.y1e{bottom:146.468550px;}
.ya9{bottom:147.789600px;}
.y172{bottom:150.354000px;}
.y1a2{bottom:159.822000px;}
.y10f{bottom:160.914000px;}
.y41{bottom:162.000000px;}
.yc9{bottom:163.650000px;}
.y65{bottom:164.298000px;}
.yea{bottom:164.630400px;}
.y14a{bottom:164.898000px;}
.y171{bottom:165.810000px;}
.y1d{bottom:168.968550px;}
.ya8{bottom:170.514600px;}
.y86{bottom:175.074000px;}
.y1a1{bottom:178.722000px;}
.y170{bottom:181.266000px;}
.y10e{bottom:182.820000px;}
.y40{bottom:184.500000px;}
.yc8{bottom:186.294000px;}
.ye9{bottom:187.130400px;}
.y64{bottom:187.392000px;}
.y149{bottom:187.992000px;}
.y1c{bottom:191.468550px;}
.ya7{bottom:193.239600px;}
.y16f{bottom:196.722000px;}
.y1a0{bottom:197.622000px;}
.y85{bottom:197.880000px;}
.y10d{bottom:204.726000px;}
.y3f{bottom:207.000000px;}
.yc7{bottom:208.938000px;}
.ye8{bottom:209.630400px;}
.y63{bottom:210.486000px;}
.y148{bottom:211.086000px;}
.y1b{bottom:213.968550px;}
.ya6{bottom:215.964600px;}
.y19f{bottom:216.522000px;}
.y16e{bottom:218.550000px;}
.y84{bottom:220.686000px;}
.y10c{bottom:226.632000px;}
.y3e{bottom:229.500000px;}
.yc6{bottom:231.582000px;}
.ye7{bottom:232.130400px;}
.y62{bottom:233.580000px;}
.y147{bottom:234.180000px;}
.y19e{bottom:235.422000px;}
.y1a{bottom:236.468550px;}
.ya5{bottom:238.689600px;}
.y83{bottom:243.492000px;}
.y10b{bottom:248.538000px;}
.y3d{bottom:252.000000px;}
.yc5{bottom:254.226000px;}
.y19d{bottom:254.322000px;}
.ye6{bottom:254.630400px;}
.y61{bottom:256.674000px;}
.y146{bottom:257.274000px;}
.y19{bottom:258.968550px;}
.y16d{bottom:264.336000px;}
.y82{bottom:266.298000px;}
.y10a{bottom:270.444000px;}
.y19c{bottom:273.222000px;}
.y3c{bottom:274.500000px;}
.ya4{bottom:276.300000px;}
.yc4{bottom:276.870000px;}
.ye5{bottom:277.130400px;}
.y60{bottom:279.768000px;}
.y145{bottom:280.368000px;}
.y18{bottom:281.468550px;}
.y16c{bottom:287.286000px;}
.y81{bottom:289.104000px;}
.y19b{bottom:292.122000px;}
.y109{bottom:292.350000px;}
.y3b{bottom:297.000000px;}
.yc3{bottom:299.514000px;}
.ye4{bottom:299.630400px;}
.y5f{bottom:302.862000px;}
.y144{bottom:303.462000px;}
.y17{bottom:303.968550px;}
.y16b{bottom:310.236000px;}
.y19a{bottom:311.022000px;}
.y80{bottom:311.910000px;}
.y108{bottom:314.256000px;}
.y3a{bottom:319.500000px;}
.ya3{bottom:321.234000px;}
.ye3{bottom:322.130400px;}
.yc2{bottom:322.158000px;}
.y5e{bottom:325.956000px;}
.y16{bottom:326.468550px;}
.y143{bottom:326.556000px;}
.y199{bottom:329.922000px;}
.y16a{bottom:333.186000px;}
.y7f{bottom:334.716000px;}
.y107{bottom:336.162000px;}
.y39{bottom:342.000000px;}
.ya2{bottom:343.734000px;}
.ye2{bottom:344.630400px;}
.yc1{bottom:344.802000px;}
.y198{bottom:348.822000px;}
.y15{bottom:348.968550px;}
.y5d{bottom:349.050000px;}
.y142{bottom:349.650000px;}
.y129{bottom:350.510400px;}
.y1bd{bottom:353.250000px;}
.y169{bottom:356.136000px;}
.y7e{bottom:357.522000px;}
.y106{bottom:358.068000px;}
.y38{bottom:364.500000px;}
.ya1{bottom:366.234000px;}
.ye1{bottom:367.130400px;}
.yc0{bottom:367.446000px;}
.y197{bottom:367.722000px;}
.y14{bottom:371.468550px;}
.y1bc{bottom:372.000000px;}
.y5c{bottom:372.144000px;}
.y141{bottom:372.744000px;}
.y168{bottom:379.086000px;}
.y105{bottom:379.974000px;}
.y7d{bottom:380.328000px;}
.y196{bottom:386.622000px;}
.y37{bottom:387.000000px;}
.ya0{bottom:388.734000px;}
.ye0{bottom:389.630400px;}
.ybf{bottom:390.090000px;}
.y1bb{bottom:390.750000px;}
.y13{bottom:393.968550px;}
.y5b{bottom:395.238000px;}
.y140{bottom:395.838000px;}
.y104{bottom:401.880000px;}
.y167{bottom:402.036000px;}
.y7c{bottom:403.134000px;}
.y195{bottom:405.522000px;}
.y36{bottom:409.500000px;}
.y9f{bottom:411.234000px;}
.ydf{bottom:412.130400px;}
.ybe{bottom:412.734000px;}
.y12{bottom:416.468550px;}
.y5a{bottom:418.332000px;}
.y13f{bottom:418.932000px;}
.y103{bottom:423.786000px;}
.y194{bottom:424.422000px;}
.y166{bottom:424.986000px;}
.y7b{bottom:425.940000px;}
.y35{bottom:432.000000px;}
.y9e{bottom:433.734000px;}
.yde{bottom:434.630400px;}
.ybd{bottom:435.378000px;}
.y11{bottom:438.968550px;}
.y1ba{bottom:439.500000px;}
.y59{bottom:441.426000px;}
.y13e{bottom:442.026000px;}
.y102{bottom:445.692000px;}
.y165{bottom:447.936000px;}
.y7a{bottom:448.746000px;}
.y126{bottom:449.100000px;}
.y193{bottom:449.850000px;}
.y34{bottom:454.500000px;}
.y9d{bottom:456.234000px;}
.ydd{bottom:457.130400px;}
.y10{bottom:461.468550px;}
.y58{bottom:464.520000px;}
.y13d{bottom:465.120000px;}
.y101{bottom:467.598000px;}
.y164{bottom:470.886000px;}
.y79{bottom:471.552000px;}
.y33{bottom:477.000000px;}
.y9c{bottom:478.734000px;}
.ydc{bottom:479.630400px;}
.y1b9{bottom:480.750000px;}
.ybc{bottom:482.876550px;}
.yf{bottom:483.968550px;}
.y57{bottom:487.614000px;}
.y13c{bottom:488.214000px;}
.y125{bottom:489.480000px;}
.y100{bottom:489.504000px;}
.y163{bottom:493.692000px;}
.y78{bottom:494.358000px;}
.y192{bottom:495.150000px;}
.y150{bottom:495.360000px;}
.y32{bottom:499.500000px;}
.y9b{bottom:501.234000px;}
.ydb{bottom:502.130400px;}
.ye{bottom:506.468550px;}
.ybb{bottom:509.441550px;}
.y191{bottom:510.294000px;}
.y56{bottom:510.708000px;}
.y13b{bottom:511.308000px;}
.y124{bottom:511.386000px;}
.yff{bottom:511.410000px;}
.y162{bottom:516.498000px;}
.y77{bottom:517.164000px;}
.y1b8{bottom:518.250000px;}
.y31{bottom:522.000000px;}
.y9a{bottom:523.734000px;}
.yda{bottom:524.630400px;}
.y190{bottom:525.438000px;}
.yd{bottom:528.968550px;}
.y123{bottom:533.292000px;}
.yfe{bottom:533.316000px;}
.y55{bottom:533.802000px;}
.y13a{bottom:534.402000px;}
.yba{bottom:536.006550px;}
.y1b7{bottom:537.000000px;}
.y161{bottom:539.304000px;}
.y76{bottom:539.970000px;}
.y18f{bottom:540.582000px;}
.y30{bottom:544.500000px;}
.y99{bottom:546.234000px;}
.yd9{bottom:547.130400px;}
.yc{bottom:551.468550px;}
.y122{bottom:555.198000px;}
.yfd{bottom:555.222000px;}
.y18e{bottom:555.726000px;}
.y1b6{bottom:555.750000px;}
.y54{bottom:556.896000px;}
.y139{bottom:557.496000px;}
.y160{bottom:562.110000px;}
.yb9{bottom:562.571550px;}
.y75{bottom:562.776000px;}
.y2f{bottom:567.000000px;}
.y98{bottom:568.734000px;}
.y18d{bottom:570.870000px;}
.yb{bottom:573.968550px;}
.y1b5{bottom:574.500000px;}
.y121{bottom:577.104000px;}
.yfc{bottom:577.128000px;}
.y53{bottom:579.990000px;}
.y138{bottom:580.590000px;}
.y15f{bottom:584.916000px;}
.y74{bottom:585.582000px;}
.y18c{bottom:586.014000px;}
.yb8{bottom:589.136550px;}
.y2e{bottom:589.500000px;}
.y97{bottom:591.234000px;}
.y1b4{bottom:593.250000px;}
.ya{bottom:596.468550px;}
.y120{bottom:599.010000px;}
.yfb{bottom:599.034000px;}
.y18b{bottom:601.158000px;}
.y52{bottom:603.084000px;}
.yd8{bottom:603.508650px;}
.y137{bottom:603.684000px;}
.y15e{bottom:607.722000px;}
.y73{bottom:608.388000px;}
.y2d{bottom:612.000000px;}
.y96{bottom:613.734000px;}
.yb7{bottom:615.701550px;}
.y18a{bottom:616.302000px;}
.y9{bottom:618.968550px;}
.y11f{bottom:620.916000px;}
.yfa{bottom:620.940000px;}
.y51{bottom:626.178000px;}
.y136{bottom:626.778000px;}
.yd7{bottom:630.493650px;}
.y15d{bottom:630.528000px;}
.y1b3{bottom:630.750000px;}
.y72{bottom:631.194000px;}
.y189{bottom:631.446000px;}
.y2c{bottom:634.500000px;}
.y95{bottom:636.234000px;}
.y8{bottom:641.468550px;}
.yb6{bottom:642.266550px;}
.y11e{bottom:642.822000px;}
.yf9{bottom:642.846000px;}
.y188{bottom:646.590000px;}
.y50{bottom:649.272000px;}
.y1b2{bottom:649.500000px;}
.y135{bottom:649.872000px;}
.y15c{bottom:653.334000px;}
.y71{bottom:653.946000px;}
.y2b{bottom:657.000000px;}
.yd6{bottom:657.478650px;}
.y94{bottom:658.734000px;}
.y128{bottom:660.980400px;}
.y187{bottom:661.734000px;}
.y7{bottom:663.968550px;}
.y11d{bottom:664.728000px;}
.yf8{bottom:664.752000px;}
.y1b1{bottom:668.250000px;}
.yb5{bottom:668.831550px;}
.y14f{bottom:672.000000px;}
.y4f{bottom:672.366000px;}
.y134{bottom:672.966000px;}
.y15b{bottom:676.140000px;}
.y70{bottom:676.752000px;}
.y186{bottom:676.878000px;}
.y2a{bottom:679.500000px;}
.y127{bottom:680.480400px;}
.y93{bottom:681.234000px;}
.yd5{bottom:684.463650px;}
.y11c{bottom:686.634000px;}
.yf7{bottom:686.658000px;}
.y1b0{bottom:687.000000px;}
.y185{bottom:692.022000px;}
.yb4{bottom:695.396550px;}
.y4e{bottom:695.460000px;}
.y133{bottom:696.060000px;}
.y15a{bottom:698.946000px;}
.y6f{bottom:699.558000px;}
.y29{bottom:702.000000px;}
.y92{bottom:703.590000px;}
.y1af{bottom:705.750000px;}
.y184{bottom:707.166000px;}
.y11b{bottom:708.540000px;}
.yf6{bottom:708.564000px;}
.y6{bottom:708.968550px;}
.y4d{bottom:718.554000px;}
.y132{bottom:719.154000px;}
.y159{bottom:721.752000px;}
.yb3{bottom:721.961550px;}
.y183{bottom:722.310000px;}
.y6e{bottom:722.364000px;}
.yd4{bottom:724.200000px;}
.y28{bottom:724.500000px;}
.y91{bottom:725.946000px;}
.y5{bottom:727.718550px;}
.y11a{bottom:730.446000px;}
.yf5{bottom:730.470000px;}
.y182{bottom:737.454000px;}
.y4c{bottom:741.648000px;}
.y131{bottom:742.248000px;}
.y1ae{bottom:743.250000px;}
.y158{bottom:744.558000px;}
.y6d{bottom:745.170000px;}
.y27{bottom:747.000000px;}
.y90{bottom:748.302000px;}
.yb2{bottom:748.526550px;}
.y119{bottom:752.352000px;}
.yf4{bottom:752.376000px;}
.y181{bottom:752.598000px;}
.y14e{bottom:753.000000px;}
.y1ad{bottom:762.000000px;}
.y4b{bottom:764.742000px;}
.y130{bottom:765.342000px;}
.y157{bottom:767.364000px;}
.y180{bottom:767.742000px;}
.y6c{bottom:767.976000px;}
.yd3{bottom:769.206000px;}
.y26{bottom:769.500000px;}
.y4{bottom:769.854300px;}
.y8f{bottom:770.658000px;}
.y14d{bottom:772.500000px;}
.y118{bottom:774.258000px;}
.yf3{bottom:774.282000px;}
.yb1{bottom:775.091550px;}
.y1ac{bottom:780.750000px;}
.y17f{bottom:782.886000px;}
.y4a{bottom:787.836000px;}
.y12f{bottom:788.436000px;}
.y156{bottom:790.170000px;}
.y6b{bottom:790.782000px;}
.yd2{bottom:791.706000px;}
.y25{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y8e{bottom:793.014000px;}
.y117{bottom:796.164000px;}
.y17e{bottom:798.030000px;}
.y1ab{bottom:799.500000px;}
.yb0{bottom:801.656550px;}
.y49{bottom:810.930000px;}
.y12e{bottom:811.530000px;}
.y155{bottom:812.976000px;}
.y17d{bottom:813.174000px;}
.y6a{bottom:813.588000px;}
.yd1{bottom:814.206000px;}
.y24{bottom:814.500000px;}
.y8d{bottom:815.370000px;}
.y116{bottom:818.070000px;}
.yf2{bottom:818.076000px;}
.y1aa{bottom:818.250000px;}
.yaf{bottom:828.221550px;}
.y17c{bottom:828.330000px;}
.y48{bottom:834.024000px;}
.y12d{bottom:834.624000px;}
.y154{bottom:835.782000px;}
.y69{bottom:836.394000px;}
.yd0{bottom:836.706000px;}
.y23{bottom:837.000000px;}
.y8c{bottom:837.726000px;}
.y115{bottom:839.976000px;}
.yf1{bottom:839.982000px;}
.y17b{bottom:843.474000px;}
.yae{bottom:854.786550px;}
.y1a9{bottom:855.750000px;}
.y47{bottom:857.118000px;}
.y12c{bottom:857.718000px;}
.y153{bottom:858.588000px;}
.y17a{bottom:858.618000px;}
.y68{bottom:859.200000px;}
.ycf{bottom:859.206000px;}
.y2{bottom:859.500000px;}
.y8b{bottom:860.082000px;}
.y114{bottom:861.882000px;}
.yf0{bottom:861.888000px;}
.y179{bottom:873.762000px;}
.y1a8{bottom:874.500000px;}
.y46{bottom:880.212000px;}
.y12b{bottom:880.812000px;}
.yad{bottom:881.351550px;}
.y152{bottom:881.394000px;}
.yce{bottom:881.706000px;}
.y22{bottom:882.000000px;}
.y8a{bottom:882.438000px;}
.y113{bottom:883.788000px;}
.yef{bottom:883.794000px;}
.y178{bottom:888.906000px;}
.y1a7{bottom:893.250000px;}
.y45{bottom:903.306000px;}
.y12a{bottom:903.906000px;}
.y177{bottom:904.062000px;}
.y151{bottom:904.200000px;}
.ycd{bottom:904.206000px;}
.y21{bottom:904.500000px;}
.y89{bottom:904.794000px;}
.y112{bottom:905.694000px;}
.yee{bottom:905.700000px;}
.yac{bottom:907.916550px;}
.y1a6{bottom:912.000000px;}
.y176{bottom:919.206000px;}
.y44{bottom:926.400000px;}
.ycc{bottom:926.850000px;}
.y20{bottom:927.000000px;}
.y88{bottom:927.150000px;}
.yed{bottom:927.600000px;}
.y1a5{bottom:930.750000px;}
.yab{bottom:932.771550px;}
.y175{bottom:934.350000px;}
.h9{height:30.313623px;}
.he{height:39.072000px;}
.h1{height:39.990234px;}
.ha{height:40.757812px;}
.hd{height:42.000000px;}
.h7{height:47.988281px;}
.hb{height:48.840000px;}
.hc{height:49.980469px;}
.h3{height:50.580000px;}
.h5{height:50.947266px;}
.h4{height:59.976562px;}
.h6{height:61.136719px;}
.h8{height:66.771703px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.347750px;}
.x8{left:92.123850px;}
.x2{left:112.500000px;}
.x9{left:123.143850px;}
.x3{left:127.381800px;}
.xc{left:133.614750px;}
.xf{left:135.510000px;}
.xa{left:137.123850px;}
.xd{left:165.669750px;}
.xb{left:168.143850px;}
.xe{left:296.430000px;}
.x5{left:396.195750px;}
.x6{left:411.063750px;}
.x1{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls3e{letter-spacing:-6.400000pt;}
.ls23{letter-spacing:-3.776000pt;}
.ls60{letter-spacing:-3.573333pt;}
.ls56{letter-spacing:-3.200000pt;}
.ls22{letter-spacing:-2.496000pt;}
.ls5f{letter-spacing:-1.664000pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls2c{letter-spacing:-1.152000pt;}
.ls2f{letter-spacing:-1.088000pt;}
.ls1a{letter-spacing:-1.024000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls57{letter-spacing:-0.832000pt;}
.ls52{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4b{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.018133pt;}
.ls3d{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.089600pt;}
.ls58{letter-spacing:0.115200pt;}
.ls14{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls5c{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.300800pt;}
.ls28{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls38{letter-spacing:0.588800pt;}
.ls33{letter-spacing:0.595200pt;}
.ls39{letter-spacing:0.601600pt;}
.ls29{letter-spacing:0.608000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls46{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.832000pt;}
.ls5{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.152000pt;}
.ls53{letter-spacing:1.216000pt;}
.ls55{letter-spacing:1.408000pt;}
.ls40{letter-spacing:1.472000pt;}
.ls43{letter-spacing:1.600000pt;}
.ls15{letter-spacing:1.664000pt;}
.ls3c{letter-spacing:1.728000pt;}
.ls13{letter-spacing:1.856000pt;}
.ls3a{letter-spacing:1.984000pt;}
.ls4a{letter-spacing:2.080000pt;}
.ls30{letter-spacing:3.046400pt;}
.ls61{letter-spacing:3.253333pt;}
.ls62{letter-spacing:3.733333pt;}
.ls5e{letter-spacing:3.749333pt;}
.ls3f{letter-spacing:3.872000pt;}
.ls32{letter-spacing:3.929600pt;}
.ls2{letter-spacing:4.224000pt;}
.ls6{letter-spacing:4.256000pt;}
.ls41{letter-spacing:5.632000pt;}
.ls37{letter-spacing:6.848000pt;}
.ls4d{letter-spacing:6.969600pt;}
.ls51{letter-spacing:6.976000pt;}
.ls45{letter-spacing:7.168000pt;}
.ls48{letter-spacing:7.424000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls4{letter-spacing:7.520000pt;}
.ls4e{letter-spacing:7.616000pt;}
.ls42{letter-spacing:7.680000pt;}
.ls17{letter-spacing:7.744000pt;}
.ls49{letter-spacing:7.808000pt;}
.ls36{letter-spacing:7.846400pt;}
.ls54{letter-spacing:7.872000pt;}
.ls4f{letter-spacing:7.936000pt;}
.ls5b{letter-spacing:8.000000pt;}
.ls4c{letter-spacing:8.128000pt;}
.ls3b{letter-spacing:8.256000pt;}
.ls50{letter-spacing:8.320000pt;}
.ls47{letter-spacing:8.384000pt;}
.ls34{letter-spacing:8.448000pt;}
.ls5a{letter-spacing:8.576000pt;}
.ls59{letter-spacing:8.640000pt;}
.ls44{letter-spacing:9.280000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls20{letter-spacing:9.664000pt;}
.ls2a{letter-spacing:10.112000pt;}
.ws68{word-spacing:-23.488000pt;}
.ws58{word-spacing:-22.976000pt;}
.ws1{word-spacing:-22.506667pt;}
.ws28{word-spacing:-17.984000pt;}
.ws52{word-spacing:-17.280000pt;}
.ws29{word-spacing:-16.640000pt;}
.ws59{word-spacing:-16.512000pt;}
.ws3c{word-spacing:-16.448000pt;}
.ws2e{word-spacing:-16.384000pt;}
.ws60{word-spacing:-16.320000pt;}
.ws3b{word-spacing:-16.192000pt;}
.ws2c{word-spacing:-16.128000pt;}
.ws3e{word-spacing:-16.064000pt;}
.ws3d{word-spacing:-16.000000pt;}
.ws50{word-spacing:-15.936000pt;}
.ws3f{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws2d{word-spacing:-15.744000pt;}
.ws39{word-spacing:-15.680000pt;}
.ws40{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.552000pt;}
.ws2a{word-spacing:-15.488000pt;}
.ws3a{word-spacing:-15.424000pt;}
.ws2{word-spacing:-15.360000pt;}
.ws2b{word-spacing:-15.296000pt;}
.ws2f{word-spacing:-15.168000pt;}
.ws54{word-spacing:-14.986667pt;}
.ws13{word-spacing:-14.848000pt;}
.ws75{word-spacing:-13.173333pt;}
.ws69{word-spacing:-12.608000pt;}
.ws73{word-spacing:-12.202667pt;}
.ws74{word-spacing:-10.538667pt;}
.ws21{word-spacing:-9.664000pt;}
.ws76{word-spacing:-9.600000pt;}
.ws57{word-spacing:-9.280000pt;}
.ws70{word-spacing:-8.640000pt;}
.ws71{word-spacing:-8.576000pt;}
.ws5b{word-spacing:-8.384000pt;}
.ws65{word-spacing:-8.320000pt;}
.ws6f{word-spacing:-8.256000pt;}
.ws61{word-spacing:-8.128000pt;}
.ws72{word-spacing:-8.000000pt;}
.ws63{word-spacing:-7.936000pt;}
.ws6c{word-spacing:-7.872000pt;}
.ws5d{word-spacing:-7.808000pt;}
.ws41{word-spacing:-7.680000pt;}
.ws62{word-spacing:-7.616000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws30{word-spacing:-7.520000pt;}
.ws5c{word-spacing:-7.424000pt;}
.ws64{word-spacing:-7.168000pt;}
.ws66{word-spacing:-6.976000pt;}
.ws7a{word-spacing:-3.733333pt;}
.ws47{word-spacing:-1.984000pt;}
.ws1a{word-spacing:-1.856000pt;}
.ws48{word-spacing:-1.728000pt;}
.ws1d{word-spacing:-1.664000pt;}
.ws56{word-spacing:-1.600000pt;}
.ws6b{word-spacing:-1.408000pt;}
.ws6a{word-spacing:-1.216000pt;}
.ws19{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.024000pt;}
.ws18{word-spacing:-0.960000pt;}
.ws9{word-spacing:-0.896000pt;}
.ws33{word-spacing:-0.832000pt;}
.ws5a{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.512000pt;}
.ws35{word-spacing:-0.448000pt;}
.wsb{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.373333pt;}
.ws78{word-spacing:-0.341333pt;}
.ws34{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.256000pt;}
.ws77{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.128000pt;}
.wsc{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws22{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws16{word-spacing:0.256000pt;}
.wse{word-spacing:0.320000pt;}
.ws8{word-spacing:0.384000pt;}
.ws38{word-spacing:0.448000pt;}
.wsf{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.576000pt;}
.ws36{word-spacing:0.640000pt;}
.wsa{word-spacing:0.704000pt;}
.ws67{word-spacing:0.768000pt;}
.ws6e{word-spacing:0.832000pt;}
.ws6d{word-spacing:0.960000pt;}
.ws17{word-spacing:1.024000pt;}
.ws37{word-spacing:1.088000pt;}
.ws32{word-spacing:1.152000pt;}
.ws31{word-spacing:1.280000pt;}
.ws5{word-spacing:1.600000pt;}
.ws79{word-spacing:1.664000pt;}
.ws5e{word-spacing:1.920000pt;}
.ws5f{word-spacing:2.080000pt;}
.ws49{word-spacing:2.133333pt;}
.ws23{word-spacing:2.496000pt;}
.ws6{word-spacing:2.944000pt;}
.ws3{word-spacing:3.733333pt;}
.ws25{word-spacing:3.776000pt;}
.ws51{word-spacing:6.400000pt;}
.ws11{word-spacing:129.952000pt;}
.ws4b{word-spacing:450.666667pt;}
.ws4f{word-spacing:477.333333pt;}
.ws4d{word-spacing:495.840000pt;}
.ws43{word-spacing:501.333333pt;}
.ws44{word-spacing:511.248000pt;}
.ws4c{word-spacing:514.293333pt;}
.ws42{word-spacing:514.880000pt;}
.ws4e{word-spacing:517.280000pt;}
.ws4a{word-spacing:527.466667pt;}
.ws45{word-spacing:533.280000pt;}
.ws46{word-spacing:546.400000pt;}
.ws53{word-spacing:775.040000pt;}
.ws55{word-spacing:804.096000pt;}
._0{margin-left:-843.396267pt;}
._15{margin-left:-16.117333pt;}
._17{margin-left:-14.888533pt;}
._13{margin-left:-13.502933pt;}
._22{margin-left:-12.446933pt;}
._12{margin-left:-8.748800pt;}
._14{margin-left:-7.216000pt;}
._d{margin-left:-6.235733pt;}
._1{margin-left:-5.301333pt;}
._c{margin-left:-3.705600pt;}
._5{margin-left:-2.693333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._7{width:2.793600pt;}
._6{width:3.916800pt;}
._a{width:4.870400pt;}
._9{width:6.344533pt;}
._4{width:7.370667pt;}
._b{width:8.761600pt;}
._8{width:10.150400pt;}
._f{width:11.188267pt;}
._e{width:12.281600pt;}
._10{width:13.690667pt;}
._11{width:14.678400pt;}
._18{width:16.371200pt;}
._16{width:28.129867pt;}
._21{width:63.274667pt;}
._1f{width:85.358933pt;}
._1a{width:185.649067pt;}
._19{width:198.182400pt;}
._1e{width:204.585600pt;}
._20{width:392.693333pt;}
._1c{width:426.409600pt;}
._1d{width:442.945067pt;}
._1b{width:534.773333pt;}
.fs5{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y43{bottom:104.000000pt;}
.y111{bottom:104.090667pt;}
.y67{bottom:104.986667pt;}
.ycb{bottom:105.210667pt;}
.y14c{bottom:105.520000pt;}
.y174{bottom:106.181333pt;}
.yec{bottom:106.338133pt;}
.y1a4{bottom:108.464000pt;}
.y1f{bottom:110.194267pt;}
.yaa{bottom:111.168533pt;}
.y173{bottom:119.920000pt;}
.y87{bottom:121.073333pt;}
.y110{bottom:123.562667pt;}
.y42{bottom:124.000000pt;}
.y1a3{bottom:125.264000pt;}
.yca{bottom:125.338667pt;}
.y66{bottom:125.514667pt;}
.y14b{bottom:126.048000pt;}
.yeb{bottom:126.338133pt;}
.y1e{bottom:130.194267pt;}
.ya9{bottom:131.368533pt;}
.y172{bottom:133.648000pt;}
.y1a2{bottom:142.064000pt;}
.y10f{bottom:143.034667pt;}
.y41{bottom:144.000000pt;}
.yc9{bottom:145.466667pt;}
.y65{bottom:146.042667pt;}
.yea{bottom:146.338133pt;}
.y14a{bottom:146.576000pt;}
.y171{bottom:147.386667pt;}
.y1d{bottom:150.194267pt;}
.ya8{bottom:151.568533pt;}
.y86{bottom:155.621333pt;}
.y1a1{bottom:158.864000pt;}
.y170{bottom:161.125333pt;}
.y10e{bottom:162.506667pt;}
.y40{bottom:164.000000pt;}
.yc8{bottom:165.594667pt;}
.ye9{bottom:166.338133pt;}
.y64{bottom:166.570667pt;}
.y149{bottom:167.104000pt;}
.y1c{bottom:170.194267pt;}
.ya7{bottom:171.768533pt;}
.y16f{bottom:174.864000pt;}
.y1a0{bottom:175.664000pt;}
.y85{bottom:175.893333pt;}
.y10d{bottom:181.978667pt;}
.y3f{bottom:184.000000pt;}
.yc7{bottom:185.722667pt;}
.ye8{bottom:186.338133pt;}
.y63{bottom:187.098667pt;}
.y148{bottom:187.632000pt;}
.y1b{bottom:190.194267pt;}
.ya6{bottom:191.968533pt;}
.y19f{bottom:192.464000pt;}
.y16e{bottom:194.266667pt;}
.y84{bottom:196.165333pt;}
.y10c{bottom:201.450667pt;}
.y3e{bottom:204.000000pt;}
.yc6{bottom:205.850667pt;}
.ye7{bottom:206.338133pt;}
.y62{bottom:207.626667pt;}
.y147{bottom:208.160000pt;}
.y19e{bottom:209.264000pt;}
.y1a{bottom:210.194267pt;}
.ya5{bottom:212.168533pt;}
.y83{bottom:216.437333pt;}
.y10b{bottom:220.922667pt;}
.y3d{bottom:224.000000pt;}
.yc5{bottom:225.978667pt;}
.y19d{bottom:226.064000pt;}
.ye6{bottom:226.338133pt;}
.y61{bottom:228.154667pt;}
.y146{bottom:228.688000pt;}
.y19{bottom:230.194267pt;}
.y16d{bottom:234.965333pt;}
.y82{bottom:236.709333pt;}
.y10a{bottom:240.394667pt;}
.y19c{bottom:242.864000pt;}
.y3c{bottom:244.000000pt;}
.ya4{bottom:245.600000pt;}
.yc4{bottom:246.106667pt;}
.ye5{bottom:246.338133pt;}
.y60{bottom:248.682667pt;}
.y145{bottom:249.216000pt;}
.y18{bottom:250.194267pt;}
.y16c{bottom:255.365333pt;}
.y81{bottom:256.981333pt;}
.y19b{bottom:259.664000pt;}
.y109{bottom:259.866667pt;}
.y3b{bottom:264.000000pt;}
.yc3{bottom:266.234667pt;}
.ye4{bottom:266.338133pt;}
.y5f{bottom:269.210667pt;}
.y144{bottom:269.744000pt;}
.y17{bottom:270.194267pt;}
.y16b{bottom:275.765333pt;}
.y19a{bottom:276.464000pt;}
.y80{bottom:277.253333pt;}
.y108{bottom:279.338667pt;}
.y3a{bottom:284.000000pt;}
.ya3{bottom:285.541333pt;}
.ye3{bottom:286.338133pt;}
.yc2{bottom:286.362667pt;}
.y5e{bottom:289.738667pt;}
.y16{bottom:290.194267pt;}
.y143{bottom:290.272000pt;}
.y199{bottom:293.264000pt;}
.y16a{bottom:296.165333pt;}
.y7f{bottom:297.525333pt;}
.y107{bottom:298.810667pt;}
.y39{bottom:304.000000pt;}
.ya2{bottom:305.541333pt;}
.ye2{bottom:306.338133pt;}
.yc1{bottom:306.490667pt;}
.y198{bottom:310.064000pt;}
.y15{bottom:310.194267pt;}
.y5d{bottom:310.266667pt;}
.y142{bottom:310.800000pt;}
.y129{bottom:311.564800pt;}
.y1bd{bottom:314.000000pt;}
.y169{bottom:316.565333pt;}
.y7e{bottom:317.797333pt;}
.y106{bottom:318.282667pt;}
.y38{bottom:324.000000pt;}
.ya1{bottom:325.541333pt;}
.ye1{bottom:326.338133pt;}
.yc0{bottom:326.618667pt;}
.y197{bottom:326.864000pt;}
.y14{bottom:330.194267pt;}
.y1bc{bottom:330.666667pt;}
.y5c{bottom:330.794667pt;}
.y141{bottom:331.328000pt;}
.y168{bottom:336.965333pt;}
.y105{bottom:337.754667pt;}
.y7d{bottom:338.069333pt;}
.y196{bottom:343.664000pt;}
.y37{bottom:344.000000pt;}
.ya0{bottom:345.541333pt;}
.ye0{bottom:346.338133pt;}
.ybf{bottom:346.746667pt;}
.y1bb{bottom:347.333333pt;}
.y13{bottom:350.194267pt;}
.y5b{bottom:351.322667pt;}
.y140{bottom:351.856000pt;}
.y104{bottom:357.226667pt;}
.y167{bottom:357.365333pt;}
.y7c{bottom:358.341333pt;}
.y195{bottom:360.464000pt;}
.y36{bottom:364.000000pt;}
.y9f{bottom:365.541333pt;}
.ydf{bottom:366.338133pt;}
.ybe{bottom:366.874667pt;}
.y12{bottom:370.194267pt;}
.y5a{bottom:371.850667pt;}
.y13f{bottom:372.384000pt;}
.y103{bottom:376.698667pt;}
.y194{bottom:377.264000pt;}
.y166{bottom:377.765333pt;}
.y7b{bottom:378.613333pt;}
.y35{bottom:384.000000pt;}
.y9e{bottom:385.541333pt;}
.yde{bottom:386.338133pt;}
.ybd{bottom:387.002667pt;}
.y11{bottom:390.194267pt;}
.y1ba{bottom:390.666667pt;}
.y59{bottom:392.378667pt;}
.y13e{bottom:392.912000pt;}
.y102{bottom:396.170667pt;}
.y165{bottom:398.165333pt;}
.y7a{bottom:398.885333pt;}
.y126{bottom:399.200000pt;}
.y193{bottom:399.866667pt;}
.y34{bottom:404.000000pt;}
.y9d{bottom:405.541333pt;}
.ydd{bottom:406.338133pt;}
.y10{bottom:410.194267pt;}
.y58{bottom:412.906667pt;}
.y13d{bottom:413.440000pt;}
.y101{bottom:415.642667pt;}
.y164{bottom:418.565333pt;}
.y79{bottom:419.157333pt;}
.y33{bottom:424.000000pt;}
.y9c{bottom:425.541333pt;}
.ydc{bottom:426.338133pt;}
.y1b9{bottom:427.333333pt;}
.ybc{bottom:429.223600pt;}
.yf{bottom:430.194267pt;}
.y57{bottom:433.434667pt;}
.y13c{bottom:433.968000pt;}
.y125{bottom:435.093333pt;}
.y100{bottom:435.114667pt;}
.y163{bottom:438.837333pt;}
.y78{bottom:439.429333pt;}
.y192{bottom:440.133333pt;}
.y150{bottom:440.320000pt;}
.y32{bottom:444.000000pt;}
.y9b{bottom:445.541333pt;}
.ydb{bottom:446.338133pt;}
.ye{bottom:450.194267pt;}
.ybb{bottom:452.836933pt;}
.y191{bottom:453.594667pt;}
.y56{bottom:453.962667pt;}
.y13b{bottom:454.496000pt;}
.y124{bottom:454.565333pt;}
.yff{bottom:454.586667pt;}
.y162{bottom:459.109333pt;}
.y77{bottom:459.701333pt;}
.y1b8{bottom:460.666667pt;}
.y31{bottom:464.000000pt;}
.y9a{bottom:465.541333pt;}
.yda{bottom:466.338133pt;}
.y190{bottom:467.056000pt;}
.yd{bottom:470.194267pt;}
.y123{bottom:474.037333pt;}
.yfe{bottom:474.058667pt;}
.y55{bottom:474.490667pt;}
.y13a{bottom:475.024000pt;}
.yba{bottom:476.450267pt;}
.y1b7{bottom:477.333333pt;}
.y161{bottom:479.381333pt;}
.y76{bottom:479.973333pt;}
.y18f{bottom:480.517333pt;}
.y30{bottom:484.000000pt;}
.y99{bottom:485.541333pt;}
.yd9{bottom:486.338133pt;}
.yc{bottom:490.194267pt;}
.y122{bottom:493.509333pt;}
.yfd{bottom:493.530667pt;}
.y18e{bottom:493.978667pt;}
.y1b6{bottom:494.000000pt;}
.y54{bottom:495.018667pt;}
.y139{bottom:495.552000pt;}
.y160{bottom:499.653333pt;}
.yb9{bottom:500.063600pt;}
.y75{bottom:500.245333pt;}
.y2f{bottom:504.000000pt;}
.y98{bottom:505.541333pt;}
.y18d{bottom:507.440000pt;}
.yb{bottom:510.194267pt;}
.y1b5{bottom:510.666667pt;}
.y121{bottom:512.981333pt;}
.yfc{bottom:513.002667pt;}
.y53{bottom:515.546667pt;}
.y138{bottom:516.080000pt;}
.y15f{bottom:519.925333pt;}
.y74{bottom:520.517333pt;}
.y18c{bottom:520.901333pt;}
.yb8{bottom:523.676933pt;}
.y2e{bottom:524.000000pt;}
.y97{bottom:525.541333pt;}
.y1b4{bottom:527.333333pt;}
.ya{bottom:530.194267pt;}
.y120{bottom:532.453333pt;}
.yfb{bottom:532.474667pt;}
.y18b{bottom:534.362667pt;}
.y52{bottom:536.074667pt;}
.yd8{bottom:536.452133pt;}
.y137{bottom:536.608000pt;}
.y15e{bottom:540.197333pt;}
.y73{bottom:540.789333pt;}
.y2d{bottom:544.000000pt;}
.y96{bottom:545.541333pt;}
.yb7{bottom:547.290267pt;}
.y18a{bottom:547.824000pt;}
.y9{bottom:550.194267pt;}
.y11f{bottom:551.925333pt;}
.yfa{bottom:551.946667pt;}
.y51{bottom:556.602667pt;}
.y136{bottom:557.136000pt;}
.yd7{bottom:560.438800pt;}
.y15d{bottom:560.469333pt;}
.y1b3{bottom:560.666667pt;}
.y72{bottom:561.061333pt;}
.y189{bottom:561.285333pt;}
.y2c{bottom:564.000000pt;}
.y95{bottom:565.541333pt;}
.y8{bottom:570.194267pt;}
.yb6{bottom:570.903600pt;}
.y11e{bottom:571.397333pt;}
.yf9{bottom:571.418667pt;}
.y188{bottom:574.746667pt;}
.y50{bottom:577.130667pt;}
.y1b2{bottom:577.333333pt;}
.y135{bottom:577.664000pt;}
.y15c{bottom:580.741333pt;}
.y71{bottom:581.285333pt;}
.y2b{bottom:584.000000pt;}
.yd6{bottom:584.425467pt;}
.y94{bottom:585.541333pt;}
.y128{bottom:587.538133pt;}
.y187{bottom:588.208000pt;}
.y7{bottom:590.194267pt;}
.y11d{bottom:590.869333pt;}
.yf8{bottom:590.890667pt;}
.y1b1{bottom:594.000000pt;}
.yb5{bottom:594.516933pt;}
.y14f{bottom:597.333333pt;}
.y4f{bottom:597.658667pt;}
.y134{bottom:598.192000pt;}
.y15b{bottom:601.013333pt;}
.y70{bottom:601.557333pt;}
.y186{bottom:601.669333pt;}
.y2a{bottom:604.000000pt;}
.y127{bottom:604.871467pt;}
.y93{bottom:605.541333pt;}
.yd5{bottom:608.412133pt;}
.y11c{bottom:610.341333pt;}
.yf7{bottom:610.362667pt;}
.y1b0{bottom:610.666667pt;}
.y185{bottom:615.130667pt;}
.yb4{bottom:618.130267pt;}
.y4e{bottom:618.186667pt;}
.y133{bottom:618.720000pt;}
.y15a{bottom:621.285333pt;}
.y6f{bottom:621.829333pt;}
.y29{bottom:624.000000pt;}
.y92{bottom:625.413333pt;}
.y1af{bottom:627.333333pt;}
.y184{bottom:628.592000pt;}
.y11b{bottom:629.813333pt;}
.yf6{bottom:629.834667pt;}
.y6{bottom:630.194267pt;}
.y4d{bottom:638.714667pt;}
.y132{bottom:639.248000pt;}
.y159{bottom:641.557333pt;}
.yb3{bottom:641.743600pt;}
.y183{bottom:642.053333pt;}
.y6e{bottom:642.101333pt;}
.yd4{bottom:643.733333pt;}
.y28{bottom:644.000000pt;}
.y91{bottom:645.285333pt;}
.y5{bottom:646.860933pt;}
.y11a{bottom:649.285333pt;}
.yf5{bottom:649.306667pt;}
.y182{bottom:655.514667pt;}
.y4c{bottom:659.242667pt;}
.y131{bottom:659.776000pt;}
.y1ae{bottom:660.666667pt;}
.y158{bottom:661.829333pt;}
.y6d{bottom:662.373333pt;}
.y27{bottom:664.000000pt;}
.y90{bottom:665.157333pt;}
.yb2{bottom:665.356933pt;}
.y119{bottom:668.757333pt;}
.yf4{bottom:668.778667pt;}
.y181{bottom:668.976000pt;}
.y14e{bottom:669.333333pt;}
.y1ad{bottom:677.333333pt;}
.y4b{bottom:679.770667pt;}
.y130{bottom:680.304000pt;}
.y157{bottom:682.101333pt;}
.y180{bottom:682.437333pt;}
.y6c{bottom:682.645333pt;}
.yd3{bottom:683.738667pt;}
.y26{bottom:684.000000pt;}
.y4{bottom:684.314933pt;}
.y8f{bottom:685.029333pt;}
.y14d{bottom:686.666667pt;}
.y118{bottom:688.229333pt;}
.yf3{bottom:688.250667pt;}
.yb1{bottom:688.970267pt;}
.y1ac{bottom:694.000000pt;}
.y17f{bottom:695.898667pt;}
.y4a{bottom:700.298667pt;}
.y12f{bottom:700.832000pt;}
.y156{bottom:702.373333pt;}
.y6b{bottom:702.917333pt;}
.yd2{bottom:703.738667pt;}
.y25{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y8e{bottom:704.901333pt;}
.y117{bottom:707.701333pt;}
.y17e{bottom:709.360000pt;}
.y1ab{bottom:710.666667pt;}
.yb0{bottom:712.583600pt;}
.y49{bottom:720.826667pt;}
.y12e{bottom:721.360000pt;}
.y155{bottom:722.645333pt;}
.y17d{bottom:722.821333pt;}
.y6a{bottom:723.189333pt;}
.yd1{bottom:723.738667pt;}
.y24{bottom:724.000000pt;}
.y8d{bottom:724.773333pt;}
.y116{bottom:727.173333pt;}
.yf2{bottom:727.178667pt;}
.y1aa{bottom:727.333333pt;}
.yaf{bottom:736.196933pt;}
.y17c{bottom:736.293333pt;}
.y48{bottom:741.354667pt;}
.y12d{bottom:741.888000pt;}
.y154{bottom:742.917333pt;}
.y69{bottom:743.461333pt;}
.yd0{bottom:743.738667pt;}
.y23{bottom:744.000000pt;}
.y8c{bottom:744.645333pt;}
.y115{bottom:746.645333pt;}
.yf1{bottom:746.650667pt;}
.y17b{bottom:749.754667pt;}
.yae{bottom:759.810267pt;}
.y1a9{bottom:760.666667pt;}
.y47{bottom:761.882667pt;}
.y12c{bottom:762.416000pt;}
.y153{bottom:763.189333pt;}
.y17a{bottom:763.216000pt;}
.y68{bottom:763.733333pt;}
.ycf{bottom:763.738667pt;}
.y2{bottom:764.000000pt;}
.y8b{bottom:764.517333pt;}
.y114{bottom:766.117333pt;}
.yf0{bottom:766.122667pt;}
.y179{bottom:776.677333pt;}
.y1a8{bottom:777.333333pt;}
.y46{bottom:782.410667pt;}
.y12b{bottom:782.944000pt;}
.yad{bottom:783.423600pt;}
.y152{bottom:783.461333pt;}
.yce{bottom:783.738667pt;}
.y22{bottom:784.000000pt;}
.y8a{bottom:784.389333pt;}
.y113{bottom:785.589333pt;}
.yef{bottom:785.594667pt;}
.y178{bottom:790.138667pt;}
.y1a7{bottom:794.000000pt;}
.y45{bottom:802.938667pt;}
.y12a{bottom:803.472000pt;}
.y177{bottom:803.610667pt;}
.y151{bottom:803.733333pt;}
.ycd{bottom:803.738667pt;}
.y21{bottom:804.000000pt;}
.y89{bottom:804.261333pt;}
.y112{bottom:805.061333pt;}
.yee{bottom:805.066667pt;}
.yac{bottom:807.036933pt;}
.y1a6{bottom:810.666667pt;}
.y176{bottom:817.072000pt;}
.y44{bottom:823.466667pt;}
.ycc{bottom:823.866667pt;}
.y20{bottom:824.000000pt;}
.y88{bottom:824.133333pt;}
.yed{bottom:824.533333pt;}
.y1a5{bottom:827.333333pt;}
.yab{bottom:829.130267pt;}
.y175{bottom:830.533333pt;}
.h9{height:26.945443pt;}
.he{height:34.730667pt;}
.h1{height:35.546875pt;}
.ha{height:36.229167pt;}
.hd{height:37.333333pt;}
.h7{height:42.656250pt;}
.hb{height:43.413333pt;}
.hc{height:44.427083pt;}
.h3{height:44.960000pt;}
.h5{height:45.286458pt;}
.h4{height:53.312500pt;}
.h6{height:54.343750pt;}
.h8{height:59.352625pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.198000pt;}
.x8{left:81.887867pt;}
.x2{left:100.000000pt;}
.x9{left:109.461200pt;}
.x3{left:113.228267pt;}
.xc{left:118.768667pt;}
.xf{left:120.453333pt;}
.xa{left:121.887867pt;}
.xd{left:147.262000pt;}
.xb{left:149.461200pt;}
.xe{left:263.493333pt;}
.x5{left:352.174000pt;}
.x6{left:365.390000pt;}
.x1{left:556.250000pt;}
}




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