
    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_3aef1865956f7497ce3afab4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_08979c6b635b8ed3c446c1a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_13531f0db8fb23679b572662.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e20933db86378c6cda1c8b39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_cbcef970481e7f55f7054430.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.188000;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_dc17cf40a8712c61296b6f62.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_e8526ddfd817f322816d1a90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.665000;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_c830c59e5047e2f752f7f631.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.484000;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_b588b36bb659b37250529249.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.197000;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_2de2c0cc7d217de9e013e08f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.242000;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_78ebc97d9c02a7f1c74e4ff4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;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_f267ac70c6369286aa2b2099.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.697000;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_1e2d1c52222de780f3f2c6af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942000;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_39fad6cbd7f62b83c3688afb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.388000;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_800b6a9a0c1abcf5d44c25aa.woff2')format("woff");}.fff{font-family:fff;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4efd6f87ec2199d16caee3d6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.244000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bfd3faecf64c7a4371b547f8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_94b9705b1f0491880a34fdd1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3e114c4e5c4129327ba021ea.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d7a2c0d3654168a7b32c5d68.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c3f8c8c7415d17b93796b49f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.715000;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:ff16;src:url('chunks/assets/font_1adfd6d8693b8ade6ed0f26b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.943000;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);}
.m3{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.722169px;}
.v1{vertical-align:3.740746px;}
.v3{vertical-align:17.354653px;}
.lsc{letter-spacing:-1.171598px;}
.lsd{letter-spacing:-1.092097px;}
.lsb{letter-spacing:-1.046070px;}
.lse{letter-spacing:-1.025149px;}
.lsa{letter-spacing:-1.008411px;}
.ls2d{letter-spacing:-0.902612px;}
.ls2a{letter-spacing:-0.890656px;}
.ls25{letter-spacing:-0.848814px;}
.ls2c{letter-spacing:-0.842836px;}
.ls29{letter-spacing:-0.830881px;}
.ls26{letter-spacing:-0.818926px;}
.ls2b{letter-spacing:-0.806971px;}
.ls27{letter-spacing:-0.789038px;}
.ls28{letter-spacing:-0.735240px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.004483px;}
.ls49{letter-spacing:0.062466px;}
.lsf{letter-spacing:0.075317px;}
.ls42{letter-spacing:0.086078px;}
.ls11{letter-spacing:0.125529px;}
.ls12{letter-spacing:0.131506px;}
.ls1{letter-spacing:0.161393px;}
.ls7{letter-spacing:0.174840px;}
.ls2{letter-spacing:0.177533px;}
.ls10{letter-spacing:0.209215px;}
.ls5{letter-spacing:0.225951px;}
.ls13{letter-spacing:0.233125px;}
.ls4c{letter-spacing:0.245080px;}
.ls40{letter-spacing:0.257035px;}
.ls4d{letter-spacing:0.258229px;}
.ls4{letter-spacing:0.285128px;}
.ls21{letter-spacing:0.466250px;}
.ls47{letter-spacing:0.532003px;}
.ls1b{letter-spacing:0.549936px;}
.ls2e{letter-spacing:0.567868px;}
.ls1f{letter-spacing:0.597756px;}
.ls17{letter-spacing:0.609711px;}
.ls3c{letter-spacing:0.615689px;}
.ls3f{letter-spacing:0.633621px;}
.ls19{letter-spacing:0.639599px;}
.ls24{letter-spacing:0.645576px;}
.ls23{letter-spacing:0.651554px;}
.ls20{letter-spacing:0.657532px;}
.ls1e{letter-spacing:0.663509px;}
.ls15{letter-spacing:0.669487px;}
.ls1c{letter-spacing:0.675464px;}
.ls14{letter-spacing:0.681442px;}
.ls3e{letter-spacing:0.687419px;}
.ls18{letter-spacing:0.693397px;}
.ls1d{letter-spacing:0.711330px;}
.ls1a{letter-spacing:0.723285px;}
.ls3d{letter-spacing:0.765128px;}
.ls16{letter-spacing:0.806971px;}
.ls2f{letter-spacing:0.890656px;}
.ls46{letter-spacing:1.165624px;}
.ls45{letter-spacing:1.177579px;}
.ls30{letter-spacing:1.195512px;}
.ls3{letter-spacing:1.199691px;}
.ls3b{letter-spacing:1.225400px;}
.ls37{letter-spacing:1.231377px;}
.ls33{letter-spacing:1.261265px;}
.ls39{letter-spacing:1.267243px;}
.ls34{letter-spacing:1.279198px;}
.ls31{letter-spacing:1.285175px;}
.ls32{letter-spacing:1.297131px;}
.ls36{letter-spacing:1.303108px;}
.ls3a{letter-spacing:1.309086px;}
.ls35{letter-spacing:1.327018px;}
.ls38{letter-spacing:1.338973px;}
.ls41{letter-spacing:2.991900px;}
.ls43{letter-spacing:10.774116px;}
.ls44{letter-spacing:11.295367px;}
.ls48{letter-spacing:11.309714px;}
.ls9{letter-spacing:11.381242px;}
.ls4e{letter-spacing:13.040587px;}
.ls8{letter-spacing:15.188936px;}
.ls22{letter-spacing:15.894332px;}
.ls4b{letter-spacing:24.059679px;}
.ls4a{letter-spacing:884.644379px;}
.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;}
}
.ws16f{word-spacing:-884.692200px;}
.ws8{word-spacing:-15.251701px;}
.ws1{word-spacing:-13.986000px;}
.ws1fc{word-spacing:-13.094385px;}
.ws65{word-spacing:-11.423084px;}
.ws7d{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws52{word-spacing:-0.049314px;}
.ws62{word-spacing:-0.047821px;}
.ws6e{word-spacing:-0.044831px;}
.ws64{word-spacing:-0.041843px;}
.ws127{word-spacing:-0.031048px;}
.ws0{word-spacing:0.000000px;}
.ws69{word-spacing:1.004227px;}
.ws6a{word-spacing:1.129756px;}
.ws67{word-spacing:9.770294px;}
.ws124{word-spacing:10.535010px;}
.ws6d{word-spacing:10.620417px;}
.wsde{word-spacing:10.754909px;}
.ws176{word-spacing:10.769334px;}
.ws6c{word-spacing:10.844571px;}
.ws11a{word-spacing:10.936708px;}
.ws12d{word-spacing:10.960619px;}
.ws6f{word-spacing:10.961131px;}
.ws125{word-spacing:10.979748px;}
.ws119{word-spacing:10.998876px;}
.ws6b{word-spacing:11.008841px;}
.ws123{word-spacing:11.013222px;}
.ws12f{word-spacing:11.022787px;}
.ws121{word-spacing:11.027569px;}
.ws5e{word-spacing:11.061044px;}
.ws13e{word-spacing:11.064241px;}
.ws11f{word-spacing:11.104083px;}
.ws5d{word-spacing:11.108865px;}
.ws128{word-spacing:11.113647px;}
.ws61{word-spacing:11.118429px;}
.ws16d{word-spacing:11.123211px;}
.ws12a{word-spacing:11.127993px;}
.ws11d{word-spacing:11.132775px;}
.ws139{word-spacing:11.137557px;}
.ws120{word-spacing:11.156686px;}
.ws11b{word-spacing:11.161468px;}
.ws126{word-spacing:11.175814px;}
.ws129{word-spacing:11.180597px;}
.ws130{word-spacing:11.185379px;}
.ws13c{word-spacing:11.199725px;}
.ws5c{word-spacing:11.209289px;}
.ws60{word-spacing:11.214071px;}
.ws178{word-spacing:11.223636px;}
.ws16c{word-spacing:11.242764px;}
.ws63{word-spacing:11.251529px;}
.ws17c{word-spacing:11.266675px;}
.ws12b{word-spacing:11.276239px;}
.ws12c{word-spacing:11.281021px;}
.ws12e{word-spacing:11.285803px;}
.ws177{word-spacing:11.290585px;}
.ws17a{word-spacing:11.300150px;}
.ws134{word-spacing:11.309714px;}
.ws68{word-spacing:11.314293px;}
.ws16e{word-spacing:11.324060px;}
.ws136{word-spacing:11.347971px;}
.ws122{word-spacing:11.352753px;}
.ws11e{word-spacing:11.376663px;}
.ws118{word-spacing:11.381446px;}
.ws5b{word-spacing:11.386228px;}
.ws66{word-spacing:11.397979px;}
.ws179{word-spacing:11.410138px;}
.ws11c{word-spacing:11.457960px;}
.ws17b{word-spacing:11.572730px;}
.ws4c{word-spacing:12.104505px;}
.ws4b{word-spacing:12.179822px;}
.ws1e9{word-spacing:12.212101px;}
.ws3c{word-spacing:12.384254px;}
.ws3e{word-spacing:12.464950px;}
.ws3d{word-spacing:12.475710px;}
.ws4a{word-spacing:12.588685px;}
.ws36{word-spacing:12.642483px;}
.ws40{word-spacing:12.647863px;}
.ws210{word-spacing:12.658622px;}
.ws1c6{word-spacing:12.669382px;}
.ws46{word-spacing:12.680141px;}
.ws45{word-spacing:12.690901px;}
.ws1d3{word-spacing:12.696281px;}
.ws1f2{word-spacing:12.707040px;}
.ws26{word-spacing:12.712420px;}
.ws28{word-spacing:12.717800px;}
.ws44{word-spacing:12.723180px;}
.ws4f{word-spacing:12.739319px;}
.ws41{word-spacing:12.744699px;}
.ws1c{word-spacing:12.750079px;}
.ws49{word-spacing:12.760838px;}
.ws78{word-spacing:12.766218px;}
.ws2d{word-spacing:12.776978px;}
.ws1b{word-spacing:12.782357px;}
.ws24{word-spacing:12.793117px;}
.ws35{word-spacing:12.798497px;}
.ws34{word-spacing:12.803876px;}
.ws22{word-spacing:12.814636px;}
.ws2c{word-spacing:12.820016px;}
.ws25{word-spacing:12.825396px;}
.ws23{word-spacing:12.836155px;}
.ws20{word-spacing:12.841535px;}
.ws1f{word-spacing:12.857674px;}
.ws1ce{word-spacing:12.863054px;}
.ws21{word-spacing:12.868434px;}
.ws38{word-spacing:12.873814px;}
.ws1cf{word-spacing:12.879193px;}
.ws48{word-spacing:12.884573px;}
.ws30{word-spacing:12.900712px;}
.ws2e{word-spacing:12.906092px;}
.ws1e5{word-spacing:12.911472px;}
.ws31{word-spacing:12.916852px;}
.ws3f{word-spacing:12.922232px;}
.ws50{word-spacing:12.927611px;}
.ws43{word-spacing:12.932991px;}
.ws33{word-spacing:12.943751px;}
.ws39{word-spacing:12.949130px;}
.ws3b{word-spacing:12.954510px;}
.ws2a{word-spacing:12.959890px;}
.ws51{word-spacing:12.970650px;}
.ws1cb{word-spacing:12.981409px;}
.ws37{word-spacing:12.992169px;}
.ws2f{word-spacing:13.008308px;}
.ws1fa{word-spacing:13.013688px;}
.ws1b6{word-spacing:13.035207px;}
.ws47{word-spacing:13.040587px;}
.ws2b{word-spacing:13.056726px;}
.ws42{word-spacing:13.067486px;}
.ws4e{word-spacing:13.094385px;}
.ws1d5{word-spacing:13.105144px;}
.ws32{word-spacing:13.110524px;}
.ws1e{word-spacing:13.115904px;}
.ws3a{word-spacing:13.126663px;}
.ws27{word-spacing:13.137423px;}
.ws1fb{word-spacing:13.164322px;}
.ws29{word-spacing:13.169701px;}
.ws1d4{word-spacing:13.201980px;}
.ws1e7{word-spacing:13.271917px;}
.ws4d{word-spacing:13.357994px;}
.ws16a{word-spacing:13.367801px;}
.ws53{word-spacing:13.374133px;}
.ws16b{word-spacing:13.464340px;}
.ws1bd{word-spacing:13.567805px;}
.ws117{word-spacing:13.583594px;}
.ws1c7{word-spacing:13.626983px;}
.ws167{word-spacing:13.708527px;}
.ws132{word-spacing:13.731242px;}
.ws1b0{word-spacing:13.815275px;}
.ws1b2{word-spacing:13.842174px;}
.wsb6{word-spacing:13.885872px;}
.ws1b1{word-spacing:13.939010px;}
.ws15f{word-spacing:14.029333px;}
.ws1cd{word-spacing:14.068125px;}
.ws150{word-spacing:14.071176px;}
.wsbb{word-spacing:14.089109px;}
.wsb5{word-spacing:14.178772px;}
.ws1fd{word-spacing:14.181100px;}
.ws164{word-spacing:14.226593px;}
.ws1a6{word-spacing:14.274413px;}
.wsd4{word-spacing:14.286368px;}
.ws1f3{word-spacing:14.326354px;}
.ws1bb{word-spacing:14.337114px;}
.ws1a7{word-spacing:14.364077px;}
.ws8d{word-spacing:14.376032px;}
.ws1bf{word-spacing:14.412431px;}
.ws11{word-spacing:14.448319px;}
.ws79{word-spacing:14.507538px;}
.ws166{word-spacing:14.571698px;}
.ws198{word-spacing:14.585246px;}
.ws7b{word-spacing:14.597202px;}
.ws113{word-spacing:14.633067px;}
.ws15a{word-spacing:14.668932px;}
.wsc{word-spacing:14.699376px;}
.ws1be{word-spacing:14.745977px;}
.wsf{word-spacing:14.768416px;}
.ws184{word-spacing:14.776528px;}
.ws9{word-spacing:14.780969px;}
.ws10{word-spacing:14.787246px;}
.wsd{word-spacing:14.793522px;}
.wsbc{word-spacing:14.824349px;}
.ws6{word-spacing:14.912774px;}
.ws1a{word-spacing:14.925327px;}
.ws1b7{word-spacing:14.928890px;}
.ws14{word-spacing:14.937880px;}
.ws174{word-spacing:14.940818px;}
.ws165{word-spacing:14.952175px;}
.ws13{word-spacing:14.975538px;}
.ws173{word-spacing:14.986248px;}
.ws1b5{word-spacing:14.988067px;}
.ws16{word-spacing:14.994367px;}
.wsa{word-spacing:15.006920px;}
.wse{word-spacing:15.013197px;}
.ws15{word-spacing:15.019473px;}
.ws17{word-spacing:15.044579px;}
.ws10b{word-spacing:15.069429px;}
.ws18{word-spacing:15.069684px;}
.ws7{word-spacing:15.113619px;}
.ws12{word-spacing:15.119896px;}
.ws5{word-spacing:15.126172px;}
.wsb{word-spacing:15.132449px;}
.ws10c{word-spacing:15.165070px;}
.ws4{word-spacing:15.201489px;}
.ws19{word-spacing:15.283083px;}
.ws1d2{word-spacing:15.359272px;}
.ws10a{word-spacing:15.374284px;}
.ws1c0{word-spacing:15.434589px;}
.ws112{word-spacing:15.446015px;}
.wsd7{word-spacing:15.457970px;}
.ws188{word-spacing:15.463948px;}
.ws1d1{word-spacing:15.504526px;}
.ws149{word-spacing:15.505791px;}
.ws15b{word-spacing:15.517944px;}
.ws197{word-spacing:15.631319px;}
.wsbd{word-spacing:15.636301px;}
.ws1c5{word-spacing:15.642877px;}
.ws208{word-spacing:15.649780px;}
.ws1f7{word-spacing:15.676679px;}
.ws199{word-spacing:15.682329px;}
.ws80{word-spacing:15.715005px;}
.ws100{word-spacing:15.794111px;}
.ws1bc{word-spacing:15.838072px;}
.ws1c9{word-spacing:15.881111px;}
.ws1f0{word-spacing:15.913389px;}
.wsa1{word-spacing:15.948130px;}
.wsc5{word-spacing:15.960085px;}
.wsc4{word-spacing:15.983995px;}
.ws17e{word-spacing:16.055726px;}
.wsc9{word-spacing:16.163322px;}
.ws201{word-spacing:16.343772px;}
.wsa0{word-spacing:16.396447px;}
.ws200{word-spacing:16.505165px;}
.wsd1{word-spacing:16.539909px;}
.ws17d{word-spacing:16.605662px;}
.ws196{word-spacing:16.653482px;}
.ws1aa{word-spacing:16.689348px;}
.ws1dc{word-spacing:16.903269px;}
.ws1ec{word-spacing:16.908649px;}
.ws1cc{word-spacing:16.957067px;}
.ws1db{word-spacing:16.978586px;}
.ws1ab{word-spacing:17.131687px;}
.ws1a8{word-spacing:17.227328px;}
.ws76{word-spacing:17.295993px;}
.ws169{word-spacing:17.325897px;}
.ws19c{word-spacing:17.334924px;}
.ws54{word-spacing:17.457386px;}
.ws91{word-spacing:17.502296px;}
.ws92{word-spacing:17.526206px;}
.ws189{word-spacing:17.603914px;}
.ws9f{word-spacing:17.675645px;}
.ws17f{word-spacing:17.693578px;}
.ws168{word-spacing:17.723410px;}
.ws58{word-spacing:17.807072px;}
.ws56{word-spacing:17.866249px;}
.ws57{word-spacing:17.887768px;}
.ws153{word-spacing:18.016366px;}
.ws114{word-spacing:18.018705px;}
.ws148{word-spacing:18.153850px;}
.ws9d{word-spacing:18.177760px;}
.ws9c{word-spacing:18.225580px;}
.wsd0{word-spacing:18.237536px;}
.ws10e{word-spacing:18.327199px;}
.ws1ae{word-spacing:18.363064px;}
.ws10d{word-spacing:18.386975px;}
.ws19a{word-spacing:18.452728px;}
.wsc7{word-spacing:18.482616px;}
.ws108{word-spacing:18.494571px;}
.ws18b{word-spacing:18.506526px;}
.wscf{word-spacing:18.518481px;}
.ws18c{word-spacing:18.542391px;}
.wscc{word-spacing:18.566301px;}
.ws82{word-spacing:18.649987px;}
.ws1ba{word-spacing:18.700115px;}
.ws1d6{word-spacing:18.743154px;}
.ws89{word-spacing:18.787471px;}
.ws101{word-spacing:18.799426px;}
.ws1c3{word-spacing:18.818470px;}
.ws131{word-spacing:18.830768px;}
.ws88{word-spacing:18.895067px;}
.wse4{word-spacing:18.913000px;}
.wse5{word-spacing:19.062439px;}
.ws7e{word-spacing:19.104282px;}
.ws1ad{word-spacing:19.217855px;}
.wse0{word-spacing:19.223833px;}
.ws107{word-spacing:19.331429px;}
.ws73{word-spacing:19.367208px;}
.ws195{word-spacing:19.373272px;}
.ws14d{word-spacing:19.456958px;}
.ws106{word-spacing:19.516733px;}
.ws140{word-spacing:19.588464px;}
.ws194{word-spacing:19.606397px;}
.ws99{word-spacing:19.779746px;}
.ws2{word-spacing:19.825119px;}
.ws141{word-spacing:20.006893px;}
.ws1fe{word-spacing:20.034301px;}
.wsfc{word-spacing:20.060691px;}
.ws8c{word-spacing:20.126445px;}
.ws1f8{word-spacing:20.190314px;}
.ws111{word-spacing:20.263928px;}
.ws206{word-spacing:20.314049px;}
.ws207{word-spacing:20.335568px;}
.wsff{word-spacing:20.359569px;}
.ws7a{word-spacing:20.383480px;}
.ws8e{word-spacing:20.389457px;}
.ws86{word-spacing:20.407390px;}
.ws185{word-spacing:20.419345px;}
.ws3{word-spacing:20.469498px;}
.ws193{word-spacing:20.479121px;}
.ws181{word-spacing:20.604649px;}
.ws1a1{word-spacing:20.628560px;}
.ws10f{word-spacing:20.724201px;}
.wsb3{word-spacing:20.772021px;}
.ws5a{word-spacing:20.776710px;}
.ws109{word-spacing:20.831797px;}
.wsdf{word-spacing:20.879617px;}
.ws180{word-spacing:20.945370px;}
.ws110{word-spacing:21.035034px;}
.wsc3{word-spacing:21.172518px;}
.ws7c{word-spacing:21.286091px;}
.ws95{word-spacing:21.441508px;}
.ws105{word-spacing:21.555081px;}
.wsf5{word-spacing:21.764296px;}
.ws1ef{word-spacing:21.804248px;}
.ws1b9{word-spacing:21.809628px;}
.ws84{word-spacing:21.830049px;}
.wsf8{word-spacing:21.836027px;}
.ws96{word-spacing:22.051219px;}
.ws90{word-spacing:22.116972px;}
.wsf0{word-spacing:22.122950px;}
.wsee{word-spacing:22.182725px;}
.ws1ca{word-spacing:22.196972px;}
.ws209{word-spacing:22.207732px;}
.ws72{word-spacing:22.218491px;}
.wsa3{word-spacing:22.391940px;}
.wsa2{word-spacing:22.433783px;}
.ws55{word-spacing:22.482101px;}
.wsbe{word-spacing:22.529424px;}
.wsc6{word-spacing:22.577244px;}
.ws1c4{word-spacing:22.686532px;}
.wsae{word-spacing:22.762548px;}
.ws1e6{word-spacing:22.767229px;}
.wsfa{word-spacing:22.917965px;}
.ws1e8{word-spacing:23.111535px;}
.wscd{word-spacing:23.198910px;}
.ws20d{word-spacing:23.407423px;}
.ws146{word-spacing:23.408125px;}
.ws1ff{word-spacing:23.434322px;}
.ws147{word-spacing:23.533654px;}
.ws19e{word-spacing:23.539631px;}
.ws20c{word-spacing:23.590335px;}
.wsb2{word-spacing:23.748846px;}
.wsef{word-spacing:23.892307px;}
.ws19d{word-spacing:23.934150px;}
.ws1c1{word-spacing:24.031477px;}
.ws1a3{word-spacing:24.065657px;}
.ws103{word-spacing:24.089567px;}
.ws157{word-spacing:24.173253px;}
.ws1a4{word-spacing:24.233028px;}
.ws1da{word-spacing:24.311226px;}
.wse9{word-spacing:24.322692px;}
.ws1c2{word-spacing:24.354264px;}
.ws102{word-spacing:24.436265px;}
.ws163{word-spacing:24.466153px;}
.wsd6{word-spacing:24.711233px;}
.wsfb{word-spacing:24.735143px;}
.ws20e{word-spacing:24.972939px;}
.ws160{word-spacing:24.992178px;}
.ws70{word-spacing:25.026737px;}
.wsd9{word-spacing:25.087819px;}
.wsad{word-spacing:25.093797px;}
.wsa8{word-spacing:25.129662px;}
.ws144{word-spacing:25.261169px;}
.ws71{word-spacing:25.338764px;}
.ws7f{word-spacing:25.356810px;}
.ws151{word-spacing:25.368765px;}
.ws59{word-spacing:25.371042px;}
.ws1f9{word-spacing:25.414081px;}
.ws9b{word-spacing:25.434518px;}
.ws152{word-spacing:25.458428px;}
.ws20f{word-spacing:25.618512px;}
.ws1df{word-spacing:25.693829px;}
.ws1ea{word-spacing:26.317884px;}
.wse8{word-spacing:26.319197px;}
.ws1eb{word-spacing:26.409340px;}
.ws94{word-spacing:26.420815px;}
.wse3{word-spacing:26.426793px;}
.ws8b{word-spacing:26.468636px;}
.ws14a{word-spacing:26.516456px;}
.wsf6{word-spacing:26.600142px;}
.ws191{word-spacing:26.659918px;}
.wsb9{word-spacing:26.671873px;}
.ws1b8{word-spacing:26.834343px;}
.ws145{word-spacing:26.869132px;}
.ws9a{word-spacing:26.893042px;}
.ws98{word-spacing:26.940863px;}
.wsc8{word-spacing:26.964773px;}
.wsd3{word-spacing:26.988683px;}
.ws1de{word-spacing:26.995736px;}
.wsab{word-spacing:27.024549px;}
.ws1d0{word-spacing:27.114091px;}
.wsfe{word-spacing:27.156055px;}
.ws116{word-spacing:27.252369px;}
.ws74{word-spacing:27.318523px;}
.ws175{word-spacing:27.598774px;}
.ws19b{word-spacing:27.688058px;}
.ws204{word-spacing:27.695107px;}
.wsce{word-spacing:27.879340px;}
.ws19f{word-spacing:27.951071px;}
.ws85{word-spacing:28.064644px;}
.ws77{word-spacing:28.211566px;}
.wsac{word-spacing:28.220061px;}
.ws205{word-spacing:28.351441px;}
.wsb4{word-spacing:28.417320px;}
.wsa9{word-spacing:28.471118px;}
.wsed{word-spacing:28.477096px;}
.ws162{word-spacing:28.512961px;}
.wsaa{word-spacing:28.614580px;}
.ws161{word-spacing:28.662400px;}
.ws104{word-spacing:28.769996px;}
.ws83{word-spacing:28.781951px;}
.ws115{word-spacing:28.882173px;}
.ws87{word-spacing:28.943346px;}
.ws81{word-spacing:29.062897px;}
.ws1a2{word-spacing:29.188425px;}
.ws15e{word-spacing:29.535124px;}
.ws5f{word-spacing:29.668272px;}
.wsd5{word-spacing:29.792159px;}
.wsc0{word-spacing:30.001374px;}
.ws14e{word-spacing:30.150813px;}
.ws1b3{word-spacing:30.164426px;}
.wsa6{word-spacing:30.318184px;}
.ws1a5{word-spacing:30.401870px;}
.ws8f{word-spacing:30.539354px;}
.ws14b{word-spacing:31.149065px;}
.wsa4{word-spacing:31.172975px;}
.ws1dd{word-spacing:31.213484px;}
.wsa5{word-spacing:31.232751px;}
.wsdc{word-spacing:31.316437px;}
.ws9e{word-spacing:31.495764px;}
.ws203{word-spacing:31.541650px;}
.ws14c{word-spacing:31.579449px;}
.ws1d8{word-spacing:31.778360px;}
.ws1a0{word-spacing:31.806597px;}
.ws1d9{word-spacing:31.853677px;}
.ws202{word-spacing:31.864437px;}
.ws192{word-spacing:31.914193px;}
.ws8a{word-spacing:32.338600px;}
.ws187{word-spacing:32.350555px;}
.wsba{word-spacing:32.374465px;}
.wsf7{word-spacing:32.452173px;}
.wsaf{word-spacing:32.804849px;}
.wsec{word-spacing:32.846692px;}
.ws186{word-spacing:32.870602px;}
.ws1e3{word-spacing:33.004950px;}
.wsf2{word-spacing:33.026019px;}
.wsc2{word-spacing:33.121660px;}
.wsc1{word-spacing:33.247189px;}
.ws13f{word-spacing:33.552044px;}
.wscb{word-spacing:33.611820px;}
.ws18d{word-spacing:33.695506px;}
.ws1f4{word-spacing:33.763499px;}
.ws1f5{word-spacing:33.919513px;}
.ws1d7{word-spacing:34.021729px;}
.ws190{word-spacing:34.084047px;}
.ws1f6{word-spacing:34.140084px;}
.ws142{word-spacing:34.209576px;}
.ws143{word-spacing:34.305217px;}
.wsca{word-spacing:34.323150px;}
.wsf3{word-spacing:34.466611px;}
.wsf4{word-spacing:34.657893px;}
.ws1e4{word-spacing:34.688821px;}
.wsbf{word-spacing:34.717668px;}
.wsa7{word-spacing:34.765489px;}
.wseb{word-spacing:35.231739px;}
.wsfd{word-spacing:35.327380px;}
.ws1a9{word-spacing:35.656145px;}
.wsd8{word-spacing:35.703966px;}
.wsb8{word-spacing:35.913180px;}
.ws75{word-spacing:35.979969px;}
.wsda{word-spacing:36.947298px;}
.wsdb{word-spacing:37.216289px;}
.ws15d{word-spacing:37.497234px;}
.ws93{word-spacing:38.465599px;}
.ws1ac{word-spacing:38.519397px;}
.ws15c{word-spacing:38.567217px;}
.wse2{word-spacing:39.302457px;}
.ws154{word-spacing:40.533834px;}
.ws1b4{word-spacing:41.187596px;}
.wsd2{word-spacing:41.233209px;}
.ws1af{word-spacing:42.082022px;}
.ws1e0{word-spacing:42.328109px;}
.ws1e1{word-spacing:42.344248px;}
.ws182{word-spacing:42.410788px;}
.ws183{word-spacing:42.458609px;}
.ws1e2{word-spacing:42.683175px;}
.ws1ed{word-spacing:43.135076px;}
.ws1ee{word-spacing:43.237292px;}
.wsdd{word-spacing:43.606300px;}
.ws159{word-spacing:44.144281px;}
.wse1{word-spacing:44.759969px;}
.ws18f{word-spacing:45.393591px;}
.ws18e{word-spacing:45.459344px;}
.ws97{word-spacing:45.877773px;}
.ws155{word-spacing:46.284247px;}
.ws20b{word-spacing:46.443641px;}
.ws20a{word-spacing:46.459780px;}
.ws1c8{word-spacing:47.056936px;}
.ws158{word-spacing:47.067307px;}
.wsea{word-spacing:47.850368px;}
.wsb0{word-spacing:47.981874px;}
.wsf1{word-spacing:52.255830px;}
.wsb1{word-spacing:54.270267px;}
.ws18a{word-spacing:54.479482px;}
.wse7{word-spacing:54.879978px;}
.wse6{word-spacing:55.137013px;}
.ws1f1{word-spacing:57.219340px;}
.wsf9{word-spacing:57.504127px;}
.wsb7{word-spacing:57.611723px;}
.ws156{word-spacing:60.194029px;}
.ws14f{word-spacing:65.095628px;}
.ws135{word-spacing:213.177345px;}
.ws13d{word-spacing:320.980677px;}
.ws13a{word-spacing:339.908307px;}
.ws138{word-spacing:346.034203px;}
.ws13b{word-spacing:351.136725px;}
.ws137{word-spacing:357.190889px;}
.ws171{word-spacing:842.069164px;}
.ws133{word-spacing:849.342769px;}
.ws170{word-spacing:861.484572px;}
.ws172{word-spacing:867.691763px;}
._58{margin-left:-884.644379px;}
._d{margin-left:-19.238093px;}
._a{margin-left:-15.188936px;}
._12{margin-left:-12.377395px;}
._3{margin-left:-10.247974px;}
._2{margin-left:-8.807974px;}
._5{margin-left:-7.740000px;}
._4{margin-left:-5.280053px;}
._1{margin-left:-4.008026px;}
._6{margin-left:-2.940000px;}
._0{margin-left:-1.919987px;}
._14{width:1.054439px;}
._7{width:2.160000px;}
._13{width:10.950261px;}
._e{width:12.066847px;}
._c{width:14.111163px;}
._55{width:15.147137px;}
._b{width:16.243375px;}
._22{width:17.828673px;}
._10{width:19.119738px;}
._9{width:21.072034px;}
._19{width:22.363254px;}
._f{width:23.751729px;}
._64{width:25.051954px;}
._15{width:26.102693px;}
._1b{width:27.813587px;}
._17{width:29.411257px;}
._24{width:30.880075px;}
._1d{width:32.087542px;}
._1a{width:33.569977px;}
._21{width:34.622028px;}
._1f{width:35.859382px;}
._16{width:37.217318px;}
._1c{width:39.076511px;}
._54{width:40.199091px;}
._23{width:42.414378px;}
._62{width:43.783239px;}
._53{width:47.533557px;}
._1e{width:49.643636px;}
._63{width:55.634352px;}
._20{width:61.317810px;}
._18{width:68.777805px;}
._65{width:86.118731px;}
._11{width:107.113133px;}
._27{width:124.717690px;}
._25{width:159.654276px;}
._29{width:172.443247px;}
._28{width:182.547867px;}
._2a{width:222.095999px;}
._31{width:235.906762px;}
._2e{width:250.697859px;}
._2f{width:262.103215px;}
._4c{width:287.692339px;}
._2d{width:323.438686px;}
._51{width:326.044942px;}
._30{width:328.608158px;}
._52{width:338.971012px;}
._2c{width:341.739859px;}
._4d{width:344.456104px;}
._43{width:346.082024px;}
._3a{width:351.112815px;}
._3f{width:357.238710px;}
._49{width:360.002776px;}
._35{width:362.341232px;}
._36{width:363.359824px;}
._50{width:364.751421px;}
._2b{width:371.317272px;}
._4b{width:375.472934px;}
._42{width:378.236999px;}
._39{width:388.939384px;}
._34{width:400.096070px;}
._32{width:407.752244px;}
._3e{width:414.342005px;}
._44{width:423.198492px;}
._38{width:426.019942px;}
._37{width:429.702175px;}
._40{width:433.417882px;}
._33{width:437.243578px;}
._4e{width:443.842904px;}
._3c{width:448.400264px;}
._3d{width:453.086742px;}
._41{width:456.305108px;}
._5e{width:457.390650px;}
._45{width:473.300763px;}
._4f{width:479.378837px;}
._4a{width:487.470184px;}
._47{width:493.677376px;}
._48{width:495.159833px;}
._3b{width:501.185304px;}
._46{width:511.863778px;}
._26{width:524.340330px;}
._5a{width:568.517554px;}
._60{width:594.317091px;}
._57{width:695.038103px;}
._56{width:755.771027px;}
._5c{width:770.600381px;}
._5d{width:777.515327px;}
._59{width:780.068979px;}
._5b{width:808.360001px;}
._61{width:823.375857px;}
._5f{width:841.696159px;}
._8{width:1202.153960px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(80,130,65);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:31.047600px;}
.fs11{font-size:33.473400px;}
.fs9{font-size:34.929000px;}
.fs13{font-size:38.810400px;}
.fs8{font-size:40.750800px;}
.fsd{font-size:41.842800px;}
.fsb{font-size:44.830800px;}
.fsc{font-size:47.821200px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:53.797800px;}
.fs5{font-size:54.000000px;}
.fs10{font-size:56.787600px;}
.fse{font-size:59.775600px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:62.764200px;}
.fsf{font-size:65.754000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:83.685600px;}
.fs0{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:27.928500px;}
.yc0{bottom:29.932927px;}
.ybf{bottom:41.924027px;}
.ybe{bottom:53.829350px;}
.ybd{bottom:65.820450px;}
.y24{bottom:67.597501px;}
.y23{bottom:84.097501px;}
.ybc{bottom:85.209450px;}
.y216{bottom:85.210141px;}
.y24e{bottom:85.213013px;}
.y22{bottom:93.052501px;}
.y18d{bottom:99.065203px;}
.ybb{bottom:99.070800px;}
.y215{bottom:101.707236px;}
.y24d{bottom:101.710108px;}
.y1df{bottom:101.789781px;}
.y125{bottom:104.701425px;}
.yf8{bottom:104.706895px;}
.y1d0{bottom:104.852053px;}
.y18c{bottom:112.501765px;}
.y1de{bottom:115.311225px;}
.y214{bottom:118.119600px;}
.y24c{bottom:118.122472px;}
.y1cf{bottom:118.288615px;}
.y124{bottom:124.089641px;}
.yf7{bottom:124.095110px;}
.y18b{bottom:125.938327px;}
.y1dd{bottom:128.747787px;}
.y1ce{bottom:131.725177px;}
.y24b{bottom:134.534836px;}
.y18a{bottom:139.374888px;}
.y1dc{bottom:142.184348px;}
.y123{bottom:143.563037px;}
.yf6{bottom:143.568507px;}
.y1cd{bottom:145.161738px;}
.y213{bottom:147.288150px;}
.y24a{bottom:151.031931px;}
.yb5{bottom:152.392627px;}
.y189{bottom:152.896333px;}
.y1db{bottom:155.620910px;}
.y1cb{bottom:156.642450px;}
.y1ca{bottom:158.598138px;}
.y1cc{bottom:158.598300px;}
.y21{bottom:160.333500px;}
.y122{bottom:162.951253px;}
.yf5{bottom:162.956722px;}
.y188{bottom:166.332894px;}
.yb4{bottom:167.359175px;}
.y249{bottom:167.444295px;}
.y1da{bottom:169.057472px;}
.y1c8{bottom:170.163750px;}
.y1c7{bottom:172.034406px;}
.y1c9{bottom:172.034700px;}
.y187{bottom:179.769456px;}
.yb3{bottom:182.325723px;}
.y121{bottom:182.424649px;}
.yf4{bottom:182.430119px;}
.y1d9{bottom:182.494033px;}
.y1c5{bottom:183.600000px;}
.y248{bottom:183.856659px;}
.y1c4{bottom:185.554904px;}
.y1c6{bottom:185.555850px;}
.y186{bottom:193.206018px;}
.y1d8{bottom:196.015478px;}
.yb2{bottom:197.207540px;}
.y212{bottom:198.835050px;}
.y1c3{bottom:198.991466px;}
.y247{bottom:200.355099px;}
.y120{bottom:201.812865px;}
.yf3{bottom:201.818334px;}
.y185{bottom:206.642579px;}
.y1d7{bottom:209.452039px;}
.yb1{bottom:212.174088px;}
.y1c2{bottom:212.428028px;}
.y246{bottom:216.767463px;}
.yba{bottom:217.954765px;}
.y211{bottom:218.223266px;}
.y184{bottom:220.079141px;}
.y11f{bottom:221.286261px;}
.yf2{bottom:221.291730px;}
.y20{bottom:221.752501px;}
.y1d6{bottom:222.888601px;}
.y1c1{bottom:225.864589px;}
.yb0{bottom:227.140636px;}
.yb9{bottom:231.391327px;}
.y245{bottom:233.179827px;}
.y183{bottom:233.600585px;}
.y210{bottom:237.696662px;}
.y1c0{bottom:239.301151px;}
.y1d4{bottom:240.661350px;}
.y11e{bottom:240.674477px;}
.yf1{bottom:240.679946px;}
.yaf{bottom:242.107184px;}
.yb8{bottom:244.827888px;}
.y182{bottom:247.037147px;}
.y244{bottom:249.592191px;}
.y1d5{bottom:254.097912px;}
.yae{bottom:256.989000px;}
.y1be{bottom:257.073900px;}
.y20f{bottom:257.084878px;}
.yb7{bottom:258.264450px;}
.y11d{bottom:260.062692px;}
.yf0{bottom:260.068162px;}
.y181{bottom:260.473709px;}
.y243{bottom:266.089286px;}
.y1bf{bottom:270.510462px;}
.yb6{bottom:271.700700px;}
.yad{bottom:271.955850px;}
.y1d3{bottom:272.039946px;}
.y180{bottom:273.910270px;}
.y20e{bottom:276.558274px;}
.y11c{bottom:279.536089px;}
.yef{bottom:279.541558px;}
.y242{bottom:282.501650px;}
.y17f{bottom:287.346832px;}
.y1bd{bottom:288.452496px;}
.y1d2{bottom:288.452983px;}
.y1f{bottom:289.033500px;}
.y20d{bottom:295.946490px;}
.y241{bottom:298.914014px;}
.y11b{bottom:298.924304px;}
.yee{bottom:298.929774px;}
.y17e{bottom:300.783394px;}
.y1bc{bottom:304.950714px;}
.y1d1{bottom:304.951200px;}
.y17d{bottom:314.219955px;}
.y240{bottom:315.412454px;}
.y20c{bottom:315.419886px;}
.y11a{bottom:318.397700px;}
.yed{bottom:318.403170px;}
.y1bb{bottom:321.363750px;}
.yac{bottom:327.401852px;}
.y1d{bottom:327.733501px;}
.y17c{bottom:327.741400px;}
.y23f{bottom:331.824818px;}
.y20b{bottom:334.808102px;}
.y119{bottom:337.785916px;}
.yec{bottom:337.791386px;}
.y17b{bottom:341.177961px;}
.yab{bottom:342.368400px;}
.ya9{bottom:342.368534px;}
.y1c{bottom:342.733501px;}
.yaa{bottom:348.151200px;}
.y23e{bottom:348.237182px;}
.y1e{bottom:350.452501px;}
.y20a{bottom:354.281498px;}
.y17a{bottom:354.614523px;}
.ya8{bottom:357.250350px;}
.ya6{bottom:357.250652px;}
.y118{bottom:357.259312px;}
.yeb{bottom:357.264782px;}
.y1b{bottom:357.733501px;}
.ya7{bottom:363.118050px;}
.y1b8{bottom:363.890370px;}
.y23d{bottom:364.734277px;}
.y179{bottom:368.051085px;}
.ya5{bottom:372.217200px;}
.ya3{bottom:372.217652px;}
.y1a{bottom:372.733501px;}
.y209{bottom:373.669714px;}
.y1a7{bottom:375.712912px;}
.y117{bottom:376.647528px;}
.yea{bottom:376.652998px;}
.ya4{bottom:378.084900px;}
.y23c{bottom:381.146641px;}
.y1b7{bottom:383.278586px;}
.y178{bottom:385.823834px;}
.ya2{bottom:387.184200px;}
.ya0{bottom:387.184652px;}
.y19{bottom:387.733501px;}
.ya1{bottom:392.966850px;}
.y208{bottom:393.059424px;}
.y1a6{bottom:395.186309px;}
.y116{bottom:396.120924px;}
.ye9{bottom:396.126394px;}
.y23b{bottom:397.559005px;}
.y9d{bottom:402.151184px;}
.y9f{bottom:402.151200px;}
.y18{bottom:402.733501px;}
.y1b6{bottom:402.751982px;}
.y177{bottom:403.511700px;}
.y9e{bottom:407.933850px;}
.y207{bottom:412.532820px;}
.y23a{bottom:413.971369px;}
.y1a5{bottom:414.574524px;}
.y115{bottom:415.509140px;}
.ye8{bottom:415.514610px;}
.y9c{bottom:417.033000px;}
.y9a{bottom:417.033302px;}
.y17{bottom:417.733500px;}
.y176{bottom:421.454383px;}
.y1b5{bottom:422.140198px;}
.y9b{bottom:422.900700px;}
.y239{bottom:430.469809px;}
.y206{bottom:431.921036px;}
.y99{bottom:431.999850px;}
.y97{bottom:432.000302px;}
.y1a4{bottom:433.962740px;}
.y114{bottom:434.897356px;}
.ye7{bottom:434.902826px;}
.y98{bottom:437.867550px;}
.y175{bottom:437.952600px;}
.y1b4{bottom:441.613594px;}
.y238{bottom:446.882173px;}
.y96{bottom:446.966850px;}
.y94{bottom:446.967152px;}
.y205{bottom:451.394432px;}
.y95{bottom:452.749500px;}
.y1a3{bottom:453.436136px;}
.y113{bottom:454.370752px;}
.ye6{bottom:454.376222px;}
.y1b3{bottom:461.001810px;}
.y93{bottom:461.933700px;}
.y91{bottom:461.933834px;}
.y237{bottom:463.294537px;}
.y92{bottom:467.716350px;}
.y204{bottom:470.782648px;}
.y1a2{bottom:472.824352px;}
.y112{bottom:473.758968px;}
.ye5{bottom:473.764438px;}
.y90{bottom:476.815650px;}
.y8e{bottom:476.816102px;}
.y236{bottom:479.791632px;}
.y1b2{bottom:480.475206px;}
.y8f{bottom:482.683350px;}
.y203{bottom:490.256044px;}
.y8d{bottom:491.782650px;}
.y8b{bottom:491.782952px;}
.y1a1{bottom:492.297748px;}
.y153{bottom:492.639814px;}
.y111{bottom:493.232364px;}
.y132{bottom:493.235874px;}
.ye4{bottom:493.237834px;}
.y235{bottom:496.203996px;}
.y8c{bottom:497.565300px;}
.y16{bottom:499.520985px;}
.y1b1{bottom:499.863422px;}
.y8a{bottom:506.749500px;}
.y88{bottom:506.749634px;}
.y202{bottom:509.644260px;}
.y1a0{bottom:511.685964px;}
.y152{bottom:512.029524px;}
.y89{bottom:512.532150px;}
.y234{bottom:512.616360px;}
.y110{bottom:512.620580px;}
.y131{bottom:512.624090px;}
.ye3{bottom:512.626050px;}
.y1b0{bottom:519.336818px;}
.y87{bottom:521.631450px;}
.y85{bottom:521.631752px;}
.y86{bottom:527.499150px;}
.y233{bottom:529.114800px;}
.y201{bottom:529.117656px;}
.y15{bottom:530.375996px;}
.y19f{bottom:531.159360px;}
.y151{bottom:531.502920px;}
.y10f{bottom:532.093976px;}
.y130{bottom:532.097486px;}
.ye2{bottom:532.099446px;}
.y84{bottom:536.598300px;}
.y82{bottom:536.598752px;}
.y1af{bottom:538.725034px;}
.y83{bottom:542.466000px;}
.y200{bottom:548.505872px;}
.y14{bottom:549.231007px;}
.y19e{bottom:550.547576px;}
.y150{bottom:550.891136px;}
.y10e{bottom:551.482192px;}
.y12f{bottom:551.485702px;}
.ye1{bottom:551.487662px;}
.y81{bottom:551.565300px;}
.y7f{bottom:551.565602px;}
.y80{bottom:557.347950px;}
.y1ae{bottom:558.113250px;}
.y232{bottom:558.198300px;}
.y7e{bottom:566.532150px;}
.y7c{bottom:566.532284px;}
.y1ff{bottom:567.979268px;}
.y13{bottom:568.086018px;}
.y19d{bottom:570.020972px;}
.y14f{bottom:570.364532px;}
.y10d{bottom:570.955588px;}
.y12e{bottom:570.959098px;}
.ye0{bottom:570.961058px;}
.y7d{bottom:572.314800px;}
.y7b{bottom:581.414100px;}
.y79{bottom:581.414402px;}
.y12{bottom:586.940984px;}
.y7a{bottom:587.281800px;}
.y1fe{bottom:587.367484px;}
.y19c{bottom:589.409188px;}
.y14e{bottom:589.752748px;}
.y10c{bottom:590.343804px;}
.y12d{bottom:590.347314px;}
.ydf{bottom:590.349274px;}
.y78{bottom:596.380950px;}
.y76{bottom:596.381704px;}
.y77{bottom:602.248650px;}
.y11{bottom:605.795995px;}
.y1fd{bottom:606.755700px;}
.y231{bottom:608.456550px;}
.y19b{bottom:608.882584px;}
.y14d{bottom:609.226144px;}
.y10b{bottom:609.817200px;}
.y12c{bottom:609.820710px;}
.yde{bottom:609.822670px;}
.y75{bottom:611.348252px;}
.y10{bottom:624.651005px;}
.y199{bottom:625.804500px;}
.y74{bottom:626.314800px;}
.y72{bottom:626.314934px;}
.y19a{bottom:628.270800px;}
.y198{bottom:628.271434px;}
.y14c{bottom:628.614360px;}
.y12b{bottom:629.208926px;}
.ydd{bottom:629.210886px;}
.y73{bottom:632.097450px;}
.y1fc{bottom:635.924250px;}
.y230{bottom:637.625100px;}
.y10a{bottom:638.900700px;}
.y71{bottom:641.196750px;}
.y6f{bottom:641.197052px;}
.yf{bottom:643.505994px;}
.y196{bottom:645.278550px;}
.y70{bottom:647.064450px;}
.y197{bottom:647.659650px;}
.y195{bottom:647.661088px;}
.y1ad{bottom:647.670971px;}
.y14b{bottom:648.087756px;}
.y12a{bottom:648.597142px;}
.ydc{bottom:648.599101px;}
.y6e{bottom:656.163600px;}
.y6c{bottom:656.164052px;}
.y6d{bottom:662.031300px;}
.ye{bottom:662.361005px;}
.y194{bottom:667.134484px;}
.y1ac{bottom:667.144367px;}
.y14a{bottom:667.475972px;}
.y129{bottom:668.070538px;}
.ydb{bottom:668.072498px;}
.y6b{bottom:671.130600px;}
.y69{bottom:671.130902px;}
.y6a{bottom:676.913250px;}
.yd{bottom:681.215993px;}
.y192{bottom:684.141600px;}
.y68{bottom:686.097450px;}
.y66{bottom:686.097584px;}
.y193{bottom:686.522700px;}
.y191{bottom:686.524642px;}
.y1ab{bottom:686.532583px;}
.y149{bottom:686.864188px;}
.y128{bottom:687.458754px;}
.yda{bottom:687.460713px;}
.y1fb{bottom:687.464728px;}
.y22f{bottom:687.884563px;}
.y67{bottom:691.880100px;}
.y109{bottom:693.013867px;}
.y65{bottom:700.979400px;}
.y63{bottom:700.979702px;}
.y22e{bottom:704.296927px;}
.y190{bottom:705.998038px;}
.y1aa{bottom:706.005979px;}
.y148{bottom:706.337584px;}
.y64{bottom:706.847100px;}
.y127{bottom:706.932150px;}
.yd9{bottom:706.934110px;}
.y1fa{bottom:706.938124px;}
.y108{bottom:712.402083px;}
.y62{bottom:715.946250px;}
.y60{bottom:715.946702px;}
.y22d{bottom:720.709291px;}
.y61{bottom:721.728900px;}
.y18f{bottom:725.386254px;}
.y1a9{bottom:725.394195px;}
.y147{bottom:725.725800px;}
.yd8{bottom:726.322325px;}
.y1f9{bottom:726.326340px;}
.y5f{bottom:730.913250px;}
.y107{bottom:731.790298px;}
.yc{bottom:734.115002px;}
.y5e{bottom:736.695900px;}
.y22c{bottom:737.206386px;}
.y18e{bottom:744.859650px;}
.y1a8{bottom:744.867591px;}
.y5d{bottom:745.795050px;}
.y5b{bottom:745.795502px;}
.yd7{bottom:745.795721px;}
.y1f8{bottom:745.799736px;}
.y106{bottom:751.263694px;}
.y5c{bottom:751.662750px;}
.y22b{bottom:753.618750px;}
.y146{bottom:754.894350px;}
.yb{bottom:755.115002px;}
.y5a{bottom:760.762050px;}
.y58{bottom:760.762352px;}
.yd6{bottom:765.183937px;}
.y1f7{bottom:765.187951px;}
.y59{bottom:766.629750px;}
.y105{bottom:770.653405px;}
.y57{bottom:775.728900px;}
.y55{bottom:775.729352px;}
.ya{bottom:776.115002px;}
.y56{bottom:781.511700px;}
.y22a{bottom:782.787300px;}
.y1ba{bottom:783.722214px;}
.yd5{bottom:784.657333px;}
.y1f6{bottom:784.661348px;}
.y104{bottom:790.126801px;}
.y54{bottom:790.695900px;}
.y52{bottom:790.696034px;}
.y53{bottom:796.478550px;}
.y9{bottom:797.115002px;}
.y174{bottom:798.261824px;}
.y1b9{bottom:800.135250px;}
.yd4{bottom:804.047044px;}
.y1f5{bottom:804.049563px;}
.y51{bottom:805.577850px;}
.y4f{bottom:805.578152px;}
.y103{bottom:809.515017px;}
.y50{bottom:811.445400px;}
.y173{bottom:811.698386px;}
.y8{bottom:818.115002px;}
.y4e{bottom:820.544700px;}
.y4c{bottom:820.545152px;}
.yd3{bottom:823.436754px;}
.y1f4{bottom:823.522960px;}
.y145{bottom:823.534919px;}
.y172{bottom:825.134947px;}
.y4d{bottom:826.412550px;}
.y102{bottom:828.988413px;}
.y229{bottom:833.045400px;}
.y4b{bottom:835.511700px;}
.y49{bottom:835.512002px;}
.y171{bottom:838.571509px;}
.y7{bottom:839.115002px;}
.y4a{bottom:841.294350px;}
.yd2{bottom:842.910150px;}
.y1f3{bottom:842.912670px;}
.y144{bottom:842.923134px;}
.y101{bottom:848.376629px;}
.y47{bottom:850.478550px;}
.y45{bottom:850.478684px;}
.y48{bottom:851.074361px;}
.y170{bottom:852.008071px;}
.y46{bottom:856.261200px;}
.y228{bottom:859.917900px;}
.y6{bottom:860.115002px;}
.y1f2{bottom:862.300886px;}
.y143{bottom:862.311350px;}
.y44{bottom:865.360500px;}
.y42{bottom:865.360802px;}
.y16f{bottom:865.444632px;}
.y100{bottom:867.850025px;}
.y43{bottom:871.228200px;}
.yd1{bottom:872.078550px;}
.y16e{bottom:878.966077px;}
.y41{bottom:880.327350px;}
.y5{bottom:881.115002px;}
.y1f1{bottom:881.774282px;}
.y142{bottom:881.784746px;}
.y40{bottom:886.110000px;}
.yff{bottom:887.238241px;}
.y16d{bottom:892.402638px;}
.y3f{bottom:895.294350px;}
.y3e{bottom:901.077000px;}
.y1f0{bottom:901.162498px;}
.y141{bottom:901.172962px;}
.y16a{bottom:905.838115px;}
.y16c{bottom:905.839200px;}
.yfe{bottom:906.626456px;}
.y227{bottom:910.185954px;}
.y16b{bottom:911.026650px;}
.y169{bottom:919.274677px;}
.y1ef{bottom:920.635894px;}
.y140{bottom:920.646358px;}
.yd0{bottom:921.574076px;}
.y3d{bottom:922.166700px;}
.y3b{bottom:922.167284px;}
.yfd{bottom:926.099853px;}
.y226{bottom:926.598318px;}
.y3c{bottom:928.969800px;}
.y168{bottom:932.711238px;}
.y4{bottom:938.779498px;}
.y1ee{bottom:940.025604px;}
.y13f{bottom:940.036069px;}
.y3a{bottom:940.110000px;}
.y38{bottom:940.110584px;}
.ycf{bottom:941.047472px;}
.y225{bottom:943.010682px;}
.y167{bottom:944.191950px;}
.yfc{bottom:945.488068px;}
.y166{bottom:946.147800px;}
.y39{bottom:946.913250px;}
.y164{bottom:957.713250px;}
.y37{bottom:958.053300px;}
.y35{bottom:958.053884px;}
.y1ed{bottom:959.499000px;}
.y25b{bottom:959.503294px;}
.y224{bottom:959.507777px;}
.y13e{bottom:959.509465px;}
.y163{bottom:959.582821px;}
.y165{bottom:959.584050px;}
.yce{bottom:960.435688px;}
.y36{bottom:964.856550px;}
.yfb{bottom:964.961464px;}
.y3{bottom:970.279498px;}
.y162{bottom:973.104265px;}
.y25a{bottom:975.915658px;}
.y223{bottom:975.920141px;}
.y268{bottom:975.921038px;}
.y34{bottom:975.996600px;}
.y32{bottom:975.997184px;}
.y1eb{bottom:976.506900px;}
.y1ec{bottom:978.888000px;}
.y1ea{bottom:978.893396px;}
.y13d{bottom:978.897680px;}
.ycd{bottom:979.909084px;}
.y33{bottom:982.799700px;}
.yfa{bottom:984.351175px;}
.y161{bottom:986.540827px;}
.y259{bottom:992.328022px;}
.y222{bottom:992.332505px;}
.y267{bottom:992.333401px;}
.y31{bottom:993.939900px;}
.y2f{bottom:993.940166px;}
.y1e9{bottom:998.366792px;}
.y13c{bottom:998.371077px;}
.ycc{bottom:999.297300px;}
.y160{bottom:999.977388px;}
.y30{bottom:1000.657950px;}
.yf9{bottom:1003.824571px;}
.y258{bottom:1008.825117px;}
.y221{bottom:1008.829600px;}
.y266{bottom:1008.830497px;}
.y2e{bottom:1011.798150px;}
.y2c{bottom:1011.798734px;}
.y15f{bottom:1013.412237px;}
.y1e8{bottom:1017.755008px;}
.y13b{bottom:1017.759292px;}
.y2d{bottom:1018.601250px;}
.y257{bottom:1025.237481px;}
.y220{bottom:1025.241964px;}
.y265{bottom:1025.242861px;}
.y15e{bottom:1026.848798px;}
.y29{bottom:1029.741450px;}
.y2b{bottom:1030.676637px;}
.y2{bottom:1035.546001px;}
.y2a{bottom:1036.544700px;}
.y1e7{bottom:1037.143224px;}
.y13a{bottom:1037.147508px;}
.y15d{bottom:1040.285360px;}
.y256{bottom:1041.649845px;}
.y21f{bottom:1041.654328px;}
.y264{bottom:1041.655224px;}
.y15c{bottom:1053.806804px;}
.y1e6{bottom:1056.616620px;}
.y139{bottom:1056.620904px;}
.y255{bottom:1058.062209px;}
.y21e{bottom:1058.066692px;}
.y263{bottom:1058.067588px;}
.ycb{bottom:1062.398846px;}
.y15b{bottom:1067.243366px;}
.y28{bottom:1068.604127px;}
.y254{bottom:1074.559304px;}
.y21d{bottom:1074.563787px;}
.y262{bottom:1074.564684px;}
.y1e5{bottom:1076.004836px;}
.y138{bottom:1076.009120px;}
.yca{bottom:1077.365394px;}
.y15a{bottom:1080.679928px;}
.y253{bottom:1090.971668px;}
.y21c{bottom:1090.976151px;}
.y261{bottom:1090.977048px;}
.yc9{bottom:1092.331942px;}
.y27{bottom:1092.500550px;}
.y159{bottom:1094.116489px;}
.y1e4{bottom:1095.479726px;}
.y137{bottom:1095.484011px;}
.yc8{bottom:1107.298490px;}
.y252{bottom:1107.384032px;}
.y21b{bottom:1107.388515px;}
.y260{bottom:1107.389411px;}
.y158{bottom:1107.553051px;}
.y1e3{bottom:1114.867942px;}
.y136{bottom:1114.872227px;}
.yc7{bottom:1122.180306px;}
.y251{bottom:1123.881127px;}
.y21a{bottom:1123.885610px;}
.y25f{bottom:1123.886507px;}
.y157{bottom:1125.325800px;}
.y1e2{bottom:1134.341338px;}
.y135{bottom:1134.345623px;}
.yc6{bottom:1137.146854px;}
.y250{bottom:1140.293491px;}
.y219{bottom:1140.297974px;}
.y25e{bottom:1140.298871px;}
.y156{bottom:1143.267996px;}
.yc5{bottom:1152.113402px;}
.y1e1{bottom:1153.729554px;}
.y134{bottom:1153.733839px;}
.y24f{bottom:1156.705855px;}
.y218{bottom:1156.710338px;}
.y25d{bottom:1156.711234px;}
.y155{bottom:1159.681033px;}
.yc3{bottom:1164.274518px;}
.y1{bottom:1165.122003px;}
.yc4{bottom:1167.079950px;}
.y1e0{bottom:1173.202950px;}
.y133{bottom:1173.207235px;}
.y217{bottom:1173.207433px;}
.y25c{bottom:1173.208330px;}
.y154{bottom:1176.179250px;}
.yc2{bottom:1177.710309px;}
.yc1{bottom:1191.146100px;}
.y26{bottom:1205.026501px;}
.y126{bottom:1213.596600px;}
.h22{height:22.199034px;}
.hf{height:24.974235px;}
.h23{height:27.982298px;}
.hc{height:29.381327px;}
.h1a{height:29.917602px;}
.h16{height:30.753929px;}
.h1b{height:32.054022px;}
.h1e{height:32.323007px;}
.h24{height:33.713946px;}
.h18{height:34.192158px;}
.h21{height:34.199011px;}
.h19{height:34.479085px;}
.h3{height:36.773438px;}
.h13{height:37.550864px;}
.h10{height:38.465427px;}
.h17{height:38.788214px;}
.h14{height:39.934107px;}
.h12{height:40.273033px;}
.h20{height:40.603134px;}
.h11{height:40.611959px;}
.h15{height:40.950885px;}
.h7{height:41.370117px;}
.h1c{height:43.098208px;}
.hd{height:43.809412px;}
.h1f{height:45.124600px;}
.hb{height:45.252988px;}
.h6{height:45.966797px;}
.h1d{height:47.408634px;}
.he{height:47.550158px;}
.h5{height:55.160156px;}
.ha{height:60.337318px;}
.h2{height:68.950195px;}
.h4{height:82.740234px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.h8{height:1262.835000px;}
.h9{height:1263.000000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:36.600000px;}
.x7{left:89.631450px;}
.xa1{left:91.843918px;}
.x58{left:94.223550px;}
.xb4{left:96.349402px;}
.x6f{left:98.900700px;}
.x9d{left:107.574750px;}
.xad{left:110.550638px;}
.xa9{left:112.081800px;}
.xb3{left:114.122850px;}
.xaa{left:117.694500px;}
.x99{left:120.755850px;}
.x76{left:124.667700px;}
.x9f{left:126.198450px;}
.x9a{left:129.940050px;}
.x57{left:132.321150px;}
.x77{left:133.851900px;}
.x4b{left:137.678700px;}
.x19{left:142.440900px;}
.x2{left:145.650000px;}
.x1a{left:148.223550px;}
.x4c{left:149.414100px;}
.x63{left:150.604650px;}
.x23{left:152.645550px;}
.x41{left:154.431450px;}
.x33{left:155.622000px;}
.x8{left:161.489700px;}
.x24{left:164.296050px;}
.x9{left:167.357400px;}
.xa0{left:169.994538px;}
.x69{left:175.606200px;}
.x65{left:187.339871px;}
.x1{left:191.880000px;}
.x3{left:197.700000px;}
.x71{left:202.816739px;}
.x4d{left:209.111700px;}
.x25{left:212.853450px;}
.x98{left:219.061350px;}
.x26{left:224.588850px;}
.x85{left:228.074915px;}
.x5{left:235.945505px;}
.x34{left:243.127500px;}
.xa2{left:244.659215px;}
.x35{left:254.862900px;}
.xa5{left:255.883350px;}
.x96{left:256.903800px;}
.x87{left:262.771808px;}
.x97{left:266.088150px;}
.xa4{left:273.656550px;}
.x91{left:276.803100px;}
.x7e{left:282.415650px;}
.x6a{left:285.902250px;}
.x4e{left:287.688150px;}
.xb1{left:289.729050px;}
.xa{left:291.514950px;}
.x4{left:293.590494px;}
.x6b{left:295.086600px;}
.xb{left:297.297600px;}
.x4f{left:299.338500px;}
.xa8{left:301.209300px;}
.xac{left:303.166063px;}
.xab{left:306.567345px;}
.x36{left:308.862900px;}
.x7c{left:316.431450px;}
.x80{left:317.707050px;}
.x37{left:320.598300px;}
.x74{left:322.894350px;}
.x7d{left:325.700700px;}
.x42{left:331.738500px;}
.x81{left:336.245550px;}
.x43{left:343.473900px;}
.x82{left:345.429900px;}
.x1b{left:347.811000px;}
.xae{left:350.191950px;}
.x27{left:351.212550px;}
.x75{left:352.233000px;}
.x1c{left:359.546400px;}
.x28{left:362.947950px;}
.xc{left:367.710150px;}
.xd{left:373.577850px;}
.xa3{left:374.938500px;}
.x62{left:382.591950px;}
.x44{left:383.782650px;}
.x5b{left:387.354313px;}
.x5f{left:388.544700px;}
.x90{left:392.881800px;}
.x45{left:395.518050px;}
.x38{left:399.004650px;}
.xa6{left:404.362050px;}
.x39{left:410.740050px;}
.xa7{left:412.866000px;}
.x7a{left:416.437650px;}
.x59{left:418.308450px;}
.x5a{left:422.900700px;}
.x7b{left:425.706900px;}
.x50{left:426.727500px;}
.x29{left:434.295900px;}
.x51{left:438.462900px;}
.x6e{left:444.330600px;}
.x2a{left:446.031300px;}
.x78{left:447.138009px;}
.xe{left:451.133700px;}
.xf{left:457.001400px;}
.x1d{left:459.467550px;}
.x3a{left:466.270800px;}
.xaf{left:468.821850px;}
.x1e{left:471.202950px;}
.x3b{left:477.921150px;}
.xb2{left:484.384298px;}
.x46{left:489.061350px;}
.x6c{left:491.698730px;}
.x8e{left:501.817200px;}
.x94{left:506.749500px;}
.x8f{left:511.001400px;}
.x72{left:514.828200px;}
.x95{left:515.933700px;}
.x73{left:524.012400px;}
.x84{left:528.604650px;}
.x3c{left:531.155700px;}
.x60{left:533.197570px;}
.x61{left:535.153120px;}
.x10{left:537.193650px;}
.x11{left:543.061350px;}
.x1f{left:544.335796px;}
.x2b{left:546.633000px;}
.x52{left:549.013950px;}
.x47{left:556.582500px;}
.x2c{left:558.368400px;}
.x53{left:560.664450px;}
.x86{left:568.998300px;}
.x66{left:573.675824px;}
.x12{left:579.202545px;}
.x8b{left:582.349500px;}
.x9b{left:587.366850px;}
.x5c{left:592.979400px;}
.x8c{left:594.510150px;}
.x9c{left:596.551050px;}
.x5d{left:597.571500px;}
.x88{left:600.888000px;}
.x8d{left:603.779400px;}
.x64{left:606.840750px;}
.x67{left:608.542178px;}
.x89{left:610.072200px;}
.x13{left:612.453300px;}
.x5e{left:616.280250px;}
.x14{left:618.321150px;}
.x3d{left:621.467550px;}
.x2d{left:624.954150px;}
.x70{left:627.675450px;}
.x79{left:632.012400px;}
.x3e{left:633.117900px;}
.x2e{left:636.689550px;}
.x8a{left:637.795050px;}
.x54{left:642.047100px;}
.x93{left:650.636100px;}
.x55{left:653.697450px;}
.xb0{left:664.923440px;}
.x9e{left:668.664300px;}
.x48{left:671.215650px;}
.x15{left:679.209300px;}
.x49{left:682.951050px;}
.x16{left:685.077000px;}
.x92{left:689.243850px;}
.x20{left:690.774600px;}
.x2f{left:699.108450px;}
.x6d{left:708.973050px;}
.x30{left:710.843850px;}
.x68{left:719.093967px;}
.x3f{left:732.954150px;}
.x40{left:744.604500px;}
.x7f{left:748.601400px;}
.x4a{left:751.067550px;}
.x21{left:752.683350px;}
.x56{left:756.935250px;}
.x17{left:762.973050px;}
.x22{left:764.418750px;}
.x18{left:768.840750px;}
.x83{left:774.538962px;}
.x31{left:788.399850px;}
.x32{left:800.135250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.419705pt;}
.v1{vertical-align:3.325108pt;}
.v3{vertical-align:15.426358pt;}
.lsc{letter-spacing:-1.041421pt;}
.lsd{letter-spacing:-0.970753pt;}
.lsb{letter-spacing:-0.929840pt;}
.lse{letter-spacing:-0.911243pt;}
.lsa{letter-spacing:-0.896366pt;}
.ls2d{letter-spacing:-0.802321pt;}
.ls2a{letter-spacing:-0.791695pt;}
.ls25{letter-spacing:-0.754501pt;}
.ls2c{letter-spacing:-0.749188pt;}
.ls29{letter-spacing:-0.738561pt;}
.ls26{letter-spacing:-0.727934pt;}
.ls2b{letter-spacing:-0.717307pt;}
.ls27{letter-spacing:-0.701367pt;}
.ls28{letter-spacing:-0.653547pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.003985pt;}
.ls49{letter-spacing:0.055526pt;}
.lsf{letter-spacing:0.066948pt;}
.ls42{letter-spacing:0.076514pt;}
.ls11{letter-spacing:0.111581pt;}
.ls12{letter-spacing:0.116895pt;}
.ls1{letter-spacing:0.143461pt;}
.ls7{letter-spacing:0.155413pt;}
.ls2{letter-spacing:0.157807pt;}
.ls10{letter-spacing:0.185969pt;}
.ls5{letter-spacing:0.200845pt;}
.ls13{letter-spacing:0.207222pt;}
.ls4c{letter-spacing:0.217849pt;}
.ls40{letter-spacing:0.228476pt;}
.ls4d{letter-spacing:0.229537pt;}
.ls4{letter-spacing:0.253447pt;}
.ls21{letter-spacing:0.414444pt;}
.ls47{letter-spacing:0.472891pt;}
.ls1b{letter-spacing:0.488832pt;}
.ls2e{letter-spacing:0.504772pt;}
.ls1f{letter-spacing:0.531339pt;}
.ls17{letter-spacing:0.541965pt;}
.ls3c{letter-spacing:0.547279pt;}
.ls3f{letter-spacing:0.563219pt;}
.ls19{letter-spacing:0.568532pt;}
.ls24{letter-spacing:0.573846pt;}
.ls23{letter-spacing:0.579159pt;}
.ls20{letter-spacing:0.584473pt;}
.ls1e{letter-spacing:0.589786pt;}
.ls15{letter-spacing:0.595099pt;}
.ls1c{letter-spacing:0.600413pt;}
.ls14{letter-spacing:0.605726pt;}
.ls3e{letter-spacing:0.611039pt;}
.ls18{letter-spacing:0.616353pt;}
.ls1d{letter-spacing:0.632293pt;}
.ls1a{letter-spacing:0.642920pt;}
.ls3d{letter-spacing:0.680113pt;}
.ls16{letter-spacing:0.717307pt;}
.ls2f{letter-spacing:0.791695pt;}
.ls46{letter-spacing:1.036110pt;}
.ls45{letter-spacing:1.046737pt;}
.ls30{letter-spacing:1.062677pt;}
.ls3{letter-spacing:1.066392pt;}
.ls3b{letter-spacing:1.089244pt;}
.ls37{letter-spacing:1.094558pt;}
.ls33{letter-spacing:1.121125pt;}
.ls39{letter-spacing:1.126438pt;}
.ls34{letter-spacing:1.137065pt;}
.ls31{letter-spacing:1.142378pt;}
.ls32{letter-spacing:1.153005pt;}
.ls36{letter-spacing:1.158318pt;}
.ls3a{letter-spacing:1.163632pt;}
.ls35{letter-spacing:1.179572pt;}
.ls38{letter-spacing:1.190199pt;}
.ls41{letter-spacing:2.659467pt;}
.ls43{letter-spacing:9.576992pt;}
.ls44{letter-spacing:10.040327pt;}
.ls48{letter-spacing:10.053079pt;}
.ls9{letter-spacing:10.116659pt;}
.ls4e{letter-spacing:11.591633pt;}
.ls8{letter-spacing:13.501277pt;}
.ls22{letter-spacing:14.128295pt;}
.ls4b{letter-spacing:21.386381pt;}
.ls4a{letter-spacing:786.350559pt;}
.ws16f{word-spacing:-786.393067pt;}
.ws8{word-spacing:-13.557067pt;}
.ws1{word-spacing:-12.432000pt;}
.ws1fc{word-spacing:-11.639453pt;}
.ws65{word-spacing:-10.153853pt;}
.ws7d{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047820pt;}
.ws52{word-spacing:-0.043835pt;}
.ws62{word-spacing:-0.042508pt;}
.ws6e{word-spacing:-0.039850pt;}
.ws64{word-spacing:-0.037194pt;}
.ws127{word-spacing:-0.027598pt;}
.ws0{word-spacing:0.000000pt;}
.ws69{word-spacing:0.892646pt;}
.ws6a{word-spacing:1.004227pt;}
.ws67{word-spacing:8.684706pt;}
.ws124{word-spacing:9.364454pt;}
.ws6d{word-spacing:9.440370pt;}
.wsde{word-spacing:9.559919pt;}
.ws176{word-spacing:9.572742pt;}
.ws6c{word-spacing:9.639618pt;}
.ws11a{word-spacing:9.721519pt;}
.ws12d{word-spacing:9.742772pt;}
.ws6f{word-spacing:9.743227pt;}
.ws125{word-spacing:9.759776pt;}
.ws119{word-spacing:9.776779pt;}
.ws6b{word-spacing:9.785636pt;}
.ws123{word-spacing:9.789531pt;}
.ws12f{word-spacing:9.798033pt;}
.ws121{word-spacing:9.802283pt;}
.ws5e{word-spacing:9.832039pt;}
.ws13e{word-spacing:9.834881pt;}
.ws11f{word-spacing:9.870296pt;}
.ws5d{word-spacing:9.874546pt;}
.ws128{word-spacing:9.878797pt;}
.ws61{word-spacing:9.883048pt;}
.ws16d{word-spacing:9.887299pt;}
.ws12a{word-spacing:9.891550pt;}
.ws11d{word-spacing:9.895800pt;}
.ws139{word-spacing:9.900051pt;}
.ws120{word-spacing:9.917054pt;}
.ws11b{word-spacing:9.921305pt;}
.ws126{word-spacing:9.934057pt;}
.ws129{word-spacing:9.938308pt;}
.ws130{word-spacing:9.942559pt;}
.ws13c{word-spacing:9.955311pt;}
.ws5c{word-spacing:9.963813pt;}
.ws60{word-spacing:9.968063pt;}
.ws178{word-spacing:9.976565pt;}
.ws16c{word-spacing:9.993568pt;}
.ws63{word-spacing:10.001359pt;}
.ws17c{word-spacing:10.014822pt;}
.ws12b{word-spacing:10.023324pt;}
.ws12c{word-spacing:10.027574pt;}
.ws12e{word-spacing:10.031825pt;}
.ws177{word-spacing:10.036076pt;}
.ws17a{word-spacing:10.044577pt;}
.ws134{word-spacing:10.053079pt;}
.ws68{word-spacing:10.057149pt;}
.ws16e{word-spacing:10.065831pt;}
.ws136{word-spacing:10.087085pt;}
.ws122{word-spacing:10.091336pt;}
.ws11e{word-spacing:10.112590pt;}
.ws118{word-spacing:10.116841pt;}
.ws5b{word-spacing:10.121091pt;}
.ws66{word-spacing:10.131537pt;}
.ws179{word-spacing:10.142345pt;}
.ws11c{word-spacing:10.184853pt;}
.ws17b{word-spacing:10.286871pt;}
.ws4c{word-spacing:10.759560pt;}
.ws4b{word-spacing:10.826508pt;}
.ws1e9{word-spacing:10.855201pt;}
.ws3c{word-spacing:11.008225pt;}
.ws3e{word-spacing:11.079956pt;}
.ws3d{word-spacing:11.089520pt;}
.ws4a{word-spacing:11.189942pt;}
.ws36{word-spacing:11.237763pt;}
.ws40{word-spacing:11.242545pt;}
.ws210{word-spacing:11.252109pt;}
.ws1c6{word-spacing:11.261673pt;}
.ws46{word-spacing:11.271237pt;}
.ws45{word-spacing:11.280801pt;}
.ws1d3{word-spacing:11.285583pt;}
.ws1f2{word-spacing:11.295147pt;}
.ws26{word-spacing:11.299929pt;}
.ws28{word-spacing:11.304711pt;}
.ws44{word-spacing:11.309493pt;}
.ws4f{word-spacing:11.323839pt;}
.ws41{word-spacing:11.328621pt;}
.ws1c{word-spacing:11.333403pt;}
.ws49{word-spacing:11.342967pt;}
.ws78{word-spacing:11.347749pt;}
.ws2d{word-spacing:11.357313pt;}
.ws1b{word-spacing:11.362095pt;}
.ws24{word-spacing:11.371659pt;}
.ws35{word-spacing:11.376441pt;}
.ws34{word-spacing:11.381223pt;}
.ws22{word-spacing:11.390788pt;}
.ws2c{word-spacing:11.395570pt;}
.ws25{word-spacing:11.400352pt;}
.ws23{word-spacing:11.409916pt;}
.ws20{word-spacing:11.414698pt;}
.ws1f{word-spacing:11.429044pt;}
.ws1ce{word-spacing:11.433826pt;}
.ws21{word-spacing:11.438608pt;}
.ws38{word-spacing:11.443390pt;}
.ws1cf{word-spacing:11.448172pt;}
.ws48{word-spacing:11.452954pt;}
.ws30{word-spacing:11.467300pt;}
.ws2e{word-spacing:11.472082pt;}
.ws1e5{word-spacing:11.476864pt;}
.ws31{word-spacing:11.481646pt;}
.ws3f{word-spacing:11.486428pt;}
.ws50{word-spacing:11.491210pt;}
.ws43{word-spacing:11.495992pt;}
.ws33{word-spacing:11.505556pt;}
.ws39{word-spacing:11.510338pt;}
.ws3b{word-spacing:11.515120pt;}
.ws2a{word-spacing:11.519902pt;}
.ws51{word-spacing:11.529466pt;}
.ws1cb{word-spacing:11.539030pt;}
.ws37{word-spacing:11.548594pt;}
.ws2f{word-spacing:11.562940pt;}
.ws1fa{word-spacing:11.567723pt;}
.ws1b6{word-spacing:11.586851pt;}
.ws47{word-spacing:11.591633pt;}
.ws2b{word-spacing:11.605979pt;}
.ws42{word-spacing:11.615543pt;}
.ws4e{word-spacing:11.639453pt;}
.ws1d5{word-spacing:11.649017pt;}
.ws32{word-spacing:11.653799pt;}
.ws1e{word-spacing:11.658581pt;}
.ws3a{word-spacing:11.668145pt;}
.ws27{word-spacing:11.677709pt;}
.ws1fb{word-spacing:11.701619pt;}
.ws29{word-spacing:11.706401pt;}
.ws1d4{word-spacing:11.735093pt;}
.ws1e7{word-spacing:11.797260pt;}
.ws4d{word-spacing:11.873772pt;}
.ws16a{word-spacing:11.882490pt;}
.ws53{word-spacing:11.888118pt;}
.ws16b{word-spacing:11.968302pt;}
.ws1bd{word-spacing:12.060271pt;}
.ws117{word-spacing:12.074306pt;}
.ws1c7{word-spacing:12.112874pt;}
.ws167{word-spacing:12.185357pt;}
.ws132{word-spacing:12.205548pt;}
.ws1b0{word-spacing:12.280244pt;}
.ws1b2{word-spacing:12.304155pt;}
.wsb6{word-spacing:12.342997pt;}
.ws1b1{word-spacing:12.390231pt;}
.ws15f{word-spacing:12.470519pt;}
.ws1cd{word-spacing:12.505000pt;}
.ws150{word-spacing:12.507712pt;}
.wsbb{word-spacing:12.523652pt;}
.wsb5{word-spacing:12.603353pt;}
.ws1fd{word-spacing:12.605422pt;}
.ws164{word-spacing:12.645860pt;}
.ws1a6{word-spacing:12.688367pt;}
.wsd4{word-spacing:12.698994pt;}
.ws1f3{word-spacing:12.734537pt;}
.ws1bb{word-spacing:12.744101pt;}
.ws1a7{word-spacing:12.768068pt;}
.ws8d{word-spacing:12.778695pt;}
.ws1bf{word-spacing:12.811049pt;}
.ws11{word-spacing:12.842950pt;}
.ws79{word-spacing:12.895589pt;}
.ws166{word-spacing:12.952621pt;}
.ws198{word-spacing:12.964663pt;}
.ws7b{word-spacing:12.975290pt;}
.ws113{word-spacing:13.007171pt;}
.ws15a{word-spacing:13.039051pt;}
.wsc{word-spacing:13.066112pt;}
.ws1be{word-spacing:13.107535pt;}
.wsf{word-spacing:13.127481pt;}
.ws184{word-spacing:13.134692pt;}
.ws9{word-spacing:13.138639pt;}
.ws10{word-spacing:13.144218pt;}
.wsd{word-spacing:13.149797pt;}
.wsbc{word-spacing:13.177199pt;}
.ws6{word-spacing:13.255799pt;}
.ws1a{word-spacing:13.266957pt;}
.ws1b7{word-spacing:13.270124pt;}
.ws14{word-spacing:13.278115pt;}
.ws174{word-spacing:13.280727pt;}
.ws165{word-spacing:13.290822pt;}
.ws13{word-spacing:13.311589pt;}
.ws173{word-spacing:13.321109pt;}
.ws1b5{word-spacing:13.322726pt;}
.ws16{word-spacing:13.328327pt;}
.wsa{word-spacing:13.339485pt;}
.wse{word-spacing:13.345064pt;}
.ws15{word-spacing:13.350643pt;}
.ws17{word-spacing:13.372959pt;}
.ws10b{word-spacing:13.395048pt;}
.ws18{word-spacing:13.395275pt;}
.ws7{word-spacing:13.434328pt;}
.ws12{word-spacing:13.439907pt;}
.ws5{word-spacing:13.445486pt;}
.wsb{word-spacing:13.451065pt;}
.ws10c{word-spacing:13.480062pt;}
.ws4{word-spacing:13.512435pt;}
.ws19{word-spacing:13.584962pt;}
.ws1d2{word-spacing:13.652686pt;}
.ws10a{word-spacing:13.666031pt;}
.ws1c0{word-spacing:13.719635pt;}
.ws112{word-spacing:13.729791pt;}
.wsd7{word-spacing:13.740418pt;}
.ws188{word-spacing:13.745731pt;}
.ws1d1{word-spacing:13.781801pt;}
.ws149{word-spacing:13.782925pt;}
.ws15b{word-spacing:13.793728pt;}
.ws197{word-spacing:13.894506pt;}
.wsbd{word-spacing:13.898934pt;}
.ws1c5{word-spacing:13.904779pt;}
.ws208{word-spacing:13.910916pt;}
.ws1f7{word-spacing:13.934826pt;}
.ws199{word-spacing:13.939848pt;}
.ws80{word-spacing:13.968894pt;}
.ws100{word-spacing:14.039210pt;}
.ws1bc{word-spacing:14.078287pt;}
.ws1c9{word-spacing:14.116543pt;}
.ws1f0{word-spacing:14.145235pt;}
.wsa1{word-spacing:14.176116pt;}
.wsc5{word-spacing:14.186742pt;}
.wsc4{word-spacing:14.207996pt;}
.ws17e{word-spacing:14.271757pt;}
.wsc9{word-spacing:14.367398pt;}
.ws201{word-spacing:14.527797pt;}
.wsa0{word-spacing:14.574620pt;}
.ws200{word-spacing:14.671258pt;}
.wsd1{word-spacing:14.702141pt;}
.ws17d{word-spacing:14.760588pt;}
.ws196{word-spacing:14.803095pt;}
.ws1aa{word-spacing:14.834976pt;}
.ws1dc{word-spacing:15.025128pt;}
.ws1ec{word-spacing:15.029910pt;}
.ws1cc{word-spacing:15.072948pt;}
.ws1db{word-spacing:15.092076pt;}
.ws1ab{word-spacing:15.228166pt;}
.ws1a8{word-spacing:15.313180pt;}
.ws76{word-spacing:15.374216pt;}
.ws169{word-spacing:15.400797pt;}
.ws19c{word-spacing:15.408821pt;}
.ws54{word-spacing:15.517677pt;}
.ws91{word-spacing:15.557596pt;}
.ws92{word-spacing:15.578850pt;}
.ws189{word-spacing:15.647924pt;}
.ws9f{word-spacing:15.711684pt;}
.ws17f{word-spacing:15.727625pt;}
.ws168{word-spacing:15.754142pt;}
.ws58{word-spacing:15.828508pt;}
.ws56{word-spacing:15.881111pt;}
.ws57{word-spacing:15.900239pt;}
.ws153{word-spacing:16.014547pt;}
.ws114{word-spacing:16.016627pt;}
.ws148{word-spacing:16.136755pt;}
.ws9d{word-spacing:16.158009pt;}
.ws9c{word-spacing:16.200516pt;}
.wsd0{word-spacing:16.211143pt;}
.ws10e{word-spacing:16.290844pt;}
.ws1ae{word-spacing:16.322724pt;}
.ws10d{word-spacing:16.343977pt;}
.ws19a{word-spacing:16.402425pt;}
.wsc7{word-spacing:16.428992pt;}
.ws108{word-spacing:16.439618pt;}
.ws18b{word-spacing:16.450245pt;}
.wscf{word-spacing:16.460872pt;}
.ws18c{word-spacing:16.482125pt;}
.wscc{word-spacing:16.503379pt;}
.ws82{word-spacing:16.577766pt;}
.ws1ba{word-spacing:16.622325pt;}
.ws1d6{word-spacing:16.660581pt;}
.ws89{word-spacing:16.699974pt;}
.ws101{word-spacing:16.710601pt;}
.ws1c3{word-spacing:16.727529pt;}
.ws131{word-spacing:16.738461pt;}
.ws88{word-spacing:16.795615pt;}
.wse4{word-spacing:16.811555pt;}
.wse5{word-spacing:16.944390pt;}
.ws7e{word-spacing:16.981584pt;}
.ws1ad{word-spacing:17.082538pt;}
.wse0{word-spacing:17.087852pt;}
.ws107{word-spacing:17.183492pt;}
.ws73{word-spacing:17.215296pt;}
.ws195{word-spacing:17.220686pt;}
.ws14d{word-spacing:17.295074pt;}
.ws106{word-spacing:17.348207pt;}
.ws140{word-spacing:17.411968pt;}
.ws194{word-spacing:17.427908pt;}
.ws99{word-spacing:17.581996pt;}
.ws2{word-spacing:17.622328pt;}
.ws141{word-spacing:17.783905pt;}
.ws1fe{word-spacing:17.808267pt;}
.wsfc{word-spacing:17.831726pt;}
.ws8c{word-spacing:17.890173pt;}
.ws1f8{word-spacing:17.946946pt;}
.ws111{word-spacing:18.012381pt;}
.ws206{word-spacing:18.056933pt;}
.ws207{word-spacing:18.076061pt;}
.wsff{word-spacing:18.097395pt;}
.ws7a{word-spacing:18.118649pt;}
.ws8e{word-spacing:18.123962pt;}
.ws86{word-spacing:18.139902pt;}
.ws185{word-spacing:18.150529pt;}
.ws3{word-spacing:18.195109pt;}
.ws193{word-spacing:18.203663pt;}
.ws181{word-spacing:18.315244pt;}
.ws1a1{word-spacing:18.336497pt;}
.ws10f{word-spacing:18.421512pt;}
.wsb3{word-spacing:18.464019pt;}
.ws5a{word-spacing:18.468187pt;}
.ws109{word-spacing:18.517153pt;}
.wsdf{word-spacing:18.559660pt;}
.ws180{word-spacing:18.618107pt;}
.ws110{word-spacing:18.697808pt;}
.wsc3{word-spacing:18.820016pt;}
.ws7c{word-spacing:18.920970pt;}
.ws95{word-spacing:19.059118pt;}
.ws105{word-spacing:19.160072pt;}
.wsf5{word-spacing:19.346041pt;}
.ws1ef{word-spacing:19.381554pt;}
.ws1b9{word-spacing:19.386336pt;}
.ws84{word-spacing:19.404488pt;}
.wsf8{word-spacing:19.409801pt;}
.ws96{word-spacing:19.601083pt;}
.ws90{word-spacing:19.659531pt;}
.wsf0{word-spacing:19.664844pt;}
.wsee{word-spacing:19.717978pt;}
.ws1ca{word-spacing:19.730642pt;}
.ws209{word-spacing:19.740206pt;}
.ws72{word-spacing:19.749770pt;}
.wsa3{word-spacing:19.903946pt;}
.wsa2{word-spacing:19.941140pt;}
.ws55{word-spacing:19.984089pt;}
.wsbe{word-spacing:20.026154pt;}
.wsc6{word-spacing:20.068661pt;}
.ws1c4{word-spacing:20.165806pt;}
.wsae{word-spacing:20.233376pt;}
.ws1e6{word-spacing:20.237537pt;}
.wsfa{word-spacing:20.371524pt;}
.ws1e8{word-spacing:20.543587pt;}
.wscd{word-spacing:20.621254pt;}
.ws20d{word-spacing:20.806598pt;}
.ws146{word-spacing:20.807222pt;}
.ws1ff{word-spacing:20.830508pt;}
.ws147{word-spacing:20.918803pt;}
.ws19e{word-spacing:20.924117pt;}
.ws20c{word-spacing:20.969187pt;}
.wsb2{word-spacing:21.110085pt;}
.wsef{word-spacing:21.237607pt;}
.ws19d{word-spacing:21.274800pt;}
.ws1c1{word-spacing:21.361313pt;}
.ws1a3{word-spacing:21.391695pt;}
.ws103{word-spacing:21.412948pt;}
.ws157{word-spacing:21.487336pt;}
.ws1a4{word-spacing:21.540470pt;}
.ws1da{word-spacing:21.609979pt;}
.wse9{word-spacing:21.620170pt;}
.ws1c2{word-spacing:21.648235pt;}
.ws102{word-spacing:21.721125pt;}
.ws163{word-spacing:21.747692pt;}
.wsd6{word-spacing:21.965540pt;}
.wsfb{word-spacing:21.986794pt;}
.ws20e{word-spacing:22.198168pt;}
.ws160{word-spacing:22.215270pt;}
.ws70{word-spacing:22.245988pt;}
.wsd9{word-spacing:22.300284pt;}
.wsad{word-spacing:22.305597pt;}
.wsa8{word-spacing:22.337478pt;}
.ws144{word-spacing:22.454372pt;}
.ws71{word-spacing:22.523346pt;}
.ws7f{word-spacing:22.539386pt;}
.ws151{word-spacing:22.550013pt;}
.ws59{word-spacing:22.552038pt;}
.ws1f9{word-spacing:22.590294pt;}
.ws9b{word-spacing:22.608460pt;}
.ws152{word-spacing:22.629714pt;}
.ws20f{word-spacing:22.772011pt;}
.ws1df{word-spacing:22.838959pt;}
.ws1ea{word-spacing:23.393674pt;}
.wse8{word-spacing:23.394841pt;}
.ws1eb{word-spacing:23.474969pt;}
.ws94{word-spacing:23.485169pt;}
.wse3{word-spacing:23.490482pt;}
.ws8b{word-spacing:23.527676pt;}
.ws14a{word-spacing:23.570183pt;}
.wsf6{word-spacing:23.644571pt;}
.ws191{word-spacing:23.697705pt;}
.wsb9{word-spacing:23.708331pt;}
.ws1b8{word-spacing:23.852749pt;}
.ws145{word-spacing:23.883673pt;}
.ws9a{word-spacing:23.904927pt;}
.ws98{word-spacing:23.947434pt;}
.wsc8{word-spacing:23.968687pt;}
.wsd3{word-spacing:23.989941pt;}
.ws1de{word-spacing:23.996210pt;}
.wsab{word-spacing:24.021821pt;}
.ws1d0{word-spacing:24.101414pt;}
.wsfe{word-spacing:24.138716pt;}
.ws116{word-spacing:24.224328pt;}
.ws74{word-spacing:24.283131pt;}
.ws175{word-spacing:24.532243pt;}
.ws19b{word-spacing:24.611607pt;}
.ws204{word-spacing:24.617873pt;}
.wsce{word-spacing:24.781635pt;}
.ws19f{word-spacing:24.845396pt;}
.ws85{word-spacing:24.946350pt;}
.ws77{word-spacing:25.076948pt;}
.wsac{word-spacing:25.084498pt;}
.ws205{word-spacing:25.201281pt;}
.wsb4{word-spacing:25.259840pt;}
.wsa9{word-spacing:25.307661pt;}
.wsed{word-spacing:25.312974pt;}
.ws162{word-spacing:25.344854pt;}
.wsaa{word-spacing:25.435182pt;}
.ws161{word-spacing:25.477689pt;}
.ws104{word-spacing:25.573330pt;}
.ws83{word-spacing:25.583957pt;}
.ws115{word-spacing:25.673043pt;}
.ws87{word-spacing:25.727418pt;}
.ws81{word-spacing:25.833686pt;}
.ws1a2{word-spacing:25.945267pt;}
.ws15e{word-spacing:26.253444pt;}
.ws5f{word-spacing:26.371798pt;}
.wsd5{word-spacing:26.481919pt;}
.wsc0{word-spacing:26.667888pt;}
.ws14e{word-spacing:26.800722pt;}
.ws1b3{word-spacing:26.812824pt;}
.wsa6{word-spacing:26.949497pt;}
.ws1a5{word-spacing:27.023885pt;}
.ws8f{word-spacing:27.146092pt;}
.ws14b{word-spacing:27.688058pt;}
.wsa4{word-spacing:27.709311pt;}
.ws1dd{word-spacing:27.745319pt;}
.wsa5{word-spacing:27.762445pt;}
.wsdc{word-spacing:27.836833pt;}
.ws9e{word-spacing:27.996234pt;}
.ws203{word-spacing:28.037022pt;}
.ws14c{word-spacing:28.070622pt;}
.ws1d8{word-spacing:28.247432pt;}
.ws1a0{word-spacing:28.272530pt;}
.ws1d9{word-spacing:28.314380pt;}
.ws202{word-spacing:28.323944pt;}
.ws192{word-spacing:28.368171pt;}
.ws8a{word-spacing:28.745422pt;}
.ws187{word-spacing:28.756049pt;}
.wsba{word-spacing:28.777302pt;}
.wsf7{word-spacing:28.846376pt;}
.wsaf{word-spacing:29.159866pt;}
.wsec{word-spacing:29.197060pt;}
.ws186{word-spacing:29.218313pt;}
.ws1e3{word-spacing:29.337734pt;}
.wsf2{word-spacing:29.356461pt;}
.wsc2{word-spacing:29.441476pt;}
.wsc1{word-spacing:29.553057pt;}
.ws13f{word-spacing:29.824039pt;}
.wscb{word-spacing:29.877173pt;}
.ws18d{word-spacing:29.951561pt;}
.ws1f4{word-spacing:30.011999pt;}
.ws1f5{word-spacing:30.150678pt;}
.ws1d7{word-spacing:30.241537pt;}
.ws190{word-spacing:30.296931pt;}
.ws1f6{word-spacing:30.346741pt;}
.ws142{word-spacing:30.408512pt;}
.ws143{word-spacing:30.493526pt;}
.wsca{word-spacing:30.509466pt;}
.wsf3{word-spacing:30.636988pt;}
.wsf4{word-spacing:30.807016pt;}
.ws1e4{word-spacing:30.834508pt;}
.wsbf{word-spacing:30.860150pt;}
.wsa7{word-spacing:30.902657pt;}
.wseb{word-spacing:31.317101pt;}
.wsfd{word-spacing:31.402115pt;}
.ws1a9{word-spacing:31.694351pt;}
.wsd8{word-spacing:31.736859pt;}
.wsb8{word-spacing:31.922827pt;}
.ws75{word-spacing:31.982194pt;}
.wsda{word-spacing:32.842043pt;}
.wsdb{word-spacing:33.081145pt;}
.ws15d{word-spacing:33.330875pt;}
.ws93{word-spacing:34.191643pt;}
.ws1ac{word-spacing:34.239464pt;}
.ws15c{word-spacing:34.281971pt;}
.wse2{word-spacing:34.935517pt;}
.ws154{word-spacing:36.030075pt;}
.ws1b4{word-spacing:36.611196pt;}
.wsd2{word-spacing:36.651741pt;}
.ws1af{word-spacing:37.406242pt;}
.ws1e0{word-spacing:37.624986pt;}
.ws1e1{word-spacing:37.639332pt;}
.ws182{word-spacing:37.698478pt;}
.ws183{word-spacing:37.740985pt;}
.ws1e2{word-spacing:37.940600pt;}
.ws1ed{word-spacing:38.342290pt;}
.ws1ee{word-spacing:38.433148pt;}
.wsdd{word-spacing:38.761156pt;}
.ws159{word-spacing:39.239361pt;}
.wse1{word-spacing:39.786639pt;}
.ws18f{word-spacing:40.349858pt;}
.ws18e{word-spacing:40.408306pt;}
.ws97{word-spacing:40.780243pt;}
.ws155{word-spacing:41.141553pt;}
.ws20b{word-spacing:41.283236pt;}
.ws20a{word-spacing:41.297582pt;}
.ws1c8{word-spacing:41.828387pt;}
.ws158{word-spacing:41.837607pt;}
.wsea{word-spacing:42.533660pt;}
.wsb0{word-spacing:42.650555pt;}
.wsf1{word-spacing:46.449626pt;}
.wsb1{word-spacing:48.240238pt;}
.ws18a{word-spacing:48.426206pt;}
.wse7{word-spacing:48.782203pt;}
.wse6{word-spacing:49.010679pt;}
.ws1f1{word-spacing:50.861636pt;}
.wsf9{word-spacing:51.114780pt;}
.wsb7{word-spacing:51.210421pt;}
.ws156{word-spacing:53.505804pt;}
.ws14f{word-spacing:57.862781pt;}
.ws135{word-spacing:189.490974pt;}
.ws13d{word-spacing:285.316157pt;}
.ws13a{word-spacing:302.140718pt;}
.ws138{word-spacing:307.585958pt;}
.ws13b{word-spacing:312.121534pt;}
.ws137{word-spacing:317.503013pt;}
.ws171{word-spacing:748.505924pt;}
.ws133{word-spacing:754.971350pt;}
.ws170{word-spacing:765.764064pt;}
.ws172{word-spacing:771.281567pt;}
._58{margin-left:-786.350559pt;}
._d{margin-left:-17.100527pt;}
._a{margin-left:-13.501277pt;}
._12{margin-left:-11.002129pt;}
._3{margin-left:-9.109310pt;}
._2{margin-left:-7.829310pt;}
._5{margin-left:-6.880000pt;}
._4{margin-left:-4.693380pt;}
._1{margin-left:-3.562690pt;}
._6{margin-left:-2.613333pt;}
._0{margin-left:-1.706655pt;}
._14{width:0.937279pt;}
._7{width:1.920000pt;}
._13{width:9.733565pt;}
._e{width:10.726086pt;}
._c{width:12.543256pt;}
._55{width:13.464122pt;}
._b{width:14.438556pt;}
._22{width:15.847710pt;}
._10{width:16.995323pt;}
._9{width:18.730697pt;}
._19{width:19.878448pt;}
._f{width:21.112648pt;}
._64{width:22.268404pt;}
._15{width:23.202393pt;}
._1b{width:24.723188pt;}
._17{width:26.143340pt;}
._24{width:27.448956pt;}
._1d{width:28.522260pt;}
._1a{width:29.839980pt;}
._21{width:30.775136pt;}
._1f{width:31.875007pt;}
._16{width:33.082060pt;}
._1c{width:34.734677pt;}
._54{width:35.732525pt;}
._23{width:37.701669pt;}
._62{width:38.918435pt;}
._53{width:42.252051pt;}
._1e{width:44.127676pt;}
._63{width:49.452758pt;}
._20{width:54.504720pt;}
._18{width:61.135827pt;}
._65{width:76.549984pt;}
._11{width:95.211674pt;}
._27{width:110.860169pt;}
._25{width:141.914912pt;}
._29{width:153.282886pt;}
._28{width:162.264770pt;}
._2a{width:197.418666pt;}
._31{width:209.694899pt;}
._2e{width:222.842541pt;}
._2f{width:232.980636pt;}
._4c{width:255.726524pt;}
._2d{width:287.501054pt;}
._51{width:289.817726pt;}
._30{width:292.096140pt;}
._52{width:301.307566pt;}
._2c{width:303.768764pt;}
._4d{width:306.183203pt;}
._43{width:307.628466pt;}
._3a{width:312.100280pt;}
._3f{width:317.545520pt;}
._49{width:320.002467pt;}
._35{width:322.081095pt;}
._36{width:322.986510pt;}
._50{width:324.223485pt;}
._2b{width:330.059797pt;}
._4b{width:333.753719pt;}
._42{width:336.210666pt;}
._39{width:345.723897pt;}
._34{width:355.640951pt;}
._32{width:362.446439pt;}
._3e{width:368.304005pt;}
._44{width:376.176437pt;}
._38{width:378.684393pt;}
._37{width:381.957489pt;}
._40{width:385.260340pt;}
._33{width:388.660958pt;}
._4e{width:394.527025pt;}
._3c{width:398.578012pt;}
._3d{width:402.743770pt;}
._41{width:405.604541pt;}
._5e{width:406.569466pt;}
._45{width:420.711789pt;}
._4f{width:426.114522pt;}
._4a{width:433.306831pt;}
._47{width:438.824334pt;}
._48{width:440.142074pt;}
._3b{width:445.498048pt;}
._46{width:454.990025pt;}
._26{width:466.080293pt;}
._5a{width:505.348937pt;}
._60{width:528.281859pt;}
._57{width:617.811647pt;}
._56{width:671.796468pt;}
._5c{width:684.978116pt;}
._5d{width:691.124735pt;}
._59{width:693.394648pt;}
._5b{width:718.542223pt;}
._61{width:731.889651pt;}
._5f{width:748.174364pt;}
._8{width:1068.581298pt;}
.fs12{font-size:27.597867pt;}
.fs11{font-size:29.754133pt;}
.fs9{font-size:31.048000pt;}
.fs13{font-size:34.498133pt;}
.fs8{font-size:36.222933pt;}
.fsd{font-size:37.193600pt;}
.fsb{font-size:39.849600pt;}
.fsc{font-size:42.507733pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:47.820267pt;}
.fs5{font-size:48.000000pt;}
.fs10{font-size:50.477867pt;}
.fse{font-size:53.133867pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:55.790400pt;}
.fsf{font-size:58.448000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.387200pt;}
.fs0{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:24.825333pt;}
.yc0{bottom:26.607046pt;}
.ybf{bottom:37.265802pt;}
.ybe{bottom:47.848311pt;}
.ybd{bottom:58.507067pt;}
.y24{bottom:60.086668pt;}
.y23{bottom:74.753335pt;}
.ybc{bottom:75.741733pt;}
.y216{bottom:75.742347pt;}
.y24e{bottom:75.744900pt;}
.y22{bottom:82.713334pt;}
.y18d{bottom:88.057959pt;}
.ybb{bottom:88.062933pt;}
.y215{bottom:90.406432pt;}
.y24d{bottom:90.408985pt;}
.y1df{bottom:90.479805pt;}
.y125{bottom:93.067933pt;}
.yf8{bottom:93.072795pt;}
.y1d0{bottom:93.201825pt;}
.y18c{bottom:100.001569pt;}
.y1de{bottom:102.498867pt;}
.y214{bottom:104.995200pt;}
.y24c{bottom:104.997753pt;}
.y1cf{bottom:105.145436pt;}
.y124{bottom:110.301903pt;}
.yf7{bottom:110.306765pt;}
.y18b{bottom:111.945179pt;}
.y1dd{bottom:114.442477pt;}
.y1ce{bottom:117.089046pt;}
.y24b{bottom:119.586521pt;}
.y18a{bottom:123.888790pt;}
.y1dc{bottom:126.386087pt;}
.y123{bottom:127.611588pt;}
.yf6{bottom:127.616450pt;}
.y1cd{bottom:129.032656pt;}
.y213{bottom:130.922800pt;}
.y24a{bottom:134.250606pt;}
.yb5{bottom:135.460113pt;}
.y189{bottom:135.907851pt;}
.y1db{bottom:138.329698pt;}
.y1cb{bottom:139.237733pt;}
.y1ca{bottom:140.976123pt;}
.y1cc{bottom:140.976267pt;}
.y21{bottom:142.518667pt;}
.y122{bottom:144.845558pt;}
.yf5{bottom:144.850420pt;}
.y188{bottom:147.851462pt;}
.yb4{bottom:148.763711pt;}
.y249{bottom:148.839373pt;}
.y1da{bottom:150.273308pt;}
.y1c8{bottom:151.256667pt;}
.y1c7{bottom:152.919472pt;}
.y1c9{bottom:152.919733pt;}
.y187{bottom:159.795072pt;}
.yb3{bottom:162.067310pt;}
.y121{bottom:162.155243pt;}
.yf4{bottom:162.160105pt;}
.y1d9{bottom:162.216919pt;}
.y1c5{bottom:163.200000pt;}
.y248{bottom:163.428141pt;}
.y1c4{bottom:164.937693pt;}
.y1c6{bottom:164.938533pt;}
.y186{bottom:171.738682pt;}
.y1d8{bottom:174.235980pt;}
.yb2{bottom:175.295591pt;}
.y212{bottom:176.742267pt;}
.y1c3{bottom:176.881303pt;}
.y247{bottom:178.093422pt;}
.y120{bottom:179.389213pt;}
.yf3{bottom:179.394075pt;}
.y185{bottom:183.682293pt;}
.y1d7{bottom:186.179591pt;}
.yb1{bottom:188.599189pt;}
.y1c2{bottom:188.824913pt;}
.y246{bottom:192.682189pt;}
.yba{bottom:193.737569pt;}
.y211{bottom:193.976237pt;}
.y184{bottom:195.625903pt;}
.y11f{bottom:196.698898pt;}
.yf2{bottom:196.703760pt;}
.y20{bottom:197.113334pt;}
.y1d6{bottom:198.123201pt;}
.y1c1{bottom:200.768524pt;}
.yb0{bottom:201.902787pt;}
.yb9{bottom:205.681179pt;}
.y245{bottom:207.270957pt;}
.y183{bottom:207.644965pt;}
.y210{bottom:211.285922pt;}
.y1c0{bottom:212.712134pt;}
.y1d4{bottom:213.921200pt;}
.y11e{bottom:213.932868pt;}
.yf1{bottom:213.937730pt;}
.yaf{bottom:215.206385pt;}
.yb8{bottom:217.624790pt;}
.y182{bottom:219.588575pt;}
.y244{bottom:221.859725pt;}
.y1d5{bottom:225.864810pt;}
.yae{bottom:228.434667pt;}
.y1be{bottom:228.510133pt;}
.y20f{bottom:228.519892pt;}
.yb7{bottom:229.568400pt;}
.y11d{bottom:231.166838pt;}
.yf0{bottom:231.171700pt;}
.y181{bottom:231.532185pt;}
.y243{bottom:236.523810pt;}
.y1bf{bottom:240.453744pt;}
.yb6{bottom:241.511733pt;}
.yad{bottom:241.738533pt;}
.y1d3{bottom:241.813286pt;}
.y180{bottom:243.475796pt;}
.y20e{bottom:245.829577pt;}
.y11c{bottom:248.476523pt;}
.yef{bottom:248.481385pt;}
.y242{bottom:251.112578pt;}
.y17f{bottom:255.419406pt;}
.y1bd{bottom:256.402219pt;}
.y1d2{bottom:256.402651pt;}
.y1f{bottom:256.918667pt;}
.y20d{bottom:263.063547pt;}
.y241{bottom:265.701346pt;}
.y11b{bottom:265.710493pt;}
.yee{bottom:265.715355pt;}
.y17e{bottom:267.363017pt;}
.y1bc{bottom:271.067301pt;}
.y1d1{bottom:271.067733pt;}
.y17d{bottom:279.306627pt;}
.y240{bottom:280.366626pt;}
.y20c{bottom:280.373232pt;}
.y11a{bottom:283.020178pt;}
.yed{bottom:283.025040pt;}
.y1bb{bottom:285.656667pt;}
.yac{bottom:291.023868pt;}
.y1d{bottom:291.318668pt;}
.y17c{bottom:291.325689pt;}
.y23f{bottom:294.955394pt;}
.y20b{bottom:297.607202pt;}
.y119{bottom:300.254148pt;}
.yec{bottom:300.259010pt;}
.y17b{bottom:303.269299pt;}
.yab{bottom:304.327467pt;}
.ya9{bottom:304.327585pt;}
.y1c{bottom:304.652001pt;}
.yaa{bottom:309.467733pt;}
.y23e{bottom:309.544162pt;}
.y1e{bottom:311.513334pt;}
.y20a{bottom:314.916887pt;}
.y17a{bottom:315.212909pt;}
.ya8{bottom:317.555867pt;}
.ya6{bottom:317.556135pt;}
.y118{bottom:317.563833pt;}
.yeb{bottom:317.568695pt;}
.y1b{bottom:317.985335pt;}
.ya7{bottom:322.771600pt;}
.y1b8{bottom:323.458107pt;}
.y23d{bottom:324.208246pt;}
.y179{bottom:327.156520pt;}
.ya5{bottom:330.859733pt;}
.ya3{bottom:330.860135pt;}
.y1a{bottom:331.318668pt;}
.y209{bottom:332.150857pt;}
.y1a7{bottom:333.967033pt;}
.y117{bottom:334.797803pt;}
.yea{bottom:334.802665pt;}
.ya4{bottom:336.075467pt;}
.y23c{bottom:338.797014pt;}
.y1b7{bottom:340.692077pt;}
.y178{bottom:342.954519pt;}
.ya2{bottom:344.163733pt;}
.ya0{bottom:344.164135pt;}
.y19{bottom:344.652001pt;}
.ya1{bottom:349.303867pt;}
.y208{bottom:349.386155pt;}
.y1a6{bottom:351.276719pt;}
.y116{bottom:352.107488pt;}
.ye9{bottom:352.112350pt;}
.y23b{bottom:353.385782pt;}
.y9d{bottom:357.467719pt;}
.y9f{bottom:357.467733pt;}
.y18{bottom:357.985335pt;}
.y1b6{bottom:358.001762pt;}
.y177{bottom:358.677067pt;}
.y9e{bottom:362.607867pt;}
.y207{bottom:366.695840pt;}
.y23a{bottom:367.974550pt;}
.y1a5{bottom:368.510688pt;}
.y115{bottom:369.341458pt;}
.ye8{bottom:369.346320pt;}
.y9c{bottom:370.696000pt;}
.y9a{bottom:370.696268pt;}
.y17{bottom:371.318667pt;}
.y176{bottom:374.626118pt;}
.y1b5{bottom:375.235732pt;}
.y9b{bottom:375.911733pt;}
.y239{bottom:382.639830pt;}
.y206{bottom:383.929810pt;}
.y99{bottom:383.999867pt;}
.y97{bottom:384.000268pt;}
.y1a4{bottom:385.744658pt;}
.y114{bottom:386.575428pt;}
.ye7{bottom:386.580290pt;}
.y98{bottom:389.215600pt;}
.y175{bottom:389.291200pt;}
.y1b4{bottom:392.545417pt;}
.y238{bottom:397.228598pt;}
.y96{bottom:397.303867pt;}
.y94{bottom:397.304135pt;}
.y205{bottom:401.239495pt;}
.y95{bottom:402.444000pt;}
.y1a3{bottom:403.054343pt;}
.y113{bottom:403.885113pt;}
.ye6{bottom:403.889975pt;}
.y1b3{bottom:409.779387pt;}
.y93{bottom:410.607733pt;}
.y91{bottom:410.607852pt;}
.y237{bottom:411.817366pt;}
.y92{bottom:415.747867pt;}
.y204{bottom:418.473465pt;}
.y1a2{bottom:420.288313pt;}
.y112{bottom:421.119083pt;}
.ye5{bottom:421.123945pt;}
.y90{bottom:423.836133pt;}
.y8e{bottom:423.836535pt;}
.y236{bottom:426.481451pt;}
.y1b2{bottom:427.089072pt;}
.y8f{bottom:429.051867pt;}
.y203{bottom:435.783151pt;}
.y8d{bottom:437.140133pt;}
.y8b{bottom:437.140402pt;}
.y1a1{bottom:437.597998pt;}
.y153{bottom:437.902057pt;}
.y111{bottom:438.428768pt;}
.y132{bottom:438.431888pt;}
.ye4{bottom:438.433630pt;}
.y235{bottom:441.070219pt;}
.y8c{bottom:442.280267pt;}
.y16{bottom:444.018654pt;}
.y1b1{bottom:444.323042pt;}
.y8a{bottom:450.444000pt;}
.y88{bottom:450.444119pt;}
.y202{bottom:453.017120pt;}
.y1a0{bottom:454.831968pt;}
.y152{bottom:455.137355pt;}
.y89{bottom:455.584133pt;}
.y234{bottom:455.658986pt;}
.y110{bottom:455.662738pt;}
.y131{bottom:455.665858pt;}
.ye3{bottom:455.667600pt;}
.y1b0{bottom:461.632727pt;}
.y87{bottom:463.672400pt;}
.y85{bottom:463.672668pt;}
.y86{bottom:468.888133pt;}
.y233{bottom:470.324267pt;}
.y201{bottom:470.326806pt;}
.y15{bottom:471.445330pt;}
.y19f{bottom:472.141654pt;}
.y151{bottom:472.447040pt;}
.y10f{bottom:472.972423pt;}
.y130{bottom:472.975543pt;}
.ye2{bottom:472.977285pt;}
.y84{bottom:476.976267pt;}
.y82{bottom:476.976668pt;}
.y1af{bottom:478.866697pt;}
.y83{bottom:482.192000pt;}
.y200{bottom:487.560775pt;}
.y14{bottom:488.205340pt;}
.y19e{bottom:489.375623pt;}
.y150{bottom:489.681010pt;}
.y10e{bottom:490.206393pt;}
.y12f{bottom:490.209513pt;}
.ye1{bottom:490.211255pt;}
.y81{bottom:490.280267pt;}
.y7f{bottom:490.280535pt;}
.y80{bottom:495.420400pt;}
.y1ae{bottom:496.100667pt;}
.y232{bottom:496.176267pt;}
.y7e{bottom:503.584133pt;}
.y7c{bottom:503.584252pt;}
.y1ff{bottom:504.870461pt;}
.y13{bottom:504.965350pt;}
.y19d{bottom:506.685309pt;}
.y14f{bottom:506.990695pt;}
.y10d{bottom:507.516078pt;}
.y12e{bottom:507.519198pt;}
.ye0{bottom:507.520940pt;}
.y7d{bottom:508.724267pt;}
.y7b{bottom:516.812533pt;}
.y79{bottom:516.812802pt;}
.y12{bottom:521.725319pt;}
.y7a{bottom:522.028267pt;}
.y1fe{bottom:522.104430pt;}
.y19c{bottom:523.919278pt;}
.y14e{bottom:524.224665pt;}
.y10c{bottom:524.750048pt;}
.y12d{bottom:524.753168pt;}
.ydf{bottom:524.754910pt;}
.y78{bottom:530.116400pt;}
.y76{bottom:530.117070pt;}
.y77{bottom:535.332133pt;}
.y11{bottom:538.485328pt;}
.y1fd{bottom:539.338400pt;}
.y231{bottom:540.850267pt;}
.y19b{bottom:541.228964pt;}
.y14d{bottom:541.534351pt;}
.y10b{bottom:542.059733pt;}
.y12c{bottom:542.062854pt;}
.yde{bottom:542.064595pt;}
.y75{bottom:543.420668pt;}
.y10{bottom:555.245338pt;}
.y199{bottom:556.270667pt;}
.y74{bottom:556.724267pt;}
.y72{bottom:556.724385pt;}
.y19a{bottom:558.462933pt;}
.y198{bottom:558.463497pt;}
.y14c{bottom:558.768320pt;}
.y12b{bottom:559.296823pt;}
.ydd{bottom:559.298565pt;}
.y73{bottom:561.864400pt;}
.y1fc{bottom:565.266000pt;}
.y230{bottom:566.777867pt;}
.y10a{bottom:567.911733pt;}
.y71{bottom:569.952667pt;}
.y6f{bottom:569.952935pt;}
.yf{bottom:572.005328pt;}
.y196{bottom:573.580933pt;}
.y70{bottom:575.168400pt;}
.y197{bottom:575.697467pt;}
.y195{bottom:575.698745pt;}
.y1ad{bottom:575.707530pt;}
.y14b{bottom:576.078006pt;}
.y12a{bottom:576.530793pt;}
.ydc{bottom:576.532535pt;}
.y6e{bottom:583.256533pt;}
.y6c{bottom:583.256935pt;}
.y6d{bottom:588.472267pt;}
.ye{bottom:588.765337pt;}
.y194{bottom:593.008430pt;}
.y1ac{bottom:593.017215pt;}
.y14a{bottom:593.311975pt;}
.y129{bottom:593.840478pt;}
.ydb{bottom:593.842220pt;}
.y6b{bottom:596.560533pt;}
.y69{bottom:596.560802pt;}
.y6a{bottom:601.700667pt;}
.yd{bottom:605.525327pt;}
.y192{bottom:608.125867pt;}
.y68{bottom:609.864400pt;}
.y66{bottom:609.864519pt;}
.y193{bottom:610.242400pt;}
.y191{bottom:610.244126pt;}
.y1ab{bottom:610.251185pt;}
.y149{bottom:610.545945pt;}
.y128{bottom:611.074448pt;}
.yda{bottom:611.076190pt;}
.y1fb{bottom:611.079758pt;}
.y22f{bottom:611.452945pt;}
.y67{bottom:615.004533pt;}
.y109{bottom:616.012326pt;}
.y65{bottom:623.092800pt;}
.y63{bottom:623.093068pt;}
.y22e{bottom:626.041713pt;}
.y190{bottom:627.553812pt;}
.y1aa{bottom:627.560870pt;}
.y148{bottom:627.855630pt;}
.y64{bottom:628.308533pt;}
.y127{bottom:628.384133pt;}
.yd9{bottom:628.385875pt;}
.y1fa{bottom:628.389443pt;}
.y108{bottom:633.246296pt;}
.y62{bottom:636.396667pt;}
.y60{bottom:636.397068pt;}
.y22d{bottom:640.630481pt;}
.y61{bottom:641.536800pt;}
.y18f{bottom:644.787781pt;}
.y1a9{bottom:644.794840pt;}
.y147{bottom:645.089600pt;}
.yd8{bottom:645.619845pt;}
.y1f9{bottom:645.623413pt;}
.y5f{bottom:649.700667pt;}
.y107{bottom:650.480265pt;}
.yc{bottom:652.546669pt;}
.y5e{bottom:654.840800pt;}
.y22c{bottom:655.294565pt;}
.y18e{bottom:662.097467pt;}
.y1a8{bottom:662.104525pt;}
.y5d{bottom:662.928933pt;}
.y5b{bottom:662.929335pt;}
.yd7{bottom:662.929530pt;}
.y1f8{bottom:662.933098pt;}
.y106{bottom:667.789951pt;}
.y5c{bottom:668.144667pt;}
.y22b{bottom:669.883333pt;}
.y146{bottom:671.017200pt;}
.yb{bottom:671.213335pt;}
.y5a{bottom:676.232933pt;}
.y58{bottom:676.233202pt;}
.yd6{bottom:680.163500pt;}
.y1f7{bottom:680.167068pt;}
.y59{bottom:681.448667pt;}
.y105{bottom:685.025249pt;}
.y57{bottom:689.536800pt;}
.y55{bottom:689.537202pt;}
.ya{bottom:689.880002pt;}
.y56{bottom:694.677067pt;}
.y22a{bottom:695.810933pt;}
.y1ba{bottom:696.641968pt;}
.yd5{bottom:697.473185pt;}
.y1f6{bottom:697.476753pt;}
.y104{bottom:702.334934pt;}
.y54{bottom:702.840800pt;}
.y52{bottom:702.840919pt;}
.y53{bottom:707.980933pt;}
.y9{bottom:708.546669pt;}
.y174{bottom:709.566066pt;}
.y1b9{bottom:711.231333pt;}
.yd4{bottom:714.708483pt;}
.y1f5{bottom:714.710723pt;}
.y51{bottom:716.069200pt;}
.y4f{bottom:716.069468pt;}
.y103{bottom:719.568904pt;}
.y50{bottom:721.284800pt;}
.y173{bottom:721.509676pt;}
.y8{bottom:727.213335pt;}
.y4e{bottom:729.373067pt;}
.y4c{bottom:729.373468pt;}
.yd3{bottom:731.943781pt;}
.y1f4{bottom:732.020408pt;}
.y145{bottom:732.031039pt;}
.y172{bottom:733.453287pt;}
.y4d{bottom:734.588933pt;}
.y102{bottom:736.878589pt;}
.y229{bottom:740.484800pt;}
.y4b{bottom:742.677067pt;}
.y49{bottom:742.677335pt;}
.y171{bottom:745.396897pt;}
.y7{bottom:745.880002pt;}
.y4a{bottom:747.817200pt;}
.yd2{bottom:749.253467pt;}
.y1f3{bottom:749.255706pt;}
.y144{bottom:749.265008pt;}
.y101{bottom:754.112559pt;}
.y47{bottom:755.980933pt;}
.y45{bottom:755.981052pt;}
.y48{bottom:756.510543pt;}
.y170{bottom:757.340507pt;}
.y46{bottom:761.121067pt;}
.y228{bottom:764.371467pt;}
.y6{bottom:764.546669pt;}
.y1f2{bottom:766.489676pt;}
.y143{bottom:766.498978pt;}
.y44{bottom:769.209333pt;}
.y42{bottom:769.209602pt;}
.y16f{bottom:769.284118pt;}
.y100{bottom:771.422244pt;}
.y43{bottom:774.425067pt;}
.yd1{bottom:775.180933pt;}
.y16e{bottom:781.303179pt;}
.y41{bottom:782.513200pt;}
.y5{bottom:783.213335pt;}
.y1f1{bottom:783.799362pt;}
.y142{bottom:783.808663pt;}
.y40{bottom:787.653333pt;}
.yff{bottom:788.656214pt;}
.y16d{bottom:793.246790pt;}
.y3f{bottom:795.817200pt;}
.y3e{bottom:800.957333pt;}
.y1f0{bottom:801.033331pt;}
.y141{bottom:801.042633pt;}
.y16a{bottom:805.189436pt;}
.y16c{bottom:805.190400pt;}
.yfe{bottom:805.890183pt;}
.y227{bottom:809.054182pt;}
.y16b{bottom:809.801467pt;}
.y169{bottom:817.133046pt;}
.y1ef{bottom:818.343017pt;}
.y140{bottom:818.352318pt;}
.yd0{bottom:819.176957pt;}
.y3d{bottom:819.703733pt;}
.y3b{bottom:819.704253pt;}
.yfd{bottom:823.199869pt;}
.y226{bottom:823.642949pt;}
.y3c{bottom:825.750933pt;}
.y168{bottom:829.076656pt;}
.y4{bottom:834.470665pt;}
.y1ee{bottom:835.578315pt;}
.y13f{bottom:835.587616pt;}
.y3a{bottom:835.653333pt;}
.y38{bottom:835.653853pt;}
.ycf{bottom:836.486642pt;}
.y225{bottom:838.231717pt;}
.y167{bottom:839.281733pt;}
.yfc{bottom:840.433839pt;}
.y166{bottom:841.020267pt;}
.y39{bottom:841.700667pt;}
.y164{bottom:851.300667pt;}
.y37{bottom:851.602933pt;}
.y35{bottom:851.603453pt;}
.y1ed{bottom:852.888000pt;}
.y25b{bottom:852.891817pt;}
.y224{bottom:852.895802pt;}
.y13e{bottom:852.897302pt;}
.y163{bottom:852.962507pt;}
.y165{bottom:852.963600pt;}
.yce{bottom:853.720612pt;}
.y36{bottom:857.650267pt;}
.yfb{bottom:857.743524pt;}
.y3{bottom:862.470665pt;}
.y162{bottom:864.981569pt;}
.y25a{bottom:867.480585pt;}
.y223{bottom:867.484570pt;}
.y268{bottom:867.485367pt;}
.y34{bottom:867.552533pt;}
.y32{bottom:867.553053pt;}
.y1eb{bottom:868.006133pt;}
.y1ec{bottom:870.122667pt;}
.y1ea{bottom:870.127463pt;}
.y13d{bottom:870.131272pt;}
.ycd{bottom:871.030297pt;}
.y33{bottom:873.599733pt;}
.yfa{bottom:874.978822pt;}
.y161{bottom:876.925179pt;}
.y259{bottom:882.069353pt;}
.y222{bottom:882.073338pt;}
.y267{bottom:882.074135pt;}
.y31{bottom:883.502133pt;}
.y2f{bottom:883.502370pt;}
.y1e9{bottom:887.437148pt;}
.y13c{bottom:887.440957pt;}
.ycc{bottom:888.264267pt;}
.y160{bottom:888.868790pt;}
.y30{bottom:889.473733pt;}
.yf9{bottom:892.288507pt;}
.y258{bottom:896.733437pt;}
.y221{bottom:896.737423pt;}
.y266{bottom:896.738219pt;}
.y2e{bottom:899.376133pt;}
.y2c{bottom:899.376653pt;}
.y15f{bottom:900.810877pt;}
.y1e8{bottom:904.671118pt;}
.y13b{bottom:904.674927pt;}
.y2d{bottom:905.423333pt;}
.y257{bottom:911.322205pt;}
.y220{bottom:911.326190pt;}
.y265{bottom:911.326987pt;}
.y15e{bottom:912.754487pt;}
.y29{bottom:915.325733pt;}
.y2b{bottom:916.157010pt;}
.y2{bottom:920.485335pt;}
.y2a{bottom:921.373067pt;}
.y1e7{bottom:921.905088pt;}
.y13a{bottom:921.908896pt;}
.y15d{bottom:924.698098pt;}
.y256{bottom:925.910973pt;}
.y21f{bottom:925.914958pt;}
.y264{bottom:925.915755pt;}
.y15c{bottom:936.717159pt;}
.y1e6{bottom:939.214773pt;}
.y139{bottom:939.218582pt;}
.y255{bottom:940.499741pt;}
.y21e{bottom:940.503726pt;}
.y263{bottom:940.504523pt;}
.ycb{bottom:944.354530pt;}
.y15b{bottom:948.660770pt;}
.y28{bottom:949.870335pt;}
.y254{bottom:955.163826pt;}
.y21d{bottom:955.167811pt;}
.y262{bottom:955.168608pt;}
.y1e5{bottom:956.448743pt;}
.y138{bottom:956.452551pt;}
.yca{bottom:957.658128pt;}
.y15a{bottom:960.604380pt;}
.y253{bottom:969.752594pt;}
.y21c{bottom:969.756579pt;}
.y261{bottom:969.757376pt;}
.yc9{bottom:970.961726pt;}
.y27{bottom:971.111600pt;}
.y159{bottom:972.547991pt;}
.y1e4{bottom:973.759757pt;}
.y137{bottom:973.763565pt;}
.yc8{bottom:984.265324pt;}
.y252{bottom:984.341361pt;}
.y21b{bottom:984.345347pt;}
.y260{bottom:984.346143pt;}
.y158{bottom:984.491601pt;}
.y1e3{bottom:990.993726pt;}
.y136{bottom:990.997535pt;}
.yc7{bottom:997.493605pt;}
.y251{bottom:999.005446pt;}
.y21a{bottom:999.009431pt;}
.y25f{bottom:999.010228pt;}
.y157{bottom:1000.289600pt;}
.y1e2{bottom:1008.303412pt;}
.y135{bottom:1008.307220pt;}
.yc6{bottom:1010.797204pt;}
.y250{bottom:1013.594214pt;}
.y219{bottom:1013.598199pt;}
.y25e{bottom:1013.598996pt;}
.y156{bottom:1016.238219pt;}
.yc5{bottom:1024.100802pt;}
.y1e1{bottom:1025.537381pt;}
.y134{bottom:1025.541190pt;}
.y24f{bottom:1028.182982pt;}
.y218{bottom:1028.186967pt;}
.y25d{bottom:1028.187764pt;}
.y155{bottom:1030.827584pt;}
.yc3{bottom:1034.910683pt;}
.y1{bottom:1035.664002pt;}
.yc4{bottom:1037.404400pt;}
.y1e0{bottom:1042.847067pt;}
.y133{bottom:1042.850875pt;}
.y217{bottom:1042.851052pt;}
.y25c{bottom:1042.851849pt;}
.y154{bottom:1045.492667pt;}
.yc2{bottom:1046.853608pt;}
.yc1{bottom:1058.796533pt;}
.y26{bottom:1071.134667pt;}
.y126{bottom:1078.752533pt;}
.h22{height:19.732475pt;}
.hf{height:22.199320pt;}
.h23{height:24.873154pt;}
.hc{height:26.116735pt;}
.h1a{height:26.593424pt;}
.h16{height:27.336826pt;}
.h1b{height:28.492464pt;}
.h1e{height:28.731562pt;}
.h24{height:29.967952pt;}
.h18{height:30.393029pt;}
.h21{height:30.399121pt;}
.h19{height:30.648076pt;}
.h3{height:32.687500pt;}
.h13{height:33.378546pt;}
.h10{height:34.191491pt;}
.h17{height:34.478412pt;}
.h14{height:35.496984pt;}
.h12{height:35.798252pt;}
.h20{height:36.091675pt;}
.h11{height:36.099519pt;}
.h15{height:36.400787pt;}
.h7{height:36.773438pt;}
.h1c{height:38.309518pt;}
.hd{height:38.941699pt;}
.h1f{height:40.110756pt;}
.hb{height:40.224878pt;}
.h6{height:40.859375pt;}
.h1d{height:42.141008pt;}
.he{height:42.266807pt;}
.h5{height:49.031250pt;}
.ha{height:53.633171pt;}
.h2{height:61.289062pt;}
.h4{height:73.546875pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.h8{height:1122.520000pt;}
.h9{height:1122.666667pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:32.533333pt;}
.x7{left:79.672400pt;}
.xa1{left:81.639038pt;}
.x58{left:83.754267pt;}
.xb4{left:85.643913pt;}
.x6f{left:87.911733pt;}
.x9d{left:95.622000pt;}
.xad{left:98.267234pt;}
.xa9{left:99.628267pt;}
.xb3{left:101.442533pt;}
.xaa{left:104.617333pt;}
.x99{left:107.338533pt;}
.x76{left:110.815733pt;}
.x9f{left:112.176400pt;}
.x9a{left:115.502267pt;}
.x57{left:117.618800pt;}
.x77{left:118.979467pt;}
.x4b{left:122.381067pt;}
.x19{left:126.614133pt;}
.x2{left:129.466667pt;}
.x1a{left:131.754267pt;}
.x4c{left:132.812533pt;}
.x63{left:133.870800pt;}
.x23{left:135.684933pt;}
.x41{left:137.272400pt;}
.x33{left:138.330667pt;}
.x8{left:143.546400pt;}
.x24{left:146.040933pt;}
.x9{left:148.762133pt;}
.xa0{left:151.106256pt;}
.x69{left:156.094400pt;}
.x65{left:166.524329pt;}
.x1{left:170.560000pt;}
.x3{left:175.733333pt;}
.x71{left:180.281546pt;}
.x4d{left:185.877067pt;}
.x25{left:189.203067pt;}
.x98{left:194.721200pt;}
.x26{left:199.634533pt;}
.x85{left:202.733258pt;}
.x5{left:209.729338pt;}
.x34{left:216.113333pt;}
.xa2{left:217.474858pt;}
.x35{left:226.544800pt;}
.xa5{left:227.451867pt;}
.x96{left:228.358933pt;}
.x87{left:233.574940pt;}
.x97{left:236.522800pt;}
.xa4{left:243.250267pt;}
.x91{left:246.047200pt;}
.x7e{left:251.036133pt;}
.x6a{left:254.135333pt;}
.x4e{left:255.722800pt;}
.xb1{left:257.536933pt;}
.xa{left:259.124400pt;}
.x4{left:260.969328pt;}
.x6b{left:262.299200pt;}
.xb{left:264.264533pt;}
.x4f{left:266.078667pt;}
.xa8{left:267.741600pt;}
.xac{left:269.480945pt;}
.xab{left:272.504307pt;}
.x36{left:274.544800pt;}
.x7c{left:281.272400pt;}
.x80{left:282.406267pt;}
.x37{left:284.976267pt;}
.x74{left:287.017200pt;}
.x7d{left:289.511733pt;}
.x42{left:294.878667pt;}
.x81{left:298.884933pt;}
.x43{left:305.310133pt;}
.x82{left:307.048800pt;}
.x1b{left:309.165333pt;}
.xae{left:311.281733pt;}
.x27{left:312.188933pt;}
.x75{left:313.096000pt;}
.x1c{left:319.596800pt;}
.x28{left:322.620400pt;}
.xc{left:326.853467pt;}
.xd{left:332.069200pt;}
.xa3{left:333.278667pt;}
.x62{left:340.081733pt;}
.x44{left:341.140133pt;}
.x5b{left:344.314945pt;}
.x5f{left:345.373067pt;}
.x90{left:349.228267pt;}
.x45{left:351.571600pt;}
.x38{left:354.670800pt;}
.xa6{left:359.432933pt;}
.x39{left:365.102267pt;}
.xa7{left:366.992000pt;}
.x7a{left:370.166800pt;}
.x59{left:371.829733pt;}
.x5a{left:375.911733pt;}
.x7b{left:378.406133pt;}
.x50{left:379.313333pt;}
.x29{left:386.040800pt;}
.x51{left:389.744800pt;}
.x6e{left:394.960533pt;}
.x2a{left:396.472267pt;}
.x78{left:397.456008pt;}
.xe{left:401.007733pt;}
.xf{left:406.223467pt;}
.x1d{left:408.415600pt;}
.x3a{left:414.462933pt;}
.xaf{left:416.730533pt;}
.x1e{left:418.847067pt;}
.x3b{left:424.818800pt;}
.xb2{left:430.563821pt;}
.x46{left:434.721200pt;}
.x6c{left:437.065538pt;}
.x8e{left:446.059733pt;}
.x94{left:450.444000pt;}
.x8f{left:454.223467pt;}
.x72{left:457.625067pt;}
.x95{left:458.607733pt;}
.x73{left:465.788800pt;}
.x84{left:469.870800pt;}
.x3c{left:472.138400pt;}
.x60{left:473.953395pt;}
.x61{left:475.691662pt;}
.x10{left:477.505467pt;}
.x11{left:482.721200pt;}
.x1f{left:483.854041pt;}
.x2b{left:485.896000pt;}
.x52{left:488.012400pt;}
.x47{left:494.740000pt;}
.x2c{left:496.327467pt;}
.x53{left:498.368400pt;}
.x86{left:505.776267pt;}
.x66{left:509.934066pt;}
.x12{left:514.846707pt;}
.x8b{left:517.644000pt;}
.x9b{left:522.103867pt;}
.x5c{left:527.092800pt;}
.x8c{left:528.453467pt;}
.x9c{left:530.267600pt;}
.x5d{left:531.174667pt;}
.x88{left:534.122667pt;}
.x8d{left:536.692800pt;}
.x64{left:539.414000pt;}
.x67{left:540.926381pt;}
.x89{left:542.286400pt;}
.x13{left:544.402933pt;}
.x5e{left:547.804667pt;}
.x14{left:549.618800pt;}
.x3d{left:552.415600pt;}
.x2d{left:555.514800pt;}
.x70{left:557.933733pt;}
.x79{left:561.788800pt;}
.x3e{left:562.771467pt;}
.x2e{left:565.946267pt;}
.x8a{left:566.928933pt;}
.x54{left:570.708533pt;}
.x93{left:578.343200pt;}
.x55{left:581.064400pt;}
.xb0{left:591.043058pt;}
.x9e{left:594.368267pt;}
.x48{left:596.636133pt;}
.x15{left:603.741600pt;}
.x49{left:607.067600pt;}
.x16{left:608.957333pt;}
.x92{left:612.661200pt;}
.x20{left:614.021867pt;}
.x2f{left:621.429733pt;}
.x6d{left:630.198267pt;}
.x30{left:631.861200pt;}
.x68{left:639.194638pt;}
.x3f{left:651.514800pt;}
.x40{left:661.870667pt;}
.x7f{left:665.423467pt;}
.x4a{left:667.615600pt;}
.x21{left:669.051867pt;}
.x56{left:672.831333pt;}
.x17{left:678.198267pt;}
.x22{left:679.483333pt;}
.x18{left:683.414000pt;}
.x83{left:688.479078pt;}
.x31{left:700.799867pt;}
.x32{left:711.231333pt;}
}




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