
    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_a55339ff732f11287c75d92b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_5bad9d811ab5a63715e702ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_c212a4738e1f9ceccfb77038.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_a0c539133c17b3b79fc3ac85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_9d44aa5135a03e28a73c8181.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_3f9a746adae66530bced64e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.146000;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_97ec17660e257b9932312d04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.328000;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_313c641e2caf7b81fbf6c3ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.144000;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_6b1fa72725f52b6fe20f661b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_851e9e6e13de9504733027b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-20.399963px;}
.v3{vertical-align:-15.000000px;}
.v5{vertical-align:-2.514118px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.886029px;}
.v1{vertical-align:24.000000px;}
.v2{vertical-align:59.976000px;}
.ls37{letter-spacing:-3.060000px;}
.ls41{letter-spacing:-1.020000px;}
.ls51{letter-spacing:-0.960000px;}
.ls57{letter-spacing:-0.840000px;}
.ls40{letter-spacing:-0.780000px;}
.ls58{letter-spacing:-0.600000px;}
.ls59{letter-spacing:-0.540000px;}
.ls8d{letter-spacing:-0.510000px;}
.ls52{letter-spacing:-0.480000px;}
.lsa3{letter-spacing:-0.459000px;}
.ls36{letter-spacing:-0.420000px;}
.ls90{letter-spacing:-0.408000px;}
.ls13{letter-spacing:-0.360000px;}
.ls8f{letter-spacing:-0.357000px;}
.ls8e{letter-spacing:-0.306000px;}
.ls22{letter-spacing:-0.300000px;}
.ls7b{letter-spacing:-0.255000px;}
.ls11{letter-spacing:-0.240000px;}
.ls7a{letter-spacing:-0.204000px;}
.ls21{letter-spacing:-0.180000px;}
.ls7c{letter-spacing:-0.153000px;}
.ls12{letter-spacing:-0.120000px;}
.ls93{letter-spacing:-0.102000px;}
.ls10{letter-spacing:-0.060000px;}
.ls79{letter-spacing:-0.051000px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls5d{letter-spacing:0.018677px;}
.ls61{letter-spacing:0.025500px;}
.ls47{letter-spacing:0.030000px;}
.ls74{letter-spacing:0.051000px;}
.ls15{letter-spacing:0.060000px;}
.ls5a{letter-spacing:0.064819px;}
.lsa0{letter-spacing:0.076500px;}
.ls53{letter-spacing:0.090000px;}
.ls5b{letter-spacing:0.092476px;}
.ls8c{letter-spacing:0.102000px;}
.ls4{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.150000px;}
.ls60{letter-spacing:0.153000px;}
.lsa2{letter-spacing:0.178199px;}
.ls9f{letter-spacing:0.178500px;}
.lsb{letter-spacing:0.180000px;}
.lse{letter-spacing:0.204000px;}
.ls34{letter-spacing:0.210000px;}
.ls8b{letter-spacing:0.229500px;}
.ls2{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.255000px;}
.ls48{letter-spacing:0.263984px;}
.ls56{letter-spacing:0.264000px;}
.ls55{letter-spacing:0.270000px;}
.ls45{letter-spacing:0.281964px;}
.ls49{letter-spacing:0.282000px;}
.ls68{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.299960px;}
.ls3{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.306000px;}
.ls91{letter-spacing:0.315277px;}
.ls54{letter-spacing:0.330000px;}
.lsa1{letter-spacing:0.331500px;}
.ls6d{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.390000px;}
.ls67{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.ls42{letter-spacing:0.450000px;}
.ls6f{letter-spacing:0.459000px;}
.ls24{letter-spacing:0.462000px;}
.ls18{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.510000px;}
.ls2f{letter-spacing:0.540000px;}
.ls63{letter-spacing:0.561000px;}
.ls5c{letter-spacing:0.588000px;}
.ls6{letter-spacing:0.600000px;}
.ls6e{letter-spacing:0.612000px;}
.ls3d{letter-spacing:0.630000px;}
.ls97{letter-spacing:0.637500px;}
.ls20{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.663000px;}
.ls99{letter-spacing:0.688500px;}
.ls89{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.ls98{letter-spacing:0.739500px;}
.lsa{letter-spacing:0.750000px;}
.ls6c{letter-spacing:0.765000px;}
.ls5{letter-spacing:0.780000px;}
.ls84{letter-spacing:0.790500px;}
.ls46{letter-spacing:0.810000px;}
.ls69{letter-spacing:0.816000px;}
.ls31{letter-spacing:0.834000px;}
.ls16{letter-spacing:0.840000px;}
.ls82{letter-spacing:0.867000px;}
.ls4a{letter-spacing:0.870000px;}
.ls8a{letter-spacing:0.892500px;}
.ls32{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.918000px;}
.ls4b{letter-spacing:0.930000px;}
.ls17{letter-spacing:0.960000px;}
.ls73{letter-spacing:0.969000px;}
.ls43{letter-spacing:0.990000px;}
.ls1b{letter-spacing:1.020000px;}
.ls4d{letter-spacing:1.050000px;}
.ls75{letter-spacing:1.071000px;}
.ls14{letter-spacing:1.080000px;}
.ls72{letter-spacing:1.096500px;}
.ls25{letter-spacing:1.110000px;}
.ls71{letter-spacing:1.122000px;}
.ls1e{letter-spacing:1.140000px;}
.ls92{letter-spacing:1.147500px;}
.ls3f{letter-spacing:1.170000px;}
.ls66{letter-spacing:1.173000px;}
.ls1a{letter-spacing:1.200000px;}
.ls96{letter-spacing:1.224000px;}
.ls5f{letter-spacing:1.230000px;}
.ls33{letter-spacing:1.260000px;}
.ls70{letter-spacing:1.275000px;}
.ls5e{letter-spacing:1.290000px;}
.ls80{letter-spacing:1.300500px;}
.ls9e{letter-spacing:1.315784px;}
.ls19{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.326000px;}
.ls50{letter-spacing:1.350000px;}
.ls64{letter-spacing:1.377000px;}
.ls3b{letter-spacing:1.380000px;}
.ls77{letter-spacing:1.402500px;}
.ls4e{letter-spacing:1.404000px;}
.ls95{letter-spacing:1.428000px;}
.ls30{letter-spacing:1.440000px;}
.ls9c{letter-spacing:1.453500px;}
.ls94{letter-spacing:1.479000px;}
.ls3a{letter-spacing:1.500000px;}
.ls78{letter-spacing:1.530000px;}
.ls3c{letter-spacing:1.560000px;}
.ls76{letter-spacing:1.581000px;}
.ls2b{letter-spacing:1.590000px;}
.ls29{letter-spacing:1.620000px;}
.ls83{letter-spacing:1.632000px;}
.ls26{letter-spacing:1.680000px;}
.ls81{letter-spacing:1.734000px;}
.ls2e{letter-spacing:1.740000px;}
.ls7f{letter-spacing:1.785000px;}
.ls2c{letter-spacing:1.800000px;}
.ls65{letter-spacing:1.836000px;}
.ls2d{letter-spacing:1.860000px;}
.ls7d{letter-spacing:1.887000px;}
.ls86{letter-spacing:1.912500px;}
.ls28{letter-spacing:1.920000px;}
.ls7e{letter-spacing:1.938000px;}
.ls38{letter-spacing:1.980000px;}
.ls9b{letter-spacing:2.091000px;}
.ls27{letter-spacing:2.100000px;}
.ls85{letter-spacing:2.142000px;}
.ls44{letter-spacing:2.160000px;}
.ls88{letter-spacing:2.193000px;}
.ls23{letter-spacing:2.220000px;}
.ls9a{letter-spacing:2.244000px;}
.ls1f{letter-spacing:2.280000px;}
.ls4f{letter-spacing:2.340000px;}
.ls39{letter-spacing:2.400000px;}
.ls9d{letter-spacing:2.499000px;}
.ls3e{letter-spacing:2.520000px;}
.ls2a{letter-spacing:2.580000px;}
.ls1d{letter-spacing:2.700000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws9f{word-spacing:-16.440000px;}
.ws57{word-spacing:-16.260000px;}
.ws58{word-spacing:-16.200000px;}
.ws59{word-spacing:-16.140000px;}
.ws8e{word-spacing:-15.870000px;}
.ws2{word-spacing:-15.789000px;}
.ws9c{word-spacing:-15.780000px;}
.ws8{word-spacing:-15.750000px;}
.ws8b{word-spacing:-15.720000px;}
.ws1d{word-spacing:-15.660000px;}
.ws84{word-spacing:-15.540000px;}
.ws6e{word-spacing:-15.300000px;}
.ws6f{word-spacing:-15.060000px;}
.ws5a{word-spacing:-15.000000px;}
.ws5b{word-spacing:-14.940000px;}
.ws83{word-spacing:-14.880000px;}
.wsa9{word-spacing:-14.832000px;}
.ws8d{word-spacing:-14.820000px;}
.ws8c{word-spacing:-14.760000px;}
.ws82{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.544000px;}
.wsc6{word-spacing:-13.719000px;}
.ws10e{word-spacing:-13.617000px;}
.ws10f{word-spacing:-13.387500px;}
.wsaa{word-spacing:-13.107000px;}
.wsb6{word-spacing:-13.005000px;}
.ws49{word-spacing:-12.750000px;}
.ws70{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws6{word-spacing:-11.520000px;}
.wsa8{word-spacing:-11.169000px;}
.ws1c{word-spacing:-10.962000px;}
.wsa3{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.wsa7{word-spacing:-9.945000px;}
.ws11c{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws8f{word-spacing:-7.500000px;}
.ws64{word-spacing:-2.520000px;}
.wsb{word-spacing:-2.400000px;}
.wsd5{word-spacing:-2.193000px;}
.wsa{word-spacing:-2.160000px;}
.ws120{word-spacing:-2.142000px;}
.ws74{word-spacing:-1.914000px;}
.ws3f{word-spacing:-1.680000px;}
.ws7c{word-spacing:-1.620000px;}
.ws9d{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.500000px;}
.wsc{word-spacing:-1.440000px;}
.wsdb{word-spacing:-1.428000px;}
.ws12{word-spacing:-1.380000px;}
.wsfc{word-spacing:-1.377000px;}
.wsea{word-spacing:-1.326000px;}
.ws28{word-spacing:-1.320000px;}
.wsab{word-spacing:-1.275000px;}
.ws61{word-spacing:-1.260000px;}
.wsb0{word-spacing:-1.224000px;}
.ws62{word-spacing:-1.200000px;}
.wscd{word-spacing:-1.173000px;}
.ws32{word-spacing:-1.140000px;}
.ws115{word-spacing:-1.122000px;}
.ws25{word-spacing:-1.080000px;}
.wsbd{word-spacing:-1.071000px;}
.ws60{word-spacing:-1.020000px;}
.wsc9{word-spacing:-0.969000px;}
.ws51{word-spacing:-0.960000px;}
.wsf3{word-spacing:-0.918000px;}
.ws41{word-spacing:-0.900000px;}
.wsda{word-spacing:-0.867000px;}
.ws7a{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.780000px;}
.wsd6{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.720000px;}
.ws10b{word-spacing:-0.714000px;}
.wsd9{word-spacing:-0.663000px;}
.ws77{word-spacing:-0.660000px;}
.ws1b{word-spacing:-0.612000px;}
.ws39{word-spacing:-0.600000px;}
.wsee{word-spacing:-0.561000px;}
.ws6a{word-spacing:-0.540000px;}
.wsb1{word-spacing:-0.510000px;}
.ws4f{word-spacing:-0.480000px;}
.wse2{word-spacing:-0.459000px;}
.ws10{word-spacing:-0.420000px;}
.wsf9{word-spacing:-0.408000px;}
.ws11{word-spacing:-0.360000px;}
.wsd8{word-spacing:-0.357000px;}
.wsad{word-spacing:-0.306000px;}
.ws1a{word-spacing:-0.300000px;}
.wsb3{word-spacing:-0.264000px;}
.wsb5{word-spacing:-0.255000px;}
.ws26{word-spacing:-0.240000px;}
.wsce{word-spacing:-0.204000px;}
.ws19{word-spacing:-0.180000px;}
.wsca{word-spacing:-0.153000px;}
.ws50{word-spacing:-0.120000px;}
.wsfb{word-spacing:-0.102000px;}
.ws16{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsf2{word-spacing:0.051000px;}
.ws14{word-spacing:0.060000px;}
.wsf0{word-spacing:0.102000px;}
.ws78{word-spacing:0.120000px;}
.wsd4{word-spacing:0.153000px;}
.ws67{word-spacing:0.180000px;}
.ws100{word-spacing:0.204000px;}
.ws9e{word-spacing:0.240000px;}
.wsc4{word-spacing:0.255000px;}
.ws18{word-spacing:0.300000px;}
.wse5{word-spacing:0.306000px;}
.wsde{word-spacing:0.357000px;}
.ws44{word-spacing:0.360000px;}
.wse3{word-spacing:0.408000px;}
.ws6b{word-spacing:0.420000px;}
.ws102{word-spacing:0.459000px;}
.ws7e{word-spacing:0.480000px;}
.ws34{word-spacing:0.540000px;}
.wsdf{word-spacing:0.561000px;}
.ws38{word-spacing:0.600000px;}
.ws104{word-spacing:0.612000px;}
.ws92{word-spacing:0.660000px;}
.wsf8{word-spacing:0.663000px;}
.wsb4{word-spacing:0.714000px;}
.ws53{word-spacing:0.720000px;}
.wsc7{word-spacing:0.765000px;}
.ws6d{word-spacing:0.780000px;}
.wsf7{word-spacing:0.816000px;}
.ws7f{word-spacing:0.840000px;}
.wsbb{word-spacing:0.867000px;}
.ws2b{word-spacing:0.900000px;}
.ws118{word-spacing:0.918000px;}
.ws13{word-spacing:0.960000px;}
.wsb2{word-spacing:0.969000px;}
.ws31{word-spacing:1.020000px;}
.ws23{word-spacing:1.080000px;}
.wsff{word-spacing:1.122000px;}
.ws20{word-spacing:1.140000px;}
.wseb{word-spacing:1.173000px;}
.ws22{word-spacing:1.200000px;}
.wsf5{word-spacing:1.224000px;}
.ws33{word-spacing:1.260000px;}
.wsac{word-spacing:1.275000px;}
.ws75{word-spacing:1.320000px;}
.ws116{word-spacing:1.377000px;}
.ws87{word-spacing:1.380000px;}
.wsd3{word-spacing:1.428000px;}
.wsa1{word-spacing:1.440000px;}
.wsb9{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.wsbe{word-spacing:1.530000px;}
.wsf{word-spacing:1.560000px;}
.wsf4{word-spacing:1.581000px;}
.ws2d{word-spacing:1.620000px;}
.ws43{word-spacing:1.680000px;}
.wsfa{word-spacing:1.683000px;}
.wse1{word-spacing:1.734000px;}
.ws65{word-spacing:1.740000px;}
.ws105{word-spacing:1.785000px;}
.ws56{word-spacing:1.800000px;}
.wsba{word-spacing:1.836000px;}
.ws35{word-spacing:1.860000px;}
.wsbc{word-spacing:1.887000px;}
.ws4d{word-spacing:1.920000px;}
.wsdc{word-spacing:1.938000px;}
.ws1f{word-spacing:1.980000px;}
.wscc{word-spacing:1.989000px;}
.ws29{word-spacing:2.040000px;}
.wsc0{word-spacing:2.091000px;}
.ws24{word-spacing:2.100000px;}
.wsd2{word-spacing:2.142000px;}
.ws4b{word-spacing:2.160000px;}
.wsfd{word-spacing:2.193000px;}
.ws79{word-spacing:2.220000px;}
.wsb7{word-spacing:2.244000px;}
.ws3d{word-spacing:2.280000px;}
.wsf6{word-spacing:2.295000px;}
.ws81{word-spacing:2.340000px;}
.wsed{word-spacing:2.346000px;}
.ws10c{word-spacing:2.397000px;}
.ws52{word-spacing:2.400000px;}
.ws11a{word-spacing:2.448000px;}
.ws5d{word-spacing:2.460000px;}
.wsc5{word-spacing:2.499000px;}
.ws3b{word-spacing:2.520000px;}
.wse0{word-spacing:2.550000px;}
.ws68{word-spacing:2.580000px;}
.wsd0{word-spacing:2.601000px;}
.ws21{word-spacing:2.640000px;}
.ws103{word-spacing:2.652000px;}
.ws2e{word-spacing:2.700000px;}
.wsb8{word-spacing:2.703000px;}
.wse9{word-spacing:2.754000px;}
.ws3c{word-spacing:2.760000px;}
.wsc3{word-spacing:2.805000px;}
.ws7d{word-spacing:2.820000px;}
.ws10a{word-spacing:2.856000px;}
.ws72{word-spacing:2.880000px;}
.ws108{word-spacing:2.907000px;}
.ws89{word-spacing:2.940000px;}
.ws101{word-spacing:2.958000px;}
.ws2c{word-spacing:3.000000px;}
.ws11b{word-spacing:3.009000px;}
.ws4c{word-spacing:3.060000px;}
.ws114{word-spacing:3.111000px;}
.ws7b{word-spacing:3.120000px;}
.wscf{word-spacing:3.162000px;}
.wsa0{word-spacing:3.180000px;}
.wscb{word-spacing:3.213000px;}
.ws1e{word-spacing:3.240000px;}
.ws37{word-spacing:3.300000px;}
.wse7{word-spacing:3.315000px;}
.ws40{word-spacing:3.360000px;}
.ws110{word-spacing:3.417000px;}
.ws5c{word-spacing:3.420000px;}
.wse6{word-spacing:3.468000px;}
.ws5f{word-spacing:3.480000px;}
.wsef{word-spacing:3.519000px;}
.ws42{word-spacing:3.540000px;}
.wsc2{word-spacing:3.570000px;}
.wsa5{word-spacing:3.600000px;}
.wsec{word-spacing:3.621000px;}
.ws86{word-spacing:3.660000px;}
.wsc1{word-spacing:3.672000px;}
.ws119{word-spacing:3.723000px;}
.ws109{word-spacing:3.774000px;}
.wsa6{word-spacing:3.780000px;}
.wse8{word-spacing:3.825000px;}
.ws2a{word-spacing:3.840000px;}
.wsc8{word-spacing:3.876000px;}
.ws90{word-spacing:3.900000px;}
.wsaf{word-spacing:3.927000px;}
.ws9b{word-spacing:3.960000px;}
.wsa2{word-spacing:4.020000px;}
.wse4{word-spacing:4.029000px;}
.ws91{word-spacing:4.080000px;}
.ws36{word-spacing:4.140000px;}
.ws4e{word-spacing:4.200000px;}
.wsbf{word-spacing:4.335000px;}
.ws54{word-spacing:4.380000px;}
.ws27{word-spacing:4.440000px;}
.ws69{word-spacing:4.500000px;}
.wsa4{word-spacing:4.560000px;}
.ws3e{word-spacing:4.680000px;}
.ws76{word-spacing:4.740000px;}
.ws85{word-spacing:4.800000px;}
.ws107{word-spacing:4.896000px;}
.ws8a{word-spacing:4.920000px;}
.ws112{word-spacing:4.947000px;}
.ws30{word-spacing:4.980000px;}
.ws73{word-spacing:5.040000px;}
.ws117{word-spacing:5.049000px;}
.ws9a{word-spacing:5.160000px;}
.wsfe{word-spacing:5.304000px;}
.wsd1{word-spacing:5.355000px;}
.ws98{word-spacing:5.400000px;}
.ws5e{word-spacing:5.520000px;}
.wsf1{word-spacing:5.559000px;}
.ws88{word-spacing:5.580000px;}
.ws10d{word-spacing:5.610000px;}
.ws66{word-spacing:5.640000px;}
.ws113{word-spacing:5.763000px;}
.wsdd{word-spacing:5.916000px;}
.ws6c{word-spacing:6.000000px;}
.ws63{word-spacing:6.120000px;}
.ws106{word-spacing:6.222000px;}
.ws97{word-spacing:6.273000px;}
.ws3a{word-spacing:6.300000px;}
.ws55{word-spacing:6.540000px;}
.ws71{word-spacing:6.600000px;}
.wsd7{word-spacing:6.732000px;}
.ws99{word-spacing:6.960000px;}
.ws111{word-spacing:7.038000px;}
.ws2f{word-spacing:7.080000px;}
.ws11d{word-spacing:7.089000px;}
.wsae{word-spacing:7.140000px;}
.ws96{word-spacing:8.007000px;}
.ws93{word-spacing:8.364000px;}
.ws80{word-spacing:8.460000px;}
.ws95{word-spacing:12.342000px;}
.ws11e{word-spacing:13.515000px;}
.ws11f{word-spacing:17.595000px;}
.ws94{word-spacing:21.726000px;}
.ws121{word-spacing:72.267000px;}
.ws45{word-spacing:289.476000px;}
.ws47{word-spacing:292.689000px;}
.ws4a{word-spacing:304.169100px;}
.ws48{word-spacing:522.036000px;}
.ws46{word-spacing:1138.217966px;}
._3a{margin-left:-19.788000px;}
._3d{margin-left:-17.595000px;}
._3c{margin-left:-16.473000px;}
._3b{margin-left:-15.351000px;}
._27{margin-left:-14.010026px;}
._29{margin-left:-12.288000px;}
._3e{margin-left:-11.016000px;}
._28{margin-left:-8.964634px;}
._23{margin-left:-5.292602px;}
._1{margin-left:-3.995398px;}
._3{margin-left:-2.970000px;}
._0{margin-left:-1.632000px;}
._2{width:1.578000px;}
._25{width:2.700000px;}
._24{width:4.092000px;}
._2b{width:6.069000px;}
._39{width:7.905000px;}
._26{width:9.090000px;}
._36{width:10.302000px;}
._2c{width:11.525991px;}
._2a{width:13.361986px;}
._33{width:14.433000px;}
._5{width:15.606000px;}
._6{width:16.689297px;}
._30{width:17.901000px;}
._37{width:18.921000px;}
._35{width:19.941000px;}
._2e{width:21.624000px;}
._38{width:23.157000px;}
._32{width:32.691000px;}
._2f{width:35.241000px;}
._31{width:36.414000px;}
._34{width:37.791000px;}
._2d{width:39.372000px;}
._40{width:54.621000px;}
._3f{width:72.267000px;}
._e{width:116.844000px;}
._14{width:118.014000px;}
._d{width:133.977000px;}
._1e{width:260.052000px;}
._15{width:321.096000px;}
._10{width:349.146000px;}
._1b{width:351.849000px;}
._21{width:359.193000px;}
._a{width:386.070000px;}
._19{width:388.439966px;}
._c{width:405.654000px;}
._7{width:407.388000px;}
._18{width:452.370000px;}
._9{width:466.599000px;}
._f{width:519.179966px;}
._1a{width:522.183866px;}
._1f{width:559.826966px;}
._1c{width:604.502966px;}
._12{width:617.711966px;}
._1d{width:620.516966px;}
._17{width:670.139966px;}
._13{width:723.854966px;}
._11{width:735.113966px;}
._8{width:875.822966px;}
._20{width:1062.584966px;}
._22{width:1082.474966px;}
._b{width:1088.084966px;}
._16{width:1150.304966px;}
._4{width:2226.915000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y36{bottom:112.977295px;}
.y19d{bottom:113.221797px;}
.y1a0{bottom:113.234547px;}
.y129{bottom:114.132294px;}
.y15e{bottom:114.732294px;}
.y198{bottom:114.735260px;}
.y1a5{bottom:114.735294px;}
.y172{bottom:114.735306px;}
.yb7{bottom:114.874786px;}
.y217{bottom:115.537813px;}
.y2dd{bottom:116.368777px;}
.y259{bottom:116.614823px;}
.y2f5{bottom:116.997307px;}
.y29b{bottom:117.010073px;}
.y19c{bottom:128.215797px;}
.y19f{bottom:128.228547px;}
.y216{bottom:130.531813px;}
.y2dc{bottom:131.362777px;}
.y258{bottom:131.608823px;}
.y2f4{bottom:131.991307px;}
.y29a{bottom:132.004073px;}
.y103{bottom:132.294342px;}
.y128{bottom:132.882294px;}
.y15d{bottom:133.482294px;}
.y197{bottom:133.485260px;}
.y1a4{bottom:133.485294px;}
.y171{bottom:133.485306px;}
.yb6{bottom:133.624786px;}
.y2b{bottom:141.211349px;}
.y19b{bottom:143.209797px;}
.y19e{bottom:143.222547px;}
.y35{bottom:143.794045px;}
.y1dc{bottom:144.823056px;}
.y215{bottom:145.525813px;}
.y2db{bottom:146.356777px;}
.y257{bottom:146.602823px;}
.y2f3{bottom:146.985307px;}
.y299{bottom:146.998073px;}
.y102{bottom:151.044342px;}
.y127{bottom:151.632294px;}
.y15c{bottom:152.232294px;}
.y196{bottom:152.235260px;}
.y1a3{bottom:152.235294px;}
.y170{bottom:152.235306px;}
.yb5{bottom:152.374786px;}
.y34{bottom:158.788045px;}
.y1db{bottom:159.817056px;}
.y2a{bottom:159.961349px;}
.y214{bottom:160.519813px;}
.y2da{bottom:161.350777px;}
.y256{bottom:161.596823px;}
.y2f2{bottom:161.979307px;}
.y298{bottom:161.992073px;}
.y101{bottom:169.794342px;}
.y126{bottom:170.382294px;}
.y15b{bottom:170.982294px;}
.y195{bottom:170.985260px;}
.y16f{bottom:170.985306px;}
.yb4{bottom:171.124786px;}
.y33{bottom:173.782045px;}
.y213{bottom:175.513813px;}
.y2d9{bottom:176.344777px;}
.y255{bottom:176.590823px;}
.y2f1{bottom:176.973307px;}
.y297{bottom:176.986073px;}
.y29{bottom:178.711349px;}
.y100{bottom:188.544342px;}
.y32{bottom:188.776045px;}
.y125{bottom:189.132294px;}
.y1a2{bottom:189.723306px;}
.y15a{bottom:189.732294px;}
.y194{bottom:189.735260px;}
.y16e{bottom:189.735306px;}
.y1da{bottom:189.817806px;}
.yb3{bottom:189.874786px;}
.y212{bottom:190.507813px;}
.y2d8{bottom:191.338777px;}
.y254{bottom:191.584823px;}
.y2f0{bottom:191.967307px;}
.y296{bottom:191.980073px;}
.y28{bottom:197.461349px;}
.y31{bottom:203.770045px;}
.y1d9{bottom:204.811806px;}
.y211{bottom:205.501813px;}
.y2d7{bottom:206.332777px;}
.y253{bottom:206.578823px;}
.y2ef{bottom:206.961307px;}
.y295{bottom:206.974073px;}
.yff{bottom:207.294342px;}
.y124{bottom:207.882294px;}
.y1a1{bottom:208.479306px;}
.y159{bottom:208.482294px;}
.y193{bottom:208.485260px;}
.y16d{bottom:208.485306px;}
.yb2{bottom:208.624786px;}
.y27{bottom:216.211349px;}
.y30{bottom:218.764045px;}
.y1d8{bottom:219.805806px;}
.y210{bottom:220.495813px;}
.y2d6{bottom:221.326777px;}
.y252{bottom:221.572823px;}
.y2ee{bottom:221.955307px;}
.y294{bottom:221.968073px;}
.yfe{bottom:226.044342px;}
.y123{bottom:226.632294px;}
.y158{bottom:227.232294px;}
.y192{bottom:227.235260px;}
.y16c{bottom:227.235306px;}
.yb1{bottom:227.374786px;}
.y2f{bottom:233.758045px;}
.y1d7{bottom:234.799806px;}
.y26{bottom:234.961349px;}
.y20f{bottom:235.489813px;}
.y2d5{bottom:236.320777px;}
.y251{bottom:236.566823px;}
.y2ed{bottom:236.949307px;}
.y293{bottom:236.962073px;}
.yfd{bottom:244.794342px;}
.y122{bottom:245.382294px;}
.y157{bottom:245.982294px;}
.y191{bottom:245.985260px;}
.y16b{bottom:245.985306px;}
.yb0{bottom:246.124786px;}
.y2e{bottom:248.752045px;}
.y1d6{bottom:249.793806px;}
.y20e{bottom:250.483813px;}
.y2d4{bottom:251.314777px;}
.y250{bottom:251.560823px;}
.y2ec{bottom:251.943307px;}
.y292{bottom:251.956073px;}
.y25{bottom:253.711349px;}
.yfc{bottom:263.544342px;}
.y121{bottom:264.132294px;}
.y156{bottom:264.732294px;}
.y190{bottom:264.735260px;}
.y16a{bottom:264.735306px;}
.yaf{bottom:264.874786px;}
.y20d{bottom:265.477813px;}
.y2d3{bottom:266.308777px;}
.y24f{bottom:266.554823px;}
.y2eb{bottom:266.937307px;}
.y291{bottom:266.950073px;}
.y24{bottom:272.461349px;}
.y2d{bottom:279.594295px;}
.y1d5{bottom:279.794556px;}
.y20c{bottom:280.471813px;}
.y2d2{bottom:281.302777px;}
.y24e{bottom:281.548823px;}
.y2ea{bottom:281.931307px;}
.y290{bottom:281.944073px;}
.yfb{bottom:282.294342px;}
.y155{bottom:283.482294px;}
.y18f{bottom:283.485260px;}
.y169{bottom:283.485306px;}
.yae{bottom:283.624786px;}
.y320{bottom:289.363811px;}
.y23{bottom:291.211349px;}
.y2c{bottom:294.588295px;}
.y1d4{bottom:294.788556px;}
.y20b{bottom:295.465813px;}
.y2d1{bottom:296.296777px;}
.y24d{bottom:296.542823px;}
.y2e9{bottom:296.925307px;}
.y28f{bottom:296.938073px;}
.yfa{bottom:301.044342px;}
.y120{bottom:301.632294px;}
.y154{bottom:302.232294px;}
.y18e{bottom:302.235260px;}
.y168{bottom:302.235306px;}
.yad{bottom:302.374786px;}
.y31f{bottom:304.357811px;}
.y1d3{bottom:309.782556px;}
.y22{bottom:309.961349px;}
.y20a{bottom:310.459813px;}
.y2d0{bottom:311.290777px;}
.y24c{bottom:311.536823px;}
.y2e8{bottom:311.919307px;}
.y28e{bottom:311.932073px;}
.yf9{bottom:319.794342px;}
.y153{bottom:320.982294px;}
.y18d{bottom:320.985260px;}
.y167{bottom:320.985306px;}
.yac{bottom:321.124786px;}
.y1d2{bottom:324.776556px;}
.y209{bottom:325.453813px;}
.y2cf{bottom:326.284777px;}
.y24b{bottom:326.530823px;}
.y32a{bottom:326.860800px;}
.y31e{bottom:326.899811px;}
.y2e7{bottom:326.913307px;}
.y28d{bottom:326.926073px;}
.y21{bottom:328.711349px;}
.yf8{bottom:338.544342px;}
.y152{bottom:339.732294px;}
.y18c{bottom:339.735260px;}
.y166{bottom:339.735306px;}
.y1d1{bottom:339.770556px;}
.yab{bottom:339.874786px;}
.y208{bottom:340.447813px;}
.y2ce{bottom:341.278777px;}
.y24a{bottom:341.524823px;}
.y329{bottom:341.854800px;}
.y31d{bottom:341.893811px;}
.y2e6{bottom:341.907307px;}
.y28c{bottom:341.920073px;}
.y65{bottom:345.559816px;}
.y20{bottom:347.461349px;}
.y11f{bottom:348.808777px;}
.y1d0{bottom:354.764556px;}
.y207{bottom:355.441813px;}
.y2cd{bottom:356.272777px;}
.y249{bottom:356.518823px;}
.y2e5{bottom:356.901307px;}
.y28b{bottom:356.914073px;}
.yf7{bottom:357.294342px;}
.y1c9{bottom:358.479306px;}
.y151{bottom:358.482294px;}
.y18b{bottom:358.485260px;}
.y165{bottom:358.485306px;}
.yaa{bottom:358.624786px;}
.y64{bottom:360.553816px;}
.y328{bottom:361.948792px;}
.y9c{bottom:363.019792px;}
.y31c{bottom:364.435811px;}
.y11e{bottom:367.558777px;}
.y1cf{bottom:369.758556px;}
.y206{bottom:370.435813px;}
.y2cc{bottom:371.266777px;}
.y248{bottom:371.512823px;}
.y2e4{bottom:371.895307px;}
.y28a{bottom:371.908073px;}
.y63{bottom:375.547816px;}
.yf6{bottom:376.044342px;}
.y150{bottom:377.232294px;}
.y18a{bottom:377.235260px;}
.y164{bottom:377.235306px;}
.ya9{bottom:377.374786px;}
.y9b{bottom:378.013792px;}
.y327{bottom:379.408042px;}
.y31b{bottom:379.429811px;}
.y1ce{bottom:384.752556px;}
.y1f{bottom:384.961349px;}
.y205{bottom:385.429813px;}
.y2cb{bottom:386.260777px;}
.y11d{bottom:386.308777px;}
.y247{bottom:386.506823px;}
.y2e3{bottom:386.889307px;}
.y289{bottom:386.902073px;}
.y62{bottom:390.541816px;}
.y9a{bottom:393.007792px;}
.y326{bottom:394.402042px;}
.yf5{bottom:394.794342px;}
.y14f{bottom:395.982294px;}
.y189{bottom:395.985260px;}
.y163{bottom:395.985306px;}
.ya8{bottom:396.124786px;}
.y1cd{bottom:399.746556px;}
.y204{bottom:400.423813px;}
.y2ca{bottom:401.254777px;}
.y246{bottom:401.500823px;}
.y2e2{bottom:401.883307px;}
.y288{bottom:401.896073px;}
.y31a{bottom:401.971811px;}
.y11c{bottom:405.058777px;}
.y61{bottom:405.535816px;}
.y99{bottom:408.001792px;}
.yf4{bottom:413.544342px;}
.y325{bottom:414.496033px;}
.y14e{bottom:414.732294px;}
.y188{bottom:414.735260px;}
.y162{bottom:414.735306px;}
.ya7{bottom:414.874786px;}
.y203{bottom:415.417813px;}
.y2c9{bottom:416.248777px;}
.y245{bottom:416.494823px;}
.y2e1{bottom:416.877307px;}
.y287{bottom:416.890073px;}
.y319{bottom:416.965811px;}
.y60{bottom:420.529816px;}
.y98{bottom:422.995792px;}
.y11b{bottom:423.808777px;}
.y1cc{bottom:429.747306px;}
.y202{bottom:430.411813px;}
.y2c8{bottom:431.242777px;}
.y244{bottom:431.488823px;}
.y2e0{bottom:431.871307px;}
.y286{bottom:431.884073px;}
.yf3{bottom:432.294342px;}
.y14d{bottom:433.482294px;}
.y187{bottom:433.485260px;}
.y161{bottom:433.485306px;}
.ya6{bottom:433.624786px;}
.y97{bottom:437.989792px;}
.y318{bottom:439.507811px;}
.y324{bottom:439.571561px;}
.y1e{bottom:441.211395px;}
.y11a{bottom:442.558777px;}
.y1cb{bottom:444.741306px;}
.y201{bottom:445.405813px;}
.y2c7{bottom:446.236777px;}
.y243{bottom:446.482823px;}
.y2df{bottom:446.865307px;}
.y285{bottom:446.878073px;}
.yf2{bottom:451.044342px;}
.y14c{bottom:452.232294px;}
.y186{bottom:452.235260px;}
.y1c8{bottom:452.235294px;}
.y160{bottom:452.235306px;}
.ya5{bottom:452.374786px;}
.y317{bottom:454.501811px;}
.y323{bottom:454.565561px;}
.y1ca{bottom:459.735306px;}
.y200{bottom:460.399813px;}
.y2c6{bottom:461.230777px;}
.y119{bottom:461.308777px;}
.y242{bottom:461.476823px;}
.y2de{bottom:461.859307px;}
.y284{bottom:461.872073px;}
.y5f{bottom:469.665298px;}
.y59{bottom:469.665344px;}
.yf1{bottom:469.794342px;}
.y14b{bottom:470.982294px;}
.y185{bottom:470.985260px;}
.y1c7{bottom:470.985294px;}
.y15f{bottom:470.985306px;}
.ya4{bottom:471.124786px;}
.y1ff{bottom:475.393813px;}
.y241{bottom:476.470823px;}
.y2c5{bottom:476.853307px;}
.y283{bottom:476.866073px;}
.y316{bottom:477.043811px;}
.y322{bottom:477.107561px;}
.y1d{bottom:478.711395px;}
.y118{bottom:480.058777px;}
.y5e{bottom:488.415298px;}
.y58{bottom:488.415344px;}
.yf0{bottom:488.544342px;}
.y14a{bottom:489.732294px;}
.y86{bottom:489.735260px;}
.y1c6{bottom:489.735294px;}
.y96{bottom:489.735306px;}
.ya3{bottom:489.874786px;}
.y1fe{bottom:490.387813px;}
.y240{bottom:491.464823px;}
.y2c4{bottom:491.847307px;}
.y282{bottom:491.860073px;}
.y315{bottom:492.037811px;}
.y321{bottom:492.101561px;}
.y1c{bottom:497.461395px;}
.y117{bottom:498.808777px;}
.y1fd{bottom:505.381813px;}
.y23f{bottom:506.458823px;}
.y2c3{bottom:506.841307px;}
.y281{bottom:506.854073px;}
.y5d{bottom:507.165298px;}
.y57{bottom:507.165344px;}
.yef{bottom:507.294342px;}
.y199{bottom:508.479306px;}
.y149{bottom:508.482294px;}
.y85{bottom:508.485260px;}
.y1c5{bottom:508.485294px;}
.y95{bottom:508.485306px;}
.ya2{bottom:508.624786px;}
.y1b{bottom:516.211395px;}
.y116{bottom:517.558777px;}
.y1fc{bottom:520.375813px;}
.y23e{bottom:521.452823px;}
.y2c2{bottom:521.835307px;}
.y280{bottom:521.848073px;}
.y5c{bottom:525.915298px;}
.y56{bottom:525.915344px;}
.yee{bottom:526.044342px;}
.y148{bottom:527.232294px;}
.y84{bottom:527.235260px;}
.y1c4{bottom:527.235294px;}
.y94{bottom:527.235306px;}
.ya1{bottom:527.374786px;}
.y314{bottom:529.632294px;}
.y1a{bottom:534.961395px;}
.y1fb{bottom:535.369813px;}
.y115{bottom:536.308777px;}
.y23d{bottom:536.446823px;}
.y2c1{bottom:536.829307px;}
.y27f{bottom:536.842073px;}
.y5b{bottom:544.665298px;}
.y55{bottom:544.665344px;}
.yed{bottom:544.794342px;}
.y147{bottom:545.982294px;}
.y83{bottom:545.985260px;}
.y1c3{bottom:545.985294px;}
.y93{bottom:545.985306px;}
.ya0{bottom:546.124786px;}
.y313{bottom:548.382294px;}
.y1fa{bottom:550.363813px;}
.y23c{bottom:551.440823px;}
.y2c0{bottom:551.823307px;}
.y27e{bottom:551.836073px;}
.y19{bottom:553.711395px;}
.y114{bottom:555.058777px;}
.y54{bottom:563.415344px;}
.yec{bottom:563.544342px;}
.y146{bottom:564.732294px;}
.y82{bottom:564.735260px;}
.y1c2{bottom:564.735294px;}
.y92{bottom:564.735306px;}
.y9f{bottom:564.874786px;}
.y1f9{bottom:565.357813px;}
.y23b{bottom:566.434823px;}
.y2bf{bottom:566.817307px;}
.y27d{bottom:566.830073px;}
.y312{bottom:567.132294px;}
.y18{bottom:572.461395px;}
.y113{bottom:573.808777px;}
.y1f8{bottom:580.351813px;}
.y23a{bottom:581.428823px;}
.y2be{bottom:581.811307px;}
.y27c{bottom:581.824073px;}
.y5a{bottom:582.165298px;}
.y53{bottom:582.165344px;}
.yeb{bottom:582.294342px;}
.y145{bottom:583.482294px;}
.y81{bottom:583.485260px;}
.y1c1{bottom:583.485294px;}
.y91{bottom:583.485306px;}
.y9e{bottom:583.624786px;}
.y17{bottom:591.211395px;}
.y112{bottom:592.558777px;}
.y1f7{bottom:595.345813px;}
.y239{bottom:596.422823px;}
.y2bd{bottom:596.805307px;}
.y27b{bottom:596.818073px;}
.y52{bottom:600.915344px;}
.yea{bottom:601.044342px;}
.y144{bottom:602.232294px;}
.y80{bottom:602.235260px;}
.y1c0{bottom:602.235294px;}
.y90{bottom:602.235306px;}
.y9d{bottom:602.374786px;}
.y311{bottom:604.632294px;}
.y16{bottom:609.961395px;}
.y1f6{bottom:610.339813px;}
.y111{bottom:611.308777px;}
.y238{bottom:611.416823px;}
.y2bc{bottom:611.799307px;}
.y27a{bottom:611.812073px;}
.y51{bottom:619.665344px;}
.ye9{bottom:619.794342px;}
.y143{bottom:620.982294px;}
.y7f{bottom:620.985260px;}
.y1bf{bottom:620.985294px;}
.y8f{bottom:620.985306px;}
.y1f5{bottom:625.333813px;}
.y237{bottom:626.410823px;}
.y2bb{bottom:626.793307px;}
.y279{bottom:626.806073px;}
.y15{bottom:628.711395px;}
.y110{bottom:630.058777px;}
.y50{bottom:638.415344px;}
.ye8{bottom:638.544342px;}
.y142{bottom:639.732294px;}
.y7e{bottom:639.735260px;}
.y1be{bottom:639.735294px;}
.y8e{bottom:639.735306px;}
.y1f4{bottom:640.327813px;}
.y236{bottom:641.404823px;}
.y2ba{bottom:641.787307px;}
.y278{bottom:641.800073px;}
.y14{bottom:647.461395px;}
.y10f{bottom:648.808777px;}
.yd0{bottom:654.572274px;}
.y1f3{bottom:655.321813px;}
.y235{bottom:656.398823px;}
.y2b9{bottom:656.781307px;}
.y277{bottom:656.794073px;}
.y4f{bottom:657.165344px;}
.ye7{bottom:657.294342px;}
.y141{bottom:658.482294px;}
.y7d{bottom:658.485260px;}
.y1bd{bottom:658.485294px;}
.y8d{bottom:658.485306px;}
.y13{bottom:666.211395px;}
.y10e{bottom:667.558777px;}
.y19a{bottom:667.870972px;}
.y1f2{bottom:670.315813px;}
.y310{bottom:671.367309px;}
.y234{bottom:671.392823px;}
.y2b8{bottom:671.775307px;}
.y276{bottom:671.788073px;}
.ycf{bottom:673.365774px;}
.y4e{bottom:675.915344px;}
.ye6{bottom:676.044342px;}
.y140{bottom:677.232294px;}
.y7c{bottom:677.235260px;}
.y1bc{bottom:677.235294px;}
.y8c{bottom:677.235306px;}
.y12{bottom:684.961395px;}
.y1f1{bottom:685.309813px;}
.y10d{bottom:686.308777px;}
.y30f{bottom:686.361309px;}
.y233{bottom:686.386823px;}
.y2b7{bottom:686.769307px;}
.y275{bottom:686.782073px;}
.yce{bottom:692.082774px;}
.y4d{bottom:694.665344px;}
.ye5{bottom:694.794342px;}
.y13f{bottom:695.982294px;}
.y7b{bottom:695.985260px;}
.y1bb{bottom:695.985294px;}
.y8b{bottom:695.985306px;}
.y1f0{bottom:700.303813px;}
.y30e{bottom:701.355309px;}
.y232{bottom:701.380823px;}
.y2b6{bottom:701.763307px;}
.y274{bottom:701.776073px;}
.y11{bottom:703.711395px;}
.y10c{bottom:705.058777px;}
.ycd{bottom:710.723274px;}
.y4c{bottom:713.415344px;}
.ye4{bottom:713.544342px;}
.y13e{bottom:714.732294px;}
.y7a{bottom:714.735260px;}
.y1ba{bottom:714.735294px;}
.y8a{bottom:714.735306px;}
.y1ef{bottom:715.297813px;}
.y30d{bottom:716.349309px;}
.y231{bottom:716.374823px;}
.y2b5{bottom:716.757307px;}
.y273{bottom:716.770073px;}
.y10{bottom:722.461395px;}
.y10b{bottom:723.808777px;}
.ycb{bottom:729.504024px;}
.y1ee{bottom:730.291813px;}
.y30c{bottom:731.343309px;}
.y230{bottom:731.368823px;}
.y2b4{bottom:731.751307px;}
.y272{bottom:731.764073px;}
.y4b{bottom:732.165344px;}
.ye3{bottom:732.294342px;}
.y13d{bottom:733.482294px;}
.y79{bottom:733.485260px;}
.y1b9{bottom:733.485294px;}
.y89{bottom:733.485306px;}
.yf{bottom:741.211395px;}
.y10a{bottom:742.558777px;}
.yca{bottom:744.498024px;}
.y1ed{bottom:745.285813px;}
.y22f{bottom:746.362823px;}
.y2b3{bottom:746.745307px;}
.y271{bottom:746.758073px;}
.y4a{bottom:750.915344px;}
.ye2{bottom:751.044342px;}
.y13c{bottom:752.232294px;}
.y78{bottom:752.235260px;}
.y1b8{bottom:752.235294px;}
.y88{bottom:752.235306px;}
.yc9{bottom:759.492024px;}
.ycc{bottom:759.504774px;}
.ye{bottom:759.961395px;}
.y1ec{bottom:760.279813px;}
.y109{bottom:761.308777px;}
.y22e{bottom:761.356823px;}
.y30b{bottom:761.433308px;}
.y2b2{bottom:761.739307px;}
.y270{bottom:761.752073px;}
.y49{bottom:769.665344px;}
.ye1{bottom:769.794342px;}
.y13b{bottom:770.982294px;}
.y77{bottom:770.985260px;}
.y1b7{bottom:770.985294px;}
.y184{bottom:770.985306px;}
.y1eb{bottom:775.273813px;}
.y22d{bottom:776.350823px;}
.y30a{bottom:776.427308px;}
.y2b1{bottom:776.733307px;}
.y26f{bottom:776.746073px;}
.yc8{bottom:778.209024px;}
.yd{bottom:778.711395px;}
.y108{bottom:780.058777px;}
.y48{bottom:788.415344px;}
.ye0{bottom:788.544342px;}
.y87{bottom:789.729260px;}
.y13a{bottom:789.732294px;}
.y76{bottom:789.735260px;}
.y1b6{bottom:789.735294px;}
.y183{bottom:789.735306px;}
.y1ea{bottom:790.267813px;}
.y22c{bottom:791.344823px;}
.y2b0{bottom:791.727307px;}
.y26e{bottom:791.740073px;}
.yc7{bottom:796.926024px;}
.yc{bottom:797.461395px;}
.y107{bottom:798.808777px;}
.y1e9{bottom:805.261813px;}
.y22b{bottom:806.338823px;}
.y309{bottom:806.517307px;}
.y2af{bottom:806.721307px;}
.y26d{bottom:806.734073px;}
.y47{bottom:807.165344px;}
.ydf{bottom:807.294342px;}
.y139{bottom:808.482294px;}
.y75{bottom:808.485260px;}
.y1b5{bottom:808.485294px;}
.y182{bottom:808.485306px;}
.yc6{bottom:815.643024px;}
.y106{bottom:817.558777px;}
.y1e8{bottom:820.255813px;}
.y22a{bottom:821.332823px;}
.y308{bottom:821.511307px;}
.y2ae{bottom:821.715307px;}
.y26c{bottom:821.728073px;}
.y46{bottom:825.915344px;}
.yde{bottom:826.044342px;}
.y138{bottom:827.232294px;}
.y74{bottom:827.235260px;}
.y1b4{bottom:827.235294px;}
.y181{bottom:827.235306px;}
.yc5{bottom:834.360024px;}
.y1e7{bottom:835.249813px;}
.y105{bottom:836.308777px;}
.y229{bottom:836.326823px;}
.y307{bottom:836.505307px;}
.y2ad{bottom:836.709307px;}
.y26b{bottom:836.722073px;}
.yb{bottom:841.644153px;}
.y45{bottom:844.665344px;}
.ydd{bottom:844.794342px;}
.y137{bottom:845.982294px;}
.y73{bottom:845.985260px;}
.y1b3{bottom:845.985294px;}
.y180{bottom:845.985306px;}
.yc4{bottom:849.354024px;}
.y1e6{bottom:850.243813px;}
.y228{bottom:851.320823px;}
.y306{bottom:851.499307px;}
.y2ac{bottom:851.703307px;}
.y26a{bottom:851.716073px;}
.ya{bottom:856.638153px;}
.y44{bottom:863.415344px;}
.ydc{bottom:863.544342px;}
.y136{bottom:864.732294px;}
.y72{bottom:864.735260px;}
.y1b2{bottom:864.735294px;}
.y17f{bottom:864.735306px;}
.y1e5{bottom:865.237813px;}
.y227{bottom:866.314823px;}
.y305{bottom:866.493307px;}
.y2ab{bottom:866.697307px;}
.y269{bottom:866.710073px;}
.yc3{bottom:868.071024px;}
.y104{bottom:873.808777px;}
.y1e4{bottom:880.231813px;}
.y226{bottom:881.308823px;}
.y304{bottom:881.487307px;}
.y2aa{bottom:881.691307px;}
.y268{bottom:881.704073px;}
.y43{bottom:882.165344px;}
.ydb{bottom:882.294342px;}
.y135{bottom:883.482294px;}
.y71{bottom:883.485260px;}
.y1b1{bottom:883.485294px;}
.y17e{bottom:883.485306px;}
.yc2{bottom:886.788024px;}
.y1e3{bottom:895.225813px;}
.y225{bottom:896.302823px;}
.y303{bottom:896.481307px;}
.y2a9{bottom:896.685307px;}
.y267{bottom:896.698073px;}
.y9{bottom:899.238190px;}
.y42{bottom:900.915344px;}
.yda{bottom:901.044342px;}
.y134{bottom:902.232294px;}
.y70{bottom:902.235260px;}
.y1b0{bottom:902.235294px;}
.y17d{bottom:902.235306px;}
.yc1{bottom:905.505024px;}
.y1e2{bottom:910.219813px;}
.y224{bottom:911.296823px;}
.y302{bottom:911.475307px;}
.y2a8{bottom:911.679307px;}
.y266{bottom:911.692073px;}
.y8{bottom:917.988190px;}
.y41{bottom:919.665344px;}
.yd9{bottom:919.794342px;}
.y133{bottom:920.982294px;}
.y6f{bottom:920.985260px;}
.y1af{bottom:920.985294px;}
.y17c{bottom:920.985306px;}
.yc0{bottom:924.222024px;}
.y1e1{bottom:925.213813px;}
.y223{bottom:926.290823px;}
.y301{bottom:926.469307px;}
.y2a7{bottom:926.673307px;}
.y265{bottom:926.686073px;}
.y7{bottom:936.738190px;}
.y40{bottom:938.415344px;}
.yd8{bottom:938.544342px;}
.y132{bottom:939.732294px;}
.y6e{bottom:939.735260px;}
.y1ae{bottom:939.735294px;}
.y17b{bottom:939.735306px;}
.y1e0{bottom:940.207813px;}
.y222{bottom:941.284823px;}
.y300{bottom:941.463307px;}
.y2a6{bottom:941.667307px;}
.y264{bottom:941.680073px;}
.ybf{bottom:942.939024px;}
.y1df{bottom:955.201813px;}
.y221{bottom:956.278823px;}
.y2ff{bottom:956.457307px;}
.y2a5{bottom:956.661307px;}
.y263{bottom:956.674073px;}
.y3f{bottom:957.165344px;}
.yd7{bottom:957.294342px;}
.y131{bottom:958.482294px;}
.y6d{bottom:958.485260px;}
.y1ad{bottom:958.485294px;}
.y17a{bottom:958.485306px;}
.ybe{bottom:961.656024px;}
.y220{bottom:971.272823px;}
.y2fe{bottom:971.451307px;}
.y2a4{bottom:971.655307px;}
.y262{bottom:971.668073px;}
.y3e{bottom:975.915344px;}
.yd6{bottom:976.044342px;}
.y130{bottom:977.232294px;}
.y6c{bottom:977.235260px;}
.y1ac{bottom:977.235294px;}
.y179{bottom:977.235306px;}
.ybd{bottom:980.373024px;}
.y6{bottom:981.424622px;}
.y21f{bottom:986.266823px;}
.y2fd{bottom:986.445307px;}
.y2a3{bottom:986.649307px;}
.y261{bottom:986.662073px;}
.y1de{bottom:988.951813px;}
.y3d{bottom:994.665344px;}
.yd5{bottom:994.794342px;}
.y12f{bottom:995.982294px;}
.y6b{bottom:995.985260px;}
.y1ab{bottom:995.985294px;}
.y178{bottom:995.985306px;}
.ybc{bottom:999.090024px;}
.y21e{bottom:1001.260823px;}
.y2fc{bottom:1001.439307px;}
.y2a2{bottom:1001.643307px;}
.y260{bottom:1001.656073px;}
.y5{bottom:1008.424622px;}
.y3c{bottom:1013.415344px;}
.yd4{bottom:1013.544342px;}
.y12e{bottom:1014.732294px;}
.y6a{bottom:1014.735260px;}
.y1aa{bottom:1014.735294px;}
.y177{bottom:1014.735306px;}
.y21d{bottom:1016.254823px;}
.y2fb{bottom:1016.433307px;}
.y2a1{bottom:1016.637307px;}
.y25f{bottom:1016.650073px;}
.ybb{bottom:1017.807024px;}
.y21c{bottom:1031.248823px;}
.y2fa{bottom:1031.427307px;}
.y2a0{bottom:1031.631307px;}
.y25e{bottom:1031.644073px;}
.y3b{bottom:1032.165344px;}
.yd3{bottom:1032.294342px;}
.y12d{bottom:1033.482294px;}
.y69{bottom:1033.485260px;}
.y1a9{bottom:1033.485294px;}
.y176{bottom:1033.485306px;}
.yba{bottom:1036.524024px;}
.y21b{bottom:1046.242823px;}
.y2f9{bottom:1046.421307px;}
.y29f{bottom:1046.625307px;}
.y25d{bottom:1046.638073px;}
.y3a{bottom:1050.915344px;}
.yd2{bottom:1051.044342px;}
.y12c{bottom:1052.232294px;}
.y68{bottom:1052.235260px;}
.y1a8{bottom:1052.235294px;}
.y175{bottom:1052.235306px;}
.y1dd{bottom:1058.544342px;}
.y21a{bottom:1061.236823px;}
.y2f8{bottom:1061.415307px;}
.y29e{bottom:1061.619307px;}
.y25c{bottom:1061.632073px;}
.yb9{bottom:1064.612274px;}
.y39{bottom:1069.665344px;}
.y12b{bottom:1070.982294px;}
.y67{bottom:1070.985260px;}
.y1a7{bottom:1070.985294px;}
.y174{bottom:1070.985306px;}
.y4{bottom:1076.132080px;}
.y219{bottom:1076.230823px;}
.y2f7{bottom:1076.409307px;}
.y29d{bottom:1076.613307px;}
.y25b{bottom:1076.626073px;}
.y38{bottom:1088.415344px;}
.yd1{bottom:1088.544342px;}
.y12a{bottom:1089.732294px;}
.y66{bottom:1089.735260px;}
.y1a6{bottom:1089.735294px;}
.y173{bottom:1089.735306px;}
.yb8{bottom:1090.102844px;}
.y218{bottom:1091.224823px;}
.y2f6{bottom:1091.403307px;}
.y29c{bottom:1091.607307px;}
.y25a{bottom:1091.620073px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y37{bottom:1127.482361px;}
.h13{height:33.129599px;}
.h2{height:33.840000px;}
.h3{height:44.676000px;}
.hb{height:45.186000px;}
.ha{height:47.328000px;}
.h10{height:47.634000px;}
.h12{height:51.015628px;}
.he{height:52.173000px;}
.h4{height:55.461000px;}
.h8{height:55.680000px;}
.h11{height:59.004000px;}
.h7{height:59.340000px;}
.hd{height:61.380000px;}
.hc{height:62.976000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h5{height:85.056000px;}
.hf{height:107.304000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x5{left:93.575409px;}
.xc{left:107.288402px;}
.x7{left:256.973389px;}
.x8{left:265.974767px;}
.x4{left:459.212540px;}
.x6{left:476.255386px;}
.xd{left:480.473272px;}
.xb{left:489.965540px;}
.x9{left:575.531948px;}
.x1{left:728.220612px;}
.xa{left:743.385698px;}
@media print{
.v6{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.333333pt;}
.v5{vertical-align:-2.234771pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.898692pt;}
.v1{vertical-align:21.333333pt;}
.v2{vertical-align:53.312000pt;}
.ls37{letter-spacing:-2.720000pt;}
.ls41{letter-spacing:-0.906667pt;}
.ls51{letter-spacing:-0.853333pt;}
.ls57{letter-spacing:-0.746667pt;}
.ls40{letter-spacing:-0.693333pt;}
.ls58{letter-spacing:-0.533333pt;}
.ls59{letter-spacing:-0.480000pt;}
.ls8d{letter-spacing:-0.453333pt;}
.ls52{letter-spacing:-0.426667pt;}
.lsa3{letter-spacing:-0.408000pt;}
.ls36{letter-spacing:-0.373333pt;}
.ls90{letter-spacing:-0.362667pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls8f{letter-spacing:-0.317333pt;}
.ls8e{letter-spacing:-0.272000pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls7b{letter-spacing:-0.226667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls7a{letter-spacing:-0.181333pt;}
.ls21{letter-spacing:-0.160000pt;}
.ls7c{letter-spacing:-0.136000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls93{letter-spacing:-0.090667pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls79{letter-spacing:-0.045333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls5d{letter-spacing:0.016602pt;}
.ls61{letter-spacing:0.022667pt;}
.ls47{letter-spacing:0.026667pt;}
.ls74{letter-spacing:0.045333pt;}
.ls15{letter-spacing:0.053333pt;}
.ls5a{letter-spacing:0.057617pt;}
.lsa0{letter-spacing:0.068000pt;}
.ls53{letter-spacing:0.080000pt;}
.ls5b{letter-spacing:0.082201pt;}
.ls8c{letter-spacing:0.090667pt;}
.ls4{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.133333pt;}
.ls60{letter-spacing:0.136000pt;}
.lsa2{letter-spacing:0.158399pt;}
.ls9f{letter-spacing:0.158667pt;}
.lsb{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.181333pt;}
.ls34{letter-spacing:0.186667pt;}
.ls8b{letter-spacing:0.204000pt;}
.ls2{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.226667pt;}
.ls48{letter-spacing:0.234652pt;}
.ls56{letter-spacing:0.234667pt;}
.ls55{letter-spacing:0.240000pt;}
.ls45{letter-spacing:0.250635pt;}
.ls49{letter-spacing:0.250667pt;}
.ls68{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266631pt;}
.ls3{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.272000pt;}
.ls91{letter-spacing:0.280246pt;}
.ls54{letter-spacing:0.293333pt;}
.lsa1{letter-spacing:0.294667pt;}
.ls6d{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.346667pt;}
.ls67{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.ls42{letter-spacing:0.400000pt;}
.ls6f{letter-spacing:0.408000pt;}
.ls24{letter-spacing:0.410667pt;}
.ls18{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.453333pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls63{letter-spacing:0.498667pt;}
.ls5c{letter-spacing:0.522667pt;}
.ls6{letter-spacing:0.533333pt;}
.ls6e{letter-spacing:0.544000pt;}
.ls3d{letter-spacing:0.560000pt;}
.ls97{letter-spacing:0.566667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.589333pt;}
.ls99{letter-spacing:0.612000pt;}
.ls89{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls98{letter-spacing:0.657333pt;}
.lsa{letter-spacing:0.666667pt;}
.ls6c{letter-spacing:0.680000pt;}
.ls5{letter-spacing:0.693333pt;}
.ls84{letter-spacing:0.702667pt;}
.ls46{letter-spacing:0.720000pt;}
.ls69{letter-spacing:0.725333pt;}
.ls31{letter-spacing:0.741333pt;}
.ls16{letter-spacing:0.746667pt;}
.ls82{letter-spacing:0.770667pt;}
.ls4a{letter-spacing:0.773333pt;}
.ls8a{letter-spacing:0.793333pt;}
.ls32{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.816000pt;}
.ls4b{letter-spacing:0.826667pt;}
.ls17{letter-spacing:0.853333pt;}
.ls73{letter-spacing:0.861333pt;}
.ls43{letter-spacing:0.880000pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls4d{letter-spacing:0.933333pt;}
.ls75{letter-spacing:0.952000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls72{letter-spacing:0.974667pt;}
.ls25{letter-spacing:0.986667pt;}
.ls71{letter-spacing:0.997333pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls92{letter-spacing:1.020000pt;}
.ls3f{letter-spacing:1.040000pt;}
.ls66{letter-spacing:1.042667pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls96{letter-spacing:1.088000pt;}
.ls5f{letter-spacing:1.093333pt;}
.ls33{letter-spacing:1.120000pt;}
.ls70{letter-spacing:1.133333pt;}
.ls5e{letter-spacing:1.146667pt;}
.ls80{letter-spacing:1.156000pt;}
.ls9e{letter-spacing:1.169586pt;}
.ls19{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.178667pt;}
.ls50{letter-spacing:1.200000pt;}
.ls64{letter-spacing:1.224000pt;}
.ls3b{letter-spacing:1.226667pt;}
.ls77{letter-spacing:1.246667pt;}
.ls4e{letter-spacing:1.248000pt;}
.ls95{letter-spacing:1.269333pt;}
.ls30{letter-spacing:1.280000pt;}
.ls9c{letter-spacing:1.292000pt;}
.ls94{letter-spacing:1.314667pt;}
.ls3a{letter-spacing:1.333333pt;}
.ls78{letter-spacing:1.360000pt;}
.ls3c{letter-spacing:1.386667pt;}
.ls76{letter-spacing:1.405333pt;}
.ls2b{letter-spacing:1.413333pt;}
.ls29{letter-spacing:1.440000pt;}
.ls83{letter-spacing:1.450667pt;}
.ls26{letter-spacing:1.493333pt;}
.ls81{letter-spacing:1.541333pt;}
.ls2e{letter-spacing:1.546667pt;}
.ls7f{letter-spacing:1.586667pt;}
.ls2c{letter-spacing:1.600000pt;}
.ls65{letter-spacing:1.632000pt;}
.ls2d{letter-spacing:1.653333pt;}
.ls7d{letter-spacing:1.677333pt;}
.ls86{letter-spacing:1.700000pt;}
.ls28{letter-spacing:1.706667pt;}
.ls7e{letter-spacing:1.722667pt;}
.ls38{letter-spacing:1.760000pt;}
.ls9b{letter-spacing:1.858667pt;}
.ls27{letter-spacing:1.866667pt;}
.ls85{letter-spacing:1.904000pt;}
.ls44{letter-spacing:1.920000pt;}
.ls88{letter-spacing:1.949333pt;}
.ls23{letter-spacing:1.973333pt;}
.ls9a{letter-spacing:1.994667pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls4f{letter-spacing:2.080000pt;}
.ls39{letter-spacing:2.133333pt;}
.ls9d{letter-spacing:2.221333pt;}
.ls3e{letter-spacing:2.240000pt;}
.ls2a{letter-spacing:2.293333pt;}
.ls1d{letter-spacing:2.400000pt;}
.ls0{letter-spacing:3.546667pt;}
.ws9f{word-spacing:-14.613333pt;}
.ws57{word-spacing:-14.453333pt;}
.ws58{word-spacing:-14.400000pt;}
.ws59{word-spacing:-14.346667pt;}
.ws8e{word-spacing:-14.106667pt;}
.ws2{word-spacing:-14.034667pt;}
.ws9c{word-spacing:-14.026667pt;}
.ws8{word-spacing:-14.000000pt;}
.ws8b{word-spacing:-13.973333pt;}
.ws1d{word-spacing:-13.920000pt;}
.ws84{word-spacing:-13.813333pt;}
.ws6e{word-spacing:-13.600000pt;}
.ws6f{word-spacing:-13.386667pt;}
.ws5a{word-spacing:-13.333333pt;}
.ws5b{word-spacing:-13.280000pt;}
.ws83{word-spacing:-13.226667pt;}
.wsa9{word-spacing:-13.184000pt;}
.ws8d{word-spacing:-13.173333pt;}
.ws8c{word-spacing:-13.120000pt;}
.ws82{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.928000pt;}
.wsc6{word-spacing:-12.194667pt;}
.ws10e{word-spacing:-12.104000pt;}
.ws10f{word-spacing:-11.900000pt;}
.wsaa{word-spacing:-11.650667pt;}
.wsb6{word-spacing:-11.560000pt;}
.ws49{word-spacing:-11.333333pt;}
.ws70{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.240000pt;}
.wsa8{word-spacing:-9.928000pt;}
.ws1c{word-spacing:-9.744000pt;}
.wsa3{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsa7{word-spacing:-8.840000pt;}
.ws11c{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws8f{word-spacing:-6.666667pt;}
.ws64{word-spacing:-2.240000pt;}
.wsb{word-spacing:-2.133333pt;}
.wsd5{word-spacing:-1.949333pt;}
.wsa{word-spacing:-1.920000pt;}
.ws120{word-spacing:-1.904000pt;}
.ws74{word-spacing:-1.701333pt;}
.ws3f{word-spacing:-1.493333pt;}
.ws7c{word-spacing:-1.440000pt;}
.ws9d{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.333333pt;}
.wsc{word-spacing:-1.280000pt;}
.wsdb{word-spacing:-1.269333pt;}
.ws12{word-spacing:-1.226667pt;}
.wsfc{word-spacing:-1.224000pt;}
.wsea{word-spacing:-1.178667pt;}
.ws28{word-spacing:-1.173333pt;}
.wsab{word-spacing:-1.133333pt;}
.ws61{word-spacing:-1.120000pt;}
.wsb0{word-spacing:-1.088000pt;}
.ws62{word-spacing:-1.066667pt;}
.wscd{word-spacing:-1.042667pt;}
.ws32{word-spacing:-1.013333pt;}
.ws115{word-spacing:-0.997333pt;}
.ws25{word-spacing:-0.960000pt;}
.wsbd{word-spacing:-0.952000pt;}
.ws60{word-spacing:-0.906667pt;}
.wsc9{word-spacing:-0.861333pt;}
.ws51{word-spacing:-0.853333pt;}
.wsf3{word-spacing:-0.816000pt;}
.ws41{word-spacing:-0.800000pt;}
.wsda{word-spacing:-0.770667pt;}
.ws7a{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.693333pt;}
.wsd6{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.640000pt;}
.ws10b{word-spacing:-0.634667pt;}
.wsd9{word-spacing:-0.589333pt;}
.ws77{word-spacing:-0.586667pt;}
.ws1b{word-spacing:-0.544000pt;}
.ws39{word-spacing:-0.533333pt;}
.wsee{word-spacing:-0.498667pt;}
.ws6a{word-spacing:-0.480000pt;}
.wsb1{word-spacing:-0.453333pt;}
.ws4f{word-spacing:-0.426667pt;}
.wse2{word-spacing:-0.408000pt;}
.ws10{word-spacing:-0.373333pt;}
.wsf9{word-spacing:-0.362667pt;}
.ws11{word-spacing:-0.320000pt;}
.wsd8{word-spacing:-0.317333pt;}
.wsad{word-spacing:-0.272000pt;}
.ws1a{word-spacing:-0.266667pt;}
.wsb3{word-spacing:-0.234667pt;}
.wsb5{word-spacing:-0.226667pt;}
.ws26{word-spacing:-0.213333pt;}
.wsce{word-spacing:-0.181333pt;}
.ws19{word-spacing:-0.160000pt;}
.wsca{word-spacing:-0.136000pt;}
.ws50{word-spacing:-0.106667pt;}
.wsfb{word-spacing:-0.090667pt;}
.ws16{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsf2{word-spacing:0.045333pt;}
.ws14{word-spacing:0.053333pt;}
.wsf0{word-spacing:0.090667pt;}
.ws78{word-spacing:0.106667pt;}
.wsd4{word-spacing:0.136000pt;}
.ws67{word-spacing:0.160000pt;}
.ws100{word-spacing:0.181333pt;}
.ws9e{word-spacing:0.213333pt;}
.wsc4{word-spacing:0.226667pt;}
.ws18{word-spacing:0.266667pt;}
.wse5{word-spacing:0.272000pt;}
.wsde{word-spacing:0.317333pt;}
.ws44{word-spacing:0.320000pt;}
.wse3{word-spacing:0.362667pt;}
.ws6b{word-spacing:0.373333pt;}
.ws102{word-spacing:0.408000pt;}
.ws7e{word-spacing:0.426667pt;}
.ws34{word-spacing:0.480000pt;}
.wsdf{word-spacing:0.498667pt;}
.ws38{word-spacing:0.533333pt;}
.ws104{word-spacing:0.544000pt;}
.ws92{word-spacing:0.586667pt;}
.wsf8{word-spacing:0.589333pt;}
.wsb4{word-spacing:0.634667pt;}
.ws53{word-spacing:0.640000pt;}
.wsc7{word-spacing:0.680000pt;}
.ws6d{word-spacing:0.693333pt;}
.wsf7{word-spacing:0.725333pt;}
.ws7f{word-spacing:0.746667pt;}
.wsbb{word-spacing:0.770667pt;}
.ws2b{word-spacing:0.800000pt;}
.ws118{word-spacing:0.816000pt;}
.ws13{word-spacing:0.853333pt;}
.wsb2{word-spacing:0.861333pt;}
.ws31{word-spacing:0.906667pt;}
.ws23{word-spacing:0.960000pt;}
.wsff{word-spacing:0.997333pt;}
.ws20{word-spacing:1.013333pt;}
.wseb{word-spacing:1.042667pt;}
.ws22{word-spacing:1.066667pt;}
.wsf5{word-spacing:1.088000pt;}
.ws33{word-spacing:1.120000pt;}
.wsac{word-spacing:1.133333pt;}
.ws75{word-spacing:1.173333pt;}
.ws116{word-spacing:1.224000pt;}
.ws87{word-spacing:1.226667pt;}
.wsd3{word-spacing:1.269333pt;}
.wsa1{word-spacing:1.280000pt;}
.wsb9{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.wsbe{word-spacing:1.360000pt;}
.wsf{word-spacing:1.386667pt;}
.wsf4{word-spacing:1.405333pt;}
.ws2d{word-spacing:1.440000pt;}
.ws43{word-spacing:1.493333pt;}
.wsfa{word-spacing:1.496000pt;}
.wse1{word-spacing:1.541333pt;}
.ws65{word-spacing:1.546667pt;}
.ws105{word-spacing:1.586667pt;}
.ws56{word-spacing:1.600000pt;}
.wsba{word-spacing:1.632000pt;}
.ws35{word-spacing:1.653333pt;}
.wsbc{word-spacing:1.677333pt;}
.ws4d{word-spacing:1.706667pt;}
.wsdc{word-spacing:1.722667pt;}
.ws1f{word-spacing:1.760000pt;}
.wscc{word-spacing:1.768000pt;}
.ws29{word-spacing:1.813333pt;}
.wsc0{word-spacing:1.858667pt;}
.ws24{word-spacing:1.866667pt;}
.wsd2{word-spacing:1.904000pt;}
.ws4b{word-spacing:1.920000pt;}
.wsfd{word-spacing:1.949333pt;}
.ws79{word-spacing:1.973333pt;}
.wsb7{word-spacing:1.994667pt;}
.ws3d{word-spacing:2.026667pt;}
.wsf6{word-spacing:2.040000pt;}
.ws81{word-spacing:2.080000pt;}
.wsed{word-spacing:2.085333pt;}
.ws10c{word-spacing:2.130667pt;}
.ws52{word-spacing:2.133333pt;}
.ws11a{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.186667pt;}
.wsc5{word-spacing:2.221333pt;}
.ws3b{word-spacing:2.240000pt;}
.wse0{word-spacing:2.266667pt;}
.ws68{word-spacing:2.293333pt;}
.wsd0{word-spacing:2.312000pt;}
.ws21{word-spacing:2.346667pt;}
.ws103{word-spacing:2.357333pt;}
.ws2e{word-spacing:2.400000pt;}
.wsb8{word-spacing:2.402667pt;}
.wse9{word-spacing:2.448000pt;}
.ws3c{word-spacing:2.453333pt;}
.wsc3{word-spacing:2.493333pt;}
.ws7d{word-spacing:2.506667pt;}
.ws10a{word-spacing:2.538667pt;}
.ws72{word-spacing:2.560000pt;}
.ws108{word-spacing:2.584000pt;}
.ws89{word-spacing:2.613333pt;}
.ws101{word-spacing:2.629333pt;}
.ws2c{word-spacing:2.666667pt;}
.ws11b{word-spacing:2.674667pt;}
.ws4c{word-spacing:2.720000pt;}
.ws114{word-spacing:2.765333pt;}
.ws7b{word-spacing:2.773333pt;}
.wscf{word-spacing:2.810667pt;}
.wsa0{word-spacing:2.826667pt;}
.wscb{word-spacing:2.856000pt;}
.ws1e{word-spacing:2.880000pt;}
.ws37{word-spacing:2.933333pt;}
.wse7{word-spacing:2.946667pt;}
.ws40{word-spacing:2.986667pt;}
.ws110{word-spacing:3.037333pt;}
.ws5c{word-spacing:3.040000pt;}
.wse6{word-spacing:3.082667pt;}
.ws5f{word-spacing:3.093333pt;}
.wsef{word-spacing:3.128000pt;}
.ws42{word-spacing:3.146667pt;}
.wsc2{word-spacing:3.173333pt;}
.wsa5{word-spacing:3.200000pt;}
.wsec{word-spacing:3.218667pt;}
.ws86{word-spacing:3.253333pt;}
.wsc1{word-spacing:3.264000pt;}
.ws119{word-spacing:3.309333pt;}
.ws109{word-spacing:3.354667pt;}
.wsa6{word-spacing:3.360000pt;}
.wse8{word-spacing:3.400000pt;}
.ws2a{word-spacing:3.413333pt;}
.wsc8{word-spacing:3.445333pt;}
.ws90{word-spacing:3.466667pt;}
.wsaf{word-spacing:3.490667pt;}
.ws9b{word-spacing:3.520000pt;}
.wsa2{word-spacing:3.573333pt;}
.wse4{word-spacing:3.581333pt;}
.ws91{word-spacing:3.626667pt;}
.ws36{word-spacing:3.680000pt;}
.ws4e{word-spacing:3.733333pt;}
.wsbf{word-spacing:3.853333pt;}
.ws54{word-spacing:3.893333pt;}
.ws27{word-spacing:3.946667pt;}
.ws69{word-spacing:4.000000pt;}
.wsa4{word-spacing:4.053333pt;}
.ws3e{word-spacing:4.160000pt;}
.ws76{word-spacing:4.213333pt;}
.ws85{word-spacing:4.266667pt;}
.ws107{word-spacing:4.352000pt;}
.ws8a{word-spacing:4.373333pt;}
.ws112{word-spacing:4.397333pt;}
.ws30{word-spacing:4.426667pt;}
.ws73{word-spacing:4.480000pt;}
.ws117{word-spacing:4.488000pt;}
.ws9a{word-spacing:4.586667pt;}
.wsfe{word-spacing:4.714667pt;}
.wsd1{word-spacing:4.760000pt;}
.ws98{word-spacing:4.800000pt;}
.ws5e{word-spacing:4.906667pt;}
.wsf1{word-spacing:4.941333pt;}
.ws88{word-spacing:4.960000pt;}
.ws10d{word-spacing:4.986667pt;}
.ws66{word-spacing:5.013333pt;}
.ws113{word-spacing:5.122667pt;}
.wsdd{word-spacing:5.258667pt;}
.ws6c{word-spacing:5.333333pt;}
.ws63{word-spacing:5.440000pt;}
.ws106{word-spacing:5.530667pt;}
.ws97{word-spacing:5.576000pt;}
.ws3a{word-spacing:5.600000pt;}
.ws55{word-spacing:5.813333pt;}
.ws71{word-spacing:5.866667pt;}
.wsd7{word-spacing:5.984000pt;}
.ws99{word-spacing:6.186667pt;}
.ws111{word-spacing:6.256000pt;}
.ws2f{word-spacing:6.293333pt;}
.ws11d{word-spacing:6.301333pt;}
.wsae{word-spacing:6.346667pt;}
.ws96{word-spacing:7.117333pt;}
.ws93{word-spacing:7.434667pt;}
.ws80{word-spacing:7.520000pt;}
.ws95{word-spacing:10.970667pt;}
.ws11e{word-spacing:12.013333pt;}
.ws11f{word-spacing:15.640000pt;}
.ws94{word-spacing:19.312000pt;}
.ws121{word-spacing:64.237333pt;}
.ws45{word-spacing:257.312000pt;}
.ws47{word-spacing:260.168000pt;}
.ws4a{word-spacing:270.372533pt;}
.ws48{word-spacing:464.032000pt;}
.ws46{word-spacing:1011.749303pt;}
._3a{margin-left:-17.589333pt;}
._3d{margin-left:-15.640000pt;}
._3c{margin-left:-14.642667pt;}
._3b{margin-left:-13.645333pt;}
._27{margin-left:-12.453356pt;}
._29{margin-left:-10.922667pt;}
._3e{margin-left:-9.792000pt;}
._28{margin-left:-7.968564pt;}
._23{margin-left:-4.704535pt;}
._1{margin-left:-3.551465pt;}
._3{margin-left:-2.640000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.402667pt;}
._25{width:2.400000pt;}
._24{width:3.637333pt;}
._2b{width:5.394667pt;}
._39{width:7.026667pt;}
._26{width:8.080000pt;}
._36{width:9.157333pt;}
._2c{width:10.245325pt;}
._2a{width:11.877321pt;}
._33{width:12.829333pt;}
._5{width:13.872000pt;}
._6{width:14.834931pt;}
._30{width:15.912000pt;}
._37{width:16.818667pt;}
._35{width:17.725333pt;}
._2e{width:19.221333pt;}
._38{width:20.584000pt;}
._32{width:29.058667pt;}
._2f{width:31.325333pt;}
._31{width:32.368000pt;}
._34{width:33.592000pt;}
._2d{width:34.997333pt;}
._40{width:48.552000pt;}
._3f{width:64.237333pt;}
._e{width:103.861333pt;}
._14{width:104.901333pt;}
._d{width:119.090667pt;}
._1e{width:231.157333pt;}
._15{width:285.418667pt;}
._10{width:310.352000pt;}
._1b{width:312.754667pt;}
._21{width:319.282667pt;}
._a{width:343.173333pt;}
._19{width:345.279970pt;}
._c{width:360.581333pt;}
._7{width:362.122667pt;}
._18{width:402.106667pt;}
._9{width:414.754667pt;}
._f{width:461.493303pt;}
._1a{width:464.163436pt;}
._1f{width:497.623970pt;}
._1c{width:537.335970pt;}
._12{width:549.077303pt;}
._1d{width:551.570636pt;}
._17{width:595.679970pt;}
._13{width:643.426636pt;}
._11{width:653.434636pt;}
._8{width:778.509303pt;}
._20{width:944.519970pt;}
._22{width:962.199970pt;}
._b{width:967.186636pt;}
._16{width:1022.493303pt;}
._4{width:1979.480000pt;}
.fs8{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y36{bottom:100.424262pt;}
.y19d{bottom:100.641597pt;}
.y1a0{bottom:100.652931pt;}
.y129{bottom:101.450928pt;}
.y15e{bottom:101.984261pt;}
.y198{bottom:101.986898pt;}
.y1a5{bottom:101.986928pt;}
.y172{bottom:101.986938pt;}
.yb7{bottom:102.110921pt;}
.y217{bottom:102.700278pt;}
.y2dd{bottom:103.438913pt;}
.y259{bottom:103.657620pt;}
.y2f5{bottom:103.997606pt;}
.y29b{bottom:104.008954pt;}
.y19c{bottom:113.969597pt;}
.y19f{bottom:113.980931pt;}
.y216{bottom:116.028278pt;}
.y2dc{bottom:116.766913pt;}
.y258{bottom:116.985620pt;}
.y2f4{bottom:117.325606pt;}
.y29a{bottom:117.336954pt;}
.y103{bottom:117.594971pt;}
.y128{bottom:118.117594pt;}
.y15d{bottom:118.650928pt;}
.y197{bottom:118.653564pt;}
.y1a4{bottom:118.653595pt;}
.y171{bottom:118.653605pt;}
.yb6{bottom:118.777588pt;}
.y2b{bottom:125.521200pt;}
.y19b{bottom:127.297597pt;}
.y19e{bottom:127.308931pt;}
.y35{bottom:127.816929pt;}
.y1dc{bottom:128.731605pt;}
.y215{bottom:129.356278pt;}
.y2db{bottom:130.094913pt;}
.y257{bottom:130.313620pt;}
.y2f3{bottom:130.653606pt;}
.y299{bottom:130.664954pt;}
.y102{bottom:134.261637pt;}
.y127{bottom:134.784261pt;}
.y15c{bottom:135.317594pt;}
.y196{bottom:135.320231pt;}
.y1a3{bottom:135.320262pt;}
.y170{bottom:135.320272pt;}
.yb5{bottom:135.444255pt;}
.y34{bottom:141.144929pt;}
.y1db{bottom:142.059605pt;}
.y2a{bottom:142.187866pt;}
.y214{bottom:142.684278pt;}
.y2da{bottom:143.422913pt;}
.y256{bottom:143.641620pt;}
.y2f2{bottom:143.981606pt;}
.y298{bottom:143.992954pt;}
.y101{bottom:150.928304pt;}
.y126{bottom:151.450928pt;}
.y15b{bottom:151.984261pt;}
.y195{bottom:151.986898pt;}
.y16f{bottom:151.986938pt;}
.yb4{bottom:152.110921pt;}
.y33{bottom:154.472929pt;}
.y213{bottom:156.012278pt;}
.y2d9{bottom:156.750913pt;}
.y255{bottom:156.969620pt;}
.y2f1{bottom:157.309606pt;}
.y297{bottom:157.320954pt;}
.y29{bottom:158.854533pt;}
.y100{bottom:167.594971pt;}
.y32{bottom:167.800929pt;}
.y125{bottom:168.117594pt;}
.y1a2{bottom:168.642938pt;}
.y15a{bottom:168.650928pt;}
.y194{bottom:168.653564pt;}
.y16e{bottom:168.653605pt;}
.y1da{bottom:168.726938pt;}
.yb3{bottom:168.777588pt;}
.y212{bottom:169.340278pt;}
.y2d8{bottom:170.078913pt;}
.y254{bottom:170.297620pt;}
.y2f0{bottom:170.637606pt;}
.y296{bottom:170.648954pt;}
.y28{bottom:175.521200pt;}
.y31{bottom:181.128929pt;}
.y1d9{bottom:182.054938pt;}
.y211{bottom:182.668278pt;}
.y2d7{bottom:183.406913pt;}
.y253{bottom:183.625620pt;}
.y2ef{bottom:183.965606pt;}
.y295{bottom:183.976954pt;}
.yff{bottom:184.261637pt;}
.y124{bottom:184.784261pt;}
.y1a1{bottom:185.314938pt;}
.y159{bottom:185.317594pt;}
.y193{bottom:185.320231pt;}
.y16d{bottom:185.320272pt;}
.yb2{bottom:185.444255pt;}
.y27{bottom:192.187866pt;}
.y30{bottom:194.456929pt;}
.y1d8{bottom:195.382938pt;}
.y210{bottom:195.996278pt;}
.y2d6{bottom:196.734913pt;}
.y252{bottom:196.953620pt;}
.y2ee{bottom:197.293606pt;}
.y294{bottom:197.304954pt;}
.yfe{bottom:200.928304pt;}
.y123{bottom:201.450928pt;}
.y158{bottom:201.984261pt;}
.y192{bottom:201.986898pt;}
.y16c{bottom:201.986938pt;}
.yb1{bottom:202.110921pt;}
.y2f{bottom:207.784929pt;}
.y1d7{bottom:208.710938pt;}
.y26{bottom:208.854533pt;}
.y20f{bottom:209.324278pt;}
.y2d5{bottom:210.062913pt;}
.y251{bottom:210.281620pt;}
.y2ed{bottom:210.621606pt;}
.y293{bottom:210.632954pt;}
.yfd{bottom:217.594971pt;}
.y122{bottom:218.117594pt;}
.y157{bottom:218.650928pt;}
.y191{bottom:218.653564pt;}
.y16b{bottom:218.653605pt;}
.yb0{bottom:218.777588pt;}
.y2e{bottom:221.112929pt;}
.y1d6{bottom:222.038938pt;}
.y20e{bottom:222.652278pt;}
.y2d4{bottom:223.390913pt;}
.y250{bottom:223.609620pt;}
.y2ec{bottom:223.949606pt;}
.y292{bottom:223.960954pt;}
.y25{bottom:225.521200pt;}
.yfc{bottom:234.261637pt;}
.y121{bottom:234.784261pt;}
.y156{bottom:235.317594pt;}
.y190{bottom:235.320231pt;}
.y16a{bottom:235.320272pt;}
.yaf{bottom:235.444255pt;}
.y20d{bottom:235.980278pt;}
.y2d3{bottom:236.718913pt;}
.y24f{bottom:236.937620pt;}
.y2eb{bottom:237.277606pt;}
.y291{bottom:237.288954pt;}
.y24{bottom:242.187866pt;}
.y2d{bottom:248.528262pt;}
.y1d5{bottom:248.706272pt;}
.y20c{bottom:249.308278pt;}
.y2d2{bottom:250.046913pt;}
.y24e{bottom:250.265620pt;}
.y2ea{bottom:250.605606pt;}
.y290{bottom:250.616954pt;}
.yfb{bottom:250.928304pt;}
.y155{bottom:251.984261pt;}
.y18f{bottom:251.986898pt;}
.y169{bottom:251.986938pt;}
.yae{bottom:252.110921pt;}
.y320{bottom:257.212277pt;}
.y23{bottom:258.854533pt;}
.y2c{bottom:261.856262pt;}
.y1d4{bottom:262.034272pt;}
.y20b{bottom:262.636278pt;}
.y2d1{bottom:263.374913pt;}
.y24d{bottom:263.593620pt;}
.y2e9{bottom:263.933606pt;}
.y28f{bottom:263.944954pt;}
.yfa{bottom:267.594971pt;}
.y120{bottom:268.117594pt;}
.y154{bottom:268.650928pt;}
.y18e{bottom:268.653564pt;}
.y168{bottom:268.653605pt;}
.yad{bottom:268.777588pt;}
.y31f{bottom:270.540277pt;}
.y1d3{bottom:275.362272pt;}
.y22{bottom:275.521200pt;}
.y20a{bottom:275.964278pt;}
.y2d0{bottom:276.702913pt;}
.y24c{bottom:276.921620pt;}
.y2e8{bottom:277.261606pt;}
.y28e{bottom:277.272954pt;}
.yf9{bottom:284.261637pt;}
.y153{bottom:285.317594pt;}
.y18d{bottom:285.320231pt;}
.y167{bottom:285.320272pt;}
.yac{bottom:285.444255pt;}
.y1d2{bottom:288.690272pt;}
.y209{bottom:289.292278pt;}
.y2cf{bottom:290.030913pt;}
.y24b{bottom:290.249620pt;}
.y32a{bottom:290.542933pt;}
.y31e{bottom:290.577610pt;}
.y2e7{bottom:290.589606pt;}
.y28d{bottom:290.600954pt;}
.y21{bottom:292.187866pt;}
.yf8{bottom:300.928304pt;}
.y152{bottom:301.984261pt;}
.y18c{bottom:301.986898pt;}
.y166{bottom:301.986938pt;}
.y1d1{bottom:302.018272pt;}
.yab{bottom:302.110921pt;}
.y208{bottom:302.620278pt;}
.y2ce{bottom:303.358913pt;}
.y24a{bottom:303.577620pt;}
.y329{bottom:303.870933pt;}
.y31d{bottom:303.905610pt;}
.y2e6{bottom:303.917606pt;}
.y28c{bottom:303.928954pt;}
.y65{bottom:307.164281pt;}
.y20{bottom:308.854533pt;}
.y11f{bottom:310.052246pt;}
.y1d0{bottom:315.346272pt;}
.y207{bottom:315.948278pt;}
.y2cd{bottom:316.686913pt;}
.y249{bottom:316.905620pt;}
.y2e5{bottom:317.245606pt;}
.y28b{bottom:317.256954pt;}
.yf7{bottom:317.594971pt;}
.y1c9{bottom:318.648272pt;}
.y151{bottom:318.650928pt;}
.y18b{bottom:318.653564pt;}
.y165{bottom:318.653605pt;}
.yaa{bottom:318.777588pt;}
.y64{bottom:320.492281pt;}
.y328{bottom:321.732259pt;}
.y9c{bottom:322.684259pt;}
.y31c{bottom:323.942943pt;}
.y11e{bottom:326.718913pt;}
.y1cf{bottom:328.674272pt;}
.y206{bottom:329.276278pt;}
.y2cc{bottom:330.014913pt;}
.y248{bottom:330.233620pt;}
.y2e4{bottom:330.573606pt;}
.y28a{bottom:330.584954pt;}
.y63{bottom:333.820281pt;}
.yf6{bottom:334.261637pt;}
.y150{bottom:335.317594pt;}
.y18a{bottom:335.320231pt;}
.y164{bottom:335.320272pt;}
.ya9{bottom:335.444255pt;}
.y9b{bottom:336.012259pt;}
.y327{bottom:337.251593pt;}
.y31b{bottom:337.270943pt;}
.y1ce{bottom:342.002272pt;}
.y1f{bottom:342.187866pt;}
.y205{bottom:342.604278pt;}
.y2cb{bottom:343.342913pt;}
.y11d{bottom:343.385579pt;}
.y247{bottom:343.561620pt;}
.y2e3{bottom:343.901606pt;}
.y289{bottom:343.912954pt;}
.y62{bottom:347.148281pt;}
.y9a{bottom:349.340259pt;}
.y326{bottom:350.579593pt;}
.yf5{bottom:350.928304pt;}
.y14f{bottom:351.984261pt;}
.y189{bottom:351.986898pt;}
.y163{bottom:351.986938pt;}
.ya8{bottom:352.110921pt;}
.y1cd{bottom:355.330272pt;}
.y204{bottom:355.932278pt;}
.y2ca{bottom:356.670913pt;}
.y246{bottom:356.889620pt;}
.y2e2{bottom:357.229606pt;}
.y288{bottom:357.240954pt;}
.y31a{bottom:357.308277pt;}
.y11c{bottom:360.052246pt;}
.y61{bottom:360.476281pt;}
.y99{bottom:362.668259pt;}
.yf4{bottom:367.594971pt;}
.y325{bottom:368.440918pt;}
.y14e{bottom:368.650928pt;}
.y188{bottom:368.653564pt;}
.y162{bottom:368.653605pt;}
.ya7{bottom:368.777588pt;}
.y203{bottom:369.260278pt;}
.y2c9{bottom:369.998913pt;}
.y245{bottom:370.217620pt;}
.y2e1{bottom:370.557606pt;}
.y287{bottom:370.568954pt;}
.y319{bottom:370.636277pt;}
.y60{bottom:373.804281pt;}
.y98{bottom:375.996259pt;}
.y11b{bottom:376.718913pt;}
.y1cc{bottom:381.997605pt;}
.y202{bottom:382.588278pt;}
.y2c8{bottom:383.326913pt;}
.y244{bottom:383.545620pt;}
.y2e0{bottom:383.885606pt;}
.y286{bottom:383.896954pt;}
.yf3{bottom:384.261637pt;}
.y14d{bottom:385.317594pt;}
.y187{bottom:385.320231pt;}
.y161{bottom:385.320272pt;}
.ya6{bottom:385.444255pt;}
.y97{bottom:389.324259pt;}
.y318{bottom:390.673610pt;}
.y324{bottom:390.730277pt;}
.y1e{bottom:392.187907pt;}
.y11a{bottom:393.385579pt;}
.y1cb{bottom:395.325605pt;}
.y201{bottom:395.916278pt;}
.y2c7{bottom:396.654913pt;}
.y243{bottom:396.873620pt;}
.y2df{bottom:397.213606pt;}
.y285{bottom:397.224954pt;}
.yf2{bottom:400.928304pt;}
.y14c{bottom:401.984261pt;}
.y186{bottom:401.986898pt;}
.y1c8{bottom:401.986928pt;}
.y160{bottom:401.986938pt;}
.ya5{bottom:402.110921pt;}
.y317{bottom:404.001610pt;}
.y323{bottom:404.058277pt;}
.y1ca{bottom:408.653605pt;}
.y200{bottom:409.244278pt;}
.y2c6{bottom:409.982913pt;}
.y119{bottom:410.052246pt;}
.y242{bottom:410.201620pt;}
.y2de{bottom:410.541606pt;}
.y284{bottom:410.552954pt;}
.y5f{bottom:417.480265pt;}
.y59{bottom:417.480306pt;}
.yf1{bottom:417.594971pt;}
.y14b{bottom:418.650928pt;}
.y185{bottom:418.653564pt;}
.y1c7{bottom:418.653595pt;}
.y15f{bottom:418.653605pt;}
.ya4{bottom:418.777588pt;}
.y1ff{bottom:422.572278pt;}
.y241{bottom:423.529620pt;}
.y2c5{bottom:423.869606pt;}
.y283{bottom:423.880954pt;}
.y316{bottom:424.038943pt;}
.y322{bottom:424.095610pt;}
.y1d{bottom:425.521240pt;}
.y118{bottom:426.718913pt;}
.y5e{bottom:434.146932pt;}
.y58{bottom:434.146973pt;}
.yf0{bottom:434.261637pt;}
.y14a{bottom:435.317594pt;}
.y86{bottom:435.320231pt;}
.y1c6{bottom:435.320262pt;}
.y96{bottom:435.320272pt;}
.ya3{bottom:435.444255pt;}
.y1fe{bottom:435.900278pt;}
.y240{bottom:436.857620pt;}
.y2c4{bottom:437.197606pt;}
.y282{bottom:437.208954pt;}
.y315{bottom:437.366943pt;}
.y321{bottom:437.423610pt;}
.y1c{bottom:442.187907pt;}
.y117{bottom:443.385579pt;}
.y1fd{bottom:449.228278pt;}
.y23f{bottom:450.185620pt;}
.y2c3{bottom:450.525606pt;}
.y281{bottom:450.536954pt;}
.y5d{bottom:450.813599pt;}
.y57{bottom:450.813639pt;}
.yef{bottom:450.928304pt;}
.y199{bottom:451.981605pt;}
.y149{bottom:451.984261pt;}
.y85{bottom:451.986898pt;}
.y1c5{bottom:451.986928pt;}
.y95{bottom:451.986938pt;}
.ya2{bottom:452.110921pt;}
.y1b{bottom:458.854574pt;}
.y116{bottom:460.052246pt;}
.y1fc{bottom:462.556278pt;}
.y23e{bottom:463.513620pt;}
.y2c2{bottom:463.853606pt;}
.y280{bottom:463.864954pt;}
.y5c{bottom:467.480265pt;}
.y56{bottom:467.480306pt;}
.yee{bottom:467.594971pt;}
.y148{bottom:468.650928pt;}
.y84{bottom:468.653564pt;}
.y1c4{bottom:468.653595pt;}
.y94{bottom:468.653605pt;}
.ya1{bottom:468.777588pt;}
.y314{bottom:470.784261pt;}
.y1a{bottom:475.521240pt;}
.y1fb{bottom:475.884278pt;}
.y115{bottom:476.718913pt;}
.y23d{bottom:476.841620pt;}
.y2c1{bottom:477.181606pt;}
.y27f{bottom:477.192954pt;}
.y5b{bottom:484.146932pt;}
.y55{bottom:484.146973pt;}
.yed{bottom:484.261637pt;}
.y147{bottom:485.317594pt;}
.y83{bottom:485.320231pt;}
.y1c3{bottom:485.320262pt;}
.y93{bottom:485.320272pt;}
.ya0{bottom:485.444255pt;}
.y313{bottom:487.450928pt;}
.y1fa{bottom:489.212278pt;}
.y23c{bottom:490.169620pt;}
.y2c0{bottom:490.509606pt;}
.y27e{bottom:490.520954pt;}
.y19{bottom:492.187907pt;}
.y114{bottom:493.385579pt;}
.y54{bottom:500.813639pt;}
.yec{bottom:500.928304pt;}
.y146{bottom:501.984261pt;}
.y82{bottom:501.986898pt;}
.y1c2{bottom:501.986928pt;}
.y92{bottom:501.986938pt;}
.y9f{bottom:502.110921pt;}
.y1f9{bottom:502.540278pt;}
.y23b{bottom:503.497620pt;}
.y2bf{bottom:503.837606pt;}
.y27d{bottom:503.848954pt;}
.y312{bottom:504.117594pt;}
.y18{bottom:508.854574pt;}
.y113{bottom:510.052246pt;}
.y1f8{bottom:515.868278pt;}
.y23a{bottom:516.825620pt;}
.y2be{bottom:517.165606pt;}
.y27c{bottom:517.176954pt;}
.y5a{bottom:517.480265pt;}
.y53{bottom:517.480306pt;}
.yeb{bottom:517.594971pt;}
.y145{bottom:518.650928pt;}
.y81{bottom:518.653564pt;}
.y1c1{bottom:518.653595pt;}
.y91{bottom:518.653605pt;}
.y9e{bottom:518.777588pt;}
.y17{bottom:525.521240pt;}
.y112{bottom:526.718913pt;}
.y1f7{bottom:529.196278pt;}
.y239{bottom:530.153620pt;}
.y2bd{bottom:530.493606pt;}
.y27b{bottom:530.504954pt;}
.y52{bottom:534.146973pt;}
.yea{bottom:534.261637pt;}
.y144{bottom:535.317594pt;}
.y80{bottom:535.320231pt;}
.y1c0{bottom:535.320262pt;}
.y90{bottom:535.320272pt;}
.y9d{bottom:535.444255pt;}
.y311{bottom:537.450928pt;}
.y16{bottom:542.187907pt;}
.y1f6{bottom:542.524278pt;}
.y111{bottom:543.385579pt;}
.y238{bottom:543.481620pt;}
.y2bc{bottom:543.821606pt;}
.y27a{bottom:543.832954pt;}
.y51{bottom:550.813639pt;}
.ye9{bottom:550.928304pt;}
.y143{bottom:551.984261pt;}
.y7f{bottom:551.986898pt;}
.y1bf{bottom:551.986928pt;}
.y8f{bottom:551.986938pt;}
.y1f5{bottom:555.852278pt;}
.y237{bottom:556.809620pt;}
.y2bb{bottom:557.149606pt;}
.y279{bottom:557.160954pt;}
.y15{bottom:558.854574pt;}
.y110{bottom:560.052246pt;}
.y50{bottom:567.480306pt;}
.ye8{bottom:567.594971pt;}
.y142{bottom:568.650928pt;}
.y7e{bottom:568.653564pt;}
.y1be{bottom:568.653595pt;}
.y8e{bottom:568.653605pt;}
.y1f4{bottom:569.180278pt;}
.y236{bottom:570.137620pt;}
.y2ba{bottom:570.477606pt;}
.y278{bottom:570.488954pt;}
.y14{bottom:575.521240pt;}
.y10f{bottom:576.718913pt;}
.yd0{bottom:581.842021pt;}
.y1f3{bottom:582.508278pt;}
.y235{bottom:583.465620pt;}
.y2b9{bottom:583.805606pt;}
.y277{bottom:583.816954pt;}
.y4f{bottom:584.146973pt;}
.ye7{bottom:584.261637pt;}
.y141{bottom:585.317594pt;}
.y7d{bottom:585.320231pt;}
.y1bd{bottom:585.320262pt;}
.y8d{bottom:585.320272pt;}
.y13{bottom:592.187907pt;}
.y10e{bottom:593.385579pt;}
.y19a{bottom:593.663086pt;}
.y1f2{bottom:595.836278pt;}
.y310{bottom:596.770942pt;}
.y234{bottom:596.793620pt;}
.y2b8{bottom:597.133606pt;}
.y276{bottom:597.144954pt;}
.ycf{bottom:598.547355pt;}
.y4e{bottom:600.813639pt;}
.ye6{bottom:600.928304pt;}
.y140{bottom:601.984261pt;}
.y7c{bottom:601.986898pt;}
.y1bc{bottom:601.986928pt;}
.y8c{bottom:601.986938pt;}
.y12{bottom:608.854574pt;}
.y1f1{bottom:609.164278pt;}
.y10d{bottom:610.052246pt;}
.y30f{bottom:610.098942pt;}
.y233{bottom:610.121620pt;}
.y2b7{bottom:610.461606pt;}
.y275{bottom:610.472954pt;}
.yce{bottom:615.184688pt;}
.y4d{bottom:617.480306pt;}
.ye5{bottom:617.594971pt;}
.y13f{bottom:618.650928pt;}
.y7b{bottom:618.653564pt;}
.y1bb{bottom:618.653595pt;}
.y8b{bottom:618.653605pt;}
.y1f0{bottom:622.492278pt;}
.y30e{bottom:623.426942pt;}
.y232{bottom:623.449620pt;}
.y2b6{bottom:623.789606pt;}
.y274{bottom:623.800954pt;}
.y11{bottom:625.521240pt;}
.y10c{bottom:626.718913pt;}
.ycd{bottom:631.754021pt;}
.y4c{bottom:634.146973pt;}
.ye4{bottom:634.261637pt;}
.y13e{bottom:635.317594pt;}
.y7a{bottom:635.320231pt;}
.y1ba{bottom:635.320262pt;}
.y8a{bottom:635.320272pt;}
.y1ef{bottom:635.820278pt;}
.y30d{bottom:636.754942pt;}
.y231{bottom:636.777620pt;}
.y2b5{bottom:637.117606pt;}
.y273{bottom:637.128954pt;}
.y10{bottom:642.187907pt;}
.y10b{bottom:643.385579pt;}
.ycb{bottom:648.448021pt;}
.y1ee{bottom:649.148278pt;}
.y30c{bottom:650.082942pt;}
.y230{bottom:650.105620pt;}
.y2b4{bottom:650.445606pt;}
.y272{bottom:650.456954pt;}
.y4b{bottom:650.813639pt;}
.ye3{bottom:650.928304pt;}
.y13d{bottom:651.984261pt;}
.y79{bottom:651.986898pt;}
.y1b9{bottom:651.986928pt;}
.y89{bottom:651.986938pt;}
.yf{bottom:658.854574pt;}
.y10a{bottom:660.052246pt;}
.yca{bottom:661.776021pt;}
.y1ed{bottom:662.476278pt;}
.y22f{bottom:663.433620pt;}
.y2b3{bottom:663.773606pt;}
.y271{bottom:663.784954pt;}
.y4a{bottom:667.480306pt;}
.ye2{bottom:667.594971pt;}
.y13c{bottom:668.650928pt;}
.y78{bottom:668.653564pt;}
.y1b8{bottom:668.653595pt;}
.y88{bottom:668.653605pt;}
.yc9{bottom:675.104021pt;}
.ycc{bottom:675.115355pt;}
.ye{bottom:675.521240pt;}
.y1ec{bottom:675.804278pt;}
.y109{bottom:676.718913pt;}
.y22e{bottom:676.761620pt;}
.y30b{bottom:676.829607pt;}
.y2b2{bottom:677.101606pt;}
.y270{bottom:677.112954pt;}
.y49{bottom:684.146973pt;}
.ye1{bottom:684.261637pt;}
.y13b{bottom:685.317594pt;}
.y77{bottom:685.320231pt;}
.y1b7{bottom:685.320262pt;}
.y184{bottom:685.320272pt;}
.y1eb{bottom:689.132278pt;}
.y22d{bottom:690.089620pt;}
.y30a{bottom:690.157607pt;}
.y2b1{bottom:690.429606pt;}
.y26f{bottom:690.440954pt;}
.yc8{bottom:691.741355pt;}
.yd{bottom:692.187907pt;}
.y108{bottom:693.385579pt;}
.y48{bottom:700.813639pt;}
.ye0{bottom:700.928304pt;}
.y87{bottom:701.981564pt;}
.y13a{bottom:701.984261pt;}
.y76{bottom:701.986898pt;}
.y1b6{bottom:701.986928pt;}
.y183{bottom:701.986938pt;}
.y1ea{bottom:702.460278pt;}
.y22c{bottom:703.417620pt;}
.y2b0{bottom:703.757606pt;}
.y26e{bottom:703.768954pt;}
.yc7{bottom:708.378688pt;}
.yc{bottom:708.854574pt;}
.y107{bottom:710.052246pt;}
.y1e9{bottom:715.788278pt;}
.y22b{bottom:716.745620pt;}
.y309{bottom:716.904273pt;}
.y2af{bottom:717.085606pt;}
.y26d{bottom:717.096954pt;}
.y47{bottom:717.480306pt;}
.ydf{bottom:717.594971pt;}
.y139{bottom:718.650928pt;}
.y75{bottom:718.653564pt;}
.y1b5{bottom:718.653595pt;}
.y182{bottom:718.653605pt;}
.yc6{bottom:725.016021pt;}
.y106{bottom:726.718913pt;}
.y1e8{bottom:729.116278pt;}
.y22a{bottom:730.073620pt;}
.y308{bottom:730.232273pt;}
.y2ae{bottom:730.413606pt;}
.y26c{bottom:730.424954pt;}
.y46{bottom:734.146973pt;}
.yde{bottom:734.261637pt;}
.y138{bottom:735.317594pt;}
.y74{bottom:735.320231pt;}
.y1b4{bottom:735.320262pt;}
.y181{bottom:735.320272pt;}
.yc5{bottom:741.653355pt;}
.y1e7{bottom:742.444278pt;}
.y105{bottom:743.385579pt;}
.y229{bottom:743.401620pt;}
.y307{bottom:743.560273pt;}
.y2ad{bottom:743.741606pt;}
.y26b{bottom:743.752954pt;}
.yb{bottom:748.128136pt;}
.y45{bottom:750.813639pt;}
.ydd{bottom:750.928304pt;}
.y137{bottom:751.984261pt;}
.y73{bottom:751.986898pt;}
.y1b3{bottom:751.986928pt;}
.y180{bottom:751.986938pt;}
.yc4{bottom:754.981355pt;}
.y1e6{bottom:755.772278pt;}
.y228{bottom:756.729620pt;}
.y306{bottom:756.888273pt;}
.y2ac{bottom:757.069606pt;}
.y26a{bottom:757.080954pt;}
.ya{bottom:761.456136pt;}
.y44{bottom:767.480306pt;}
.ydc{bottom:767.594971pt;}
.y136{bottom:768.650928pt;}
.y72{bottom:768.653564pt;}
.y1b2{bottom:768.653595pt;}
.y17f{bottom:768.653605pt;}
.y1e5{bottom:769.100278pt;}
.y227{bottom:770.057620pt;}
.y305{bottom:770.216273pt;}
.y2ab{bottom:770.397606pt;}
.y269{bottom:770.408954pt;}
.yc3{bottom:771.618688pt;}
.y104{bottom:776.718913pt;}
.y1e4{bottom:782.428278pt;}
.y226{bottom:783.385620pt;}
.y304{bottom:783.544273pt;}
.y2aa{bottom:783.725606pt;}
.y268{bottom:783.736954pt;}
.y43{bottom:784.146973pt;}
.ydb{bottom:784.261637pt;}
.y135{bottom:785.317594pt;}
.y71{bottom:785.320231pt;}
.y1b1{bottom:785.320262pt;}
.y17e{bottom:785.320272pt;}
.yc2{bottom:788.256021pt;}
.y1e3{bottom:795.756278pt;}
.y225{bottom:796.713620pt;}
.y303{bottom:796.872273pt;}
.y2a9{bottom:797.053606pt;}
.y267{bottom:797.064954pt;}
.y9{bottom:799.322835pt;}
.y42{bottom:800.813639pt;}
.yda{bottom:800.928304pt;}
.y134{bottom:801.984261pt;}
.y70{bottom:801.986898pt;}
.y1b0{bottom:801.986928pt;}
.y17d{bottom:801.986938pt;}
.yc1{bottom:804.893355pt;}
.y1e2{bottom:809.084278pt;}
.y224{bottom:810.041620pt;}
.y302{bottom:810.200273pt;}
.y2a8{bottom:810.381606pt;}
.y266{bottom:810.392954pt;}
.y8{bottom:815.989502pt;}
.y41{bottom:817.480306pt;}
.yd9{bottom:817.594971pt;}
.y133{bottom:818.650928pt;}
.y6f{bottom:818.653564pt;}
.y1af{bottom:818.653595pt;}
.y17c{bottom:818.653605pt;}
.yc0{bottom:821.530688pt;}
.y1e1{bottom:822.412278pt;}
.y223{bottom:823.369620pt;}
.y301{bottom:823.528273pt;}
.y2a7{bottom:823.709606pt;}
.y265{bottom:823.720954pt;}
.y7{bottom:832.656169pt;}
.y40{bottom:834.146973pt;}
.yd8{bottom:834.261637pt;}
.y132{bottom:835.317594pt;}
.y6e{bottom:835.320231pt;}
.y1ae{bottom:835.320262pt;}
.y17b{bottom:835.320272pt;}
.y1e0{bottom:835.740278pt;}
.y222{bottom:836.697620pt;}
.y300{bottom:836.856273pt;}
.y2a6{bottom:837.037606pt;}
.y264{bottom:837.048954pt;}
.ybf{bottom:838.168021pt;}
.y1df{bottom:849.068278pt;}
.y221{bottom:850.025620pt;}
.y2ff{bottom:850.184273pt;}
.y2a5{bottom:850.365606pt;}
.y263{bottom:850.376954pt;}
.y3f{bottom:850.813639pt;}
.yd7{bottom:850.928304pt;}
.y131{bottom:851.984261pt;}
.y6d{bottom:851.986898pt;}
.y1ad{bottom:851.986928pt;}
.y17a{bottom:851.986938pt;}
.ybe{bottom:854.805355pt;}
.y220{bottom:863.353620pt;}
.y2fe{bottom:863.512273pt;}
.y2a4{bottom:863.693606pt;}
.y262{bottom:863.704954pt;}
.y3e{bottom:867.480306pt;}
.yd6{bottom:867.594971pt;}
.y130{bottom:868.650928pt;}
.y6c{bottom:868.653564pt;}
.y1ac{bottom:868.653595pt;}
.y179{bottom:868.653605pt;}
.ybd{bottom:871.442688pt;}
.y6{bottom:872.377441pt;}
.y21f{bottom:876.681620pt;}
.y2fd{bottom:876.840273pt;}
.y2a3{bottom:877.021606pt;}
.y261{bottom:877.032954pt;}
.y1de{bottom:879.068278pt;}
.y3d{bottom:884.146973pt;}
.yd5{bottom:884.261637pt;}
.y12f{bottom:885.317594pt;}
.y6b{bottom:885.320231pt;}
.y1ab{bottom:885.320262pt;}
.y178{bottom:885.320272pt;}
.ybc{bottom:888.080021pt;}
.y21e{bottom:890.009620pt;}
.y2fc{bottom:890.168273pt;}
.y2a2{bottom:890.349606pt;}
.y260{bottom:890.360954pt;}
.y5{bottom:896.377441pt;}
.y3c{bottom:900.813639pt;}
.yd4{bottom:900.928304pt;}
.y12e{bottom:901.984261pt;}
.y6a{bottom:901.986898pt;}
.y1aa{bottom:901.986928pt;}
.y177{bottom:901.986938pt;}
.y21d{bottom:903.337620pt;}
.y2fb{bottom:903.496273pt;}
.y2a1{bottom:903.677606pt;}
.y25f{bottom:903.688954pt;}
.ybb{bottom:904.717355pt;}
.y21c{bottom:916.665620pt;}
.y2fa{bottom:916.824273pt;}
.y2a0{bottom:917.005606pt;}
.y25e{bottom:917.016954pt;}
.y3b{bottom:917.480306pt;}
.yd3{bottom:917.594971pt;}
.y12d{bottom:918.650928pt;}
.y69{bottom:918.653564pt;}
.y1a9{bottom:918.653595pt;}
.y176{bottom:918.653605pt;}
.yba{bottom:921.354688pt;}
.y21b{bottom:929.993620pt;}
.y2f9{bottom:930.152273pt;}
.y29f{bottom:930.333606pt;}
.y25d{bottom:930.344954pt;}
.y3a{bottom:934.146973pt;}
.yd2{bottom:934.261637pt;}
.y12c{bottom:935.317594pt;}
.y68{bottom:935.320231pt;}
.y1a8{bottom:935.320262pt;}
.y175{bottom:935.320272pt;}
.y1dd{bottom:940.928304pt;}
.y21a{bottom:943.321620pt;}
.y2f8{bottom:943.480273pt;}
.y29e{bottom:943.661606pt;}
.y25c{bottom:943.672954pt;}
.yb9{bottom:946.322021pt;}
.y39{bottom:950.813639pt;}
.y12b{bottom:951.984261pt;}
.y67{bottom:951.986898pt;}
.y1a7{bottom:951.986928pt;}
.y174{bottom:951.986938pt;}
.y4{bottom:956.561849pt;}
.y219{bottom:956.649620pt;}
.y2f7{bottom:956.808273pt;}
.y29d{bottom:956.989606pt;}
.y25b{bottom:957.000954pt;}
.y38{bottom:967.480306pt;}
.yd1{bottom:967.594971pt;}
.y12a{bottom:968.650928pt;}
.y66{bottom:968.653564pt;}
.y1a6{bottom:968.653595pt;}
.y173{bottom:968.653605pt;}
.yb8{bottom:968.980306pt;}
.y218{bottom:969.977620pt;}
.y2f6{bottom:970.136273pt;}
.y29c{bottom:970.317606pt;}
.y25a{bottom:970.328954pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y37{bottom:1002.206543pt;}
.h13{height:29.448532pt;}
.h2{height:30.080000pt;}
.h3{height:39.712000pt;}
.hb{height:40.165333pt;}
.ha{height:42.069333pt;}
.h10{height:42.341333pt;}
.h12{height:45.347225pt;}
.he{height:46.376000pt;}
.h4{height:49.298667pt;}
.h8{height:49.493333pt;}
.h11{height:52.448000pt;}
.h7{height:52.746667pt;}
.hd{height:54.560000pt;}
.hc{height:55.978667pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h5{height:75.605333pt;}
.hf{height:95.381333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x5{left:83.178141pt;}
.xc{left:95.367469pt;}
.x7{left:228.420791pt;}
.x8{left:236.422015pt;}
.x4{left:408.188924pt;}
.x6{left:423.338121pt;}
.xd{left:427.087353pt;}
.xb{left:435.524924pt;}
.x9{left:511.583954pt;}
.x1{left:647.307210pt;}
.xa{left:660.787287pt;}
}




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