
    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_f283c43d139fe6b91f7257b2.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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4e26c4f1a3e7776861b2d57d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6973d4658d090599e4caa629.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_f5750496cecf3e67b7f0e2c9.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da45c7c55f741c179a4079c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;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_b1f3f51a3a254dd2420339e7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a668e17640d4bb82c8e87ad3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8457d8b21a53692eb93e5ca5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3166c3278702dcf4b1f0e485.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6587ac2284494baccccb4f3f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.667000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8fa69e74d44a424d7e041fed.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-24.000000px;}
.v2{vertical-align:-20.400009px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.375963px;}
.v1{vertical-align:24.000000px;}
.ls33{letter-spacing:-2.400000px;}
.ls38{letter-spacing:-2.220000px;}
.ls36{letter-spacing:-2.160000px;}
.ls9e{letter-spacing:-1.989000px;}
.ls37{letter-spacing:-1.980000px;}
.ls32{letter-spacing:-1.800000px;}
.ls2c{letter-spacing:-1.740000px;}
.ls31{letter-spacing:-1.680000px;}
.ls2d{letter-spacing:-1.380000px;}
.ls97{letter-spacing:-1.326000px;}
.ls2e{letter-spacing:-1.260000px;}
.ls99{letter-spacing:-1.224000px;}
.ls34{letter-spacing:-1.200000px;}
.ls9b{letter-spacing:-1.173000px;}
.ls27{letter-spacing:-1.140000px;}
.ls35{letter-spacing:-1.080000px;}
.ls30{letter-spacing:-1.020000px;}
.ls96{letter-spacing:-0.969000px;}
.ls2b{letter-spacing:-0.960000px;}
.ls95{letter-spacing:-0.918000px;}
.ls2f{letter-spacing:-0.840000px;}
.ls2a{letter-spacing:-0.780000px;}
.ls98{letter-spacing:-0.765000px;}
.ls17{letter-spacing:-0.720000px;}
.ls83{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.600000px;}
.ls9c{letter-spacing:-0.561000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls81{letter-spacing:-0.510000px;}
.ls3a{letter-spacing:-0.480000px;}
.ls9d{letter-spacing:-0.459000px;}
.ls28{letter-spacing:-0.420000px;}
.lsa9{letter-spacing:-0.408000px;}
.ls16{letter-spacing:-0.360000px;}
.ls7b{letter-spacing:-0.357000px;}
.ls7c{letter-spacing:-0.306000px;}
.ls3c{letter-spacing:-0.300000px;}
.ls7d{letter-spacing:-0.255000px;}
.ls18{letter-spacing:-0.240000px;}
.ls7e{letter-spacing:-0.204000px;}
.ls39{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.153000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls82{letter-spacing:-0.102000px;}
.ls19{letter-spacing:-0.060000px;}
.ls9a{letter-spacing:-0.051000px;}
.ls14{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.009584px;}
.ls20{letter-spacing:0.030000px;}
.ls66{letter-spacing:0.051000px;}
.ls1{letter-spacing:0.060000px;}
.ls85{letter-spacing:0.076500px;}
.ls6c{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls68{letter-spacing:0.127500px;}
.ls5c{letter-spacing:0.150000px;}
.ls72{letter-spacing:0.153000px;}
.lsa1{letter-spacing:0.178500px;}
.ls12{letter-spacing:0.178791px;}
.lsf{letter-spacing:0.180000px;}
.ls6e{letter-spacing:0.204000px;}
.ls54{letter-spacing:0.210000px;}
.ls48{letter-spacing:0.210022px;}
.ls0{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.255000px;}
.ls69{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.270000px;}
.ls94{letter-spacing:0.280500px;}
.ls6d{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.288539px;}
.ls2{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.306000px;}
.ls75{letter-spacing:0.331500px;}
.ls6a{letter-spacing:0.357000px;}
.ls1c{letter-spacing:0.360000px;}
.lsa0{letter-spacing:0.382500px;}
.ls9{letter-spacing:0.390000px;}
.ls6b{letter-spacing:0.408000px;}
.ls9f{letter-spacing:0.413100px;}
.ls8{letter-spacing:0.420000px;}
.ls73{letter-spacing:0.459000px;}
.ls25{letter-spacing:0.480000px;}
.ls64{letter-spacing:0.510000px;}
.lsc{letter-spacing:0.540000px;}
.ls79{letter-spacing:0.555900px;}
.ls70{letter-spacing:0.561000px;}
.ls84{letter-spacing:0.586500px;}
.ls42{letter-spacing:0.591614px;}
.lsd{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.612000px;}
.ls46{letter-spacing:0.630000px;}
.ls4{letter-spacing:0.660000px;}
.ls65{letter-spacing:0.663000px;}
.lsa8{letter-spacing:0.688500px;}
.ls1f{letter-spacing:0.690000px;}
.ls76{letter-spacing:0.714000px;}
.ls3d{letter-spacing:0.720000px;}
.ls74{letter-spacing:0.739500px;}
.ls91{letter-spacing:0.749684px;}
.ls26{letter-spacing:0.750000px;}
.ls86{letter-spacing:0.765000px;}
.ls3{letter-spacing:0.780000px;}
.ls92{letter-spacing:0.800679px;}
.ls61{letter-spacing:0.816000px;}
.ls5d{letter-spacing:0.831024px;}
.ls41{letter-spacing:0.837070px;}
.ls7{letter-spacing:0.840000px;}
.lsa6{letter-spacing:0.841500px;}
.ls80{letter-spacing:0.867000px;}
.ls5a{letter-spacing:0.870000px;}
.ls93{letter-spacing:0.892500px;}
.ls6{letter-spacing:0.900000px;}
.ls4a{letter-spacing:0.901062px;}
.ls87{letter-spacing:0.918000px;}
.ls5e{letter-spacing:0.930000px;}
.ls43{letter-spacing:0.948000px;}
.ls10{letter-spacing:0.960000px;}
.ls71{letter-spacing:0.969000px;}
.ls1d{letter-spacing:0.990000px;}
.lsa{letter-spacing:1.020000px;}
.ls53{letter-spacing:1.029602px;}
.lsa4{letter-spacing:1.045500px;}
.lsb{letter-spacing:1.050000px;}
.ls63{letter-spacing:1.071000px;}
.lse{letter-spacing:1.080000px;}
.ls67{letter-spacing:1.096500px;}
.ls8d{letter-spacing:1.122000px;}
.ls22{letter-spacing:1.140000px;}
.ls8c{letter-spacing:1.173000px;}
.ls3f{letter-spacing:1.200000px;}
.ls62{letter-spacing:1.224000px;}
.ls23{letter-spacing:1.260000px;}
.ls44{letter-spacing:1.320000px;}
.ls7a{letter-spacing:1.326000px;}
.ls49{letter-spacing:1.326028px;}
.lsa5{letter-spacing:1.377000px;}
.ls45{letter-spacing:1.380000px;}
.ls6f{letter-spacing:1.428000px;}
.ls89{letter-spacing:1.438200px;}
.ls55{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.454976px;}
.ls8a{letter-spacing:1.463690px;}
.ls4c{letter-spacing:1.470000px;}
.ls8e{letter-spacing:1.479000px;}
.ls24{letter-spacing:1.500000px;}
.ls88{letter-spacing:1.530000px;}
.ls58{letter-spacing:1.560000px;}
.ls5f{letter-spacing:1.581000px;}
.ls51{letter-spacing:1.620000px;}
.ls8f{letter-spacing:1.632000px;}
.ls3e{letter-spacing:1.680000px;}
.lsaa{letter-spacing:1.683000px;}
.lsa3{letter-spacing:1.734000px;}
.ls5b{letter-spacing:1.740000px;}
.ls11{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.829956px;}
.ls90{letter-spacing:1.836000px;}
.ls4e{letter-spacing:1.860000px;}
.lsa7{letter-spacing:1.887000px;}
.ls4d{letter-spacing:1.920000px;}
.lsa2{letter-spacing:1.938000px;}
.ls1b{letter-spacing:1.980000px;}
.ls60{letter-spacing:2.040000px;}
.ls40{letter-spacing:2.100000px;}
.ls8b{letter-spacing:2.142000px;}
.ls21{letter-spacing:2.160000px;}
.lsab{letter-spacing:2.193000px;}
.ls4b{letter-spacing:2.400000px;}
.ls59{letter-spacing:2.520000px;}
.ls56{letter-spacing:2.640000px;}
.ls15{letter-spacing:3.990000px;}
.ls50{letter-spacing:193.746040px;}
.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;}
}
.wsa2{word-spacing:-51.000000px;}
.ws81{word-spacing:-16.440000px;}
.ws94{word-spacing:-16.200000px;}
.ws37{word-spacing:-16.140000px;}
.ws54{word-spacing:-16.020000px;}
.ws34{word-spacing:-15.990000px;}
.ws95{word-spacing:-15.960000px;}
.ws84{word-spacing:-15.840000px;}
.ws35{word-spacing:-15.660000px;}
.ws82{word-spacing:-15.540000px;}
.ws38{word-spacing:-15.480000px;}
.ws85{word-spacing:-15.420000px;}
.ws33{word-spacing:-15.360000px;}
.ws7{word-spacing:-15.300000px;}
.ws93{word-spacing:-15.180000px;}
.ws36{word-spacing:-15.060000px;}
.ws5e{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.940000px;}
.wsa1{word-spacing:-14.832000px;}
.ws32{word-spacing:-14.760000px;}
.ws31{word-spacing:-14.640000px;}
.ws6{word-spacing:-14.544000px;}
.ws83{word-spacing:-13.860000px;}
.wse0{word-spacing:-13.719000px;}
.wse5{word-spacing:-13.209000px;}
.wsd9{word-spacing:-13.056000px;}
.wsb8{word-spacing:-13.005000px;}
.ws103{word-spacing:-12.954000px;}
.wsf0{word-spacing:-12.801000px;}
.ws61{word-spacing:-12.750000px;}
.wsc7{word-spacing:-12.495000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws107{word-spacing:-12.240000px;}
.wsd2{word-spacing:-11.985000px;}
.wse8{word-spacing:-11.730000px;}
.ws5{word-spacing:-11.520000px;}
.ws9f{word-spacing:-11.373000px;}
.ws5f{word-spacing:-10.500000px;}
.wsa0{word-spacing:-10.047000px;}
.ws1{word-spacing:-9.996000px;}
.ws9{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws68{word-spacing:-7.500000px;}
.ws7b{word-spacing:-6.375000px;}
.ws70{word-spacing:-6.180000px;}
.wsc{word-spacing:-3.990000px;}
.wsa{word-spacing:-1.890000px;}
.wsd5{word-spacing:-1.887000px;}
.ws8c{word-spacing:-1.860000px;}
.wsef{word-spacing:-1.836000px;}
.ws8b{word-spacing:-1.800000px;}
.ws8a{word-spacing:-1.620000px;}
.ws6f{word-spacing:-1.560000px;}
.wsca{word-spacing:-1.530000px;}
.wsd{word-spacing:-1.500000px;}
.wsed{word-spacing:-1.479000px;}
.ws19{word-spacing:-1.440000px;}
.ws41{word-spacing:-1.380000px;}
.wse{word-spacing:-1.320000px;}
.wsab{word-spacing:-1.275000px;}
.ws14{word-spacing:-1.260000px;}
.wsf2{word-spacing:-1.224000px;}
.ws40{word-spacing:-1.200000px;}
.wsc5{word-spacing:-1.173000px;}
.ws75{word-spacing:-1.140000px;}
.ws5a{word-spacing:-1.080000px;}
.wsb5{word-spacing:-1.071000px;}
.ws12{word-spacing:-1.020000px;}
.wsb4{word-spacing:-0.969000px;}
.ws9b{word-spacing:-0.960000px;}
.wsac{word-spacing:-0.918000px;}
.ws6c{word-spacing:-0.900000px;}
.wsd4{word-spacing:-0.867000px;}
.ws1d{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.780000px;}
.wsb6{word-spacing:-0.765000px;}
.ws13{word-spacing:-0.720000px;}
.wsb7{word-spacing:-0.714000px;}
.ws16{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.612000px;}
.ws24{word-spacing:-0.600000px;}
.wsc4{word-spacing:-0.561000px;}
.ws28{word-spacing:-0.540000px;}
.wsd8{word-spacing:-0.510000px;}
.ws58{word-spacing:-0.480000px;}
.wse4{word-spacing:-0.459000px;}
.ws1e{word-spacing:-0.420000px;}
.wsfd{word-spacing:-0.408000px;}
.ws4e{word-spacing:-0.360000px;}
.wsf4{word-spacing:-0.306000px;}
.ws22{word-spacing:-0.300000px;}
.wsb3{word-spacing:-0.264000px;}
.wsba{word-spacing:-0.255000px;}
.ws4c{word-spacing:-0.240000px;}
.ws9d{word-spacing:-0.180000px;}
.ws10{word-spacing:-0.120000px;}
.wscd{word-spacing:-0.102000px;}
.ws3b{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.wsf3{word-spacing:0.051000px;}
.ws2d{word-spacing:0.060000px;}
.wsa6{word-spacing:0.102000px;}
.ws4d{word-spacing:0.120000px;}
.wsc0{word-spacing:0.153000px;}
.ws92{word-spacing:0.180000px;}
.wsea{word-spacing:0.204000px;}
.ws5d{word-spacing:0.255000px;}
.ws2c{word-spacing:0.300000px;}
.wsf8{word-spacing:0.357000px;}
.ws55{word-spacing:0.360000px;}
.ws47{word-spacing:0.420000px;}
.ws21{word-spacing:0.480000px;}
.ws79{word-spacing:0.510000px;}
.wsf{word-spacing:0.540000px;}
.ws89{word-spacing:0.600000px;}
.wsd7{word-spacing:0.612000px;}
.ws9e{word-spacing:0.660000px;}
.wsc2{word-spacing:0.663000px;}
.wsee{word-spacing:0.714000px;}
.ws1a{word-spacing:0.720000px;}
.ws3e{word-spacing:0.780000px;}
.wsa9{word-spacing:0.816000px;}
.ws99{word-spacing:0.840000px;}
.wsff{word-spacing:0.867000px;}
.ws97{word-spacing:0.900000px;}
.wsdf{word-spacing:0.918000px;}
.ws3f{word-spacing:0.960000px;}
.wsaf{word-spacing:0.969000px;}
.ws43{word-spacing:1.020000px;}
.wsb9{word-spacing:1.071000px;}
.wscb{word-spacing:1.122000px;}
.ws39{word-spacing:1.140000px;}
.wsad{word-spacing:1.173000px;}
.ws49{word-spacing:1.200000px;}
.ws76{word-spacing:1.224000px;}
.ws50{word-spacing:1.260000px;}
.wsb1{word-spacing:1.275000px;}
.ws59{word-spacing:1.320000px;}
.wsc6{word-spacing:1.326000px;}
.wsbc{word-spacing:1.377000px;}
.ws42{word-spacing:1.380000px;}
.wsd3{word-spacing:1.428000px;}
.ws56{word-spacing:1.440000px;}
.wsec{word-spacing:1.479000px;}
.ws17{word-spacing:1.500000px;}
.wsae{word-spacing:1.530000px;}
.ws11{word-spacing:1.560000px;}
.ws106{word-spacing:1.632000px;}
.ws2e{word-spacing:1.680000px;}
.wsc3{word-spacing:1.683000px;}
.ws2b{word-spacing:1.740000px;}
.wsc1{word-spacing:1.785000px;}
.ws20{word-spacing:1.800000px;}
.wsf6{word-spacing:1.836000px;}
.ws87{word-spacing:1.860000px;}
.wsce{word-spacing:1.887000px;}
.ws3d{word-spacing:1.920000px;}
.wse2{word-spacing:1.938000px;}
.ws46{word-spacing:1.980000px;}
.wsdb{word-spacing:1.989000px;}
.ws3c{word-spacing:2.040000px;}
.wsdc{word-spacing:2.091000px;}
.ws8e{word-spacing:2.100000px;}
.wse1{word-spacing:2.142000px;}
.ws3a{word-spacing:2.160000px;}
.wsa3{word-spacing:2.220000px;}
.wsbb{word-spacing:2.244000px;}
.ws86{word-spacing:2.280000px;}
.wsa7{word-spacing:2.295000px;}
.ws8f{word-spacing:2.340000px;}
.wsfe{word-spacing:2.346000px;}
.wse9{word-spacing:2.397000px;}
.ws15{word-spacing:2.400000px;}
.wsf5{word-spacing:2.448000px;}
.wscc{word-spacing:2.499000px;}
.ws45{word-spacing:2.520000px;}
.wsb2{word-spacing:2.550000px;}
.ws26{word-spacing:2.580000px;}
.wse6{word-spacing:2.601000px;}
.ws4b{word-spacing:2.640000px;}
.wse3{word-spacing:2.652000px;}
.ws44{word-spacing:2.700000px;}
.wscf{word-spacing:2.703000px;}
.wsc8{word-spacing:2.754000px;}
.ws69{word-spacing:2.760000px;}
.wsf7{word-spacing:2.805000px;}
.ws73{word-spacing:2.820000px;}
.wsda{word-spacing:2.856000px;}
.ws66{word-spacing:2.880000px;}
.ws1f{word-spacing:2.940000px;}
.wsfc{word-spacing:2.958000px;}
.ws23{word-spacing:3.000000px;}
.wsbf{word-spacing:3.009000px;}
.ws1b{word-spacing:3.060000px;}
.wsfa{word-spacing:3.111000px;}
.ws51{word-spacing:3.120000px;}
.wsb0{word-spacing:3.162000px;}
.ws25{word-spacing:3.180000px;}
.ws7a{word-spacing:3.213000px;}
.ws90{word-spacing:3.240000px;}
.ws100{word-spacing:3.264000px;}
.ws72{word-spacing:3.300000px;}
.wsbe{word-spacing:3.315000px;}
.ws53{word-spacing:3.360000px;}
.ws1c{word-spacing:3.420000px;}
.wsaa{word-spacing:3.468000px;}
.ws5b{word-spacing:3.480000px;}
.wsf1{word-spacing:3.519000px;}
.ws6d{word-spacing:3.540000px;}
.ws64{word-spacing:3.660000px;}
.ws108{word-spacing:3.672000px;}
.ws65{word-spacing:3.720000px;}
.wseb{word-spacing:3.774000px;}
.ws18{word-spacing:3.780000px;}
.ws91{word-spacing:3.840000px;}
.ws104{word-spacing:3.876000px;}
.ws96{word-spacing:3.900000px;}
.ws5c{word-spacing:3.960000px;}
.ws101{word-spacing:3.978000px;}
.wsf9{word-spacing:4.029000px;}
.wsde{word-spacing:4.080000px;}
.ws80{word-spacing:4.131000px;}
.wsa8{word-spacing:4.182000px;}
.ws74{word-spacing:4.200000px;}
.ws77{word-spacing:4.233000px;}
.ws4f{word-spacing:4.260000px;}
.wsd1{word-spacing:4.284000px;}
.ws9c{word-spacing:4.380000px;}
.ws8d{word-spacing:4.560000px;}
.wsc9{word-spacing:4.692000px;}
.ws6e{word-spacing:4.740000px;}
.ws6b{word-spacing:4.800000px;}
.ws98{word-spacing:5.160000px;}
.wsbd{word-spacing:5.304000px;}
.ws52{word-spacing:5.340000px;}
.ws71{word-spacing:5.460000px;}
.wsd0{word-spacing:5.610000px;}
.ws9a{word-spacing:5.640000px;}
.wsd6{word-spacing:5.763000px;}
.ws48{word-spacing:5.940000px;}
.wsa4{word-spacing:6.000000px;}
.ws2a{word-spacing:6.060000px;}
.ws6a{word-spacing:6.120000px;}
.ws57{word-spacing:6.180000px;}
.wsfb{word-spacing:6.324000px;}
.ws29{word-spacing:6.720000px;}
.ws102{word-spacing:6.885000px;}
.ws7d{word-spacing:6.900000px;}
.ws78{word-spacing:7.242000px;}
.wse7{word-spacing:7.293000px;}
.ws4a{word-spacing:7.560000px;}
.ws88{word-spacing:8.100000px;}
.ws67{word-spacing:8.160000px;}
.wsa5{word-spacing:8.313000px;}
.ws7c{word-spacing:8.460000px;}
.ws105{word-spacing:8.874000px;}
.wsdd{word-spacing:8.925000px;}
.ws7f{word-spacing:9.480000px;}
.ws7e{word-spacing:11.700000px;}
.ws109{word-spacing:13.515000px;}
.ws10a{word-spacing:17.595000px;}
.ws2f{word-spacing:72.267000px;}
.ws63{word-spacing:78.897000px;}
.ws62{word-spacing:79.203000px;}
.ws60{word-spacing:359.652000px;}
._2c{margin-left:-22.968000px;}
._2d{margin-left:-19.584000px;}
._27{margin-left:-18.534000px;}
._7{margin-left:-16.575000px;}
._29{margin-left:-14.868000px;}
._14{margin-left:-13.620000px;}
._2a{margin-left:-11.682011px;}
._12{margin-left:-10.170000px;}
._f{margin-left:-8.790000px;}
._d{margin-left:-7.542000px;}
._10{margin-left:-6.295229px;}
._c{margin-left:-4.800000px;}
._1{margin-left:-3.187200px;}
._0{margin-left:-1.632000px;}
._2{width:1.014000px;}
._5{width:2.029200px;}
._6{width:4.000800px;}
._15{width:5.814000px;}
._2b{width:7.026000px;}
._b{width:8.455200px;}
._11{width:9.540000px;}
._13{width:11.730000px;}
._26{width:14.010000px;}
._e{width:15.606000px;}
._28{width:16.956000px;}
._8{width:18.360000px;}
._3{width:39.547170px;}
._4{width:41.038237px;}
._9{width:54.621000px;}
._19{width:91.723188px;}
._20{width:93.126000px;}
._16{width:100.459791px;}
._1d{width:117.453000px;}
._1f{width:141.728376px;}
._24{width:142.953000px;}
._1b{width:158.737812px;}
._18{width:173.655000px;}
._1a{width:175.542000px;}
._17{width:178.347000px;}
._1e{width:181.432812px;}
._22{width:207.519000px;}
._23{width:209.788200px;}
._25{width:240.745200px;}
._1c{width:250.410000px;}
._21{width:280.398000px;}
._a{width:1965.795058px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y38{bottom:112.938300px;}
.yb3{bottom:113.515804px;}
.y104{bottom:114.735260px;}
.y110{bottom:114.735306px;}
.y253{bottom:116.611361px;}
.y151{bottom:117.002544px;}
.y190{bottom:120.292823px;}
.y2f{bottom:122.461349px;}
.ye1{bottom:123.079500px;}
.yb2{bottom:128.509804px;}
.y6a{bottom:129.915298px;}
.y252{bottom:131.605361px;}
.y1d1{bottom:131.605544px;}
.y150{bottom:131.996544px;}
.y294{bottom:132.000611px;}
.y9b{bottom:132.165298px;}
.y37{bottom:133.032303px;}
.y103{bottom:133.485260px;}
.y10f{bottom:133.485306px;}
.y18f{bottom:135.286823px;}
.yf0{bottom:136.183800px;}
.ye9{bottom:138.385803px;}
.y2e{bottom:141.211349px;}
.ye0{bottom:141.873000px;}
.y251{bottom:146.599361px;}
.y1d0{bottom:146.599544px;}
.y211{bottom:146.982028px;}
.y14f{bottom:146.990544px;}
.y293{bottom:146.994611px;}
.y69{bottom:148.665298px;}
.y18e{bottom:150.280823px;}
.y36{bottom:150.491553px;}
.y9a{bottom:150.915298px;}
.y102{bottom:152.235260px;}
.y10e{bottom:152.235306px;}
.yef{bottom:154.933800px;}
.ye8{bottom:157.135803px;}
.y2d{bottom:159.961349px;}
.ydf{bottom:160.590000px;}
.y250{bottom:161.593361px;}
.y1cf{bottom:161.593544px;}
.y210{bottom:161.976028px;}
.y14e{bottom:161.984544px;}
.y292{bottom:161.988611px;}
.y18d{bottom:165.274823px;}
.y35{bottom:165.485553px;}
.y99{bottom:169.665298px;}
.y101{bottom:170.985260px;}
.y10d{bottom:170.985306px;}
.yee{bottom:173.683800px;}
.ye7{bottom:175.885803px;}
.y24f{bottom:176.587361px;}
.y1ce{bottom:176.587544px;}
.y20f{bottom:176.970028px;}
.y291{bottom:176.982611px;}
.y2c{bottom:178.711349px;}
.yde{bottom:179.307000px;}
.y18c{bottom:180.268823px;}
.y34{bottom:185.579556px;}
.y68{bottom:186.165298px;}
.y98{bottom:188.415298px;}
.y100{bottom:189.735260px;}
.y10c{bottom:189.735306px;}
.y24e{bottom:191.581361px;}
.y1cd{bottom:191.581544px;}
.y20e{bottom:191.964028px;}
.y290{bottom:191.976611px;}
.y14d{bottom:191.985294px;}
.yed{bottom:192.433800px;}
.ye6{bottom:194.635803px;}
.y18b{bottom:195.262823px;}
.y2b{bottom:197.461349px;}
.ydd{bottom:198.024000px;}
.y24d{bottom:206.575361px;}
.y1cc{bottom:206.575544px;}
.y20d{bottom:206.958028px;}
.y28f{bottom:206.970611px;}
.y97{bottom:207.165298px;}
.yff{bottom:208.485260px;}
.y10b{bottom:208.485306px;}
.y18a{bottom:210.256823px;}
.y33{bottom:210.591300px;}
.yec{bottom:211.183800px;}
.ye5{bottom:213.385803px;}
.y2a{bottom:216.211349px;}
.y24c{bottom:221.569361px;}
.y1cb{bottom:221.569544px;}
.y20c{bottom:221.952028px;}
.y28e{bottom:221.964611px;}
.y14c{bottom:221.985306px;}
.y67{bottom:223.665298px;}
.y189{bottom:225.250823px;}
.y32{bottom:225.585300px;}
.y96{bottom:225.915298px;}
.ydc{bottom:226.112250px;}
.yfe{bottom:227.235260px;}
.y10a{bottom:227.235306px;}
.yeb{bottom:229.933800px;}
.ye4{bottom:232.135803px;}
.y29{bottom:234.961349px;}
.y24b{bottom:236.563361px;}
.y1ca{bottom:236.563544px;}
.y20b{bottom:236.946028px;}
.y28d{bottom:236.958611px;}
.y188{bottom:240.244823px;}
.y95{bottom:244.665298px;}
.yfd{bottom:245.985260px;}
.y109{bottom:245.985306px;}
.y31{bottom:248.127300px;}
.ye3{bottom:250.885803px;}
.y24a{bottom:251.557361px;}
.y1c9{bottom:251.557544px;}
.yd8{bottom:251.608798px;}
.ydb{bottom:251.621548px;}
.y20a{bottom:251.940028px;}
.y28c{bottom:251.952611px;}
.y28{bottom:253.711349px;}
.y187{bottom:255.238823px;}
.y14b{bottom:255.847806px;}
.y30{bottom:263.121300px;}
.y94{bottom:263.415298px;}
.y66{bottom:263.415344px;}
.yfc{bottom:264.735260px;}
.y108{bottom:264.735306px;}
.y249{bottom:266.551361px;}
.y1c8{bottom:266.551544px;}
.yd7{bottom:266.608798px;}
.yda{bottom:266.615548px;}
.y209{bottom:266.934028px;}
.y28b{bottom:266.946611px;}
.yea{bottom:267.433800px;}
.ye2{bottom:269.635803px;}
.y186{bottom:270.232823px;}
.y14a{bottom:270.841806px;}
.y27{bottom:272.461349px;}
.y248{bottom:281.545361px;}
.y1c7{bottom:281.545544px;}
.yd6{bottom:281.602798px;}
.yd9{bottom:281.609548px;}
.y208{bottom:281.928028px;}
.y28a{bottom:281.940611px;}
.y93{bottom:282.165298px;}
.y65{bottom:282.165344px;}
.yfb{bottom:283.485260px;}
.y107{bottom:283.485306px;}
.y185{bottom:285.226823px;}
.y149{bottom:285.835806px;}
.y26{bottom:291.211349px;}
.y247{bottom:296.539361px;}
.y1c6{bottom:296.539544px;}
.y207{bottom:296.922028px;}
.y289{bottom:296.934611px;}
.y184{bottom:300.220823px;}
.y148{bottom:300.829806px;}
.y92{bottom:300.915298px;}
.y64{bottom:300.915344px;}
.yfa{bottom:302.235260px;}
.y106{bottom:302.235306px;}
.y25{bottom:309.961349px;}
.y246{bottom:311.533361px;}
.y1c5{bottom:311.533544px;}
.y206{bottom:311.916028px;}
.y288{bottom:311.928611px;}
.y183{bottom:315.214823px;}
.y147{bottom:315.823806px;}
.y63{bottom:319.665344px;}
.yf9{bottom:320.985260px;}
.y105{bottom:320.985306px;}
.y245{bottom:326.527361px;}
.y1c4{bottom:326.527544px;}
.y205{bottom:326.910028px;}
.y287{bottom:326.922611px;}
.y23{bottom:328.711349px;}
.y182{bottom:330.208823px;}
.y146{bottom:330.817806px;}
.y91{bottom:338.415298px;}
.y62{bottom:338.415344px;}
.yf2{bottom:339.316799px;}
.yf8{bottom:339.735260px;}
.yc4{bottom:339.735306px;}
.y244{bottom:341.521361px;}
.y1c3{bottom:341.521544px;}
.y204{bottom:341.904028px;}
.y286{bottom:341.916611px;}
.y181{bottom:345.202823px;}
.y145{bottom:345.811806px;}
.y22{bottom:347.461349px;}
.yf1{bottom:354.310799px;}
.y243{bottom:356.515361px;}
.y1c2{bottom:356.515544px;}
.y203{bottom:356.898028px;}
.y285{bottom:356.910611px;}
.y61{bottom:357.165344px;}
.yf7{bottom:358.485260px;}
.yc3{bottom:358.485306px;}
.y180{bottom:360.196823px;}
.y144{bottom:360.805806px;}
.y21{bottom:366.211349px;}
.y242{bottom:371.509361px;}
.y1c1{bottom:371.509544px;}
.y202{bottom:371.892028px;}
.y284{bottom:371.904611px;}
.y17f{bottom:375.190823px;}
.y143{bottom:375.799806px;}
.y60{bottom:375.915344px;}
.yf6{bottom:377.235260px;}
.yd5{bottom:377.235306px;}
.y20{bottom:384.961349px;}
.y241{bottom:386.503361px;}
.y1c0{bottom:386.503544px;}
.y201{bottom:386.886028px;}
.y283{bottom:386.898611px;}
.y17e{bottom:390.184823px;}
.y90{bottom:394.665321px;}
.y5f{bottom:394.665344px;}
.yf5{bottom:395.985260px;}
.yc2{bottom:395.985306px;}
.y240{bottom:401.497361px;}
.y1bf{bottom:401.497544px;}
.y200{bottom:401.880028px;}
.y282{bottom:401.892611px;}
.y1f{bottom:403.711349px;}
.y17d{bottom:405.178823px;}
.y142{bottom:405.800556px;}
.y8f{bottom:413.415321px;}
.y5e{bottom:413.415344px;}
.yf4{bottom:414.735260px;}
.yd4{bottom:414.735306px;}
.y23f{bottom:416.491361px;}
.y1be{bottom:416.491544px;}
.y1ff{bottom:416.874028px;}
.y281{bottom:416.886611px;}
.y17c{bottom:420.172823px;}
.y141{bottom:420.794556px;}
.y1e{bottom:422.461349px;}
.y23e{bottom:431.485361px;}
.y1bd{bottom:431.485544px;}
.y1fe{bottom:431.868028px;}
.y280{bottom:431.880611px;}
.y8e{bottom:432.165321px;}
.y5d{bottom:432.165344px;}
.yf3{bottom:433.485260px;}
.yd3{bottom:433.485306px;}
.y17b{bottom:435.166823px;}
.y140{bottom:435.788556px;}
.y1d{bottom:441.211349px;}
.y23d{bottom:446.479361px;}
.y1bc{bottom:446.479544px;}
.y1fd{bottom:446.862028px;}
.y27f{bottom:446.874611px;}
.y17a{bottom:450.160823px;}
.y13f{bottom:450.782556px;}
.y8d{bottom:450.915321px;}
.y5c{bottom:450.915344px;}
.yc1{bottom:452.235260px;}
.yd2{bottom:452.235306px;}
.y1c{bottom:459.961349px;}
.y23c{bottom:461.473361px;}
.y1bb{bottom:461.473544px;}
.y1fc{bottom:461.856028px;}
.y27e{bottom:461.868611px;}
.y179{bottom:465.154823px;}
.y13e{bottom:465.776556px;}
.y8c{bottom:469.665321px;}
.y5b{bottom:469.665344px;}
.yc0{bottom:470.985260px;}
.yd1{bottom:470.985306px;}
.y23b{bottom:476.467361px;}
.y1ba{bottom:476.467544px;}
.y1fb{bottom:476.850028px;}
.y27d{bottom:476.862611px;}
.y1b{bottom:478.711349px;}
.y178{bottom:480.148823px;}
.y8b{bottom:488.415321px;}
.y5a{bottom:488.415344px;}
.ybf{bottom:489.735260px;}
.yd0{bottom:489.735306px;}
.y23a{bottom:491.461361px;}
.y1b9{bottom:491.461544px;}
.y1fa{bottom:491.844028px;}
.y27c{bottom:491.856611px;}
.y177{bottom:495.142823px;}
.y13d{bottom:495.777306px;}
.y1a{bottom:497.461349px;}
.y239{bottom:506.455361px;}
.y1b8{bottom:506.455544px;}
.y1f9{bottom:506.838028px;}
.y27b{bottom:506.850611px;}
.y8a{bottom:507.165321px;}
.y59{bottom:507.165344px;}
.ybe{bottom:508.485260px;}
.ycf{bottom:508.485306px;}
.y176{bottom:510.136823px;}
.y13c{bottom:510.771306px;}
.y19{bottom:516.211349px;}
.y238{bottom:521.449361px;}
.y1b7{bottom:521.449544px;}
.y1f8{bottom:521.832028px;}
.y27a{bottom:521.844611px;}
.y175{bottom:525.130823px;}
.y13b{bottom:525.765306px;}
.y89{bottom:525.915321px;}
.y58{bottom:525.915344px;}
.ybd{bottom:527.235260px;}
.yce{bottom:527.235306px;}
.y18{bottom:534.961349px;}
.y237{bottom:536.443361px;}
.y1b6{bottom:536.443544px;}
.y1f7{bottom:536.826028px;}
.y279{bottom:536.838611px;}
.y174{bottom:540.124823px;}
.y13a{bottom:540.759306px;}
.y88{bottom:544.665321px;}
.y57{bottom:544.665344px;}
.ybc{bottom:545.985260px;}
.ycd{bottom:545.985306px;}
.y236{bottom:551.437361px;}
.y1b5{bottom:551.437544px;}
.y1f6{bottom:551.820028px;}
.y278{bottom:551.832611px;}
.y17{bottom:553.711349px;}
.y173{bottom:555.118823px;}
.y139{bottom:555.753306px;}
.y87{bottom:563.415321px;}
.y56{bottom:563.415344px;}
.ybb{bottom:564.735260px;}
.ycc{bottom:564.735306px;}
.y235{bottom:566.431361px;}
.y1b4{bottom:566.431544px;}
.y1f5{bottom:566.814028px;}
.y277{bottom:566.826611px;}
.y172{bottom:570.112823px;}
.y138{bottom:570.747306px;}
.y24{bottom:572.461349px;}
.y234{bottom:581.425361px;}
.y1b3{bottom:581.425544px;}
.y1f4{bottom:581.808028px;}
.y276{bottom:581.820611px;}
.y86{bottom:582.165321px;}
.y55{bottom:582.165344px;}
.yba{bottom:583.485260px;}
.ycb{bottom:583.485306px;}
.y171{bottom:585.106823px;}
.y137{bottom:585.741306px;}
.y16{bottom:591.211349px;}
.y233{bottom:596.419361px;}
.y1b2{bottom:596.419544px;}
.y1f3{bottom:596.802028px;}
.y275{bottom:596.814611px;}
.y170{bottom:600.100823px;}
.y136{bottom:600.735306px;}
.y85{bottom:600.915321px;}
.y54{bottom:600.915344px;}
.yb9{bottom:602.235260px;}
.yca{bottom:602.235306px;}
.y232{bottom:611.413361px;}
.y1b1{bottom:611.413544px;}
.y1f2{bottom:611.796028px;}
.y274{bottom:611.808611px;}
.y16f{bottom:615.094823px;}
.y84{bottom:619.665321px;}
.y53{bottom:619.665344px;}
.yb8{bottom:620.985260px;}
.yc9{bottom:620.985306px;}
.y231{bottom:626.407361px;}
.y1b0{bottom:626.407544px;}
.y1f1{bottom:626.790028px;}
.y273{bottom:626.802611px;}
.y15{bottom:628.711395px;}
.y16e{bottom:630.088823px;}
.y135{bottom:630.735260px;}
.y83{bottom:638.415321px;}
.y52{bottom:638.415344px;}
.yb7{bottom:639.735260px;}
.yc8{bottom:639.735306px;}
.y230{bottom:641.401361px;}
.y1af{bottom:641.401544px;}
.y1f0{bottom:641.784028px;}
.y272{bottom:641.796611px;}
.y16d{bottom:645.082823px;}
.y134{bottom:649.485260px;}
.y22f{bottom:656.395361px;}
.y1ae{bottom:656.395544px;}
.y1ef{bottom:656.778028px;}
.y271{bottom:656.790611px;}
.y82{bottom:657.165321px;}
.y51{bottom:657.165344px;}
.yb6{bottom:658.485260px;}
.yc7{bottom:658.485306px;}
.y16c{bottom:660.076823px;}
.y14{bottom:666.211395px;}
.y133{bottom:668.235260px;}
.y22e{bottom:671.389361px;}
.y1ad{bottom:671.389544px;}
.y1ee{bottom:671.772028px;}
.y270{bottom:671.784611px;}
.y16b{bottom:675.070823px;}
.y81{bottom:675.915321px;}
.y50{bottom:675.915344px;}
.yb5{bottom:677.235260px;}
.y125{bottom:677.235306px;}
.y13{bottom:684.961395px;}
.y22d{bottom:686.383361px;}
.y1ac{bottom:686.383544px;}
.y1ed{bottom:686.766028px;}
.y26f{bottom:686.778611px;}
.y132{bottom:686.985260px;}
.y16a{bottom:690.064823px;}
.y80{bottom:694.665321px;}
.y4f{bottom:694.665344px;}
.yb4{bottom:695.985260px;}
.y124{bottom:695.985306px;}
.y22c{bottom:701.377361px;}
.y1ab{bottom:701.377544px;}
.y2ae{bottom:701.454045px;}
.y1ec{bottom:701.760028px;}
.y26e{bottom:701.772611px;}
.y12{bottom:703.711395px;}
.y169{bottom:705.058823px;}
.y131{bottom:705.735260px;}
.y7f{bottom:713.415321px;}
.y4e{bottom:713.415344px;}
.yaf{bottom:714.735260px;}
.y123{bottom:714.735306px;}
.y22b{bottom:716.371361px;}
.y1aa{bottom:716.371544px;}
.y2ad{bottom:716.448045px;}
.y1eb{bottom:716.754028px;}
.y26d{bottom:716.766611px;}
.y168{bottom:720.052823px;}
.y11{bottom:722.461395px;}
.y130{bottom:724.485260px;}
.y22a{bottom:731.365361px;}
.y1a9{bottom:731.365544px;}
.y1ea{bottom:731.748028px;}
.y26c{bottom:731.760611px;}
.y7e{bottom:732.165321px;}
.y4d{bottom:732.165344px;}
.yae{bottom:733.485260px;}
.y122{bottom:733.485306px;}
.y167{bottom:735.046823px;}
.y10{bottom:741.211395px;}
.y12f{bottom:743.235260px;}
.y229{bottom:746.359361px;}
.y1a8{bottom:746.359544px;}
.y2ac{bottom:746.538044px;}
.y1e9{bottom:746.742028px;}
.y26b{bottom:746.754611px;}
.y166{bottom:750.040823px;}
.y7d{bottom:750.915321px;}
.y4c{bottom:750.915344px;}
.yad{bottom:752.235260px;}
.y121{bottom:752.235306px;}
.yf{bottom:759.961395px;}
.y228{bottom:761.353361px;}
.y1a7{bottom:761.353544px;}
.y2ab{bottom:761.532044px;}
.y1e8{bottom:761.736028px;}
.y26a{bottom:761.748611px;}
.y12e{bottom:761.985260px;}
.y165{bottom:765.034823px;}
.y7c{bottom:769.665321px;}
.y4b{bottom:769.665344px;}
.yac{bottom:770.985260px;}
.y120{bottom:770.985306px;}
.y227{bottom:776.347361px;}
.y1a6{bottom:776.347544px;}
.y2aa{bottom:776.526044px;}
.y1e7{bottom:776.730028px;}
.y269{bottom:776.742611px;}
.ye{bottom:778.711395px;}
.y164{bottom:780.028823px;}
.y12d{bottom:780.735260px;}
.y7b{bottom:788.415321px;}
.y4a{bottom:788.415344px;}
.yab{bottom:789.735260px;}
.y11f{bottom:789.735306px;}
.y226{bottom:791.341361px;}
.y1a5{bottom:791.341544px;}
.y2a9{bottom:791.520044px;}
.y1e6{bottom:791.724028px;}
.y268{bottom:791.736611px;}
.y163{bottom:795.022823px;}
.yd{bottom:797.461395px;}
.y12c{bottom:799.485260px;}
.y225{bottom:806.335361px;}
.y1a4{bottom:806.335544px;}
.y2a8{bottom:806.514044px;}
.y1e5{bottom:806.718028px;}
.y267{bottom:806.730611px;}
.y7a{bottom:807.165321px;}
.y49{bottom:807.165344px;}
.yaa{bottom:808.485260px;}
.y11e{bottom:808.485306px;}
.y162{bottom:810.016823px;}
.yc{bottom:816.211395px;}
.y12b{bottom:818.235260px;}
.y224{bottom:821.329361px;}
.y1a3{bottom:821.329544px;}
.y2a7{bottom:821.508044px;}
.y1e4{bottom:821.712028px;}
.y266{bottom:821.724611px;}
.y161{bottom:825.010823px;}
.y79{bottom:825.915321px;}
.y48{bottom:825.915344px;}
.ya9{bottom:827.235260px;}
.y11d{bottom:827.235306px;}
.yb{bottom:834.961395px;}
.y223{bottom:836.323361px;}
.y1a2{bottom:836.323544px;}
.y2a6{bottom:836.502044px;}
.y1e3{bottom:836.706028px;}
.y265{bottom:836.718611px;}
.y12a{bottom:836.985260px;}
.y160{bottom:840.004823px;}
.y78{bottom:844.665321px;}
.y47{bottom:844.665344px;}
.ya8{bottom:845.985260px;}
.y11c{bottom:845.985306px;}
.y222{bottom:851.317361px;}
.y1a1{bottom:851.317544px;}
.y2a5{bottom:851.496044px;}
.y1e2{bottom:851.700028px;}
.y264{bottom:851.712611px;}
.y15f{bottom:854.998823px;}
.y129{bottom:855.735260px;}
.y77{bottom:863.415321px;}
.y46{bottom:863.415344px;}
.ya7{bottom:864.735260px;}
.y11b{bottom:864.735306px;}
.y221{bottom:866.311361px;}
.y1a0{bottom:866.311544px;}
.y2a4{bottom:866.490044px;}
.y1e1{bottom:866.694028px;}
.y263{bottom:866.706611px;}
.y15e{bottom:869.992823px;}
.y128{bottom:874.485260px;}
.ya{bottom:879.144153px;}
.y220{bottom:881.305361px;}
.y19f{bottom:881.305544px;}
.y2a3{bottom:881.484044px;}
.y1e0{bottom:881.688028px;}
.y262{bottom:881.700611px;}
.y76{bottom:882.165321px;}
.y45{bottom:882.165344px;}
.ya6{bottom:883.485260px;}
.y11a{bottom:883.485306px;}
.y15d{bottom:884.986823px;}
.y127{bottom:893.235260px;}
.y9{bottom:894.138153px;}
.y21f{bottom:896.299361px;}
.y19e{bottom:896.299544px;}
.y2a2{bottom:896.478044px;}
.y1df{bottom:896.682028px;}
.y261{bottom:896.694611px;}
.y15c{bottom:899.980823px;}
.y75{bottom:900.915321px;}
.y44{bottom:900.915344px;}
.ya5{bottom:902.235260px;}
.y119{bottom:902.235306px;}
.y21e{bottom:911.293361px;}
.y19d{bottom:911.293544px;}
.y2a1{bottom:911.472044px;}
.y1de{bottom:911.676028px;}
.y260{bottom:911.688611px;}
.y15b{bottom:914.974823px;}
.y74{bottom:919.665321px;}
.y43{bottom:919.665344px;}
.ya4{bottom:920.985260px;}
.y118{bottom:920.985306px;}
.y21d{bottom:926.287361px;}
.y19c{bottom:926.287544px;}
.y2a0{bottom:926.466044px;}
.y1dd{bottom:926.670028px;}
.y25f{bottom:926.682611px;}
.y126{bottom:930.735260px;}
.y8{bottom:936.738190px;}
.y73{bottom:938.415321px;}
.y42{bottom:938.415344px;}
.ya3{bottom:939.735260px;}
.y117{bottom:939.735306px;}
.y21c{bottom:941.281361px;}
.y19b{bottom:941.281544px;}
.y29f{bottom:941.460044px;}
.y1dc{bottom:941.664028px;}
.y25e{bottom:941.676611px;}
.y15a{bottom:948.724823px;}
.y21b{bottom:956.275361px;}
.y19a{bottom:956.275544px;}
.y29e{bottom:956.454044px;}
.y1db{bottom:956.658028px;}
.y25d{bottom:956.670611px;}
.y72{bottom:957.165321px;}
.y41{bottom:957.165344px;}
.ya2{bottom:958.485260px;}
.y116{bottom:958.485306px;}
.y21a{bottom:971.269361px;}
.y199{bottom:971.269544px;}
.y29d{bottom:971.448044px;}
.y1da{bottom:971.652028px;}
.y25c{bottom:971.664611px;}
.y71{bottom:975.915321px;}
.y40{bottom:975.915344px;}
.ya1{bottom:977.235260px;}
.y115{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y219{bottom:986.263361px;}
.y198{bottom:986.263544px;}
.y159{bottom:986.284834px;}
.y29c{bottom:986.442044px;}
.y1d9{bottom:986.646028px;}
.y25b{bottom:986.658611px;}
.y70{bottom:994.665321px;}
.y3f{bottom:994.665344px;}
.yb1{bottom:995.985260px;}
.y114{bottom:995.985306px;}
.y218{bottom:1001.257361px;}
.y197{bottom:1001.257544px;}
.y158{bottom:1001.278834px;}
.y29b{bottom:1001.436044px;}
.y1d8{bottom:1001.640028px;}
.y25a{bottom:1001.652611px;}
.y6{bottom:1008.424622px;}
.y6f{bottom:1013.415321px;}
.y3e{bottom:1013.415344px;}
.ya0{bottom:1014.735260px;}
.y113{bottom:1014.735306px;}
.y217{bottom:1016.251361px;}
.y196{bottom:1016.251544px;}
.y157{bottom:1016.272834px;}
.y29a{bottom:1016.430044px;}
.y1d7{bottom:1016.634028px;}
.y259{bottom:1016.646611px;}
.y216{bottom:1031.245361px;}
.y195{bottom:1031.245544px;}
.y156{bottom:1031.266834px;}
.y299{bottom:1031.424044px;}
.y1d6{bottom:1031.628028px;}
.y258{bottom:1031.640611px;}
.y6e{bottom:1032.165321px;}
.y3d{bottom:1032.165344px;}
.yb0{bottom:1033.485260px;}
.y112{bottom:1033.485306px;}
.y215{bottom:1046.239361px;}
.y194{bottom:1046.239544px;}
.y155{bottom:1046.260834px;}
.y298{bottom:1046.418044px;}
.y1d5{bottom:1046.622028px;}
.y257{bottom:1046.634611px;}
.y6d{bottom:1050.915321px;}
.y3c{bottom:1050.915344px;}
.y9f{bottom:1052.235260px;}
.y111{bottom:1052.235306px;}
.y214{bottom:1061.233361px;}
.y193{bottom:1061.233544px;}
.y154{bottom:1061.254834px;}
.y297{bottom:1061.412044px;}
.y1d4{bottom:1061.616028px;}
.y256{bottom:1061.628611px;}
.y6c{bottom:1069.665321px;}
.y3b{bottom:1069.665344px;}
.y9e{bottom:1070.985260px;}
.yc6{bottom:1070.985306px;}
.y5{bottom:1076.132080px;}
.y213{bottom:1076.227361px;}
.y192{bottom:1076.227544px;}
.y153{bottom:1076.248834px;}
.y296{bottom:1076.406044px;}
.y1d3{bottom:1076.610028px;}
.y255{bottom:1076.622611px;}
.y6b{bottom:1088.415321px;}
.y3a{bottom:1088.415344px;}
.y9d{bottom:1089.735260px;}
.yc5{bottom:1089.735306px;}
.y212{bottom:1091.221361px;}
.y191{bottom:1091.221544px;}
.y152{bottom:1091.242834px;}
.y295{bottom:1091.400044px;}
.y1d2{bottom:1091.604028px;}
.y254{bottom:1091.616611px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y39{bottom:1127.482361px;}
.y9c{bottom:1127.482544px;}
.he{height:25.204199px;}
.h2{height:33.840000px;}
.hd{height:36.006000px;}
.hc{height:36.855469px;}
.h9{height:42.360000px;}
.h4{height:44.676000px;}
.h12{height:45.186000px;}
.hf{height:50.439000px;}
.h13{height:52.173000px;}
.ha{height:53.160000px;}
.h15{height:53.652000px;}
.h16{height:53.652183px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h14{height:58.063467px;}
.h11{height:59.004000px;}
.h8{height:59.340000px;}
.h10{height:61.380000px;}
.h7{height:64.866000px;}
.hb{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545401px;}
.x7{left:97.796100px;}
.xc{left:102.047545px;}
.x6{left:459.200402px;}
.x5{left:476.210402px;}
.xb{left:484.725290px;}
.xd{left:723.890717px;}
.x1{left:728.220612px;}
.xa{left:729.946793px;}
.x2{left:755.489868px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.133341pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.111967pt;}
.v1{vertical-align:21.333333pt;}
.ls33{letter-spacing:-2.133333pt;}
.ls38{letter-spacing:-1.973333pt;}
.ls36{letter-spacing:-1.920000pt;}
.ls9e{letter-spacing:-1.768000pt;}
.ls37{letter-spacing:-1.760000pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls2c{letter-spacing:-1.546667pt;}
.ls31{letter-spacing:-1.493333pt;}
.ls2d{letter-spacing:-1.226667pt;}
.ls97{letter-spacing:-1.178667pt;}
.ls2e{letter-spacing:-1.120000pt;}
.ls99{letter-spacing:-1.088000pt;}
.ls34{letter-spacing:-1.066667pt;}
.ls9b{letter-spacing:-1.042667pt;}
.ls27{letter-spacing:-1.013333pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls30{letter-spacing:-0.906667pt;}
.ls96{letter-spacing:-0.861333pt;}
.ls2b{letter-spacing:-0.853333pt;}
.ls95{letter-spacing:-0.816000pt;}
.ls2f{letter-spacing:-0.746667pt;}
.ls2a{letter-spacing:-0.693333pt;}
.ls98{letter-spacing:-0.680000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls83{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.533333pt;}
.ls9c{letter-spacing:-0.498667pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls81{letter-spacing:-0.453333pt;}
.ls3a{letter-spacing:-0.426667pt;}
.ls9d{letter-spacing:-0.408000pt;}
.ls28{letter-spacing:-0.373333pt;}
.lsa9{letter-spacing:-0.362667pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls7b{letter-spacing:-0.317333pt;}
.ls7c{letter-spacing:-0.272000pt;}
.ls3c{letter-spacing:-0.266667pt;}
.ls7d{letter-spacing:-0.226667pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls7e{letter-spacing:-0.181333pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.136000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls82{letter-spacing:-0.090667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls9a{letter-spacing:-0.045333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.008519pt;}
.ls20{letter-spacing:0.026667pt;}
.ls66{letter-spacing:0.045333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls85{letter-spacing:0.068000pt;}
.ls6c{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls68{letter-spacing:0.113333pt;}
.ls5c{letter-spacing:0.133333pt;}
.ls72{letter-spacing:0.136000pt;}
.lsa1{letter-spacing:0.158667pt;}
.ls12{letter-spacing:0.158926pt;}
.lsf{letter-spacing:0.160000pt;}
.ls6e{letter-spacing:0.181333pt;}
.ls54{letter-spacing:0.186667pt;}
.ls48{letter-spacing:0.186686pt;}
.ls0{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.226667pt;}
.ls69{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls94{letter-spacing:0.249333pt;}
.ls6d{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.256479pt;}
.ls2{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.272000pt;}
.ls75{letter-spacing:0.294667pt;}
.ls6a{letter-spacing:0.317333pt;}
.ls1c{letter-spacing:0.320000pt;}
.lsa0{letter-spacing:0.340000pt;}
.ls9{letter-spacing:0.346667pt;}
.ls6b{letter-spacing:0.362667pt;}
.ls9f{letter-spacing:0.367200pt;}
.ls8{letter-spacing:0.373333pt;}
.ls73{letter-spacing:0.408000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls64{letter-spacing:0.453333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls79{letter-spacing:0.494133pt;}
.ls70{letter-spacing:0.498667pt;}
.ls84{letter-spacing:0.521333pt;}
.ls42{letter-spacing:0.525879pt;}
.lsd{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.544000pt;}
.ls46{letter-spacing:0.560000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls65{letter-spacing:0.589333pt;}
.lsa8{letter-spacing:0.612000pt;}
.ls1f{letter-spacing:0.613333pt;}
.ls76{letter-spacing:0.634667pt;}
.ls3d{letter-spacing:0.640000pt;}
.ls74{letter-spacing:0.657333pt;}
.ls91{letter-spacing:0.666386pt;}
.ls26{letter-spacing:0.666667pt;}
.ls86{letter-spacing:0.680000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls92{letter-spacing:0.711714pt;}
.ls61{letter-spacing:0.725333pt;}
.ls5d{letter-spacing:0.738688pt;}
.ls41{letter-spacing:0.744062pt;}
.ls7{letter-spacing:0.746667pt;}
.lsa6{letter-spacing:0.748000pt;}
.ls80{letter-spacing:0.770667pt;}
.ls5a{letter-spacing:0.773333pt;}
.ls93{letter-spacing:0.793333pt;}
.ls6{letter-spacing:0.800000pt;}
.ls4a{letter-spacing:0.800944pt;}
.ls87{letter-spacing:0.816000pt;}
.ls5e{letter-spacing:0.826667pt;}
.ls43{letter-spacing:0.842667pt;}
.ls10{letter-spacing:0.853333pt;}
.ls71{letter-spacing:0.861333pt;}
.ls1d{letter-spacing:0.880000pt;}
.lsa{letter-spacing:0.906667pt;}
.ls53{letter-spacing:0.915202pt;}
.lsa4{letter-spacing:0.929333pt;}
.lsb{letter-spacing:0.933333pt;}
.ls63{letter-spacing:0.952000pt;}
.lse{letter-spacing:0.960000pt;}
.ls67{letter-spacing:0.974667pt;}
.ls8d{letter-spacing:0.997333pt;}
.ls22{letter-spacing:1.013333pt;}
.ls8c{letter-spacing:1.042667pt;}
.ls3f{letter-spacing:1.066667pt;}
.ls62{letter-spacing:1.088000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls44{letter-spacing:1.173333pt;}
.ls7a{letter-spacing:1.178667pt;}
.ls49{letter-spacing:1.178691pt;}
.lsa5{letter-spacing:1.224000pt;}
.ls45{letter-spacing:1.226667pt;}
.ls6f{letter-spacing:1.269333pt;}
.ls89{letter-spacing:1.278400pt;}
.ls55{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.293312pt;}
.ls8a{letter-spacing:1.301058pt;}
.ls4c{letter-spacing:1.306667pt;}
.ls8e{letter-spacing:1.314667pt;}
.ls24{letter-spacing:1.333333pt;}
.ls88{letter-spacing:1.360000pt;}
.ls58{letter-spacing:1.386667pt;}
.ls5f{letter-spacing:1.405333pt;}
.ls51{letter-spacing:1.440000pt;}
.ls8f{letter-spacing:1.450667pt;}
.ls3e{letter-spacing:1.493333pt;}
.lsaa{letter-spacing:1.496000pt;}
.lsa3{letter-spacing:1.541333pt;}
.ls5b{letter-spacing:1.546667pt;}
.ls11{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.626628pt;}
.ls90{letter-spacing:1.632000pt;}
.ls4e{letter-spacing:1.653333pt;}
.lsa7{letter-spacing:1.677333pt;}
.ls4d{letter-spacing:1.706667pt;}
.lsa2{letter-spacing:1.722667pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls60{letter-spacing:1.813333pt;}
.ls40{letter-spacing:1.866667pt;}
.ls8b{letter-spacing:1.904000pt;}
.ls21{letter-spacing:1.920000pt;}
.lsab{letter-spacing:1.949333pt;}
.ls4b{letter-spacing:2.133333pt;}
.ls59{letter-spacing:2.240000pt;}
.ls56{letter-spacing:2.346667pt;}
.ls15{letter-spacing:3.546667pt;}
.ls50{letter-spacing:172.218702pt;}
.wsa2{word-spacing:-45.333333pt;}
.ws81{word-spacing:-14.613333pt;}
.ws94{word-spacing:-14.400000pt;}
.ws37{word-spacing:-14.346667pt;}
.ws54{word-spacing:-14.240000pt;}
.ws34{word-spacing:-14.213333pt;}
.ws95{word-spacing:-14.186667pt;}
.ws84{word-spacing:-14.080000pt;}
.ws35{word-spacing:-13.920000pt;}
.ws82{word-spacing:-13.813333pt;}
.ws38{word-spacing:-13.760000pt;}
.ws85{word-spacing:-13.706667pt;}
.ws33{word-spacing:-13.653333pt;}
.ws7{word-spacing:-13.600000pt;}
.ws93{word-spacing:-13.493333pt;}
.ws36{word-spacing:-13.386667pt;}
.ws5e{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa1{word-spacing:-13.184000pt;}
.ws32{word-spacing:-13.120000pt;}
.ws31{word-spacing:-13.013333pt;}
.ws6{word-spacing:-12.928000pt;}
.ws83{word-spacing:-12.320000pt;}
.wse0{word-spacing:-12.194667pt;}
.wse5{word-spacing:-11.741333pt;}
.wsd9{word-spacing:-11.605333pt;}
.wsb8{word-spacing:-11.560000pt;}
.ws103{word-spacing:-11.514667pt;}
.wsf0{word-spacing:-11.378667pt;}
.ws61{word-spacing:-11.333333pt;}
.wsc7{word-spacing:-11.106667pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws107{word-spacing:-10.880000pt;}
.wsd2{word-spacing:-10.653333pt;}
.wse8{word-spacing:-10.426667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws9f{word-spacing:-10.109333pt;}
.ws5f{word-spacing:-9.333333pt;}
.wsa0{word-spacing:-8.930667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws9{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws68{word-spacing:-6.666667pt;}
.ws7b{word-spacing:-5.666667pt;}
.ws70{word-spacing:-5.493333pt;}
.wsc{word-spacing:-3.546667pt;}
.wsa{word-spacing:-1.680000pt;}
.wsd5{word-spacing:-1.677333pt;}
.ws8c{word-spacing:-1.653333pt;}
.wsef{word-spacing:-1.632000pt;}
.ws8b{word-spacing:-1.600000pt;}
.ws8a{word-spacing:-1.440000pt;}
.ws6f{word-spacing:-1.386667pt;}
.wsca{word-spacing:-1.360000pt;}
.wsd{word-spacing:-1.333333pt;}
.wsed{word-spacing:-1.314667pt;}
.ws19{word-spacing:-1.280000pt;}
.ws41{word-spacing:-1.226667pt;}
.wse{word-spacing:-1.173333pt;}
.wsab{word-spacing:-1.133333pt;}
.ws14{word-spacing:-1.120000pt;}
.wsf2{word-spacing:-1.088000pt;}
.ws40{word-spacing:-1.066667pt;}
.wsc5{word-spacing:-1.042667pt;}
.ws75{word-spacing:-1.013333pt;}
.ws5a{word-spacing:-0.960000pt;}
.wsb5{word-spacing:-0.952000pt;}
.ws12{word-spacing:-0.906667pt;}
.wsb4{word-spacing:-0.861333pt;}
.ws9b{word-spacing:-0.853333pt;}
.wsac{word-spacing:-0.816000pt;}
.ws6c{word-spacing:-0.800000pt;}
.wsd4{word-spacing:-0.770667pt;}
.ws1d{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.693333pt;}
.wsb6{word-spacing:-0.680000pt;}
.ws13{word-spacing:-0.640000pt;}
.wsb7{word-spacing:-0.634667pt;}
.ws16{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.544000pt;}
.ws24{word-spacing:-0.533333pt;}
.wsc4{word-spacing:-0.498667pt;}
.ws28{word-spacing:-0.480000pt;}
.wsd8{word-spacing:-0.453333pt;}
.ws58{word-spacing:-0.426667pt;}
.wse4{word-spacing:-0.408000pt;}
.ws1e{word-spacing:-0.373333pt;}
.wsfd{word-spacing:-0.362667pt;}
.ws4e{word-spacing:-0.320000pt;}
.wsf4{word-spacing:-0.272000pt;}
.ws22{word-spacing:-0.266667pt;}
.wsb3{word-spacing:-0.234667pt;}
.wsba{word-spacing:-0.226667pt;}
.ws4c{word-spacing:-0.213333pt;}
.ws9d{word-spacing:-0.160000pt;}
.ws10{word-spacing:-0.106667pt;}
.wscd{word-spacing:-0.090667pt;}
.ws3b{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.wsf3{word-spacing:0.045333pt;}
.ws2d{word-spacing:0.053333pt;}
.wsa6{word-spacing:0.090667pt;}
.ws4d{word-spacing:0.106667pt;}
.wsc0{word-spacing:0.136000pt;}
.ws92{word-spacing:0.160000pt;}
.wsea{word-spacing:0.181333pt;}
.ws5d{word-spacing:0.226667pt;}
.ws2c{word-spacing:0.266667pt;}
.wsf8{word-spacing:0.317333pt;}
.ws55{word-spacing:0.320000pt;}
.ws47{word-spacing:0.373333pt;}
.ws21{word-spacing:0.426667pt;}
.ws79{word-spacing:0.453333pt;}
.wsf{word-spacing:0.480000pt;}
.ws89{word-spacing:0.533333pt;}
.wsd7{word-spacing:0.544000pt;}
.ws9e{word-spacing:0.586667pt;}
.wsc2{word-spacing:0.589333pt;}
.wsee{word-spacing:0.634667pt;}
.ws1a{word-spacing:0.640000pt;}
.ws3e{word-spacing:0.693333pt;}
.wsa9{word-spacing:0.725333pt;}
.ws99{word-spacing:0.746667pt;}
.wsff{word-spacing:0.770667pt;}
.ws97{word-spacing:0.800000pt;}
.wsdf{word-spacing:0.816000pt;}
.ws3f{word-spacing:0.853333pt;}
.wsaf{word-spacing:0.861333pt;}
.ws43{word-spacing:0.906667pt;}
.wsb9{word-spacing:0.952000pt;}
.wscb{word-spacing:0.997333pt;}
.ws39{word-spacing:1.013333pt;}
.wsad{word-spacing:1.042667pt;}
.ws49{word-spacing:1.066667pt;}
.ws76{word-spacing:1.088000pt;}
.ws50{word-spacing:1.120000pt;}
.wsb1{word-spacing:1.133333pt;}
.ws59{word-spacing:1.173333pt;}
.wsc6{word-spacing:1.178667pt;}
.wsbc{word-spacing:1.224000pt;}
.ws42{word-spacing:1.226667pt;}
.wsd3{word-spacing:1.269333pt;}
.ws56{word-spacing:1.280000pt;}
.wsec{word-spacing:1.314667pt;}
.ws17{word-spacing:1.333333pt;}
.wsae{word-spacing:1.360000pt;}
.ws11{word-spacing:1.386667pt;}
.ws106{word-spacing:1.450667pt;}
.ws2e{word-spacing:1.493333pt;}
.wsc3{word-spacing:1.496000pt;}
.ws2b{word-spacing:1.546667pt;}
.wsc1{word-spacing:1.586667pt;}
.ws20{word-spacing:1.600000pt;}
.wsf6{word-spacing:1.632000pt;}
.ws87{word-spacing:1.653333pt;}
.wsce{word-spacing:1.677333pt;}
.ws3d{word-spacing:1.706667pt;}
.wse2{word-spacing:1.722667pt;}
.ws46{word-spacing:1.760000pt;}
.wsdb{word-spacing:1.768000pt;}
.ws3c{word-spacing:1.813333pt;}
.wsdc{word-spacing:1.858667pt;}
.ws8e{word-spacing:1.866667pt;}
.wse1{word-spacing:1.904000pt;}
.ws3a{word-spacing:1.920000pt;}
.wsa3{word-spacing:1.973333pt;}
.wsbb{word-spacing:1.994667pt;}
.ws86{word-spacing:2.026667pt;}
.wsa7{word-spacing:2.040000pt;}
.ws8f{word-spacing:2.080000pt;}
.wsfe{word-spacing:2.085333pt;}
.wse9{word-spacing:2.130667pt;}
.ws15{word-spacing:2.133333pt;}
.wsf5{word-spacing:2.176000pt;}
.wscc{word-spacing:2.221333pt;}
.ws45{word-spacing:2.240000pt;}
.wsb2{word-spacing:2.266667pt;}
.ws26{word-spacing:2.293333pt;}
.wse6{word-spacing:2.312000pt;}
.ws4b{word-spacing:2.346667pt;}
.wse3{word-spacing:2.357333pt;}
.ws44{word-spacing:2.400000pt;}
.wscf{word-spacing:2.402667pt;}
.wsc8{word-spacing:2.448000pt;}
.ws69{word-spacing:2.453333pt;}
.wsf7{word-spacing:2.493333pt;}
.ws73{word-spacing:2.506667pt;}
.wsda{word-spacing:2.538667pt;}
.ws66{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.613333pt;}
.wsfc{word-spacing:2.629333pt;}
.ws23{word-spacing:2.666667pt;}
.wsbf{word-spacing:2.674667pt;}
.ws1b{word-spacing:2.720000pt;}
.wsfa{word-spacing:2.765333pt;}
.ws51{word-spacing:2.773333pt;}
.wsb0{word-spacing:2.810667pt;}
.ws25{word-spacing:2.826667pt;}
.ws7a{word-spacing:2.856000pt;}
.ws90{word-spacing:2.880000pt;}
.ws100{word-spacing:2.901333pt;}
.ws72{word-spacing:2.933333pt;}
.wsbe{word-spacing:2.946667pt;}
.ws53{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.040000pt;}
.wsaa{word-spacing:3.082667pt;}
.ws5b{word-spacing:3.093333pt;}
.wsf1{word-spacing:3.128000pt;}
.ws6d{word-spacing:3.146667pt;}
.ws64{word-spacing:3.253333pt;}
.ws108{word-spacing:3.264000pt;}
.ws65{word-spacing:3.306667pt;}
.wseb{word-spacing:3.354667pt;}
.ws18{word-spacing:3.360000pt;}
.ws91{word-spacing:3.413333pt;}
.ws104{word-spacing:3.445333pt;}
.ws96{word-spacing:3.466667pt;}
.ws5c{word-spacing:3.520000pt;}
.ws101{word-spacing:3.536000pt;}
.wsf9{word-spacing:3.581333pt;}
.wsde{word-spacing:3.626667pt;}
.ws80{word-spacing:3.672000pt;}
.wsa8{word-spacing:3.717333pt;}
.ws74{word-spacing:3.733333pt;}
.ws77{word-spacing:3.762667pt;}
.ws4f{word-spacing:3.786667pt;}
.wsd1{word-spacing:3.808000pt;}
.ws9c{word-spacing:3.893333pt;}
.ws8d{word-spacing:4.053333pt;}
.wsc9{word-spacing:4.170667pt;}
.ws6e{word-spacing:4.213333pt;}
.ws6b{word-spacing:4.266667pt;}
.ws98{word-spacing:4.586667pt;}
.wsbd{word-spacing:4.714667pt;}
.ws52{word-spacing:4.746667pt;}
.ws71{word-spacing:4.853333pt;}
.wsd0{word-spacing:4.986667pt;}
.ws9a{word-spacing:5.013333pt;}
.wsd6{word-spacing:5.122667pt;}
.ws48{word-spacing:5.280000pt;}
.wsa4{word-spacing:5.333333pt;}
.ws2a{word-spacing:5.386667pt;}
.ws6a{word-spacing:5.440000pt;}
.ws57{word-spacing:5.493333pt;}
.wsfb{word-spacing:5.621333pt;}
.ws29{word-spacing:5.973333pt;}
.ws102{word-spacing:6.120000pt;}
.ws7d{word-spacing:6.133333pt;}
.ws78{word-spacing:6.437333pt;}
.wse7{word-spacing:6.482667pt;}
.ws4a{word-spacing:6.720000pt;}
.ws88{word-spacing:7.200000pt;}
.ws67{word-spacing:7.253333pt;}
.wsa5{word-spacing:7.389333pt;}
.ws7c{word-spacing:7.520000pt;}
.ws105{word-spacing:7.888000pt;}
.wsdd{word-spacing:7.933333pt;}
.ws7f{word-spacing:8.426667pt;}
.ws7e{word-spacing:10.400000pt;}
.ws109{word-spacing:12.013333pt;}
.ws10a{word-spacing:15.640000pt;}
.ws2f{word-spacing:64.237333pt;}
.ws63{word-spacing:70.130667pt;}
.ws62{word-spacing:70.402667pt;}
.ws60{word-spacing:319.690667pt;}
._2c{margin-left:-20.416000pt;}
._2d{margin-left:-17.408000pt;}
._27{margin-left:-16.474667pt;}
._7{margin-left:-14.733333pt;}
._29{margin-left:-13.216000pt;}
._14{margin-left:-12.106667pt;}
._2a{margin-left:-10.384010pt;}
._12{margin-left:-9.040000pt;}
._f{margin-left:-7.813333pt;}
._d{margin-left:-6.704000pt;}
._10{margin-left:-5.595759pt;}
._c{margin-left:-4.266667pt;}
._1{margin-left:-2.833067pt;}
._0{margin-left:-1.450667pt;}
._2{width:0.901333pt;}
._5{width:1.803733pt;}
._6{width:3.556267pt;}
._15{width:5.168000pt;}
._2b{width:6.245333pt;}
._b{width:7.515734pt;}
._11{width:8.480000pt;}
._13{width:10.426667pt;}
._26{width:12.453334pt;}
._e{width:13.872000pt;}
._28{width:15.072000pt;}
._8{width:16.320000pt;}
._3{width:35.153040pt;}
._4{width:36.478433pt;}
._9{width:48.552000pt;}
._19{width:81.531723pt;}
._20{width:82.778667pt;}
._16{width:89.297592pt;}
._1d{width:104.402667pt;}
._1f{width:125.980779pt;}
._24{width:127.069333pt;}
._1b{width:141.100277pt;}
._18{width:154.360000pt;}
._1a{width:156.037333pt;}
._17{width:158.530667pt;}
._1e{width:161.273611pt;}
._22{width:184.461333pt;}
._23{width:186.478400pt;}
._25{width:213.995733pt;}
._1c{width:222.586667pt;}
._21{width:249.242667pt;}
._a{width:1747.373385pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y38{bottom:100.389600pt;}
.yb3{bottom:100.902937pt;}
.y104{bottom:101.986898pt;}
.y110{bottom:101.986938pt;}
.y253{bottom:103.654543pt;}
.y151{bottom:104.002262pt;}
.y190{bottom:106.926954pt;}
.y2f{bottom:108.854533pt;}
.ye1{bottom:109.404000pt;}
.yb2{bottom:114.230937pt;}
.y6a{bottom:115.480265pt;}
.y252{bottom:116.982543pt;}
.y1d1{bottom:116.982706pt;}
.y150{bottom:117.330262pt;}
.y294{bottom:117.333876pt;}
.y9b{bottom:117.480265pt;}
.y37{bottom:118.250936pt;}
.y103{bottom:118.653564pt;}
.y10f{bottom:118.653605pt;}
.y18f{bottom:120.254954pt;}
.yf0{bottom:121.052266pt;}
.ye9{bottom:123.009603pt;}
.y2e{bottom:125.521200pt;}
.ye0{bottom:126.109333pt;}
.y251{bottom:130.310543pt;}
.y1d0{bottom:130.310706pt;}
.y211{bottom:130.650691pt;}
.y14f{bottom:130.658262pt;}
.y293{bottom:130.661876pt;}
.y69{bottom:132.146932pt;}
.y18e{bottom:133.582954pt;}
.y36{bottom:133.770270pt;}
.y9a{bottom:134.146932pt;}
.y102{bottom:135.320231pt;}
.y10e{bottom:135.320272pt;}
.yef{bottom:137.718933pt;}
.ye8{bottom:139.676270pt;}
.y2d{bottom:142.187866pt;}
.ydf{bottom:142.746667pt;}
.y250{bottom:143.638543pt;}
.y1cf{bottom:143.638706pt;}
.y210{bottom:143.978691pt;}
.y14e{bottom:143.986262pt;}
.y292{bottom:143.989876pt;}
.y18d{bottom:146.910954pt;}
.y35{bottom:147.098270pt;}
.y99{bottom:150.813599pt;}
.y101{bottom:151.986898pt;}
.y10d{bottom:151.986938pt;}
.yee{bottom:154.385600pt;}
.ye7{bottom:156.342936pt;}
.y24f{bottom:156.966543pt;}
.y1ce{bottom:156.966706pt;}
.y20f{bottom:157.306691pt;}
.y291{bottom:157.317876pt;}
.y2c{bottom:158.854533pt;}
.yde{bottom:159.384000pt;}
.y18c{bottom:160.238954pt;}
.y34{bottom:164.959605pt;}
.y68{bottom:165.480265pt;}
.y98{bottom:167.480265pt;}
.y100{bottom:168.653564pt;}
.y10c{bottom:168.653605pt;}
.y24e{bottom:170.294543pt;}
.y1cd{bottom:170.294706pt;}
.y20e{bottom:170.634691pt;}
.y290{bottom:170.645876pt;}
.y14d{bottom:170.653595pt;}
.yed{bottom:171.052266pt;}
.ye6{bottom:173.009603pt;}
.y18b{bottom:173.566954pt;}
.y2b{bottom:175.521200pt;}
.ydd{bottom:176.021333pt;}
.y24d{bottom:183.622543pt;}
.y1cc{bottom:183.622706pt;}
.y20d{bottom:183.962691pt;}
.y28f{bottom:183.973876pt;}
.y97{bottom:184.146932pt;}
.yff{bottom:185.320231pt;}
.y10b{bottom:185.320272pt;}
.y18a{bottom:186.894954pt;}
.y33{bottom:187.192266pt;}
.yec{bottom:187.718933pt;}
.ye5{bottom:189.676270pt;}
.y2a{bottom:192.187866pt;}
.y24c{bottom:196.950543pt;}
.y1cb{bottom:196.950706pt;}
.y20c{bottom:197.290691pt;}
.y28e{bottom:197.301876pt;}
.y14c{bottom:197.320272pt;}
.y67{bottom:198.813599pt;}
.y189{bottom:200.222954pt;}
.y32{bottom:200.520266pt;}
.y96{bottom:200.813599pt;}
.ydc{bottom:200.988667pt;}
.yfe{bottom:201.986898pt;}
.y10a{bottom:201.986938pt;}
.yeb{bottom:204.385600pt;}
.ye4{bottom:206.342936pt;}
.y29{bottom:208.854533pt;}
.y24b{bottom:210.278543pt;}
.y1ca{bottom:210.278706pt;}
.y20b{bottom:210.618691pt;}
.y28d{bottom:210.629876pt;}
.y188{bottom:213.550954pt;}
.y95{bottom:217.480265pt;}
.yfd{bottom:218.653564pt;}
.y109{bottom:218.653605pt;}
.y31{bottom:220.557600pt;}
.ye3{bottom:223.009603pt;}
.y24a{bottom:223.606543pt;}
.y1c9{bottom:223.606706pt;}
.yd8{bottom:223.652265pt;}
.ydb{bottom:223.663599pt;}
.y20a{bottom:223.946691pt;}
.y28c{bottom:223.957876pt;}
.y28{bottom:225.521200pt;}
.y187{bottom:226.878954pt;}
.y14b{bottom:227.420272pt;}
.y30{bottom:233.885600pt;}
.y94{bottom:234.146932pt;}
.y66{bottom:234.146973pt;}
.yfc{bottom:235.320231pt;}
.y108{bottom:235.320272pt;}
.y249{bottom:236.934543pt;}
.y1c8{bottom:236.934706pt;}
.yd7{bottom:236.985599pt;}
.yda{bottom:236.991599pt;}
.y209{bottom:237.274691pt;}
.y28b{bottom:237.285876pt;}
.yea{bottom:237.718933pt;}
.ye2{bottom:239.676270pt;}
.y186{bottom:240.206954pt;}
.y14a{bottom:240.748272pt;}
.y27{bottom:242.187866pt;}
.y248{bottom:250.262543pt;}
.y1c7{bottom:250.262706pt;}
.yd6{bottom:250.313599pt;}
.yd9{bottom:250.319599pt;}
.y208{bottom:250.602691pt;}
.y28a{bottom:250.613876pt;}
.y93{bottom:250.813599pt;}
.y65{bottom:250.813639pt;}
.yfb{bottom:251.986898pt;}
.y107{bottom:251.986938pt;}
.y185{bottom:253.534954pt;}
.y149{bottom:254.076272pt;}
.y26{bottom:258.854533pt;}
.y247{bottom:263.590543pt;}
.y1c6{bottom:263.590706pt;}
.y207{bottom:263.930691pt;}
.y289{bottom:263.941876pt;}
.y184{bottom:266.862954pt;}
.y148{bottom:267.404272pt;}
.y92{bottom:267.480265pt;}
.y64{bottom:267.480306pt;}
.yfa{bottom:268.653564pt;}
.y106{bottom:268.653605pt;}
.y25{bottom:275.521200pt;}
.y246{bottom:276.918543pt;}
.y1c5{bottom:276.918706pt;}
.y206{bottom:277.258691pt;}
.y288{bottom:277.269876pt;}
.y183{bottom:280.190954pt;}
.y147{bottom:280.732272pt;}
.y63{bottom:284.146973pt;}
.yf9{bottom:285.320231pt;}
.y105{bottom:285.320272pt;}
.y245{bottom:290.246543pt;}
.y1c4{bottom:290.246706pt;}
.y205{bottom:290.586691pt;}
.y287{bottom:290.597876pt;}
.y23{bottom:292.187866pt;}
.y182{bottom:293.518954pt;}
.y146{bottom:294.060272pt;}
.y91{bottom:300.813599pt;}
.y62{bottom:300.813639pt;}
.yf2{bottom:301.614932pt;}
.yf8{bottom:301.986898pt;}
.yc4{bottom:301.986938pt;}
.y244{bottom:303.574543pt;}
.y1c3{bottom:303.574706pt;}
.y204{bottom:303.914691pt;}
.y286{bottom:303.925876pt;}
.y181{bottom:306.846954pt;}
.y145{bottom:307.388272pt;}
.y22{bottom:308.854533pt;}
.yf1{bottom:314.942932pt;}
.y243{bottom:316.902543pt;}
.y1c2{bottom:316.902706pt;}
.y203{bottom:317.242691pt;}
.y285{bottom:317.253876pt;}
.y61{bottom:317.480306pt;}
.yf7{bottom:318.653564pt;}
.yc3{bottom:318.653605pt;}
.y180{bottom:320.174954pt;}
.y144{bottom:320.716272pt;}
.y21{bottom:325.521200pt;}
.y242{bottom:330.230543pt;}
.y1c1{bottom:330.230706pt;}
.y202{bottom:330.570691pt;}
.y284{bottom:330.581876pt;}
.y17f{bottom:333.502954pt;}
.y143{bottom:334.044272pt;}
.y60{bottom:334.146973pt;}
.yf6{bottom:335.320231pt;}
.yd5{bottom:335.320272pt;}
.y20{bottom:342.187866pt;}
.y241{bottom:343.558543pt;}
.y1c0{bottom:343.558706pt;}
.y201{bottom:343.898691pt;}
.y283{bottom:343.909876pt;}
.y17e{bottom:346.830954pt;}
.y90{bottom:350.813619pt;}
.y5f{bottom:350.813639pt;}
.yf5{bottom:351.986898pt;}
.yc2{bottom:351.986938pt;}
.y240{bottom:356.886543pt;}
.y1bf{bottom:356.886706pt;}
.y200{bottom:357.226691pt;}
.y282{bottom:357.237876pt;}
.y1f{bottom:358.854533pt;}
.y17d{bottom:360.158954pt;}
.y142{bottom:360.711605pt;}
.y8f{bottom:367.480286pt;}
.y5e{bottom:367.480306pt;}
.yf4{bottom:368.653564pt;}
.yd4{bottom:368.653605pt;}
.y23f{bottom:370.214543pt;}
.y1be{bottom:370.214706pt;}
.y1ff{bottom:370.554691pt;}
.y281{bottom:370.565876pt;}
.y17c{bottom:373.486954pt;}
.y141{bottom:374.039605pt;}
.y1e{bottom:375.521200pt;}
.y23e{bottom:383.542543pt;}
.y1bd{bottom:383.542706pt;}
.y1fe{bottom:383.882691pt;}
.y280{bottom:383.893876pt;}
.y8e{bottom:384.146952pt;}
.y5d{bottom:384.146973pt;}
.yf3{bottom:385.320231pt;}
.yd3{bottom:385.320272pt;}
.y17b{bottom:386.814954pt;}
.y140{bottom:387.367605pt;}
.y1d{bottom:392.187866pt;}
.y23d{bottom:396.870543pt;}
.y1bc{bottom:396.870706pt;}
.y1fd{bottom:397.210691pt;}
.y27f{bottom:397.221876pt;}
.y17a{bottom:400.142954pt;}
.y13f{bottom:400.695605pt;}
.y8d{bottom:400.813619pt;}
.y5c{bottom:400.813639pt;}
.yc1{bottom:401.986898pt;}
.yd2{bottom:401.986938pt;}
.y1c{bottom:408.854533pt;}
.y23c{bottom:410.198543pt;}
.y1bb{bottom:410.198706pt;}
.y1fc{bottom:410.538691pt;}
.y27e{bottom:410.549876pt;}
.y179{bottom:413.470954pt;}
.y13e{bottom:414.023605pt;}
.y8c{bottom:417.480286pt;}
.y5b{bottom:417.480306pt;}
.yc0{bottom:418.653564pt;}
.yd1{bottom:418.653605pt;}
.y23b{bottom:423.526543pt;}
.y1ba{bottom:423.526706pt;}
.y1fb{bottom:423.866691pt;}
.y27d{bottom:423.877876pt;}
.y1b{bottom:425.521200pt;}
.y178{bottom:426.798954pt;}
.y8b{bottom:434.146952pt;}
.y5a{bottom:434.146973pt;}
.ybf{bottom:435.320231pt;}
.yd0{bottom:435.320272pt;}
.y23a{bottom:436.854543pt;}
.y1b9{bottom:436.854706pt;}
.y1fa{bottom:437.194691pt;}
.y27c{bottom:437.205876pt;}
.y177{bottom:440.126954pt;}
.y13d{bottom:440.690938pt;}
.y1a{bottom:442.187866pt;}
.y239{bottom:450.182543pt;}
.y1b8{bottom:450.182706pt;}
.y1f9{bottom:450.522691pt;}
.y27b{bottom:450.533876pt;}
.y8a{bottom:450.813619pt;}
.y59{bottom:450.813639pt;}
.ybe{bottom:451.986898pt;}
.ycf{bottom:451.986938pt;}
.y176{bottom:453.454954pt;}
.y13c{bottom:454.018938pt;}
.y19{bottom:458.854533pt;}
.y238{bottom:463.510543pt;}
.y1b7{bottom:463.510706pt;}
.y1f8{bottom:463.850691pt;}
.y27a{bottom:463.861876pt;}
.y175{bottom:466.782954pt;}
.y13b{bottom:467.346938pt;}
.y89{bottom:467.480286pt;}
.y58{bottom:467.480306pt;}
.ybd{bottom:468.653564pt;}
.yce{bottom:468.653605pt;}
.y18{bottom:475.521200pt;}
.y237{bottom:476.838543pt;}
.y1b6{bottom:476.838706pt;}
.y1f7{bottom:477.178691pt;}
.y279{bottom:477.189876pt;}
.y174{bottom:480.110954pt;}
.y13a{bottom:480.674938pt;}
.y88{bottom:484.146952pt;}
.y57{bottom:484.146973pt;}
.ybc{bottom:485.320231pt;}
.ycd{bottom:485.320272pt;}
.y236{bottom:490.166543pt;}
.y1b5{bottom:490.166706pt;}
.y1f6{bottom:490.506691pt;}
.y278{bottom:490.517876pt;}
.y17{bottom:492.187866pt;}
.y173{bottom:493.438954pt;}
.y139{bottom:494.002938pt;}
.y87{bottom:500.813619pt;}
.y56{bottom:500.813639pt;}
.ybb{bottom:501.986898pt;}
.ycc{bottom:501.986938pt;}
.y235{bottom:503.494543pt;}
.y1b4{bottom:503.494706pt;}
.y1f5{bottom:503.834691pt;}
.y277{bottom:503.845876pt;}
.y172{bottom:506.766954pt;}
.y138{bottom:507.330938pt;}
.y24{bottom:508.854533pt;}
.y234{bottom:516.822543pt;}
.y1b3{bottom:516.822706pt;}
.y1f4{bottom:517.162691pt;}
.y276{bottom:517.173876pt;}
.y86{bottom:517.480286pt;}
.y55{bottom:517.480306pt;}
.yba{bottom:518.653564pt;}
.ycb{bottom:518.653605pt;}
.y171{bottom:520.094954pt;}
.y137{bottom:520.658938pt;}
.y16{bottom:525.521200pt;}
.y233{bottom:530.150543pt;}
.y1b2{bottom:530.150706pt;}
.y1f3{bottom:530.490691pt;}
.y275{bottom:530.501876pt;}
.y170{bottom:533.422954pt;}
.y136{bottom:533.986938pt;}
.y85{bottom:534.146952pt;}
.y54{bottom:534.146973pt;}
.yb9{bottom:535.320231pt;}
.yca{bottom:535.320272pt;}
.y232{bottom:543.478543pt;}
.y1b1{bottom:543.478706pt;}
.y1f2{bottom:543.818691pt;}
.y274{bottom:543.829876pt;}
.y16f{bottom:546.750954pt;}
.y84{bottom:550.813619pt;}
.y53{bottom:550.813639pt;}
.yb8{bottom:551.986898pt;}
.yc9{bottom:551.986938pt;}
.y231{bottom:556.806543pt;}
.y1b0{bottom:556.806706pt;}
.y1f1{bottom:557.146691pt;}
.y273{bottom:557.157876pt;}
.y15{bottom:558.854574pt;}
.y16e{bottom:560.078954pt;}
.y135{bottom:560.653564pt;}
.y83{bottom:567.480286pt;}
.y52{bottom:567.480306pt;}
.yb7{bottom:568.653564pt;}
.yc8{bottom:568.653605pt;}
.y230{bottom:570.134543pt;}
.y1af{bottom:570.134706pt;}
.y1f0{bottom:570.474691pt;}
.y272{bottom:570.485876pt;}
.y16d{bottom:573.406954pt;}
.y134{bottom:577.320231pt;}
.y22f{bottom:583.462543pt;}
.y1ae{bottom:583.462706pt;}
.y1ef{bottom:583.802691pt;}
.y271{bottom:583.813876pt;}
.y82{bottom:584.146952pt;}
.y51{bottom:584.146973pt;}
.yb6{bottom:585.320231pt;}
.yc7{bottom:585.320272pt;}
.y16c{bottom:586.734954pt;}
.y14{bottom:592.187907pt;}
.y133{bottom:593.986898pt;}
.y22e{bottom:596.790543pt;}
.y1ad{bottom:596.790706pt;}
.y1ee{bottom:597.130691pt;}
.y270{bottom:597.141876pt;}
.y16b{bottom:600.062954pt;}
.y81{bottom:600.813619pt;}
.y50{bottom:600.813639pt;}
.yb5{bottom:601.986898pt;}
.y125{bottom:601.986938pt;}
.y13{bottom:608.854574pt;}
.y22d{bottom:610.118543pt;}
.y1ac{bottom:610.118706pt;}
.y1ed{bottom:610.458691pt;}
.y26f{bottom:610.469876pt;}
.y132{bottom:610.653564pt;}
.y16a{bottom:613.390954pt;}
.y80{bottom:617.480286pt;}
.y4f{bottom:617.480306pt;}
.yb4{bottom:618.653564pt;}
.y124{bottom:618.653605pt;}
.y22c{bottom:623.446543pt;}
.y1ab{bottom:623.446706pt;}
.y2ae{bottom:623.514707pt;}
.y1ec{bottom:623.786691pt;}
.y26e{bottom:623.797876pt;}
.y12{bottom:625.521240pt;}
.y169{bottom:626.718954pt;}
.y131{bottom:627.320231pt;}
.y7f{bottom:634.146952pt;}
.y4e{bottom:634.146973pt;}
.yaf{bottom:635.320231pt;}
.y123{bottom:635.320272pt;}
.y22b{bottom:636.774543pt;}
.y1aa{bottom:636.774706pt;}
.y2ad{bottom:636.842707pt;}
.y1eb{bottom:637.114691pt;}
.y26d{bottom:637.125876pt;}
.y168{bottom:640.046954pt;}
.y11{bottom:642.187907pt;}
.y130{bottom:643.986898pt;}
.y22a{bottom:650.102543pt;}
.y1a9{bottom:650.102706pt;}
.y1ea{bottom:650.442691pt;}
.y26c{bottom:650.453876pt;}
.y7e{bottom:650.813619pt;}
.y4d{bottom:650.813639pt;}
.yae{bottom:651.986898pt;}
.y122{bottom:651.986938pt;}
.y167{bottom:653.374954pt;}
.y10{bottom:658.854574pt;}
.y12f{bottom:660.653564pt;}
.y229{bottom:663.430543pt;}
.y1a8{bottom:663.430706pt;}
.y2ac{bottom:663.589372pt;}
.y1e9{bottom:663.770691pt;}
.y26b{bottom:663.781876pt;}
.y166{bottom:666.702954pt;}
.y7d{bottom:667.480286pt;}
.y4c{bottom:667.480306pt;}
.yad{bottom:668.653564pt;}
.y121{bottom:668.653605pt;}
.yf{bottom:675.521240pt;}
.y228{bottom:676.758543pt;}
.y1a7{bottom:676.758706pt;}
.y2ab{bottom:676.917372pt;}
.y1e8{bottom:677.098691pt;}
.y26a{bottom:677.109876pt;}
.y12e{bottom:677.320231pt;}
.y165{bottom:680.030954pt;}
.y7c{bottom:684.146952pt;}
.y4b{bottom:684.146973pt;}
.yac{bottom:685.320231pt;}
.y120{bottom:685.320272pt;}
.y227{bottom:690.086543pt;}
.y1a6{bottom:690.086706pt;}
.y2aa{bottom:690.245372pt;}
.y1e7{bottom:690.426691pt;}
.y269{bottom:690.437876pt;}
.ye{bottom:692.187907pt;}
.y164{bottom:693.358954pt;}
.y12d{bottom:693.986898pt;}
.y7b{bottom:700.813619pt;}
.y4a{bottom:700.813639pt;}
.yab{bottom:701.986898pt;}
.y11f{bottom:701.986938pt;}
.y226{bottom:703.414543pt;}
.y1a5{bottom:703.414706pt;}
.y2a9{bottom:703.573372pt;}
.y1e6{bottom:703.754691pt;}
.y268{bottom:703.765876pt;}
.y163{bottom:706.686954pt;}
.yd{bottom:708.854574pt;}
.y12c{bottom:710.653564pt;}
.y225{bottom:716.742543pt;}
.y1a4{bottom:716.742706pt;}
.y2a8{bottom:716.901372pt;}
.y1e5{bottom:717.082691pt;}
.y267{bottom:717.093876pt;}
.y7a{bottom:717.480286pt;}
.y49{bottom:717.480306pt;}
.yaa{bottom:718.653564pt;}
.y11e{bottom:718.653605pt;}
.y162{bottom:720.014954pt;}
.yc{bottom:725.521240pt;}
.y12b{bottom:727.320231pt;}
.y224{bottom:730.070543pt;}
.y1a3{bottom:730.070706pt;}
.y2a7{bottom:730.229372pt;}
.y1e4{bottom:730.410691pt;}
.y266{bottom:730.421876pt;}
.y161{bottom:733.342954pt;}
.y79{bottom:734.146952pt;}
.y48{bottom:734.146973pt;}
.ya9{bottom:735.320231pt;}
.y11d{bottom:735.320272pt;}
.yb{bottom:742.187907pt;}
.y223{bottom:743.398543pt;}
.y1a2{bottom:743.398706pt;}
.y2a6{bottom:743.557372pt;}
.y1e3{bottom:743.738691pt;}
.y265{bottom:743.749876pt;}
.y12a{bottom:743.986898pt;}
.y160{bottom:746.670954pt;}
.y78{bottom:750.813619pt;}
.y47{bottom:750.813639pt;}
.ya8{bottom:751.986898pt;}
.y11c{bottom:751.986938pt;}
.y222{bottom:756.726543pt;}
.y1a1{bottom:756.726706pt;}
.y2a5{bottom:756.885372pt;}
.y1e2{bottom:757.066691pt;}
.y264{bottom:757.077876pt;}
.y15f{bottom:759.998954pt;}
.y129{bottom:760.653564pt;}
.y77{bottom:767.480286pt;}
.y46{bottom:767.480306pt;}
.ya7{bottom:768.653564pt;}
.y11b{bottom:768.653605pt;}
.y221{bottom:770.054543pt;}
.y1a0{bottom:770.054706pt;}
.y2a4{bottom:770.213372pt;}
.y1e1{bottom:770.394691pt;}
.y263{bottom:770.405876pt;}
.y15e{bottom:773.326954pt;}
.y128{bottom:777.320231pt;}
.ya{bottom:781.461469pt;}
.y220{bottom:783.382543pt;}
.y19f{bottom:783.382706pt;}
.y2a3{bottom:783.541372pt;}
.y1e0{bottom:783.722691pt;}
.y262{bottom:783.733876pt;}
.y76{bottom:784.146952pt;}
.y45{bottom:784.146973pt;}
.ya6{bottom:785.320231pt;}
.y11a{bottom:785.320272pt;}
.y15d{bottom:786.654954pt;}
.y127{bottom:793.986898pt;}
.y9{bottom:794.789469pt;}
.y21f{bottom:796.710543pt;}
.y19e{bottom:796.710706pt;}
.y2a2{bottom:796.869372pt;}
.y1df{bottom:797.050691pt;}
.y261{bottom:797.061876pt;}
.y15c{bottom:799.982954pt;}
.y75{bottom:800.813619pt;}
.y44{bottom:800.813639pt;}
.ya5{bottom:801.986898pt;}
.y119{bottom:801.986938pt;}
.y21e{bottom:810.038543pt;}
.y19d{bottom:810.038706pt;}
.y2a1{bottom:810.197372pt;}
.y1de{bottom:810.378691pt;}
.y260{bottom:810.389876pt;}
.y15b{bottom:813.310954pt;}
.y74{bottom:817.480286pt;}
.y43{bottom:817.480306pt;}
.ya4{bottom:818.653564pt;}
.y118{bottom:818.653605pt;}
.y21d{bottom:823.366543pt;}
.y19c{bottom:823.366706pt;}
.y2a0{bottom:823.525372pt;}
.y1dd{bottom:823.706691pt;}
.y25f{bottom:823.717876pt;}
.y126{bottom:827.320231pt;}
.y8{bottom:832.656169pt;}
.y73{bottom:834.146952pt;}
.y42{bottom:834.146973pt;}
.ya3{bottom:835.320231pt;}
.y117{bottom:835.320272pt;}
.y21c{bottom:836.694543pt;}
.y19b{bottom:836.694706pt;}
.y29f{bottom:836.853372pt;}
.y1dc{bottom:837.034691pt;}
.y25e{bottom:837.045876pt;}
.y15a{bottom:843.310954pt;}
.y21b{bottom:850.022543pt;}
.y19a{bottom:850.022706pt;}
.y29e{bottom:850.181372pt;}
.y1db{bottom:850.362691pt;}
.y25d{bottom:850.373876pt;}
.y72{bottom:850.813619pt;}
.y41{bottom:850.813639pt;}
.ya2{bottom:851.986898pt;}
.y116{bottom:851.986938pt;}
.y21a{bottom:863.350543pt;}
.y199{bottom:863.350706pt;}
.y29d{bottom:863.509372pt;}
.y1da{bottom:863.690691pt;}
.y25c{bottom:863.701876pt;}
.y71{bottom:867.480286pt;}
.y40{bottom:867.480306pt;}
.ya1{bottom:868.653564pt;}
.y115{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y219{bottom:876.678543pt;}
.y198{bottom:876.678706pt;}
.y159{bottom:876.697630pt;}
.y29c{bottom:876.837372pt;}
.y1d9{bottom:877.018691pt;}
.y25b{bottom:877.029876pt;}
.y70{bottom:884.146952pt;}
.y3f{bottom:884.146973pt;}
.yb1{bottom:885.320231pt;}
.y114{bottom:885.320272pt;}
.y218{bottom:890.006543pt;}
.y197{bottom:890.006706pt;}
.y158{bottom:890.025630pt;}
.y29b{bottom:890.165372pt;}
.y1d8{bottom:890.346691pt;}
.y25a{bottom:890.357876pt;}
.y6{bottom:896.377441pt;}
.y6f{bottom:900.813619pt;}
.y3e{bottom:900.813639pt;}
.ya0{bottom:901.986898pt;}
.y113{bottom:901.986938pt;}
.y217{bottom:903.334543pt;}
.y196{bottom:903.334706pt;}
.y157{bottom:903.353630pt;}
.y29a{bottom:903.493372pt;}
.y1d7{bottom:903.674691pt;}
.y259{bottom:903.685876pt;}
.y216{bottom:916.662543pt;}
.y195{bottom:916.662706pt;}
.y156{bottom:916.681630pt;}
.y299{bottom:916.821372pt;}
.y1d6{bottom:917.002691pt;}
.y258{bottom:917.013876pt;}
.y6e{bottom:917.480286pt;}
.y3d{bottom:917.480306pt;}
.yb0{bottom:918.653564pt;}
.y112{bottom:918.653605pt;}
.y215{bottom:929.990543pt;}
.y194{bottom:929.990706pt;}
.y155{bottom:930.009630pt;}
.y298{bottom:930.149372pt;}
.y1d5{bottom:930.330691pt;}
.y257{bottom:930.341876pt;}
.y6d{bottom:934.146952pt;}
.y3c{bottom:934.146973pt;}
.y9f{bottom:935.320231pt;}
.y111{bottom:935.320272pt;}
.y214{bottom:943.318543pt;}
.y193{bottom:943.318706pt;}
.y154{bottom:943.337630pt;}
.y297{bottom:943.477372pt;}
.y1d4{bottom:943.658691pt;}
.y256{bottom:943.669876pt;}
.y6c{bottom:950.813619pt;}
.y3b{bottom:950.813639pt;}
.y9e{bottom:951.986898pt;}
.yc6{bottom:951.986938pt;}
.y5{bottom:956.561849pt;}
.y213{bottom:956.646543pt;}
.y192{bottom:956.646706pt;}
.y153{bottom:956.665630pt;}
.y296{bottom:956.805372pt;}
.y1d3{bottom:956.986691pt;}
.y255{bottom:956.997876pt;}
.y6b{bottom:967.480286pt;}
.y3a{bottom:967.480306pt;}
.y9d{bottom:968.653564pt;}
.yc5{bottom:968.653605pt;}
.y212{bottom:969.974543pt;}
.y191{bottom:969.974706pt;}
.y152{bottom:969.993630pt;}
.y295{bottom:970.133372pt;}
.y1d2{bottom:970.314691pt;}
.y254{bottom:970.325876pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y39{bottom:1002.206543pt;}
.y9c{bottom:1002.206706pt;}
.he{height:22.403733pt;}
.h2{height:30.080000pt;}
.hd{height:32.005333pt;}
.hc{height:32.760417pt;}
.h9{height:37.653333pt;}
.h4{height:39.712000pt;}
.h12{height:40.165333pt;}
.hf{height:44.834667pt;}
.h13{height:46.376000pt;}
.ha{height:47.253333pt;}
.h15{height:47.690667pt;}
.h16{height:47.690829pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h14{height:51.611971pt;}
.h11{height:52.448000pt;}
.h8{height:52.746667pt;}
.h10{height:54.560000pt;}
.h7{height:57.658667pt;}
.hb{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151467pt;}
.x7{left:86.929867pt;}
.xc{left:90.708929pt;}
.x6{left:408.178135pt;}
.x5{left:423.298135pt;}
.xb{left:430.866924pt;}
.xd{left:643.458415pt;}
.x1{left:647.307210pt;}
.xa{left:648.841593pt;}
.x2{left:671.546549pt;}
}




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