
    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_f91d6501c9b853bde2e1a894.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_d54f92fd0a16c4a74a91deae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_d41a154de02ebbdd41f623d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_bcd562224583ffea4c67dddb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_dd392154c7c21d0ae9a8bc3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_1817d79d9320cca545e49206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_068f864dce9cbe631cf66f8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_73a821aa44b541c05b10f732.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_31e5a101ea95906f42d4032c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c82b831cd852817a248bb335.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_a4d61907c6b061369fb750df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_4ca7d4c0284622ec838426cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ec1d6f95fe63d829784b8a5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_ec1d6f95fe63d829784b8a5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_8663ef3744504f3762876dfe.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4ca7d4c0284622ec838426cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a4d61907c6b061369fb750df.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_4ca7d4c0284622ec838426cb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ec1d6f95fe63d829784b8a5d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;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:ff14;src:url('chunks/assets/font_273d629006223278891f83ba.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;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:ff15;src:url('chunks/assets/font_9fa174f4a2382951fd6cba69.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.va{vertical-align:-9.357600px;}
.v7{vertical-align:-2.955119px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.620000px;}
.v4{vertical-align:2.724623px;}
.v5{vertical-align:5.660510px;}
.v6{vertical-align:7.699959px;}
.v3{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.v8{vertical-align:43.998000px;}
.ls36{letter-spacing:-7.080000px;}
.ls33{letter-spacing:-5.520000px;}
.ls3e{letter-spacing:-1.776000px;}
.ls13{letter-spacing:-0.780000px;}
.ls7e{letter-spacing:-0.432000px;}
.ls34{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.180000px;}
.ls80{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.120000px;}
.ls35{letter-spacing:-0.060000px;}
.ls7f{letter-spacing:-0.048000px;}
.ls40{letter-spacing:-0.041621px;}
.ls4c{letter-spacing:-0.040831px;}
.ls12{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005676px;}
.ls5c{letter-spacing:0.048000px;}
.ls2a{letter-spacing:0.060000px;}
.ls5e{letter-spacing:0.096000px;}
.ls42{letter-spacing:0.120000px;}
.ls6a{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.180000px;}
.ls79{letter-spacing:0.186600px;}
.ls65{letter-spacing:0.192000px;}
.ls17{letter-spacing:0.240000px;}
.ls5a{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.311400px;}
.ls6d{letter-spacing:0.336000px;}
.ls1e{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls6f{letter-spacing:0.528000px;}
.ls1f{letter-spacing:0.540000px;}
.ls5f{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.624000px;}
.ls1d{letter-spacing:0.660000px;}
.ls67{letter-spacing:0.672000px;}
.ls1c{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.780000px;}
.ls7a{letter-spacing:0.816000px;}
.ls27{letter-spacing:0.840000px;}
.ls9{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.960000px;}
.ls5d{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.020000px;}
.ls5b{letter-spacing:1.056000px;}
.ls25{letter-spacing:1.080000px;}
.ls76{letter-spacing:1.104000px;}
.ls8{letter-spacing:1.140000px;}
.ls66{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.200000px;}
.ls73{letter-spacing:1.248000px;}
.ls6{letter-spacing:1.260000px;}
.ls68{letter-spacing:1.296000px;}
.ls46{letter-spacing:1.320000px;}
.lsf{letter-spacing:1.380000px;}
.ls63{letter-spacing:1.392000px;}
.ls7{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.500000px;}
.ls7c{letter-spacing:1.560000px;}
.ls59{letter-spacing:1.584000px;}
.ls11{letter-spacing:1.620000px;}
.ls69{letter-spacing:1.632000px;}
.ls21{letter-spacing:1.680000px;}
.lsa{letter-spacing:1.740000px;}
.ls70{letter-spacing:1.776000px;}
.ls4{letter-spacing:1.800000px;}
.ls71{letter-spacing:1.824000px;}
.ls4f{letter-spacing:1.860000px;}
.ls2c{letter-spacing:1.920000px;}
.ls72{letter-spacing:1.968000px;}
.ls41{letter-spacing:1.980000px;}
.ls75{letter-spacing:2.016000px;}
.ls3a{letter-spacing:2.040000px;}
.ls2d{letter-spacing:2.100000px;}
.ls31{letter-spacing:2.160000px;}
.ls61{letter-spacing:2.208000px;}
.lse{letter-spacing:2.220000px;}
.ls24{letter-spacing:2.280000px;}
.ls3b{letter-spacing:2.340000px;}
.lsb{letter-spacing:2.400000px;}
.ls6b{letter-spacing:2.448000px;}
.ls1a{letter-spacing:2.460000px;}
.ls7b{letter-spacing:2.496000px;}
.ls74{letter-spacing:2.544000px;}
.ls15{letter-spacing:2.580000px;}
.ls3{letter-spacing:2.640000px;}
.ls50{letter-spacing:2.700000px;}
.ls52{letter-spacing:2.760000px;}
.ls10{letter-spacing:2.880000px;}
.ls26{letter-spacing:2.940000px;}
.ls60{letter-spacing:2.976000px;}
.ls5{letter-spacing:3.000000px;}
.ls4e{letter-spacing:3.060000px;}
.ls77{letter-spacing:3.120000px;}
.ls7d{letter-spacing:3.180000px;}
.ls6c{letter-spacing:3.216000px;}
.ls22{letter-spacing:3.240000px;}
.ls39{letter-spacing:3.300000px;}
.ls1b{letter-spacing:3.360000px;}
.ls23{letter-spacing:3.420000px;}
.ls51{letter-spacing:3.540000px;}
.ls44{letter-spacing:3.600000px;}
.ls30{letter-spacing:3.720000px;}
.ls20{letter-spacing:3.960000px;}
.ls6e{letter-spacing:4.080000px;}
.ls45{letter-spacing:4.260000px;}
.ls2f{letter-spacing:4.860000px;}
.ls56{letter-spacing:5.160000px;}
.ls53{letter-spacing:5.280000px;}
.ls4d{letter-spacing:5.400000px;}
.ls28{letter-spacing:5.580000px;}
.ls57{letter-spacing:6.420000px;}
.ls55{letter-spacing:7.380000px;}
.ls58{letter-spacing:7.560000px;}
.ls54{letter-spacing:10.200000px;}
.ls0{letter-spacing:59.538000px;}
.ls49{letter-spacing:77.036698px;}
.ls48{letter-spacing:77.073312px;}
.ls43{letter-spacing:78.528854px;}
.ls3d{letter-spacing:78.566178px;}
.ls4b{letter-spacing:203.356378px;}
.ls47{letter-spacing:203.576064px;}
.ls3f{letter-spacing:207.519216px;}
.ls4a{letter-spacing:220.934377px;}
.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;}
}
.ws4f{word-spacing:-207.519216px;}
.ws6d{word-spacing:-203.576064px;}
.ws6e{word-spacing:-203.356378px;}
.ws7a{word-spacing:-21.960000px;}
.ws2a{word-spacing:-16.680000px;}
.ws8{word-spacing:-15.960000px;}
.wsa{word-spacing:-15.600000px;}
.ws82{word-spacing:-14.448000px;}
.wsa0{word-spacing:-14.400000px;}
.ws7d{word-spacing:-14.160000px;}
.ws81{word-spacing:-13.632000px;}
.ws2{word-spacing:-13.344000px;}
.wsa1{word-spacing:-13.152000px;}
.ws7c{word-spacing:-13.008000px;}
.ws9e{word-spacing:-12.720000px;}
.ws9d{word-spacing:-12.624000px;}
.ws7e{word-spacing:-12.576000px;}
.ws1{word-spacing:-12.510000px;}
.ws7b{word-spacing:-12.288000px;}
.ws80{word-spacing:-12.192000px;}
.ws83{word-spacing:-12.096000px;}
.ws7f{word-spacing:-12.000000px;}
.ws44{word-spacing:-11.570749px;}
.ws62{word-spacing:-11.350907px;}
.ws3a{word-spacing:-10.375961px;}
.ws0{word-spacing:-10.210662px;}
.ws59{word-spacing:-10.178803px;}
.wsb{word-spacing:-8.745000px;}
.ws9{word-spacing:-7.920000px;}
.ws9f{word-spacing:-6.996000px;}
.ws2b{word-spacing:-3.240000px;}
.ws9a{word-spacing:-3.216000px;}
.wsb1{word-spacing:-3.120000px;}
.ws4{word-spacing:-2.886000px;}
.ws1c{word-spacing:-2.640000px;}
.wsb5{word-spacing:-2.496000px;}
.ws86{word-spacing:-2.460000px;}
.ws98{word-spacing:-2.448000px;}
.wsa3{word-spacing:-2.400000px;}
.ws1a{word-spacing:-2.280000px;}
.ws92{word-spacing:-2.160000px;}
.wsb0{word-spacing:-2.016000px;}
.wsad{word-spacing:-1.968000px;}
.ws24{word-spacing:-1.920000px;}
.ws26{word-spacing:-1.740000px;}
.ws28{word-spacing:-1.680000px;}
.wsd{word-spacing:-1.560000px;}
.ws87{word-spacing:-1.500000px;}
.ws99{word-spacing:-1.440000px;}
.ws93{word-spacing:-1.392000px;}
.ws96{word-spacing:-1.296000px;}
.ws73{word-spacing:-1.260000px;}
.wsb6{word-spacing:-1.152000px;}
.ws27{word-spacing:-1.140000px;}
.ws16{word-spacing:-1.080000px;}
.ws8b{word-spacing:-1.056000px;}
.ws8d{word-spacing:-1.008000px;}
.wsb4{word-spacing:-0.816000px;}
.wsaf{word-spacing:-0.768000px;}
.ws20{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.672000px;}
.wsab{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.600000px;}
.ws8e{word-spacing:-0.576000px;}
.ws85{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.528000px;}
.ws1d{word-spacing:-0.480000px;}
.ws19{word-spacing:-0.420000px;}
.ws94{word-spacing:-0.384000px;}
.ws6b{word-spacing:-0.360000px;}
.ws9b{word-spacing:-0.336000px;}
.ws76{word-spacing:-0.300000px;}
.ws89{word-spacing:-0.288000px;}
.ws55{word-spacing:-0.240000px;}
.ws95{word-spacing:-0.192000px;}
.ws29{word-spacing:-0.180000px;}
.wsae{word-spacing:-0.144000px;}
.ws8c{word-spacing:-0.096000px;}
.ws3c{word-spacing:-0.066505px;}
.ws5a{word-spacing:-0.065241px;}
.ws18{word-spacing:-0.060000px;}
.wsa7{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws6f{word-spacing:0.040831px;}
.ws50{word-spacing:0.041621px;}
.wsa9{word-spacing:0.048000px;}
.ws13{word-spacing:0.060000px;}
.ws14{word-spacing:0.120000px;}
.ws88{word-spacing:0.144000px;}
.ws1e{word-spacing:0.240000px;}
.ws21{word-spacing:0.300000px;}
.ws10{word-spacing:0.360000px;}
.wsb2{word-spacing:0.384000px;}
.ws54{word-spacing:0.420000px;}
.ws71{word-spacing:0.480000px;}
.ws1b{word-spacing:0.600000px;}
.wsaa{word-spacing:0.624000px;}
.ws6c{word-spacing:0.660000px;}
.ws75{word-spacing:0.780000px;}
.ws32{word-spacing:0.912000px;}
.wsa6{word-spacing:1.056000px;}
.ws2e{word-spacing:1.080000px;}
.ws90{word-spacing:1.200000px;}
.wsa5{word-spacing:1.296000px;}
.ws56{word-spacing:1.380000px;}
.ws8f{word-spacing:1.440000px;}
.ws25{word-spacing:1.500000px;}
.ws2c{word-spacing:1.560000px;}
.ws72{word-spacing:1.620000px;}
.wse{word-spacing:1.860000px;}
.ws57{word-spacing:1.872000px;}
.wsb7{word-spacing:2.040000px;}
.wsa2{word-spacing:2.064000px;}
.ws31{word-spacing:2.100000px;}
.ws58{word-spacing:2.208000px;}
.ws84{word-spacing:2.280000px;}
.ws4e{word-spacing:2.352000px;}
.ws6a{word-spacing:2.460000px;}
.ws79{word-spacing:2.496000px;}
.ws6{word-spacing:2.820000px;}
.ws12{word-spacing:2.880000px;}
.ws77{word-spacing:2.976000px;}
.wsac{word-spacing:3.072000px;}
.ws1f{word-spacing:3.120000px;}
.wsb3{word-spacing:3.216000px;}
.ws2d{word-spacing:3.360000px;}
.ws91{word-spacing:3.504000px;}
.ws78{word-spacing:3.600000px;}
.ws4d{word-spacing:3.648000px;}
.ws23{word-spacing:3.720000px;}
.wsa8{word-spacing:3.792000px;}
.ws17{word-spacing:3.840000px;}
.ws22{word-spacing:3.900000px;}
.ws8a{word-spacing:3.936000px;}
.ws4c{word-spacing:3.984000px;}
.ws30{word-spacing:4.020000px;}
.ws2f{word-spacing:4.080000px;}
.ws74{word-spacing:4.740000px;}
.wsc{word-spacing:4.860000px;}
.ws5{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.ws97{word-spacing:5.136000px;}
.wsf{word-spacing:5.520000px;}
.ws11{word-spacing:5.940000px;}
.ws5c{word-spacing:59.315328px;}
.ws5e{word-spacing:59.535014px;}
.ws3e{word-spacing:60.464232px;}
.ws40{word-spacing:60.688174px;}
.ws60{word-spacing:62.464166px;}
.ws5b{word-spacing:62.683853px;}
.ws42{word-spacing:63.674062px;}
.ws3d{word-spacing:63.898003px;}
.ws5d{word-spacing:70.006733px;}
.ws61{word-spacing:70.226419px;}
.ws3f{word-spacing:71.362723px;}
.ws43{word-spacing:71.586665px;}
.ws53{word-spacing:123.130556px;}
.ws69{word-spacing:131.433701px;}
.ws67{word-spacing:131.678685px;}
.ws4b{word-spacing:133.979287px;}
.ws49{word-spacing:134.229015px;}
.ws52{word-spacing:135.335374px;}
.ws66{word-spacing:137.639953px;}
.ws48{word-spacing:140.305739px;}
.ws65{word-spacing:140.906401px;}
.ws47{word-spacing:143.635451px;}
.ws64{word-spacing:166.485677px;}
.ws63{word-spacing:172.710125px;}
.ws3b{word-spacing:207.668510px;}
.ws70{word-spacing:243.105323px;}
.ws45{word-spacing:276.269287px;}
.ws33{word-spacing:283.296000px;}
.ws46{word-spacing:303.179603px;}
.ws37{word-spacing:328.848000px;}
.ws39{word-spacing:332.640000px;}
.ws36{word-spacing:350.640000px;}
.ws38{word-spacing:355.056000px;}
.ws34{word-spacing:362.640000px;}
.ws35{word-spacing:374.640000px;}
.ws68{word-spacing:519.324401px;}
.ws4a{word-spacing:529.382587px;}
.ws5f{word-spacing:587.075290px;}
.ws41{word-spacing:598.446602px;}
.ws51{word-spacing:1008.819493px;}
._c{margin-left:-2898.144000px;}
._e{margin-left:-2874.336000px;}
._22{margin-left:-1720.836783px;}
._1d{margin-left:-1260.860711px;}
._28{margin-left:-1236.904119px;}
._1c{margin-left:-92.374889px;}
._27{margin-left:-90.619749px;}
._1e{margin-left:-77.610868px;}
._29{margin-left:-76.136247px;}
._1b{margin-left:-51.740579px;}
._26{margin-left:-49.774417px;}
._7{margin-left:-7.740000px;}
._b{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.066158px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._5{width:1.200000px;}
._a{width:2.220000px;}
._4{width:3.840000px;}
._6{width:5.340000px;}
._9{width:6.780000px;}
._8{width:7.980000px;}
._d{width:9.120000px;}
._2a{width:73.009114px;}
._1f{width:74.423258px;}
._2b{width:82.677791px;}
._25{width:132.013573px;}
._24{width:136.455082px;}
._23{width:149.182429px;}
._21{width:289.145929px;}
._20{width:296.573326px;}
._12{width:306.720000px;}
._11{width:313.296000px;}
._10{width:315.984000px;}
._19{width:321.312000px;}
._16{width:332.640000px;}
._14{width:339.936000px;}
._18{width:344.640000px;}
._1a{width:351.936000px;}
._15{width:362.640000px;}
._17{width:374.640000px;}
._13{width:488.784000px;}
._f{width:494.112000px;}
.fc3{color:transparent;}
.fc2{color:rgb(125,124,125);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs16{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fsf{font-size:36.614400px;}
.fs4{font-size:36.729000px;}
.fsb{font-size:37.323600px;}
.fs7{font-size:39.000000px;}
.fs11{font-size:40.830600px;}
.fsd{font-size:41.621400px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs12{font-size:48.889200px;}
.fs14{font-size:57.111600px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs10{font-size:65.241000px;}
.fs15{font-size:65.334000px;}
.fse{font-size:66.504000px;}
.fsc{font-size:66.504600px;}
.fs13{font-size:73.557000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.ya3{bottom:83.566650px;}
.y65{bottom:83.770350px;}
.y7b{bottom:83.912100px;}
.y16a{bottom:84.381900px;}
.y12d{bottom:84.428700px;}
.yf0{bottom:84.488100px;}
.y1f{bottom:88.029450px;}
.y183{bottom:92.121900px;}
.y1c3{bottom:95.263500px;}
.ya2{bottom:99.310650px;}
.y169{bottom:100.125900px;}
.yef{bottom:100.232100px;}
.y64{bottom:101.770350px;}
.y7a{bottom:101.912100px;}
.y1e{bottom:103.023000px;}
.y182{bottom:107.121900px;}
.y138{bottom:108.426000px;}
.y1c2{bottom:110.263500px;}
.y14e{bottom:112.270801px;}
.y168{bottom:115.869900px;}
.yee{bottom:115.976100px;}
.y63{bottom:119.770350px;}
.y79{bottom:119.912100px;}
.yb2{bottom:120.824250px;}
.y181{bottom:122.121900px;}
.y1c1{bottom:125.263500px;}
.y167{bottom:131.613900px;}
.yed{bottom:131.720100px;}
.yb1{bottom:137.072250px;}
.y62{bottom:137.770350px;}
.y78{bottom:137.912100px;}
.y1c0{bottom:140.263500px;}
.y145{bottom:141.840750px;}
.y166{bottom:147.357900px;}
.yec{bottom:147.464100px;}
.y14a{bottom:150.550500px;}
.yb0{bottom:153.320250px;}
.y180{bottom:155.230350px;}
.y1bf{bottom:155.263500px;}
.y61{bottom:155.770350px;}
.y77{bottom:155.912100px;}
.yaf{bottom:169.568250px;}
.y1be{bottom:170.263500px;}
.yf1{bottom:170.892000px;}
.y2a{bottom:172.000950px;}
.y60{bottom:173.770350px;}
.y76{bottom:173.912100px;}
.y10e{bottom:174.809700px;}
.y144{bottom:181.120079px;}
.y16f{bottom:182.762201px;}
.y141{bottom:184.225500px;}
.y1bd{bottom:185.263500px;}
.yae{bottom:185.816250px;}
.y172{bottom:189.377268px;}
.y29{bottom:190.000950px;}
.y16e{bottom:191.313900px;}
.y5f{bottom:191.770350px;}
.y75{bottom:191.912100px;}
.y1bc{bottom:200.263500px;}
.yad{bottom:202.064250px;}
.y170{bottom:202.313400px;}
.y28{bottom:208.000950px;}
.y171{bottom:208.928467px;}
.y5e{bottom:209.770350px;}
.y74{bottom:209.912100px;}
.y1bb{bottom:215.263500px;}
.yac{bottom:218.312250px;}
.y108{bottom:221.576400px;}
.y104{bottom:224.574900px;}
.y27{bottom:226.000950px;}
.y17f{bottom:227.365350px;}
.y5d{bottom:227.770350px;}
.y73{bottom:227.920350px;}
.y1ba{bottom:230.263500px;}
.y179{bottom:230.369700px;}
.y177{bottom:230.925900px;}
.yab{bottom:234.560250px;}
.y26{bottom:244.000950px;}
.yf5{bottom:245.006056px;}
.y1b9{bottom:245.263500px;}
.y5c{bottom:245.770350px;}
.y72{bottom:245.920350px;}
.y16c{bottom:250.479750px;}
.y16b{bottom:250.481100px;}
.y178{bottom:250.648350px;}
.yaa{bottom:250.808250px;}
.y1b8{bottom:260.263500px;}
.y25{bottom:262.000950px;}
.y17e{bottom:263.365350px;}
.y5b{bottom:263.770350px;}
.y71{bottom:263.920350px;}
.y176{bottom:266.651638px;}
.ya9{bottom:267.056250px;}
.y1b7{bottom:275.263500px;}
.y16d{bottom:276.869400px;}
.y24{bottom:280.000950px;}
.y5a{bottom:281.770350px;}
.y70{bottom:281.920350px;}
.ya8{bottom:283.304250px;}
.y175{bottom:283.770840px;}
.y1d4{bottom:284.912100px;}
.y14d{bottom:285.800851px;}
.y1b6{bottom:290.263500px;}
.y23{bottom:298.000950px;}
.ya7{bottom:299.552250px;}
.y59{bottom:299.770350px;}
.y6f{bottom:299.920350px;}
.y174{bottom:300.932876px;}
.y1d3{bottom:302.912100px;}
.y1b5{bottom:305.263500px;}
.y22{bottom:316.000950px;}
.y58{bottom:317.770350px;}
.y6e{bottom:317.920350px;}
.y173{bottom:318.037800px;}
.y1b4{bottom:320.263500px;}
.y1d2{bottom:320.912100px;}
.ya6{bottom:331.064250px;}
.y21{bottom:334.000950px;}
.y1b3{bottom:335.263500px;}
.y17d{bottom:335.365350px;}
.y57{bottom:335.770350px;}
.y6d{bottom:335.920350px;}
.y1d1{bottom:338.912100px;}
.y1b2{bottom:350.263500px;}
.y149{bottom:351.309696px;}
.y107{bottom:351.316950px;}
.y2c{bottom:352.000950px;}
.y56{bottom:353.770350px;}
.y6c{bottom:353.920350px;}
.y1d0{bottom:356.914350px;}
.y146{bottom:364.191750px;}
.y105{bottom:364.542150px;}
.y1b1{bottom:365.263500px;}
.ya5{bottom:365.959350px;}
.y20{bottom:369.595950px;}
.y2b{bottom:370.000950px;}
.y55{bottom:371.770350px;}
.y6b{bottom:371.920350px;}
.y1cf{bottom:374.914350px;}
.y14b{bottom:379.670400px;}
.y1b0{bottom:380.263500px;}
.y147{bottom:384.270198px;}
.y17c{bottom:389.365350px;}
.y54{bottom:389.770350px;}
.y6a{bottom:389.920350px;}
.y1ce{bottom:392.914350px;}
.y1af{bottom:395.263500px;}
.y150{bottom:404.961750px;}
.y152{bottom:405.239100px;}
.y106{bottom:407.412192px;}
.y165{bottom:407.650350px;}
.y53{bottom:407.770350px;}
.y69{bottom:407.920350px;}
.y1ae{bottom:410.263500px;}
.yb7{bottom:414.056250px;}
.y1ad{bottom:425.263500px;}
.y148{bottom:425.264120px;}
.y164{bottom:425.650350px;}
.y52{bottom:425.770350px;}
.y159{bottom:425.920350px;}
.y14c{bottom:427.217634px;}
.y1cd{bottom:428.914350px;}
.yb6{bottom:429.800250px;}
.y1ac{bottom:440.263500px;}
.y68{bottom:443.515350px;}
.y163{bottom:443.650350px;}
.y51{bottom:443.770350px;}
.y158{bottom:443.920350px;}
.y1d{bottom:444.514200px;}
.yb5{bottom:445.544250px;}
.y1cc{bottom:446.914350px;}
.y1ab{bottom:455.263500px;}
.y142{bottom:460.223700px;}
.yb4{bottom:461.288250px;}
.y162{bottom:461.650350px;}
.y50{bottom:461.770350px;}
.y157{bottom:461.920350px;}
.y140{bottom:463.995750px;}
.y1cb{bottom:464.914350px;}
.y1aa{bottom:470.263500px;}
.y1c{bottom:471.859200px;}
.y110{bottom:473.174814px;}
.y112{bottom:473.457456px;}
.yb3{bottom:477.032250px;}
.y137{bottom:477.307289px;}
.y132{bottom:478.139489px;}
.y161{bottom:479.650350px;}
.y4f{bottom:479.770350px;}
.y156{bottom:479.920350px;}
.ya1{bottom:480.070350px;}
.y13f{bottom:480.417300px;}
.y1ca{bottom:482.914350px;}
.y1a9{bottom:485.263500px;}
.y143{bottom:485.910300px;}
.y133{bottom:488.904900px;}
.y12e{bottom:489.737100px;}
.y1b{bottom:489.859200px;}
.y13e{bottom:493.457400px;}
.y109{bottom:494.271600px;}
.y13d{bottom:496.674187px;}
.y17b{bottom:497.365350px;}
.y160{bottom:497.650350px;}
.y4e{bottom:497.770350px;}
.y155{bottom:497.920350px;}
.ya0{bottom:498.070350px;}
.y1a8{bottom:500.263500px;}
.yc0{bottom:500.629500px;}
.y1c9{bottom:500.914350px;}
.yc8{bottom:504.547500px;}
.y1a{bottom:507.859200px;}
.y13c{bottom:512.536875px;}
.y1a7{bottom:515.263500px;}
.y15f{bottom:515.650350px;}
.y4d{bottom:515.770350px;}
.y154{bottom:515.920350px;}
.y9f{bottom:516.070350px;}
.y1c8{bottom:518.914350px;}
.y14f{bottom:522.612300px;}
.y151{bottom:522.889500px;}
.y139{bottom:525.165150px;}
.y19{bottom:525.859200px;}
.y134{bottom:526.297356px;}
.y12f{bottom:527.074634px;}
.y13b{bottom:528.348525px;}
.y1a6{bottom:530.263500px;}
.yc6{bottom:532.656450px;}
.y103{bottom:533.349300px;}
.y15e{bottom:533.650350px;}
.y4c{bottom:533.770350px;}
.y87{bottom:533.920350px;}
.y9e{bottom:534.070350px;}
.yf2{bottom:535.335900px;}
.yc1{bottom:535.338450px;}
.yc5{bottom:539.779950px;}
.y18{bottom:543.859200px;}
.y13a{bottom:544.660350px;}
.y1a5{bottom:545.263500px;}
.y101{bottom:546.853619px;}
.yfb{bottom:547.531919px;}
.y102{bottom:550.088850px;}
.y15d{bottom:551.650350px;}
.y4b{bottom:551.770350px;}
.y86{bottom:551.920350px;}
.y9d{bottom:552.070350px;}
.y1c7{bottom:554.509350px;}
.yf4{bottom:555.699402px;}
.yfc{bottom:558.685200px;}
.yf6{bottom:559.363500px;}
.y1a4{bottom:560.263500px;}
.y17{bottom:561.859200px;}
.yf3{bottom:563.378550px;}
.y135{bottom:563.689812px;}
.y130{bottom:564.467090px;}
.y10d{bottom:566.660600px;}
.y4a{bottom:569.770350px;}
.y85{bottom:569.920350px;}
.y9c{bottom:570.070350px;}
.ycf{bottom:574.732654px;}
.y1a3{bottom:575.263500px;}
.yc7{bottom:577.898100px;}
.y16{bottom:579.859200px;}
.y10c{bottom:582.830514px;}
.yfd{bottom:585.884773px;}
.yf7{bottom:586.563073px;}
.y15c{bottom:587.245350px;}
.y49{bottom:587.770350px;}
.y84{bottom:587.920350px;}
.y9b{bottom:588.070350px;}
.y1a2{bottom:590.263500px;}
.y15{bottom:597.859200px;}
.y10b{bottom:598.948401px;}
.y136{bottom:601.027346px;}
.y131{bottom:601.859546px;}
.y1a1{bottom:605.263500px;}
.y48{bottom:605.770350px;}
.y83{bottom:605.920350px;}
.yfe{bottom:613.084347px;}
.yf8{bottom:613.762647px;}
.y10a{bottom:615.576150px;}
.y14{bottom:615.859200px;}
.ycc{bottom:618.454866px;}
.y1a0{bottom:620.263500px;}
.y9a{bottom:623.665350px;}
.y47{bottom:623.770350px;}
.y82{bottom:623.920350px;}
.y13{bottom:633.859200px;}
.y19f{bottom:635.263500px;}
.yff{bottom:640.283921px;}
.yf9{bottom:640.962220px;}
.y99{bottom:641.665350px;}
.y46{bottom:641.770350px;}
.y15b{bottom:641.785350px;}
.y81{bottom:641.920350px;}
.y19e{bottom:650.263500px;}
.y12{bottom:651.859200px;}
.y45{bottom:659.770350px;}
.y15a{bottom:659.785350px;}
.y80{bottom:659.920350px;}
.y19d{bottom:665.263500px;}
.y100{bottom:667.483494px;}
.yfa{bottom:668.217779px;}
.y11{bottom:669.859200px;}
.y17a{bottom:677.365350px;}
.y44{bottom:677.770350px;}
.y12c{bottom:677.785350px;}
.y7f{bottom:677.920350px;}
.y117{bottom:678.070350px;}
.y19c{bottom:680.263500px;}
.y19b{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.y12b{bottom:695.785350px;}
.y7e{bottom:695.920350px;}
.y10f{bottom:703.627800px;}
.y111{bottom:703.910442px;}
.y19a{bottom:710.263500px;}
.y67{bottom:713.365350px;}
.y116{bottom:713.665350px;}
.y42{bottom:713.770350px;}
.y12a{bottom:713.785350px;}
.y98{bottom:713.920350px;}
.y10{bottom:715.017300px;}
.y199{bottom:725.263500px;}
.yf{bottom:727.468050px;}
.y7d{bottom:731.515350px;}
.y115{bottom:731.665350px;}
.y41{bottom:731.770350px;}
.y129{bottom:731.785350px;}
.y97{bottom:731.920350px;}
.y198{bottom:740.263500px;}
.y66{bottom:749.230350px;}
.y40{bottom:749.770350px;}
.ye3{bottom:749.772600px;}
.y128{bottom:749.785350px;}
.y96{bottom:749.920350px;}
.y197{bottom:755.263500px;}
.ycb{bottom:755.930351px;}
.ye{bottom:759.183600px;}
.y3f{bottom:767.770350px;}
.ye2{bottom:767.772600px;}
.y127{bottom:767.785350px;}
.y95{bottom:767.920350px;}
.y196{bottom:770.263500px;}
.yc9{bottom:776.855510px;}
.yd{bottom:778.108950px;}
.y195{bottom:785.263500px;}
.y3e{bottom:785.770350px;}
.ye1{bottom:785.772600px;}
.y126{bottom:785.785350px;}
.y94{bottom:785.920350px;}
.yc{bottom:786.183600px;}
.y194{bottom:800.263500px;}
.yd5{bottom:802.910685px;}
.yd7{bottom:803.193329px;}
.y3d{bottom:803.770350px;}
.ye0{bottom:803.772600px;}
.y125{bottom:803.785350px;}
.y93{bottom:803.920350px;}
.yb{bottom:805.108950px;}
.ya{bottom:813.183600px;}
.y193{bottom:815.263500px;}
.y3c{bottom:821.770350px;}
.ydf{bottom:821.772600px;}
.y124{bottom:821.785350px;}
.y92{bottom:821.920350px;}
.yca{bottom:823.169722px;}
.y192{bottom:830.263500px;}
.y9{bottom:832.108950px;}
.y3b{bottom:839.770350px;}
.yeb{bottom:839.772600px;}
.y123{bottom:839.785350px;}
.y91{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.y191{bottom:845.263500px;}
.yde{bottom:857.367600px;}
.y3a{bottom:857.770350px;}
.yea{bottom:857.772600px;}
.y122{bottom:857.785350px;}
.y90{bottom:857.920350px;}
.y7{bottom:859.108950px;}
.y190{bottom:860.263500px;}
.ycd{bottom:862.366676px;}
.yc4{bottom:863.087850px;}
.y18f{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.ye9{bottom:875.772600px;}
.y121{bottom:875.785350px;}
.y8f{bottom:875.920350px;}
.ybb{bottom:877.731600px;}
.ybf{bottom:877.788750px;}
.yc3{bottom:879.827400px;}
.yce{bottom:885.426000px;}
.y6{bottom:887.830950px;}
.yb8{bottom:889.553850px;}
.ybc{bottom:889.611000px;}
.y18e{bottom:890.263500px;}
.yc2{bottom:893.119350px;}
.ydd{bottom:893.232600px;}
.y38{bottom:893.770350px;}
.ye8{bottom:893.772600px;}
.y120{bottom:893.785350px;}
.y8e{bottom:893.920350px;}
.yd3{bottom:896.399150px;}
.y18d{bottom:905.263500px;}
.y153{bottom:911.515350px;}
.y37{bottom:911.770350px;}
.ye7{bottom:911.772600px;}
.y11f{bottom:911.785350px;}
.y8d{bottom:911.920350px;}
.yd2{bottom:912.569064px;}
.y18c{bottom:920.263500px;}
.yd1{bottom:928.686951px;}
.y114{bottom:929.515350px;}
.y36{bottom:929.770350px;}
.ye6{bottom:929.772600px;}
.y11e{bottom:929.785350px;}
.y8c{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y18b{bottom:935.263500px;}
.ybd{bottom:937.282568px;}
.yb9{bottom:943.952997px;}
.yd0{bottom:945.314700px;}
.y113{bottom:947.515350px;}
.y35{bottom:947.770350px;}
.ydc{bottom:947.772600px;}
.y11d{bottom:947.785350px;}
.y8b{bottom:947.920350px;}
.y18a{bottom:950.263500px;}
.y189{bottom:965.263500px;}
.y34{bottom:965.770350px;}
.ydb{bottom:965.772600px;}
.y11c{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y188{bottom:980.263500px;}
.y8a{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.yda{bottom:983.772600px;}
.y11b{bottom:983.785350px;}
.ybe{bottom:984.898151px;}
.y187{bottom:995.263500px;}
.yba{bottom:998.417460px;}
.y89{bottom:1001.515350px;}
.y32{bottom:1001.770350px;}
.yd9{bottom:1001.772600px;}
.y11a{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y186{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.ye5{bottom:1019.772600px;}
.y119{bottom:1019.785350px;}
.y1c6{bottom:1025.263500px;}
.y185{bottom:1025.265900px;}
.yd4{bottom:1033.365750px;}
.yd6{bottom:1033.648395px;}
.yd8{bottom:1037.367600px;}
.y88{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.ye4{bottom:1037.772600px;}
.y118{bottom:1037.785350px;}
.y1c5{bottom:1040.263500px;}
.y184{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y7c{bottom:1132.418700px;}
.y1c4{bottom:1132.423500px;}
.ya4{bottom:1132.426650px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h1d{height:24.403641px;}
.h14{height:24.876325px;}
.h1c{height:26.656284px;}
.h13{height:27.172601px;}
.h22{height:27.315344px;}
.h21{height:28.011017px;}
.h8{height:28.412109px;}
.h18{height:28.553575px;}
.h20{height:29.725793px;}
.h17{height:30.301517px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.hc{height:32.815976px;}
.h12{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h24{height:35.616546px;}
.h23{height:38.177727px;}
.h19{height:38.917147px;}
.h28{height:41.606693px;}
.he{height:41.689453px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.h1f{height:47.529088px;}
.h27{height:47.596840px;}
.h1b{height:48.449203px;}
.h16{height:48.449640px;}
.h11{height:52.534951px;}
.h25{height:53.551507px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h26{height:91.594840px;}
.h4{height:92.168262px;}
.h1e{height:539.163000px;}
.h1a{height:549.604500px;}
.h15{height:549.606000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:704.929500px;}
.w3{width:718.581000px;}
.w2{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x43{left:83.362500px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x5c{left:102.047400px;}
.x4{left:106.299150px;}
.x1e{left:107.412300px;}
.xb{left:110.555400px;}
.x46{left:113.652150px;}
.x18{left:116.400758px;}
.x57{left:118.750200px;}
.x17{left:121.607400px;}
.x21{left:122.963100px;}
.x3{left:125.439150px;}
.x3e{left:127.133550px;}
.x2c{left:128.674500px;}
.x6{left:131.816400px;}
.x19{left:135.062558px;}
.x2f{left:137.211008px;}
.x3f{left:140.333041px;}
.x2e{left:142.417650px;}
.x36{left:144.225900px;}
.x30{left:155.872808px;}
.x1f{left:166.509900px;}
.x22{left:168.093450px;}
.x47{left:171.627000px;}
.x4f{left:173.176942px;}
.x23{left:177.916100px;}
.x49{left:182.555550px;}
.x34{left:187.771350px;}
.x3c{left:189.354150px;}
.x5b{left:194.255400px;}
.x37{left:198.234000px;}
.x20{left:208.075650px;}
.x5{left:212.876400px;}
.x16{left:214.225350px;}
.x2b{left:220.135350px;}
.x35{left:229.337100px;}
.x54{left:231.975900px;}
.x53{left:234.973650px;}
.x24{left:241.419951px;}
.x4a{left:242.801100px;}
.x38{left:261.737851px;}
.x58{left:278.975700px;}
.x25{left:303.456648px;}
.x4b{left:305.710847px;}
.x39{left:323.774548px;}
.x50{left:347.016600px;}
.x26{left:366.398610px;}
.x4c{left:367.844813px;}
.x3a{left:387.682200px;}
.x52{left:390.643500px;}
.x55{left:393.416214px;}
.x44{left:407.426850px;}
.x1d{left:415.317900px;}
.x2a{left:430.273517px;}
.x3d{left:451.531776px;}
.x28{left:452.607861px;}
.x9{left:455.041500px;}
.xc{left:457.100400px;}
.x41{left:465.154741px;}
.x1b{left:467.032424px;}
.x40{left:470.262450px;}
.x1a{left:472.173750px;}
.x2d{left:473.871986px;}
.x12{left:478.345350px;}
.x7{left:480.476400px;}
.x42{left:483.461941px;}
.x1c{left:485.694224px;}
.x32{left:487.773343px;}
.xe{left:491.120400px;}
.x31{left:492.924000px;}
.x5d{left:503.863050px;}
.x33{left:506.435143px;}
.x13{left:512.365350px;}
.xd{left:525.290400px;}
.x48{left:562.631400px;}
.x27{left:565.067958px;}
.x4d{left:586.433652px;}
.x51{left:591.940350px;}
.x11{left:612.910350px;}
.x10{left:663.492300px;}
.x59{left:665.318100px;}
.x56{left:666.643002px;}
.x5a{left:670.319700px;}
.x2{left:693.365400px;}
.x4e{left:709.976840px;}
.xf{left:735.065400px;}
.x45{left:752.753700px;}
.x14{left:756.319350px;}
.x29{left:758.892000px;}
.x3b{left:780.150450px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.va{vertical-align:-8.317867pt;}
.v7{vertical-align:-2.626773pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.440000pt;}
.v4{vertical-align:2.421887pt;}
.v5{vertical-align:5.031565pt;}
.v6{vertical-align:6.844408pt;}
.v3{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.v8{vertical-align:39.109333pt;}
.ls36{letter-spacing:-6.293333pt;}
.ls33{letter-spacing:-4.906667pt;}
.ls3e{letter-spacing:-1.578667pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls7e{letter-spacing:-0.384000pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.160000pt;}
.ls80{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.106667pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls7f{letter-spacing:-0.042667pt;}
.ls40{letter-spacing:-0.036997pt;}
.ls4c{letter-spacing:-0.036294pt;}
.ls12{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.005045pt;}
.ls5c{letter-spacing:0.042667pt;}
.ls2a{letter-spacing:0.053333pt;}
.ls5e{letter-spacing:0.085333pt;}
.ls42{letter-spacing:0.106667pt;}
.ls6a{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.160000pt;}
.ls79{letter-spacing:0.165867pt;}
.ls65{letter-spacing:0.170667pt;}
.ls17{letter-spacing:0.213333pt;}
.ls5a{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.276800pt;}
.ls6d{letter-spacing:0.298667pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls6f{letter-spacing:0.469333pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls5f{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.554667pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls67{letter-spacing:0.597333pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.693333pt;}
.ls7a{letter-spacing:0.725333pt;}
.ls27{letter-spacing:0.746667pt;}
.ls9{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.853333pt;}
.ls5d{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls5b{letter-spacing:0.938667pt;}
.ls25{letter-spacing:0.960000pt;}
.ls76{letter-spacing:0.981333pt;}
.ls8{letter-spacing:1.013333pt;}
.ls66{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls73{letter-spacing:1.109333pt;}
.ls6{letter-spacing:1.120000pt;}
.ls68{letter-spacing:1.152000pt;}
.ls46{letter-spacing:1.173333pt;}
.lsf{letter-spacing:1.226667pt;}
.ls63{letter-spacing:1.237333pt;}
.ls7{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.333333pt;}
.ls7c{letter-spacing:1.386667pt;}
.ls59{letter-spacing:1.408000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls69{letter-spacing:1.450667pt;}
.ls21{letter-spacing:1.493333pt;}
.lsa{letter-spacing:1.546667pt;}
.ls70{letter-spacing:1.578667pt;}
.ls4{letter-spacing:1.600000pt;}
.ls71{letter-spacing:1.621333pt;}
.ls4f{letter-spacing:1.653333pt;}
.ls2c{letter-spacing:1.706667pt;}
.ls72{letter-spacing:1.749333pt;}
.ls41{letter-spacing:1.760000pt;}
.ls75{letter-spacing:1.792000pt;}
.ls3a{letter-spacing:1.813333pt;}
.ls2d{letter-spacing:1.866667pt;}
.ls31{letter-spacing:1.920000pt;}
.ls61{letter-spacing:1.962667pt;}
.lse{letter-spacing:1.973333pt;}
.ls24{letter-spacing:2.026667pt;}
.ls3b{letter-spacing:2.080000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls6b{letter-spacing:2.176000pt;}
.ls1a{letter-spacing:2.186667pt;}
.ls7b{letter-spacing:2.218667pt;}
.ls74{letter-spacing:2.261333pt;}
.ls15{letter-spacing:2.293333pt;}
.ls3{letter-spacing:2.346667pt;}
.ls50{letter-spacing:2.400000pt;}
.ls52{letter-spacing:2.453333pt;}
.ls10{letter-spacing:2.560000pt;}
.ls26{letter-spacing:2.613333pt;}
.ls60{letter-spacing:2.645333pt;}
.ls5{letter-spacing:2.666667pt;}
.ls4e{letter-spacing:2.720000pt;}
.ls77{letter-spacing:2.773333pt;}
.ls7d{letter-spacing:2.826667pt;}
.ls6c{letter-spacing:2.858667pt;}
.ls22{letter-spacing:2.880000pt;}
.ls39{letter-spacing:2.933333pt;}
.ls1b{letter-spacing:2.986667pt;}
.ls23{letter-spacing:3.040000pt;}
.ls51{letter-spacing:3.146667pt;}
.ls44{letter-spacing:3.200000pt;}
.ls30{letter-spacing:3.306667pt;}
.ls20{letter-spacing:3.520000pt;}
.ls6e{letter-spacing:3.626667pt;}
.ls45{letter-spacing:3.786667pt;}
.ls2f{letter-spacing:4.320000pt;}
.ls56{letter-spacing:4.586667pt;}
.ls53{letter-spacing:4.693333pt;}
.ls4d{letter-spacing:4.800000pt;}
.ls28{letter-spacing:4.960000pt;}
.ls57{letter-spacing:5.706667pt;}
.ls55{letter-spacing:6.560000pt;}
.ls58{letter-spacing:6.720000pt;}
.ls54{letter-spacing:9.066667pt;}
.ls0{letter-spacing:52.922667pt;}
.ls49{letter-spacing:68.477065pt;}
.ls48{letter-spacing:68.509611pt;}
.ls43{letter-spacing:69.803426pt;}
.ls3d{letter-spacing:69.836603pt;}
.ls4b{letter-spacing:180.761225pt;}
.ls47{letter-spacing:180.956501pt;}
.ls3f{letter-spacing:184.461525pt;}
.ls4a{letter-spacing:196.386113pt;}
.ws4f{word-spacing:-184.461525pt;}
.ws6d{word-spacing:-180.956501pt;}
.ws6e{word-spacing:-180.761225pt;}
.ws7a{word-spacing:-19.520000pt;}
.ws2a{word-spacing:-14.826667pt;}
.ws8{word-spacing:-14.186667pt;}
.wsa{word-spacing:-13.866667pt;}
.ws82{word-spacing:-12.842667pt;}
.wsa0{word-spacing:-12.800000pt;}
.ws7d{word-spacing:-12.586667pt;}
.ws81{word-spacing:-12.117333pt;}
.ws2{word-spacing:-11.861333pt;}
.wsa1{word-spacing:-11.690667pt;}
.ws7c{word-spacing:-11.562667pt;}
.ws9e{word-spacing:-11.306667pt;}
.ws9d{word-spacing:-11.221333pt;}
.ws7e{word-spacing:-11.178667pt;}
.ws1{word-spacing:-11.120000pt;}
.ws7b{word-spacing:-10.922667pt;}
.ws80{word-spacing:-10.837333pt;}
.ws83{word-spacing:-10.752000pt;}
.ws7f{word-spacing:-10.666667pt;}
.ws44{word-spacing:-10.285110pt;}
.ws62{word-spacing:-10.089695pt;}
.ws3a{word-spacing:-9.223076pt;}
.ws0{word-spacing:-9.076144pt;}
.ws59{word-spacing:-9.047825pt;}
.wsb{word-spacing:-7.773333pt;}
.ws9{word-spacing:-7.040000pt;}
.ws9f{word-spacing:-6.218667pt;}
.ws2b{word-spacing:-2.880000pt;}
.ws9a{word-spacing:-2.858667pt;}
.wsb1{word-spacing:-2.773333pt;}
.ws4{word-spacing:-2.565333pt;}
.ws1c{word-spacing:-2.346667pt;}
.wsb5{word-spacing:-2.218667pt;}
.ws86{word-spacing:-2.186667pt;}
.ws98{word-spacing:-2.176000pt;}
.wsa3{word-spacing:-2.133333pt;}
.ws1a{word-spacing:-2.026667pt;}
.ws92{word-spacing:-1.920000pt;}
.wsb0{word-spacing:-1.792000pt;}
.wsad{word-spacing:-1.749333pt;}
.ws24{word-spacing:-1.706667pt;}
.ws26{word-spacing:-1.546667pt;}
.ws28{word-spacing:-1.493333pt;}
.wsd{word-spacing:-1.386667pt;}
.ws87{word-spacing:-1.333333pt;}
.ws99{word-spacing:-1.280000pt;}
.ws93{word-spacing:-1.237333pt;}
.ws96{word-spacing:-1.152000pt;}
.ws73{word-spacing:-1.120000pt;}
.wsb6{word-spacing:-1.024000pt;}
.ws27{word-spacing:-1.013333pt;}
.ws16{word-spacing:-0.960000pt;}
.ws8b{word-spacing:-0.938667pt;}
.ws8d{word-spacing:-0.896000pt;}
.wsb4{word-spacing:-0.725333pt;}
.wsaf{word-spacing:-0.682667pt;}
.ws20{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.597333pt;}
.wsab{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.533333pt;}
.ws8e{word-spacing:-0.512000pt;}
.ws85{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.469333pt;}
.ws1d{word-spacing:-0.426667pt;}
.ws19{word-spacing:-0.373333pt;}
.ws94{word-spacing:-0.341333pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws9b{word-spacing:-0.298667pt;}
.ws76{word-spacing:-0.266667pt;}
.ws89{word-spacing:-0.256000pt;}
.ws55{word-spacing:-0.213333pt;}
.ws95{word-spacing:-0.170667pt;}
.ws29{word-spacing:-0.160000pt;}
.wsae{word-spacing:-0.128000pt;}
.ws8c{word-spacing:-0.085333pt;}
.ws3c{word-spacing:-0.059115pt;}
.ws5a{word-spacing:-0.057992pt;}
.ws18{word-spacing:-0.053333pt;}
.wsa7{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.036294pt;}
.ws50{word-spacing:0.036997pt;}
.wsa9{word-spacing:0.042667pt;}
.ws13{word-spacing:0.053333pt;}
.ws14{word-spacing:0.106667pt;}
.ws88{word-spacing:0.128000pt;}
.ws1e{word-spacing:0.213333pt;}
.ws21{word-spacing:0.266667pt;}
.ws10{word-spacing:0.320000pt;}
.wsb2{word-spacing:0.341333pt;}
.ws54{word-spacing:0.373333pt;}
.ws71{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.533333pt;}
.wsaa{word-spacing:0.554667pt;}
.ws6c{word-spacing:0.586667pt;}
.ws75{word-spacing:0.693333pt;}
.ws32{word-spacing:0.810667pt;}
.wsa6{word-spacing:0.938667pt;}
.ws2e{word-spacing:0.960000pt;}
.ws90{word-spacing:1.066667pt;}
.wsa5{word-spacing:1.152000pt;}
.ws56{word-spacing:1.226667pt;}
.ws8f{word-spacing:1.280000pt;}
.ws25{word-spacing:1.333333pt;}
.ws2c{word-spacing:1.386667pt;}
.ws72{word-spacing:1.440000pt;}
.wse{word-spacing:1.653333pt;}
.ws57{word-spacing:1.664000pt;}
.wsb7{word-spacing:1.813333pt;}
.wsa2{word-spacing:1.834667pt;}
.ws31{word-spacing:1.866667pt;}
.ws58{word-spacing:1.962667pt;}
.ws84{word-spacing:2.026667pt;}
.ws4e{word-spacing:2.090667pt;}
.ws6a{word-spacing:2.186667pt;}
.ws79{word-spacing:2.218667pt;}
.ws6{word-spacing:2.506667pt;}
.ws12{word-spacing:2.560000pt;}
.ws77{word-spacing:2.645333pt;}
.wsac{word-spacing:2.730667pt;}
.ws1f{word-spacing:2.773333pt;}
.wsb3{word-spacing:2.858667pt;}
.ws2d{word-spacing:2.986667pt;}
.ws91{word-spacing:3.114667pt;}
.ws78{word-spacing:3.200000pt;}
.ws4d{word-spacing:3.242667pt;}
.ws23{word-spacing:3.306667pt;}
.wsa8{word-spacing:3.370667pt;}
.ws17{word-spacing:3.413333pt;}
.ws22{word-spacing:3.466667pt;}
.ws8a{word-spacing:3.498667pt;}
.ws4c{word-spacing:3.541333pt;}
.ws30{word-spacing:3.573333pt;}
.ws2f{word-spacing:3.626667pt;}
.ws74{word-spacing:4.213333pt;}
.wsc{word-spacing:4.320000pt;}
.ws5{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.ws97{word-spacing:4.565333pt;}
.wsf{word-spacing:4.906667pt;}
.ws11{word-spacing:5.280000pt;}
.ws5c{word-spacing:52.724736pt;}
.ws5e{word-spacing:52.920013pt;}
.ws3e{word-spacing:53.745984pt;}
.ws40{word-spacing:53.945043pt;}
.ws60{word-spacing:55.523703pt;}
.ws5b{word-spacing:55.718980pt;}
.ws42{word-spacing:56.599166pt;}
.ws3d{word-spacing:56.798225pt;}
.ws5d{word-spacing:62.228207pt;}
.ws61{word-spacing:62.423484pt;}
.ws3f{word-spacing:63.433532pt;}
.ws43{word-spacing:63.632591pt;}
.ws53{word-spacing:109.449383pt;}
.ws69{word-spacing:116.829957pt;}
.ws67{word-spacing:117.047720pt;}
.ws4b{word-spacing:119.092699pt;}
.ws49{word-spacing:119.314680pt;}
.ws52{word-spacing:120.298110pt;}
.ws66{word-spacing:122.346625pt;}
.ws48{word-spacing:124.716213pt;}
.ws65{word-spacing:125.250134pt;}
.ws47{word-spacing:127.675957pt;}
.ws64{word-spacing:147.987268pt;}
.ws63{word-spacing:153.520111pt;}
.ws3b{word-spacing:184.594231pt;}
.ws70{word-spacing:216.093620pt;}
.ws45{word-spacing:245.572700pt;}
.ws33{word-spacing:251.818667pt;}
.ws46{word-spacing:269.492980pt;}
.ws37{word-spacing:292.309333pt;}
.ws39{word-spacing:295.680000pt;}
.ws36{word-spacing:311.680000pt;}
.ws38{word-spacing:315.605333pt;}
.ws34{word-spacing:322.346667pt;}
.ws35{word-spacing:333.013333pt;}
.ws68{word-spacing:461.621690pt;}
.ws4a{word-spacing:470.562299pt;}
.ws5f{word-spacing:521.844702pt;}
.ws41{word-spacing:531.952535pt;}
.ws51{word-spacing:896.728438pt;}
._c{margin-left:-2576.128000pt;}
._e{margin-left:-2554.965333pt;}
._22{margin-left:-1529.632696pt;}
._1d{margin-left:-1120.765077pt;}
._28{margin-left:-1099.470328pt;}
._1c{margin-left:-82.111013pt;}
._27{margin-left:-80.550888pt;}
._1e{margin-left:-68.987438pt;}
._29{margin-left:-67.676664pt;}
._1b{margin-left:-45.991626pt;}
._26{margin-left:-44.243926pt;}
._7{margin-left:-6.880000pt;}
._b{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.614363pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._5{width:1.066667pt;}
._a{width:1.973333pt;}
._4{width:3.413333pt;}
._6{width:4.746667pt;}
._9{width:6.026667pt;}
._8{width:7.093333pt;}
._d{width:8.106667pt;}
._2a{width:64.896990pt;}
._1f{width:66.154007pt;}
._2b{width:73.491370pt;}
._25{width:117.345398pt;}
._24{width:121.293406pt;}
._23{width:132.606604pt;}
._21{width:257.018604pt;}
._20{width:263.620734pt;}
._12{width:272.640000pt;}
._11{width:278.485333pt;}
._10{width:280.874667pt;}
._19{width:285.610667pt;}
._16{width:295.680000pt;}
._14{width:302.165333pt;}
._18{width:306.346667pt;}
._1a{width:312.832000pt;}
._15{width:322.346667pt;}
._17{width:333.013333pt;}
._13{width:434.474667pt;}
._f{width:439.210667pt;}
.fs5{font-size:23.320000pt;}
.fs16{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fsf{font-size:32.546133pt;}
.fs4{font-size:32.648000pt;}
.fsb{font-size:33.176533pt;}
.fs7{font-size:34.666667pt;}
.fs11{font-size:36.293867pt;}
.fsd{font-size:36.996800pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs12{font-size:43.457067pt;}
.fs14{font-size:50.765867pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs10{font-size:57.992000pt;}
.fs15{font-size:58.074667pt;}
.fse{font-size:59.114667pt;}
.fsc{font-size:59.115200pt;}
.fs13{font-size:65.384000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.ya3{bottom:74.281467pt;}
.y65{bottom:74.462533pt;}
.y7b{bottom:74.588533pt;}
.y16a{bottom:75.006133pt;}
.y12d{bottom:75.047733pt;}
.yf0{bottom:75.100533pt;}
.y1f{bottom:78.248400pt;}
.y183{bottom:81.886133pt;}
.y1c3{bottom:84.678667pt;}
.ya2{bottom:88.276133pt;}
.y169{bottom:89.000800pt;}
.yef{bottom:89.095200pt;}
.y64{bottom:90.462533pt;}
.y7a{bottom:90.588533pt;}
.y1e{bottom:91.576000pt;}
.y182{bottom:95.219467pt;}
.y138{bottom:96.378667pt;}
.y1c2{bottom:98.012000pt;}
.y14e{bottom:99.796267pt;}
.y168{bottom:102.995467pt;}
.yee{bottom:103.089867pt;}
.y63{bottom:106.462533pt;}
.y79{bottom:106.588533pt;}
.yb2{bottom:107.399333pt;}
.y181{bottom:108.552800pt;}
.y1c1{bottom:111.345333pt;}
.y167{bottom:116.990133pt;}
.yed{bottom:117.084533pt;}
.yb1{bottom:121.842000pt;}
.y62{bottom:122.462533pt;}
.y78{bottom:122.588533pt;}
.y1c0{bottom:124.678667pt;}
.y145{bottom:126.080667pt;}
.y166{bottom:130.984800pt;}
.yec{bottom:131.079200pt;}
.y14a{bottom:133.822667pt;}
.yb0{bottom:136.284667pt;}
.y180{bottom:137.982533pt;}
.y1bf{bottom:138.012000pt;}
.y61{bottom:138.462533pt;}
.y77{bottom:138.588533pt;}
.yaf{bottom:150.727333pt;}
.y1be{bottom:151.345333pt;}
.yf1{bottom:151.904000pt;}
.y2a{bottom:152.889733pt;}
.y60{bottom:154.462533pt;}
.y76{bottom:154.588533pt;}
.y10e{bottom:155.386400pt;}
.y144{bottom:160.995625pt;}
.y16f{bottom:162.455289pt;}
.y141{bottom:163.756000pt;}
.y1bd{bottom:164.678667pt;}
.yae{bottom:165.170000pt;}
.y172{bottom:168.335349pt;}
.y29{bottom:168.889733pt;}
.y16e{bottom:170.056800pt;}
.y5f{bottom:170.462533pt;}
.y75{bottom:170.588533pt;}
.y1bc{bottom:178.012000pt;}
.yad{bottom:179.612667pt;}
.y170{bottom:179.834133pt;}
.y28{bottom:184.889733pt;}
.y171{bottom:185.714193pt;}
.y5e{bottom:186.462533pt;}
.y74{bottom:186.588533pt;}
.y1bb{bottom:191.345333pt;}
.yac{bottom:194.055333pt;}
.y108{bottom:196.956800pt;}
.y104{bottom:199.622133pt;}
.y27{bottom:200.889733pt;}
.y17f{bottom:202.102533pt;}
.y5d{bottom:202.462533pt;}
.y73{bottom:202.595867pt;}
.y1ba{bottom:204.678667pt;}
.y179{bottom:204.773067pt;}
.y177{bottom:205.267467pt;}
.yab{bottom:208.498000pt;}
.y26{bottom:216.889733pt;}
.yf5{bottom:217.783161pt;}
.y1b9{bottom:218.012000pt;}
.y5c{bottom:218.462533pt;}
.y72{bottom:218.595867pt;}
.y16c{bottom:222.648667pt;}
.y16b{bottom:222.649867pt;}
.y178{bottom:222.798533pt;}
.yaa{bottom:222.940667pt;}
.y1b8{bottom:231.345333pt;}
.y25{bottom:232.889733pt;}
.y17e{bottom:234.102533pt;}
.y5b{bottom:234.462533pt;}
.y71{bottom:234.595867pt;}
.y176{bottom:237.023678pt;}
.ya9{bottom:237.383333pt;}
.y1b7{bottom:244.678667pt;}
.y16d{bottom:246.106133pt;}
.y24{bottom:248.889733pt;}
.y5a{bottom:250.462533pt;}
.y70{bottom:250.595867pt;}
.ya8{bottom:251.826000pt;}
.y175{bottom:252.240747pt;}
.y1d4{bottom:253.255200pt;}
.y14d{bottom:254.045201pt;}
.y1b6{bottom:258.012000pt;}
.y23{bottom:264.889733pt;}
.ya7{bottom:266.268667pt;}
.y59{bottom:266.462533pt;}
.y6f{bottom:266.595867pt;}
.y174{bottom:267.495890pt;}
.y1d3{bottom:269.255200pt;}
.y1b5{bottom:271.345333pt;}
.y22{bottom:280.889733pt;}
.y58{bottom:282.462533pt;}
.y6e{bottom:282.595867pt;}
.y173{bottom:282.700267pt;}
.y1b4{bottom:284.678667pt;}
.y1d2{bottom:285.255200pt;}
.ya6{bottom:294.279333pt;}
.y21{bottom:296.889733pt;}
.y1b3{bottom:298.012000pt;}
.y17d{bottom:298.102533pt;}
.y57{bottom:298.462533pt;}
.y6d{bottom:298.595867pt;}
.y1d1{bottom:301.255200pt;}
.y1b2{bottom:311.345333pt;}
.y149{bottom:312.275285pt;}
.y107{bottom:312.281733pt;}
.y2c{bottom:312.889733pt;}
.y56{bottom:314.462533pt;}
.y6c{bottom:314.595867pt;}
.y1d0{bottom:317.257200pt;}
.y146{bottom:323.726000pt;}
.y105{bottom:324.037467pt;}
.y1b1{bottom:324.678667pt;}
.ya5{bottom:325.297200pt;}
.y20{bottom:328.529733pt;}
.y2b{bottom:328.889733pt;}
.y55{bottom:330.462533pt;}
.y6b{bottom:330.595867pt;}
.y1cf{bottom:333.257200pt;}
.y14b{bottom:337.484800pt;}
.y1b0{bottom:338.012000pt;}
.y147{bottom:341.573509pt;}
.y17c{bottom:346.102533pt;}
.y54{bottom:346.462533pt;}
.y6a{bottom:346.595867pt;}
.y1ce{bottom:349.257200pt;}
.y1af{bottom:351.345333pt;}
.y150{bottom:359.966000pt;}
.y152{bottom:360.212533pt;}
.y106{bottom:362.144171pt;}
.y165{bottom:362.355867pt;}
.y53{bottom:362.462533pt;}
.y69{bottom:362.595867pt;}
.y1ae{bottom:364.678667pt;}
.yb7{bottom:368.050000pt;}
.y1ad{bottom:378.012000pt;}
.y148{bottom:378.012551pt;}
.y164{bottom:378.355867pt;}
.y52{bottom:378.462533pt;}
.y159{bottom:378.595867pt;}
.y14c{bottom:379.749008pt;}
.y1cd{bottom:381.257200pt;}
.yb6{bottom:382.044667pt;}
.y1ac{bottom:391.345333pt;}
.y68{bottom:394.235867pt;}
.y163{bottom:394.355867pt;}
.y51{bottom:394.462533pt;}
.y158{bottom:394.595867pt;}
.y1d{bottom:395.123733pt;}
.yb5{bottom:396.039333pt;}
.y1cc{bottom:397.257200pt;}
.y1ab{bottom:404.678667pt;}
.y142{bottom:409.087733pt;}
.yb4{bottom:410.034000pt;}
.y162{bottom:410.355867pt;}
.y50{bottom:410.462533pt;}
.y157{bottom:410.595867pt;}
.y140{bottom:412.440667pt;}
.y1cb{bottom:413.257200pt;}
.y1aa{bottom:418.012000pt;}
.y1c{bottom:419.430400pt;}
.y110{bottom:420.599835pt;}
.y112{bottom:420.851072pt;}
.yb3{bottom:424.028667pt;}
.y137{bottom:424.273146pt;}
.y132{bottom:425.012879pt;}
.y161{bottom:426.355867pt;}
.y4f{bottom:426.462533pt;}
.y156{bottom:426.595867pt;}
.ya1{bottom:426.729200pt;}
.y13f{bottom:427.037600pt;}
.y1ca{bottom:429.257200pt;}
.y1a9{bottom:431.345333pt;}
.y143{bottom:431.920267pt;}
.y133{bottom:434.582133pt;}
.y12e{bottom:435.321867pt;}
.y1b{bottom:435.430400pt;}
.y13e{bottom:438.628800pt;}
.y109{bottom:439.352533pt;}
.y13d{bottom:441.488167pt;}
.y17b{bottom:442.102533pt;}
.y160{bottom:442.355867pt;}
.y4e{bottom:442.462533pt;}
.y155{bottom:442.595867pt;}
.ya0{bottom:442.729200pt;}
.y1a8{bottom:444.678667pt;}
.yc0{bottom:445.004000pt;}
.y1c9{bottom:445.257200pt;}
.yc8{bottom:448.486667pt;}
.y1a{bottom:451.430400pt;}
.y13c{bottom:455.588334pt;}
.y1a7{bottom:458.012000pt;}
.y15f{bottom:458.355867pt;}
.y4d{bottom:458.462533pt;}
.y154{bottom:458.595867pt;}
.y9f{bottom:458.729200pt;}
.y1c8{bottom:461.257200pt;}
.y14f{bottom:464.544267pt;}
.y151{bottom:464.790667pt;}
.y139{bottom:466.813467pt;}
.y19{bottom:467.430400pt;}
.y134{bottom:467.819872pt;}
.y12f{bottom:468.510786pt;}
.y13b{bottom:469.643134pt;}
.y1a6{bottom:471.345333pt;}
.yc6{bottom:473.472400pt;}
.y103{bottom:474.088267pt;}
.y15e{bottom:474.355867pt;}
.y4c{bottom:474.462533pt;}
.y87{bottom:474.595867pt;}
.y9e{bottom:474.729200pt;}
.yf2{bottom:475.854133pt;}
.yc1{bottom:475.856400pt;}
.yc5{bottom:479.804400pt;}
.y18{bottom:483.430400pt;}
.y13a{bottom:484.142533pt;}
.y1a5{bottom:484.678667pt;}
.y101{bottom:486.092106pt;}
.yfb{bottom:486.695039pt;}
.y102{bottom:488.967867pt;}
.y15d{bottom:490.355867pt;}
.y4b{bottom:490.462533pt;}
.y86{bottom:490.595867pt;}
.y9d{bottom:490.729200pt;}
.y1c7{bottom:492.897200pt;}
.yf4{bottom:493.955024pt;}
.yfc{bottom:496.609067pt;}
.yf6{bottom:497.212000pt;}
.y1a4{bottom:498.012000pt;}
.y17{bottom:499.430400pt;}
.yf3{bottom:500.780933pt;}
.y135{bottom:501.057611pt;}
.y130{bottom:501.748525pt;}
.y10d{bottom:503.698311pt;}
.y4a{bottom:506.462533pt;}
.y85{bottom:506.595867pt;}
.y9c{bottom:506.729200pt;}
.ycf{bottom:510.873471pt;}
.y1a3{bottom:511.345333pt;}
.yc7{bottom:513.687200pt;}
.y16{bottom:515.430400pt;}
.y10c{bottom:518.071568pt;}
.yfd{bottom:520.786465pt;}
.yf7{bottom:521.389399pt;}
.y15c{bottom:521.995867pt;}
.y49{bottom:522.462533pt;}
.y84{bottom:522.595867pt;}
.y9b{bottom:522.729200pt;}
.y1a2{bottom:524.678667pt;}
.y15{bottom:531.430400pt;}
.y10b{bottom:532.398578pt;}
.y136{bottom:534.246530pt;}
.y131{bottom:534.986263pt;}
.y1a1{bottom:538.012000pt;}
.y48{bottom:538.462533pt;}
.y83{bottom:538.595867pt;}
.yfe{bottom:544.963864pt;}
.yf8{bottom:545.566797pt;}
.y10a{bottom:547.178800pt;}
.y14{bottom:547.430400pt;}
.ycc{bottom:549.737659pt;}
.y1a0{bottom:551.345333pt;}
.y9a{bottom:554.369200pt;}
.y47{bottom:554.462533pt;}
.y82{bottom:554.595867pt;}
.y13{bottom:563.430400pt;}
.y19f{bottom:564.678667pt;}
.yff{bottom:569.141263pt;}
.yf9{bottom:569.744196pt;}
.y99{bottom:570.369200pt;}
.y46{bottom:570.462533pt;}
.y15b{bottom:570.475867pt;}
.y81{bottom:570.595867pt;}
.y19e{bottom:578.012000pt;}
.y12{bottom:579.430400pt;}
.y45{bottom:586.462533pt;}
.y15a{bottom:586.475867pt;}
.y80{bottom:586.595867pt;}
.y19d{bottom:591.345333pt;}
.y100{bottom:593.318661pt;}
.yfa{bottom:593.971359pt;}
.y11{bottom:595.430400pt;}
.y17a{bottom:602.102533pt;}
.y44{bottom:602.462533pt;}
.y12c{bottom:602.475867pt;}
.y7f{bottom:602.595867pt;}
.y117{bottom:602.729200pt;}
.y19c{bottom:604.678667pt;}
.y19b{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.y12b{bottom:618.475867pt;}
.y7e{bottom:618.595867pt;}
.y10f{bottom:625.446933pt;}
.y111{bottom:625.698171pt;}
.y19a{bottom:631.345333pt;}
.y67{bottom:634.102533pt;}
.y116{bottom:634.369200pt;}
.y42{bottom:634.462533pt;}
.y12a{bottom:634.475867pt;}
.y98{bottom:634.595867pt;}
.y10{bottom:635.570933pt;}
.y199{bottom:644.678667pt;}
.yf{bottom:646.638267pt;}
.y7d{bottom:650.235867pt;}
.y115{bottom:650.369200pt;}
.y41{bottom:650.462533pt;}
.y129{bottom:650.475867pt;}
.y97{bottom:650.595867pt;}
.y198{bottom:658.012000pt;}
.y66{bottom:665.982533pt;}
.y40{bottom:666.462533pt;}
.ye3{bottom:666.464533pt;}
.y128{bottom:666.475867pt;}
.y96{bottom:666.595867pt;}
.y197{bottom:671.345333pt;}
.ycb{bottom:671.938089pt;}
.ye{bottom:674.829867pt;}
.y3f{bottom:682.462533pt;}
.ye2{bottom:682.464533pt;}
.y127{bottom:682.475867pt;}
.y95{bottom:682.595867pt;}
.y196{bottom:684.678667pt;}
.yc9{bottom:690.538231pt;}
.yd{bottom:691.652400pt;}
.y195{bottom:698.012000pt;}
.y3e{bottom:698.462533pt;}
.ye1{bottom:698.464533pt;}
.y126{bottom:698.475867pt;}
.y94{bottom:698.595867pt;}
.yc{bottom:698.829867pt;}
.y194{bottom:711.345333pt;}
.yd5{bottom:713.698387pt;}
.yd7{bottom:713.949626pt;}
.y3d{bottom:714.462533pt;}
.ye0{bottom:714.464533pt;}
.y125{bottom:714.475867pt;}
.y93{bottom:714.595867pt;}
.yb{bottom:715.652400pt;}
.ya{bottom:722.829867pt;}
.y193{bottom:724.678667pt;}
.y3c{bottom:730.462533pt;}
.ydf{bottom:730.464533pt;}
.y124{bottom:730.475867pt;}
.y92{bottom:730.595867pt;}
.yca{bottom:731.706420pt;}
.y192{bottom:738.012000pt;}
.y9{bottom:739.652400pt;}
.y3b{bottom:746.462533pt;}
.yeb{bottom:746.464533pt;}
.y123{bottom:746.475867pt;}
.y91{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.y191{bottom:751.345333pt;}
.yde{bottom:762.104533pt;}
.y3a{bottom:762.462533pt;}
.yea{bottom:762.464533pt;}
.y122{bottom:762.475867pt;}
.y90{bottom:762.595867pt;}
.y7{bottom:763.652400pt;}
.y190{bottom:764.678667pt;}
.ycd{bottom:766.548156pt;}
.yc4{bottom:767.189200pt;}
.y18f{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.ye9{bottom:778.464533pt;}
.y121{bottom:778.475867pt;}
.y8f{bottom:778.595867pt;}
.ybb{bottom:780.205866pt;}
.ybf{bottom:780.256666pt;}
.yc3{bottom:782.068800pt;}
.yce{bottom:787.045333pt;}
.y6{bottom:789.183067pt;}
.yb8{bottom:790.714533pt;}
.ybc{bottom:790.765333pt;}
.y18e{bottom:791.345333pt;}
.yc2{bottom:793.883867pt;}
.ydd{bottom:793.984533pt;}
.y38{bottom:794.462533pt;}
.ye8{bottom:794.464533pt;}
.y120{bottom:794.475867pt;}
.y8e{bottom:794.595867pt;}
.yd3{bottom:796.799244pt;}
.y18d{bottom:804.678667pt;}
.y153{bottom:810.235867pt;}
.y37{bottom:810.462533pt;}
.ye7{bottom:810.464533pt;}
.y11f{bottom:810.475867pt;}
.y8d{bottom:810.595867pt;}
.yd2{bottom:811.172501pt;}
.y18c{bottom:818.012000pt;}
.yd1{bottom:825.499512pt;}
.y114{bottom:826.235867pt;}
.y36{bottom:826.462533pt;}
.ye6{bottom:826.464533pt;}
.y11e{bottom:826.475867pt;}
.y8c{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y18b{bottom:831.345333pt;}
.ybd{bottom:833.140061pt;}
.yb9{bottom:839.069331pt;}
.yd0{bottom:840.279733pt;}
.y113{bottom:842.235867pt;}
.y35{bottom:842.462533pt;}
.ydc{bottom:842.464533pt;}
.y11d{bottom:842.475867pt;}
.y8b{bottom:842.595867pt;}
.y18a{bottom:844.678667pt;}
.y189{bottom:858.012000pt;}
.y34{bottom:858.462533pt;}
.ydb{bottom:858.464533pt;}
.y11c{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y188{bottom:871.345333pt;}
.y8a{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.yda{bottom:874.464533pt;}
.y11b{bottom:874.475867pt;}
.ybe{bottom:875.465023pt;}
.y187{bottom:884.678667pt;}
.yba{bottom:887.482187pt;}
.y89{bottom:890.235867pt;}
.y32{bottom:890.462533pt;}
.yd9{bottom:890.464533pt;}
.y11a{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y186{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.ye5{bottom:906.464533pt;}
.y119{bottom:906.475867pt;}
.y1c6{bottom:911.345333pt;}
.y185{bottom:911.347467pt;}
.yd4{bottom:918.547333pt;}
.yd6{bottom:918.798573pt;}
.yd8{bottom:922.104533pt;}
.y88{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.ye4{bottom:922.464533pt;}
.y118{bottom:922.475867pt;}
.y1c5{bottom:924.678667pt;}
.y184{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y7c{bottom:1006.594400pt;}
.y1c4{bottom:1006.598667pt;}
.ya4{bottom:1006.601467pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h1d{height:21.692125pt;}
.h14{height:22.112289pt;}
.h1c{height:23.694475pt;}
.h13{height:24.153423pt;}
.h22{height:24.280305pt;}
.h21{height:24.898682pt;}
.h8{height:25.255208pt;}
.h18{height:25.380955pt;}
.h20{height:26.422927pt;}
.h17{height:26.934682pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.hc{height:29.169756pt;}
.h12{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h24{height:31.659152pt;}
.h23{height:33.935758pt;}
.h19{height:34.593020pt;}
.h28{height:36.983727pt;}
.he{height:37.057292pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.h1f{height:42.248078pt;}
.h27{height:42.308302pt;}
.h1b{height:43.065958pt;}
.h16{height:43.066347pt;}
.h11{height:46.697734pt;}
.h25{height:47.601340pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h26{height:81.417635pt;}
.h4{height:81.927344pt;}
.h1e{height:479.256000pt;}
.h1a{height:488.537333pt;}
.h15{height:488.538667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:626.604000pt;}
.w3{width:638.738667pt;}
.w2{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x43{left:74.100000pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x5c{left:90.708800pt;}
.x4{left:94.488133pt;}
.x1e{left:95.477600pt;}
.xb{left:98.271467pt;}
.x46{left:101.024133pt;}
.x18{left:103.467340pt;}
.x57{left:105.555733pt;}
.x17{left:108.095467pt;}
.x21{left:109.300533pt;}
.x3{left:111.501467pt;}
.x3e{left:113.007600pt;}
.x2c{left:114.377333pt;}
.x6{left:117.170133pt;}
.x19{left:120.055607pt;}
.x2f{left:121.965340pt;}
.x3f{left:124.740481pt;}
.x2e{left:126.593467pt;}
.x36{left:128.200800pt;}
.x30{left:138.553607pt;}
.x1f{left:148.008800pt;}
.x22{left:149.416400pt;}
.x47{left:152.557333pt;}
.x4f{left:153.935060pt;}
.x23{left:158.147645pt;}
.x49{left:162.271600pt;}
.x34{left:166.907867pt;}
.x3c{left:168.314800pt;}
.x5b{left:172.671467pt;}
.x37{left:176.208000pt;}
.x20{left:184.956133pt;}
.x5{left:189.223467pt;}
.x16{left:190.422533pt;}
.x2b{left:195.675867pt;}
.x35{left:203.855200pt;}
.x54{left:206.200800pt;}
.x53{left:208.865467pt;}
.x24{left:214.595512pt;}
.x4a{left:215.823200pt;}
.x38{left:232.655868pt;}
.x58{left:247.978400pt;}
.x25{left:269.739243pt;}
.x4b{left:271.742975pt;}
.x39{left:287.799598pt;}
.x50{left:308.459200pt;}
.x26{left:325.687654pt;}
.x4c{left:326.973167pt;}
.x3a{left:344.606400pt;}
.x52{left:347.238667pt;}
.x55{left:349.703301pt;}
.x44{left:362.157200pt;}
.x1d{left:369.171467pt;}
.x2a{left:382.465349pt;}
.x3d{left:401.361579pt;}
.x28{left:402.318099pt;}
.x9{left:404.481333pt;}
.xc{left:406.311467pt;}
.x41{left:413.470881pt;}
.x1b{left:415.139933pt;}
.x40{left:418.011067pt;}
.x1a{left:419.710000pt;}
.x2d{left:421.219543pt;}
.x12{left:425.195867pt;}
.x7{left:427.090133pt;}
.x42{left:429.743948pt;}
.x1c{left:431.728199pt;}
.x32{left:433.576305pt;}
.xe{left:436.551467pt;}
.x31{left:438.154667pt;}
.x5d{left:447.878267pt;}
.x33{left:450.164572pt;}
.x13{left:455.435867pt;}
.xd{left:466.924800pt;}
.x48{left:500.116800pt;}
.x27{left:502.282629pt;}
.x4d{left:521.274358pt;}
.x51{left:526.169200pt;}
.x11{left:544.809200pt;}
.x10{left:589.770933pt;}
.x59{left:591.393867pt;}
.x56{left:592.571557pt;}
.x5a{left:595.839733pt;}
.x2{left:616.324800pt;}
.x4e{left:631.090525pt;}
.xf{left:653.391467pt;}
.x45{left:669.114400pt;}
.x14{left:672.283867pt;}
.x29{left:674.570667pt;}
.x3b{left:693.467067pt;}
}




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