
    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_9cad989f6c74b845b3b01d0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6765e6ec50d506c2ca07b728.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_648ab2cb8ca83d1430476a67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722000;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_093552dd8bf6a637c7df25db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_8b7c0537ec81b839df8eb119.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.622000;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_bf03c5bd8b2a3b010efdeff6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.510000;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_11890b095c22c06e7f4d82b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.383000;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_ceef4a808d494b62b103e55f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_0cd0817eb86e7befcad8573d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.392000;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_b7e46b593b0de5b685b5c690.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d224eff8153667be23e03745.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_fc6c78963b19274d4804600a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_1656a4575e1e2477f821d13e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.730000;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_376ceca57349a92ca7e1936e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_a0839042850a50bd5f9d77fa.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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_5b2ab78622442ed8d35ba323.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.515000;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_f7d544dd06b3af9733c55936.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.050000;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_2bc9133dd7fcc4bb4d896c4a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.579000;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_d1e44a0932db50be66279949.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.748000;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_03cc9bc78dbbc5233d4deeea.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.728000;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_4f8f06cd605556b2c7f3dd6f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.315000;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_ded3c2321e0dbc20c08f74e6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.688000;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:ff17;src:url('chunks/assets/font_c3181ee7ed0acec6ea3bb054.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.705000;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:ff18;src:url('chunks/assets/font_ef76571fe0188edb05359e0e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.948000;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.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls8{letter-spacing:-0.752400px;}
.lsc{letter-spacing:-0.701100px;}
.lsb{letter-spacing:-0.666900px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.012000px;}
.ls24{letter-spacing:0.038400px;}
.ls0{letter-spacing:0.082789px;}
.ls12{letter-spacing:0.084001px;}
.ls14{letter-spacing:0.099990px;}
.ls1a{letter-spacing:0.108001px;}
.ls15{letter-spacing:0.114001px;}
.ls21{letter-spacing:0.138001px;}
.ls1c{letter-spacing:0.153598px;}
.ls11{letter-spacing:0.168002px;}
.lsf{letter-spacing:0.174002px;}
.ls10{letter-spacing:0.186002px;}
.ls25{letter-spacing:0.201597px;}
.ls20{letter-spacing:0.216002px;}
.ls18{letter-spacing:0.354004px;}
.ls1b{letter-spacing:0.378004px;}
.ls17{letter-spacing:0.402004px;}
.ls5{letter-spacing:10.243072px;}
.ls3{letter-spacing:10.262272px;}
.ls23{letter-spacing:10.396670px;}
.ls6{letter-spacing:10.550268px;}
.ls22{letter-spacing:10.737466px;}
.lsa{letter-spacing:11.867400px;}
.ls9{letter-spacing:12.163800px;}
.ls1f{letter-spacing:12.696127px;}
.lse{letter-spacing:13.110131px;}
.ls1d{letter-spacing:13.233435px;}
.ls1e{letter-spacing:13.326133px;}
.ls16{letter-spacing:13.374134px;}
.ls19{letter-spacing:13.380134px;}
.lsd{letter-spacing:13.452135px;}
.ls2{letter-spacing:20.788540px;}
.ls1{letter-spacing:21.124536px;}
.ls4{letter-spacing:23.846102px;}
.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;}
}
.wsb8{word-spacing:-13.512135px;}
.ws10c{word-spacing:-13.281434px;}
.wsb2{word-spacing:-13.170132px;}
.ws16{word-spacing:-12.220800px;}
.ws1b{word-spacing:-11.924400px;}
.ws29{word-spacing:-10.598268px;}
.ws124{word-spacing:-0.071999px;}
.ws59{word-spacing:-0.060001px;}
.ws15{word-spacing:-0.057000px;}
.ws11{word-spacing:-0.047999px;}
.ws6{word-spacing:-0.035995px;}
.ws45{word-spacing:0.000000px;}
.ws22{word-spacing:0.644100px;}
.ws143{word-spacing:9.489481px;}
.ws12a{word-spacing:9.499081px;}
.wsbf{word-spacing:9.705479px;}
.ws42{word-spacing:9.715079px;}
.wsd8{word-spacing:9.743878px;}
.ws33{word-spacing:9.748678px;}
.ws43{word-spacing:9.753478px;}
.ws3f{word-spacing:9.820677px;}
.ws2b{word-spacing:9.825477px;}
.ws31{word-spacing:9.830277px;}
.ws133{word-spacing:9.835077px;}
.ws38{word-spacing:9.844677px;}
.ws3c{word-spacing:9.849477px;}
.ws2f{word-spacing:9.854277px;}
.wsa8{word-spacing:9.859077px;}
.ws13d{word-spacing:9.863877px;}
.ws37{word-spacing:9.873477px;}
.ws40{word-spacing:9.878277px;}
.ws35{word-spacing:9.883076px;}
.wsec{word-spacing:9.887876px;}
.ws36{word-spacing:9.892676px;}
.ws12f{word-spacing:9.897476px;}
.wsbb{word-spacing:9.902276px;}
.ws2c{word-spacing:9.916676px;}
.ws32{word-spacing:9.921476px;}
.ws7d{word-spacing:9.926276px;}
.wsf{word-spacing:9.931076px;}
.wsd6{word-spacing:9.935876px;}
.ws146{word-spacing:9.940676px;}
.ws34{word-spacing:9.950276px;}
.ws135{word-spacing:9.964675px;}
.wsad{word-spacing:9.969475px;}
.wsd{word-spacing:9.974275px;}
.wsc{word-spacing:9.979075px;}
.ws13c{word-spacing:9.988675px;}
.wsdb{word-spacing:10.003075px;}
.ws41{word-spacing:10.007875px;}
.ws7b{word-spacing:10.012675px;}
.ws12c{word-spacing:10.017475px;}
.ws132{word-spacing:10.022275px;}
.ws139{word-spacing:10.031875px;}
.ws7c{word-spacing:10.036675px;}
.ws134{word-spacing:10.041474px;}
.ws30{word-spacing:10.046274px;}
.wsde{word-spacing:10.055874px;}
.wsa6{word-spacing:10.060674px;}
.ws13f{word-spacing:10.065474px;}
.ws140{word-spacing:10.070274px;}
.wsba{word-spacing:10.075074px;}
.ws3e{word-spacing:10.079874px;}
.ws79{word-spacing:10.084674px;}
.ws12d{word-spacing:10.089474px;}
.wsed{word-spacing:10.099074px;}
.ws13b{word-spacing:10.108674px;}
.ws2e{word-spacing:10.113474px;}
.wsee{word-spacing:10.118274px;}
.ws2d{word-spacing:10.123073px;}
.wsbc{word-spacing:10.127873px;}
.ws3a{word-spacing:10.132673px;}
.ws119{word-spacing:10.137473px;}
.ws128{word-spacing:10.142273px;}
.wsc4{word-spacing:10.151873px;}
.wsd7{word-spacing:10.156673px;}
.ws137{word-spacing:10.161473px;}
.wsbd{word-spacing:10.171073px;}
.ws2a{word-spacing:10.180673px;}
.ws44{word-spacing:10.185473px;}
.ws28{word-spacing:10.195073px;}
.wsd5{word-spacing:10.199873px;}
.wsef{word-spacing:10.204672px;}
.wsd9{word-spacing:10.228672px;}
.wsc2{word-spacing:10.233472px;}
.wsaa{word-spacing:10.238272px;}
.ws138{word-spacing:10.243072px;}
.wsd4{word-spacing:10.247872px;}
.wse{word-spacing:10.257472px;}
.ws145{word-spacing:10.262272px;}
.wsa7{word-spacing:10.267072px;}
.wsa5{word-spacing:10.271872px;}
.wsab{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws12b{word-spacing:10.291071px;}
.ws147{word-spacing:10.300671px;}
.ws7a{word-spacing:10.305471px;}
.ws118{word-spacing:10.310271px;}
.wsc5{word-spacing:10.315071px;}
.ws131{word-spacing:10.329471px;}
.ws141{word-spacing:10.339071px;}
.wsdc{word-spacing:10.343871px;}
.wsac{word-spacing:10.348671px;}
.wsc3{word-spacing:10.353471px;}
.ws129{word-spacing:10.387070px;}
.wsa9{word-spacing:10.401470px;}
.ws3b{word-spacing:10.425470px;}
.ws3d{word-spacing:10.444669px;}
.ws12e{word-spacing:10.459069px;}
.ws39{word-spacing:10.463869px;}
.ws127{word-spacing:10.468669px;}
.ws144{word-spacing:10.478269px;}
.ws13e{word-spacing:10.483069px;}
.ws10{word-spacing:10.497469px;}
.wsdd{word-spacing:10.511869px;}
.wsbe{word-spacing:10.531068px;}
.wsda{word-spacing:10.535868px;}
.ws130{word-spacing:10.564668px;}
.ws13a{word-spacing:10.612667px;}
.ws24{word-spacing:11.257500px;}
.ws1f{word-spacing:11.400000px;}
.ws13{word-spacing:11.411400px;}
.ws20{word-spacing:11.439900px;}
.ws26{word-spacing:11.474100px;}
.ws21{word-spacing:11.496900px;}
.ws17{word-spacing:11.508300px;}
.wsa{word-spacing:11.556000px;}
.ws23{word-spacing:11.593800px;}
.ws4{word-spacing:11.599200px;}
.ws7{word-spacing:11.637000px;}
.ws5{word-spacing:11.647800px;}
.ws1e{word-spacing:11.679300px;}
.ws1a{word-spacing:11.685000px;}
.ws9{word-spacing:11.701800px;}
.wsb{word-spacing:11.712600px;}
.ws19{word-spacing:11.747700px;}
.ws18{word-spacing:11.764800px;}
.ws8{word-spacing:11.896200px;}
.ws27{word-spacing:11.924400px;}
.ws14{word-spacing:12.021300px;}
.ws25{word-spacing:12.106800px;}
.ws120{word-spacing:12.396124px;}
.ws110{word-spacing:12.504125px;}
.ws1d{word-spacing:12.505800px;}
.ws84{word-spacing:12.618126px;}
.wsca{word-spacing:12.642126px;}
.ws82{word-spacing:12.678127px;}
.wscb{word-spacing:12.690127px;}
.wsf3{word-spacing:12.724641px;}
.ws111{word-spacing:12.732127px;}
.wsa3{word-spacing:12.738127px;}
.ws76{word-spacing:12.744127px;}
.ws117{word-spacing:12.750127px;}
.wsb9{word-spacing:12.762128px;}
.ws9e{word-spacing:12.768128px;}
.ws115{word-spacing:12.780128px;}
.ws113{word-spacing:12.786128px;}
.ws77{word-spacing:12.810128px;}
.ws103{word-spacing:12.811040px;}
.ws112{word-spacing:12.828128px;}
.wsdf{word-spacing:12.834128px;}
.wsd1{word-spacing:12.840128px;}
.wsa4{word-spacing:12.846128px;}
.ws102{word-spacing:12.854239px;}
.wsf9{word-spacing:12.859039px;}
.ws100{word-spacing:12.873439px;}
.ws10f{word-spacing:12.878239px;}
.ws81{word-spacing:12.882129px;}
.ws107{word-spacing:12.883039px;}
.wsc9{word-spacing:12.888129px;}
.ws94{word-spacing:12.906129px;}
.ws86{word-spacing:12.936129px;}
.wsff{word-spacing:12.940638px;}
.wsfb{word-spacing:12.950238px;}
.wse7{word-spacing:12.954130px;}
.ws60{word-spacing:12.960130px;}
.wsb5{word-spacing:12.966130px;}
.ws68{word-spacing:12.972130px;}
.wsf7{word-spacing:12.974238px;}
.ws7f{word-spacing:12.978130px;}
.ws8d{word-spacing:12.984130px;}
.wsea{word-spacing:12.990130px;}
.ws9d{word-spacing:12.996130px;}
.ws83{word-spacing:13.002130px;}
.wsc0{word-spacing:13.008130px;}
.ws12{word-spacing:13.013100px;}
.ws58{word-spacing:13.014130px;}
.ws73{word-spacing:13.020130px;}
.ws47{word-spacing:13.026130px;}
.ws6d{word-spacing:13.032130px;}
.ws75{word-spacing:13.038130px;}
.wsfc{word-spacing:13.041437px;}
.ws6f{word-spacing:13.044130px;}
.ws10e{word-spacing:13.046237px;}
.ws4b{word-spacing:13.050130px;}
.ws97{word-spacing:13.056131px;}
.ws5a{word-spacing:13.062131px;}
.wsf5{word-spacing:13.065437px;}
.wsc1{word-spacing:13.068131px;}
.ws106{word-spacing:13.070237px;}
.ws7e{word-spacing:13.074131px;}
.ws5c{word-spacing:13.080131px;}
.ws80{word-spacing:13.086131px;}
.ws98{word-spacing:13.092131px;}
.ws50{word-spacing:13.098131px;}
.wsf2{word-spacing:13.103836px;}
.ws54{word-spacing:13.104131px;}
.ws55{word-spacing:13.110131px;}
.ws8e{word-spacing:13.116131px;}
.ws48{word-spacing:13.122131px;}
.wsf8{word-spacing:13.123036px;}
.ws70{word-spacing:13.128131px;}
.ws53{word-spacing:13.134131px;}
.wscf{word-spacing:13.140131px;}
.wsd2{word-spacing:13.146131px;}
.wsd3{word-spacing:13.152132px;}
.ws88{word-spacing:13.158132px;}
.ws78{word-spacing:13.164132px;}
.ws9a{word-spacing:13.170132px;}
.wsf6{word-spacing:13.175835px;}
.ws4e{word-spacing:13.176132px;}
.ws51{word-spacing:13.182132px;}
.ws8f{word-spacing:13.188132px;}
.wsae{word-spacing:13.194132px;}
.ws6a{word-spacing:13.200132px;}
.ws8b{word-spacing:13.206132px;}
.ws5f{word-spacing:13.212132px;}
.ws10a{word-spacing:13.214235px;}
.ws96{word-spacing:13.218132px;}
.ws104{word-spacing:13.219035px;}
.ws5b{word-spacing:13.224132px;}
.ws87{word-spacing:13.230132px;}
.ws10b{word-spacing:13.233435px;}
.ws71{word-spacing:13.236132px;}
.ws8a{word-spacing:13.242132px;}
.ws74{word-spacing:13.248132px;}
.wsf1{word-spacing:13.252634px;}
.ws123{word-spacing:13.254133px;}
.ws10d{word-spacing:13.257434px;}
.ws109{word-spacing:13.262234px;}
.ws4d{word-spacing:13.272133px;}
.wse9{word-spacing:13.278133px;}
.ws61{word-spacing:13.290133px;}
.wsb4{word-spacing:13.296133px;}
.wse2{word-spacing:13.308133px;}
.wsb6{word-spacing:13.314133px;}
.ws57{word-spacing:13.320133px;}
.ws62{word-spacing:13.326133px;}
.ws108{word-spacing:13.334233px;}
.wseb{word-spacing:13.338133px;}
.ws69{word-spacing:13.344133px;}
.ws4f{word-spacing:13.350134px;}
.ws1c{word-spacing:13.360800px;}
.wsb1{word-spacing:13.362134px;}
.ws4a{word-spacing:13.368134px;}
.ws66{word-spacing:13.374134px;}
.wsb3{word-spacing:13.380134px;}
.ws64{word-spacing:13.386134px;}
.wsaf{word-spacing:13.392134px;}
.ws56{word-spacing:13.398134px;}
.ws52{word-spacing:13.404134px;}
.ws95{word-spacing:13.410134px;}
.ws6b{word-spacing:13.416134px;}
.ws5d{word-spacing:13.422134px;}
.ws6c{word-spacing:13.428134px;}
.wse5{word-spacing:13.434134px;}
.ws72{word-spacing:13.440134px;}
.wse0{word-spacing:13.446134px;}
.ws6e{word-spacing:13.452135px;}
.ws63{word-spacing:13.458135px;}
.ws4c{word-spacing:13.464135px;}
.ws85{word-spacing:13.470135px;}
.ws91{word-spacing:13.476135px;}
.wsf4{word-spacing:13.478232px;}
.ws67{word-spacing:13.482135px;}
.wsc6{word-spacing:13.488135px;}
.ws92{word-spacing:13.494135px;}
.ws89{word-spacing:13.500135px;}
.ws114{word-spacing:13.506135px;}
.wsc8{word-spacing:13.518135px;}
.ws11a{word-spacing:13.524135px;}
.wsb0{word-spacing:13.530135px;}
.ws5e{word-spacing:13.542135px;}
.ws8c{word-spacing:13.554136px;}
.ws9b{word-spacing:13.560136px;}
.ws99{word-spacing:13.566136px;}
.wsf0{word-spacing:13.572136px;}
.wse4{word-spacing:13.584136px;}
.wse6{word-spacing:13.590136px;}
.wsb7{word-spacing:13.596136px;}
.wsd0{word-spacing:13.638136px;}
.ws11d{word-spacing:13.650136px;}
.ws49{word-spacing:13.656137px;}
.ws65{word-spacing:13.686137px;}
.ws90{word-spacing:13.692137px;}
.ws9c{word-spacing:13.716137px;}
.wse8{word-spacing:13.776138px;}
.wse3{word-spacing:13.788138px;}
.ws116{word-spacing:13.854139px;}
.wsa1{word-spacing:15.400672px;}
.ws11f{word-spacing:15.407872px;}
.ws93{word-spacing:15.415072px;}
.ws9f{word-spacing:15.465471px;}
.ws125{word-spacing:15.523071px;}
.wse1{word-spacing:15.537471px;}
.wscd{word-spacing:15.580670px;}
.ws11e{word-spacing:15.602270px;}
.ws122{word-spacing:15.631070px;}
.wsce{word-spacing:15.645470px;}
.wsa2{word-spacing:15.681469px;}
.ws11b{word-spacing:15.731869px;}
.wsc7{word-spacing:15.796668px;}
.ws121{word-spacing:15.854268px;}
.ws11c{word-spacing:15.883068px;}
.wscc{word-spacing:15.919067px;}
.wsa0{word-spacing:15.962267px;}
.ws46{word-spacing:15.983867px;}
.ws142{word-spacing:20.812540px;}
.ws2{word-spacing:26.280131px;}
.ws1{word-spacing:26.304132px;}
.ws3{word-spacing:26.400132px;}
.ws126{word-spacing:59.821652px;}
.ws136{word-spacing:59.860052px;}
.ws105{word-spacing:199.802302px;}
.ws101{word-spacing:226.336371px;}
.wsfd{word-spacing:239.905801px;}
.wsfe{word-spacing:266.065474px;}
.wsfa{word-spacing:272.564593px;}
._5{margin-left:-13.104300px;}
._4{margin-left:-11.758609px;}
._e{margin-left:-10.550268px;}
._b{margin-left:-7.208152px;}
._7{margin-left:-5.954412px;}
._8{margin-left:-4.519498px;}
._f{margin-left:-3.316759px;}
._0{margin-left:-2.256011px;}
._2{margin-left:-1.060787px;}
._9{width:1.251623px;}
._3{width:9.182285px;}
._a{width:10.226713px;}
._1{width:11.260659px;}
._6{width:12.799205px;}
._10{width:14.298143px;}
._11{width:16.516662px;}
._13{width:21.095736px;}
._c{width:48.618632px;}
._2c{width:187.418457px;}
._31{width:200.306296px;}
._1c{width:213.122136px;}
._1a{width:226.384370px;}
._36{width:231.352308px;}
._37{width:232.489894px;}
._2a{width:239.953801px;}
._28{width:253.187235px;}
._15{width:274.614167px;}
._1b{width:281.314884px;}
._2b{width:287.881201px;}
._2d{width:296.799490px;}
._22{width:299.295459px;}
._1d{width:301.450632px;}
._14{width:305.079386px;}
._16{width:310.066524px;}
._23{width:314.376870px;}
._29{width:317.031237px;}
._2e{width:321.898376px;}
._1e{width:323.295159px;}
._2f{width:326.050324px;}
._30{width:330.063074px;}
._17{width:335.127011px;}
._32{width:336.562193px;}
._18{width:339.317358px;}
._19{width:343.291709px;}
._1f{width:348.394045px;}
._24{width:350.131623px;}
._20{width:352.545993px;}
._21{width:356.217947px;}
._33{width:361.622680px;}
._34{width:365.472232px;}
._35{width:369.787378px;}
._25{width:374.889714px;}
._26{width:378.700866px;}
._27{width:383.054412px;}
._12{width:1629.531631px;}
._d{width:1656.065699px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:54.000000px;}
.y149{bottom:124.487790px;}
.yaa{bottom:124.492575px;}
.y165{bottom:124.493205px;}
.y136{bottom:124.494885px;}
.y23f{bottom:124.496325px;}
.y77{bottom:124.496565px;}
.y1e4{bottom:124.496955px;}
.y28f{bottom:124.497038px;}
.y79{bottom:124.497600px;}
.y47{bottom:124.503964px;}
.yd3{bottom:125.075490px;}
.yfd{bottom:126.957675px;}
.yfe{bottom:126.963750px;}
.yde{bottom:129.937095px;}
.y78{bottom:131.130750px;}
.y16f{bottom:133.338645px;}
.y13b{bottom:134.276369px;}
.y28e{bottom:138.784059px;}
.y151{bottom:139.716885px;}
.y46{bottom:141.001358px;}
.y1e2{bottom:141.505500px;}
.y148{bottom:143.962484px;}
.ya9{bottom:143.967269px;}
.y164{bottom:143.967900px;}
.y135{bottom:143.969580px;}
.y23e{bottom:143.971019px;}
.y76{bottom:143.971260px;}
.y1e3{bottom:143.971650px;}
.y1e1{bottom:143.971904px;}
.yd2{bottom:144.550184px;}
.y21a{bottom:144.560549px;}
.y2ca{bottom:145.839450px;}
.yfc{bottom:146.432370px;}
.ydd{bottom:149.411790px;}
.y16e{bottom:152.813340px;}
.y13a{bottom:153.835065px;}
.y17f{bottom:154.513545px;}
.y22a{bottom:156.894516px;}
.y45{bottom:157.498751px;}
.y28d{bottom:158.257416px;}
.y29{bottom:158.433750px;}
.y150{bottom:159.191580px;}
.y2c9{bottom:160.041273px;}
.y1df{bottom:160.979550px;}
.y1de{bottom:163.515105px;}
.y147{bottom:163.521180px;}
.ya8{bottom:163.525965px;}
.y163{bottom:163.526596px;}
.y134{bottom:163.528275px;}
.y23d{bottom:163.529715px;}
.y75{bottom:163.529955px;}
.y1e0{bottom:163.530600px;}
.yd1{bottom:164.108880px;}
.y219{bottom:164.119245px;}
.yfb{bottom:165.991066px;}
.ydc{bottom:168.970485px;}
.y264{bottom:169.483500px;}
.y16d{bottom:172.372035px;}
.y28c{bottom:172.459238px;}
.y139{bottom:173.309760px;}
.y17e{bottom:173.988240px;}
.y44{bottom:173.996145px;}
.y2c8{bottom:174.328294px;}
.y14f{bottom:178.750275px;}
.y28{bottom:179.438250px;}
.y229{bottom:180.110626px;}
.y72{bottom:180.538500px;}
.y1dd{bottom:182.989800px;}
.y71{bottom:182.995875px;}
.ya7{bottom:183.000660px;}
.y162{bottom:183.001290px;}
.y133{bottom:183.002970px;}
.y23c{bottom:183.004410px;}
.y73{bottom:183.004650px;}
.yd0{bottom:183.583575px;}
.y218{bottom:183.593940px;}
.yfa{bottom:185.465761px;}
.y28b{bottom:186.746260px;}
.ydb{bottom:188.445180px;}
.y74{bottom:189.637800px;}
.y43{bottom:190.493539px;}
.y16c{bottom:191.846730px;}
.y138{bottom:192.784454px;}
.y17d{bottom:193.462934px;}
.y2c7{bottom:193.801651px;}
.y228{bottom:194.397647px;}
.y14e{bottom:198.224970px;}
.y27{bottom:200.442750px;}
.y1dc{bottom:202.464495px;}
.y70{bottom:202.470569px;}
.ya6{bottom:202.475354px;}
.y161{bottom:202.475985px;}
.y23b{bottom:202.479104px;}
.y132{bottom:202.561666px;}
.ycf{bottom:203.058269px;}
.y217{bottom:203.068634px;}
.yf9{bottom:204.940455px;}
.y28a{bottom:206.220816px;}
.y42{bottom:206.990933px;}
.yda{bottom:207.919875px;}
.y2c6{bottom:208.088672px;}
.yb6{bottom:208.516500px;}
.y227{bottom:208.599469px;}
.y16b{bottom:211.321425px;}
.y137{bottom:212.343150px;}
.y17c{bottom:213.021630px;}
.y263{bottom:217.274175px;}
.y14d{bottom:217.699665px;}
.y289{bottom:220.507838px;}
.y26{bottom:221.447250px;}
.y1db{bottom:222.023190px;}
.y6f{bottom:222.029265px;}
.ya5{bottom:222.034050px;}
.y160{bottom:222.034681px;}
.y238{bottom:222.035085px;}
.y131{bottom:222.036361px;}
.y23a{bottom:222.037800px;}
.y2c5{bottom:222.290494px;}
.yce{bottom:222.616965px;}
.y216{bottom:222.627330px;}
.y226{bottom:222.886491px;}
.y41{bottom:223.488327px;}
.yf8{bottom:224.415150px;}
.yd9{bottom:227.394569px;}
.y239{bottom:228.670800px;}
.y16a{bottom:230.796119px;}
.y17b{bottom:232.496325px;}
.y262{bottom:236.748869px;}
.y225{bottom:237.088313px;}
.y14c{bottom:237.258361px;}
.y288{bottom:239.981194px;}
.y40{bottom:239.985720px;}
.y1da{bottom:241.497885px;}
.y6e{bottom:241.503960px;}
.ya4{bottom:241.508745px;}
.y15f{bottom:241.509375px;}
.y237{bottom:241.509780px;}
.y130{bottom:241.511055px;}
.y2c4{bottom:241.849050px;}
.ycd{bottom:242.091660px;}
.y215{bottom:242.102025px;}
.y25{bottom:242.451750px;}
.yf7{bottom:243.973846px;}
.y146{bottom:244.315744px;}
.yd8{bottom:246.953265px;}
.y169{bottom:250.354815px;}
.y224{bottom:251.375335px;}
.y17a{bottom:251.971019px;}
.y287{bottom:254.268216px;}
.y2c3{bottom:256.050872px;}
.y261{bottom:256.307565px;}
.y14b{bottom:256.733055px;}
.y12e{bottom:258.519600px;}
.yb5{bottom:258.774360px;}
.y1d9{bottom:260.972580px;}
.y6d{bottom:260.978654px;}
.ya3{bottom:260.983440px;}
.y15e{bottom:260.984070px;}
.y236{bottom:260.984475px;}
.y12d{bottom:260.985119px;}
.y12f{bottom:260.985750px;}
.ycc{bottom:261.566355px;}
.y214{bottom:261.576719px;}
.yf6{bottom:263.448540px;}
.y24{bottom:263.456250px;}
.y3f{bottom:265.497401px;}
.y223{bottom:265.662356px;}
.yd7{bottom:266.427960px;}
.y145{bottom:267.615853px;}
.y168{bottom:269.829510px;}
.y179{bottom:271.529715px;}
.y286{bottom:273.741572px;}
.y2c2{bottom:275.609428px;}
.y260{bottom:275.782260px;}
.y14a{bottom:276.207750px;}
.yb4{bottom:278.333055px;}
.y222{bottom:279.864179px;}
.y6c{bottom:280.453349px;}
.ya2{bottom:280.458134px;}
.y15d{bottom:280.458765px;}
.y235{bottom:280.459169px;}
.y1d8{bottom:280.531276px;}
.y12c{bottom:280.543815px;}
.ycb{bottom:281.125050px;}
.y213{bottom:281.135415px;}
.y144{bottom:281.817676px;}
.y3e{bottom:281.994795px;}
.yf5{bottom:282.923235px;}
.y23{bottom:284.460750px;}
.yd6{bottom:285.902654px;}
.y285{bottom:288.028594px;}
.y167{bottom:289.304204px;}
.y2c1{bottom:289.811250px;}
.y178{bottom:291.004410px;}
.y220{bottom:292.110150px;}
.y21f{bottom:294.149812px;}
.y221{bottom:294.151200px;}
.y25f{bottom:295.256954px;}
.y143{bottom:296.104697px;}
.yb1{bottom:297.807105px;}
.yb3{bottom:297.807750px;}
.y3d{bottom:298.492189px;}
.y1d7{bottom:300.005970px;}
.y6b{bottom:300.012045px;}
.ya1{bottom:300.016830px;}
.y15c{bottom:300.017461px;}
.y234{bottom:300.017865px;}
.y12b{bottom:300.018510px;}
.yca{bottom:300.599745px;}
.y212{bottom:300.610110px;}
.y284{bottom:302.230416px;}
.yf4{bottom:302.481931px;}
.yd5{bottom:302.910150px;}
.yb2{bottom:304.440900px;}
.yd4{bottom:305.461350px;}
.y22{bottom:305.465250px;}
.y157{bottom:308.265852px;}
.y21e{bottom:308.351635px;}
.y166{bottom:308.862900px;}
.y2c0{bottom:309.284607px;}
.y142{bottom:310.306519px;}
.y177{bottom:310.479104px;}
.y25e{bottom:314.815650px;}
.yae{bottom:317.280765px;}
.yb0{bottom:317.281800px;}
.y1d6{bottom:319.480665px;}
.y6a{bottom:319.486740px;}
.ya0{bottom:319.491525px;}
.y15b{bottom:319.492155px;}
.y233{bottom:319.492560px;}
.y12a{bottom:319.493204px;}
.yc9{bottom:320.074440px;}
.y211{bottom:320.084804px;}
.y283{bottom:321.788972px;}
.yf3{bottom:321.956625px;}
.y21d{bottom:322.638656px;}
.y2bf{bottom:323.571628px;}
.yaf{bottom:324.000000px;}
.y3c{bottom:324.003870px;}
.y141{bottom:324.593541px;}
.y21{bottom:326.469750px;}
.y176{bottom:330.037800px;}
.y156{bottom:331.481962px;}
.y282{bottom:335.990794px;}
.yad{bottom:336.839461px;}
.y21c{bottom:336.840479px;}
.yed{bottom:337.432407px;}
.y2be{bottom:337.858650px;}
.y140{bottom:338.795363px;}
.y69{bottom:338.961434px;}
.y9f{bottom:338.966219px;}
.y15a{bottom:338.966850px;}
.y232{bottom:338.967254px;}
.y1d5{bottom:339.039361px;}
.y129{bottom:339.051900px;}
.yc8{bottom:339.549134px;}
.y210{bottom:339.559499px;}
.y25d{bottom:340.242450px;}
.y3b{bottom:340.501264px;}
.y175{bottom:340.835803px;}
.yf2{bottom:341.431320px;}
.y155{bottom:345.768984px;}
.y20{bottom:347.474250px;}
.y281{bottom:350.277816px;}
.y21b{bottom:351.127500px;}
.y13f{bottom:353.082385px;}
.yac{bottom:356.314155px;}
.y3a{bottom:356.998658px;}
.y2bd{bottom:357.332006px;}
.y1d4{bottom:358.514055px;}
.y68{bottom:358.520130px;}
.y9e{bottom:358.524915px;}
.y231{bottom:358.525950px;}
.yc7{bottom:359.107830px;}
.y20f{bottom:359.118195px;}
.y154{bottom:359.970806px;}
.yec{bottom:360.732515px;}
.yf1{bottom:360.990016px;}
.y174{bottom:364.137112px;}
.y159{bottom:364.478700px;}
.y128{bottom:364.564375px;}
.y1b3{bottom:366.943931px;}
.y13e{bottom:367.369406px;}
.y1f{bottom:368.478750px;}
.y280{bottom:369.751172px;}
.y2bc{bottom:371.533829px;}
.y39{bottom:373.496051px;}
.y153{bottom:374.257828px;}
.yeb{bottom:374.934338px;}
.yab{bottom:375.788850px;}
.y1d3{bottom:377.988750px;}
.y67{bottom:377.994825px;}
.y9d{bottom:377.999610px;}
.y173{bottom:378.338935px;}
.yc6{bottom:378.582525px;}
.y20e{bottom:378.592890px;}
.yf0{bottom:380.464711px;}
.y13d{bottom:381.571229px;}
.y230{bottom:384.036825px;}
.y27f{bottom:384.038194px;}
.y127{bottom:385.568400px;}
.y2bb{bottom:385.820850px;}
.y25c{bottom:388.029120px;}
.y152{bottom:388.459650px;}
.yea{bottom:389.221359px;}
.y1e{bottom:389.483250px;}
.y38{bottom:389.993445px;}
.y172{bottom:392.625956px;}
.y1b2{bottom:394.667185px;}
.y13c{bottom:395.858250px;}
.y66{bottom:397.469519px;}
.y9c{bottom:397.474304px;}
.y1d2{bottom:397.547446px;}
.yc5{bottom:398.057219px;}
.y20d{bottom:398.067584px;}
.yef{bottom:399.939405px;}
.ye9{bottom:403.423182px;}
.y27e{bottom:403.511550px;}
.y2ba{bottom:405.295407px;}
.y37{bottom:406.490839px;}
.y171{bottom:406.827779px;}
.y25b{bottom:407.503815px;}
.ybe{bottom:407.846260px;}
.y1d{bottom:410.487750px;}
.y22f{bottom:410.995200px;}
.y1b1{bottom:413.461350px;}
.y1d1{bottom:417.022140px;}
.y65{bottom:417.028215px;}
.y9b{bottom:417.033000px;}
.y158{bottom:417.531914px;}
.yc4{bottom:417.615915px;}
.y20c{bottom:417.626280px;}
.ye8{bottom:417.710203px;}
.y27d{bottom:417.713373px;}
.y1b0{bottom:418.818750px;}
.yee{bottom:419.414100px;}
.y2b9{bottom:419.582428px;}
.y170{bottom:421.114800px;}
.y126{bottom:427.058370px;}
.y25a{bottom:427.062511px;}
.ybd{bottom:431.062369px;}
.y1af{bottom:431.489700px;}
.y1c{bottom:431.492250px;}
.ye7{bottom:431.912026px;}
.y36{bottom:432.002520px;}
.y2b8{bottom:433.869450px;}
.y1d0{bottom:436.496835px;}
.y64{bottom:436.502910px;}
.y1ae{bottom:436.762050px;}
.yc3{bottom:437.090610px;}
.y20b{bottom:437.100975px;}
.y27c{bottom:437.271928px;}
.y9a{bottom:442.459275px;}
.ybc{bottom:445.349391px;}
.ye6{bottom:446.199047px;}
.y125{bottom:446.533065px;}
.y259{bottom:446.537205px;}
.y1ad{bottom:449.432850px;}
.y109{bottom:451.470244px;}
.y27b{bottom:451.473751px;}
.y1b{bottom:452.496750px;}
.y2b7{bottom:453.342806px;}
.y1ac{bottom:454.790400px;}
.y63{bottom:455.977604px;}
.y1cf{bottom:456.055531px;}
.yc2{bottom:456.565305px;}
.y20a{bottom:456.575669px;}
.y22e{bottom:456.575910px;}
.y35{bottom:457.514201px;}
.ybb{bottom:459.551213px;}
.ye5{bottom:460.486068px;}
.y27a{bottom:465.760772px;}
.y258{bottom:466.011900px;}
.y124{bottom:466.091761px;}
.y1ab{bottom:467.461125px;}
.y2b6{bottom:467.544629px;}
.y99{bottom:469.502250px;}
.y1a{bottom:473.501250px;}
.yba{bottom:473.838235px;}
.y108{bottom:474.686354px;}
.ye4{bottom:474.687891px;}
.y1ce{bottom:475.530225px;}
.y62{bottom:475.536300px;}
.yc1{bottom:476.124000px;}
.y209{bottom:476.134365px;}
.y22d{bottom:476.134605px;}
.y2b5{bottom:481.831650px;}
.y34{bottom:483.025882px;}
.y279{bottom:485.234129px;}
.y1aa{bottom:485.489700px;}
.y123{bottom:485.566455px;}
.y257{bottom:485.570596px;}
.yb9{bottom:488.040057px;}
.y107{bottom:488.973376px;}
.ye3{bottom:488.974912px;}
.y1a9{bottom:490.762050px;}
.y22b{bottom:493.143150px;}
.y19{bottom:494.420250px;}
.y1cd{bottom:495.004920px;}
.y61{bottom:495.010995px;}
.yc0{bottom:495.598695px;}
.y208{bottom:495.609060px;}
.y22c{bottom:495.609300px;}
.y278{bottom:499.521150px;}
.y2b4{bottom:501.306207px;}
.yb8{bottom:502.327079px;}
.ye2{bottom:503.176735px;}
.y106{bottom:503.260397px;}
.y1a8{bottom:503.432850px;}
.y122{bottom:505.041150px;}
.y256{bottom:505.045290px;}
.y33{bottom:508.537563px;}
.y1a7{bottom:508.790400px;}
.y1cc{bottom:514.479615px;}
.y60{bottom:514.485690px;}
.ybf{bottom:515.073390px;}
.y207{bottom:515.083754px;}
.y18{bottom:515.424750px;}
.y2b3{bottom:515.593228px;}
.yb7{bottom:516.614100px;}
.y105{bottom:517.462219px;}
.ye1{bottom:517.463756px;}
.y277{bottom:519.760500px;}
.y1a6{bottom:521.461350px;}
.y121{bottom:524.515845px;}
.y255{bottom:524.519985px;}
.y32{bottom:525.034957px;}
.y1a5{bottom:526.818750px;}
.y2b2{bottom:529.795051px;}
.ye0{bottom:531.665579px;}
.y104{bottom:531.749241px;}
.y205{bottom:532.091100px;}
.y5f{bottom:533.960384px;}
.y1cb{bottom:534.038311px;}
.y98{bottom:534.632085px;}
.y204{bottom:534.640366px;}
.y206{bottom:534.642450px;}
.y17{bottom:536.429250px;}
.y120{bottom:544.074540px;}
.y254{bottom:544.078681px;}
.y103{bottom:545.951063px;}
.ydf{bottom:545.952600px;}
.y2b1{bottom:549.353606px;}
.y1a4{bottom:550.373765px;}
.y31{bottom:550.546638px;}
.y1ca{bottom:553.513005px;}
.y5e{bottom:553.519080px;}
.y97{bottom:554.106780px;}
.y203{bottom:554.115061px;}
.y16{bottom:557.433750px;}
.y102{bottom:560.238085px;}
.y276{bottom:561.343411px;}
.y11f{bottom:563.549235px;}
.y253{bottom:563.553375px;}
.y2b0{bottom:563.555429px;}
.y30{bottom:567.044032px;}
.y1a3{bottom:569.082731px;}
.y1c9{bottom:572.987700px;}
.y5d{bottom:572.993775px;}
.y96{bottom:573.581475px;}
.y202{bottom:573.589755px;}
.y101{bottom:574.439907px;}
.y2ae{bottom:575.801400px;}
.y2ad{bottom:577.841316px;}
.y2af{bottom:577.842450px;}
.y15{bottom:578.438250px;}
.y275{bottom:580.818105px;}
.y11e{bottom:583.023930px;}
.y252{bottom:583.028070px;}
.y2f{bottom:583.541426px;}
.y1a2{bottom:587.790497px;}
.y100{bottom:588.726929px;}
.y200{bottom:590.598300px;}
.y5c{bottom:592.468469px;}
.y1c8{bottom:592.546396px;}
.y95{bottom:593.056169px;}
.y1ff{bottom:593.062634px;}
.y201{bottom:593.064450px;}
.y2ac{bottom:597.314672px;}
.y14{bottom:599.442750px;}
.y2e{bottom:600.038820px;}
.y274{bottom:600.292800px;}
.y1a1{bottom:602.077519px;}
.y11d{bottom:602.582625px;}
.y251{bottom:602.586766px;}
.yff{bottom:603.013950px;}
.y2ab{bottom:611.601694px;}
.y1c7{bottom:612.021090px;}
.y5b{bottom:612.027165px;}
.y94{bottom:612.614865px;}
.y1fe{bottom:612.621330px;}
.y2d{bottom:616.536213px;}
.y13{bottom:620.447250px;}
.y1a0{bottom:620.871684px;}
.y11c{bottom:622.057320px;}
.y250{bottom:622.061461px;}
.y2aa{bottom:625.803516px;}
.y273{bottom:625.804500px;}
.y1c6{bottom:631.495785px;}
.y5a{bottom:631.501860px;}
.y93{bottom:632.089560px;}
.y1fd{bottom:632.096025px;}
.y2c{bottom:633.033607px;}
.y19f{bottom:639.580650px;}
.y12{bottom:641.451750px;}
.y11b{bottom:641.532015px;}
.y24f{bottom:641.536155px;}
.y2a9{bottom:645.362071px;}
.y59{bottom:650.976554px;}
.y1c5{bottom:651.054481px;}
.y92{bottom:651.564254px;}
.y1fc{bottom:651.570719px;}
.y2b{bottom:657.609300px;}
.y19e{bottom:658.373615px;}
.y2a8{bottom:659.563894px;}
.y24e{bottom:661.010850px;}
.y11a{bottom:661.090711px;}
.y272{bottom:667.388700px;}
.y1c4{bottom:670.529175px;}
.y58{bottom:670.535250px;}
.y91{bottom:671.122950px;}
.y1fb{bottom:671.129415px;}
.y19d{bottom:672.575437px;}
.y2a7{bottom:673.850915px;}
.y11{bottom:674.447100px;}
.y119{bottom:680.565405px;}
.y24d{bottom:686.522700px;}
.y1c3{bottom:690.003870px;}
.y90{bottom:690.597645px;}
.y1fa{bottom:690.604110px;}
.y19c{bottom:691.368402px;}
.y271{bottom:692.900550px;}
.y2a6{bottom:693.324272px;}
.y57{bottom:695.962050px;}
.y118{bottom:700.040100px;}
.y19b{bottom:705.570225px;}
.y2a5{bottom:707.611293px;}
.y1c2{bottom:709.478565px;}
.y8f{bottom:710.072340px;}
.y1f9{bottom:710.078804px;}
.y117{bottom:719.598796px;}
.y2a4{bottom:721.813116px;}
.y19a{bottom:724.364390px;}
.y1f7{bottom:727.086450px;}
.y1c1{bottom:729.037261px;}
.y8e{bottom:729.631035px;}
.y1f6{bottom:729.634935px;}
.y1f8{bottom:729.637500px;}
.y24c{bottom:734.310405px;}
.y10{bottom:737.462213px;}
.y116{bottom:739.073490px;}
.y2a3{bottom:741.286472px;}
.y199{bottom:743.072156px;}
.y270{bottom:743.496540px;}
.y1c0{bottom:748.511955px;}
.y8d{bottom:749.105730px;}
.y1f5{bottom:749.109630px;}
.yf{bottom:752.429626px;}
.y24b{bottom:753.785100px;}
.y2a2{bottom:755.573494px;}
.y198{bottom:757.359178px;}
.y115{bottom:758.548185px;}
.y26f{bottom:762.971235px;}
.y56{bottom:763.478565px;}
.ye{bottom:767.481038px;}
.y1bf{bottom:767.986650px;}
.y8c{bottom:768.580425px;}
.y1f4{bottom:768.584325px;}
.y24a{bottom:773.343796px;}
.y2a1{bottom:775.048050px;}
.y197{bottom:776.066944px;}
.y114{bottom:778.022880px;}
.yd{bottom:782.447250px;}
.y55{bottom:783.037261px;}
.y1be{bottom:787.545346px;}
.y8b{bottom:788.055119px;}
.y1f3{bottom:788.059019px;}
.y2a0{bottom:789.335072px;}
.y196{bottom:790.353965px;}
.y26e{bottom:791.459520px;}
.y249{bottom:792.818490px;}
.y113{bottom:797.581575px;}
.y54{bottom:802.511955px;}
.y29f{bottom:803.622093px;}
.y1bd{bottom:807.020040px;}
.y8a{bottom:807.613815px;}
.y1f2{bottom:807.617715px;}
.y195{bottom:809.062931px;}
.y26d{bottom:811.018216px;}
.y248{bottom:812.293185px;}
.yc{bottom:812.466075px;}
.y112{bottom:817.056270px;}
.y53{bottom:821.986650px;}
.y29e{bottom:823.095450px;}
.y1bc{bottom:826.494735px;}
.y89{bottom:827.088510px;}
.y1f1{bottom:827.092410px;}
.yb{bottom:827.433488px;}
.y194{bottom:827.857096px;}
.y247{bottom:831.851881px;}
.y111{bottom:836.530965px;}
.y29d{bottom:837.297272px;}
.y26c{bottom:839.506500px;}
.y52{bottom:841.461345px;}
.ya{bottom:842.484900px;}
.y1bb{bottom:846.053431px;}
.y88{bottom:846.563204px;}
.y193{bottom:846.566062px;}
.y1f0{bottom:846.567104px;}
.y246{bottom:851.326575px;}
.y110{bottom:856.089661px;}
.y29c{bottom:856.855828px;}
.y26b{bottom:858.981195px;}
.y51{bottom:861.020040px;}
.y1ee{bottom:863.574600px;}
.y192{bottom:865.359028px;}
.y1ba{bottom:865.528125px;}
.y87{bottom:866.121900px;}
.y1ed{bottom:866.124765px;}
.y1ef{bottom:866.125800px;}
.y9{bottom:869.442300px;}
.y7{bottom:869.442900px;}
.y245{bottom:870.801270px;}
.y29b{bottom:871.057650px;}
.y8{bottom:875.480100px;}
.y10f{bottom:875.564355px;}
.y191{bottom:879.560850px;}
.y50{bottom:880.494735px;}
.y1b9{bottom:885.002820px;}
.y29a{bottom:885.344672px;}
.y86{bottom:885.596595px;}
.y1ec{bottom:885.599460px;}
.y5{bottom:885.939900px;}
.y26a{bottom:887.469480px;}
.y244{bottom:890.359966px;}
.y6{bottom:891.977850px;}
.y10e{bottom:895.039050px;}
.y190{bottom:898.355015px;}
.y2ce{bottom:899.546494px;}
.y4f{bottom:899.969430px;}
.y1b8{bottom:904.561516px;}
.y299{bottom:904.818028px;}
.y85{bottom:905.071290px;}
.y1eb{bottom:905.074154px;}
.y269{bottom:907.028176px;}
.y243{bottom:909.834661px;}
.y2cd{bottom:913.833516px;}
.y18f{bottom:917.063981px;}
.y298{bottom:919.105050px;}
.y4e{bottom:919.528125px;}
.y10d{bottom:920.551675px;}
.y1e9{bottom:922.081650px;}
.y4{bottom:923.440575px;}
.y1b7{bottom:924.036211px;}
.y84{bottom:924.629985px;}
.y1e8{bottom:924.631411px;}
.y1ea{bottom:924.632850px;}
.y242{bottom:929.309355px;}
.y297{bottom:933.306872px;}
.y268{bottom:935.516461px;}
.y18e{bottom:935.856946px;}
.y4d{bottom:939.002820px;}
.y10c{bottom:941.555700px;}
.y1b6{bottom:943.510905px;}
.y83{bottom:944.104680px;}
.y1e7{bottom:944.106105px;}
.y2cc{bottom:947.593894px;}
.y241{bottom:948.784050px;}
.y18d{bottom:950.058769px;}
.y296{bottom:952.865428px;}
.y267{bottom:954.991155px;}
.y4c{bottom:958.477515px;}
.y3{bottom:960.943762px;}
.y1e5{bottom:961.114800px;}
.y1b5{bottom:962.985600px;}
.y82{bottom:963.579375px;}
.y1e6{bottom:963.580800px;}
.y295{bottom:967.067250px;}
.y18c{bottom:968.852934px;}
.y240{bottom:974.295750px;}
.y266{bottom:974.465850px;}
.y4b{bottom:978.036211px;}
.y294{bottom:981.354272px;}
.y10b{bottom:983.054069px;}
.y81{bottom:983.138070px;}
.y18b{bottom:987.561900px;}
.y1b4{bottom:988.497450px;}
.y293{bottom:995.556094px;}
.y4a{bottom:997.510905px;}
.y2{bottom:998.446950px;}
.y265{bottom:999.977700px;}
.y2cb{bottom:1000.827628px;}
.y80{bottom:1002.612765px;}
.y187{bottom:1010.096756px;}
.y292{bottom:1015.114650px;}
.y188{bottom:1015.454700px;}
.y49{bottom:1016.985600px;}
.y7f{bottom:1022.087460px;}
.y189{bottom:1023.534188px;}
.y183{bottom:1024.298135px;}
.y186{bottom:1024.298579px;}
.y18a{bottom:1028.891100px;}
.y291{bottom:1029.316472px;}
.y184{bottom:1029.656400px;}
.y1{bottom:1035.949350px;}
.y182{bottom:1038.585156px;}
.y185{bottom:1038.585600px;}
.y7e{bottom:1041.562154px;}
.y48{bottom:1044.028050px;}
.y7c{bottom:1046.574793px;}
.y290{bottom:1048.789829px;}
.y10a{bottom:1058.569800px;}
.y7d{bottom:1061.120850px;}
.y7b{bottom:1063.072186px;}
.y180{bottom:1063.076850px;}
.y181{bottom:1068.434400px;}
.y7a{bottom:1118.692500px;}
.hf{height:23.996250px;}
.h10{height:24.796125px;}
.h4{height:26.996400px;}
.hd{height:28.477152px;}
.h8{height:34.943563px;}
.he{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.908000px;}
.h3{height:40.500000px;}
.h11{height:42.180422px;}
.ha{height:42.720427px;}
.hc{height:42.960430px;}
.h7{height:44.175000px;}
.hb{height:53.999550px;}
.h9{height:55.799535px;}
.h6{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:54.000000px;}
.x4c{left:56.892518px;}
.x51{left:58.932150px;}
.x52{left:62.333850px;}
.x45{left:64.034829px;}
.x50{left:66.504398px;}
.x4d{left:67.608384px;}
.x11{left:71.433000px;}
.x4e{left:74.497498px;}
.x29{left:80.109348px;}
.x48{left:81.638608px;}
.x4b{left:84.189777px;}
.x44{left:86.314950px;}
.x4f{left:89.548910px;}
.x2a{left:93.545580px;}
.x49{left:98.645996px;}
.x46{left:102.131952px;}
.x2b{left:138.273900px;}
.x2c{left:197.206200px;}
.x2d{left:211.493221px;}
.x4a{left:226.799594px;}
.x47{left:230.031154px;}
.x2e{left:256.903800px;}
.x2f{left:297.552600px;}
.x1{left:300.018750px;}
.x30{left:303.250129px;}
.x6a{left:306.651900px;}
.x12{left:314.985750px;}
.x13{left:317.961929px;}
.x1b{left:326.211000px;}
.x6b{left:331.483190px;}
.x20{left:334.714800px;}
.x31{left:355.379400px;}
.x1a{left:370.941600px;}
.x14{left:393.562050px;}
.x15{left:398.919600px;}
.x32{left:401.215650px;}
.x34{left:405.042402px;}
.x33{left:415.502671px;}
.x5f{left:424.261350px;}
.x2{left:428.428200px;}
.x60{left:429.618750px;}
.x3{left:441.694350px;}
.xa{left:444.755700px;}
.xb{left:450.368400px;}
.x35{left:455.045550px;}
.x23{left:468.991950px;}
.x24{left:474.349500px;}
.x61{left:477.751050px;}
.x62{left:483.108600px;}
.x69{left:497.310000px;}
.x36{left:508.195200px;}
.x38{left:512.021952px;}
.x55{left:517.124250px;}
.x37{left:518.570270px;}
.x5a{left:520.185750px;}
.x21{left:521.546250px;}
.x5b{left:528.859650px;}
.x22{left:530.305350px;}
.x4{left:531.495900px;}
.x56{left:532.601400px;}
.x27{left:534.897450px;}
.x28{left:539.914800px;}
.x57{left:541.275450px;}
.x63{left:546.462750px;}
.x5{left:550.289550px;}
.x64{left:551.395050px;}
.xc{left:559.388850px;}
.x39{left:562.024950px;}
.x65{left:563.810850px;}
.xd{left:565.001400px;}
.x66{left:571.464450px;}
.x5c{left:587.111700px;}
.x5d{left:592.469100px;}
.x3b{left:601.313573px;}
.x3a{left:615.174600px;}
.x18{left:620.021850px;}
.x19{left:628.695900px;}
.x25{left:634.903800px;}
.x26{left:640.346250px;}
.x1c{left:664.072200px;}
.x1d{left:673.426500px;}
.xe{left:677.848650px;}
.x6{left:680.144700px;}
.xf{left:683.461200px;}
.x7{left:685.757250px;}
.x3c{left:688.733700px;}
.x16{left:704.295900px;}
.x54{left:709.993500px;}
.x17{left:713.055000px;}
.x3d{left:724.195050px;}
.x3f{left:729.041789px;}
.x3e{left:735.504909px;}
.x67{left:746.390250px;}
.x68{left:751.832850px;}
.x6c{left:762.802950px;}
.x6d{left:767.820300px;}
.x40{left:778.960350px;}
.x53{left:784.913250px;}
.x1e{left:794.097450px;}
.x5e{left:798.774600px;}
.x1f{left:803.451750px;}
.x42{left:820.289317px;}
.x8{left:833.895750px;}
.x41{left:837.637500px;}
.x9{left:839.508300px;}
.x58{left:845.631300px;}
.x59{left:850.988700px;}
.x43{left:857.196600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.668800pt;}
.lsc{letter-spacing:-0.623200pt;}
.lsb{letter-spacing:-0.592800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.010667pt;}
.ls24{letter-spacing:0.034133pt;}
.ls0{letter-spacing:0.073590pt;}
.ls12{letter-spacing:0.074667pt;}
.ls14{letter-spacing:0.088880pt;}
.ls1a{letter-spacing:0.096001pt;}
.ls15{letter-spacing:0.101334pt;}
.ls21{letter-spacing:0.122668pt;}
.ls1c{letter-spacing:0.136532pt;}
.ls11{letter-spacing:0.149335pt;}
.lsf{letter-spacing:0.154668pt;}
.ls10{letter-spacing:0.165335pt;}
.ls25{letter-spacing:0.179198pt;}
.ls20{letter-spacing:0.192002pt;}
.ls18{letter-spacing:0.314670pt;}
.ls1b{letter-spacing:0.336003pt;}
.ls17{letter-spacing:0.357337pt;}
.ls5{letter-spacing:9.104953pt;}
.ls3{letter-spacing:9.122019pt;}
.ls23{letter-spacing:9.241484pt;}
.ls6{letter-spacing:9.378016pt;}
.ls22{letter-spacing:9.544414pt;}
.lsa{letter-spacing:10.548800pt;}
.ls9{letter-spacing:10.812267pt;}
.ls1f{letter-spacing:11.285446pt;}
.lse{letter-spacing:11.653450pt;}
.ls1d{letter-spacing:11.763053pt;}
.ls1e{letter-spacing:11.845452pt;}
.ls16{letter-spacing:11.888119pt;}
.ls19{letter-spacing:11.893452pt;}
.lsd{letter-spacing:11.957453pt;}
.ls2{letter-spacing:18.478702pt;}
.ls1{letter-spacing:18.777365pt;}
.ls4{letter-spacing:21.196535pt;}
.wsb8{word-spacing:-12.010787pt;}
.ws10c{word-spacing:-11.805719pt;}
.wsb2{word-spacing:-11.706784pt;}
.ws16{word-spacing:-10.862933pt;}
.ws1b{word-spacing:-10.599467pt;}
.ws29{word-spacing:-9.420682pt;}
.ws124{word-spacing:-0.063999pt;}
.ws59{word-spacing:-0.053334pt;}
.ws15{word-spacing:-0.050667pt;}
.ws11{word-spacing:-0.042666pt;}
.ws6{word-spacing:-0.031996pt;}
.ws45{word-spacing:0.000000pt;}
.ws22{word-spacing:0.572533pt;}
.ws143{word-spacing:8.435095pt;}
.ws12a{word-spacing:8.443628pt;}
.wsbf{word-spacing:8.627092pt;}
.ws42{word-spacing:8.635625pt;}
.wsd8{word-spacing:8.661225pt;}
.ws33{word-spacing:8.665492pt;}
.ws43{word-spacing:8.669758pt;}
.ws3f{word-spacing:8.729491pt;}
.ws2b{word-spacing:8.733757pt;}
.ws31{word-spacing:8.738024pt;}
.ws133{word-spacing:8.742291pt;}
.ws38{word-spacing:8.750824pt;}
.ws3c{word-spacing:8.755091pt;}
.ws2f{word-spacing:8.759357pt;}
.wsa8{word-spacing:8.763624pt;}
.ws13d{word-spacing:8.767890pt;}
.ws37{word-spacing:8.776424pt;}
.ws40{word-spacing:8.780690pt;}
.ws35{word-spacing:8.784957pt;}
.wsec{word-spacing:8.789223pt;}
.ws36{word-spacing:8.793490pt;}
.ws12f{word-spacing:8.797757pt;}
.wsbb{word-spacing:8.802023pt;}
.ws2c{word-spacing:8.814823pt;}
.ws32{word-spacing:8.819090pt;}
.ws7d{word-spacing:8.823356pt;}
.wsf{word-spacing:8.827623pt;}
.wsd6{word-spacing:8.831890pt;}
.ws146{word-spacing:8.836156pt;}
.ws34{word-spacing:8.844689pt;}
.ws135{word-spacing:8.857489pt;}
.wsad{word-spacing:8.861756pt;}
.wsd{word-spacing:8.866023pt;}
.wsc{word-spacing:8.870289pt;}
.ws13c{word-spacing:8.878822pt;}
.wsdb{word-spacing:8.891622pt;}
.ws41{word-spacing:8.895889pt;}
.ws7b{word-spacing:8.900155pt;}
.ws12c{word-spacing:8.904422pt;}
.ws132{word-spacing:8.908689pt;}
.ws139{word-spacing:8.917222pt;}
.ws7c{word-spacing:8.921488pt;}
.ws134{word-spacing:8.925755pt;}
.ws30{word-spacing:8.930022pt;}
.wsde{word-spacing:8.938555pt;}
.wsa6{word-spacing:8.942822pt;}
.ws13f{word-spacing:8.947088pt;}
.ws140{word-spacing:8.951355pt;}
.wsba{word-spacing:8.955621pt;}
.ws3e{word-spacing:8.959888pt;}
.ws79{word-spacing:8.964155pt;}
.ws12d{word-spacing:8.968421pt;}
.wsed{word-spacing:8.976954pt;}
.ws13b{word-spacing:8.985488pt;}
.ws2e{word-spacing:8.989754pt;}
.wsee{word-spacing:8.994021pt;}
.ws2d{word-spacing:8.998288pt;}
.wsbc{word-spacing:9.002554pt;}
.ws3a{word-spacing:9.006821pt;}
.ws119{word-spacing:9.011087pt;}
.ws128{word-spacing:9.015354pt;}
.wsc4{word-spacing:9.023887pt;}
.wsd7{word-spacing:9.028154pt;}
.ws137{word-spacing:9.032420pt;}
.wsbd{word-spacing:9.040954pt;}
.ws2a{word-spacing:9.049487pt;}
.ws44{word-spacing:9.053753pt;}
.ws28{word-spacing:9.062287pt;}
.wsd5{word-spacing:9.066553pt;}
.wsef{word-spacing:9.070820pt;}
.wsd9{word-spacing:9.092153pt;}
.wsc2{word-spacing:9.096420pt;}
.wsaa{word-spacing:9.100686pt;}
.ws138{word-spacing:9.104953pt;}
.wsd4{word-spacing:9.109219pt;}
.wse{word-spacing:9.117753pt;}
.ws145{word-spacing:9.122019pt;}
.wsa7{word-spacing:9.126286pt;}
.wsa5{word-spacing:9.130553pt;}
.wsab{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws12b{word-spacing:9.147619pt;}
.ws147{word-spacing:9.156152pt;}
.ws7a{word-spacing:9.160419pt;}
.ws118{word-spacing:9.164685pt;}
.wsc5{word-spacing:9.168952pt;}
.ws131{word-spacing:9.181752pt;}
.ws141{word-spacing:9.190285pt;}
.wsdc{word-spacing:9.194552pt;}
.wsac{word-spacing:9.198818pt;}
.wsc3{word-spacing:9.203085pt;}
.ws129{word-spacing:9.232951pt;}
.wsa9{word-spacing:9.245751pt;}
.ws3b{word-spacing:9.267084pt;}
.ws3d{word-spacing:9.284151pt;}
.ws12e{word-spacing:9.296950pt;}
.ws39{word-spacing:9.301217pt;}
.ws127{word-spacing:9.305484pt;}
.ws144{word-spacing:9.314017pt;}
.ws13e{word-spacing:9.318284pt;}
.ws10{word-spacing:9.331083pt;}
.wsdd{word-spacing:9.343883pt;}
.wsbe{word-spacing:9.360950pt;}
.wsda{word-spacing:9.365216pt;}
.ws130{word-spacing:9.390816pt;}
.ws13a{word-spacing:9.433482pt;}
.ws24{word-spacing:10.006667pt;}
.ws1f{word-spacing:10.133333pt;}
.ws13{word-spacing:10.143467pt;}
.ws20{word-spacing:10.168800pt;}
.ws26{word-spacing:10.199200pt;}
.ws21{word-spacing:10.219467pt;}
.ws17{word-spacing:10.229600pt;}
.wsa{word-spacing:10.272000pt;}
.ws23{word-spacing:10.305600pt;}
.ws4{word-spacing:10.310400pt;}
.ws7{word-spacing:10.344000pt;}
.ws5{word-spacing:10.353600pt;}
.ws1e{word-spacing:10.381600pt;}
.ws1a{word-spacing:10.386667pt;}
.ws9{word-spacing:10.401600pt;}
.wsb{word-spacing:10.411200pt;}
.ws19{word-spacing:10.442400pt;}
.ws18{word-spacing:10.457600pt;}
.ws8{word-spacing:10.574400pt;}
.ws27{word-spacing:10.599467pt;}
.ws14{word-spacing:10.685600pt;}
.ws25{word-spacing:10.761600pt;}
.ws120{word-spacing:11.018777pt;}
.ws110{word-spacing:11.114778pt;}
.ws1d{word-spacing:11.116267pt;}
.ws84{word-spacing:11.216112pt;}
.wsca{word-spacing:11.237446pt;}
.ws82{word-spacing:11.269446pt;}
.wscb{word-spacing:11.280113pt;}
.wsf3{word-spacing:11.310792pt;}
.ws111{word-spacing:11.317447pt;}
.wsa3{word-spacing:11.322780pt;}
.ws76{word-spacing:11.328113pt;}
.ws117{word-spacing:11.333447pt;}
.wsb9{word-spacing:11.344113pt;}
.ws9e{word-spacing:11.349447pt;}
.ws115{word-spacing:11.360114pt;}
.ws113{word-spacing:11.365447pt;}
.ws77{word-spacing:11.386781pt;}
.ws103{word-spacing:11.387591pt;}
.ws112{word-spacing:11.402781pt;}
.wsdf{word-spacing:11.408114pt;}
.wsd1{word-spacing:11.413447pt;}
.wsa4{word-spacing:11.418781pt;}
.ws102{word-spacing:11.425991pt;}
.wsf9{word-spacing:11.430257pt;}
.ws100{word-spacing:11.443057pt;}
.ws10f{word-spacing:11.447324pt;}
.ws81{word-spacing:11.450781pt;}
.ws107{word-spacing:11.451590pt;}
.wsc9{word-spacing:11.456115pt;}
.ws94{word-spacing:11.472115pt;}
.ws86{word-spacing:11.498782pt;}
.wsff{word-spacing:11.502790pt;}
.wsfb{word-spacing:11.511323pt;}
.wse7{word-spacing:11.514782pt;}
.ws60{word-spacing:11.520115pt;}
.wsb5{word-spacing:11.525449pt;}
.ws68{word-spacing:11.530782pt;}
.wsf7{word-spacing:11.532656pt;}
.ws7f{word-spacing:11.536115pt;}
.ws8d{word-spacing:11.541449pt;}
.wsea{word-spacing:11.546782pt;}
.ws9d{word-spacing:11.552116pt;}
.ws83{word-spacing:11.557449pt;}
.wsc0{word-spacing:11.562782pt;}
.ws12{word-spacing:11.567200pt;}
.ws58{word-spacing:11.568116pt;}
.ws73{word-spacing:11.573449pt;}
.ws47{word-spacing:11.578782pt;}
.ws6d{word-spacing:11.584116pt;}
.ws75{word-spacing:11.589449pt;}
.wsfc{word-spacing:11.592388pt;}
.ws6f{word-spacing:11.594783pt;}
.ws10e{word-spacing:11.596655pt;}
.ws4b{word-spacing:11.600116pt;}
.ws97{word-spacing:11.605449pt;}
.ws5a{word-spacing:11.610783pt;}
.wsf5{word-spacing:11.613721pt;}
.wsc1{word-spacing:11.616116pt;}
.ws106{word-spacing:11.617988pt;}
.ws7e{word-spacing:11.621450pt;}
.ws5c{word-spacing:11.626783pt;}
.ws80{word-spacing:11.632116pt;}
.ws98{word-spacing:11.637450pt;}
.ws50{word-spacing:11.642783pt;}
.wsf2{word-spacing:11.647854pt;}
.ws54{word-spacing:11.648116pt;}
.ws55{word-spacing:11.653450pt;}
.ws8e{word-spacing:11.658783pt;}
.ws48{word-spacing:11.664117pt;}
.wsf8{word-spacing:11.664921pt;}
.ws70{word-spacing:11.669450pt;}
.ws53{word-spacing:11.674783pt;}
.wscf{word-spacing:11.680117pt;}
.wsd2{word-spacing:11.685450pt;}
.wsd3{word-spacing:11.690784pt;}
.ws88{word-spacing:11.696117pt;}
.ws78{word-spacing:11.701450pt;}
.ws9a{word-spacing:11.706784pt;}
.wsf6{word-spacing:11.711854pt;}
.ws4e{word-spacing:11.712117pt;}
.ws51{word-spacing:11.717451pt;}
.ws8f{word-spacing:11.722784pt;}
.wsae{word-spacing:11.728117pt;}
.ws6a{word-spacing:11.733451pt;}
.ws8b{word-spacing:11.738784pt;}
.ws5f{word-spacing:11.744117pt;}
.ws10a{word-spacing:11.745987pt;}
.ws96{word-spacing:11.749451pt;}
.ws104{word-spacing:11.750253pt;}
.ws5b{word-spacing:11.754784pt;}
.ws87{word-spacing:11.760118pt;}
.ws10b{word-spacing:11.763053pt;}
.ws71{word-spacing:11.765451pt;}
.ws8a{word-spacing:11.770784pt;}
.ws74{word-spacing:11.776118pt;}
.wsf1{word-spacing:11.780119pt;}
.ws123{word-spacing:11.781451pt;}
.ws10d{word-spacing:11.784386pt;}
.ws109{word-spacing:11.788653pt;}
.ws4d{word-spacing:11.797451pt;}
.wse9{word-spacing:11.802785pt;}
.ws61{word-spacing:11.813451pt;}
.wsb4{word-spacing:11.818785pt;}
.wse2{word-spacing:11.829452pt;}
.wsb6{word-spacing:11.834785pt;}
.ws57{word-spacing:11.840118pt;}
.ws62{word-spacing:11.845452pt;}
.ws108{word-spacing:11.852652pt;}
.wseb{word-spacing:11.856119pt;}
.ws69{word-spacing:11.861452pt;}
.ws4f{word-spacing:11.866785pt;}
.ws1c{word-spacing:11.876267pt;}
.wsb1{word-spacing:11.877452pt;}
.ws4a{word-spacing:11.882785pt;}
.ws66{word-spacing:11.888119pt;}
.wsb3{word-spacing:11.893452pt;}
.ws64{word-spacing:11.898786pt;}
.wsaf{word-spacing:11.904119pt;}
.ws56{word-spacing:11.909452pt;}
.ws52{word-spacing:11.914786pt;}
.ws95{word-spacing:11.920119pt;}
.ws6b{word-spacing:11.925453pt;}
.ws5d{word-spacing:11.930786pt;}
.ws6c{word-spacing:11.936119pt;}
.wse5{word-spacing:11.941453pt;}
.ws72{word-spacing:11.946786pt;}
.wse0{word-spacing:11.952120pt;}
.ws6e{word-spacing:11.957453pt;}
.ws63{word-spacing:11.962786pt;}
.ws4c{word-spacing:11.968120pt;}
.ws85{word-spacing:11.973453pt;}
.ws91{word-spacing:11.978786pt;}
.wsf4{word-spacing:11.980650pt;}
.ws67{word-spacing:11.984120pt;}
.wsc6{word-spacing:11.989453pt;}
.ws92{word-spacing:11.994787pt;}
.ws89{word-spacing:12.000120pt;}
.ws114{word-spacing:12.005453pt;}
.wsc8{word-spacing:12.016120pt;}
.ws11a{word-spacing:12.021454pt;}
.wsb0{word-spacing:12.026787pt;}
.ws5e{word-spacing:12.037454pt;}
.ws8c{word-spacing:12.048120pt;}
.ws9b{word-spacing:12.053454pt;}
.ws99{word-spacing:12.058787pt;}
.wsf0{word-spacing:12.064121pt;}
.wse4{word-spacing:12.074787pt;}
.wse6{word-spacing:12.080121pt;}
.wsb7{word-spacing:12.085454pt;}
.wsd0{word-spacing:12.122788pt;}
.ws11d{word-spacing:12.133455pt;}
.ws49{word-spacing:12.138788pt;}
.ws65{word-spacing:12.165455pt;}
.ws90{word-spacing:12.170788pt;}
.ws9c{word-spacing:12.192122pt;}
.wse8{word-spacing:12.245456pt;}
.wse3{word-spacing:12.256123pt;}
.ws116{word-spacing:12.314790pt;}
.wsa1{word-spacing:13.689486pt;}
.ws11f{word-spacing:13.695886pt;}
.ws93{word-spacing:13.702286pt;}
.ws9f{word-spacing:13.747085pt;}
.ws125{word-spacing:13.798285pt;}
.wse1{word-spacing:13.811085pt;}
.wscd{word-spacing:13.849485pt;}
.ws11e{word-spacing:13.868684pt;}
.ws122{word-spacing:13.894284pt;}
.wsce{word-spacing:13.907084pt;}
.wsa2{word-spacing:13.939084pt;}
.ws11b{word-spacing:13.983883pt;}
.wsc7{word-spacing:14.041483pt;}
.ws121{word-spacing:14.092683pt;}
.ws11c{word-spacing:14.118282pt;}
.wscc{word-spacing:14.150282pt;}
.wsa0{word-spacing:14.188682pt;}
.ws46{word-spacing:14.207882pt;}
.ws142{word-spacing:18.500035pt;}
.ws2{word-spacing:23.360117pt;}
.ws1{word-spacing:23.381450pt;}
.ws3{word-spacing:23.466784pt;}
.ws126{word-spacing:53.174802pt;}
.ws136{word-spacing:53.208935pt;}
.ws105{word-spacing:177.602047pt;}
.ws101{word-spacing:201.187885pt;}
.wsfd{word-spacing:213.249601pt;}
.wsfe{word-spacing:236.502644pt;}
.wsfa{word-spacing:242.279638pt;}
._5{margin-left:-11.648267pt;}
._4{margin-left:-10.452097pt;}
._e{margin-left:-9.378016pt;}
._b{margin-left:-6.407246pt;}
._7{margin-left:-5.292811pt;}
._8{margin-left:-4.017332pt;}
._f{margin-left:-2.948230pt;}
._0{margin-left:-2.005343pt;}
._2{margin-left:-0.942922pt;}
._9{width:1.112553pt;}
._3{width:8.162031pt;}
._a{width:9.090412pt;}
._1{width:10.009475pt;}
._6{width:11.377071pt;}
._10{width:12.709460pt;}
._11{width:14.681478pt;}
._13{width:18.751766pt;}
._c{width:43.216562pt;}
._2c{width:166.594184pt;}
._31{width:178.050041pt;}
._1c{width:189.441899pt;}
._1a{width:201.230551pt;}
._36{width:205.646496pt;}
._37{width:206.657683pt;}
._2a{width:213.292267pt;}
._28{width:225.055320pt;}
._15{width:244.101482pt;}
._1b{width:250.057674pt;}
._2b{width:255.894401pt;}
._2d{width:263.821769pt;}
._22{width:266.040408pt;}
._1d{width:267.956117pt;}
._14{width:271.181677pt;}
._16{width:275.614688pt;}
._23{width:279.446107pt;}
._29{width:281.805544pt;}
._2e{width:286.131890pt;}
._1e{width:287.373474pt;}
._2f{width:289.822511pt;}
._30{width:293.389399pt;}
._17{width:297.890676pt;}
._32{width:299.166394pt;}
._18{width:301.615430pt;}
._19{width:305.148186pt;}
._1f{width:309.683596pt;}
._24{width:311.228110pt;}
._20{width:313.374216pt;}
._21{width:316.638175pt;}
._33{width:321.442382pt;}
._34{width:324.864206pt;}
._35{width:328.699891pt;}
._25{width:333.235301pt;}
._26{width:336.622992pt;}
._27{width:340.492810pt;}
._12{width:1448.472561pt;}
._d{width:1472.058399pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:48.000000pt;}
.y149{bottom:110.655813pt;}
.yaa{bottom:110.660066pt;}
.y165{bottom:110.660627pt;}
.y136{bottom:110.662120pt;}
.y23f{bottom:110.663400pt;}
.y77{bottom:110.663613pt;}
.y1e4{bottom:110.663960pt;}
.y28f{bottom:110.664034pt;}
.y79{bottom:110.664533pt;}
.y47{bottom:110.670190pt;}
.yd3{bottom:111.178213pt;}
.yfd{bottom:112.851267pt;}
.yfe{bottom:112.856667pt;}
.yde{bottom:115.499640pt;}
.y78{bottom:116.560667pt;}
.y16f{bottom:118.523240pt;}
.y13b{bottom:119.356773pt;}
.y28e{bottom:123.363608pt;}
.y151{bottom:124.192787pt;}
.y46{bottom:125.334540pt;}
.y1e2{bottom:125.782667pt;}
.y148{bottom:127.966653pt;}
.ya9{bottom:127.970906pt;}
.y164{bottom:127.971467pt;}
.y135{bottom:127.972960pt;}
.y23e{bottom:127.974239pt;}
.y76{bottom:127.974453pt;}
.y1e3{bottom:127.974800pt;}
.y1e1{bottom:127.975026pt;}
.yd2{bottom:128.489053pt;}
.y21a{bottom:128.498266pt;}
.y2ca{bottom:129.635067pt;}
.yfc{bottom:130.162107pt;}
.ydd{bottom:132.810480pt;}
.y16e{bottom:135.834080pt;}
.y13a{bottom:136.742280pt;}
.y17f{bottom:137.345373pt;}
.y22a{bottom:139.461792pt;}
.y45{bottom:139.998890pt;}
.y28d{bottom:140.673259pt;}
.y29{bottom:140.830000pt;}
.y150{bottom:141.503627pt;}
.y2c9{bottom:142.258909pt;}
.y1df{bottom:143.092933pt;}
.y1de{bottom:145.346760pt;}
.y147{bottom:145.352160pt;}
.ya8{bottom:145.356413pt;}
.y163{bottom:145.356974pt;}
.y134{bottom:145.358467pt;}
.y23d{bottom:145.359747pt;}
.y75{bottom:145.359960pt;}
.y1e0{bottom:145.360533pt;}
.yd1{bottom:145.874560pt;}
.y219{bottom:145.883773pt;}
.yfb{bottom:147.547614pt;}
.ydc{bottom:150.195987pt;}
.y264{bottom:150.652000pt;}
.y16d{bottom:153.219587pt;}
.y28c{bottom:153.297101pt;}
.y139{bottom:154.053120pt;}
.y17e{bottom:154.656213pt;}
.y44{bottom:154.663240pt;}
.y2c8{bottom:154.958484pt;}
.y14f{bottom:158.889134pt;}
.y28{bottom:159.500667pt;}
.y229{bottom:160.098334pt;}
.y72{bottom:160.478667pt;}
.y1dd{bottom:162.657600pt;}
.y71{bottom:162.663000pt;}
.ya7{bottom:162.667253pt;}
.y162{bottom:162.667814pt;}
.y133{bottom:162.669307pt;}
.y23c{bottom:162.670586pt;}
.y73{bottom:162.670800pt;}
.yd0{bottom:163.185400pt;}
.y218{bottom:163.194613pt;}
.yfa{bottom:164.858454pt;}
.y28b{bottom:165.996675pt;}
.ydb{bottom:167.506827pt;}
.y74{bottom:168.566933pt;}
.y43{bottom:169.327590pt;}
.y16c{bottom:170.530427pt;}
.y138{bottom:171.363959pt;}
.y17d{bottom:171.967053pt;}
.y2c7{bottom:172.268134pt;}
.y228{bottom:172.797908pt;}
.y14e{bottom:176.199973pt;}
.y27{bottom:178.171333pt;}
.y1dc{bottom:179.968440pt;}
.y70{bottom:179.973839pt;}
.ya6{bottom:179.978093pt;}
.y161{bottom:179.978653pt;}
.y23b{bottom:179.981426pt;}
.y132{bottom:180.054814pt;}
.ycf{bottom:180.496240pt;}
.y217{bottom:180.505453pt;}
.yf9{bottom:182.169294pt;}
.y28a{bottom:183.307392pt;}
.y42{bottom:183.991940pt;}
.yda{bottom:184.817666pt;}
.y2c6{bottom:184.967708pt;}
.yb6{bottom:185.348000pt;}
.y227{bottom:185.421751pt;}
.y16b{bottom:187.841266pt;}
.y137{bottom:188.749467pt;}
.y17c{bottom:189.352560pt;}
.y263{bottom:193.132600pt;}
.y14d{bottom:193.510813pt;}
.y289{bottom:196.006967pt;}
.y26{bottom:196.842000pt;}
.y1db{bottom:197.353947pt;}
.y6f{bottom:197.359347pt;}
.ya5{bottom:197.363600pt;}
.y160{bottom:197.364161pt;}
.y238{bottom:197.364520pt;}
.y131{bottom:197.365654pt;}
.y23a{bottom:197.366933pt;}
.y2c5{bottom:197.591551pt;}
.yce{bottom:197.881747pt;}
.y216{bottom:197.890960pt;}
.y226{bottom:198.121325pt;}
.y41{bottom:198.656290pt;}
.yf8{bottom:199.480133pt;}
.yd9{bottom:202.128506pt;}
.y239{bottom:203.262933pt;}
.y16a{bottom:205.152106pt;}
.y17b{bottom:206.663400pt;}
.y262{bottom:210.443439pt;}
.y225{bottom:210.745167pt;}
.y14c{bottom:210.896320pt;}
.y288{bottom:213.316617pt;}
.y40{bottom:213.320640pt;}
.y1da{bottom:214.664787pt;}
.y6e{bottom:214.670186pt;}
.ya4{bottom:214.674440pt;}
.y15f{bottom:214.675000pt;}
.y237{bottom:214.675360pt;}
.y130{bottom:214.676494pt;}
.y2c4{bottom:214.976933pt;}
.ycd{bottom:215.192586pt;}
.y215{bottom:215.201800pt;}
.y25{bottom:215.512667pt;}
.yf7{bottom:216.865641pt;}
.y146{bottom:217.169550pt;}
.yd8{bottom:219.514013pt;}
.y169{bottom:222.537613pt;}
.y224{bottom:223.444742pt;}
.y17a{bottom:223.974239pt;}
.y287{bottom:226.016192pt;}
.y2c3{bottom:227.600776pt;}
.y261{bottom:227.828947pt;}
.y14b{bottom:228.207160pt;}
.y12e{bottom:229.795200pt;}
.yb5{bottom:230.021653pt;}
.y1d9{bottom:231.975627pt;}
.y6d{bottom:231.981026pt;}
.ya3{bottom:231.985280pt;}
.y15e{bottom:231.985840pt;}
.y236{bottom:231.986200pt;}
.y12d{bottom:231.986773pt;}
.y12f{bottom:231.987333pt;}
.ycc{bottom:232.503426pt;}
.y214{bottom:232.512639pt;}
.yf6{bottom:234.176480pt;}
.y24{bottom:234.183333pt;}
.y3f{bottom:235.997690pt;}
.y223{bottom:236.144317pt;}
.yd7{bottom:236.824853pt;}
.y145{bottom:237.880758pt;}
.y168{bottom:239.848453pt;}
.y179{bottom:241.359747pt;}
.y286{bottom:243.325842pt;}
.y2c2{bottom:244.986158pt;}
.y260{bottom:245.139786pt;}
.y14a{bottom:245.518000pt;}
.yb4{bottom:247.407160pt;}
.y222{bottom:248.768159pt;}
.y6c{bottom:249.291866pt;}
.ya2{bottom:249.296119pt;}
.y15d{bottom:249.296680pt;}
.y235{bottom:249.297039pt;}
.y1d8{bottom:249.361134pt;}
.y12c{bottom:249.372280pt;}
.ycb{bottom:249.888933pt;}
.y213{bottom:249.898147pt;}
.y144{bottom:250.504600pt;}
.y3e{bottom:250.662040pt;}
.yf5{bottom:251.487320pt;}
.y23{bottom:252.854000pt;}
.yd6{bottom:254.135693pt;}
.y285{bottom:256.025417pt;}
.y167{bottom:257.159293pt;}
.y2c1{bottom:257.610000pt;}
.y178{bottom:258.670586pt;}
.y220{bottom:259.653467pt;}
.y21f{bottom:261.466500pt;}
.y221{bottom:261.467733pt;}
.y25f{bottom:262.450626pt;}
.y143{bottom:263.204175pt;}
.yb1{bottom:264.717427pt;}
.yb3{bottom:264.718000pt;}
.y3d{bottom:265.326390pt;}
.y1d7{bottom:266.671974pt;}
.y6b{bottom:266.677373pt;}
.ya1{bottom:266.681627pt;}
.y15c{bottom:266.682187pt;}
.y234{bottom:266.682547pt;}
.y12b{bottom:266.683120pt;}
.yca{bottom:267.199773pt;}
.y212{bottom:267.208986pt;}
.y284{bottom:268.649259pt;}
.yf4{bottom:268.872827pt;}
.yd5{bottom:269.253467pt;}
.yb2{bottom:270.614133pt;}
.yd4{bottom:271.521200pt;}
.y22{bottom:271.524667pt;}
.y157{bottom:274.014091pt;}
.y21e{bottom:274.090342pt;}
.y166{bottom:274.544800pt;}
.y2c0{bottom:274.919651pt;}
.y142{bottom:275.828017pt;}
.y177{bottom:275.981426pt;}
.y25e{bottom:279.836133pt;}
.yae{bottom:282.027347pt;}
.yb0{bottom:282.028267pt;}
.y1d6{bottom:283.982813pt;}
.y6a{bottom:283.988213pt;}
.ya0{bottom:283.992466pt;}
.y15b{bottom:283.993027pt;}
.y233{bottom:283.993386pt;}
.y12a{bottom:283.993959pt;}
.yc9{bottom:284.510613pt;}
.y211{bottom:284.519826pt;}
.y283{bottom:286.034641pt;}
.yf3{bottom:286.183667pt;}
.y21d{bottom:286.789917pt;}
.y2bf{bottom:287.619225pt;}
.yaf{bottom:288.000000pt;}
.y3c{bottom:288.003440pt;}
.y141{bottom:288.527592pt;}
.y21{bottom:290.195333pt;}
.y176{bottom:293.366933pt;}
.y156{bottom:294.650633pt;}
.y282{bottom:298.658484pt;}
.yad{bottom:299.412854pt;}
.y21c{bottom:299.413759pt;}
.yed{bottom:299.939917pt;}
.y2be{bottom:300.318800pt;}
.y140{bottom:301.151434pt;}
.y69{bottom:301.299053pt;}
.y9f{bottom:301.303306pt;}
.y15a{bottom:301.303867pt;}
.y232{bottom:301.304226pt;}
.y1d5{bottom:301.368321pt;}
.y129{bottom:301.379467pt;}
.yc8{bottom:301.821453pt;}
.y210{bottom:301.830666pt;}
.y25d{bottom:302.437733pt;}
.y3b{bottom:302.667790pt;}
.y175{bottom:302.965159pt;}
.yf2{bottom:303.494507pt;}
.y155{bottom:307.350208pt;}
.y20{bottom:308.866000pt;}
.y281{bottom:311.358058pt;}
.y21b{bottom:312.113333pt;}
.y13f{bottom:313.851009pt;}
.yac{bottom:316.723694pt;}
.y3a{bottom:317.332140pt;}
.y2bd{bottom:317.628450pt;}
.y1d4{bottom:318.679160pt;}
.y68{bottom:318.684560pt;}
.y9e{bottom:318.688813pt;}
.y231{bottom:318.689733pt;}
.yc7{bottom:319.206960pt;}
.y20f{bottom:319.216173pt;}
.y154{bottom:319.974050pt;}
.yec{bottom:320.651125pt;}
.yf1{bottom:320.880014pt;}
.y174{bottom:323.677433pt;}
.y159{bottom:323.981067pt;}
.y128{bottom:324.057222pt;}
.y1b3{bottom:326.172384pt;}
.y13e{bottom:326.550583pt;}
.y1f{bottom:327.536667pt;}
.y280{bottom:328.667709pt;}
.y2bc{bottom:330.252292pt;}
.y39{bottom:331.996490pt;}
.y153{bottom:332.673624pt;}
.yeb{bottom:333.274967pt;}
.yab{bottom:334.034533pt;}
.y1d3{bottom:335.990000pt;}
.y67{bottom:335.995400pt;}
.y9d{bottom:335.999653pt;}
.y173{bottom:336.301275pt;}
.yc6{bottom:336.517800pt;}
.y20e{bottom:336.527013pt;}
.yf0{bottom:338.190854pt;}
.y13d{bottom:339.174425pt;}
.y230{bottom:341.366066pt;}
.y27f{bottom:341.367283pt;}
.y127{bottom:342.727467pt;}
.y2bb{bottom:342.951867pt;}
.y25c{bottom:344.914774pt;}
.y152{bottom:345.297467pt;}
.yea{bottom:345.974541pt;}
.y1e{bottom:346.207333pt;}
.y38{bottom:346.660840pt;}
.y172{bottom:349.000850pt;}
.y1b2{bottom:350.815275pt;}
.y13c{bottom:351.874000pt;}
.y66{bottom:353.306239pt;}
.y9c{bottom:353.310493pt;}
.y1d2{bottom:353.375507pt;}
.yc5{bottom:353.828639pt;}
.y20d{bottom:353.837853pt;}
.yef{bottom:355.501694pt;}
.ye9{bottom:358.598384pt;}
.y27e{bottom:358.676933pt;}
.y2ba{bottom:360.262584pt;}
.y37{bottom:361.325190pt;}
.y171{bottom:361.624692pt;}
.y25b{bottom:362.225613pt;}
.ybe{bottom:362.530009pt;}
.y1d{bottom:364.878000pt;}
.y22f{bottom:365.329067pt;}
.y1b1{bottom:367.521200pt;}
.y1d1{bottom:370.686347pt;}
.y65{bottom:370.691747pt;}
.y9b{bottom:370.696000pt;}
.y158{bottom:371.139479pt;}
.yc4{bottom:371.214147pt;}
.y20c{bottom:371.223360pt;}
.ye8{bottom:371.297958pt;}
.y27d{bottom:371.300776pt;}
.y1b0{bottom:372.283333pt;}
.yee{bottom:372.812533pt;}
.y2b9{bottom:372.962158pt;}
.y170{bottom:374.324267pt;}
.y126{bottom:379.607440pt;}
.y25a{bottom:379.611120pt;}
.ybd{bottom:383.166551pt;}
.y1af{bottom:383.546400pt;}
.y1c{bottom:383.548667pt;}
.ye7{bottom:383.921800pt;}
.y36{bottom:384.002240pt;}
.y2b8{bottom:385.661733pt;}
.y1d0{bottom:387.997187pt;}
.y64{bottom:388.002586pt;}
.y1ae{bottom:388.232933pt;}
.yc3{bottom:388.524986pt;}
.y20b{bottom:388.534200pt;}
.y27c{bottom:388.686158pt;}
.y9a{bottom:393.297134pt;}
.ybc{bottom:395.866125pt;}
.ye6{bottom:396.621375pt;}
.y125{bottom:396.918280pt;}
.y259{bottom:396.921960pt;}
.y1ad{bottom:399.495867pt;}
.y109{bottom:401.306884pt;}
.y27b{bottom:401.310001pt;}
.y1b{bottom:402.219333pt;}
.y2b7{bottom:402.971383pt;}
.y1ac{bottom:404.258133pt;}
.y63{bottom:405.313426pt;}
.y1cf{bottom:405.382694pt;}
.yc2{bottom:405.835826pt;}
.y20a{bottom:405.845039pt;}
.y22e{bottom:405.845253pt;}
.y35{bottom:406.679290pt;}
.ybb{bottom:408.489967pt;}
.ye5{bottom:409.320950pt;}
.y27a{bottom:414.009575pt;}
.y258{bottom:414.232800pt;}
.y124{bottom:414.303787pt;}
.y1ab{bottom:415.521000pt;}
.y2b6{bottom:415.595226pt;}
.y99{bottom:417.335333pt;}
.y1a{bottom:420.890000pt;}
.yba{bottom:421.189542pt;}
.y108{bottom:421.943426pt;}
.ye4{bottom:421.944792pt;}
.y1ce{bottom:422.693534pt;}
.y62{bottom:422.698933pt;}
.yc1{bottom:423.221333pt;}
.y209{bottom:423.230547pt;}
.y22d{bottom:423.230760pt;}
.y2b5{bottom:428.294800pt;}
.y34{bottom:429.356340pt;}
.y279{bottom:431.319225pt;}
.y1aa{bottom:431.546400pt;}
.y123{bottom:431.614627pt;}
.y257{bottom:431.618307pt;}
.yb9{bottom:433.813384pt;}
.y107{bottom:434.643000pt;}
.ye3{bottom:434.644366pt;}
.y1a9{bottom:436.232933pt;}
.y22b{bottom:438.349467pt;}
.y19{bottom:439.484667pt;}
.y1cd{bottom:440.004374pt;}
.y61{bottom:440.009773pt;}
.yc0{bottom:440.532173pt;}
.y208{bottom:440.541386pt;}
.y22c{bottom:440.541600pt;}
.y278{bottom:444.018800pt;}
.y2b4{bottom:445.605517pt;}
.yb8{bottom:446.512959pt;}
.ye2{bottom:447.268209pt;}
.y106{bottom:447.342575pt;}
.y1a8{bottom:447.495867pt;}
.y122{bottom:448.925467pt;}
.y256{bottom:448.929147pt;}
.y33{bottom:452.033390pt;}
.y1a7{bottom:452.258133pt;}
.y1cc{bottom:457.315213pt;}
.y60{bottom:457.320613pt;}
.ybf{bottom:457.843013pt;}
.y207{bottom:457.852226pt;}
.y18{bottom:458.155333pt;}
.y2b3{bottom:458.305092pt;}
.yb7{bottom:459.212533pt;}
.y105{bottom:459.966417pt;}
.ye1{bottom:459.967783pt;}
.y277{bottom:462.009333pt;}
.y1a6{bottom:463.521200pt;}
.y121{bottom:466.236306pt;}
.y255{bottom:466.239987pt;}
.y32{bottom:466.697740pt;}
.y1a5{bottom:468.283333pt;}
.y2b2{bottom:470.928934pt;}
.ye0{bottom:472.591625pt;}
.y104{bottom:472.665992pt;}
.y205{bottom:472.969867pt;}
.y5f{bottom:474.631453pt;}
.y1cb{bottom:474.700721pt;}
.y98{bottom:475.228520pt;}
.y204{bottom:475.235881pt;}
.y206{bottom:475.237733pt;}
.y17{bottom:476.826000pt;}
.y120{bottom:483.621814pt;}
.y254{bottom:483.625494pt;}
.y103{bottom:485.289834pt;}
.ydf{bottom:485.291200pt;}
.y2b1{bottom:488.314317pt;}
.y1a4{bottom:489.221124pt;}
.y31{bottom:489.374790pt;}
.y1ca{bottom:492.011560pt;}
.y5e{bottom:492.016960pt;}
.y97{bottom:492.539360pt;}
.y203{bottom:492.546720pt;}
.y16{bottom:495.496667pt;}
.y102{bottom:497.989409pt;}
.y276{bottom:498.971920pt;}
.y11f{bottom:500.932653pt;}
.y253{bottom:500.936334pt;}
.y2b0{bottom:500.938159pt;}
.y30{bottom:504.039140pt;}
.y1a3{bottom:505.851316pt;}
.y1c9{bottom:509.322400pt;}
.y5d{bottom:509.327800pt;}
.y96{bottom:509.850200pt;}
.y202{bottom:509.857560pt;}
.y101{bottom:510.613251pt;}
.y2ae{bottom:511.823467pt;}
.y2ad{bottom:513.636725pt;}
.y2af{bottom:513.637733pt;}
.y15{bottom:514.167333pt;}
.y275{bottom:516.282760pt;}
.y11e{bottom:518.243493pt;}
.y252{bottom:518.247173pt;}
.y2f{bottom:518.703490pt;}
.y1a2{bottom:522.480442pt;}
.y100{bottom:523.312825pt;}
.y200{bottom:524.976267pt;}
.y5c{bottom:526.638639pt;}
.y1c8{bottom:526.707907pt;}
.y95{bottom:527.161039pt;}
.y1ff{bottom:527.166786pt;}
.y201{bottom:527.168400pt;}
.y2ac{bottom:530.946375pt;}
.y14{bottom:532.838000pt;}
.y2e{bottom:533.367840pt;}
.y274{bottom:533.593600pt;}
.y1a1{bottom:535.180017pt;}
.y11d{bottom:535.629000pt;}
.y251{bottom:535.632681pt;}
.yff{bottom:536.012400pt;}
.y2ab{bottom:543.645950pt;}
.y1c7{bottom:544.018747pt;}
.y5b{bottom:544.024147pt;}
.y94{bottom:544.546547pt;}
.y1fe{bottom:544.552293pt;}
.y2d{bottom:548.032190pt;}
.y13{bottom:551.508667pt;}
.y1a0{bottom:551.885941pt;}
.y11c{bottom:552.939840pt;}
.y250{bottom:552.943520pt;}
.y2aa{bottom:556.269792pt;}
.y273{bottom:556.270667pt;}
.y1c6{bottom:561.329587pt;}
.y5a{bottom:561.334986pt;}
.y93{bottom:561.857386pt;}
.y1fd{bottom:561.863133pt;}
.y2c{bottom:562.696540pt;}
.y19f{bottom:568.516133pt;}
.y12{bottom:570.179333pt;}
.y11b{bottom:570.250680pt;}
.y24f{bottom:570.254360pt;}
.y2a9{bottom:573.655175pt;}
.y59{bottom:578.645826pt;}
.y1c5{bottom:578.715094pt;}
.y92{bottom:579.168226pt;}
.y1fc{bottom:579.173973pt;}
.y2b{bottom:584.541600pt;}
.y19e{bottom:585.220991pt;}
.y2a8{bottom:586.279017pt;}
.y24e{bottom:587.565200pt;}
.y11a{bottom:587.636187pt;}
.y272{bottom:593.234400pt;}
.y1c4{bottom:596.025934pt;}
.y58{bottom:596.031333pt;}
.y91{bottom:596.553733pt;}
.y1fb{bottom:596.559480pt;}
.y19d{bottom:597.844833pt;}
.y2a7{bottom:598.978591pt;}
.y11{bottom:599.508533pt;}
.y119{bottom:604.947027pt;}
.y24d{bottom:610.242400pt;}
.y1c3{bottom:613.336774pt;}
.y90{bottom:613.864573pt;}
.y1fa{bottom:613.870320pt;}
.y19c{bottom:614.549691pt;}
.y271{bottom:615.911600pt;}
.y2a6{bottom:616.288242pt;}
.y57{bottom:618.632933pt;}
.y118{bottom:622.257867pt;}
.y19b{bottom:627.173533pt;}
.y2a5{bottom:628.987816pt;}
.y1c2{bottom:630.647613pt;}
.y8f{bottom:631.175413pt;}
.y1f9{bottom:631.181159pt;}
.y117{bottom:639.643374pt;}
.y2a4{bottom:641.611659pt;}
.y19a{bottom:643.879458pt;}
.y1f7{bottom:646.299067pt;}
.y1c1{bottom:648.033120pt;}
.y8e{bottom:648.560920pt;}
.y1f6{bottom:648.564387pt;}
.y1f8{bottom:648.566667pt;}
.y24c{bottom:652.720360pt;}
.y10{bottom:655.521967pt;}
.y116{bottom:656.954214pt;}
.y2a3{bottom:658.921309pt;}
.y199{bottom:660.508583pt;}
.y270{bottom:660.885814pt;}
.y1c0{bottom:665.343960pt;}
.y8d{bottom:665.871760pt;}
.y1f5{bottom:665.875227pt;}
.yf{bottom:668.826334pt;}
.y24b{bottom:670.031200pt;}
.y2a2{bottom:671.620883pt;}
.y198{bottom:673.208158pt;}
.y115{bottom:674.265053pt;}
.y26f{bottom:678.196653pt;}
.y56{bottom:678.647613pt;}
.ye{bottom:682.205367pt;}
.y1bf{bottom:682.654800pt;}
.y8c{bottom:683.182600pt;}
.y1f4{bottom:683.186066pt;}
.y24a{bottom:687.416707pt;}
.y2a1{bottom:688.931600pt;}
.y197{bottom:689.837283pt;}
.y114{bottom:691.575893pt;}
.yd{bottom:695.508667pt;}
.y55{bottom:696.033120pt;}
.y1be{bottom:700.040307pt;}
.y8b{bottom:700.493439pt;}
.y1f3{bottom:700.496906pt;}
.y2a0{bottom:701.631175pt;}
.y196{bottom:702.536858pt;}
.y26e{bottom:703.519573pt;}
.y249{bottom:704.727547pt;}
.y113{bottom:708.961400pt;}
.y54{bottom:713.343960pt;}
.y29f{bottom:714.330750pt;}
.y1bd{bottom:717.351147pt;}
.y8a{bottom:717.878947pt;}
.y1f2{bottom:717.882413pt;}
.y195{bottom:719.167050pt;}
.y26d{bottom:720.905080pt;}
.y248{bottom:722.038387pt;}
.yc{bottom:722.192067pt;}
.y112{bottom:726.272240pt;}
.y53{bottom:730.654800pt;}
.y29e{bottom:731.640400pt;}
.y1bc{bottom:734.661987pt;}
.y89{bottom:735.189786pt;}
.y1f1{bottom:735.193253pt;}
.yb{bottom:735.496434pt;}
.y194{bottom:735.872975pt;}
.y247{bottom:739.423894pt;}
.y111{bottom:743.583080pt;}
.y29d{bottom:744.264242pt;}
.y26c{bottom:746.228000pt;}
.y52{bottom:747.965640pt;}
.ya{bottom:748.875467pt;}
.y1bb{bottom:752.047494pt;}
.y88{bottom:752.500626pt;}
.y193{bottom:752.503167pt;}
.y1f0{bottom:752.504093pt;}
.y246{bottom:756.734734pt;}
.y110{bottom:760.968587pt;}
.y29c{bottom:761.649625pt;}
.y26b{bottom:763.538840pt;}
.y51{bottom:765.351147pt;}
.y1ee{bottom:767.621867pt;}
.y192{bottom:769.208024pt;}
.y1ba{bottom:769.358334pt;}
.y87{bottom:769.886133pt;}
.y1ed{bottom:769.888680pt;}
.y1ef{bottom:769.889600pt;}
.y9{bottom:772.837600pt;}
.y7{bottom:772.838133pt;}
.y245{bottom:774.045573pt;}
.y29b{bottom:774.273467pt;}
.y8{bottom:778.204533pt;}
.y10f{bottom:778.279427pt;}
.y191{bottom:781.831867pt;}
.y50{bottom:782.661987pt;}
.y1b9{bottom:786.669173pt;}
.y29a{bottom:786.973041pt;}
.y86{bottom:787.196973pt;}
.y1ec{bottom:787.199520pt;}
.y5{bottom:787.502133pt;}
.y26a{bottom:788.861760pt;}
.y244{bottom:791.431081pt;}
.y6{bottom:792.869200pt;}
.y10e{bottom:795.590267pt;}
.y190{bottom:798.537791pt;}
.y2ce{bottom:799.596884pt;}
.y4f{bottom:799.972827pt;}
.y1b8{bottom:804.054681pt;}
.y299{bottom:804.282692pt;}
.y85{bottom:804.507813pt;}
.y1eb{bottom:804.510359pt;}
.y269{bottom:806.247267pt;}
.y243{bottom:808.741920pt;}
.y2cd{bottom:812.296458pt;}
.y18f{bottom:815.167983pt;}
.y298{bottom:816.982266pt;}
.y4e{bottom:817.358334pt;}
.y10d{bottom:818.268156pt;}
.y1e9{bottom:819.628133pt;}
.y4{bottom:820.836067pt;}
.y1b7{bottom:821.365520pt;}
.y84{bottom:821.893320pt;}
.y1e8{bottom:821.894587pt;}
.y1ea{bottom:821.895867pt;}
.y242{bottom:826.052760pt;}
.y297{bottom:829.606109pt;}
.y268{bottom:831.570187pt;}
.y18e{bottom:831.872841pt;}
.y4d{bottom:834.669173pt;}
.y10c{bottom:836.938400pt;}
.y1b6{bottom:838.676360pt;}
.y83{bottom:839.204160pt;}
.y1e7{bottom:839.205427pt;}
.y2cc{bottom:842.305683pt;}
.y241{bottom:843.363600pt;}
.y18d{bottom:844.496683pt;}
.y296{bottom:846.991491pt;}
.y267{bottom:848.881027pt;}
.y4c{bottom:851.980013pt;}
.y3{bottom:854.172233pt;}
.y1e5{bottom:854.324267pt;}
.y1b5{bottom:855.987200pt;}
.y82{bottom:856.515000pt;}
.y1e6{bottom:856.516267pt;}
.y295{bottom:859.615333pt;}
.y18c{bottom:861.202608pt;}
.y240{bottom:866.040667pt;}
.y266{bottom:866.191867pt;}
.y4b{bottom:869.365520pt;}
.y294{bottom:872.314908pt;}
.y10b{bottom:873.825839pt;}
.y81{bottom:873.900507pt;}
.y18b{bottom:877.832800pt;}
.y1b4{bottom:878.664400pt;}
.y293{bottom:884.938750pt;}
.y4a{bottom:886.676360pt;}
.y2{bottom:887.508400pt;}
.y265{bottom:888.869067pt;}
.y2cb{bottom:889.624558pt;}
.y80{bottom:891.211347pt;}
.y187{bottom:897.863783pt;}
.y292{bottom:902.324133pt;}
.y188{bottom:902.626400pt;}
.y49{bottom:903.987200pt;}
.y7f{bottom:908.522186pt;}
.y189{bottom:909.808167pt;}
.y183{bottom:910.487231pt;}
.y186{bottom:910.487625pt;}
.y18a{bottom:914.569867pt;}
.y291{bottom:914.947975pt;}
.y184{bottom:915.250133pt;}
.y1{bottom:920.843867pt;}
.y182{bottom:923.186805pt;}
.y185{bottom:923.187200pt;}
.y7e{bottom:925.833026pt;}
.y48{bottom:928.024933pt;}
.y7c{bottom:930.288705pt;}
.y290{bottom:932.257625pt;}
.y10a{bottom:940.950933pt;}
.y7d{bottom:943.218533pt;}
.y7b{bottom:944.953055pt;}
.y180{bottom:944.957200pt;}
.y181{bottom:949.719467pt;}
.y7a{bottom:994.393333pt;}
.hf{height:21.330000pt;}
.h10{height:22.041000pt;}
.h4{height:23.996800pt;}
.hd{height:25.313024pt;}
.h8{height:31.060945pt;}
.he{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.696000pt;}
.h3{height:36.000000pt;}
.h11{height:37.493708pt;}
.ha{height:37.973713pt;}
.hc{height:38.187049pt;}
.h7{height:39.266667pt;}
.hb{height:47.999600pt;}
.h9{height:49.599587pt;}
.h6{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:48.000000pt;}
.x4c{left:50.571127pt;}
.x51{left:52.384133pt;}
.x52{left:55.407867pt;}
.x45{left:56.919848pt;}
.x50{left:59.115020pt;}
.x4d{left:60.096341pt;}
.x11{left:63.496000pt;}
.x4e{left:66.219998pt;}
.x29{left:71.208309pt;}
.x48{left:72.567652pt;}
.x4b{left:74.835357pt;}
.x44{left:76.724400pt;}
.x4f{left:79.599031pt;}
.x2a{left:83.151626pt;}
.x49{left:87.685330pt;}
.x46{left:90.783958pt;}
.x2b{left:122.910133pt;}
.x2c{left:175.294400pt;}
.x2d{left:187.993975pt;}
.x4a{left:201.599639pt;}
.x47{left:204.472136pt;}
.x2e{left:228.358933pt;}
.x2f{left:264.491200pt;}
.x1{left:266.683333pt;}
.x30{left:269.555670pt;}
.x6a{left:272.579467pt;}
.x12{left:279.987333pt;}
.x13{left:282.632826pt;}
.x1b{left:289.965333pt;}
.x6b{left:294.651724pt;}
.x20{left:297.524267pt;}
.x31{left:315.892800pt;}
.x1a{left:329.725867pt;}
.x14{left:349.832933pt;}
.x15{left:354.595200pt;}
.x32{left:356.636133pt;}
.x34{left:360.037691pt;}
.x33{left:369.335708pt;}
.x5f{left:377.121200pt;}
.x2{left:380.825067pt;}
.x60{left:381.883333pt;}
.x3{left:392.617200pt;}
.xa{left:395.338400pt;}
.xb{left:400.327467pt;}
.x35{left:404.484933pt;}
.x23{left:416.881733pt;}
.x24{left:421.644000pt;}
.x61{left:424.667600pt;}
.x62{left:429.429867pt;}
.x69{left:442.053333pt;}
.x36{left:451.729067pt;}
.x38{left:455.130624pt;}
.x55{left:459.666000pt;}
.x37{left:460.951351pt;}
.x5a{left:462.387333pt;}
.x21{left:463.596667pt;}
.x5b{left:470.097467pt;}
.x22{left:471.382533pt;}
.x4{left:472.440800pt;}
.x56{left:473.423467pt;}
.x27{left:475.464400pt;}
.x28{left:479.924267pt;}
.x57{left:481.133733pt;}
.x63{left:485.744667pt;}
.x5{left:489.146267pt;}
.x64{left:490.128933pt;}
.xc{left:497.234533pt;}
.x39{left:499.577733pt;}
.x65{left:501.165200pt;}
.xd{left:502.223467pt;}
.x66{left:507.968400pt;}
.x5c{left:521.877067pt;}
.x5d{left:526.639200pt;}
.x3b{left:534.500954pt;}
.x3a{left:546.821867pt;}
.x18{left:551.130533pt;}
.x19{left:558.840800pt;}
.x25{left:564.358933pt;}
.x26{left:569.196667pt;}
.x1c{left:590.286400pt;}
.x1d{left:598.601333pt;}
.xe{left:602.532133pt;}
.x6{left:604.573067pt;}
.xf{left:607.521067pt;}
.x7{left:609.562000pt;}
.x3c{left:612.207733pt;}
.x16{left:626.040800pt;}
.x54{left:631.105333pt;}
.x17{left:633.826667pt;}
.x3d{left:643.728933pt;}
.x3f{left:648.037146pt;}
.x3e{left:653.782141pt;}
.x67{left:663.458000pt;}
.x68{left:668.295867pt;}
.x6c{left:678.047067pt;}
.x6d{left:682.506933pt;}
.x40{left:692.409200pt;}
.x53{left:697.700667pt;}
.x1e{left:705.864400pt;}
.x5e{left:710.021867pt;}
.x1f{left:714.179333pt;}
.x42{left:729.146059pt;}
.x8{left:741.240667pt;}
.x41{left:744.566667pt;}
.x9{left:746.229600pt;}
.x58{left:751.672267pt;}
.x59{left:756.434400pt;}
.x43{left:761.952533pt;}
}




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