
    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_11f1b14fc0ba808c0de3d6e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_ff0e9643b01f0363332cdc32.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_0bc3a1fa6abf560e729d0f0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_c3d14d7810b57bfb11c485aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eef062095df5b43f7d377935.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.483000;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_e0f6e24cce7e230362cf02bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_399d0a88a98ab21dd6e386cf.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7785ef680ccd84a1864afb8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.444000;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_3d72a7b5ab4965d625bab851.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4f6958191995dda3d12f1b00.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.729000;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_361b1e7b4b7785c6f2a42c7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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_f357cf6f77e03e7b5b058959.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.258000;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_34f082578c858d693ea389b7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.824000;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_b5abd18f2d17951067437764.woff2')format("woff");}.fff{font-family:fff;line-height:0.111000;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_59fbe8291d1ab296e065a12c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.719000;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_e0ac0631bab3dfb264e38b40.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.713000;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_b839386d3703dcba2ae9fcd0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940000;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_6970badb4935b4a0f3317779.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f3ec0db62c52c4b0e78cc5b1.woff2')format("woff");}.ff14{font-family:ff14;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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_40203a8ccb1d3a0ffd2789d8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.883000;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_208984f52aba223bc908763c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.258000;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_622545d064059817351f97e7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.199000;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_4a0b20bce31ccb54d2e5464f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_068e39bb706932caed81124f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.657000;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:ff1a;src:url('chunks/assets/font_32a705afa912d92924cf295c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_9d89890dacfa61536637cf47.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.460000;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:ff1c;src:url('chunks/assets/font_4612d87d495eaec7beff6993.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v6{vertical-align:-10.853943px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v8{vertical-align:17.657959px;}
.v7{vertical-align:21.653961px;}
.v5{vertical-align:23.289497px;}
.v2{vertical-align:26.399780px;}
.v4{vertical-align:54.000000px;}
.ls7{letter-spacing:-1.872000px;}
.ls1e{letter-spacing:-0.882000px;}
.ls8{letter-spacing:-0.588000px;}
.ls6{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.450000px;}
.ls15{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000002px;}
.ls1{letter-spacing:0.000005px;}
.ls2{letter-spacing:0.000009px;}
.lsb{letter-spacing:0.020642px;}
.ls14{letter-spacing:0.058820px;}
.ls12{letter-spacing:0.235279px;}
.lsa{letter-spacing:0.294000px;}
.ls5{letter-spacing:0.588000px;}
.ls21{letter-spacing:0.646800px;}
.ls1c{letter-spacing:0.793800px;}
.ls1b{letter-spacing:0.882000px;}
.lsf{letter-spacing:0.882297px;}
.lse{letter-spacing:2.117513px;}
.ls1d{letter-spacing:3.205187px;}
.ls18{letter-spacing:3.253512px;}
.ls16{letter-spacing:3.254062px;}
.ls19{letter-spacing:3.254153px;}
.ls1a{letter-spacing:3.254156px;}
.ls17{letter-spacing:3.254245px;}
.ls13{letter-spacing:5.293782px;}
.ls0{letter-spacing:5.460000px;}
.lsc{letter-spacing:9.852316px;}
.ls10{letter-spacing:13.057996px;}
.ls11{letter-spacing:13.116815px;}
.lsd{letter-spacing:16.351904px;}
.ls9{letter-spacing:48.510000px;}
.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;}
}
.ws10f{word-spacing:-14.700000px;}
.ws63{word-spacing:-14.523600px;}
.ws145{word-spacing:-14.464800px;}
.wse0{word-spacing:-14.112000px;}
.ws64{word-spacing:-13.935600px;}
.ws4{word-spacing:-13.818000px;}
.ws1{word-spacing:-12.483600px;}
.ws2{word-spacing:-12.420000px;}
.wsa4{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.117800px;}
.ws9d{word-spacing:-9.936000px;}
.wse2{word-spacing:-9.911136px;}
.ws15a{word-spacing:-9.855000px;}
.ws12d{word-spacing:-9.696000px;}
.wsc2{word-spacing:-9.672600px;}
.ws15b{word-spacing:-9.405000px;}
.ws159{word-spacing:-9.315000px;}
.ws3{word-spacing:-9.198000px;}
.ws12b{word-spacing:-9.168000px;}
.ws158{word-spacing:-6.898500px;}
.wsd8{word-spacing:-6.585600px;}
.ws15f{word-spacing:-3.870000px;}
.ws8{word-spacing:-2.772000px;}
.ws7{word-spacing:-2.310000px;}
.ws96{word-spacing:-1.881600px;}
.wsc1{word-spacing:-1.680000px;}
.ws133{word-spacing:-1.293600px;}
.ws10e{word-spacing:-1.234800px;}
.ws152{word-spacing:-1.058400px;}
.ws26{word-spacing:-0.940800px;}
.ws113{word-spacing:-0.882000px;}
.ws6{word-spacing:-0.780000px;}
.wsbc{word-spacing:-0.646800px;}
.ws54{word-spacing:-0.588000px;}
.ws67{word-spacing:-0.529200px;}
.ws6a{word-spacing:-0.411600px;}
.ws16{word-spacing:-0.352800px;}
.ws90{word-spacing:-0.294000px;}
.ws146{word-spacing:-0.235200px;}
.wsb3{word-spacing:-0.176400px;}
.wsaf{word-spacing:-0.117600px;}
.wse3{word-spacing:-0.058820px;}
.ws28{word-spacing:-0.058800px;}
.ws110{word-spacing:-0.048000px;}
.ws15e{word-spacing:-0.045000px;}
.wsfa{word-spacing:-0.044702px;}
.ws5{word-spacing:0.000000px;}
.ws7e{word-spacing:0.058800px;}
.ws10a{word-spacing:0.117600px;}
.ws55{word-spacing:0.176400px;}
.ws19{word-spacing:0.235200px;}
.wsf9{word-spacing:0.288000px;}
.ws5c{word-spacing:0.352800px;}
.ws5d{word-spacing:0.411600px;}
.wsbb{word-spacing:0.470400px;}
.wsef{word-spacing:0.529200px;}
.ws50{word-spacing:0.588000px;}
.wsce{word-spacing:0.705600px;}
.ws11d{word-spacing:0.764400px;}
.ws6e{word-spacing:0.823200px;}
.ws137{word-spacing:0.882000px;}
.wsfe{word-spacing:0.940800px;}
.ws43{word-spacing:1.058400px;}
.ws72{word-spacing:1.176000px;}
.ws13e{word-spacing:1.234800px;}
.ws13c{word-spacing:1.293600px;}
.ws23{word-spacing:1.352400px;}
.wseb{word-spacing:1.411200px;}
.ws5a{word-spacing:1.470000px;}
.wsfd{word-spacing:1.528800px;}
.ws153{word-spacing:1.587600px;}
.ws85{word-spacing:1.705200px;}
.wsf6{word-spacing:1.764000px;}
.wsd9{word-spacing:1.822800px;}
.wsed{word-spacing:1.881600px;}
.ws13d{word-spacing:1.940400px;}
.ws106{word-spacing:1.999200px;}
.ws108{word-spacing:2.058000px;}
.ws3e{word-spacing:2.116800px;}
.wsb2{word-spacing:2.175600px;}
.ws6b{word-spacing:2.234400px;}
.ws5f{word-spacing:2.293200px;}
.ws111{word-spacing:2.352000px;}
.ws35{word-spacing:2.410800px;}
.ws116{word-spacing:2.469600px;}
.wsf4{word-spacing:2.528400px;}
.wsc9{word-spacing:2.587200px;}
.ws3a{word-spacing:2.646000px;}
.ws30{word-spacing:2.704800px;}
.wsa9{word-spacing:2.763600px;}
.wsc0{word-spacing:2.822400px;}
.wsfb{word-spacing:2.881200px;}
.ws4e{word-spacing:2.940000px;}
.ws8d{word-spacing:2.998800px;}
.ws141{word-spacing:3.057600px;}
.wse6{word-spacing:3.116400px;}
.ws87{word-spacing:3.175200px;}
.ws8a{word-spacing:3.292800px;}
.ws117{word-spacing:3.351600px;}
.ws91{word-spacing:3.410400px;}
.ws1b{word-spacing:3.469200px;}
.ws34{word-spacing:3.528000px;}
.ws138{word-spacing:3.564000px;}
.ws73{word-spacing:3.586800px;}
.ws69{word-spacing:3.645600px;}
.ws135{word-spacing:3.704400px;}
.wsb4{word-spacing:3.763200px;}
.ws1a{word-spacing:3.822000px;}
.wsc3{word-spacing:3.880800px;}
.wscf{word-spacing:3.939600px;}
.wsdd{word-spacing:3.998400px;}
.wsfc{word-spacing:4.057200px;}
.ws136{word-spacing:4.116000px;}
.wsf3{word-spacing:4.174800px;}
.ws8b{word-spacing:4.233600px;}
.ws130{word-spacing:4.351200px;}
.ws9{word-spacing:4.410000px;}
.ws49{word-spacing:4.468800px;}
.ws4f{word-spacing:4.527600px;}
.ws80{word-spacing:4.586400px;}
.ws62{word-spacing:4.645200px;}
.wsd7{word-spacing:4.704000px;}
.ws7f{word-spacing:4.762800px;}
.wsd3{word-spacing:4.821600px;}
.ws27{word-spacing:4.880400px;}
.ws88{word-spacing:4.939200px;}
.ws70{word-spacing:4.998000px;}
.ws13{word-spacing:5.056794px;}
.ws3f{word-spacing:5.056800px;}
.ws8e{word-spacing:5.115600px;}
.ws78{word-spacing:5.174400px;}
.ws8f{word-spacing:5.233200px;}
.wsc6{word-spacing:5.292000px;}
.ws105{word-spacing:5.350800px;}
.wsc{word-spacing:5.409600px;}
.ws51{word-spacing:5.527200px;}
.ws5e{word-spacing:5.586000px;}
.wsa{word-spacing:5.644800px;}
.wsb0{word-spacing:5.703600px;}
.ws42{word-spacing:5.762400px;}
.ws140{word-spacing:5.821200px;}
.ws12f{word-spacing:5.880000px;}
.wsab{word-spacing:5.938800px;}
.wsac{word-spacing:5.997600px;}
.wsf7{word-spacing:6.056400px;}
.ws52{word-spacing:6.115200px;}
.ws66{word-spacing:6.174000px;}
.ws39{word-spacing:6.232800px;}
.ws1e{word-spacing:6.291600px;}
.wsd6{word-spacing:6.350400px;}
.ws22{word-spacing:6.409200px;}
.ws101{word-spacing:6.468000px;}
.ws17{word-spacing:6.526800px;}
.ws10c{word-spacing:6.585600px;}
.wsb9{word-spacing:6.644400px;}
.ws65{word-spacing:6.703200px;}
.ws21{word-spacing:6.762000px;}
.ws44{word-spacing:6.820800px;}
.ws15{word-spacing:6.879600px;}
.ws57{word-spacing:6.938400px;}
.ws12{word-spacing:6.997200px;}
.wsd2{word-spacing:7.056000px;}
.ws60{word-spacing:7.173600px;}
.wsba{word-spacing:7.232400px;}
.ws10{word-spacing:7.291200px;}
.wsec{word-spacing:7.350000px;}
.ws156{word-spacing:7.408800px;}
.ws82{word-spacing:7.467600px;}
.ws89{word-spacing:7.526400px;}
.wsd1{word-spacing:7.585200px;}
.ws131{word-spacing:7.761600px;}
.ws32{word-spacing:7.820400px;}
.ws53{word-spacing:7.879200px;}
.wsdf{word-spacing:7.938000px;}
.ws1f{word-spacing:7.996800px;}
.ws45{word-spacing:8.055600px;}
.wscb{word-spacing:8.173200px;}
.wsf5{word-spacing:8.232000px;}
.ws4d{word-spacing:8.290800px;}
.ws6c{word-spacing:8.349600px;}
.wsf0{word-spacing:8.408400px;}
.ws81{word-spacing:8.467200px;}
.ws71{word-spacing:8.526000px;}
.ws6d{word-spacing:8.584800px;}
.ws4a{word-spacing:8.643600px;}
.ws3b{word-spacing:8.702400px;}
.wsf1{word-spacing:8.761200px;}
.wsb8{word-spacing:8.820000px;}
.ws84{word-spacing:8.878800px;}
.ws14{word-spacing:8.937600px;}
.ws3d{word-spacing:8.996400px;}
.wsad{word-spacing:9.055200px;}
.wsf2{word-spacing:9.114000px;}
.wsb6{word-spacing:9.172800px;}
.ws31{word-spacing:9.290400px;}
.wsde{word-spacing:9.349200px;}
.ws13a{word-spacing:9.408000px;}
.wsc4{word-spacing:9.466800px;}
.wsc5{word-spacing:9.525600px;}
.wsf{word-spacing:9.584400px;}
.ws79{word-spacing:9.643200px;}
.wse1{word-spacing:9.752323px;}
.ws94{word-spacing:9.760800px;}
.wsae{word-spacing:9.819600px;}
.ws37{word-spacing:9.878400px;}
.ws58{word-spacing:9.937200px;}
.wsd0{word-spacing:9.996000px;}
.ws107{word-spacing:10.054800px;}
.ws14d{word-spacing:10.113600px;}
.ws109{word-spacing:10.231200px;}
.wse{word-spacing:10.290000px;}
.ws46{word-spacing:10.348800px;}
.ws115{word-spacing:10.407600px;}
.ws8c{word-spacing:10.466400px;}
.wsd4{word-spacing:10.584000px;}
.wse7{word-spacing:10.701600px;}
.ws4b{word-spacing:10.760400px;}
.ws151{word-spacing:10.819200px;}
.wse8{word-spacing:10.936800px;}
.wsbe{word-spacing:10.995600px;}
.ws6f{word-spacing:11.113200px;}
.ws2e{word-spacing:11.172000px;}
.ws38{word-spacing:11.230800px;}
.ws4c{word-spacing:11.289600px;}
.ws7c{word-spacing:11.348400px;}
.ws74{word-spacing:11.407200px;}
.ws11c{word-spacing:11.466000px;}
.ws7b{word-spacing:11.583600px;}
.ws11b{word-spacing:11.642400px;}
.ws24{word-spacing:11.701200px;}
.ws11{word-spacing:11.760000px;}
.ws13b{word-spacing:11.936400px;}
.ws14f{word-spacing:11.995200px;}
.ws7a{word-spacing:12.112800px;}
.ws14b{word-spacing:12.171600px;}
.ws10d{word-spacing:12.230400px;}
.wsc7{word-spacing:12.289200px;}
.ws61{word-spacing:12.348000px;}
.ws132{word-spacing:12.406800px;}
.ws86{word-spacing:12.465600px;}
.wsbd{word-spacing:12.524400px;}
.ws18{word-spacing:12.583200px;}
.ws75{word-spacing:12.642000px;}
.ws33{word-spacing:12.700800px;}
.ws36{word-spacing:12.759600px;}
.ws13f{word-spacing:12.818400px;}
.ws15c{word-spacing:12.877200px;}
.ws93{word-spacing:12.936000px;}
.ws134{word-spacing:12.994800px;}
.ws15d{word-spacing:13.112400px;}
.wsd{word-spacing:13.171200px;}
.ws2f{word-spacing:13.230000px;}
.ws92{word-spacing:13.288800px;}
.wsea{word-spacing:13.347600px;}
.wscc{word-spacing:13.406400px;}
.ws114{word-spacing:13.524000px;}
.ws14c{word-spacing:13.700400px;}
.ws102{word-spacing:13.759200px;}
.wsaa{word-spacing:13.818000px;}
.ws5b{word-spacing:13.876800px;}
.wsdc{word-spacing:13.935600px;}
.ws40{word-spacing:13.994400px;}
.ws154{word-spacing:14.053200px;}
.ws2b{word-spacing:14.112000px;}
.ws20{word-spacing:14.170800px;}
.ws147{word-spacing:14.229600px;}
.wsf8{word-spacing:14.523600px;}
.ws148{word-spacing:14.582400px;}
.ws2c{word-spacing:14.700000px;}
.ws120{word-spacing:14.758800px;}
.ws11e{word-spacing:14.817600px;}
.wsff{word-spacing:14.935200px;}
.ws2a{word-spacing:14.994000px;}
.wsd5{word-spacing:15.111600px;}
.wsca{word-spacing:15.170400px;}
.ws2d{word-spacing:15.405600px;}
.ws11f{word-spacing:15.464400px;}
.ws68{word-spacing:15.523200px;}
.ws103{word-spacing:15.582000px;}
.ws29{word-spacing:15.699600px;}
.ws3c{word-spacing:15.758400px;}
.wsb1{word-spacing:15.817200px;}
.ws56{word-spacing:15.876000px;}
.wse5{word-spacing:15.934800px;}
.wsb5{word-spacing:15.993600px;}
.ws83{word-spacing:16.052400px;}
.ws155{word-spacing:16.228800px;}
.ws10b{word-spacing:16.405200px;}
.ws1c{word-spacing:16.522800px;}
.ws76{word-spacing:16.581600px;}
.ws25{word-spacing:16.699200px;}
.ws118{word-spacing:16.934400px;}
.ws48{word-spacing:17.052000px;}
.wsdb{word-spacing:17.169600px;}
.wsda{word-spacing:17.287200px;}
.ws7d{word-spacing:17.346000px;}
.ws47{word-spacing:17.522400px;}
.ws14e{word-spacing:17.581200px;}
.ws142{word-spacing:17.698800px;}
.ws77{word-spacing:17.757600px;}
.ws95{word-spacing:18.169200px;}
.wsee{word-spacing:18.639600px;}
.ws112{word-spacing:18.874800px;}
.wsb7{word-spacing:18.992400px;}
.ws144{word-spacing:19.404000px;}
.ws59{word-spacing:19.815600px;}
.ws143{word-spacing:20.227200px;}
.ws104{word-spacing:20.521200px;}
.ws1d{word-spacing:21.109200px;}
.ws97{word-spacing:21.285600px;}
.wse4{word-spacing:21.403200px;}
.wscd{word-spacing:21.697200px;}
.ws139{word-spacing:21.756000px;}
.ws149{word-spacing:21.814800px;}
.wsc8{word-spacing:21.991200px;}
.ws41{word-spacing:22.167600px;}
.ws122{word-spacing:22.461600px;}
.wsb{word-spacing:22.696800px;}
.wse9{word-spacing:22.873200px;}
.ws14a{word-spacing:22.932000px;}
.ws157{word-spacing:24.754800px;}
.ws119{word-spacing:25.166400px;}
.ws100{word-spacing:25.519200px;}
.ws121{word-spacing:26.518800px;}
.wsbf{word-spacing:27.459600px;}
.wsa3{word-spacing:31.200000px;}
.ws150{word-spacing:36.162000px;}
.ws11a{word-spacing:36.632400px;}
.ws98{word-spacing:46.800000px;}
.wsa1{word-spacing:75.072000px;}
.wsa5{word-spacing:91.391993px;}
.ws9e{word-spacing:104.543993px;}
.wsa2{word-spacing:105.552000px;}
.ws99{word-spacing:105.984000px;}
.wsa8{word-spacing:112.752000px;}
.wsa6{word-spacing:128.976000px;}
.ws9b{word-spacing:146.112000px;}
.wsa7{word-spacing:147.263993px;}
.ws12c{word-spacing:158.496000px;}
.ws9f{word-spacing:164.496000px;}
.ws9c{word-spacing:172.511991px;}
.ws123{word-spacing:179.472000px;}
.wsa0{word-spacing:190.512000px;}
.ws126{word-spacing:202.320000px;}
.ws9a{word-spacing:205.824000px;}
.ws124{word-spacing:215.664000px;}
.ws12a{word-spacing:225.743993px;}
.ws12e{word-spacing:225.744000px;}
.ws128{word-spacing:268.656000px;}
.ws129{word-spacing:275.088000px;}
.ws127{word-spacing:278.208000px;}
.ws125{word-spacing:282.480000px;}
._34{margin-left:-38.161200px;}
._6{margin-left:-10.936800px;}
._7{margin-left:-5.578822px;}
._15{margin-left:-4.468800px;}
._2{margin-left:-3.432010px;}
._3{margin-left:-2.129978px;}
._0{margin-left:-1.099800px;}
._1{width:1.517400px;}
._4{width:2.831384px;}
._36{width:4.194483px;}
._17{width:6.130797px;}
._a{width:7.179120px;}
._8{width:8.655360px;}
._35{width:9.681983px;}
._b{width:11.383320px;}
._37{width:12.441576px;}
._9{width:13.841978px;}
._10{width:14.994000px;}
._5{width:16.879816px;}
._16{width:19.114222px;}
._4a{width:23.008800px;}
._4b{width:26.280000px;}
._14{width:28.572584px;}
._f{width:30.046800px;}
._c{width:33.404280px;}
._13{width:37.097280px;}
._11{width:38.514000px;}
._e{width:40.042800px;}
._d{width:41.101200px;}
._12{width:42.288600px;}
._49{width:44.968800px;}
._19{width:47.681992px;}
._1e{width:56.736000px;}
._2d{width:59.424000px;}
._2f{width:63.282600px;}
._2b{width:93.415178px;}
._18{width:96.383993px;}
._21{width:116.225378px;}
._1a{width:119.808000px;}
._26{width:124.176000px;}
._24{width:132.287993px;}
._20{width:137.681971px;}
._30{width:139.333818px;}
._1c{width:140.341817px;}
._29{width:147.551991px;}
._33{width:152.962793px;}
._25{width:154.145978px;}
._27{width:156.000000px;}
._28{width:157.775993px;}
._1b{width:158.976000px;}
._1f{width:162.816000px;}
._2a{width:164.688000px;}
._23{width:170.975987px;}
._2e{width:184.722593px;}
._32{width:210.959993px;}
._42{width:219.733817px;}
._3f{width:238.368000px;}
._3b{width:243.744000px;}
._40{width:255.744000px;}
._47{width:267.168000px;}
._38{width:279.168000px;}
._3e{width:285.600000px;}
._22{width:291.850175px;}
._2c{width:295.018175px;}
._1d{width:300.202183px;}
._31{width:301.210182px;}
._44{width:302.592000px;}
._3a{width:323.040000px;}
._3d{width:333.936000px;}
._46{width:346.464000px;}
._41{width:347.952000px;}
._39{width:371.376000px;}
._43{width:375.840000px;}
._45{width:394.800000px;}
._3c{width:399.264000px;}
._48{width:422.688000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.500000px;}
.fsf{font-size:36.479399px;}
.fsc{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fse{font-size:44.702399px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:58.800000px;}
.fsd{font-size:58.819800px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y208{bottom:0.086210px;}
.y224{bottom:0.086233px;}
.y20e{bottom:0.087698px;}
.y290{bottom:0.168752px;}
.y28a{bottom:0.168935px;}
.y1af{bottom:0.194412px;}
.y1be{bottom:0.195900px;}
.y1bb{bottom:0.344421px;}
.y1da{bottom:0.344707px;}
.y1b4{bottom:0.345910px;}
.y1d0{bottom:2.353821px;}
.y1cc{bottom:2.354118px;}
.y1ca{bottom:2.354256px;}
.y1c8{bottom:2.354416px;}
.y1b8{bottom:2.894234px;}
.y1c0{bottom:3.494247px;}
.y28f{bottom:4.244843px;}
.y289{bottom:4.245026px;}
.y1c6{bottom:5.054558px;}
.y214{bottom:5.144245px;}
.y207{bottom:5.144257px;}
.y22c{bottom:5.145721px;}
.y20d{bottom:5.145744px;}
.y296{bottom:8.659332px;}
.y1d2{bottom:16.974609px;}
.y1ce{bottom:16.974907px;}
.y1b{bottom:75.191248px;}
.y1a{bottom:87.192753px;}
.y19{bottom:99.194252px;}
.y2d9{bottom:100.260295px;}
.y2c0{bottom:101.805897px;}
.y1e1{bottom:105.813905px;}
.y77{bottom:106.620895px;}
.y217{bottom:106.635295px;}
.y313{bottom:106.642495px;}
.y1a2{bottom:107.135399px;}
.y158{bottom:107.142599px;}
.y1c4{bottom:107.178599px;}
.y95{bottom:108.387005px;}
.y253{bottom:109.380744px;}
.y248{bottom:110.841908px;}
.y33c{bottom:111.120895px;}
.y18{bottom:111.195750px;}
.y37d{bottom:116.487579px;}
.y2d8{bottom:118.253095px;}
.y2bf{bottom:119.813097px;}
.y13b{bottom:122.119518px;}
.y17{bottom:123.197250px;}
.y94{bottom:123.387005px;}
.y1df{bottom:123.482998px;}
.y1e0{bottom:123.806705px;}
.yca{bottom:123.837753px;}
.yfd{bottom:123.870895px;}
.y76{bottom:124.620895px;}
.y216{bottom:124.628095px;}
.y312{bottom:124.635295px;}
.y157{bottom:125.135399px;}
.y1a1{bottom:125.171399px;}
.y252{bottom:127.373544px;}
.y25e{bottom:127.388097px;}
.y265{bottom:128.149799px;}
.y247{bottom:128.834708px;}
.y37c{bottom:129.987579px;}
.y27f{bottom:131.603698px;}
.y273{bottom:131.654098px;}
.y13a{bottom:135.619518px;}
.y2d7{bottom:136.245895px;}
.y213{bottom:137.491505px;}
.y2be{bottom:137.805897px;}
.y33b{bottom:138.120895px;}
.y93{bottom:138.387005px;}
.y1de{bottom:141.813905px;}
.yc9{bottom:141.859353px;}
.yfc{bottom:141.899695px;}
.y215{bottom:142.620895px;}
.y311{bottom:142.628095px;}
.y75{bottom:142.656895px;}
.y156{bottom:143.135399px;}
.y1a0{bottom:143.164199px;}
.y173{bottom:143.185799px;}
.y37b{bottom:143.487579px;}
.y251{bottom:145.366344px;}
.y25d{bottom:145.380897px;}
.y264{bottom:146.142599px;}
.y246{bottom:146.827508px;}
.y17c{bottom:146.914199px;}
.y184{bottom:147.707995px;}
.y139{bottom:149.119518px;}
.y27e{bottom:149.596498px;}
.y272{bottom:149.646898px;}
.y2d6{bottom:154.253095px;}
.y2bd{bottom:155.863508px;}
.y41{bottom:156.461998px;}
.y37a{bottom:156.987579px;}
.y3d{bottom:159.164555px;}
.y1dd{bottom:159.482998px;}
.y1dc{bottom:159.806705px;}
.yc8{bottom:159.852153px;}
.yfb{bottom:159.892495px;}
.y310{bottom:160.620895px;}
.y74{bottom:160.649695px;}
.y155{bottom:161.142599px;}
.y19f{bottom:161.156999px;}
.y172{bottom:161.178599px;}
.y25c{bottom:163.373697px;}
.y250{bottom:163.380756px;}
.y263{bottom:164.135399px;}
.y245{bottom:164.820308px;}
.y17b{bottom:164.906999px;}
.y183{bottom:165.700795px;}
.y138{bottom:167.347518px;}
.y27d{bottom:167.589298px;}
.y271{bottom:167.639698px;}
.y379{bottom:170.487579px;}
.y2d5{bottom:172.245895px;}
.y2bc{bottom:173.856308px;}
.y33a{bottom:174.120895px;}
.y40{bottom:174.461998px;}
.y3c{bottom:177.157345px;}
.y1d9{bottom:177.482998px;}
.y1db{bottom:177.806705px;}
.y1d8{bottom:177.813894px;}
.yc7{bottom:177.844953px;}
.yfa{bottom:177.885295px;}
.y30f{bottom:178.628095px;}
.y73{bottom:178.642495px;}
.y154{bottom:179.135399px;}
.y19e{bottom:179.149799px;}
.y171{bottom:179.171399px;}
.y137{bottom:180.847518px;}
.y25b{bottom:181.366497px;}
.y24f{bottom:181.373556px;}
.y262{bottom:182.189697px;}
.y244{bottom:182.813108px;}
.y17a{bottom:182.899799px;}
.y3f{bottom:183.461998px;}
.y18a{bottom:183.649799px;}
.y190{bottom:183.679199px;}
.y182{bottom:183.693595px;}
.y378{bottom:183.987579px;}
.y27c{bottom:185.582098px;}
.y270{bottom:185.632498px;}
.y339{bottom:187.620895px;}
.y2d4{bottom:190.274695px;}
.y2bb{bottom:191.849108px;}
.y136{bottom:194.347518px;}
.y3b{bottom:195.150146px;}
.y1d7{bottom:195.806694px;}
.yc6{bottom:195.837753px;}
.yf9{bottom:195.878095px;}
.y30e{bottom:196.620895px;}
.y72{bottom:196.635295px;}
.y153{bottom:197.142599px;}
.y170{bottom:197.164199px;}
.y377{bottom:197.487579px;}
.y25a{bottom:199.359297px;}
.y24e{bottom:199.366356px;}
.y261{bottom:200.182497px;}
.y243{bottom:200.805908px;}
.y338{bottom:201.120895px;}
.y189{bottom:201.642599px;}
.y18f{bottom:201.671999px;}
.y181{bottom:201.686395px;}
.y27b{bottom:203.574898px;}
.y26f{bottom:203.625298px;}
.y2d3{bottom:208.267495px;}
.y2ba{bottom:209.841908px;}
.y376{bottom:210.987579px;}
.y135{bottom:212.503518px;}
.y3a{bottom:213.142960px;}
.y1d6{bottom:213.813894px;}
.yc5{bottom:213.866393px;}
.yf8{bottom:213.870895px;}
.y30d{bottom:214.620895px;}
.y71{bottom:214.628095px;}
.y1c3{bottom:214.973991px;}
.y152{bottom:215.135399px;}
.y1c2{bottom:215.142599px;}
.y16f{bottom:215.156999px;}
.y259{bottom:217.352097px;}
.y24d{bottom:217.373556px;}
.y260{bottom:218.175297px;}
.y242{bottom:218.841908px;}
.y188{bottom:219.635399px;}
.y179{bottom:219.649799px;}
.y18e{bottom:219.664799px;}
.y180{bottom:219.679195px;}
.y26e{bottom:221.618098px;}
.y27a{bottom:221.691596px;}
.y375{bottom:224.487579px;}
.y134{bottom:226.003518px;}
.y2d2{bottom:226.260295px;}
.y2b9{bottom:227.834708px;}
.y337{bottom:228.120895px;}
.y1bf{bottom:229.679993px;}
.y2a{bottom:230.352448px;}
.y39{bottom:231.135750px;}
.y1d5{bottom:231.806694px;}
.yc4{bottom:231.859193px;}
.yf7{bottom:231.906895px;}
.y70{bottom:232.620895px;}
.y30c{bottom:232.635295px;}
.y1c1{bottom:233.135399px;}
.y19d{bottom:233.142599px;}
.y16e{bottom:233.149799px;}
.y151{bottom:233.171399px;}
.y258{bottom:235.352097px;}
.y24c{bottom:235.366356px;}
.y25f{bottom:236.168097px;}
.y241{bottom:236.834708px;}
.y178{bottom:237.642599px;}
.y187{bottom:237.649799px;}
.y18d{bottom:237.657599px;}
.y17f{bottom:237.671995px;}
.y374{bottom:237.987579px;}
.y133{bottom:239.503518px;}
.y26d{bottom:239.610898px;}
.y279{bottom:239.684396px;}
.y336{bottom:241.620895px;}
.y2d1{bottom:244.253095px;}
.y211{bottom:245.490005px;}
.y2b8{bottom:245.827508px;}
.y29{bottom:248.374054px;}
.y38{bottom:249.142960px;}
.yc3{bottom:249.851993px;}
.yf6{bottom:249.899695px;}
.y212{bottom:250.620895px;}
.y6f{bottom:250.628095px;}
.y2f5{bottom:250.700095px;}
.y1bd{bottom:250.972504px;}
.y19c{bottom:251.135399px;}
.y16d{bottom:251.142599px;}
.y150{bottom:251.164199px;}
.y373{bottom:251.487579px;}
.y24b{bottom:253.417208px;}
.y240{bottom:254.827508px;}
.y335{bottom:255.120895px;}
.y177{bottom:255.635399px;}
.y186{bottom:255.642599px;}
.y18c{bottom:255.650399px;}
.y17e{bottom:255.664795px;}
.y26c{bottom:257.603698px;}
.y132{bottom:257.659518px;}
.y278{bottom:257.677196px;}
.y2d0{bottom:262.245895px;}
.y2b7{bottom:263.820308px;}
.y372{bottom:264.987579px;}
.y28{bottom:266.366844px;}
.y37{bottom:267.135750px;}
.yc2{bottom:267.844793px;}
.yf5{bottom:267.892495px;}
.y6e{bottom:268.620895px;}
.y2f4{bottom:268.692895px;}
.y1bc{bottom:269.142599px;}
.y14f{bottom:269.156999px;}
.y16c{bottom:269.193022px;}
.y131{bottom:271.159518px;}
.y24a{bottom:271.410008px;}
.y23f{bottom:272.820308px;}
.y176{bottom:273.635399px;}
.y18b{bottom:273.643199px;}
.y17d{bottom:273.657595px;}
.y26b{bottom:275.596498px;}
.y277{bottom:275.669996px;}
.y371{bottom:278.487579px;}
.y2cf{bottom:280.289095px;}
.y2b6{bottom:281.813108px;}
.y334{bottom:282.120895px;}
.y1b7{bottom:284.274010px;}
.y27{bottom:284.359657px;}
.y130{bottom:284.659518px;}
.y36{bottom:285.142960px;}
.yc1{bottom:285.837593px;}
.yf4{bottom:285.885295px;}
.y30b{bottom:286.620895px;}
.y210{bottom:286.628095px;}
.y6d{bottom:286.671295px;}
.y2f3{bottom:286.685695px;}
.y1ba{bottom:286.811989px;}
.y1b6{bottom:287.135399px;}
.y14e{bottom:287.149799px;}
.y1b9{bottom:287.168243px;}
.y16b{bottom:287.185822px;}
.y249{bottom:289.402808px;}
.y23e{bottom:290.813108px;}
.y370{bottom:291.987579px;}
.y21d{bottom:293.411407px;}
.y26a{bottom:293.589298px;}
.y276{bottom:293.662796px;}
.y333{bottom:295.620895px;}
.y2ce{bottom:298.281895px;}
.y20c{bottom:299.490005px;}
.y2b5{bottom:299.805908px;}
.y26{bottom:302.352448px;}
.y12f{bottom:302.815518px;}
.y35{bottom:303.135750px;}
.yc0{bottom:303.844793px;}
.yf3{bottom:303.878095px;}
.y267{bottom:304.490250px;}
.y20f{bottom:304.620895px;}
.y20b{bottom:304.628095px;}
.y6c{bottom:304.664095px;}
.y2f2{bottom:304.678495px;}
.y1b3{bottom:304.810500px;}
.y1b5{bottom:305.135399px;}
.y14d{bottom:305.142599px;}
.y1b2{bottom:305.149499px;}
.y16a{bottom:305.178622px;}
.y36f{bottom:305.487579px;}
.y21c{bottom:308.411407px;}
.y23d{bottom:308.805908px;}
.y269{bottom:311.582098px;}
.y275{bottom:311.655596px;}
.y2cd{bottom:316.274695px;}
.y12e{bottom:316.315518px;}
.y2b4{bottom:317.849108px;}
.y36e{bottom:318.987579px;}
.y266{bottom:319.490250px;}
.y25{bottom:320.388588px;}
.y34{bottom:321.198441px;}
.ybf{bottom:321.837593px;}
.yf2{bottom:321.870895px;}
.y20a{bottom:322.620895px;}
.y6b{bottom:322.656895px;}
.y2f1{bottom:322.671295px;}
.y14c{bottom:323.135399px;}
.y169{bottom:323.171422px;}
.y1c5{bottom:326.435989px;}
.y23c{bottom:326.834708px;}
.y268{bottom:329.574898px;}
.y274{bottom:329.648396px;}
.y185{bottom:331.370247px;}
.y1d1{bottom:331.395447px;}
.y1cd{bottom:331.395607px;}
.y1cb{bottom:331.395744px;}
.y1c9{bottom:331.396042px;}
.y1c7{bottom:331.396202px;}
.y1cf{bottom:331.489952px;}
.y36d{bottom:332.487579px;}
.y2cc{bottom:334.267495px;}
.y12d{bottom:334.471518px;}
.y206{bottom:335.491493px;}
.y2b3{bottom:335.841908px;}
.y332{bottom:336.120895px;}
.y24{bottom:338.381378px;}
.y191{bottom:338.930260px;}
.y33{bottom:339.191231px;}
.ybe{bottom:339.837593px;}
.yf1{bottom:339.899695px;}
.y209{bottom:340.620895px;}
.y205{bottom:340.635295px;}
.y6a{bottom:340.649695px;}
.y2f0{bottom:340.664095px;}
.y19b{bottom:341.157022px;}
.y168{bottom:341.164222px;}
.y14b{bottom:341.185822px;}
.y23b{bottom:344.827508px;}
.y36c{bottom:345.987579px;}
.y257{bottom:346.970695px;}
.y12c{bottom:347.971518px;}
.y331{bottom:349.620895px;}
.y2cb{bottom:352.260295px;}
.y2b2{bottom:353.834708px;}
.y23{bottom:356.374191px;}
.y32{bottom:357.184044px;}
.yf0{bottom:357.892495px;}
.ybd{bottom:357.938416px;}
.y204{bottom:358.628095px;}
.y30a{bottom:358.635295px;}
.y69{bottom:358.642495px;}
.y2ef{bottom:358.656895px;}
.y1b1{bottom:359.142599px;}
.y19a{bottom:359.149822px;}
.y167{bottom:359.157022px;}
.y14a{bottom:359.178622px;}
.y36b{bottom:359.487579px;}
.y12b{bottom:361.471518px;}
.y256{bottom:361.970695px;}
.y23a{bottom:362.820308px;}
.y330{bottom:363.120895px;}
.y2ca{bottom:370.253095px;}
.y2b1{bottom:371.827508px;}
.y36a{bottom:372.987579px;}
.y22{bottom:374.366982px;}
.y31{bottom:375.176834px;}
.yef{bottom:375.885295px;}
.ybc{bottom:375.931216px;}
.y203{bottom:376.620895px;}
.y309{bottom:376.628095px;}
.y68{bottom:376.635295px;}
.y2ee{bottom:376.649695px;}
.y1ae{bottom:376.973991px;}
.y1b0{bottom:377.135399px;}
.y199{bottom:377.142622px;}
.y166{bottom:377.149822px;}
.y149{bottom:377.171422px;}
.y1ad{bottom:377.178622px;}
.y12a{bottom:379.627518px;}
.y239{bottom:380.813108px;}
.y29d{bottom:382.239761px;}
.y29f{bottom:383.499756px;}
.y369{bottom:386.487579px;}
.y2c9{bottom:388.245895px;}
.y2b0{bottom:389.820308px;}
.y32f{bottom:390.120895px;}
.y21{bottom:392.359772px;}
.y129{bottom:393.127518px;}
.y30{bottom:393.169647px;}
.yee{bottom:393.878095px;}
.ybb{bottom:393.924016px;}
.y308{bottom:394.620895px;}
.y67{bottom:394.628095px;}
.y202{bottom:394.635295px;}
.y2ed{bottom:394.642495px;}
.y198{bottom:395.135422px;}
.y165{bottom:395.142622px;}
.y148{bottom:395.164222px;}
.y1ac{bottom:395.171422px;}
.y29c{bottom:397.239761px;}
.y29e{bottom:398.499756px;}
.y238{bottom:398.805908px;}
.y368{bottom:399.987579px;}
.y32e{bottom:403.620895px;}
.y2c8{bottom:406.245895px;}
.y128{bottom:406.627518px;}
.y2af{bottom:407.813108px;}
.y20{bottom:410.352585px;}
.y2f{bottom:411.162415px;}
.yed{bottom:411.870895px;}
.yba{bottom:411.916816px;}
.y66{bottom:412.620895px;}
.y201{bottom:412.628095px;}
.y2ec{bottom:412.635295px;}
.y164{bottom:413.135422px;}
.y147{bottom:413.157022px;}
.y1ab{bottom:413.164222px;}
.y197{bottom:413.185822px;}
.y367{bottom:413.487579px;}
.y237{bottom:416.827508px;}
.y32d{bottom:417.120895px;}
.y2c7{bottom:424.253095px;}
.y127{bottom:424.783518px;}
.y2ae{bottom:425.805908px;}
.y366{bottom:426.987579px;}
.y1f{bottom:428.367004px;}
.y2e{bottom:429.155228px;}
.yec{bottom:429.870895px;}
.yb9{bottom:429.909616px;}
.y65{bottom:430.620895px;}
.y2eb{bottom:430.628095px;}
.y146{bottom:431.149822px;}
.y1aa{bottom:431.157022px;}
.y196{bottom:431.178622px;}
.y163{bottom:431.218789px;}
.y236{bottom:434.820308px;}
.y126{bottom:438.283518px;}
.y365{bottom:440.487579px;}
.y2c6{bottom:442.245895px;}
.y2ad{bottom:443.820308px;}
.y32c{bottom:444.120895px;}
.y1e{bottom:446.359772px;}
.y2d{bottom:447.148041px;}
.yeb{bottom:447.878095px;}
.yb8{bottom:447.902416px;}
.y2ea{bottom:448.620895px;}
.y200{bottom:448.628095px;}
.y145{bottom:449.142622px;}
.y1a9{bottom:449.149822px;}
.y195{bottom:449.171422px;}
.y162{bottom:449.211589px;}
.y125{bottom:451.783518px;}
.y235{bottom:452.813108px;}
.y364{bottom:453.987579px;}
.y32b{bottom:457.620895px;}
.y2c5{bottom:460.280091px;}
.y2ac{bottom:461.813108px;}
.y1d{bottom:464.352585px;}
.y2c{bottom:465.140854px;}
.yea{bottom:465.870895px;}
.yb7{bottom:465.895216px;}
.y1ff{bottom:466.620895px;}
.y2e9{bottom:466.628095px;}
.y307{bottom:466.649695px;}
.y64{bottom:466.664095px;}
.y144{bottom:467.135422px;}
.y1a8{bottom:467.142622px;}
.y194{bottom:467.164222px;}
.y161{bottom:467.204389px;}
.y363{bottom:467.487579px;}
.y124{bottom:469.939518px;}
.y234{bottom:470.805908px;}
.y32a{bottom:471.120895px;}
.y2c4{bottom:478.272891px;}
.y2ab{bottom:479.805908px;}
.y362{bottom:480.987579px;}
.y1c{bottom:482.352585px;}
.y2b{bottom:483.133621px;}
.y123{bottom:483.439518px;}
.ye9{bottom:483.870895px;}
.yb6{bottom:483.888016px;}
.y2e8{bottom:484.620895px;}
.y1fe{bottom:484.628095px;}
.y306{bottom:484.642495px;}
.y63{bottom:484.656895px;}
.y143{bottom:485.135422px;}
.y193{bottom:485.157022px;}
.y160{bottom:485.197189px;}
.y233{bottom:488.849108px;}
.y361{bottom:494.487579px;}
.y2c3{bottom:496.265691px;}
.y122{bottom:496.939518px;}
.y2aa{bottom:497.863508px;}
.y329{bottom:498.120895px;}
.ye8{bottom:501.878095px;}
.yb5{bottom:501.880816px;}
.y1fd{bottom:502.620895px;}
.y2e7{bottom:502.635295px;}
.y62{bottom:502.649695px;}
.y1a7{bottom:503.135422px;}
.y142{bottom:503.149822px;}
.y15f{bottom:503.189989px;}
.y232{bottom:506.841908px;}
.y360{bottom:507.987579px;}
.y328{bottom:511.620895px;}
.y2c2{bottom:514.258491px;}
.y121{bottom:515.095518px;}
.y2a9{bottom:515.856308px;}
.ye7{bottom:519.870895px;}
.yb4{bottom:519.873616px;}
.y1fc{bottom:520.628095px;}
.y61{bottom:520.642495px;}
.y141{bottom:521.142622px;}
.y15e{bottom:521.182789px;}
.y35f{bottom:521.487579px;}
.y231{bottom:524.834708px;}
.y327{bottom:525.120895px;}
.y120{bottom:528.595518px;}
.y2c1{bottom:532.251291px;}
.y2a8{bottom:533.849108px;}
.y35e{bottom:534.987579px;}
.y16{bottom:536.315094px;}
.yb3{bottom:537.866416px;}
.ye6{bottom:537.885295px;}
.y1fb{bottom:538.620895px;}
.y60{bottom:538.635295px;}
.y140{bottom:539.135422px;}
.y15d{bottom:539.175589px;}
.y11f{bottom:542.095518px;}
.y230{bottom:542.827508px;}
.y35d{bottom:548.487579px;}
.y2a7{bottom:551.841908px;}
.y326{bottom:552.120895px;}
.y15{bottom:554.315094px;}
.yb2{bottom:555.859216px;}
.ye5{bottom:555.878095px;}
.y5f{bottom:556.628095px;}
.y305{bottom:556.635295px;}
.y2e6{bottom:556.642495px;}
.y1fa{bottom:556.692895px;}
.y192{bottom:557.135422px;}
.y13f{bottom:557.157022px;}
.y1a6{bottom:557.161189px;}
.y15c{bottom:557.168389px;}
.y22f{bottom:560.820308px;}
.y35c{bottom:561.987579px;}
.y325{bottom:565.620895px;}
.y11e{bottom:568.987518px;}
.y2a6{bottom:569.834708px;}
.yb1{bottom:573.852016px;}
.ye4{bottom:573.870895px;}
.y5e{bottom:574.620895px;}
.y304{bottom:574.628095px;}
.y2e5{bottom:574.635295px;}
.y92{bottom:574.642495px;}
.y1f9{bottom:574.685695px;}
.y13e{bottom:575.149822px;}
.y1a5{bottom:575.153989px;}
.y15b{bottom:575.161189px;}
.y35b{bottom:575.487579px;}
.y14{bottom:576.815094px;}
.y22e{bottom:578.813108px;}
.y324{bottom:579.120895px;}
.y11d{bottom:582.487518px;}
.y2a5{bottom:587.827508px;}
.y35a{bottom:588.987579px;}
.y22b{bottom:591.675018px;}
.yb0{bottom:591.844816px;}
.ye3{bottom:591.892495px;}
.y303{bottom:592.620895px;}
.y2e4{bottom:592.628095px;}
.y91{bottom:592.635295px;}
.y5d{bottom:592.642495px;}
.y1f8{bottom:592.678495px;}
.y13d{bottom:593.142622px;}
.y1a4{bottom:593.146789px;}
.y15a{bottom:593.153989px;}
.y2e0{bottom:594.050262px;}
.y13{bottom:594.815094px;}
.y11c{bottom:595.987518px;}
.y22d{bottom:596.805908px;}
.y22a{bottom:596.813108px;}
.y21b{bottom:597.050262px;}
.y359{bottom:602.487579px;}
.y2a4{bottom:605.820308px;}
.y323{bottom:606.120895px;}
.y2df{bottom:609.050262px;}
.yaf{bottom:609.837616px;}
.ye2{bottom:609.885295px;}
.y2e3{bottom:610.620895px;}
.y90{bottom:610.628095px;}
.y5c{bottom:610.635295px;}
.y1f7{bottom:610.671295px;}
.y302{bottom:610.700141px;}
.y13c{bottom:611.135422px;}
.y1a3{bottom:611.139589px;}
.y159{bottom:611.146789px;}
.y21a{bottom:612.050262px;}
.y12{bottom:612.815094px;}
.y229{bottom:614.805908px;}
.y358{bottom:615.987579px;}
.y11b{bottom:620.300262px;}
.y2a3{bottom:623.813108px;}
.y2de{bottom:624.050262px;}
.y219{bottom:627.050262px;}
.yae{bottom:627.866416px;}
.ye1{bottom:627.878095px;}
.y8f{bottom:628.620895px;}
.y5b{bottom:628.628095px;}
.y1f6{bottom:628.664095px;}
.y301{bottom:628.692941px;}
.y357{bottom:629.487579px;}
.y11{bottom:630.815094px;}
.y228{bottom:632.827508px;}
.y322{bottom:633.120895px;}
.y39c{bottom:639.987579px;}
.y2a2{bottom:641.805908px;}
.y218{bottom:642.050262px;}
.y356{bottom:642.987579px;}
.yad{bottom:645.859216px;}
.ye0{bottom:645.870895px;}
.y5a{bottom:646.620895px;}
.y8e{bottom:646.642495px;}
.y1f5{bottom:646.656895px;}
.y300{bottom:646.685741px;}
.y10{bottom:648.815094px;}
.y227{bottom:650.820308px;}
.y39b{bottom:653.487579px;}
.y355{bottom:656.487579px;}
.y2a1{bottom:659.813108px;}
.yac{bottom:663.852016px;}
.ydf{bottom:663.906941px;}
.y11a{bottom:664.620895px;}
.y8d{bottom:664.635295px;}
.y1f4{bottom:664.649695px;}
.y59{bottom:664.664141px;}
.y10c{bottom:664.671341px;}
.y2ff{bottom:664.678541px;}
.yf{bottom:666.815094px;}
.y39a{bottom:666.987579px;}
.y226{bottom:668.813108px;}
.y354{bottom:669.987579px;}
.y175{bottom:673.130264px;}
.y321{bottom:673.620895px;}
.y1d4{bottom:675.290268px;}
.y2a0{bottom:677.805908px;}
.y399{bottom:680.487579px;}
.y223{bottom:681.676483px;}
.yab{bottom:681.844816px;}
.yde{bottom:681.899741px;}
.y8c{bottom:682.628095px;}
.y1f3{bottom:682.642495px;}
.y58{bottom:682.656941px;}
.y10b{bottom:682.664141px;}
.y2fe{bottom:682.671341px;}
.y353{bottom:683.487579px;}
.ye{bottom:684.815094px;}
.y225{bottom:686.805908px;}
.y222{bottom:686.834708px;}
.y174{bottom:688.130264px;}
.y1d3{bottom:690.290268px;}
.y320{bottom:691.620895px;}
.y398{bottom:693.987579px;}
.y352{bottom:696.987579px;}
.yaa{bottom:699.837616px;}
.y8b{bottom:700.620895px;}
.y1f2{bottom:700.635295px;}
.y57{bottom:700.649741px;}
.y10a{bottom:700.656941px;}
.y2fd{bottom:700.664141px;}
.yd{bottom:702.815094px;}
.y221{bottom:704.827508px;}
.y31f{bottom:705.120895px;}
.y397{bottom:707.487579px;}
.y351{bottom:710.487579px;}
.y31e{bottom:714.120941px;}
.y29a{bottom:717.185989px;}
.ya9{bottom:717.880908px;}
.y1f1{bottom:718.628095px;}
.y56{bottom:718.642541px;}
.ydd{bottom:718.649741px;}
.y2fc{bottom:718.656941px;}
.y8a{bottom:718.714541px;}
.yc{bottom:720.815094px;}
.y396{bottom:720.987579px;}
.y29b{bottom:721.425018px;}
.y220{bottom:722.820308px;}
.y350{bottom:723.987579px;}
.y2dd{bottom:731.330292px;}
.y395{bottom:734.487579px;}
.ya8{bottom:735.873708px;}
.y1f0{bottom:736.620895px;}
.y55{bottom:736.635341px;}
.ydc{bottom:736.642541px;}
.y2fb{bottom:736.649741px;}
.y89{bottom:736.707341px;}
.y34f{bottom:737.487579px;}
.yb{bottom:738.815094px;}
.y299{bottom:739.661982px;}
.y21f{bottom:740.813108px;}
.y31d{bottom:741.120941px;}
.y2dc{bottom:746.330292px;}
.y394{bottom:747.987579px;}
.y34e{bottom:750.987579px;}
.ya7{bottom:753.866508px;}
.y31c{bottom:754.620941px;}
.y54{bottom:754.628141px;}
.ydb{bottom:754.635341px;}
.y2fa{bottom:754.642541px;}
.y1ef{bottom:754.656941px;}
.y88{bottom:754.700141px;}
.ya{bottom:756.815094px;}
.y298{bottom:757.805982px;}
.y21e{bottom:758.805908px;}
.y2db{bottom:761.330292px;}
.y393{bottom:761.487579px;}
.y34d{bottom:764.487579px;}
.y31b{bottom:768.120941px;}
.y294{bottom:771.710999px;}
.ya6{bottom:771.859308px;}
.y53{bottom:772.620941px;}
.yda{bottom:772.628141px;}
.y2f9{bottom:772.635341px;}
.y1ee{bottom:772.649741px;}
.y87{bottom:772.692941px;}
.y392{bottom:774.987579px;}
.y297{bottom:775.949982px;}
.y295{bottom:775.956024px;}
.y2da{bottom:776.330292px;}
.y34c{bottom:777.987579px;}
.y9{bottom:779.315094px;}
.y31a{bottom:781.620941px;}
.y391{bottom:788.487579px;}
.ya5{bottom:789.852108px;}
.yd9{bottom:790.620941px;}
.y2f8{bottom:790.628141px;}
.y1ed{bottom:790.642541px;}
.y52{bottom:790.649741px;}
.y86{bottom:790.685741px;}
.y34b{bottom:791.487579px;}
.y293{bottom:794.111963px;}
.y319{bottom:795.120941px;}
.y390{bottom:801.987579px;}
.y34a{bottom:804.987579px;}
.ya4{bottom:807.844908px;}
.y2f7{bottom:808.620941px;}
.y2e2{bottom:808.628141px;}
.y1ec{bottom:808.635341px;}
.y51{bottom:808.642541px;}
.y109{bottom:808.649741px;}
.y119{bottom:808.656941px;}
.y85{bottom:808.678541px;}
.yd8{bottom:808.710737px;}
.y292{bottom:812.255963px;}
.y38f{bottom:815.487579px;}
.y349{bottom:818.487579px;}
.y318{bottom:822.120941px;}
.ya3{bottom:825.837708px;}
.y28e{bottom:826.160980px;}
.y2e1{bottom:826.620941px;}
.y1eb{bottom:826.628141px;}
.y50{bottom:826.635341px;}
.y108{bottom:826.642541px;}
.y118{bottom:826.649741px;}
.y84{bottom:826.671341px;}
.yd7{bottom:826.703537px;}
.y255{bottom:828.830292px;}
.y38e{bottom:828.987579px;}
.y291{bottom:830.399963px;}
.y348{bottom:831.987579px;}
.y317{bottom:835.620941px;}
.y38d{bottom:842.487579px;}
.y8{bottom:843.548126px;}
.y254{bottom:843.830292px;}
.ya2{bottom:843.859308px;}
.y1ea{bottom:844.620941px;}
.y4f{bottom:844.628141px;}
.y107{bottom:844.635341px;}
.y117{bottom:844.642541px;}
.y2f6{bottom:844.649741px;}
.y83{bottom:844.664141px;}
.yd6{bottom:844.696337px;}
.y347{bottom:845.487579px;}
.y28d{bottom:848.562037px;}
.y316{bottom:849.120941px;}
.y38c{bottom:855.987579px;}
.y346{bottom:858.987579px;}
.ya1{bottom:861.852108px;}
.y4e{bottom:862.620941px;}
.y106{bottom:862.628141px;}
.y116{bottom:862.635341px;}
.y1e9{bottom:862.642541px;}
.y82{bottom:862.656941px;}
.yd5{bottom:862.689137px;}
.y7{bottom:864.552612px;}
.y28c{bottom:866.706037px;}
.y38b{bottom:869.487579px;}
.y345{bottom:872.487579px;}
.y315{bottom:876.120941px;}
.ya0{bottom:879.844908px;}
.y288{bottom:880.610962px;}
.y105{bottom:880.620941px;}
.y115{bottom:880.628141px;}
.y1e8{bottom:880.635341px;}
.y81{bottom:880.649741px;}
.yd4{bottom:880.681937px;}
.y4d{bottom:880.685741px;}
.y38a{bottom:882.987579px;}
.y28b{bottom:884.850037px;}
.y344{bottom:885.987579px;}
.y314{bottom:889.620941px;}
.y389{bottom:896.487579px;}
.y9f{bottom:897.837708px;}
.y104{bottom:898.620941px;}
.y1e7{bottom:898.628141px;}
.y80{bottom:898.642541px;}
.yd3{bottom:898.674737px;}
.y4c{bottom:898.678541px;}
.y343{bottom:899.487579px;}
.y6{bottom:900.577515px;}
.y287{bottom:902.995518px;}
.y388{bottom:909.987579px;}
.y342{bottom:912.987579px;}
.y9e{bottom:915.866508px;}
.y1e6{bottom:916.620941px;}
.y114{bottom:916.628141px;}
.y7f{bottom:916.635341px;}
.yd2{bottom:916.667537px;}
.y4b{bottom:916.671341px;}
.y286{bottom:921.139518px;}
.y387{bottom:923.487579px;}
.y341{bottom:926.487579px;}
.y9d{bottom:933.859308px;}
.y113{bottom:934.620941px;}
.y7e{bottom:934.628141px;}
.y1e5{bottom:934.642541px;}
.y103{bottom:934.656941px;}
.yd1{bottom:934.660337px;}
.y4a{bottom:934.664141px;}
.y386{bottom:936.987579px;}
.y285{bottom:939.295518px;}
.y5{bottom:939.565521px;}
.y340{bottom:939.987579px;}
.y385{bottom:950.487579px;}
.y9c{bottom:951.852108px;}
.y7d{bottom:952.620941px;}
.y112{bottom:952.635341px;}
.y102{bottom:952.649741px;}
.yd0{bottom:952.653137px;}
.y49{bottom:952.656941px;}
.y33f{bottom:953.487579px;}
.y284{bottom:957.439518px;}
.y384{bottom:963.987579px;}
.y33e{bottom:966.987579px;}
.y9b{bottom:969.844908px;}
.y111{bottom:970.628141px;}
.y101{bottom:970.642541px;}
.y7c{bottom:970.642795px;}
.ycf{bottom:970.645937px;}
.y48{bottom:970.649741px;}
.y283{bottom:975.595518px;}
.y383{bottom:977.487579px;}
.y4{bottom:978.553528px;}
.y9a{bottom:987.837708px;}
.y110{bottom:988.620941px;}
.y100{bottom:988.635341px;}
.y7b{bottom:988.635595px;}
.yce{bottom:988.638737px;}
.y47{bottom:988.642541px;}
.y382{bottom:990.987579px;}
.y282{bottom:1002.487518px;}
.y381{bottom:1004.487579px;}
.y99{bottom:1005.844908px;}
.yff{bottom:1006.628141px;}
.y7a{bottom:1006.628395px;}
.ycd{bottom:1006.631537px;}
.y46{bottom:1006.635341px;}
.y1e4{bottom:1006.644605px;}
.y10f{bottom:1006.681541px;}
.y380{bottom:1017.987579px;}
.y98{bottom:1023.837708px;}
.yfe{bottom:1024.620941px;}
.y79{bottom:1024.621195px;}
.ycc{bottom:1024.624337px;}
.y45{bottom:1024.628141px;}
.y1e3{bottom:1024.637405px;}
.y10e{bottom:1024.674341px;}
.y281{bottom:1026.803079px;}
.y37f{bottom:1031.487579px;}
.y3{bottom:1033.362579px;}
.y3e{bottom:1035.750183px;}
.y97{bottom:1041.837708px;}
.y78{bottom:1042.613995px;}
.ycb{bottom:1042.617137px;}
.y44{bottom:1042.620941px;}
.y1e2{bottom:1042.630205px;}
.y10d{bottom:1042.667141px;}
.y280{bottom:1043.300079px;}
.y33d{bottom:1044.983419px;}
.y37e{bottom:1044.987579px;}
.y2{bottom:1112.297058px;}
.y96{bottom:1126.524628px;}
.y42{bottom:1126.524719px;}
.y43{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.h27{height:2.352792px;}
.h20{height:9.901500px;}
.h18{height:10.050000px;}
.h1f{height:10.350000px;}
.h21{height:10.500000px;}
.h22{height:10.650000px;}
.h1a{height:10.800000px;}
.h30{height:12.898500px;}
.h2d{height:12.900000px;}
.h1c{height:13.349999px;}
.h28{height:15.748499px;}
.h2a{height:15.750000px;}
.h33{height:17.035879px;}
.h23{height:17.550000px;}
.h1e{height:21.351587px;}
.h2f{height:25.900373px;}
.he{height:27.814500px;}
.h31{height:31.536000px;}
.h25{height:31.649299px;}
.h32{height:34.080000px;}
.h2e{height:34.693838px;}
.hb{height:37.086000px;}
.hd{height:39.735000px;}
.h19{height:41.173860px;}
.h1b{height:41.644418px;}
.h1d{height:41.938517px;}
.h26{height:41.997337px;}
.h24{height:42.291436px;}
.h11{height:42.384000px;}
.h29{height:42.529982px;}
.h2b{height:42.530027px;}
.h2c{height:42.530073px;}
.h36{height:42.840000px;}
.h34{height:43.785000px;}
.h3{height:45.696000px;}
.h35{height:45.814500px;}
.h14{height:46.704000px;}
.h2{height:47.231915px;}
.hf{height:47.232000px;}
.h10{height:47.472000px;}
.h9{height:52.980000px;}
.h13{height:53.406000px;}
.h12{height:54.625200px;}
.hc{height:55.860000px;}
.ha{height:58.380000px;}
.h8{height:61.120200px;}
.h17{height:62.391497px;}
.h6{height:67.194379px;}
.h7{height:67.212324px;}
.h4{height:77.142000px;}
.h16{height:96.384000px;}
.h15{height:100.704000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w6{width:5.040000px;}
.w8{width:6.703500px;}
.w3{width:7.305000px;}
.w7{width:7.965000px;}
.w2{width:8.775000px;}
.w5{width:9.765000px;}
.wc{width:22.950000px;}
.wb{width:30.478500px;}
.wa{width:30.480000px;}
.w4{width:155.069996px;}
.w9{width:232.875000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x22{left:-1.025253px;}
.x0{left:0.000000px;}
.x45{left:14.041722px;}
.x39{left:19.113387px;}
.x2a{left:22.058258px;}
.x1f{left:33.334763px;}
.x2c{left:78.069901px;}
.x1{left:84.933002px;}
.x42{left:89.832000px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.x9{left:97.034552px;}
.x15{left:102.899852px;}
.x48{left:107.539352px;}
.x2e{left:113.169891px;}
.x16{left:115.027352px;}
.x43{left:120.311405px;}
.x30{left:163.443924px;}
.x44{left:165.326248px;}
.x46{left:171.182098px;}
.x32{left:190.511398px;}
.x34{left:228.392258px;}
.x4{left:270.817497px;}
.x35{left:297.204002px;}
.x36{left:304.508560px;}
.x40{left:344.215508px;}
.x41{left:374.694443px;}
.xc{left:386.731349px;}
.x37{left:412.224014px;}
.x38{left:419.528870px;}
.x5{left:457.092911px;}
.xa{left:466.461594px;}
.x6{left:469.088104px;}
.xd{left:473.539349px;}
.x17{left:474.942141px;}
.x47{left:479.586594px;}
.x10{left:482.515359px;}
.x18{left:487.069641px;}
.xb{left:489.392252px;}
.x24{left:495.175964px;}
.x29{left:496.305771px;}
.x1d{left:500.401520px;}
.x2b{left:515.948273px;}
.x1e{left:518.184311px;}
.x1b{left:535.780518px;}
.x25{left:540.392990px;}
.x1c{left:543.085327px;}
.x26{left:548.357986px;}
.x13{left:561.667333px;}
.x14{left:570.667333px;}
.x2d{left:571.959732px;}
.x3a{left:603.143692px;}
.x2f{left:607.059769px;}
.x3d{left:611.738983px;}
.x27{left:617.281494px;}
.x28{left:623.986816px;}
.xe{left:637.891349px;}
.x3e{left:642.365570px;}
.x11{left:646.867359px;}
.x20{left:655.471802px;}
.x31{left:657.266556px;}
.x33{left:684.401230px;}
.x21{left:688.330490px;}
.x7{left:694.929886px;}
.x23{left:698.096237px;}
.x3f{left:741.068390px;}
.xf{left:745.291346px;}
.x8{left:747.224258px;}
.x12{left:751.123356px;}
.x19{left:752.293488px;}
.x1a{left:761.068222px;}
.x3b{left:777.393036px;}
.x3c{left:807.873871px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v6{vertical-align:-9.647949pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v8{vertical-align:15.695964pt;}
.v7{vertical-align:19.247965pt;}
.v5{vertical-align:20.701776pt;}
.v2{vertical-align:23.466471pt;}
.v4{vertical-align:48.000000pt;}
.ls7{letter-spacing:-1.664000pt;}
.ls1e{letter-spacing:-0.784000pt;}
.ls8{letter-spacing:-0.522667pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.400000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.000005pt;}
.ls2{letter-spacing:0.000008pt;}
.lsb{letter-spacing:0.018348pt;}
.ls14{letter-spacing:0.052284pt;}
.ls12{letter-spacing:0.209137pt;}
.lsa{letter-spacing:0.261333pt;}
.ls5{letter-spacing:0.522667pt;}
.ls21{letter-spacing:0.574933pt;}
.ls1c{letter-spacing:0.705600pt;}
.ls1b{letter-spacing:0.784000pt;}
.lsf{letter-spacing:0.784264pt;}
.lse{letter-spacing:1.882234pt;}
.ls1d{letter-spacing:2.849055pt;}
.ls18{letter-spacing:2.892011pt;}
.ls16{letter-spacing:2.892499pt;}
.ls19{letter-spacing:2.892581pt;}
.ls1a{letter-spacing:2.892583pt;}
.ls17{letter-spacing:2.892662pt;}
.ls13{letter-spacing:4.705584pt;}
.ls0{letter-spacing:4.853333pt;}
.lsc{letter-spacing:8.757615pt;}
.ls10{letter-spacing:11.607107pt;}
.ls11{letter-spacing:11.659391pt;}
.lsd{letter-spacing:14.535026pt;}
.ls9{letter-spacing:43.120000pt;}
.ws10f{word-spacing:-13.066667pt;}
.ws63{word-spacing:-12.909867pt;}
.ws145{word-spacing:-12.857600pt;}
.wse0{word-spacing:-12.544000pt;}
.ws64{word-spacing:-12.387200pt;}
.ws4{word-spacing:-12.282667pt;}
.ws1{word-spacing:-11.096533pt;}
.ws2{word-spacing:-11.040000pt;}
.wsa4{word-spacing:-9.344000pt;}
.ws0{word-spacing:-8.993600pt;}
.ws9d{word-spacing:-8.832000pt;}
.wse2{word-spacing:-8.809899pt;}
.ws15a{word-spacing:-8.760000pt;}
.ws12d{word-spacing:-8.618667pt;}
.wsc2{word-spacing:-8.597867pt;}
.ws15b{word-spacing:-8.360000pt;}
.ws159{word-spacing:-8.280000pt;}
.ws3{word-spacing:-8.176000pt;}
.ws12b{word-spacing:-8.149333pt;}
.ws158{word-spacing:-6.132000pt;}
.wsd8{word-spacing:-5.853867pt;}
.ws15f{word-spacing:-3.440000pt;}
.ws8{word-spacing:-2.464000pt;}
.ws7{word-spacing:-2.053333pt;}
.ws96{word-spacing:-1.672533pt;}
.wsc1{word-spacing:-1.493333pt;}
.ws133{word-spacing:-1.149867pt;}
.ws10e{word-spacing:-1.097600pt;}
.ws152{word-spacing:-0.940800pt;}
.ws26{word-spacing:-0.836267pt;}
.ws113{word-spacing:-0.784000pt;}
.ws6{word-spacing:-0.693333pt;}
.wsbc{word-spacing:-0.574933pt;}
.ws54{word-spacing:-0.522667pt;}
.ws67{word-spacing:-0.470400pt;}
.ws6a{word-spacing:-0.365867pt;}
.ws16{word-spacing:-0.313600pt;}
.ws90{word-spacing:-0.261333pt;}
.ws146{word-spacing:-0.209067pt;}
.wsb3{word-spacing:-0.156800pt;}
.wsaf{word-spacing:-0.104533pt;}
.wse3{word-spacing:-0.052284pt;}
.ws28{word-spacing:-0.052267pt;}
.ws110{word-spacing:-0.042667pt;}
.ws15e{word-spacing:-0.040000pt;}
.wsfa{word-spacing:-0.039735pt;}
.ws5{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.052267pt;}
.ws10a{word-spacing:0.104533pt;}
.ws55{word-spacing:0.156800pt;}
.ws19{word-spacing:0.209067pt;}
.wsf9{word-spacing:0.256000pt;}
.ws5c{word-spacing:0.313600pt;}
.ws5d{word-spacing:0.365867pt;}
.wsbb{word-spacing:0.418133pt;}
.wsef{word-spacing:0.470400pt;}
.ws50{word-spacing:0.522667pt;}
.wsce{word-spacing:0.627200pt;}
.ws11d{word-spacing:0.679467pt;}
.ws6e{word-spacing:0.731733pt;}
.ws137{word-spacing:0.784000pt;}
.wsfe{word-spacing:0.836267pt;}
.ws43{word-spacing:0.940800pt;}
.ws72{word-spacing:1.045333pt;}
.ws13e{word-spacing:1.097600pt;}
.ws13c{word-spacing:1.149867pt;}
.ws23{word-spacing:1.202133pt;}
.wseb{word-spacing:1.254400pt;}
.ws5a{word-spacing:1.306667pt;}
.wsfd{word-spacing:1.358933pt;}
.ws153{word-spacing:1.411200pt;}
.ws85{word-spacing:1.515733pt;}
.wsf6{word-spacing:1.568000pt;}
.wsd9{word-spacing:1.620267pt;}
.wsed{word-spacing:1.672533pt;}
.ws13d{word-spacing:1.724800pt;}
.ws106{word-spacing:1.777067pt;}
.ws108{word-spacing:1.829333pt;}
.ws3e{word-spacing:1.881600pt;}
.wsb2{word-spacing:1.933867pt;}
.ws6b{word-spacing:1.986133pt;}
.ws5f{word-spacing:2.038400pt;}
.ws111{word-spacing:2.090667pt;}
.ws35{word-spacing:2.142933pt;}
.ws116{word-spacing:2.195200pt;}
.wsf4{word-spacing:2.247467pt;}
.wsc9{word-spacing:2.299733pt;}
.ws3a{word-spacing:2.352000pt;}
.ws30{word-spacing:2.404267pt;}
.wsa9{word-spacing:2.456533pt;}
.wsc0{word-spacing:2.508800pt;}
.wsfb{word-spacing:2.561067pt;}
.ws4e{word-spacing:2.613333pt;}
.ws8d{word-spacing:2.665600pt;}
.ws141{word-spacing:2.717867pt;}
.wse6{word-spacing:2.770133pt;}
.ws87{word-spacing:2.822400pt;}
.ws8a{word-spacing:2.926933pt;}
.ws117{word-spacing:2.979200pt;}
.ws91{word-spacing:3.031467pt;}
.ws1b{word-spacing:3.083733pt;}
.ws34{word-spacing:3.136000pt;}
.ws138{word-spacing:3.168000pt;}
.ws73{word-spacing:3.188267pt;}
.ws69{word-spacing:3.240533pt;}
.ws135{word-spacing:3.292800pt;}
.wsb4{word-spacing:3.345067pt;}
.ws1a{word-spacing:3.397333pt;}
.wsc3{word-spacing:3.449600pt;}
.wscf{word-spacing:3.501867pt;}
.wsdd{word-spacing:3.554133pt;}
.wsfc{word-spacing:3.606400pt;}
.ws136{word-spacing:3.658667pt;}
.wsf3{word-spacing:3.710933pt;}
.ws8b{word-spacing:3.763200pt;}
.ws130{word-spacing:3.867733pt;}
.ws9{word-spacing:3.920000pt;}
.ws49{word-spacing:3.972267pt;}
.ws4f{word-spacing:4.024533pt;}
.ws80{word-spacing:4.076800pt;}
.ws62{word-spacing:4.129067pt;}
.wsd7{word-spacing:4.181333pt;}
.ws7f{word-spacing:4.233600pt;}
.wsd3{word-spacing:4.285867pt;}
.ws27{word-spacing:4.338133pt;}
.ws88{word-spacing:4.390400pt;}
.ws70{word-spacing:4.442667pt;}
.ws13{word-spacing:4.494928pt;}
.ws3f{word-spacing:4.494933pt;}
.ws8e{word-spacing:4.547200pt;}
.ws78{word-spacing:4.599467pt;}
.ws8f{word-spacing:4.651733pt;}
.wsc6{word-spacing:4.704000pt;}
.ws105{word-spacing:4.756267pt;}
.wsc{word-spacing:4.808533pt;}
.ws51{word-spacing:4.913067pt;}
.ws5e{word-spacing:4.965333pt;}
.wsa{word-spacing:5.017600pt;}
.wsb0{word-spacing:5.069867pt;}
.ws42{word-spacing:5.122133pt;}
.ws140{word-spacing:5.174400pt;}
.ws12f{word-spacing:5.226667pt;}
.wsab{word-spacing:5.278933pt;}
.wsac{word-spacing:5.331200pt;}
.wsf7{word-spacing:5.383467pt;}
.ws52{word-spacing:5.435733pt;}
.ws66{word-spacing:5.488000pt;}
.ws39{word-spacing:5.540267pt;}
.ws1e{word-spacing:5.592533pt;}
.wsd6{word-spacing:5.644800pt;}
.ws22{word-spacing:5.697067pt;}
.ws101{word-spacing:5.749333pt;}
.ws17{word-spacing:5.801600pt;}
.ws10c{word-spacing:5.853867pt;}
.wsb9{word-spacing:5.906133pt;}
.ws65{word-spacing:5.958400pt;}
.ws21{word-spacing:6.010667pt;}
.ws44{word-spacing:6.062933pt;}
.ws15{word-spacing:6.115200pt;}
.ws57{word-spacing:6.167467pt;}
.ws12{word-spacing:6.219733pt;}
.wsd2{word-spacing:6.272000pt;}
.ws60{word-spacing:6.376533pt;}
.wsba{word-spacing:6.428800pt;}
.ws10{word-spacing:6.481067pt;}
.wsec{word-spacing:6.533333pt;}
.ws156{word-spacing:6.585600pt;}
.ws82{word-spacing:6.637867pt;}
.ws89{word-spacing:6.690133pt;}
.wsd1{word-spacing:6.742400pt;}
.ws131{word-spacing:6.899200pt;}
.ws32{word-spacing:6.951467pt;}
.ws53{word-spacing:7.003733pt;}
.wsdf{word-spacing:7.056000pt;}
.ws1f{word-spacing:7.108267pt;}
.ws45{word-spacing:7.160533pt;}
.wscb{word-spacing:7.265067pt;}
.wsf5{word-spacing:7.317333pt;}
.ws4d{word-spacing:7.369600pt;}
.ws6c{word-spacing:7.421867pt;}
.wsf0{word-spacing:7.474133pt;}
.ws81{word-spacing:7.526400pt;}
.ws71{word-spacing:7.578667pt;}
.ws6d{word-spacing:7.630933pt;}
.ws4a{word-spacing:7.683200pt;}
.ws3b{word-spacing:7.735467pt;}
.wsf1{word-spacing:7.787733pt;}
.wsb8{word-spacing:7.840000pt;}
.ws84{word-spacing:7.892267pt;}
.ws14{word-spacing:7.944533pt;}
.ws3d{word-spacing:7.996800pt;}
.wsad{word-spacing:8.049067pt;}
.wsf2{word-spacing:8.101333pt;}
.wsb6{word-spacing:8.153600pt;}
.ws31{word-spacing:8.258133pt;}
.wsde{word-spacing:8.310400pt;}
.ws13a{word-spacing:8.362667pt;}
.wsc4{word-spacing:8.414933pt;}
.wsc5{word-spacing:8.467200pt;}
.wsf{word-spacing:8.519467pt;}
.ws79{word-spacing:8.571733pt;}
.wse1{word-spacing:8.668732pt;}
.ws94{word-spacing:8.676267pt;}
.wsae{word-spacing:8.728533pt;}
.ws37{word-spacing:8.780800pt;}
.ws58{word-spacing:8.833067pt;}
.wsd0{word-spacing:8.885333pt;}
.ws107{word-spacing:8.937600pt;}
.ws14d{word-spacing:8.989867pt;}
.ws109{word-spacing:9.094400pt;}
.wse{word-spacing:9.146667pt;}
.ws46{word-spacing:9.198933pt;}
.ws115{word-spacing:9.251200pt;}
.ws8c{word-spacing:9.303467pt;}
.wsd4{word-spacing:9.408000pt;}
.wse7{word-spacing:9.512533pt;}
.ws4b{word-spacing:9.564800pt;}
.ws151{word-spacing:9.617067pt;}
.wse8{word-spacing:9.721600pt;}
.wsbe{word-spacing:9.773867pt;}
.ws6f{word-spacing:9.878400pt;}
.ws2e{word-spacing:9.930667pt;}
.ws38{word-spacing:9.982933pt;}
.ws4c{word-spacing:10.035200pt;}
.ws7c{word-spacing:10.087467pt;}
.ws74{word-spacing:10.139733pt;}
.ws11c{word-spacing:10.192000pt;}
.ws7b{word-spacing:10.296533pt;}
.ws11b{word-spacing:10.348800pt;}
.ws24{word-spacing:10.401067pt;}
.ws11{word-spacing:10.453333pt;}
.ws13b{word-spacing:10.610133pt;}
.ws14f{word-spacing:10.662400pt;}
.ws7a{word-spacing:10.766933pt;}
.ws14b{word-spacing:10.819200pt;}
.ws10d{word-spacing:10.871467pt;}
.wsc7{word-spacing:10.923733pt;}
.ws61{word-spacing:10.976000pt;}
.ws132{word-spacing:11.028267pt;}
.ws86{word-spacing:11.080533pt;}
.wsbd{word-spacing:11.132800pt;}
.ws18{word-spacing:11.185067pt;}
.ws75{word-spacing:11.237333pt;}
.ws33{word-spacing:11.289600pt;}
.ws36{word-spacing:11.341867pt;}
.ws13f{word-spacing:11.394133pt;}
.ws15c{word-spacing:11.446400pt;}
.ws93{word-spacing:11.498667pt;}
.ws134{word-spacing:11.550933pt;}
.ws15d{word-spacing:11.655467pt;}
.wsd{word-spacing:11.707733pt;}
.ws2f{word-spacing:11.760000pt;}
.ws92{word-spacing:11.812267pt;}
.wsea{word-spacing:11.864533pt;}
.wscc{word-spacing:11.916800pt;}
.ws114{word-spacing:12.021333pt;}
.ws14c{word-spacing:12.178133pt;}
.ws102{word-spacing:12.230400pt;}
.wsaa{word-spacing:12.282667pt;}
.ws5b{word-spacing:12.334933pt;}
.wsdc{word-spacing:12.387200pt;}
.ws40{word-spacing:12.439467pt;}
.ws154{word-spacing:12.491733pt;}
.ws2b{word-spacing:12.544000pt;}
.ws20{word-spacing:12.596267pt;}
.ws147{word-spacing:12.648533pt;}
.wsf8{word-spacing:12.909867pt;}
.ws148{word-spacing:12.962133pt;}
.ws2c{word-spacing:13.066667pt;}
.ws120{word-spacing:13.118933pt;}
.ws11e{word-spacing:13.171200pt;}
.wsff{word-spacing:13.275733pt;}
.ws2a{word-spacing:13.328000pt;}
.wsd5{word-spacing:13.432533pt;}
.wsca{word-spacing:13.484800pt;}
.ws2d{word-spacing:13.693867pt;}
.ws11f{word-spacing:13.746133pt;}
.ws68{word-spacing:13.798400pt;}
.ws103{word-spacing:13.850667pt;}
.ws29{word-spacing:13.955200pt;}
.ws3c{word-spacing:14.007467pt;}
.wsb1{word-spacing:14.059733pt;}
.ws56{word-spacing:14.112000pt;}
.wse5{word-spacing:14.164267pt;}
.wsb5{word-spacing:14.216533pt;}
.ws83{word-spacing:14.268800pt;}
.ws155{word-spacing:14.425600pt;}
.ws10b{word-spacing:14.582400pt;}
.ws1c{word-spacing:14.686933pt;}
.ws76{word-spacing:14.739200pt;}
.ws25{word-spacing:14.843733pt;}
.ws118{word-spacing:15.052800pt;}
.ws48{word-spacing:15.157333pt;}
.wsdb{word-spacing:15.261867pt;}
.wsda{word-spacing:15.366400pt;}
.ws7d{word-spacing:15.418667pt;}
.ws47{word-spacing:15.575467pt;}
.ws14e{word-spacing:15.627733pt;}
.ws142{word-spacing:15.732267pt;}
.ws77{word-spacing:15.784533pt;}
.ws95{word-spacing:16.150400pt;}
.wsee{word-spacing:16.568533pt;}
.ws112{word-spacing:16.777600pt;}
.wsb7{word-spacing:16.882133pt;}
.ws144{word-spacing:17.248000pt;}
.ws59{word-spacing:17.613867pt;}
.ws143{word-spacing:17.979733pt;}
.ws104{word-spacing:18.241067pt;}
.ws1d{word-spacing:18.763733pt;}
.ws97{word-spacing:18.920533pt;}
.wse4{word-spacing:19.025067pt;}
.wscd{word-spacing:19.286400pt;}
.ws139{word-spacing:19.338667pt;}
.ws149{word-spacing:19.390933pt;}
.wsc8{word-spacing:19.547733pt;}
.ws41{word-spacing:19.704533pt;}
.ws122{word-spacing:19.965867pt;}
.wsb{word-spacing:20.174933pt;}
.wse9{word-spacing:20.331733pt;}
.ws14a{word-spacing:20.384000pt;}
.ws157{word-spacing:22.004267pt;}
.ws119{word-spacing:22.370133pt;}
.ws100{word-spacing:22.683733pt;}
.ws121{word-spacing:23.572267pt;}
.wsbf{word-spacing:24.408533pt;}
.wsa3{word-spacing:27.733333pt;}
.ws150{word-spacing:32.144000pt;}
.ws11a{word-spacing:32.562133pt;}
.ws98{word-spacing:41.600000pt;}
.wsa1{word-spacing:66.730667pt;}
.wsa5{word-spacing:81.237327pt;}
.ws9e{word-spacing:92.927994pt;}
.wsa2{word-spacing:93.824000pt;}
.ws99{word-spacing:94.208000pt;}
.wsa8{word-spacing:100.224000pt;}
.wsa6{word-spacing:114.645333pt;}
.ws9b{word-spacing:129.877333pt;}
.wsa7{word-spacing:130.901327pt;}
.ws12c{word-spacing:140.885333pt;}
.ws9f{word-spacing:146.218667pt;}
.ws9c{word-spacing:153.343992pt;}
.ws123{word-spacing:159.530667pt;}
.wsa0{word-spacing:169.344000pt;}
.ws126{word-spacing:179.840000pt;}
.ws9a{word-spacing:182.954667pt;}
.ws124{word-spacing:191.701333pt;}
.ws12a{word-spacing:200.661327pt;}
.ws12e{word-spacing:200.661333pt;}
.ws128{word-spacing:238.805333pt;}
.ws129{word-spacing:244.522667pt;}
.ws127{word-spacing:247.296000pt;}
.ws125{word-spacing:251.093333pt;}
._34{margin-left:-33.921067pt;}
._6{margin-left:-9.721600pt;}
._7{margin-left:-4.958953pt;}
._15{margin-left:-3.972267pt;}
._2{margin-left:-3.050675pt;}
._3{margin-left:-1.893314pt;}
._0{margin-left:-0.977600pt;}
._1{width:1.348800pt;}
._4{width:2.516785pt;}
._36{width:3.728429pt;}
._17{width:5.449597pt;}
._a{width:6.381440pt;}
._8{width:7.693653pt;}
._35{width:8.606207pt;}
._b{width:10.118507pt;}
._37{width:11.059179pt;}
._9{width:12.303980pt;}
._10{width:13.328000pt;}
._5{width:15.004281pt;}
._16{width:16.990420pt;}
._4a{width:20.452267pt;}
._4b{width:23.360000pt;}
._14{width:25.397852pt;}
._f{width:26.708267pt;}
._c{width:29.692693pt;}
._13{width:32.975360pt;}
._11{width:34.234667pt;}
._e{width:35.593600pt;}
._d{width:36.534400pt;}
._12{width:37.589867pt;}
._49{width:39.972267pt;}
._19{width:42.383992pt;}
._1e{width:50.432000pt;}
._2d{width:52.821333pt;}
._2f{width:56.251200pt;}
._2b{width:83.035714pt;}
._18{width:85.674660pt;}
._21{width:103.311447pt;}
._1a{width:106.496000pt;}
._26{width:110.378667pt;}
._24{width:117.589327pt;}
._20{width:122.383974pt;}
._30{width:123.852282pt;}
._1c{width:124.748281pt;}
._29{width:131.157325pt;}
._33{width:135.966927pt;}
._25{width:137.018647pt;}
._27{width:138.666667pt;}
._28{width:140.245327pt;}
._1b{width:141.312000pt;}
._1f{width:144.725333pt;}
._2a{width:146.389333pt;}
._23{width:151.978655pt;}
._2e{width:164.197861pt;}
._32{width:187.519994pt;}
._42{width:195.318948pt;}
._3f{width:211.882667pt;}
._3b{width:216.661333pt;}
._40{width:227.328000pt;}
._47{width:237.482667pt;}
._38{width:248.149333pt;}
._3e{width:253.866667pt;}
._22{width:259.422378pt;}
._2c{width:262.238378pt;}
._1d{width:266.846385pt;}
._31{width:267.742384pt;}
._44{width:268.970667pt;}
._3a{width:287.146667pt;}
._3d{width:296.832000pt;}
._46{width:307.968000pt;}
._41{width:309.290667pt;}
._39{width:330.112000pt;}
._43{width:334.080000pt;}
._45{width:350.933333pt;}
._3c{width:354.901333pt;}
._48{width:375.722667pt;}
.fsa{font-size:28.000000pt;}
.fsf{font-size:32.426132pt;}
.fsc{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fse{font-size:39.735466pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:52.266667pt;}
.fsd{font-size:52.284267pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y208{bottom:0.076631pt;}
.y224{bottom:0.076651pt;}
.y20e{bottom:0.077953pt;}
.y290{bottom:0.150002pt;}
.y28a{bottom:0.150165pt;}
.y1af{bottom:0.172811pt;}
.y1be{bottom:0.174133pt;}
.y1bb{bottom:0.306152pt;}
.y1da{bottom:0.306407pt;}
.y1b4{bottom:0.307476pt;}
.y1d0{bottom:2.092285pt;}
.y1cc{bottom:2.092550pt;}
.y1ca{bottom:2.092672pt;}
.y1c8{bottom:2.092814pt;}
.y1b8{bottom:2.572652pt;}
.y1c0{bottom:3.105998pt;}
.y28f{bottom:3.773193pt;}
.y289{bottom:3.773356pt;}
.y1c6{bottom:4.492940pt;}
.y214{bottom:4.572662pt;}
.y207{bottom:4.572673pt;}
.y22c{bottom:4.573975pt;}
.y20d{bottom:4.573995pt;}
.y296{bottom:7.697184pt;}
.y1d2{bottom:15.088542pt;}
.y1ce{bottom:15.088806pt;}
.y1b{bottom:66.836665pt;}
.y1a{bottom:77.504669pt;}
.y19{bottom:88.172668pt;}
.y2d9{bottom:89.120263pt;}
.y2c0{bottom:90.494130pt;}
.y1e1{bottom:94.056805pt;}
.y77{bottom:94.774129pt;}
.y217{bottom:94.786929pt;}
.y313{bottom:94.793329pt;}
.y1a2{bottom:95.231466pt;}
.y158{bottom:95.237866pt;}
.y1c4{bottom:95.269866pt;}
.y95{bottom:96.344004pt;}
.y253{bottom:97.227328pt;}
.y248{bottom:98.526141pt;}
.y33c{bottom:98.774129pt;}
.y18{bottom:98.840667pt;}
.y37d{bottom:103.544515pt;}
.y2d8{bottom:105.113863pt;}
.y2bf{bottom:106.500530pt;}
.y13b{bottom:108.550683pt;}
.y17{bottom:109.508667pt;}
.y94{bottom:109.677338pt;}
.y1df{bottom:109.762665pt;}
.y1e0{bottom:110.050405pt;}
.yca{bottom:110.078003pt;}
.yfd{bottom:110.107463pt;}
.y76{bottom:110.774129pt;}
.y216{bottom:110.780529pt;}
.y312{bottom:110.786929pt;}
.y157{bottom:111.231466pt;}
.y1a1{bottom:111.263466pt;}
.y252{bottom:113.220928pt;}
.y25e{bottom:113.233864pt;}
.y265{bottom:113.910932pt;}
.y247{bottom:114.519741pt;}
.y37c{bottom:115.544515pt;}
.y27f{bottom:116.981065pt;}
.y273{bottom:117.025865pt;}
.y13a{bottom:120.550683pt;}
.y2d7{bottom:121.107463pt;}
.y213{bottom:122.214671pt;}
.y2be{bottom:122.494130pt;}
.y33b{bottom:122.774129pt;}
.y93{bottom:123.010671pt;}
.y1de{bottom:126.056805pt;}
.yc9{bottom:126.097203pt;}
.yfc{bottom:126.133063pt;}
.y215{bottom:126.774129pt;}
.y311{bottom:126.780529pt;}
.y75{bottom:126.806129pt;}
.y156{bottom:127.231466pt;}
.y1a0{bottom:127.257066pt;}
.y173{bottom:127.276266pt;}
.y37b{bottom:127.544515pt;}
.y251{bottom:129.214528pt;}
.y25d{bottom:129.227464pt;}
.y264{bottom:129.904532pt;}
.y246{bottom:130.513341pt;}
.y17c{bottom:130.590399pt;}
.y184{bottom:131.295996pt;}
.y139{bottom:132.550683pt;}
.y27e{bottom:132.974665pt;}
.y272{bottom:133.019465pt;}
.y2d6{bottom:137.113863pt;}
.y2bd{bottom:138.545341pt;}
.y41{bottom:139.077332pt;}
.y37a{bottom:139.544515pt;}
.y3d{bottom:141.479604pt;}
.y1dd{bottom:141.762665pt;}
.y1dc{bottom:142.050405pt;}
.yc8{bottom:142.090803pt;}
.yfb{bottom:142.126663pt;}
.y310{bottom:142.774129pt;}
.y74{bottom:142.799729pt;}
.y155{bottom:143.237866pt;}
.y19f{bottom:143.250666pt;}
.y172{bottom:143.269866pt;}
.y25c{bottom:145.221064pt;}
.y250{bottom:145.227339pt;}
.y263{bottom:145.898132pt;}
.y245{bottom:146.506941pt;}
.y17b{bottom:146.583999pt;}
.y183{bottom:147.289596pt;}
.y138{bottom:148.753350pt;}
.y27d{bottom:148.968265pt;}
.y271{bottom:149.013065pt;}
.y379{bottom:151.544515pt;}
.y2d5{bottom:153.107463pt;}
.y2bc{bottom:154.538941pt;}
.y33a{bottom:154.774129pt;}
.y40{bottom:155.077332pt;}
.y3c{bottom:157.473195pt;}
.y1d9{bottom:157.762665pt;}
.y1db{bottom:158.050405pt;}
.y1d8{bottom:158.056795pt;}
.yc7{bottom:158.084403pt;}
.yfa{bottom:158.120263pt;}
.y30f{bottom:158.780529pt;}
.y73{bottom:158.793329pt;}
.y154{bottom:159.231466pt;}
.y19e{bottom:159.244266pt;}
.y171{bottom:159.263466pt;}
.y137{bottom:160.753350pt;}
.y25b{bottom:161.214664pt;}
.y24f{bottom:161.220939pt;}
.y262{bottom:161.946397pt;}
.y244{bottom:162.500541pt;}
.y17a{bottom:162.577599pt;}
.y3f{bottom:163.077332pt;}
.y18a{bottom:163.244266pt;}
.y190{bottom:163.270399pt;}
.y182{bottom:163.283196pt;}
.y378{bottom:163.544515pt;}
.y27c{bottom:164.961865pt;}
.y270{bottom:165.006665pt;}
.y339{bottom:166.774129pt;}
.y2d4{bottom:169.133063pt;}
.y2bb{bottom:170.532541pt;}
.y136{bottom:172.753350pt;}
.y3b{bottom:173.466797pt;}
.y1d7{bottom:174.050395pt;}
.yc6{bottom:174.078003pt;}
.yf9{bottom:174.113863pt;}
.y30e{bottom:174.774129pt;}
.y72{bottom:174.786929pt;}
.y153{bottom:175.237866pt;}
.y170{bottom:175.257066pt;}
.y377{bottom:175.544515pt;}
.y25a{bottom:177.208264pt;}
.y24e{bottom:177.214539pt;}
.y261{bottom:177.939997pt;}
.y243{bottom:178.494141pt;}
.y338{bottom:178.774129pt;}
.y189{bottom:179.237866pt;}
.y18f{bottom:179.263999pt;}
.y181{bottom:179.276796pt;}
.y27b{bottom:180.955465pt;}
.y26f{bottom:181.000265pt;}
.y2d3{bottom:185.126663pt;}
.y2ba{bottom:186.526141pt;}
.y376{bottom:187.544515pt;}
.y135{bottom:188.892016pt;}
.y3a{bottom:189.460409pt;}
.y1d6{bottom:190.056795pt;}
.yc5{bottom:190.103461pt;}
.yf8{bottom:190.107463pt;}
.y30d{bottom:190.774129pt;}
.y71{bottom:190.780529pt;}
.y1c3{bottom:191.087992pt;}
.y152{bottom:191.231466pt;}
.y1c2{bottom:191.237866pt;}
.y16f{bottom:191.250666pt;}
.y259{bottom:193.201864pt;}
.y24d{bottom:193.220939pt;}
.y260{bottom:193.933597pt;}
.y242{bottom:194.526141pt;}
.y188{bottom:195.231466pt;}
.y179{bottom:195.244266pt;}
.y18e{bottom:195.257599pt;}
.y180{bottom:195.270396pt;}
.y26e{bottom:196.993865pt;}
.y27a{bottom:197.059196pt;}
.y375{bottom:199.544515pt;}
.y134{bottom:200.892016pt;}
.y2d2{bottom:201.120263pt;}
.y2b9{bottom:202.519741pt;}
.y337{bottom:202.774129pt;}
.y1bf{bottom:204.159993pt;}
.y2a{bottom:204.757731pt;}
.y39{bottom:205.454000pt;}
.y1d5{bottom:206.050395pt;}
.yc4{bottom:206.097061pt;}
.yf7{bottom:206.139463pt;}
.y70{bottom:206.774129pt;}
.y30c{bottom:206.786929pt;}
.y1c1{bottom:207.231466pt;}
.y19d{bottom:207.237866pt;}
.y16e{bottom:207.244266pt;}
.y151{bottom:207.263466pt;}
.y258{bottom:209.201864pt;}
.y24c{bottom:209.214539pt;}
.y25f{bottom:209.927197pt;}
.y241{bottom:210.519741pt;}
.y178{bottom:211.237866pt;}
.y187{bottom:211.244266pt;}
.y18d{bottom:211.251199pt;}
.y17f{bottom:211.263996pt;}
.y374{bottom:211.544515pt;}
.y133{bottom:212.892016pt;}
.y26d{bottom:212.987465pt;}
.y279{bottom:213.052796pt;}
.y336{bottom:214.774129pt;}
.y2d1{bottom:217.113863pt;}
.y211{bottom:218.213338pt;}
.y2b8{bottom:218.513341pt;}
.y29{bottom:220.776937pt;}
.y38{bottom:221.460409pt;}
.yc3{bottom:222.090661pt;}
.yf6{bottom:222.133063pt;}
.y212{bottom:222.774129pt;}
.y6f{bottom:222.780529pt;}
.y2f5{bottom:222.844529pt;}
.y1bd{bottom:223.086670pt;}
.y19c{bottom:223.231466pt;}
.y16d{bottom:223.237866pt;}
.y150{bottom:223.257066pt;}
.y373{bottom:223.544515pt;}
.y24b{bottom:225.259741pt;}
.y240{bottom:226.513341pt;}
.y335{bottom:226.774129pt;}
.y177{bottom:227.231466pt;}
.y186{bottom:227.237866pt;}
.y18c{bottom:227.244799pt;}
.y17e{bottom:227.257596pt;}
.y26c{bottom:228.981065pt;}
.y132{bottom:229.030683pt;}
.y278{bottom:229.046396pt;}
.y2d0{bottom:233.107463pt;}
.y2b7{bottom:234.506941pt;}
.y372{bottom:235.544515pt;}
.y28{bottom:236.770528pt;}
.y37{bottom:237.454000pt;}
.yc2{bottom:238.084261pt;}
.yf5{bottom:238.126663pt;}
.y6e{bottom:238.774129pt;}
.y2f4{bottom:238.838129pt;}
.y1bc{bottom:239.237866pt;}
.y14f{bottom:239.250666pt;}
.y16c{bottom:239.282686pt;}
.y131{bottom:241.030683pt;}
.y24a{bottom:241.253341pt;}
.y23f{bottom:242.506941pt;}
.y176{bottom:243.231466pt;}
.y18b{bottom:243.238399pt;}
.y17d{bottom:243.251196pt;}
.y26b{bottom:244.974665pt;}
.y277{bottom:245.039996pt;}
.y371{bottom:247.544515pt;}
.y2cf{bottom:249.145863pt;}
.y2b6{bottom:250.500541pt;}
.y334{bottom:250.774129pt;}
.y1b7{bottom:252.688009pt;}
.y27{bottom:252.764140pt;}
.y130{bottom:253.030683pt;}
.y36{bottom:253.460409pt;}
.yc1{bottom:254.077861pt;}
.yf4{bottom:254.120263pt;}
.y30b{bottom:254.774129pt;}
.y210{bottom:254.780529pt;}
.y6d{bottom:254.818929pt;}
.y2f3{bottom:254.831729pt;}
.y1ba{bottom:254.943990pt;}
.y1b6{bottom:255.231466pt;}
.y14e{bottom:255.244266pt;}
.y1b9{bottom:255.260661pt;}
.y16b{bottom:255.276286pt;}
.y249{bottom:257.246941pt;}
.y23e{bottom:258.500541pt;}
.y370{bottom:259.544515pt;}
.y21d{bottom:260.810140pt;}
.y26a{bottom:260.968265pt;}
.y276{bottom:261.033596pt;}
.y333{bottom:262.774129pt;}
.y2ce{bottom:265.139463pt;}
.y20c{bottom:266.213338pt;}
.y2b5{bottom:266.494141pt;}
.y26{bottom:268.757731pt;}
.y12f{bottom:269.169350pt;}
.y35{bottom:269.454000pt;}
.yc0{bottom:270.084261pt;}
.yf3{bottom:270.113863pt;}
.y267{bottom:270.658000pt;}
.y20f{bottom:270.774129pt;}
.y20b{bottom:270.780529pt;}
.y6c{bottom:270.812529pt;}
.y2f2{bottom:270.825329pt;}
.y1b3{bottom:270.942667pt;}
.y1b5{bottom:271.231466pt;}
.y14d{bottom:271.237866pt;}
.y1b2{bottom:271.243999pt;}
.y16a{bottom:271.269886pt;}
.y36f{bottom:271.544515pt;}
.y21c{bottom:274.143473pt;}
.y23d{bottom:274.494141pt;}
.y269{bottom:276.961865pt;}
.y275{bottom:277.027196pt;}
.y2cd{bottom:281.133063pt;}
.y12e{bottom:281.169350pt;}
.y2b4{bottom:282.532541pt;}
.y36e{bottom:283.544515pt;}
.y266{bottom:283.991333pt;}
.y25{bottom:284.789856pt;}
.y34{bottom:285.509725pt;}
.ybf{bottom:286.077861pt;}
.yf2{bottom:286.107463pt;}
.y20a{bottom:286.774129pt;}
.y6b{bottom:286.806129pt;}
.y2f1{bottom:286.818929pt;}
.y14c{bottom:287.231466pt;}
.y169{bottom:287.263486pt;}
.y1c5{bottom:290.165324pt;}
.y23c{bottom:290.519741pt;}
.y268{bottom:292.955465pt;}
.y274{bottom:293.020796pt;}
.y185{bottom:294.551331pt;}
.y1d1{bottom:294.573730pt;}
.y1cd{bottom:294.573873pt;}
.y1cb{bottom:294.573995pt;}
.y1c9{bottom:294.574259pt;}
.y1c7{bottom:294.574402pt;}
.y1cf{bottom:294.657735pt;}
.y36d{bottom:295.544515pt;}
.y2cc{bottom:297.126663pt;}
.y12d{bottom:297.308016pt;}
.y206{bottom:298.214661pt;}
.y2b3{bottom:298.526141pt;}
.y332{bottom:298.774129pt;}
.y24{bottom:300.783447pt;}
.y191{bottom:301.271342pt;}
.y33{bottom:301.503316pt;}
.ybe{bottom:302.077861pt;}
.yf1{bottom:302.133063pt;}
.y209{bottom:302.774129pt;}
.y205{bottom:302.786929pt;}
.y6a{bottom:302.799729pt;}
.y2f0{bottom:302.812529pt;}
.y19b{bottom:303.250686pt;}
.y168{bottom:303.257086pt;}
.y14b{bottom:303.276286pt;}
.y23b{bottom:306.513341pt;}
.y36c{bottom:307.544515pt;}
.y257{bottom:308.418396pt;}
.y12c{bottom:309.308016pt;}
.y331{bottom:310.774129pt;}
.y2cb{bottom:313.120263pt;}
.y2b2{bottom:314.519741pt;}
.y23{bottom:316.777059pt;}
.y32{bottom:317.496928pt;}
.yf0{bottom:318.126663pt;}
.ybd{bottom:318.167481pt;}
.y204{bottom:318.780529pt;}
.y30a{bottom:318.786929pt;}
.y69{bottom:318.793329pt;}
.y2ef{bottom:318.806129pt;}
.y1b1{bottom:319.237866pt;}
.y19a{bottom:319.244286pt;}
.y167{bottom:319.250686pt;}
.y14a{bottom:319.269886pt;}
.y36b{bottom:319.544515pt;}
.y12b{bottom:321.308016pt;}
.y256{bottom:321.751729pt;}
.y23a{bottom:322.506941pt;}
.y330{bottom:322.774129pt;}
.y2ca{bottom:329.113863pt;}
.y2b1{bottom:330.513341pt;}
.y36a{bottom:331.544515pt;}
.y22{bottom:332.770650pt;}
.y31{bottom:333.490519pt;}
.yef{bottom:334.120263pt;}
.ybc{bottom:334.161081pt;}
.y203{bottom:334.774129pt;}
.y309{bottom:334.780529pt;}
.y68{bottom:334.786929pt;}
.y2ee{bottom:334.799729pt;}
.y1ae{bottom:335.087992pt;}
.y1b0{bottom:335.231466pt;}
.y199{bottom:335.237886pt;}
.y166{bottom:335.244286pt;}
.y149{bottom:335.263486pt;}
.y1ad{bottom:335.269886pt;}
.y12a{bottom:337.446683pt;}
.y239{bottom:338.500541pt;}
.y29d{bottom:339.768677pt;}
.y29f{bottom:340.888672pt;}
.y369{bottom:343.544515pt;}
.y2c9{bottom:345.107463pt;}
.y2b0{bottom:346.506941pt;}
.y32f{bottom:346.774129pt;}
.y21{bottom:348.764242pt;}
.y129{bottom:349.446683pt;}
.y30{bottom:349.484131pt;}
.yee{bottom:350.113863pt;}
.ybb{bottom:350.154681pt;}
.y308{bottom:350.774129pt;}
.y67{bottom:350.780529pt;}
.y202{bottom:350.786929pt;}
.y2ed{bottom:350.793329pt;}
.y198{bottom:351.231486pt;}
.y165{bottom:351.237886pt;}
.y148{bottom:351.257086pt;}
.y1ac{bottom:351.263486pt;}
.y29c{bottom:353.102010pt;}
.y29e{bottom:354.222005pt;}
.y238{bottom:354.494141pt;}
.y368{bottom:355.544515pt;}
.y32e{bottom:358.774129pt;}
.y2c8{bottom:361.107463pt;}
.y128{bottom:361.446683pt;}
.y2af{bottom:362.500541pt;}
.y20{bottom:364.757853pt;}
.y2f{bottom:365.477702pt;}
.yed{bottom:366.107463pt;}
.yba{bottom:366.148281pt;}
.y66{bottom:366.774129pt;}
.y201{bottom:366.780529pt;}
.y2ec{bottom:366.786929pt;}
.y164{bottom:367.231486pt;}
.y147{bottom:367.250686pt;}
.y1ab{bottom:367.257086pt;}
.y197{bottom:367.276286pt;}
.y367{bottom:367.544515pt;}
.y237{bottom:370.513341pt;}
.y32d{bottom:370.774129pt;}
.y2c7{bottom:377.113863pt;}
.y127{bottom:377.585350pt;}
.y2ae{bottom:378.494141pt;}
.y366{bottom:379.544515pt;}
.y1f{bottom:380.770671pt;}
.y2e{bottom:381.471313pt;}
.yec{bottom:382.107463pt;}
.yb9{bottom:382.141881pt;}
.y65{bottom:382.774129pt;}
.y2eb{bottom:382.780529pt;}
.y146{bottom:383.244286pt;}
.y1aa{bottom:383.250686pt;}
.y196{bottom:383.269886pt;}
.y163{bottom:383.305590pt;}
.y236{bottom:386.506941pt;}
.y126{bottom:389.585350pt;}
.y365{bottom:391.544515pt;}
.y2c6{bottom:393.107463pt;}
.y2ad{bottom:394.506941pt;}
.y32c{bottom:394.774129pt;}
.y1e{bottom:396.764242pt;}
.y2d{bottom:397.464925pt;}
.yeb{bottom:398.113863pt;}
.yb8{bottom:398.135481pt;}
.y2ea{bottom:398.774129pt;}
.y200{bottom:398.780529pt;}
.y145{bottom:399.237886pt;}
.y1a9{bottom:399.244286pt;}
.y195{bottom:399.263486pt;}
.y162{bottom:399.299190pt;}
.y125{bottom:401.585350pt;}
.y235{bottom:402.500541pt;}
.y364{bottom:403.544515pt;}
.y32b{bottom:406.774129pt;}
.y2c5{bottom:409.137858pt;}
.y2ac{bottom:410.500541pt;}
.y1d{bottom:412.757853pt;}
.y2c{bottom:413.458537pt;}
.yea{bottom:414.107463pt;}
.yb7{bottom:414.129081pt;}
.y1ff{bottom:414.774129pt;}
.y2e9{bottom:414.780529pt;}
.y307{bottom:414.799729pt;}
.y64{bottom:414.812529pt;}
.y144{bottom:415.231486pt;}
.y1a8{bottom:415.237886pt;}
.y194{bottom:415.257086pt;}
.y161{bottom:415.292790pt;}
.y363{bottom:415.544515pt;}
.y124{bottom:417.724016pt;}
.y234{bottom:418.494141pt;}
.y32a{bottom:418.774129pt;}
.y2c4{bottom:425.131458pt;}
.y2ab{bottom:426.494141pt;}
.y362{bottom:427.544515pt;}
.y1c{bottom:428.757853pt;}
.y2b{bottom:429.452108pt;}
.y123{bottom:429.724016pt;}
.ye9{bottom:430.107463pt;}
.yb6{bottom:430.122681pt;}
.y2e8{bottom:430.774129pt;}
.y1fe{bottom:430.780529pt;}
.y306{bottom:430.793329pt;}
.y63{bottom:430.806129pt;}
.y143{bottom:431.231486pt;}
.y193{bottom:431.250686pt;}
.y160{bottom:431.286390pt;}
.y233{bottom:434.532541pt;}
.y361{bottom:439.544515pt;}
.y2c3{bottom:441.125058pt;}
.y122{bottom:441.724016pt;}
.y2aa{bottom:442.545341pt;}
.y329{bottom:442.774129pt;}
.ye8{bottom:446.113863pt;}
.yb5{bottom:446.116281pt;}
.y1fd{bottom:446.774129pt;}
.y2e7{bottom:446.786929pt;}
.y62{bottom:446.799729pt;}
.y1a7{bottom:447.231486pt;}
.y142{bottom:447.244286pt;}
.y15f{bottom:447.279990pt;}
.y232{bottom:450.526141pt;}
.y360{bottom:451.544515pt;}
.y328{bottom:454.774129pt;}
.y2c2{bottom:457.118658pt;}
.y121{bottom:457.862683pt;}
.y2a9{bottom:458.538941pt;}
.ye7{bottom:462.107463pt;}
.yb4{bottom:462.109881pt;}
.y1fc{bottom:462.780529pt;}
.y61{bottom:462.793329pt;}
.y141{bottom:463.237886pt;}
.y15e{bottom:463.273590pt;}
.y35f{bottom:463.544515pt;}
.y231{bottom:466.519741pt;}
.y327{bottom:466.774129pt;}
.y120{bottom:469.862683pt;}
.y2c1{bottom:473.112258pt;}
.y2a8{bottom:474.532541pt;}
.y35e{bottom:475.544515pt;}
.y16{bottom:476.724528pt;}
.yb3{bottom:478.103481pt;}
.ye6{bottom:478.120263pt;}
.y1fb{bottom:478.774129pt;}
.y60{bottom:478.786929pt;}
.y140{bottom:479.231486pt;}
.y15d{bottom:479.267190pt;}
.y11f{bottom:481.862683pt;}
.y230{bottom:482.513341pt;}
.y35d{bottom:487.544515pt;}
.y2a7{bottom:490.526141pt;}
.y326{bottom:490.774129pt;}
.y15{bottom:492.724528pt;}
.yb2{bottom:494.097081pt;}
.ye5{bottom:494.113863pt;}
.y5f{bottom:494.780529pt;}
.y305{bottom:494.786929pt;}
.y2e6{bottom:494.793329pt;}
.y1fa{bottom:494.838129pt;}
.y192{bottom:495.231486pt;}
.y13f{bottom:495.250686pt;}
.y1a6{bottom:495.254390pt;}
.y15c{bottom:495.260790pt;}
.y22f{bottom:498.506941pt;}
.y35c{bottom:499.544515pt;}
.y325{bottom:502.774129pt;}
.y11e{bottom:505.766683pt;}
.y2a6{bottom:506.519741pt;}
.yb1{bottom:510.090681pt;}
.ye4{bottom:510.107463pt;}
.y5e{bottom:510.774129pt;}
.y304{bottom:510.780529pt;}
.y2e5{bottom:510.786929pt;}
.y92{bottom:510.793329pt;}
.y1f9{bottom:510.831729pt;}
.y13e{bottom:511.244286pt;}
.y1a5{bottom:511.247990pt;}
.y15b{bottom:511.254390pt;}
.y35b{bottom:511.544515pt;}
.y14{bottom:512.724528pt;}
.y22e{bottom:514.500541pt;}
.y324{bottom:514.774129pt;}
.y11d{bottom:517.766683pt;}
.y2a5{bottom:522.513341pt;}
.y35a{bottom:523.544515pt;}
.y22b{bottom:525.933350pt;}
.yb0{bottom:526.084281pt;}
.ye3{bottom:526.126663pt;}
.y303{bottom:526.774129pt;}
.y2e4{bottom:526.780529pt;}
.y91{bottom:526.786929pt;}
.y5d{bottom:526.793329pt;}
.y1f8{bottom:526.825329pt;}
.y13d{bottom:527.237886pt;}
.y1a4{bottom:527.241590pt;}
.y15a{bottom:527.247990pt;}
.y2e0{bottom:528.044678pt;}
.y13{bottom:528.724528pt;}
.y11c{bottom:529.766683pt;}
.y22d{bottom:530.494141pt;}
.y22a{bottom:530.500541pt;}
.y21b{bottom:530.711344pt;}
.y359{bottom:535.544515pt;}
.y2a4{bottom:538.506941pt;}
.y323{bottom:538.774129pt;}
.y2df{bottom:541.378011pt;}
.yaf{bottom:542.077881pt;}
.ye2{bottom:542.120263pt;}
.y2e3{bottom:542.774129pt;}
.y90{bottom:542.780529pt;}
.y5c{bottom:542.786929pt;}
.y1f7{bottom:542.818929pt;}
.y302{bottom:542.844570pt;}
.y13c{bottom:543.231486pt;}
.y1a3{bottom:543.235190pt;}
.y159{bottom:543.241590pt;}
.y21a{bottom:544.044678pt;}
.y12{bottom:544.724528pt;}
.y229{bottom:546.494141pt;}
.y358{bottom:547.544515pt;}
.y11b{bottom:551.378011pt;}
.y2a3{bottom:554.500541pt;}
.y2de{bottom:554.711344pt;}
.y219{bottom:557.378011pt;}
.yae{bottom:558.103481pt;}
.ye1{bottom:558.113863pt;}
.y8f{bottom:558.774129pt;}
.y5b{bottom:558.780529pt;}
.y1f6{bottom:558.812529pt;}
.y301{bottom:558.838170pt;}
.y357{bottom:559.544515pt;}
.y11{bottom:560.724528pt;}
.y228{bottom:562.513341pt;}
.y322{bottom:562.774129pt;}
.y39c{bottom:568.877848pt;}
.y2a2{bottom:570.494141pt;}
.y218{bottom:570.711344pt;}
.y356{bottom:571.544515pt;}
.yad{bottom:574.097081pt;}
.ye0{bottom:574.107463pt;}
.y5a{bottom:574.774129pt;}
.y8e{bottom:574.793329pt;}
.y1f5{bottom:574.806129pt;}
.y300{bottom:574.831770pt;}
.y10{bottom:576.724528pt;}
.y227{bottom:578.506941pt;}
.y39b{bottom:580.877848pt;}
.y355{bottom:583.544515pt;}
.y2a1{bottom:586.500541pt;}
.yac{bottom:590.090681pt;}
.ydf{bottom:590.139503pt;}
.y11a{bottom:590.774129pt;}
.y8d{bottom:590.786929pt;}
.y1f4{bottom:590.799729pt;}
.y59{bottom:590.812570pt;}
.y10c{bottom:590.818970pt;}
.y2ff{bottom:590.825370pt;}
.yf{bottom:592.724528pt;}
.y39a{bottom:592.877848pt;}
.y226{bottom:594.500541pt;}
.y354{bottom:595.544515pt;}
.y175{bottom:598.338013pt;}
.y321{bottom:598.774129pt;}
.y1d4{bottom:600.258016pt;}
.y2a0{bottom:602.494141pt;}
.y399{bottom:604.877848pt;}
.y223{bottom:605.934652pt;}
.yab{bottom:606.084281pt;}
.yde{bottom:606.133103pt;}
.y8c{bottom:606.780529pt;}
.y1f3{bottom:606.793329pt;}
.y58{bottom:606.806170pt;}
.y10b{bottom:606.812570pt;}
.y2fe{bottom:606.818970pt;}
.y353{bottom:607.544515pt;}
.ye{bottom:608.724528pt;}
.y225{bottom:610.494141pt;}
.y222{bottom:610.519741pt;}
.y174{bottom:611.671346pt;}
.y1d3{bottom:613.591349pt;}
.y320{bottom:614.774129pt;}
.y398{bottom:616.877848pt;}
.y352{bottom:619.544515pt;}
.yaa{bottom:622.077881pt;}
.y8b{bottom:622.774129pt;}
.y1f2{bottom:622.786929pt;}
.y57{bottom:622.799770pt;}
.y10a{bottom:622.806170pt;}
.y2fd{bottom:622.812570pt;}
.yd{bottom:624.724528pt;}
.y221{bottom:626.513341pt;}
.y31f{bottom:626.774129pt;}
.y397{bottom:628.877848pt;}
.y351{bottom:631.544515pt;}
.y31e{bottom:634.774170pt;}
.y29a{bottom:637.498657pt;}
.ya9{bottom:638.116362pt;}
.y1f1{bottom:638.780529pt;}
.y56{bottom:638.793370pt;}
.ydd{bottom:638.799770pt;}
.y2fc{bottom:638.806170pt;}
.y8a{bottom:638.857370pt;}
.yc{bottom:640.724528pt;}
.y396{bottom:640.877848pt;}
.y29b{bottom:641.266683pt;}
.y220{bottom:642.506941pt;}
.y350{bottom:643.544515pt;}
.y2dd{bottom:650.071370pt;}
.y395{bottom:652.877848pt;}
.ya8{bottom:654.109962pt;}
.y1f0{bottom:654.774129pt;}
.y55{bottom:654.786970pt;}
.ydc{bottom:654.793370pt;}
.y2fb{bottom:654.799770pt;}
.y89{bottom:654.850970pt;}
.y34f{bottom:655.544515pt;}
.yb{bottom:656.724528pt;}
.y299{bottom:657.477317pt;}
.y21f{bottom:658.500541pt;}
.y31d{bottom:658.774170pt;}
.y2dc{bottom:663.404704pt;}
.y394{bottom:664.877848pt;}
.y34e{bottom:667.544515pt;}
.ya7{bottom:670.103562pt;}
.y31c{bottom:670.774170pt;}
.y54{bottom:670.780570pt;}
.ydb{bottom:670.786970pt;}
.y2fa{bottom:670.793370pt;}
.y1ef{bottom:670.806170pt;}
.y88{bottom:670.844570pt;}
.ya{bottom:672.724528pt;}
.y298{bottom:673.605317pt;}
.y21e{bottom:674.494141pt;}
.y2db{bottom:676.738037pt;}
.y393{bottom:676.877848pt;}
.y34d{bottom:679.544515pt;}
.y31b{bottom:682.774170pt;}
.y294{bottom:685.965332pt;}
.ya6{bottom:686.097162pt;}
.y53{bottom:686.774170pt;}
.yda{bottom:686.780570pt;}
.y2f9{bottom:686.786970pt;}
.y1ee{bottom:686.799770pt;}
.y87{bottom:686.838170pt;}
.y392{bottom:688.877848pt;}
.y297{bottom:689.733317pt;}
.y295{bottom:689.738688pt;}
.y2da{bottom:690.071370pt;}
.y34c{bottom:691.544515pt;}
.y9{bottom:692.724528pt;}
.y31a{bottom:694.774170pt;}
.y391{bottom:700.877848pt;}
.ya5{bottom:702.090762pt;}
.yd9{bottom:702.774170pt;}
.y2f8{bottom:702.780570pt;}
.y1ed{bottom:702.793370pt;}
.y52{bottom:702.799770pt;}
.y86{bottom:702.831770pt;}
.y34b{bottom:703.544515pt;}
.y293{bottom:705.877301pt;}
.y319{bottom:706.774170pt;}
.y390{bottom:712.877848pt;}
.y34a{bottom:715.544515pt;}
.ya4{bottom:718.084362pt;}
.y2f7{bottom:718.774170pt;}
.y2e2{bottom:718.780570pt;}
.y1ec{bottom:718.786970pt;}
.y51{bottom:718.793370pt;}
.y109{bottom:718.799770pt;}
.y119{bottom:718.806170pt;}
.y85{bottom:718.825370pt;}
.yd8{bottom:718.853989pt;}
.y292{bottom:722.005301pt;}
.y38f{bottom:724.877848pt;}
.y349{bottom:727.544515pt;}
.y318{bottom:730.774170pt;}
.ya3{bottom:734.077962pt;}
.y28e{bottom:734.365316pt;}
.y2e1{bottom:734.774170pt;}
.y1eb{bottom:734.780570pt;}
.y50{bottom:734.786970pt;}
.y108{bottom:734.793370pt;}
.y118{bottom:734.799770pt;}
.y84{bottom:734.818970pt;}
.yd7{bottom:734.847589pt;}
.y255{bottom:736.738037pt;}
.y38e{bottom:736.877848pt;}
.y291{bottom:738.133301pt;}
.y348{bottom:739.544515pt;}
.y317{bottom:742.774170pt;}
.y38d{bottom:748.877848pt;}
.y8{bottom:749.820557pt;}
.y254{bottom:750.071370pt;}
.ya2{bottom:750.097162pt;}
.y1ea{bottom:750.774170pt;}
.y4f{bottom:750.780570pt;}
.y107{bottom:750.786970pt;}
.y117{bottom:750.793370pt;}
.y2f6{bottom:750.799770pt;}
.y83{bottom:750.812570pt;}
.yd6{bottom:750.841189pt;}
.y347{bottom:751.544515pt;}
.y28d{bottom:754.277366pt;}
.y316{bottom:754.774170pt;}
.y38c{bottom:760.877848pt;}
.y346{bottom:763.544515pt;}
.ya1{bottom:766.090762pt;}
.y4e{bottom:766.774170pt;}
.y106{bottom:766.780570pt;}
.y116{bottom:766.786970pt;}
.y1e9{bottom:766.793370pt;}
.y82{bottom:766.806170pt;}
.yd5{bottom:766.834789pt;}
.y7{bottom:768.491211pt;}
.y28c{bottom:770.405366pt;}
.y38b{bottom:772.877848pt;}
.y345{bottom:775.544515pt;}
.y315{bottom:778.774170pt;}
.ya0{bottom:782.084362pt;}
.y288{bottom:782.765299pt;}
.y105{bottom:782.774170pt;}
.y115{bottom:782.780570pt;}
.y1e8{bottom:782.786970pt;}
.y81{bottom:782.799770pt;}
.yd4{bottom:782.828389pt;}
.y4d{bottom:782.831770pt;}
.y38a{bottom:784.877848pt;}
.y28b{bottom:786.533366pt;}
.y344{bottom:787.544515pt;}
.y314{bottom:790.774170pt;}
.y389{bottom:796.877848pt;}
.y9f{bottom:798.077962pt;}
.y104{bottom:798.774170pt;}
.y1e7{bottom:798.780570pt;}
.y80{bottom:798.793370pt;}
.yd3{bottom:798.821989pt;}
.y4c{bottom:798.825370pt;}
.y343{bottom:799.544515pt;}
.y6{bottom:800.513346pt;}
.y287{bottom:802.662683pt;}
.y388{bottom:808.877848pt;}
.y342{bottom:811.544515pt;}
.y9e{bottom:814.103562pt;}
.y1e6{bottom:814.774170pt;}
.y114{bottom:814.780570pt;}
.y7f{bottom:814.786970pt;}
.yd2{bottom:814.815589pt;}
.y4b{bottom:814.818970pt;}
.y286{bottom:818.790683pt;}
.y387{bottom:820.877848pt;}
.y341{bottom:823.544515pt;}
.y9d{bottom:830.097162pt;}
.y113{bottom:830.774170pt;}
.y7e{bottom:830.780570pt;}
.y1e5{bottom:830.793370pt;}
.y103{bottom:830.806170pt;}
.yd1{bottom:830.809189pt;}
.y4a{bottom:830.812570pt;}
.y386{bottom:832.877848pt;}
.y285{bottom:834.929350pt;}
.y5{bottom:835.169352pt;}
.y340{bottom:835.544515pt;}
.y385{bottom:844.877848pt;}
.y9c{bottom:846.090762pt;}
.y7d{bottom:846.774170pt;}
.y112{bottom:846.786970pt;}
.y102{bottom:846.799770pt;}
.yd0{bottom:846.802789pt;}
.y49{bottom:846.806170pt;}
.y33f{bottom:847.544515pt;}
.y284{bottom:851.057350pt;}
.y384{bottom:856.877848pt;}
.y33e{bottom:859.544515pt;}
.y9b{bottom:862.084362pt;}
.y111{bottom:862.780570pt;}
.y101{bottom:862.793370pt;}
.y7c{bottom:862.793596pt;}
.ycf{bottom:862.796389pt;}
.y48{bottom:862.799770pt;}
.y283{bottom:867.196016pt;}
.y383{bottom:868.877848pt;}
.y4{bottom:869.825358pt;}
.y9a{bottom:878.077962pt;}
.y110{bottom:878.774170pt;}
.y100{bottom:878.786970pt;}
.y7b{bottom:878.787196pt;}
.yce{bottom:878.789989pt;}
.y47{bottom:878.793370pt;}
.y382{bottom:880.877848pt;}
.y282{bottom:891.100016pt;}
.y381{bottom:892.877848pt;}
.y99{bottom:894.084362pt;}
.yff{bottom:894.780570pt;}
.y7a{bottom:894.780796pt;}
.ycd{bottom:894.783589pt;}
.y46{bottom:894.786970pt;}
.y1e4{bottom:894.795205pt;}
.y10f{bottom:894.828037pt;}
.y380{bottom:904.877848pt;}
.y98{bottom:910.077962pt;}
.yfe{bottom:910.774170pt;}
.y79{bottom:910.774396pt;}
.ycc{bottom:910.777189pt;}
.y45{bottom:910.780570pt;}
.y1e3{bottom:910.788805pt;}
.y10e{bottom:910.821637pt;}
.y281{bottom:912.713848pt;}
.y37f{bottom:916.877848pt;}
.y3{bottom:918.544515pt;}
.y3e{bottom:920.666829pt;}
.y97{bottom:926.077962pt;}
.y78{bottom:926.767996pt;}
.ycb{bottom:926.770789pt;}
.y44{bottom:926.774170pt;}
.y1e2{bottom:926.782405pt;}
.y10d{bottom:926.815237pt;}
.y280{bottom:927.377848pt;}
.y33d{bottom:928.874151pt;}
.y37e{bottom:928.877848pt;}
.y2{bottom:988.708496pt;}
.y96{bottom:1001.355225pt;}
.y42{bottom:1001.355306pt;}
.y43{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.h27{height:2.091371pt;}
.h20{height:8.801333pt;}
.h18{height:8.933333pt;}
.h1f{height:9.200000pt;}
.h21{height:9.333333pt;}
.h22{height:9.466667pt;}
.h1a{height:9.600000pt;}
.h30{height:11.465333pt;}
.h2d{height:11.466667pt;}
.h1c{height:11.866666pt;}
.h28{height:13.998666pt;}
.h2a{height:14.000000pt;}
.h33{height:15.143004pt;}
.h23{height:15.600000pt;}
.h1e{height:18.979189pt;}
.h2f{height:23.022554pt;}
.he{height:24.724000pt;}
.h31{height:28.032000pt;}
.h25{height:28.132710pt;}
.h32{height:30.293333pt;}
.h2e{height:30.838967pt;}
.hb{height:32.965333pt;}
.hd{height:35.320000pt;}
.h19{height:36.598987pt;}
.h1b{height:37.017261pt;}
.h1d{height:37.278682pt;}
.h26{height:37.330966pt;}
.h24{height:37.592388pt;}
.h11{height:37.674667pt;}
.h29{height:37.804428pt;}
.h2b{height:37.804469pt;}
.h2c{height:37.804509pt;}
.h36{height:38.080000pt;}
.h34{height:38.920000pt;}
.h3{height:40.618667pt;}
.h35{height:40.724000pt;}
.h14{height:41.514667pt;}
.h2{height:41.983924pt;}
.hf{height:41.984000pt;}
.h10{height:42.197333pt;}
.h9{height:47.093333pt;}
.h13{height:47.472000pt;}
.h12{height:48.555733pt;}
.hc{height:49.653333pt;}
.ha{height:51.893333pt;}
.h8{height:54.329067pt;}
.h17{height:55.459109pt;}
.h6{height:59.728337pt;}
.h7{height:59.744288pt;}
.h4{height:68.570667pt;}
.h16{height:85.674667pt;}
.h15{height:89.514667pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w6{width:4.480000pt;}
.w8{width:5.958666pt;}
.w3{width:6.493333pt;}
.w7{width:7.080000pt;}
.w2{width:7.800000pt;}
.w5{width:8.680000pt;}
.wc{width:20.400000pt;}
.wb{width:27.092000pt;}
.wa{width:27.093333pt;}
.w4{width:137.839996pt;}
.w9{width:207.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x22{left:-0.911336pt;}
.x0{left:0.000000pt;}
.x45{left:12.481531pt;}
.x39{left:16.989677pt;}
.x2a{left:19.607340pt;}
.x1f{left:29.630900pt;}
.x2c{left:69.395467pt;}
.x1{left:75.496002pt;}
.x42{left:79.850667pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.x9{left:86.252935pt;}
.x15{left:91.466535pt;}
.x48{left:95.590535pt;}
.x2e{left:100.595459pt;}
.x16{left:102.246535pt;}
.x43{left:106.943471pt;}
.x30{left:145.283488pt;}
.x44{left:146.956665pt;}
.x46{left:152.161865pt;}
.x32{left:169.343465pt;}
.x34{left:203.015340pt;}
.x4{left:240.726664pt;}
.x35{left:264.181335pt;}
.x36{left:270.674276pt;}
.x40{left:305.969340pt;}
.x41{left:333.061727pt;}
.xc{left:343.761199pt;}
.x37{left:366.421346pt;}
.x38{left:372.914551pt;}
.x5{left:406.304810pt;}
.xa{left:414.632528pt;}
.x6{left:416.967204pt;}
.xd{left:420.923865pt;}
.x17{left:422.170792pt;}
.x47{left:426.299194pt;}
.x10{left:428.902541pt;}
.x18{left:432.950792pt;}
.xb{left:435.015335pt;}
.x24{left:440.156413pt;}
.x29{left:441.160685pt;}
.x1d{left:444.801351pt;}
.x2b{left:458.620687pt;}
.x1e{left:460.608276pt;}
.x1b{left:476.249349pt;}
.x25{left:480.349325pt;}
.x1c{left:482.742513pt;}
.x26{left:487.429321pt;}
.x13{left:499.259851pt;}
.x14{left:507.259851pt;}
.x2d{left:508.408651pt;}
.x3a{left:536.127726pt;}
.x2f{left:539.608683pt;}
.x3d{left:543.767985pt;}
.x27{left:548.694661pt;}
.x28{left:554.654948pt;}
.xe{left:567.014532pt;}
.x3e{left:570.991618pt;}
.x11{left:574.993208pt;}
.x20{left:582.641602pt;}
.x31{left:584.236938pt;}
.x33{left:608.356649pt;}
.x21{left:611.849325pt;}
.x7{left:617.715454pt;}
.x23{left:620.529989pt;}
.x3f{left:658.727458pt;}
.xf{left:662.481197pt;}
.x8{left:664.199341pt;}
.x12{left:667.665205pt;}
.x19{left:668.705322pt;}
.x1a{left:676.505086pt;}
.x3b{left:691.016032pt;}
.x3c{left:718.110107pt;}
}




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