
    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_2c5b053355da6889e97db7ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943500;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_617a3c73843019ce95539e30.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_e54c64ce824dd47cf8f5d32a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948500;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_c4453e22b183156781d5ce3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918500;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_c3ca61c145c4f373feff1a6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_ef5b637f4075d386b209ec1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_f68d93a64eae3cda64108108.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923500;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_a7e3997871bf507428f7fd1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965500;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_75f8e9fe52b957dc91d66f73.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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_caca9da7104e1f177baf0aee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.733000;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_cf497d9d3f91bef8b00b529c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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_caca9da7104e1f177baf0aee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.733000;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_2390082edb291fbf2768a3ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.744500;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_1e54de54cd0bc939bceb46c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.862000;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_a3c88dcc2ef96047328a4557.woff2')format("woff");}.fff{font-family:fff;line-height:0.723000;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-32.400600px;}
.v6{vertical-align:-21.600000px;}
.v4{vertical-align:-18.900000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.600000px;}
.v2{vertical-align:32.400600px;}
.ls99{letter-spacing:-12.288000px;}
.ls84{letter-spacing:-3.504000px;}
.ls6a{letter-spacing:-3.285000px;}
.ls6b{letter-spacing:-3.105000px;}
.ls5a{letter-spacing:-2.496000px;}
.ls72{letter-spacing:-2.475000px;}
.ls6f{letter-spacing:-2.250000px;}
.ls2d{letter-spacing:-2.160000px;}
.ls77{letter-spacing:-2.115000px;}
.ls7c{letter-spacing:-2.112000px;}
.ls76{letter-spacing:-2.025000px;}
.ls6e{letter-spacing:-1.980000px;}
.ls1d{letter-spacing:-1.968000px;}
.ls71{letter-spacing:-1.935000px;}
.ls45{letter-spacing:-1.920000px;}
.ls65{letter-spacing:-1.845000px;}
.ls42{letter-spacing:-1.824000px;}
.ls48{letter-spacing:-1.776000px;}
.ls2f{letter-spacing:-1.680000px;}
.ls75{letter-spacing:-1.665000px;}
.ls92{letter-spacing:-1.620000px;}
.ls5b{letter-spacing:-1.488000px;}
.ls24{letter-spacing:-1.478400px;}
.ls14{letter-spacing:-1.404000px;}
.ls66{letter-spacing:-1.350000px;}
.ls64{letter-spacing:-1.305000px;}
.ls96{letter-spacing:-1.260000px;}
.ls90{letter-spacing:-1.215000px;}
.ls86{letter-spacing:-1.209600px;}
.ls5d{letter-spacing:-1.200000px;}
.ls73{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-1.050000px;}
.ls7{letter-spacing:-1.008000px;}
.ls70{letter-spacing:-0.990000px;}
.ls20{letter-spacing:-0.960000px;}
.ls62{letter-spacing:-0.945000px;}
.ls85{letter-spacing:-0.912000px;}
.ls79{letter-spacing:-0.900000px;}
.ls6c{letter-spacing:-0.855000px;}
.ls50{letter-spacing:-0.820056px;}
.ls78{letter-spacing:-0.810000px;}
.ls61{letter-spacing:-0.720000px;}
.ls51{letter-spacing:-0.711610px;}
.ls2b{letter-spacing:-0.705600px;}
.ls40{letter-spacing:-0.672000px;}
.ls68{letter-spacing:-0.585000px;}
.ls43{letter-spacing:-0.576000px;}
.ls53{letter-spacing:-0.574039px;}
.lsa{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.537600px;}
.ls4f{letter-spacing:-0.533036px;}
.ls49{letter-spacing:-0.528000px;}
.ls63{letter-spacing:-0.495000px;}
.ls46{letter-spacing:-0.480000px;}
.ls60{letter-spacing:-0.450000px;}
.ls7b{letter-spacing:-0.436800px;}
.ls35{letter-spacing:-0.432000px;}
.ls4c{letter-spacing:-0.410028px;}
.ls6d{letter-spacing:-0.405000px;}
.ls67{letter-spacing:-0.360000px;}
.ls56{letter-spacing:-0.315000px;}
.ls5e{letter-spacing:-0.240000px;}
.ls7e{letter-spacing:-0.235200px;}
.ls55{letter-spacing:-0.225000px;}
.ls74{letter-spacing:-0.180000px;}
.ls87{letter-spacing:-0.168000px;}
.lsb{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.134400px;}
.ls52{letter-spacing:-0.109478px;}
.ls93{letter-spacing:-0.090000px;}
.ls4e{letter-spacing:-0.082006px;}
.lsc{letter-spacing:-0.072000px;}
.ls4b{letter-spacing:-0.054739px;}
.ls17{letter-spacing:-0.054000px;}
.ls4d{letter-spacing:-0.041003px;}
.ls5{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.041003px;}
.ls1{letter-spacing:0.072000px;}
.ls3c{letter-spacing:0.082006px;}
.ls59{letter-spacing:0.096000px;}
.ls7f{letter-spacing:0.100800px;}
.ls97{letter-spacing:0.135000px;}
.ls41{letter-spacing:0.144000px;}
.ls44{letter-spacing:0.192000px;}
.ls47{letter-spacing:0.240000px;}
.ls2e{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.336000px;}
.ls57{letter-spacing:0.405000px;}
.ls1c{letter-spacing:0.432000px;}
.ls91{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.486000px;}
.ls98{letter-spacing:0.495000px;}
.ls7a{letter-spacing:0.503400px;}
.ls31{letter-spacing:0.528000px;}
.ls16{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.576000px;}
.ls94{letter-spacing:0.585000px;}
.ls32{letter-spacing:0.624000px;}
.ls8f{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.648000px;}
.ls30{letter-spacing:0.672000px;}
.ls95{letter-spacing:0.675000px;}
.lsf{letter-spacing:0.714000px;}
.ls9{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.756000px;}
.ls28{letter-spacing:0.768000px;}
.ls23{letter-spacing:0.772800px;}
.ls3{letter-spacing:0.778200px;}
.ls34{letter-spacing:0.806400px;}
.ls5f{letter-spacing:0.810000px;}
.ls7d{letter-spacing:0.816000px;}
.lse{letter-spacing:0.840000px;}
.ls54{letter-spacing:0.855000px;}
.ls89{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.882000px;}
.ls8e{letter-spacing:0.900000px;}
.ls33{letter-spacing:0.912000px;}
.ls4{letter-spacing:0.954600px;}
.ls3b{letter-spacing:0.960000px;}
.ls39{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.058400px;}
.ls1e{letter-spacing:1.108800px;}
.ls80{letter-spacing:1.176000px;}
.ls1f{letter-spacing:1.200000px;}
.ls81{letter-spacing:1.209600px;}
.ls27{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.299000px;}
.ls37{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.488000px;}
.ls38{letter-spacing:1.536000px;}
.ls69{letter-spacing:1.620000px;}
.ls26{letter-spacing:1.632000px;}
.ls83{letter-spacing:1.872000px;}
.ls58{letter-spacing:2.160000px;}
.ls8c{letter-spacing:2.208000px;}
.ls3f{letter-spacing:2.898000px;}
.ls36{letter-spacing:3.072000px;}
.ls1a{letter-spacing:4.752000px;}
.ls8a{letter-spacing:4.800000px;}
.ls8b{letter-spacing:5.136000px;}
.ls2c{letter-spacing:5.328000px;}
.ls88{letter-spacing:5.424000px;}
.ls8d{letter-spacing:5.904000px;}
.ls1b{letter-spacing:5.940000px;}
.ls19{letter-spacing:6.000000px;}
.ls5c{letter-spacing:6.420000px;}
.ls4a{letter-spacing:6.720000px;}
.ls82{letter-spacing:7.248000px;}
.ls25{letter-spacing:7.392000px;}
.ls18{letter-spacing:8.400000px;}
.ls8{letter-spacing:11.448000px;}
.ls0{letter-spacing:92.029800px;}
.ls3e{letter-spacing:545.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws67{word-spacing:-21.000000px;}
.ws24{word-spacing:-20.580000px;}
.ws19{word-spacing:-20.520000px;}
.ws7{word-spacing:-18.606000px;}
.wsab{word-spacing:-17.568000px;}
.wsa7{word-spacing:-17.088000px;}
.wsa9{word-spacing:-16.800000px;}
.ws5{word-spacing:-15.060000px;}
.ws99{word-spacing:-14.580000px;}
.wsaa{word-spacing:-14.496000px;}
.ws6{word-spacing:-14.472000px;}
.ws9e{word-spacing:-13.920000px;}
.ws25{word-spacing:-13.488000px;}
.ws68{word-spacing:-13.380000px;}
.ws1{word-spacing:-13.305600px;}
.wsa8{word-spacing:-13.152000px;}
.ws70{word-spacing:-13.140000px;}
.ws22{word-spacing:-13.008000px;}
.ws20{word-spacing:-12.576000px;}
.ws6d{word-spacing:-12.375000px;}
.ws4e{word-spacing:-12.316320px;}
.ws0{word-spacing:-12.247200px;}
.ws75{word-spacing:-12.240000px;}
.wsaf{word-spacing:-12.150000px;}
.wsac{word-spacing:-11.925000px;}
.ws6a{word-spacing:-11.790000px;}
.ws4d{word-spacing:-11.659450px;}
.wsb1{word-spacing:-11.655000px;}
.ws3{word-spacing:-11.466000px;}
.ws7b{word-spacing:-11.340000px;}
.wsad{word-spacing:-11.250000px;}
.wsae{word-spacing:-11.160000px;}
.ws4{word-spacing:-11.088000px;}
.ws6e{word-spacing:-11.070000px;}
.ws6c{word-spacing:-11.025000px;}
.wsb2{word-spacing:-10.980000px;}
.ws6f{word-spacing:-10.935000px;}
.wsa{word-spacing:-10.752000px;}
.ws80{word-spacing:-10.620000px;}
.ws6b{word-spacing:-10.575000px;}
.ws74{word-spacing:-10.530000px;}
.ws7a{word-spacing:-10.440000px;}
.wsb0{word-spacing:-10.260000px;}
.ws51{word-spacing:-10.215000px;}
.ws7c{word-spacing:-9.855000px;}
.ws9d{word-spacing:-9.811200px;}
.ws9c{word-spacing:-9.777600px;}
.ws1a{word-spacing:-9.710400px;}
.ws7f{word-spacing:-9.585000px;}
.ws73{word-spacing:-9.540000px;}
.ws7d{word-spacing:-9.495000px;}
.ws26{word-spacing:-9.441600px;}
.ws23{word-spacing:-9.408000px;}
.ws7e{word-spacing:-9.405000px;}
.ws1c{word-spacing:-9.374400px;}
.ws46{word-spacing:-9.348638px;}
.ws50{word-spacing:-9.307636px;}
.ws47{word-spacing:-9.266633px;}
.ws4b{word-spacing:-9.225630px;}
.ws4a{word-spacing:-9.184627px;}
.ws79{word-spacing:-9.045000px;}
.ws48{word-spacing:-8.856605px;}
.ws49{word-spacing:-8.733596px;}
.ws9b{word-spacing:-8.702400px;}
.ws4f{word-spacing:-8.692594px;}
.ws1b{word-spacing:-8.467200px;}
.ws4c{word-spacing:-8.446577px;}
.ws72{word-spacing:-8.415000px;}
.ws9a{word-spacing:-8.366400px;}
.ws71{word-spacing:-8.235000px;}
.ws98{word-spacing:-8.164800px;}
.ws1e{word-spacing:-8.064000px;}
.ws1f{word-spacing:-7.896000px;}
.ws2{word-spacing:-7.526400px;}
.ws2d{word-spacing:-7.392000px;}
.wsa2{word-spacing:-7.248000px;}
.ws1d{word-spacing:-7.123200px;}
.ws21{word-spacing:-6.921600px;}
.ws5e{word-spacing:-6.720000px;}
.ws27{word-spacing:-6.000000px;}
.ws34{word-spacing:-5.328000px;}
.wsb3{word-spacing:-4.800000px;}
.ws3f{word-spacing:-3.072000px;}
.wsb6{word-spacing:-2.925000px;}
.ws52{word-spacing:-2.898000px;}
.ws94{word-spacing:-2.160000px;}
.wsa3{word-spacing:-1.872000px;}
.wsc6{word-spacing:-1.845000px;}
.wsc0{word-spacing:-1.710000px;}
.ws2e{word-spacing:-1.632000px;}
.ws41{word-spacing:-1.536000px;}
.ws2c{word-spacing:-1.488000px;}
.ws40{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.296000px;}
.ws2a{word-spacing:-1.200000px;}
.wsb9{word-spacing:-1.125000px;}
.ws42{word-spacing:-1.008000px;}
.ws44{word-spacing:-0.960000px;}
.ws3d{word-spacing:-0.912000px;}
.wsb4{word-spacing:-0.900000px;}
.ws65{word-spacing:-0.855000px;}
.ws12{word-spacing:-0.840000px;}
.wsa1{word-spacing:-0.816000px;}
.wsb5{word-spacing:-0.810000px;}
.ws31{word-spacing:-0.768000px;}
.ws14{word-spacing:-0.756000px;}
.wsd{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.714000px;}
.wsbf{word-spacing:-0.675000px;}
.wsc{word-spacing:-0.648000px;}
.wsb7{word-spacing:-0.630000px;}
.ws97{word-spacing:-0.624000px;}
.wsbd{word-spacing:-0.585000px;}
.ws33{word-spacing:-0.576000px;}
.ws17{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.528000px;}
.ws15{word-spacing:-0.486000px;}
.ws32{word-spacing:-0.480000px;}
.wsba{word-spacing:-0.450000px;}
.ws28{word-spacing:-0.432000px;}
.ws8a{word-spacing:-0.405000px;}
.ws43{word-spacing:-0.336000px;}
.ws57{word-spacing:-0.288000px;}
.ws5b{word-spacing:-0.240000px;}
.ws58{word-spacing:-0.192000px;}
.ws54{word-spacing:-0.144000px;}
.ws84{word-spacing:-0.096000px;}
.ws62{word-spacing:-0.082006px;}
.ws10{word-spacing:-0.072000px;}
.ws61{word-spacing:-0.041003px;}
.ws8{word-spacing:0.000000px;}
.ws60{word-spacing:0.041003px;}
.ws18{word-spacing:0.054000px;}
.ws5f{word-spacing:0.054739px;}
.ws11{word-spacing:0.072000px;}
.ws63{word-spacing:0.082006px;}
.wsbc{word-spacing:0.090000px;}
.ws64{word-spacing:0.109478px;}
.wsf{word-spacing:0.144000px;}
.wsa6{word-spacing:0.168000px;}
.ws96{word-spacing:0.180000px;}
.ws66{word-spacing:0.225000px;}
.ws88{word-spacing:0.240000px;}
.ws8c{word-spacing:0.315000px;}
.ws90{word-spacing:0.360000px;}
.ws92{word-spacing:0.405000px;}
.ws3e{word-spacing:0.432000px;}
.ws89{word-spacing:0.450000px;}
.ws5a{word-spacing:0.480000px;}
.ws5d{word-spacing:0.528000px;}
.wse{word-spacing:0.540000px;}
.ws56{word-spacing:0.576000px;}
.ws53{word-spacing:0.672000px;}
.ws36{word-spacing:0.705600px;}
.ws8b{word-spacing:0.720000px;}
.ws95{word-spacing:0.810000px;}
.ws91{word-spacing:0.855000px;}
.wsa5{word-spacing:0.912000px;}
.ws2b{word-spacing:0.960000px;}
.wsb{word-spacing:1.008000px;}
.ws9{word-spacing:1.050000px;}
.wsa0{word-spacing:1.056000px;}
.wsb8{word-spacing:1.215000px;}
.ws8d{word-spacing:1.305000px;}
.ws8f{word-spacing:1.350000px;}
.wsc7{word-spacing:1.395000px;}
.ws16{word-spacing:1.404000px;}
.ws86{word-spacing:1.488000px;}
.wsbb{word-spacing:1.620000px;}
.wsc5{word-spacing:1.665000px;}
.ws5c{word-spacing:1.776000px;}
.ws55{word-spacing:1.824000px;}
.ws8e{word-spacing:1.845000px;}
.ws59{word-spacing:1.920000px;}
.ws29{word-spacing:1.968000px;}
.ws9f{word-spacing:2.112000px;}
.ws35{word-spacing:2.160000px;}
.ws93{word-spacing:2.250000px;}
.ws85{word-spacing:2.496000px;}
.wsc3{word-spacing:3.420000px;}
.wsc2{word-spacing:3.465000px;}
.wsa4{word-spacing:3.504000px;}
.ws37{word-spacing:3.696000px;}
.wsc9{word-spacing:3.735000px;}
.wsc1{word-spacing:5.040000px;}
.ws3b{word-spacing:5.568000px;}
.ws3c{word-spacing:5.664000px;}
.wsc8{word-spacing:5.760000px;}
.wsc4{word-spacing:5.850000px;}
.wsbe{word-spacing:6.345000px;}
.ws38{word-spacing:11.136000px;}
.ws39{word-spacing:11.376000px;}
.ws2f{word-spacing:11.424000px;}
.wsca{word-spacing:12.288000px;}
.ws3a{word-spacing:13.056000px;}
.ws83{word-spacing:277.285500px;}
.ws81{word-spacing:279.031500px;}
.ws76{word-spacing:281.313000px;}
.ws82{word-spacing:289.359000px;}
.ws77{word-spacing:289.746000px;}
.ws78{word-spacing:308.106000px;}
.ws69{word-spacing:365.323500px;}
.ws45{word-spacing:2465.448000px;}
._2d{margin-left:-12.596700px;}
._2c{margin-left:-7.650000px;}
._13{margin-left:-6.639600px;}
._b{margin-left:-4.644600px;}
._7{margin-left:-3.594000px;}
._6{margin-left:-2.400000px;}
._4{margin-left:-1.268400px;}
._2{width:1.360800px;}
._5{width:2.562000px;}
._a{width:3.812400px;}
._c{width:4.943400px;}
._8{width:6.452400px;}
._9{width:7.543800px;}
._3{width:9.450000px;}
._27{width:10.476000px;}
._d{width:11.485800px;}
._2b{width:13.253100px;}
._12{width:14.318400px;}
._e{width:15.379200px;}
._f{width:17.068800px;}
._29{width:20.070000px;}
._10{width:22.404000px;}
._11{width:23.563200px;}
._2a{width:25.155000px;}
._28{width:68.224200px;}
._18{width:136.454400px;}
._1a{width:157.773600px;}
._1c{width:211.044000px;}
._1e{width:229.843200px;}
._21{width:305.520000px;}
._1f{width:312.672600px;}
._24{width:326.506800px;}
._25{width:327.576000px;}
._14{width:330.391800px;}
._16{width:350.406000px;}
._22{width:366.563400px;}
._26{width:368.632200px;}
._23{width:370.300200px;}
._20{width:386.396400px;}
._19{width:389.779200px;}
._17{width:391.416000px;}
._1b{width:392.549400px;}
._15{width:415.021800px;}
._1d{width:424.013400px;}
._1{width:718.662000px;}
._0{width:1350.930000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:29.400000px;}
.fsb{font-size:33.600000px;}
.fsd{font-size:41.002800px;}
.fs0{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fsc{font-size:54.739200px;}
.fs1{font-size:57.540000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:78.120000px;}
.fs3{font-size:78.540000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.447800px;}
.y2{bottom:42.997800px;}
.yf{bottom:64.462650px;}
.y72{bottom:74.038650px;}
.y100{bottom:74.551800px;}
.y98{bottom:74.766300px;}
.ye9{bottom:75.948150px;}
.y160{bottom:76.444950px;}
.ybd{bottom:77.341650px;}
.ye{bottom:79.467150px;}
.yf5{bottom:84.316800px;}
.ye8{bottom:91.698150px;}
.y71{bottom:93.538650px;}
.yff{bottom:94.051800px;}
.y97{bottom:94.266300px;}
.yd{bottom:94.471650px;}
.y15f{bottom:95.944950px;}
.ybc{bottom:96.841650px;}
.yf4{bottom:103.816800px;}
.y198{bottom:109.453650px;}
.y70{bottom:113.038650px;}
.yfe{bottom:113.551800px;}
.y96{bottom:113.766300px;}
.y166{bottom:115.444950px;}
.ybb{bottom:116.341650px;}
.ye7{bottom:116.448150px;}
.yf3{bottom:123.316800px;}
.y1d3{bottom:125.057400px;}
.y197{bottom:125.203650px;}
.y6f{bottom:132.538650px;}
.yfd{bottom:133.051800px;}
.y95{bottom:133.266300px;}
.y15e{bottom:134.944950px;}
.yba{bottom:135.841650px;}
.ye6{bottom:137.508150px;}
.y196{bottom:140.953650px;}
.yf2{bottom:142.816800px;}
.y1d2{bottom:144.557400px;}
.y6e{bottom:152.038650px;}
.yfc{bottom:152.551800px;}
.y94{bottom:152.766300px;}
.y165{bottom:154.444950px;}
.yb9{bottom:155.341650px;}
.y195{bottom:156.703650px;}
.ye5{bottom:158.568150px;}
.yf1{bottom:162.316800px;}
.y1d1{bottom:164.057400px;}
.y6d{bottom:171.538650px;}
.yfb{bottom:172.051800px;}
.y93{bottom:172.266300px;}
.y194{bottom:172.453650px;}
.y164{bottom:173.944950px;}
.yb8{bottom:174.841650px;}
.ye4{bottom:179.628150px;}
.yf0{bottom:181.816800px;}
.y1d0{bottom:183.557400px;}
.y193{bottom:188.203650px;}
.y6c{bottom:191.038650px;}
.yfa{bottom:191.551800px;}
.y92{bottom:191.766300px;}
.y15d{bottom:193.444950px;}
.yb7{bottom:194.341650px;}
.ye3{bottom:200.688150px;}
.yef{bottom:201.316800px;}
.y1cf{bottom:203.057400px;}
.y192{bottom:203.953650px;}
.y6b{bottom:210.538650px;}
.yf9{bottom:211.051800px;}
.y91{bottom:211.266300px;}
.y15c{bottom:212.944950px;}
.yb6{bottom:213.841650px;}
.y191{bottom:219.703650px;}
.yee{bottom:220.816800px;}
.ye2{bottom:221.748150px;}
.y6a{bottom:230.038650px;}
.y90{bottom:230.766300px;}
.y15b{bottom:232.444950px;}
.yb5{bottom:233.341650px;}
.y190{bottom:235.453650px;}
.yf8{bottom:240.301800px;}
.yed{bottom:240.316800px;}
.ye1{bottom:242.808150px;}
.y69{bottom:249.538650px;}
.y8f{bottom:250.266300px;}
.y18f{bottom:251.203650px;}
.y15a{bottom:251.944950px;}
.yb4{bottom:252.841650px;}
.y3b{bottom:254.951700px;}
.y1ce{bottom:256.307400px;}
.yf7{bottom:259.801800px;}
.yec{bottom:259.816800px;}
.ye0{bottom:263.868150px;}
.y18e{bottom:266.953650px;}
.y68{bottom:269.038650px;}
.y8e{bottom:269.766300px;}
.y159{bottom:271.444950px;}
.y1cd{bottom:272.057400px;}
.yb3{bottom:272.341650px;}
.y3a{bottom:274.451700px;}
.yeb{bottom:279.316800px;}
.y18d{bottom:282.703650px;}
.yde{bottom:287.774400px;}
.y1cc{bottom:287.807400px;}
.y67{bottom:288.538650px;}
.y8d{bottom:289.266300px;}
.y158{bottom:290.944950px;}
.yb2{bottom:291.841650px;}
.y39{bottom:293.951700px;}
.y18c{bottom:298.453650px;}
.yf6{bottom:298.801800px;}
.yea{bottom:298.816800px;}
.ydf{bottom:303.524400px;}
.y1cb{bottom:303.557400px;}
.y66{bottom:308.038650px;}
.y8c{bottom:308.766300px;}
.y157{bottom:310.444950px;}
.yb1{bottom:311.341650px;}
.y18b{bottom:314.203650px;}
.y1ca{bottom:319.307400px;}
.y65{bottom:327.538650px;}
.y8b{bottom:328.266300px;}
.y38{bottom:329.847450px;}
.y156{bottom:329.944950px;}
.y18a{bottom:329.953650px;}
.yb0{bottom:330.841650px;}
.ydd{bottom:331.555500px;}
.y1c9{bottom:335.057400px;}
.y129{bottom:335.457450px;}
.y189{bottom:345.703650px;}
.y64{bottom:347.038650px;}
.y8a{bottom:347.766300px;}
.ydc{bottom:348.055500px;}
.y155{bottom:349.444950px;}
.yaf{bottom:350.341650px;}
.y1c8{bottom:350.807400px;}
.y37{bottom:352.351950px;}
.y128{bottom:355.707450px;}
.y188{bottom:361.453650px;}
.ydb{bottom:364.555500px;}
.y63{bottom:366.538650px;}
.y1c7{bottom:366.557400px;}
.y89{bottom:367.266300px;}
.y154{bottom:368.944950px;}
.yae{bottom:369.841650px;}
.y127{bottom:371.457450px;}
.y36{bottom:374.856450px;}
.y187{bottom:377.203650px;}
.y1c6{bottom:382.307400px;}
.y62{bottom:386.038650px;}
.y88{bottom:386.766300px;}
.y153{bottom:388.444950px;}
.yad{bottom:389.341650px;}
.y186{bottom:392.953650px;}
.y126{bottom:396.207450px;}
.y35{bottom:397.360950px;}
.y1c5{bottom:398.057400px;}
.y61{bottom:405.538650px;}
.y87{bottom:406.266300px;}
.y152{bottom:407.944950px;}
.y185{bottom:408.703650px;}
.yac{bottom:408.841650px;}
.y125{bottom:411.957450px;}
.y1c4{bottom:413.807400px;}
.y34{bottom:419.865450px;}
.y184{bottom:424.453650px;}
.y60{bottom:425.038650px;}
.y86{bottom:425.766300px;}
.y151{bottom:427.444950px;}
.yab{bottom:428.341650px;}
.y1c3{bottom:429.557400px;}
.y124{bottom:433.017450px;}
.y183{bottom:440.203650px;}
.y33{bottom:442.369950px;}
.y5f{bottom:444.538650px;}
.y85{bottom:445.266300px;}
.y1c2{bottom:445.307400px;}
.y150{bottom:446.944950px;}
.yaa{bottom:447.841650px;}
.y123{bottom:448.767450px;}
.y182{bottom:455.953650px;}
.y1c1{bottom:461.057400px;}
.y5e{bottom:464.038650px;}
.y122{bottom:464.517450px;}
.y84{bottom:464.766300px;}
.y32{bottom:464.874450px;}
.y14f{bottom:466.444950px;}
.ya9{bottom:467.341650px;}
.y181{bottom:471.703650px;}
.y1c0{bottom:476.807400px;}
.y121{bottom:480.267450px;}
.y5d{bottom:483.538650px;}
.y83{bottom:484.266300px;}
.y22{bottom:485.028600px;}
.y14e{bottom:485.944950px;}
.ya8{bottom:486.841650px;}
.y31{bottom:487.378950px;}
.y180{bottom:487.453650px;}
.y1bf{bottom:492.557400px;}
.y120{bottom:501.327450px;}
.y5c{bottom:503.038650px;}
.y17f{bottom:503.203650px;}
.y82{bottom:503.766300px;}
.y14d{bottom:505.444950px;}
.ya7{bottom:506.341650px;}
.y1be{bottom:508.307400px;}
.y30{bottom:509.883450px;}
.y21{bottom:515.027100px;}
.y11f{bottom:517.077450px;}
.y17e{bottom:518.953650px;}
.y5b{bottom:522.538650px;}
.y81{bottom:523.266300px;}
.y1bd{bottom:524.057400px;}
.y14c{bottom:524.944950px;}
.ya6{bottom:525.841650px;}
.y20{bottom:530.031600px;}
.y2f{bottom:532.387950px;}
.y11e{bottom:532.827450px;}
.y17d{bottom:534.703650px;}
.y1bc{bottom:539.807400px;}
.y5a{bottom:542.038650px;}
.y80{bottom:542.766300px;}
.y163{bottom:544.444950px;}
.y1f{bottom:545.036100px;}
.ya5{bottom:545.341650px;}
.y11d{bottom:548.577450px;}
.y17c{bottom:550.453650px;}
.y14b{bottom:554.194950px;}
.y2e{bottom:554.892450px;}
.y1bb{bottom:555.557400px;}
.y1e{bottom:560.040600px;}
.y59{bottom:561.538650px;}
.y7f{bottom:562.266300px;}
.y162{bottom:563.944950px;}
.ya4{bottom:564.841650px;}
.y17b{bottom:566.203650px;}
.y11c{bottom:569.637450px;}
.y1ba{bottom:571.307400px;}
.y2d{bottom:577.396950px;}
.y58{bottom:581.038650px;}
.y7e{bottom:581.766300px;}
.y17a{bottom:581.953650px;}
.y161{bottom:583.444950px;}
.ya3{bottom:584.341650px;}
.y11b{bottom:585.387450px;}
.y1b9{bottom:587.057400px;}
.y1d{bottom:590.039100px;}
.y179{bottom:597.703650px;}
.y2c{bottom:599.901450px;}
.y57{bottom:600.538650px;}
.y7d{bottom:601.266300px;}
.y1b8{bottom:602.807400px;}
.y14a{bottom:602.944950px;}
.y1c{bottom:605.043600px;}
.y11a{bottom:606.447450px;}
.y178{bottom:613.453650px;}
.yc0{bottom:616.501500px;}
.y1b7{bottom:618.557400px;}
.y56{bottom:620.038650px;}
.y1b{bottom:620.048100px;}
.y7c{bottom:620.766300px;}
.y119{bottom:622.197450px;}
.y2b{bottom:622.405950px;}
.y149{bottom:622.444950px;}
.y177{bottom:629.203650px;}
.ybf{bottom:633.001500px;}
.y1b6{bottom:634.307400px;}
.y1a{bottom:635.052600px;}
.y118{bottom:637.947450px;}
.y55{bottom:639.538650px;}
.y7b{bottom:640.266300px;}
.y148{bottom:641.944950px;}
.y2a{bottom:644.910450px;}
.y176{bottom:644.953650px;}
.ybe{bottom:649.501500px;}
.y19{bottom:650.057100px;}
.y1b5{bottom:650.057400px;}
.y117{bottom:653.697450px;}
.y54{bottom:659.038650px;}
.y175{bottom:660.703650px;}
.y147{bottom:661.444950px;}
.y1b4{bottom:665.807400px;}
.y29{bottom:667.414950px;}
.y116{bottom:674.757450px;}
.y174{bottom:676.453650px;}
.y53{bottom:678.538650px;}
.y7a{bottom:679.266300px;}
.y18{bottom:680.055600px;}
.y146{bottom:680.944950px;}
.y1b3{bottom:681.557400px;}
.yc9{bottom:683.045820px;}
.y130{bottom:686.284950px;}
.yd6{bottom:689.747820px;}
.y28{bottom:689.919450px;}
.y115{bottom:690.507450px;}
.yc8{bottom:695.346660px;}
.y1b2{bottom:697.307400px;}
.y52{bottom:698.038650px;}
.y17{bottom:699.784950px;}
.y145{bottom:700.444950px;}
.yd5{bottom:702.048660px;}
.y12f{bottom:702.784950px;}
.y173{bottom:705.709650px;}
.y114{bottom:706.257450px;}
.yc7{bottom:707.647500px;}
.y27{bottom:712.423950px;}
.y1b1{bottom:713.057400px;}
.yd4{bottom:714.349500px;}
.y16{bottom:714.555600px;}
.y51{bottom:717.538650px;}
.y12e{bottom:719.284950px;}
.y144{bottom:719.944950px;}
.y113{bottom:722.007450px;}
.y1b0{bottom:728.807400px;}
.y15{bottom:734.284950px;}
.y26{bottom:734.928450px;}
.y12d{bottom:735.784950px;}
.y50{bottom:737.038650px;}
.y79{bottom:737.766300px;}
.y143{bottom:739.444950px;}
.y1af{bottom:744.557400px;}
.y10f{bottom:745.913700px;}
.y14{bottom:749.055450px;}
.y12c{bottom:752.284950px;}
.yc6{bottom:753.475320px;}
.y4f{bottom:756.538650px;}
.y78{bottom:757.266300px;}
.y25{bottom:757.432950px;}
.yd3{bottom:757.784970px;}
.y142{bottom:758.944950px;}
.y172{bottom:758.953650px;}
.y1ae{bottom:760.307400px;}
.y112{bottom:761.663700px;}
.yc5{bottom:765.776160px;}
.y13{bottom:768.784950px;}
.yd2{bottom:770.085810px;}
.y4e{bottom:776.038650px;}
.y1ad{bottom:776.057400px;}
.y77{bottom:776.766300px;}
.y111{bottom:777.413700px;}
.yc4{bottom:778.077000px;}
.y141{bottom:778.444950px;}
.y24{bottom:779.937450px;}
.yd1{bottom:782.386650px;}
.y12{bottom:783.550950px;}
.y12b{bottom:785.284950px;}
.y171{bottom:788.209650px;}
.y1ac{bottom:791.807400px;}
.y110{bottom:793.163700px;}
.y4d{bottom:795.538650px;}
.y76{bottom:796.266300px;}
.y140{bottom:797.944950px;}
.y11{bottom:798.555450px;}
.y12a{bottom:801.784950px;}
.y23{bottom:802.437450px;}
.y1ab{bottom:807.557400px;}
.y4c{bottom:815.038650px;}
.y75{bottom:815.766300px;}
.y13f{bottom:817.444950px;}
.y10{bottom:818.284950px;}
.y1aa{bottom:823.307400px;}
.yd8{bottom:829.656810px;}
.ycb{bottom:833.609160px;}
.y4b{bottom:834.538650px;}
.y74{bottom:835.266300px;}
.y13e{bottom:836.944950px;}
.y170{bottom:836.953650px;}
.y1a9{bottom:839.057400px;}
.y10e{bottom:839.577450px;}
.yd7{bottom:841.957650px;}
.yca{bottom:845.910000px;}
.y4a{bottom:854.038650px;}
.y73{bottom:854.770650px;}
.y1a8{bottom:854.807400px;}
.y13d{bottom:856.444950px;}
.y10d{bottom:864.327450px;}
.yc{bottom:865.506300px;}
.y16f{bottom:866.209650px;}
.y1a7{bottom:870.557400px;}
.y49{bottom:873.538650px;}
.y13c{bottom:875.944950px;}
.y10c{bottom:880.077450px;}
.y1a6{bottom:886.307400px;}
.y48{bottom:893.038650px;}
.y13b{bottom:895.444950px;}
.yb{bottom:895.512300px;}
.ycd{bottom:895.584660px;}
.yda{bottom:896.540160px;}
.y10b{bottom:901.137450px;}
.y1a5{bottom:902.057400px;}
.ycc{bottom:907.885500px;}
.yd9{bottom:908.841000px;}
.y47{bottom:912.538650px;}
.y13a{bottom:914.944950px;}
.y16e{bottom:914.953650px;}
.y10a{bottom:916.887450px;}
.y1a4{bottom:917.807400px;}
.ya0{bottom:918.426300px;}
.y46{bottom:932.038650px;}
.y1a3{bottom:933.557400px;}
.y139{bottom:934.444950px;}
.y16d{bottom:934.453650px;}
.y9f{bottom:937.926300px;}
.y109{bottom:937.947450px;}
.y1a2{bottom:949.307400px;}
.y45{bottom:951.538650px;}
.y108{bottom:953.697450px;}
.y138{bottom:953.944950px;}
.y16c{bottom:953.953650px;}
.ya{bottom:954.006300px;}
.y9e{bottom:957.426300px;}
.yd0{bottom:958.432260px;}
.yc3{bottom:959.542860px;}
.y1a1{bottom:965.057400px;}
.ycf{bottom:970.733100px;}
.y44{bottom:971.038650px;}
.yc2{bottom:971.843700px;}
.y137{bottom:973.444950px;}
.y107{bottom:974.757450px;}
.y9d{bottom:976.926300px;}
.y1a0{bottom:980.807400px;}
.y16b{bottom:983.209650px;}
.y9{bottom:988.512300px;}
.y106{bottom:990.507450px;}
.y43{bottom:990.538650px;}
.y136{bottom:992.944950px;}
.y9c{bottom:996.426300px;}
.y19f{bottom:996.557400px;}
.y42{bottom:1010.038650px;}
.y19e{bottom:1012.307400px;}
.y135{bottom:1012.444950px;}
.yce{bottom:1012.577850px;}
.yc1{bottom:1013.365200px;}
.y103{bottom:1014.413700px;}
.y9b{bottom:1015.926300px;}
.y19d{bottom:1028.057400px;}
.y41{bottom:1029.538650px;}
.y104{bottom:1030.163700px;}
.y134{bottom:1031.944950px;}
.y16a{bottom:1031.953650px;}
.y8{bottom:1035.012300px;}
.y9a{bottom:1035.426300px;}
.y19c{bottom:1043.807400px;}
.y105{bottom:1045.913700px;}
.y40{bottom:1049.038650px;}
.y133{bottom:1051.444950px;}
.y169{bottom:1051.453650px;}
.y7{bottom:1059.012300px;}
.y19b{bottom:1059.557400px;}
.y99{bottom:1063.926300px;}
.y132{bottom:1070.944950px;}
.y168{bottom:1070.953650px;}
.y102{bottom:1073.947800px;}
.y19a{bottom:1075.307400px;}
.y3f{bottom:1090.438650px;}
.y131{bottom:1090.444950px;}
.y101{bottom:1090.447800px;}
.y167{bottom:1090.453650px;}
.y199{bottom:1091.057400px;}
.y6{bottom:1099.573650px;}
.y5{bottom:1118.319150px;}
.y4{bottom:1121.319150px;}
.ya2{bottom:1126.684950px;}
.y3d{bottom:1126.685700px;}
.y3e{bottom:1129.263000px;}
.ya1{bottom:1129.384950px;}
.y3c{bottom:1129.385700px;}
.y3{bottom:1157.521800px;}
.h5{height:0.000000px;}
.hc{height:22.535100px;}
.h1b{height:28.045915px;}
.h13{height:30.429000px;}
.h11{height:30.576000px;}
.h19{height:30.941400px;}
.hd{height:31.206000px;}
.h4{height:32.193000px;}
.h2{height:32.571000px;}
.h1d{height:33.435000px;}
.h1f{height:34.492500px;}
.h1e{height:34.897500px;}
.h1c{height:35.325000px;}
.h8{height:36.072000px;}
.h22{height:36.792000px;}
.h10{height:37.224000px;}
.h1a{height:37.441613px;}
.h21{height:37.680000px;}
.h18{height:39.177000px;}
.h7{height:40.581000px;}
.hf{height:41.877000px;}
.h3{height:44.104410px;}
.he{height:44.580000px;}
.h14{height:47.100000px;}
.h17{height:47.337000px;}
.h16{height:47.354400px;}
.h20{height:47.656200px;}
.h15{height:47.656800px;}
.h12{height:60.191460px;}
.h6{height:60.200910px;}
.ha{height:69.847800px;}
.hb{height:69.871800px;}
.h9{height:80.244000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:67.181100px;}
.x1{left:69.732300px;}
.x2a{left:76.181100px;}
.x28{left:78.732300px;}
.x2d{left:82.188600px;}
.xe{left:86.746500px;}
.x12{left:89.189700px;}
.x38{left:93.481950px;}
.x2{left:98.564850px;}
.x3{left:101.194950px;}
.x4{left:113.176500px;}
.x18{left:206.464890px;}
.x17{left:214.665450px;}
.x6{left:220.245150px;}
.x7{left:222.875250px;}
.x1b{left:225.916950px;}
.x15{left:236.460900px;}
.x16{left:244.177121px;}
.x19{left:245.366400px;}
.x1a{left:246.801498px;}
.x2b{left:296.051100px;}
.xa{left:313.216050px;}
.x37{left:321.453600px;}
.x2e{left:330.431100px;}
.x8{left:348.268950px;}
.x9{left:350.899050px;}
.x29{left:368.757300px;}
.x2f{left:421.702350px;}
.x33{left:427.721100px;}
.xf{left:458.718150px;}
.x13{left:461.213700px;}
.x39{left:476.735100px;}
.x10{left:478.213650px;}
.x14{left:480.713700px;}
.x11{left:484.202100px;}
.x30{left:524.684850px;}
.x34{left:530.692350px;}
.x24{left:573.752508px;}
.x21{left:574.975936px;}
.x1f{left:583.227750px;}
.x22{left:584.618250px;}
.x20{left:587.943072px;}
.x23{left:589.333572px;}
.x1d{left:592.379400px;}
.x26{left:595.721400px;}
.x2c{left:601.364850px;}
.x25{left:605.274750px;}
.x1c{left:607.899750px;}
.x1e{left:615.443475px;}
.x27{left:616.530321px;}
.x31{left:628.319850px;}
.x35{left:634.327350px;}
.x32{left:731.088600px;}
.x36{left:737.096100px;}
.xb{left:767.875500px;}
.xc{left:792.172500px;}
.xd{left:794.421600px;}
@media print{
.v3{vertical-align:-28.800533pt;}
.v6{vertical-align:-19.200000pt;}
.v4{vertical-align:-16.800000pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.200000pt;}
.v2{vertical-align:28.800533pt;}
.ls99{letter-spacing:-10.922667pt;}
.ls84{letter-spacing:-3.114667pt;}
.ls6a{letter-spacing:-2.920000pt;}
.ls6b{letter-spacing:-2.760000pt;}
.ls5a{letter-spacing:-2.218667pt;}
.ls72{letter-spacing:-2.200000pt;}
.ls6f{letter-spacing:-2.000000pt;}
.ls2d{letter-spacing:-1.920000pt;}
.ls77{letter-spacing:-1.880000pt;}
.ls7c{letter-spacing:-1.877333pt;}
.ls76{letter-spacing:-1.800000pt;}
.ls6e{letter-spacing:-1.760000pt;}
.ls1d{letter-spacing:-1.749333pt;}
.ls71{letter-spacing:-1.720000pt;}
.ls45{letter-spacing:-1.706667pt;}
.ls65{letter-spacing:-1.640000pt;}
.ls42{letter-spacing:-1.621333pt;}
.ls48{letter-spacing:-1.578667pt;}
.ls2f{letter-spacing:-1.493333pt;}
.ls75{letter-spacing:-1.480000pt;}
.ls92{letter-spacing:-1.440000pt;}
.ls5b{letter-spacing:-1.322667pt;}
.ls24{letter-spacing:-1.314133pt;}
.ls14{letter-spacing:-1.248000pt;}
.ls66{letter-spacing:-1.200000pt;}
.ls64{letter-spacing:-1.160000pt;}
.ls96{letter-spacing:-1.120000pt;}
.ls90{letter-spacing:-1.080000pt;}
.ls86{letter-spacing:-1.075200pt;}
.ls5d{letter-spacing:-1.066667pt;}
.ls73{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.933333pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls70{letter-spacing:-0.880000pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls62{letter-spacing:-0.840000pt;}
.ls85{letter-spacing:-0.810667pt;}
.ls79{letter-spacing:-0.800000pt;}
.ls6c{letter-spacing:-0.760000pt;}
.ls50{letter-spacing:-0.728939pt;}
.ls78{letter-spacing:-0.720000pt;}
.ls61{letter-spacing:-0.640000pt;}
.ls51{letter-spacing:-0.632542pt;}
.ls2b{letter-spacing:-0.627200pt;}
.ls40{letter-spacing:-0.597333pt;}
.ls68{letter-spacing:-0.520000pt;}
.ls43{letter-spacing:-0.512000pt;}
.ls53{letter-spacing:-0.510257pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.477867pt;}
.ls4f{letter-spacing:-0.473810pt;}
.ls49{letter-spacing:-0.469333pt;}
.ls63{letter-spacing:-0.440000pt;}
.ls46{letter-spacing:-0.426667pt;}
.ls60{letter-spacing:-0.400000pt;}
.ls7b{letter-spacing:-0.388267pt;}
.ls35{letter-spacing:-0.384000pt;}
.ls4c{letter-spacing:-0.364469pt;}
.ls6d{letter-spacing:-0.360000pt;}
.ls67{letter-spacing:-0.320000pt;}
.ls56{letter-spacing:-0.280000pt;}
.ls5e{letter-spacing:-0.213333pt;}
.ls7e{letter-spacing:-0.209067pt;}
.ls55{letter-spacing:-0.200000pt;}
.ls74{letter-spacing:-0.160000pt;}
.ls87{letter-spacing:-0.149333pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.119467pt;}
.ls52{letter-spacing:-0.097314pt;}
.ls93{letter-spacing:-0.080000pt;}
.ls4e{letter-spacing:-0.072894pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls4b{letter-spacing:-0.048657pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls4d{letter-spacing:-0.036447pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.036447pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3c{letter-spacing:0.072894pt;}
.ls59{letter-spacing:0.085333pt;}
.ls7f{letter-spacing:0.089600pt;}
.ls97{letter-spacing:0.120000pt;}
.ls41{letter-spacing:0.128000pt;}
.ls44{letter-spacing:0.170667pt;}
.ls47{letter-spacing:0.213333pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.298667pt;}
.ls57{letter-spacing:0.360000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls91{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.432000pt;}
.ls98{letter-spacing:0.440000pt;}
.ls7a{letter-spacing:0.447467pt;}
.ls31{letter-spacing:0.469333pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls94{letter-spacing:0.520000pt;}
.ls32{letter-spacing:0.554667pt;}
.ls8f{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls30{letter-spacing:0.597333pt;}
.ls95{letter-spacing:0.600000pt;}
.lsf{letter-spacing:0.634667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.672000pt;}
.ls28{letter-spacing:0.682667pt;}
.ls23{letter-spacing:0.686933pt;}
.ls3{letter-spacing:0.691733pt;}
.ls34{letter-spacing:0.716800pt;}
.ls5f{letter-spacing:0.720000pt;}
.ls7d{letter-spacing:0.725333pt;}
.lse{letter-spacing:0.746667pt;}
.ls54{letter-spacing:0.760000pt;}
.ls89{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.784000pt;}
.ls8e{letter-spacing:0.800000pt;}
.ls33{letter-spacing:0.810667pt;}
.ls4{letter-spacing:0.848533pt;}
.ls3b{letter-spacing:0.853333pt;}
.ls39{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.940800pt;}
.ls1e{letter-spacing:0.985600pt;}
.ls80{letter-spacing:1.045333pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls81{letter-spacing:1.075200pt;}
.ls27{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.154667pt;}
.ls37{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.322667pt;}
.ls38{letter-spacing:1.365333pt;}
.ls69{letter-spacing:1.440000pt;}
.ls26{letter-spacing:1.450667pt;}
.ls83{letter-spacing:1.664000pt;}
.ls58{letter-spacing:1.920000pt;}
.ls8c{letter-spacing:1.962667pt;}
.ls3f{letter-spacing:2.576000pt;}
.ls36{letter-spacing:2.730667pt;}
.ls1a{letter-spacing:4.224000pt;}
.ls8a{letter-spacing:4.266667pt;}
.ls8b{letter-spacing:4.565333pt;}
.ls2c{letter-spacing:4.736000pt;}
.ls88{letter-spacing:4.821333pt;}
.ls8d{letter-spacing:5.248000pt;}
.ls1b{letter-spacing:5.280000pt;}
.ls19{letter-spacing:5.333333pt;}
.ls5c{letter-spacing:5.706667pt;}
.ls4a{letter-spacing:5.973333pt;}
.ls82{letter-spacing:6.442667pt;}
.ls25{letter-spacing:6.570667pt;}
.ls18{letter-spacing:7.466667pt;}
.ls8{letter-spacing:10.176000pt;}
.ls0{letter-spacing:81.804267pt;}
.ls3e{letter-spacing:484.800000pt;}
.ws67{word-spacing:-18.666667pt;}
.ws24{word-spacing:-18.293333pt;}
.ws19{word-spacing:-18.240000pt;}
.ws7{word-spacing:-16.538667pt;}
.wsab{word-spacing:-15.616000pt;}
.wsa7{word-spacing:-15.189333pt;}
.wsa9{word-spacing:-14.933333pt;}
.ws5{word-spacing:-13.386667pt;}
.ws99{word-spacing:-12.960000pt;}
.wsaa{word-spacing:-12.885333pt;}
.ws6{word-spacing:-12.864000pt;}
.ws9e{word-spacing:-12.373333pt;}
.ws25{word-spacing:-11.989333pt;}
.ws68{word-spacing:-11.893333pt;}
.ws1{word-spacing:-11.827200pt;}
.wsa8{word-spacing:-11.690667pt;}
.ws70{word-spacing:-11.680000pt;}
.ws22{word-spacing:-11.562667pt;}
.ws20{word-spacing:-11.178667pt;}
.ws6d{word-spacing:-11.000000pt;}
.ws4e{word-spacing:-10.947840pt;}
.ws0{word-spacing:-10.886400pt;}
.ws75{word-spacing:-10.880000pt;}
.wsaf{word-spacing:-10.800000pt;}
.wsac{word-spacing:-10.600000pt;}
.ws6a{word-spacing:-10.480000pt;}
.ws4d{word-spacing:-10.363955pt;}
.wsb1{word-spacing:-10.360000pt;}
.ws3{word-spacing:-10.192000pt;}
.ws7b{word-spacing:-10.080000pt;}
.wsad{word-spacing:-10.000000pt;}
.wsae{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.856000pt;}
.ws6e{word-spacing:-9.840000pt;}
.ws6c{word-spacing:-9.800000pt;}
.wsb2{word-spacing:-9.760000pt;}
.ws6f{word-spacing:-9.720000pt;}
.wsa{word-spacing:-9.557333pt;}
.ws80{word-spacing:-9.440000pt;}
.ws6b{word-spacing:-9.400000pt;}
.ws74{word-spacing:-9.360000pt;}
.ws7a{word-spacing:-9.280000pt;}
.wsb0{word-spacing:-9.120000pt;}
.ws51{word-spacing:-9.080000pt;}
.ws7c{word-spacing:-8.760000pt;}
.ws9d{word-spacing:-8.721067pt;}
.ws9c{word-spacing:-8.691200pt;}
.ws1a{word-spacing:-8.631467pt;}
.ws7f{word-spacing:-8.520000pt;}
.ws73{word-spacing:-8.480000pt;}
.ws7d{word-spacing:-8.440000pt;}
.ws26{word-spacing:-8.392533pt;}
.ws23{word-spacing:-8.362667pt;}
.ws7e{word-spacing:-8.360000pt;}
.ws1c{word-spacing:-8.332800pt;}
.ws46{word-spacing:-8.309901pt;}
.ws50{word-spacing:-8.273454pt;}
.ws47{word-spacing:-8.237007pt;}
.ws4b{word-spacing:-8.200560pt;}
.ws4a{word-spacing:-8.164113pt;}
.ws79{word-spacing:-8.040000pt;}
.ws48{word-spacing:-7.872538pt;}
.ws49{word-spacing:-7.763197pt;}
.ws9b{word-spacing:-7.735467pt;}
.ws4f{word-spacing:-7.726750pt;}
.ws1b{word-spacing:-7.526400pt;}
.ws4c{word-spacing:-7.508068pt;}
.ws72{word-spacing:-7.480000pt;}
.ws9a{word-spacing:-7.436800pt;}
.ws71{word-spacing:-7.320000pt;}
.ws98{word-spacing:-7.257600pt;}
.ws1e{word-spacing:-7.168000pt;}
.ws1f{word-spacing:-7.018667pt;}
.ws2{word-spacing:-6.690133pt;}
.ws2d{word-spacing:-6.570667pt;}
.wsa2{word-spacing:-6.442667pt;}
.ws1d{word-spacing:-6.331733pt;}
.ws21{word-spacing:-6.152533pt;}
.ws5e{word-spacing:-5.973333pt;}
.ws27{word-spacing:-5.333333pt;}
.ws34{word-spacing:-4.736000pt;}
.wsb3{word-spacing:-4.266667pt;}
.ws3f{word-spacing:-2.730667pt;}
.wsb6{word-spacing:-2.600000pt;}
.ws52{word-spacing:-2.576000pt;}
.ws94{word-spacing:-1.920000pt;}
.wsa3{word-spacing:-1.664000pt;}
.wsc6{word-spacing:-1.640000pt;}
.wsc0{word-spacing:-1.520000pt;}
.ws2e{word-spacing:-1.450667pt;}
.ws41{word-spacing:-1.365333pt;}
.ws2c{word-spacing:-1.322667pt;}
.ws40{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.152000pt;}
.ws2a{word-spacing:-1.066667pt;}
.wsb9{word-spacing:-1.000000pt;}
.ws42{word-spacing:-0.896000pt;}
.ws44{word-spacing:-0.853333pt;}
.ws3d{word-spacing:-0.810667pt;}
.wsb4{word-spacing:-0.800000pt;}
.ws65{word-spacing:-0.760000pt;}
.ws12{word-spacing:-0.746667pt;}
.wsa1{word-spacing:-0.725333pt;}
.wsb5{word-spacing:-0.720000pt;}
.ws31{word-spacing:-0.682667pt;}
.ws14{word-spacing:-0.672000pt;}
.wsd{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.634667pt;}
.wsbf{word-spacing:-0.600000pt;}
.wsc{word-spacing:-0.576000pt;}
.wsb7{word-spacing:-0.560000pt;}
.ws97{word-spacing:-0.554667pt;}
.wsbd{word-spacing:-0.520000pt;}
.ws33{word-spacing:-0.512000pt;}
.ws17{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.469333pt;}
.ws15{word-spacing:-0.432000pt;}
.ws32{word-spacing:-0.426667pt;}
.wsba{word-spacing:-0.400000pt;}
.ws28{word-spacing:-0.384000pt;}
.ws8a{word-spacing:-0.360000pt;}
.ws43{word-spacing:-0.298667pt;}
.ws57{word-spacing:-0.256000pt;}
.ws5b{word-spacing:-0.213333pt;}
.ws58{word-spacing:-0.170667pt;}
.ws54{word-spacing:-0.128000pt;}
.ws84{word-spacing:-0.085333pt;}
.ws62{word-spacing:-0.072894pt;}
.ws10{word-spacing:-0.064000pt;}
.ws61{word-spacing:-0.036447pt;}
.ws8{word-spacing:0.000000pt;}
.ws60{word-spacing:0.036447pt;}
.ws18{word-spacing:0.048000pt;}
.ws5f{word-spacing:0.048657pt;}
.ws11{word-spacing:0.064000pt;}
.ws63{word-spacing:0.072894pt;}
.wsbc{word-spacing:0.080000pt;}
.ws64{word-spacing:0.097314pt;}
.wsf{word-spacing:0.128000pt;}
.wsa6{word-spacing:0.149333pt;}
.ws96{word-spacing:0.160000pt;}
.ws66{word-spacing:0.200000pt;}
.ws88{word-spacing:0.213333pt;}
.ws8c{word-spacing:0.280000pt;}
.ws90{word-spacing:0.320000pt;}
.ws92{word-spacing:0.360000pt;}
.ws3e{word-spacing:0.384000pt;}
.ws89{word-spacing:0.400000pt;}
.ws5a{word-spacing:0.426667pt;}
.ws5d{word-spacing:0.469333pt;}
.wse{word-spacing:0.480000pt;}
.ws56{word-spacing:0.512000pt;}
.ws53{word-spacing:0.597333pt;}
.ws36{word-spacing:0.627200pt;}
.ws8b{word-spacing:0.640000pt;}
.ws95{word-spacing:0.720000pt;}
.ws91{word-spacing:0.760000pt;}
.wsa5{word-spacing:0.810667pt;}
.ws2b{word-spacing:0.853333pt;}
.wsb{word-spacing:0.896000pt;}
.ws9{word-spacing:0.933333pt;}
.wsa0{word-spacing:0.938667pt;}
.wsb8{word-spacing:1.080000pt;}
.ws8d{word-spacing:1.160000pt;}
.ws8f{word-spacing:1.200000pt;}
.wsc7{word-spacing:1.240000pt;}
.ws16{word-spacing:1.248000pt;}
.ws86{word-spacing:1.322667pt;}
.wsbb{word-spacing:1.440000pt;}
.wsc5{word-spacing:1.480000pt;}
.ws5c{word-spacing:1.578667pt;}
.ws55{word-spacing:1.621333pt;}
.ws8e{word-spacing:1.640000pt;}
.ws59{word-spacing:1.706667pt;}
.ws29{word-spacing:1.749333pt;}
.ws9f{word-spacing:1.877333pt;}
.ws35{word-spacing:1.920000pt;}
.ws93{word-spacing:2.000000pt;}
.ws85{word-spacing:2.218667pt;}
.wsc3{word-spacing:3.040000pt;}
.wsc2{word-spacing:3.080000pt;}
.wsa4{word-spacing:3.114667pt;}
.ws37{word-spacing:3.285333pt;}
.wsc9{word-spacing:3.320000pt;}
.wsc1{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.949333pt;}
.ws3c{word-spacing:5.034667pt;}
.wsc8{word-spacing:5.120000pt;}
.wsc4{word-spacing:5.200000pt;}
.wsbe{word-spacing:5.640000pt;}
.ws38{word-spacing:9.898667pt;}
.ws39{word-spacing:10.112000pt;}
.ws2f{word-spacing:10.154667pt;}
.wsca{word-spacing:10.922667pt;}
.ws3a{word-spacing:11.605333pt;}
.ws83{word-spacing:246.476000pt;}
.ws81{word-spacing:248.028000pt;}
.ws76{word-spacing:250.056000pt;}
.ws82{word-spacing:257.208000pt;}
.ws77{word-spacing:257.552000pt;}
.ws78{word-spacing:273.872000pt;}
.ws69{word-spacing:324.732000pt;}
.ws45{word-spacing:2191.509333pt;}
._2d{margin-left:-11.197067pt;}
._2c{margin-left:-6.800000pt;}
._13{margin-left:-5.901867pt;}
._b{margin-left:-4.128533pt;}
._7{margin-left:-3.194667pt;}
._6{margin-left:-2.133333pt;}
._4{margin-left:-1.127467pt;}
._2{width:1.209600pt;}
._5{width:2.277333pt;}
._a{width:3.388800pt;}
._c{width:4.394133pt;}
._8{width:5.735467pt;}
._9{width:6.705600pt;}
._3{width:8.400000pt;}
._27{width:9.312000pt;}
._d{width:10.209600pt;}
._2b{width:11.780533pt;}
._12{width:12.727467pt;}
._e{width:13.670400pt;}
._f{width:15.172267pt;}
._29{width:17.840000pt;}
._10{width:19.914667pt;}
._11{width:20.945067pt;}
._2a{width:22.360000pt;}
._28{width:60.643733pt;}
._18{width:121.292800pt;}
._1a{width:140.243200pt;}
._1c{width:187.594667pt;}
._1e{width:204.305067pt;}
._21{width:271.573333pt;}
._1f{width:277.931200pt;}
._24{width:290.228267pt;}
._25{width:291.178667pt;}
._14{width:293.681600pt;}
._16{width:311.472000pt;}
._22{width:325.834133pt;}
._26{width:327.673067pt;}
._23{width:329.155733pt;}
._20{width:343.463467pt;}
._19{width:346.470400pt;}
._17{width:347.925333pt;}
._1b{width:348.932800pt;}
._15{width:368.908267pt;}
._1d{width:376.900800pt;}
._1{width:638.810667pt;}
._0{width:1200.826667pt;}
.fs8{font-size:26.133333pt;}
.fsb{font-size:29.866667pt;}
.fsd{font-size:36.446933pt;}
.fs0{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fsc{font-size:48.657067pt;}
.fs1{font-size:51.146667pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:69.440000pt;}
.fs3{font-size:69.813333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:35.953600pt;}
.y2{bottom:38.220267pt;}
.yf{bottom:57.300133pt;}
.y72{bottom:65.812133pt;}
.y100{bottom:66.268267pt;}
.y98{bottom:66.458933pt;}
.ye9{bottom:67.509467pt;}
.y160{bottom:67.951067pt;}
.ybd{bottom:68.748133pt;}
.ye{bottom:70.637467pt;}
.yf5{bottom:74.948267pt;}
.ye8{bottom:81.509467pt;}
.y71{bottom:83.145467pt;}
.yff{bottom:83.601600pt;}
.y97{bottom:83.792267pt;}
.yd{bottom:83.974800pt;}
.y15f{bottom:85.284400pt;}
.ybc{bottom:86.081467pt;}
.yf4{bottom:92.281600pt;}
.y198{bottom:97.292133pt;}
.y70{bottom:100.478800pt;}
.yfe{bottom:100.934933pt;}
.y96{bottom:101.125600pt;}
.y166{bottom:102.617733pt;}
.ybb{bottom:103.414800pt;}
.ye7{bottom:103.509467pt;}
.yf3{bottom:109.614933pt;}
.y1d3{bottom:111.162133pt;}
.y197{bottom:111.292133pt;}
.y6f{bottom:117.812133pt;}
.yfd{bottom:118.268267pt;}
.y95{bottom:118.458933pt;}
.y15e{bottom:119.951067pt;}
.yba{bottom:120.748133pt;}
.ye6{bottom:122.229467pt;}
.y196{bottom:125.292133pt;}
.yf2{bottom:126.948267pt;}
.y1d2{bottom:128.495467pt;}
.y6e{bottom:135.145467pt;}
.yfc{bottom:135.601600pt;}
.y94{bottom:135.792267pt;}
.y165{bottom:137.284400pt;}
.yb9{bottom:138.081467pt;}
.y195{bottom:139.292133pt;}
.ye5{bottom:140.949467pt;}
.yf1{bottom:144.281600pt;}
.y1d1{bottom:145.828800pt;}
.y6d{bottom:152.478800pt;}
.yfb{bottom:152.934933pt;}
.y93{bottom:153.125600pt;}
.y194{bottom:153.292133pt;}
.y164{bottom:154.617733pt;}
.yb8{bottom:155.414800pt;}
.ye4{bottom:159.669467pt;}
.yf0{bottom:161.614933pt;}
.y1d0{bottom:163.162133pt;}
.y193{bottom:167.292133pt;}
.y6c{bottom:169.812133pt;}
.yfa{bottom:170.268267pt;}
.y92{bottom:170.458933pt;}
.y15d{bottom:171.951067pt;}
.yb7{bottom:172.748133pt;}
.ye3{bottom:178.389467pt;}
.yef{bottom:178.948267pt;}
.y1cf{bottom:180.495467pt;}
.y192{bottom:181.292133pt;}
.y6b{bottom:187.145467pt;}
.yf9{bottom:187.601600pt;}
.y91{bottom:187.792267pt;}
.y15c{bottom:189.284400pt;}
.yb6{bottom:190.081467pt;}
.y191{bottom:195.292133pt;}
.yee{bottom:196.281600pt;}
.ye2{bottom:197.109467pt;}
.y6a{bottom:204.478800pt;}
.y90{bottom:205.125600pt;}
.y15b{bottom:206.617733pt;}
.yb5{bottom:207.414800pt;}
.y190{bottom:209.292133pt;}
.yf8{bottom:213.601600pt;}
.yed{bottom:213.614933pt;}
.ye1{bottom:215.829467pt;}
.y69{bottom:221.812133pt;}
.y8f{bottom:222.458933pt;}
.y18f{bottom:223.292133pt;}
.y15a{bottom:223.951067pt;}
.yb4{bottom:224.748133pt;}
.y3b{bottom:226.623733pt;}
.y1ce{bottom:227.828800pt;}
.yf7{bottom:230.934933pt;}
.yec{bottom:230.948267pt;}
.ye0{bottom:234.549467pt;}
.y18e{bottom:237.292133pt;}
.y68{bottom:239.145467pt;}
.y8e{bottom:239.792267pt;}
.y159{bottom:241.284400pt;}
.y1cd{bottom:241.828800pt;}
.yb3{bottom:242.081467pt;}
.y3a{bottom:243.957067pt;}
.yeb{bottom:248.281600pt;}
.y18d{bottom:251.292133pt;}
.yde{bottom:255.799467pt;}
.y1cc{bottom:255.828800pt;}
.y67{bottom:256.478800pt;}
.y8d{bottom:257.125600pt;}
.y158{bottom:258.617733pt;}
.yb2{bottom:259.414800pt;}
.y39{bottom:261.290400pt;}
.y18c{bottom:265.292133pt;}
.yf6{bottom:265.601600pt;}
.yea{bottom:265.614933pt;}
.ydf{bottom:269.799467pt;}
.y1cb{bottom:269.828800pt;}
.y66{bottom:273.812133pt;}
.y8c{bottom:274.458933pt;}
.y157{bottom:275.951067pt;}
.yb1{bottom:276.748133pt;}
.y18b{bottom:279.292133pt;}
.y1ca{bottom:283.828800pt;}
.y65{bottom:291.145467pt;}
.y8b{bottom:291.792267pt;}
.y38{bottom:293.197733pt;}
.y156{bottom:293.284400pt;}
.y18a{bottom:293.292133pt;}
.yb0{bottom:294.081467pt;}
.ydd{bottom:294.716000pt;}
.y1c9{bottom:297.828800pt;}
.y129{bottom:298.184400pt;}
.y189{bottom:307.292133pt;}
.y64{bottom:308.478800pt;}
.y8a{bottom:309.125600pt;}
.ydc{bottom:309.382667pt;}
.y155{bottom:310.617733pt;}
.yaf{bottom:311.414800pt;}
.y1c8{bottom:311.828800pt;}
.y37{bottom:313.201733pt;}
.y128{bottom:316.184400pt;}
.y188{bottom:321.292133pt;}
.ydb{bottom:324.049333pt;}
.y63{bottom:325.812133pt;}
.y1c7{bottom:325.828800pt;}
.y89{bottom:326.458933pt;}
.y154{bottom:327.951067pt;}
.yae{bottom:328.748133pt;}
.y127{bottom:330.184400pt;}
.y36{bottom:333.205733pt;}
.y187{bottom:335.292133pt;}
.y1c6{bottom:339.828800pt;}
.y62{bottom:343.145467pt;}
.y88{bottom:343.792267pt;}
.y153{bottom:345.284400pt;}
.yad{bottom:346.081467pt;}
.y186{bottom:349.292133pt;}
.y126{bottom:352.184400pt;}
.y35{bottom:353.209733pt;}
.y1c5{bottom:353.828800pt;}
.y61{bottom:360.478800pt;}
.y87{bottom:361.125600pt;}
.y152{bottom:362.617733pt;}
.y185{bottom:363.292133pt;}
.yac{bottom:363.414800pt;}
.y125{bottom:366.184400pt;}
.y1c4{bottom:367.828800pt;}
.y34{bottom:373.213733pt;}
.y184{bottom:377.292133pt;}
.y60{bottom:377.812133pt;}
.y86{bottom:378.458933pt;}
.y151{bottom:379.951067pt;}
.yab{bottom:380.748133pt;}
.y1c3{bottom:381.828800pt;}
.y124{bottom:384.904400pt;}
.y183{bottom:391.292133pt;}
.y33{bottom:393.217733pt;}
.y5f{bottom:395.145467pt;}
.y85{bottom:395.792267pt;}
.y1c2{bottom:395.828800pt;}
.y150{bottom:397.284400pt;}
.yaa{bottom:398.081467pt;}
.y123{bottom:398.904400pt;}
.y182{bottom:405.292133pt;}
.y1c1{bottom:409.828800pt;}
.y5e{bottom:412.478800pt;}
.y122{bottom:412.904400pt;}
.y84{bottom:413.125600pt;}
.y32{bottom:413.221733pt;}
.y14f{bottom:414.617733pt;}
.ya9{bottom:415.414800pt;}
.y181{bottom:419.292133pt;}
.y1c0{bottom:423.828800pt;}
.y121{bottom:426.904400pt;}
.y5d{bottom:429.812133pt;}
.y83{bottom:430.458933pt;}
.y22{bottom:431.136533pt;}
.y14e{bottom:431.951067pt;}
.ya8{bottom:432.748133pt;}
.y31{bottom:433.225733pt;}
.y180{bottom:433.292133pt;}
.y1bf{bottom:437.828800pt;}
.y120{bottom:445.624400pt;}
.y5c{bottom:447.145467pt;}
.y17f{bottom:447.292133pt;}
.y82{bottom:447.792267pt;}
.y14d{bottom:449.284400pt;}
.ya7{bottom:450.081467pt;}
.y1be{bottom:451.828800pt;}
.y30{bottom:453.229733pt;}
.y21{bottom:457.801867pt;}
.y11f{bottom:459.624400pt;}
.y17e{bottom:461.292133pt;}
.y5b{bottom:464.478800pt;}
.y81{bottom:465.125600pt;}
.y1bd{bottom:465.828800pt;}
.y14c{bottom:466.617733pt;}
.ya6{bottom:467.414800pt;}
.y20{bottom:471.139200pt;}
.y2f{bottom:473.233733pt;}
.y11e{bottom:473.624400pt;}
.y17d{bottom:475.292133pt;}
.y1bc{bottom:479.828800pt;}
.y5a{bottom:481.812133pt;}
.y80{bottom:482.458933pt;}
.y163{bottom:483.951067pt;}
.y1f{bottom:484.476533pt;}
.ya5{bottom:484.748133pt;}
.y11d{bottom:487.624400pt;}
.y17c{bottom:489.292133pt;}
.y14b{bottom:492.617733pt;}
.y2e{bottom:493.237733pt;}
.y1bb{bottom:493.828800pt;}
.y1e{bottom:497.813867pt;}
.y59{bottom:499.145467pt;}
.y7f{bottom:499.792267pt;}
.y162{bottom:501.284400pt;}
.ya4{bottom:502.081467pt;}
.y17b{bottom:503.292133pt;}
.y11c{bottom:506.344400pt;}
.y1ba{bottom:507.828800pt;}
.y2d{bottom:513.241733pt;}
.y58{bottom:516.478800pt;}
.y7e{bottom:517.125600pt;}
.y17a{bottom:517.292133pt;}
.y161{bottom:518.617733pt;}
.ya3{bottom:519.414800pt;}
.y11b{bottom:520.344400pt;}
.y1b9{bottom:521.828800pt;}
.y1d{bottom:524.479200pt;}
.y179{bottom:531.292133pt;}
.y2c{bottom:533.245733pt;}
.y57{bottom:533.812133pt;}
.y7d{bottom:534.458933pt;}
.y1b8{bottom:535.828800pt;}
.y14a{bottom:535.951067pt;}
.y1c{bottom:537.816533pt;}
.y11a{bottom:539.064400pt;}
.y178{bottom:545.292133pt;}
.yc0{bottom:548.001333pt;}
.y1b7{bottom:549.828800pt;}
.y56{bottom:551.145467pt;}
.y1b{bottom:551.153867pt;}
.y7c{bottom:551.792267pt;}
.y119{bottom:553.064400pt;}
.y2b{bottom:553.249733pt;}
.y149{bottom:553.284400pt;}
.y177{bottom:559.292133pt;}
.ybf{bottom:562.668000pt;}
.y1b6{bottom:563.828800pt;}
.y1a{bottom:564.491200pt;}
.y118{bottom:567.064400pt;}
.y55{bottom:568.478800pt;}
.y7b{bottom:569.125600pt;}
.y148{bottom:570.617733pt;}
.y2a{bottom:573.253733pt;}
.y176{bottom:573.292133pt;}
.ybe{bottom:577.334667pt;}
.y19{bottom:577.828533pt;}
.y1b5{bottom:577.828800pt;}
.y117{bottom:581.064400pt;}
.y54{bottom:585.812133pt;}
.y175{bottom:587.292133pt;}
.y147{bottom:587.951067pt;}
.y1b4{bottom:591.828800pt;}
.y29{bottom:593.257733pt;}
.y116{bottom:599.784400pt;}
.y174{bottom:601.292133pt;}
.y53{bottom:603.145467pt;}
.y7a{bottom:603.792267pt;}
.y18{bottom:604.493867pt;}
.y146{bottom:605.284400pt;}
.y1b3{bottom:605.828800pt;}
.yc9{bottom:607.151840pt;}
.y130{bottom:610.031067pt;}
.yd6{bottom:613.109173pt;}
.y28{bottom:613.261733pt;}
.y115{bottom:613.784400pt;}
.yc8{bottom:618.085920pt;}
.y1b2{bottom:619.828800pt;}
.y52{bottom:620.478800pt;}
.y17{bottom:622.031067pt;}
.y145{bottom:622.617733pt;}
.yd5{bottom:624.043253pt;}
.y12f{bottom:624.697733pt;}
.y173{bottom:627.297467pt;}
.y114{bottom:627.784400pt;}
.yc7{bottom:629.020000pt;}
.y27{bottom:633.265733pt;}
.y1b1{bottom:633.828800pt;}
.yd4{bottom:634.977333pt;}
.y16{bottom:635.160533pt;}
.y51{bottom:637.812133pt;}
.y12e{bottom:639.364400pt;}
.y144{bottom:639.951067pt;}
.y113{bottom:641.784400pt;}
.y1b0{bottom:647.828800pt;}
.y15{bottom:652.697733pt;}
.y26{bottom:653.269733pt;}
.y12d{bottom:654.031067pt;}
.y50{bottom:655.145467pt;}
.y79{bottom:655.792267pt;}
.y143{bottom:657.284400pt;}
.y1af{bottom:661.828800pt;}
.y10f{bottom:663.034400pt;}
.y14{bottom:665.827067pt;}
.y12c{bottom:668.697733pt;}
.yc6{bottom:669.755840pt;}
.y4f{bottom:672.478800pt;}
.y78{bottom:673.125600pt;}
.y25{bottom:673.273733pt;}
.yd3{bottom:673.586640pt;}
.y142{bottom:674.617733pt;}
.y172{bottom:674.625467pt;}
.y1ae{bottom:675.828800pt;}
.y112{bottom:677.034400pt;}
.yc5{bottom:680.689920pt;}
.y13{bottom:683.364400pt;}
.yd2{bottom:684.520720pt;}
.y4e{bottom:689.812133pt;}
.y1ad{bottom:689.828800pt;}
.y77{bottom:690.458933pt;}
.y111{bottom:691.034400pt;}
.yc4{bottom:691.624000pt;}
.y141{bottom:691.951067pt;}
.y24{bottom:693.277733pt;}
.yd1{bottom:695.454800pt;}
.y12{bottom:696.489733pt;}
.y12b{bottom:698.031067pt;}
.y171{bottom:700.630800pt;}
.y1ac{bottom:703.828800pt;}
.y110{bottom:705.034400pt;}
.y4d{bottom:707.145467pt;}
.y76{bottom:707.792267pt;}
.y140{bottom:709.284400pt;}
.y11{bottom:709.827067pt;}
.y12a{bottom:712.697733pt;}
.y23{bottom:713.277733pt;}
.y1ab{bottom:717.828800pt;}
.y4c{bottom:724.478800pt;}
.y75{bottom:725.125600pt;}
.y13f{bottom:726.617733pt;}
.y10{bottom:727.364400pt;}
.y1aa{bottom:731.828800pt;}
.yd8{bottom:737.472720pt;}
.ycb{bottom:740.985920pt;}
.y4b{bottom:741.812133pt;}
.y74{bottom:742.458933pt;}
.y13e{bottom:743.951067pt;}
.y170{bottom:743.958800pt;}
.y1a9{bottom:745.828800pt;}
.y10e{bottom:746.291067pt;}
.yd7{bottom:748.406800pt;}
.yca{bottom:751.920000pt;}
.y4a{bottom:759.145467pt;}
.y73{bottom:759.796133pt;}
.y1a8{bottom:759.828800pt;}
.y13d{bottom:761.284400pt;}
.y10d{bottom:768.291067pt;}
.yc{bottom:769.338933pt;}
.y16f{bottom:769.964133pt;}
.y1a7{bottom:773.828800pt;}
.y49{bottom:776.478800pt;}
.y13c{bottom:778.617733pt;}
.y10c{bottom:782.291067pt;}
.y1a6{bottom:787.828800pt;}
.y48{bottom:793.812133pt;}
.y13b{bottom:795.951067pt;}
.yb{bottom:796.010933pt;}
.ycd{bottom:796.075253pt;}
.yda{bottom:796.924587pt;}
.y10b{bottom:801.011067pt;}
.y1a5{bottom:801.828800pt;}
.ycc{bottom:807.009333pt;}
.yd9{bottom:807.858667pt;}
.y47{bottom:811.145467pt;}
.y13a{bottom:813.284400pt;}
.y16e{bottom:813.292133pt;}
.y10a{bottom:815.011067pt;}
.y1a4{bottom:815.828800pt;}
.ya0{bottom:816.378933pt;}
.y46{bottom:828.478800pt;}
.y1a3{bottom:829.828800pt;}
.y139{bottom:830.617733pt;}
.y16d{bottom:830.625467pt;}
.y9f{bottom:833.712267pt;}
.y109{bottom:833.731067pt;}
.y1a2{bottom:843.828800pt;}
.y45{bottom:845.812133pt;}
.y108{bottom:847.731067pt;}
.y138{bottom:847.951067pt;}
.y16c{bottom:847.958800pt;}
.ya{bottom:848.005600pt;}
.y9e{bottom:851.045600pt;}
.yd0{bottom:851.939787pt;}
.yc3{bottom:852.926987pt;}
.y1a1{bottom:857.828800pt;}
.ycf{bottom:862.873867pt;}
.y44{bottom:863.145467pt;}
.yc2{bottom:863.861067pt;}
.y137{bottom:865.284400pt;}
.y107{bottom:866.451067pt;}
.y9d{bottom:868.378933pt;}
.y1a0{bottom:871.828800pt;}
.y16b{bottom:873.964133pt;}
.y9{bottom:878.677600pt;}
.y106{bottom:880.451067pt;}
.y43{bottom:880.478800pt;}
.y136{bottom:882.617733pt;}
.y9c{bottom:885.712267pt;}
.y19f{bottom:885.828800pt;}
.y42{bottom:897.812133pt;}
.y19e{bottom:899.828800pt;}
.y135{bottom:899.951067pt;}
.yce{bottom:900.069200pt;}
.yc1{bottom:900.769067pt;}
.y103{bottom:901.701067pt;}
.y9b{bottom:903.045600pt;}
.y19d{bottom:913.828800pt;}
.y41{bottom:915.145467pt;}
.y104{bottom:915.701067pt;}
.y134{bottom:917.284400pt;}
.y16a{bottom:917.292133pt;}
.y8{bottom:920.010933pt;}
.y9a{bottom:920.378933pt;}
.y19c{bottom:927.828800pt;}
.y105{bottom:929.701067pt;}
.y40{bottom:932.478800pt;}
.y133{bottom:934.617733pt;}
.y169{bottom:934.625467pt;}
.y7{bottom:941.344267pt;}
.y19b{bottom:941.828800pt;}
.y99{bottom:945.712267pt;}
.y132{bottom:951.951067pt;}
.y168{bottom:951.958800pt;}
.y102{bottom:954.620267pt;}
.y19a{bottom:955.828800pt;}
.y3f{bottom:969.278800pt;}
.y131{bottom:969.284400pt;}
.y101{bottom:969.286933pt;}
.y167{bottom:969.292133pt;}
.y199{bottom:969.828800pt;}
.y6{bottom:977.398800pt;}
.y5{bottom:994.061467pt;}
.y4{bottom:996.728133pt;}
.ya2{bottom:1001.497733pt;}
.y3d{bottom:1001.498400pt;}
.y3e{bottom:1003.789333pt;}
.ya1{bottom:1003.897733pt;}
.y3c{bottom:1003.898400pt;}
.y3{bottom:1028.908267pt;}
.h5{height:0.000000pt;}
.hc{height:20.031200pt;}
.h1b{height:24.929702pt;}
.h13{height:27.048000pt;}
.h11{height:27.178667pt;}
.h19{height:27.503467pt;}
.hd{height:27.738667pt;}
.h4{height:28.616000pt;}
.h2{height:28.952000pt;}
.h1d{height:29.720000pt;}
.h1f{height:30.660000pt;}
.h1e{height:31.020000pt;}
.h1c{height:31.400000pt;}
.h8{height:32.064000pt;}
.h22{height:32.704000pt;}
.h10{height:33.088000pt;}
.h1a{height:33.281434pt;}
.h21{height:33.493333pt;}
.h18{height:34.824000pt;}
.h7{height:36.072000pt;}
.hf{height:37.224000pt;}
.h3{height:39.203920pt;}
.he{height:39.626667pt;}
.h14{height:41.866667pt;}
.h17{height:42.077333pt;}
.h16{height:42.092800pt;}
.h20{height:42.361067pt;}
.h15{height:42.361600pt;}
.h12{height:53.503520pt;}
.h6{height:53.511920pt;}
.ha{height:62.086933pt;}
.hb{height:62.108267pt;}
.h9{height:71.328000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:59.716533pt;}
.x1{left:61.984267pt;}
.x2a{left:67.716533pt;}
.x28{left:69.984267pt;}
.x2d{left:73.056533pt;}
.xe{left:77.108000pt;}
.x12{left:79.279733pt;}
.x38{left:83.095067pt;}
.x2{left:87.613200pt;}
.x3{left:89.951067pt;}
.x4{left:100.601333pt;}
.x18{left:183.524347pt;}
.x17{left:190.813733pt;}
.x6{left:195.773467pt;}
.x7{left:198.111333pt;}
.x1b{left:200.815067pt;}
.x15{left:210.187467pt;}
.x16{left:217.046330pt;}
.x19{left:218.103467pt;}
.x1a{left:219.379109pt;}
.x2b{left:263.156533pt;}
.xa{left:278.414267pt;}
.x37{left:285.736533pt;}
.x2e{left:293.716533pt;}
.x8{left:309.572400pt;}
.x9{left:311.910267pt;}
.x29{left:327.784267pt;}
.x2f{left:374.846533pt;}
.x33{left:380.196533pt;}
.xf{left:407.749467pt;}
.x13{left:409.967733pt;}
.x39{left:423.764533pt;}
.x10{left:425.078800pt;}
.x14{left:427.301067pt;}
.x11{left:430.401867pt;}
.x30{left:466.386533pt;}
.x34{left:471.726533pt;}
.x24{left:510.002229pt;}
.x21{left:511.089721pt;}
.x1f{left:518.424667pt;}
.x22{left:519.660667pt;}
.x20{left:522.616064pt;}
.x23{left:523.852064pt;}
.x1d{left:526.559467pt;}
.x26{left:529.530133pt;}
.x2c{left:534.546533pt;}
.x25{left:538.022000pt;}
.x1c{left:540.355333pt;}
.x1e{left:547.060867pt;}
.x27{left:548.026952pt;}
.x31{left:558.506533pt;}
.x35{left:563.846533pt;}
.x32{left:649.856533pt;}
.x36{left:655.196533pt;}
.xb{left:682.556000pt;}
.xc{left:704.153333pt;}
.xd{left:706.152533pt;}
}




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