
    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_506d121e7044568b4c43ed09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_823e59acc7e6c1ab7b6924c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_64a46559a2ed471f4bcc1d90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_5fe6653e72a3409ba6e288e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_2bdcaf65d75070ae3e3146ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_4e2665b9c9971389fbe42792.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_430cc5d84fa758ce6122c864.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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_ed5a86f9e8b7837103bce2e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.950684;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_e0bfe20ca74eeb3aad8f06b4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3aaa490a5659caa96859d3bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967285;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_f6a06092edf243f2580ed297.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_d84d5e6a0bfce9617df3c7df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967285;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_1e6352dfb593fde302a423d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;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_e1d878d871897f3b118aa703.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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_ac28a4a2bb5f1c20457f59dd.woff2')format("woff");}.fff{font-family:fff;line-height:0.693359;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_9bf0bcffe9b07b15125c1191.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.857910;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_b92204b1b79ee5fa3aaa4695.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_73301d16ec38ce4b3fb9903c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.947000;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);}
.v2{vertical-align:-20.018400px;}
.v4{vertical-align:-15.681000px;}
.v3{vertical-align:-9.195720px;}
.v5{vertical-align:-4.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.lsf{letter-spacing:-4.740000px;}
.ls2{letter-spacing:-1.152000px;}
.ls11{letter-spacing:-1.020000px;}
.ls6{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.768000px;}
.lse{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.267300px;}
.lsa{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.213840px;}
.lsd{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.160380px;}
.ls1e{letter-spacing:-0.106920px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053460px;}
.ls19{letter-spacing:0.106920px;}
.ls21{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.160380px;}
.ls12{letter-spacing:0.213840px;}
.ls5{letter-spacing:0.244800px;}
.ls20{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.374220px;}
.ls4{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.427680px;}
.ls3{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.588060px;}
.ls23{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.748440px;}
.ls10{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.050000px;}
.ls9{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.200000px;}
.lsb{letter-spacing:21.378000px;}
.ls26{letter-spacing:32.160000px;}
.ls24{letter-spacing:40.200000px;}
.ls1f{letter-spacing:153.396062px;}
.ls18{letter-spacing:153.396662px;}
.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;}
}
.ws0{word-spacing:-23.040000px;}
.ws160{word-spacing:-16.200000px;}
.wsbe{word-spacing:-15.000000px;}
.ws28{word-spacing:-14.085000px;}
.ws14d{word-spacing:-13.500000px;}
.ws140{word-spacing:-12.135420px;}
.ws13f{word-spacing:-12.081960px;}
.ws170{word-spacing:-12.000000px;}
.ws143{word-spacing:-11.975040px;}
.ws142{word-spacing:-11.868120px;}
.ws141{word-spacing:-11.814660px;}
.ws1{word-spacing:-8.745000px;}
.ws144{word-spacing:-8.054640px;}
.ws190{word-spacing:-6.996000px;}
.ws108{word-spacing:-6.480000px;}
.ws12b{word-spacing:-5.880000px;}
.ws3e{word-spacing:-5.340000px;}
.wsb9{word-spacing:-5.280000px;}
.ws6e{word-spacing:-5.040000px;}
.ws14f{word-spacing:-4.980000px;}
.ws150{word-spacing:-4.800000px;}
.wscf{word-spacing:-4.440000px;}
.ws128{word-spacing:-4.260000px;}
.ws119{word-spacing:-4.080000px;}
.ws70{word-spacing:-3.960000px;}
.wsaa{word-spacing:-3.780000px;}
.ws126{word-spacing:-3.660000px;}
.wsd6{word-spacing:-3.600000px;}
.ws83{word-spacing:-3.420000px;}
.ws45{word-spacing:-3.360000px;}
.ws5a{word-spacing:-3.120000px;}
.ws106{word-spacing:-3.060000px;}
.wse9{word-spacing:-3.000000px;}
.ws191{word-spacing:-2.970000px;}
.wsed{word-spacing:-2.940000px;}
.ws36{word-spacing:-2.880000px;}
.ws87{word-spacing:-2.820000px;}
.ws124{word-spacing:-2.700000px;}
.wsb5{word-spacing:-2.640000px;}
.ws39{word-spacing:-2.580000px;}
.ws9c{word-spacing:-2.520000px;}
.ws3b{word-spacing:-2.460000px;}
.ws79{word-spacing:-2.400000px;}
.ws81{word-spacing:-2.340000px;}
.ws135{word-spacing:-2.280000px;}
.wsa0{word-spacing:-2.220000px;}
.ws10a{word-spacing:-2.160000px;}
.ws109{word-spacing:-2.100000px;}
.ws130{word-spacing:-2.040000px;}
.ws12e{word-spacing:-1.980000px;}
.wsb8{word-spacing:-1.920000px;}
.ws14e{word-spacing:-1.860000px;}
.wsda{word-spacing:-1.800000px;}
.ws2f{word-spacing:-1.740000px;}
.wsff{word-spacing:-1.680000px;}
.ws10b{word-spacing:-1.620000px;}
.ws12a{word-spacing:-1.560000px;}
.ws5f{word-spacing:-1.500000px;}
.ws8{word-spacing:-1.458000px;}
.wsd9{word-spacing:-1.440000px;}
.ws46{word-spacing:-1.380000px;}
.ws175{word-spacing:-1.344000px;}
.ws38{word-spacing:-1.320000px;}
.wsaf{word-spacing:-1.260000px;}
.ws162{word-spacing:-1.200000px;}
.ws9{word-spacing:-1.188000px;}
.ws17e{word-spacing:-1.152000px;}
.ws19{word-spacing:-1.140000px;}
.ws72{word-spacing:-1.080000px;}
.ws68{word-spacing:-1.020000px;}
.ws99{word-spacing:-0.960000px;}
.ws2a{word-spacing:-0.900000px;}
.ws182{word-spacing:-0.864000px;}
.ws151{word-spacing:-0.840000px;}
.wsae{word-spacing:-0.780000px;}
.ws11c{word-spacing:-0.720000px;}
.ws183{word-spacing:-0.672000px;}
.ws125{word-spacing:-0.660000px;}
.ws2{word-spacing:-0.612000px;}
.ws93{word-spacing:-0.600000px;}
.wsec{word-spacing:-0.540000px;}
.ws193{word-spacing:-0.528000px;}
.ws52{word-spacing:-0.480000px;}
.ws55{word-spacing:-0.420000px;}
.wsfe{word-spacing:-0.360000px;}
.ws115{word-spacing:-0.300000px;}
.wsa9{word-spacing:-0.240000px;}
.ws149{word-spacing:-0.213840px;}
.wsf3{word-spacing:-0.180000px;}
.ws146{word-spacing:-0.160380px;}
.ws18c{word-spacing:-0.144000px;}
.ws158{word-spacing:-0.120000px;}
.ws14b{word-spacing:-0.106920px;}
.ws18a{word-spacing:-0.096000px;}
.ws49{word-spacing:-0.060000px;}
.ws14c{word-spacing:-0.053460px;}
.ws16e{word-spacing:-0.048000px;}
.ws6b{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:0.054000px;}
.ws51{word-spacing:0.060000px;}
.ws14a{word-spacing:0.106920px;}
.ws137{word-spacing:0.120000px;}
.ws145{word-spacing:0.160380px;}
.wsa4{word-spacing:0.180000px;}
.ws147{word-spacing:0.213840px;}
.wsba{word-spacing:0.240000px;}
.ws148{word-spacing:0.267300px;}
.ws18d{word-spacing:0.288000px;}
.ws71{word-spacing:0.300000px;}
.ws17{word-spacing:0.360000px;}
.ws165{word-spacing:0.420000px;}
.wsa7{word-spacing:0.480000px;}
.ws184{word-spacing:0.528000px;}
.ws1d{word-spacing:0.540000px;}
.ws44{word-spacing:0.600000px;}
.ws4{word-spacing:0.648000px;}
.ws92{word-spacing:0.660000px;}
.ws78{word-spacing:0.720000px;}
.ws6f{word-spacing:0.780000px;}
.ws42{word-spacing:0.840000px;}
.ws7a{word-spacing:0.900000px;}
.wse1{word-spacing:0.960000px;}
.ws136{word-spacing:1.020000px;}
.ws8d{word-spacing:1.080000px;}
.ws2d{word-spacing:1.140000px;}
.ws10e{word-spacing:1.200000px;}
.ws27{word-spacing:1.247400px;}
.ws118{word-spacing:1.260000px;}
.ws185{word-spacing:1.296000px;}
.ws168{word-spacing:1.320000px;}
.ws172{word-spacing:1.344000px;}
.ws3a{word-spacing:1.380000px;}
.wsf5{word-spacing:1.440000px;}
.ws188{word-spacing:1.488000px;}
.ws116{word-spacing:1.500000px;}
.ws75{word-spacing:1.560000px;}
.ws8e{word-spacing:1.620000px;}
.ws16d{word-spacing:1.680000px;}
.ws85{word-spacing:1.740000px;}
.ws173{word-spacing:1.776000px;}
.wsa2{word-spacing:1.800000px;}
.ws159{word-spacing:1.860000px;}
.wsbb{word-spacing:1.980000px;}
.ws23{word-spacing:2.040000px;}
.ws12c{word-spacing:2.100000px;}
.ws17a{word-spacing:2.112000px;}
.ws16b{word-spacing:2.160000px;}
.ws8f{word-spacing:2.220000px;}
.wsf8{word-spacing:2.280000px;}
.ws22{word-spacing:2.340000px;}
.ws9d{word-spacing:2.400000px;}
.ws157{word-spacing:2.460000px;}
.ws77{word-spacing:2.520000px;}
.ws11a{word-spacing:2.580000px;}
.ws98{word-spacing:2.640000px;}
.wsdb{word-spacing:2.760000px;}
.wse5{word-spacing:2.820000px;}
.ws17c{word-spacing:2.832000px;}
.ws15c{word-spacing:2.880000px;}
.wsb2{word-spacing:2.940000px;}
.ws63{word-spacing:3.000000px;}
.ws20{word-spacing:3.060000px;}
.ws25{word-spacing:3.099600px;}
.ws40{word-spacing:3.120000px;}
.ws82{word-spacing:3.180000px;}
.ws3d{word-spacing:3.240000px;}
.ws69{word-spacing:3.300000px;}
.ws152{word-spacing:3.360000px;}
.wsab{word-spacing:3.420000px;}
.wsac{word-spacing:3.480000px;}
.ws1e{word-spacing:3.540000px;}
.ws1f{word-spacing:3.600000px;}
.ws5{word-spacing:3.618000px;}
.ws139{word-spacing:3.660000px;}
.ws101{word-spacing:3.720000px;}
.ws16f{word-spacing:3.744000px;}
.ws37{word-spacing:3.780000px;}
.ws2b{word-spacing:3.840000px;}
.ws26{word-spacing:3.855600px;}
.ws15b{word-spacing:3.900000px;}
.ws4b{word-spacing:3.960000px;}
.ws86{word-spacing:4.020000px;}
.ws180{word-spacing:4.032000px;}
.ws24{word-spacing:4.080000px;}
.ws41{word-spacing:4.140000px;}
.ws3f{word-spacing:4.200000px;}
.ws178{word-spacing:4.224000px;}
.wse8{word-spacing:4.260000px;}
.ws17f{word-spacing:4.272000px;}
.ws32{word-spacing:4.320000px;}
.ws90{word-spacing:4.380000px;}
.ws176{word-spacing:4.416000px;}
.ws6{word-spacing:4.428000px;}
.wsea{word-spacing:4.440000px;}
.ws107{word-spacing:4.500000px;}
.ws84{word-spacing:4.560000px;}
.ws133{word-spacing:4.620000px;}
.ws179{word-spacing:4.656000px;}
.ws5c{word-spacing:4.680000px;}
.wsde{word-spacing:4.740000px;}
.ws11b{word-spacing:4.800000px;}
.ws100{word-spacing:4.860000px;}
.wsfd{word-spacing:4.920000px;}
.ws31{word-spacing:4.980000px;}
.ws10f{word-spacing:5.040000px;}
.ws102{word-spacing:5.100000px;}
.ws187{word-spacing:5.136000px;}
.ws58{word-spacing:5.160000px;}
.wsee{word-spacing:5.220000px;}
.ws7b{word-spacing:5.280000px;}
.ws21{word-spacing:5.340000px;}
.wsf2{word-spacing:5.400000px;}
.wsbc{word-spacing:5.460000px;}
.ws73{word-spacing:5.520000px;}
.ws60{word-spacing:5.580000px;}
.wsce{word-spacing:5.640000px;}
.ws2e{word-spacing:5.700000px;}
.wsd8{word-spacing:5.760000px;}
.ws138{word-spacing:5.820000px;}
.wse7{word-spacing:5.880000px;}
.ws174{word-spacing:5.904000px;}
.ws62{word-spacing:5.940000px;}
.ws4c{word-spacing:6.000000px;}
.ws105{word-spacing:6.060000px;}
.ws10c{word-spacing:6.120000px;}
.ws104{word-spacing:6.180000px;}
.ws18f{word-spacing:6.288000px;}
.wsc0{word-spacing:6.300000px;}
.ws177{word-spacing:6.336000px;}
.ws47{word-spacing:6.360000px;}
.ws169{word-spacing:6.480000px;}
.wsa6{word-spacing:6.540000px;}
.ws8c{word-spacing:6.600000px;}
.ws171{word-spacing:6.624000px;}
.ws186{word-spacing:6.672000px;}
.wse6{word-spacing:6.780000px;}
.ws17b{word-spacing:6.816000px;}
.ws6d{word-spacing:6.840000px;}
.ws9f{word-spacing:6.900000px;}
.ws181{word-spacing:7.008000px;}
.wsfb{word-spacing:7.020000px;}
.wsf6{word-spacing:7.080000px;}
.ws11{word-spacing:7.140000px;}
.ws17d{word-spacing:7.152000px;}
.wsbf{word-spacing:7.200000px;}
.wse4{word-spacing:7.260000px;}
.wsf1{word-spacing:7.320000px;}
.ws18b{word-spacing:7.344000px;}
.ws50{word-spacing:7.380000px;}
.wsc1{word-spacing:7.440000px;}
.ws12f{word-spacing:7.500000px;}
.ws18e{word-spacing:7.536000px;}
.ws1a{word-spacing:7.560000px;}
.ws3c{word-spacing:7.620000px;}
.ws13a{word-spacing:7.680000px;}
.ws103{word-spacing:7.800000px;}
.ws13b{word-spacing:7.860000px;}
.ws59{word-spacing:7.920000px;}
.ws121{word-spacing:7.980000px;}
.ws30{word-spacing:8.100000px;}
.ws33{word-spacing:8.160000px;}
.ws1c{word-spacing:8.280000px;}
.ws154{word-spacing:8.340000px;}
.wsd2{word-spacing:8.400000px;}
.ws54{word-spacing:8.460000px;}
.ws64{word-spacing:8.580000px;}
.wse2{word-spacing:8.640000px;}
.ws43{word-spacing:8.700000px;}
.ws29{word-spacing:8.760000px;}
.ws35{word-spacing:8.820000px;}
.wsf7{word-spacing:8.880000px;}
.ws1b{word-spacing:8.940000px;}
.ws34{word-spacing:9.000000px;}
.wsad{word-spacing:9.060000px;}
.wsdf{word-spacing:9.120000px;}
.ws89{word-spacing:9.180000px;}
.wsc{word-spacing:9.240000px;}
.ws6a{word-spacing:9.300000px;}
.ws5d{word-spacing:9.360000px;}
.ws9a{word-spacing:9.420000px;}
.ws13c{word-spacing:9.480000px;}
.wsd7{word-spacing:9.540000px;}
.ws112{word-spacing:9.600000px;}
.ws48{word-spacing:9.660000px;}
.ws7e{word-spacing:9.720000px;}
.ws10d{word-spacing:9.840000px;}
.ws2c{word-spacing:9.960000px;}
.ws7c{word-spacing:10.200000px;}
.wsb3{word-spacing:10.260000px;}
.ws117{word-spacing:10.380000px;}
.ws65{word-spacing:10.440000px;}
.ws9e{word-spacing:10.500000px;}
.ws61{word-spacing:10.560000px;}
.ws67{word-spacing:10.620000px;}
.ws132{word-spacing:10.800000px;}
.wsf0{word-spacing:10.920000px;}
.ws18{word-spacing:11.280000px;}
.ws15{word-spacing:11.340000px;}
.ws8b{word-spacing:11.580000px;}
.wsb0{word-spacing:11.640000px;}
.ws6c{word-spacing:11.700000px;}
.wscc{word-spacing:11.760000px;}
.wse0{word-spacing:11.820000px;}
.ws80{word-spacing:11.880000px;}
.ws134{word-spacing:11.940000px;}
.wsc4{word-spacing:12.000000px;}
.ws129{word-spacing:12.060000px;}
.wsdc{word-spacing:12.120000px;}
.wsbd{word-spacing:12.180000px;}
.wsc5{word-spacing:12.240000px;}
.ws11d{word-spacing:12.300000px;}
.wsc6{word-spacing:12.480000px;}
.wsf{word-spacing:12.540000px;}
.ws7d{word-spacing:12.600000px;}
.ws120{word-spacing:12.720000px;}
.ws123{word-spacing:12.780000px;}
.wsa3{word-spacing:12.840000px;}
.ws97{word-spacing:12.960000px;}
.wsb4{word-spacing:13.020000px;}
.ws13{word-spacing:13.260000px;}
.ws12d{word-spacing:13.320000px;}
.ws13d{word-spacing:13.440000px;}
.wsb1{word-spacing:13.560000px;}
.ws8a{word-spacing:13.680000px;}
.ws166{word-spacing:13.740000px;}
.ws5b{word-spacing:13.800000px;}
.wsb6{word-spacing:13.920000px;}
.wsf9{word-spacing:13.980000px;}
.ws113{word-spacing:14.040000px;}
.ws10{word-spacing:14.100000px;}
.ws5e{word-spacing:14.340000px;}
.ws155{word-spacing:14.400000px;}
.ws15d{word-spacing:14.580000px;}
.ws4a{word-spacing:14.820000px;}
.ws110{word-spacing:14.880000px;}
.ws95{word-spacing:15.240000px;}
.wsfc{word-spacing:15.300000px;}
.wsc9{word-spacing:15.360000px;}
.ws13e{word-spacing:15.420000px;}
.wsd5{word-spacing:15.660000px;}
.ws156{word-spacing:15.960000px;}
.wsc2{word-spacing:16.260000px;}
.ws16a{word-spacing:16.380000px;}
.ws15e{word-spacing:16.620000px;}
.wsd4{word-spacing:16.680000px;}
.wse{word-spacing:16.800000px;}
.wsf4{word-spacing:16.860000px;}
.ws88{word-spacing:16.920000px;}
.ws4d{word-spacing:16.980000px;}
.ws7f{word-spacing:17.100000px;}
.ws15a{word-spacing:17.220000px;}
.wsa8{word-spacing:17.280000px;}
.ws53{word-spacing:17.400000px;}
.ws161{word-spacing:17.460000px;}
.wsd3{word-spacing:17.760000px;}
.ws189{word-spacing:17.856000px;}
.ws122{word-spacing:17.880000px;}
.wsdd{word-spacing:17.940000px;}
.ws96{word-spacing:18.060000px;}
.wsb7{word-spacing:18.120000px;}
.ws57{word-spacing:18.180000px;}
.ws163{word-spacing:18.360000px;}
.ws76{word-spacing:18.480000px;}
.wsef{word-spacing:18.600000px;}
.wsc8{word-spacing:18.840000px;}
.wsc3{word-spacing:19.020000px;}
.ws14{word-spacing:19.140000px;}
.ws4f{word-spacing:19.200000px;}
.ws164{word-spacing:19.500000px;}
.ws91{word-spacing:19.680000px;}
.ws167{word-spacing:19.740000px;}
.ws9b{word-spacing:19.800000px;}
.ws12{word-spacing:19.920000px;}
.wsfa{word-spacing:20.340000px;}
.ws111{word-spacing:20.400000px;}
.ws11e{word-spacing:20.580000px;}
.ws4e{word-spacing:20.640000px;}
.wsd{word-spacing:20.880000px;}
.wsa{word-spacing:21.060000px;}
.wsd1{word-spacing:21.420000px;}
.ws56{word-spacing:21.840000px;}
.wscb{word-spacing:22.080000px;}
.ws131{word-spacing:22.140000px;}
.ws16{word-spacing:22.740000px;}
.wse3{word-spacing:22.800000px;}
.ws74{word-spacing:23.460000px;}
.wsca{word-spacing:23.640000px;}
.ws15f{word-spacing:25.200000px;}
.wseb{word-spacing:25.320000px;}
.ws153{word-spacing:25.560000px;}
.ws16c{word-spacing:25.620000px;}
.ws66{word-spacing:25.800000px;}
.wsd0{word-spacing:26.340000px;}
.wsc7{word-spacing:27.300000px;}
.ws11f{word-spacing:27.360000px;}
.wscd{word-spacing:27.600000px;}
.wsb{word-spacing:28.440000px;}
.wsa5{word-spacing:30.180000px;}
.ws114{word-spacing:35.340000px;}
.ws127{word-spacing:36.120000px;}
.ws192{word-spacing:39.216000px;}
.ws94{word-spacing:43.560000px;}
.wsa1{word-spacing:57.600000px;}
._1b{margin-left:-59.820000px;}
._1d{margin-left:-47.856000px;}
._16{margin-left:-14.280000px;}
._9{margin-left:-13.056000px;}
._1e{margin-left:-12.000000px;}
._6{margin-left:-10.272000px;}
._4{margin-left:-7.226400px;}
._8{margin-left:-5.382720px;}
._13{margin-left:-4.200000px;}
._5{margin-left:-2.980800px;}
._2{margin-left:-1.917600px;}
._0{width:1.040400px;}
._1{width:2.305200px;}
._3{width:3.876000px;}
._a{width:5.130000px;}
._7{width:6.216000px;}
._b{width:7.562400px;}
._d{width:8.886000px;}
._f{width:10.128000px;}
._c{width:11.136000px;}
._19{width:12.342000px;}
._1a{width:13.566000px;}
._17{width:16.524000px;}
._10{width:17.712000px;}
._11{width:19.290000px;}
._14{width:20.664000px;}
._1c{width:37.056000px;}
._22{width:39.216000px;}
._15{width:42.060000px;}
._12{width:64.920000px;}
._e{width:66.840000px;}
._27{width:78.720000px;}
._18{width:248.671260px;}
._29{width:511.248000px;}
._26{width:575.159400px;}
._28{width:702.216000px;}
._23{width:741.700800px;}
._25{width:756.576000px;}
._24{width:983.424000px;}
._20{width:1616.496000px;}
._21{width:1672.728000px;}
._1f{width:2076.600000px;}
.fc4{color:transparent;}
.fc1{color:rgb(228,25,54);}
.fc3{color:rgb(243,243,243);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fsb{font-size:35.640000px;}
.fs6{font-size:37.800000px;}
.fs7{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fsa{font-size:50.608800px;}
.fs8{font-size:53.460000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:65.577600px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.y362{bottom:-883.121250px;}
.y35e{bottom:-866.726850px;}
.y361{bottom:-864.053550px;}
.y35d{bottom:-847.841850px;}
.y360{bottom:-847.841805px;}
.y35c{bottom:-831.442995px;}
.y35f{bottom:-831.442950px;}
.y35b{bottom:-815.231205px;}
.y35a{bottom:-798.832350px;}
.y359{bottom:-782.433495px;}
.y358{bottom:-766.221750px;}
.y355{bottom:-749.823345px;}
.y357{bottom:-749.822895px;}
.y354{bottom:-733.611600px;}
.y356{bottom:-733.611150px;}
.y353{bottom:-716.504400px;}
.y352{bottom:-700.292655px;}
.y351{bottom:-683.893800px;}
.y350{bottom:-667.454850px;}
.y34f{bottom:-651.243105px;}
.y34e{bottom:-634.844250px;}
.y34d{bottom:-618.632505px;}
.y34c{bottom:-602.233650px;}
.y34b{bottom:-586.021905px;}
.y34a{bottom:-569.623050px;}
.y342{bottom:-552.515250px;}
.y349{bottom:-537.200745px;}
.y341{bottom:-536.303505px;}
.y348{bottom:-520.801890px;}
.y340{bottom:-519.904650px;}
.y347{bottom:-504.590145px;}
.y33f{bottom:-503.692905px;}
.y346{bottom:-488.191290px;}
.y33e{bottom:-487.294050px;}
.y345{bottom:-471.979545px;}
.y33d{bottom:-471.256350px;}
.y33c{bottom:-455.585730px;}
.y344{bottom:-455.580690px;}
.y33b{bottom:-439.333890px;}
.y343{bottom:-439.328850px;}
.y33a{bottom:-422.039580px;}
.y339{bottom:-405.640725px;}
.y338{bottom:-389.428980px;}
.y337{bottom:-373.003395px;}
.y336{bottom:-356.791650px;}
.y328{bottom:-339.688905px;}
.y327{bottom:-323.307720px;}
.y326{bottom:-307.095975px;}
.y325{bottom:-290.697120px;}
.y335{bottom:-290.153760px;}
.y324{bottom:-274.298265px;}
.y334{bottom:-273.754905px;}
.y323{bottom:-257.899410px;}
.y333{bottom:-257.543160px;}
.y322{bottom:-241.687665px;}
.y332{bottom:-241.144305px;}
.y321{bottom:-225.288810px;}
.y331{bottom:-224.745450px;}
.y320{bottom:-208.889955px;}
.y330{bottom:-208.533705px;}
.y31f{bottom:-192.509070px;}
.y32f{bottom:-192.134850px;}
.y31e{bottom:-176.110215px;}
.y32e{bottom:-175.923105px;}
.y31d{bottom:-159.711360px;}
.y32d{bottom:-159.524250px;}
.y31c{bottom:-143.499615px;}
.y32c{bottom:-143.312505px;}
.y31b{bottom:-127.060665px;}
.y32b{bottom:-126.873555px;}
.y31a{bottom:-110.661810px;}
.y319{bottom:-94.262955px;}
.y318{bottom:-78.051210px;}
.y32a{bottom:-77.864100px;}
.y317{bottom:-61.652355px;}
.y316{bottom:-45.440610px;}
.y329{bottom:-45.253500px;}
.y315{bottom:-29.041755px;}
.y314{bottom:-12.642900px;}
.y0{bottom:0.000000px;}
.y387{bottom:3.727050px;}
.y2bc{bottom:3.728100px;}
.y2a6{bottom:3.741900px;}
.y370{bottom:3.742350px;}
.y2cc{bottom:3.743100px;}
.y30b{bottom:3.919050px;}
.y424{bottom:5.345700px;}
.y395{bottom:36.352500px;}
.y2ca{bottom:36.353700px;}
.y33{bottom:63.064500px;}
.y32{bottom:75.661350px;}
.y37{bottom:77.089500px;}
.y31{bottom:88.258200px;}
.y44d{bottom:118.341000px;}
.y47e{bottom:118.356900px;}
.y36e{bottom:118.872600px;}
.y368{bottom:118.917600px;}
.y4f5{bottom:126.862650px;}
.y4f4{bottom:127.882650px;}
.y30a{bottom:128.919000px;}
.y1a0{bottom:129.891000px;}
.y16c{bottom:129.923550px;}
.y1ff{bottom:132.696000px;}
.y26f{bottom:132.800850px;}
.y1c9{bottom:132.801000px;}
.y239{bottom:132.890850px;}
.y27e{bottom:134.871000px;}
.y44c{bottom:136.341000px;}
.y47d{bottom:136.356900px;}
.y6c{bottom:136.431000px;}
.y106{bottom:136.686000px;}
.ya3{bottom:136.841400px;}
.yd5{bottom:136.851000px;}
.y2a4{bottom:136.855200px;}
.y36d{bottom:136.872600px;}
.y367{bottom:136.917600px;}
.y4f3{bottom:143.902650px;}
.y19f{bottom:147.891000px;}
.y16b{bottom:147.923550px;}
.y20{bottom:148.883400px;}
.y30{bottom:148.883550px;}
.y309{bottom:149.049900px;}
.y313{bottom:149.589555px;}
.y1fe{bottom:150.696000px;}
.y26e{bottom:150.800850px;}
.y1c8{bottom:150.801000px;}
.y238{bottom:150.890850px;}
.y27d{bottom:152.871000px;}
.y44b{bottom:154.341000px;}
.y6b{bottom:154.431000px;}
.y105{bottom:154.686000px;}
.ya2{bottom:154.841400px;}
.yd4{bottom:154.851000px;}
.y2a3{bottom:154.855200px;}
.y36c{bottom:154.872600px;}
.y366{bottom:154.917600px;}
.y4f2{bottom:161.038650px;}
.y308{bottom:165.448755px;}
.y19e{bottom:165.891000px;}
.y16a{bottom:165.923550px;}
.y312{bottom:165.988410px;}
.y1f{bottom:166.883400px;}
.y2f{bottom:166.883550px;}
.y1fd{bottom:168.696000px;}
.y26d{bottom:168.800850px;}
.y1c7{bottom:168.801000px;}
.y237{bottom:168.890850px;}
.y47c{bottom:169.776900px;}
.y27c{bottom:170.871000px;}
.y44a{bottom:172.341000px;}
.y6a{bottom:172.431000px;}
.y104{bottom:172.686000px;}
.ya1{bottom:172.841400px;}
.yd3{bottom:172.851000px;}
.y2a2{bottom:172.855200px;}
.y36b{bottom:172.872600px;}
.y4f1{bottom:177.982650px;}
.y4f0{bottom:179.002650px;}
.y307{bottom:181.847610px;}
.y311{bottom:182.200155px;}
.y19d{bottom:183.891000px;}
.y169{bottom:183.923550px;}
.y1e{bottom:184.883400px;}
.y2e{bottom:184.883550px;}
.y365{bottom:185.667600px;}
.y1fc{bottom:186.696000px;}
.y26c{bottom:186.800850px;}
.y1c6{bottom:186.801000px;}
.y236{bottom:186.890850px;}
.y47b{bottom:187.776900px;}
.y489{bottom:187.859550px;}
.y27b{bottom:188.871000px;}
.y449{bottom:190.341000px;}
.y69{bottom:190.431000px;}
.ya0{bottom:190.841400px;}
.yd2{bottom:190.851000px;}
.y2a1{bottom:190.855200px;}
.y36a{bottom:190.872600px;}
.y4ef{bottom:195.022650px;}
.y306{bottom:198.420210px;}
.y310{bottom:198.599010px;}
.y19c{bottom:201.891000px;}
.y168{bottom:201.923550px;}
.y1d{bottom:202.883400px;}
.y2d{bottom:202.883550px;}
.y1fb{bottom:204.696000px;}
.y26b{bottom:204.800850px;}
.y1c5{bottom:204.801000px;}
.y235{bottom:204.890850px;}
.y488{bottom:205.859550px;}
.y27a{bottom:206.871000px;}
.y103{bottom:207.696000px;}
.y448{bottom:208.341000px;}
.y68{bottom:208.431000px;}
.y9f{bottom:208.841400px;}
.yd1{bottom:208.851000px;}
.y2a0{bottom:208.855200px;}
.y4ee{bottom:212.062650px;}
.y30f{bottom:214.810755px;}
.y305{bottom:214.819065px;}
.y364{bottom:218.889750px;}
.y19b{bottom:219.891000px;}
.y167{bottom:219.923550px;}
.y1c{bottom:220.883400px;}
.y2c{bottom:220.883550px;}
.y1fa{bottom:222.696000px;}
.y26a{bottom:222.800850px;}
.y234{bottom:222.890850px;}
.y487{bottom:223.859550px;}
.y279{bottom:224.871000px;}
.y369{bottom:225.882600px;}
.y447{bottom:226.341000px;}
.y67{bottom:226.431000px;}
.y9e{bottom:226.841400px;}
.yd0{bottom:226.851000px;}
.y29f{bottom:226.855200px;}
.y47a{bottom:228.276000px;}
.y4ed{bottom:228.910650px;}
.y304{bottom:231.030810px;}
.y30e{bottom:231.209610px;}
.y19a{bottom:237.891000px;}
.y166{bottom:237.923550px;}
.y1b{bottom:238.883400px;}
.y2b{bottom:238.883550px;}
.y1c4{bottom:239.391000px;}
.y1f9{bottom:240.696000px;}
.y269{bottom:240.800850px;}
.y233{bottom:240.890850px;}
.y486{bottom:241.859550px;}
.y278{bottom:242.871000px;}
.y102{bottom:243.981000px;}
.y446{bottom:244.341000px;}
.y66{bottom:244.431000px;}
.y9d{bottom:244.841400px;}
.ycf{bottom:244.851000px;}
.y29e{bottom:244.855200px;}
.y4ec{bottom:245.950650px;}
.y479{bottom:246.276000px;}
.y303{bottom:247.456395px;}
.y30d{bottom:247.461450px;}
.y4e9{bottom:255.490650px;}
.y199{bottom:255.891000px;}
.y165{bottom:255.923550px;}
.y1a{bottom:256.883400px;}
.y2a{bottom:256.883550px;}
.y1f8{bottom:258.696000px;}
.y268{bottom:258.800850px;}
.y232{bottom:258.890850px;}
.y485{bottom:259.859550px;}
.y373{bottom:260.067000px;}
.y277{bottom:260.871000px;}
.y101{bottom:261.981000px;}
.y445{bottom:262.341000px;}
.y65{bottom:262.431000px;}
.y9c{bottom:262.841400px;}
.yce{bottom:262.851000px;}
.y29d{bottom:262.855200px;}
.y4eb{bottom:262.990650px;}
.y301{bottom:263.855250px;}
.y30c{bottom:263.860305px;}
.y478{bottom:264.276000px;}
.y4e8{bottom:270.490650px;}
.y1c3{bottom:272.391000px;}
.y198{bottom:273.891000px;}
.y19{bottom:274.883400px;}
.y29{bottom:274.883550px;}
.y1f7{bottom:276.696000px;}
.y267{bottom:276.800850px;}
.y231{bottom:276.890850px;}
.y484{bottom:277.859550px;}
.y276{bottom:278.871000px;}
.y100{bottom:279.981000px;}
.y4ea{bottom:280.030650px;}
.y302{bottom:280.066995px;}
.y300{bottom:280.072050px;}
.y444{bottom:280.341000px;}
.y64{bottom:280.431000px;}
.y9b{bottom:280.841400px;}
.ycd{bottom:280.851000px;}
.y29c{bottom:280.855200px;}
.y422{bottom:281.807100px;}
.y477{bottom:282.276000px;}
.y423{bottom:284.480400px;}
.y197{bottom:291.891000px;}
.y18{bottom:292.883400px;}
.y28{bottom:292.883550px;}
.y164{bottom:293.408550px;}
.y1f6{bottom:294.696000px;}
.y266{bottom:294.800850px;}
.y230{bottom:294.890850px;}
.y483{bottom:295.859550px;}
.y275{bottom:296.871000px;}
.y4e7{bottom:297.058650px;}
.y2e7{bottom:297.156825px;}
.yff{bottom:297.981000px;}
.y443{bottom:298.341000px;}
.y63{bottom:298.431000px;}
.y9a{bottom:298.841400px;}
.ycc{bottom:298.851000px;}
.y29b{bottom:298.855200px;}
.y476{bottom:300.276000px;}
.y421{bottom:300.692145px;}
.y196{bottom:309.891000px;}
.y17{bottom:310.883400px;}
.y27{bottom:310.883550px;}
.y163{bottom:311.408550px;}
.y1f5{bottom:312.696000px;}
.y265{bottom:312.800850px;}
.y22f{bottom:312.890850px;}
.y1c2{bottom:312.891000px;}
.y2e6{bottom:313.555680px;}
.y4e6{bottom:314.098650px;}
.y274{bottom:314.871000px;}
.yfe{bottom:315.981000px;}
.y442{bottom:316.341000px;}
.y62{bottom:316.431000px;}
.y99{bottom:316.841400px;}
.ycb{bottom:316.851000px;}
.y29a{bottom:316.855200px;}
.y420{bottom:317.091000px;}
.y475{bottom:318.276000px;}
.y195{bottom:327.891000px;}
.y16{bottom:328.883400px;}
.y26{bottom:328.883550px;}
.y2ff{bottom:329.081355px;}
.y162{bottom:329.408550px;}
.y2e5{bottom:329.767425px;}
.y1f4{bottom:330.696000px;}
.y264{bottom:330.800850px;}
.y22e{bottom:330.890850px;}
.y1c1{bottom:330.891000px;}
.y4e5{bottom:330.946650px;}
.y273{bottom:332.871000px;}
.y41f{bottom:333.302745px;}
.y372{bottom:333.619050px;}
.y2a8{bottom:333.619950px;}
.yfd{bottom:333.981000px;}
.y441{bottom:334.341000px;}
.y61{bottom:334.431000px;}
.y98{bottom:334.841400px;}
.yca{bottom:334.851000px;}
.y299{bottom:334.855200px;}
.y482{bottom:334.860000px;}
.y474{bottom:336.276000px;}
.y2fe{bottom:345.224640px;}
.y194{bottom:345.891000px;}
.y2e4{bottom:346.166280px;}
.y15{bottom:346.883400px;}
.y25{bottom:346.883550px;}
.y161{bottom:347.408550px;}
.y4e4{bottom:347.986650px;}
.y1f3{bottom:348.696000px;}
.y263{bottom:348.800850px;}
.y22d{bottom:348.890850px;}
.y1c0{bottom:348.891000px;}
.y41e{bottom:349.701600px;}
.y272{bottom:350.871000px;}
.yfc{bottom:351.981000px;}
.y440{bottom:352.341000px;}
.y60{bottom:352.431000px;}
.y97{bottom:352.841400px;}
.yc9{bottom:352.851000px;}
.y298{bottom:352.855200px;}
.y2fd{bottom:361.623495px;}
.y2e3{bottom:362.378025px;}
.y193{bottom:363.891000px;}
.y14{bottom:364.883400px;}
.y24{bottom:364.883550px;}
.y4e3{bottom:365.026650px;}
.y160{bottom:365.408550px;}
.y4e0{bottom:366.046650px;}
.y41d{bottom:366.100455px;}
.y1f2{bottom:366.696000px;}
.y262{bottom:366.800850px;}
.y22c{bottom:366.890850px;}
.y1bf{bottom:366.891000px;}
.y271{bottom:368.871000px;}
.yfb{bottom:369.981000px;}
.y43f{bottom:370.341000px;}
.y5f{bottom:370.431000px;}
.y96{bottom:370.841400px;}
.yc8{bottom:370.851000px;}
.y297{bottom:370.855200px;}
.y473{bottom:371.286000px;}
.y2fc{bottom:378.022350px;}
.y2e2{bottom:378.776880px;}
.y4df{bottom:381.046650px;}
.y192{bottom:381.891000px;}
.y4e2{bottom:382.066650px;}
.y41c{bottom:382.312200px;}
.y13{bottom:382.883400px;}
.y23{bottom:382.883550px;}
.y15f{bottom:383.408550px;}
.y1f1{bottom:384.696000px;}
.y261{bottom:384.800850px;}
.y22b{bottom:384.890850px;}
.y1be{bottom:384.891000px;}
.yfa{bottom:387.981000px;}
.y43e{bottom:388.341000px;}
.y5e{bottom:388.431000px;}
.y95{bottom:388.841400px;}
.yc7{bottom:388.851000px;}
.y296{bottom:388.855200px;}
.y2fb{bottom:394.421205px;}
.y2e1{bottom:395.175735px;}
.y41a{bottom:398.706750px;}
.y41b{bottom:398.711055px;}
.y4e1{bottom:399.106650px;}
.y191{bottom:399.891000px;}
.y12{bottom:400.883400px;}
.y22{bottom:400.883550px;}
.y15e{bottom:401.408550px;}
.y1f0{bottom:402.696000px;}
.y260{bottom:402.800850px;}
.y22a{bottom:402.890850px;}
.y1bd{bottom:402.891000px;}
.y270{bottom:403.881000px;}
.yf9{bottom:405.981000px;}
.y43d{bottom:406.341000px;}
.y5d{bottom:406.431000px;}
.y94{bottom:406.841400px;}
.yc6{bottom:406.851000px;}
.y295{bottom:406.855200px;}
.y472{bottom:406.926000px;}
.y2fa{bottom:410.820060px;}
.y2e0{bottom:411.387480px;}
.y481{bottom:414.371250px;}
.y419{bottom:414.922800px;}
.y4de{bottom:416.134650px;}
.y190{bottom:417.891000px;}
.y11{bottom:418.883400px;}
.y21{bottom:418.883550px;}
.y15d{bottom:419.408550px;}
.y1ef{bottom:420.696000px;}
.y25f{bottom:420.800850px;}
.y229{bottom:420.890850px;}
.y1bc{bottom:420.891000px;}
.y43c{bottom:424.341000px;}
.y5c{bottom:424.431000px;}
.y93{bottom:424.841400px;}
.yc5{bottom:424.851000px;}
.y294{bottom:424.855200px;}
.y471{bottom:424.926000px;}
.y2f9{bottom:427.218915px;}
.y2df{bottom:427.786335px;}
.y418{bottom:432.029550px;}
.y480{bottom:432.371250px;}
.y4dd{bottom:433.174650px;}
.y18f{bottom:435.891000px;}
.y15c{bottom:437.408550px;}
.y1ee{bottom:438.696000px;}
.y25e{bottom:438.800850px;}
.y228{bottom:438.890850px;}
.y1bb{bottom:438.891000px;}
.yf8{bottom:441.621000px;}
.y43b{bottom:442.341000px;}
.y5b{bottom:442.431000px;}
.y92{bottom:442.841400px;}
.y293{bottom:442.855200px;}
.y470{bottom:442.926000px;}
.y2f8{bottom:443.430660px;}
.y2de{bottom:444.185190px;}
.y417{bottom:448.241295px;}
.y4dc{bottom:450.022650px;}
.y10{bottom:450.915000px;}
.y18e{bottom:453.891000px;}
.y15b{bottom:455.408550px;}
.y1ed{bottom:456.696000px;}
.y25d{bottom:456.800850px;}
.y227{bottom:456.890850px;}
.y1ba{bottom:456.891000px;}
.yf7{bottom:459.621000px;}
.y2f7{bottom:459.829515px;}
.yc4{bottom:459.861000px;}
.y5a{bottom:460.431000px;}
.y2dd{bottom:460.584045px;}
.y91{bottom:460.841400px;}
.y292{bottom:460.855200px;}
.y46f{bottom:460.926000px;}
.y416{bottom:464.640150px;}
.y4db{bottom:467.062650px;}
.y47f{bottom:467.379150px;}
.y18d{bottom:471.891000px;}
.y15a{bottom:473.408550px;}
.y1ec{bottom:474.696000px;}
.y25c{bottom:474.800850px;}
.y226{bottom:474.890850px;}
.y1b9{bottom:474.891000px;}
.y2f6{bottom:476.041260px;}
.y4d8{bottom:476.602650px;}
.y2dc{bottom:476.982900px;}
.y43a{bottom:477.351000px;}
.yf6{bottom:477.621000px;}
.y59{bottom:478.431000px;}
.y90{bottom:478.841400px;}
.y291{bottom:478.855200px;}
.y46e{bottom:478.926000px;}
.y415{bottom:481.079100px;}
.y4da{bottom:484.102650px;}
.y18c{bottom:489.891000px;}
.y159{bottom:491.408550px;}
.y4d7{bottom:491.602650px;}
.y2f5{bottom:492.480210px;}
.y1eb{bottom:492.696000px;}
.y25b{bottom:492.800850px;}
.y225{bottom:492.890850px;}
.y1b8{bottom:492.891000px;}
.y2db{bottom:493.404030px;}
.yc3{bottom:494.871000px;}
.y439{bottom:495.351000px;}
.yf5{bottom:495.621000px;}
.y58{bottom:496.431000px;}
.y8f{bottom:496.841400px;}
.y290{bottom:496.855200px;}
.y46d{bottom:496.926000px;}
.y414{bottom:497.290845px;}
.y4d9{bottom:501.142650px;}
.y18b{bottom:507.891000px;}
.y2f4{bottom:508.879065px;}
.y158{bottom:509.408550px;}
.y2da{bottom:509.615775px;}
.y1ea{bottom:510.696000px;}
.y25a{bottom:510.800850px;}
.y224{bottom:510.890850px;}
.y1b7{bottom:510.891000px;}
.yc2{bottom:512.871000px;}
.y413{bottom:513.689700px;}
.y8e{bottom:514.841400px;}
.y28f{bottom:514.855200px;}
.y46c{bottom:514.926000px;}
.y4d6{bottom:518.170650px;}
.y4ab{bottom:518.891550px;}
.y13f{bottom:523.516500px;}
.y2f3{bottom:525.277920px;}
.y18a{bottom:525.891000px;}
.y2d9{bottom:526.014630px;}
.y157{bottom:527.408550px;}
.y1e9{bottom:528.696000px;}
.y259{bottom:528.800850px;}
.y223{bottom:528.890850px;}
.y1b6{bottom:528.891000px;}
.y412{bottom:529.901445px;}
.y438{bottom:530.616000px;}
.yf4{bottom:530.631000px;}
.yc1{bottom:530.871000px;}
.y8d{bottom:532.841400px;}
.y28e{bottom:532.855200px;}
.yf{bottom:533.426850px;}
.y57{bottom:534.411000px;}
.y4d5{bottom:535.210650px;}
.y4aa{bottom:536.891550px;}
.y2f2{bottom:541.676775px;}
.y2d8{bottom:542.413485px;}
.y189{bottom:543.891000px;}
.y156{bottom:545.408550px;}
.y411{bottom:546.300300px;}
.y1e8{bottom:546.696000px;}
.y258{bottom:546.800850px;}
.y222{bottom:546.890850px;}
.y1b5{bottom:546.891000px;}
.y437{bottom:548.616000px;}
.yc0{bottom:548.871000px;}
.y46b{bottom:549.936000px;}
.y8c{bottom:550.841400px;}
.y28d{bottom:550.855200px;}
.y4d4{bottom:552.058650px;}
.y4d3{bottom:553.078650px;}
.y4a9{bottom:554.891550px;}
.y2f1{bottom:558.075630px;}
.y2d7{bottom:558.812340px;}
.y13e{bottom:558.883800px;}
.y11d{bottom:559.491000px;}
.ye{bottom:559.930650px;}
.y188{bottom:561.891000px;}
.y410{bottom:562.512045px;}
.y155{bottom:563.408550px;}
.y1e7{bottom:564.696000px;}
.y257{bottom:564.800850px;}
.y221{bottom:564.890850px;}
.y1b4{bottom:564.891000px;}
.y436{bottom:566.616000px;}
.ybf{bottom:566.871000px;}
.yf3{bottom:566.916000px;}
.y8b{bottom:568.841400px;}
.y4d2{bottom:569.098650px;}
.y4a8{bottom:572.891550px;}
.y2f0{bottom:574.474485px;}
.y56{bottom:574.911000px;}
.y2d6{bottom:575.211195px;}
.y13d{bottom:576.883800px;}
.y11c{bottom:577.491000px;}
.y40f{bottom:578.910900px;}
.y187{bottom:579.891000px;}
.y154{bottom:581.408550px;}
.y1e6{bottom:582.696000px;}
.y256{bottom:582.800850px;}
.y220{bottom:582.890850px;}
.y1b3{bottom:582.891000px;}
.y435{bottom:584.616000px;}
.ybe{bottom:584.871000px;}
.yf2{bottom:584.916000px;}
.y46a{bottom:585.576000px;}
.y28c{bottom:585.865200px;}
.y4d1{bottom:586.138650px;}
.y8a{bottom:586.841400px;}
.y2ef{bottom:590.873340px;}
.y4a7{bottom:590.891550px;}
.y2d5{bottom:591.422940px;}
.y55{bottom:592.911000px;}
.y13c{bottom:594.883800px;}
.y11b{bottom:595.491000px;}
.y409{bottom:596.018700px;}
.y186{bottom:597.891000px;}
.y153{bottom:599.408550px;}
.y1e5{bottom:600.696000px;}
.y21f{bottom:600.890850px;}
.y1b2{bottom:600.891000px;}
.y434{bottom:602.616000px;}
.ybd{bottom:602.871000px;}
.yf1{bottom:602.916000px;}
.y4d0{bottom:602.986650px;}
.y469{bottom:603.576000px;}
.y4cf{bottom:604.006650px;}
.y89{bottom:604.841400px;}
.y2ee{bottom:607.272195px;}
.y2d4{bottom:607.821795px;}
.y4a6{bottom:608.891550px;}
.y54{bottom:610.911000px;}
.y40e{bottom:611.333205px;}
.y408{bottom:612.230445px;}
.y13b{bottom:612.883800px;}
.y185{bottom:615.891000px;}
.y152{bottom:617.408550px;}
.y1e4{bottom:618.696000px;}
.y21e{bottom:618.890850px;}
.y1b1{bottom:618.891000px;}
.y255{bottom:619.715850px;}
.y4ce{bottom:619.950900px;}
.y433{bottom:620.616000px;}
.ybc{bottom:620.871000px;}
.y28b{bottom:620.875200px;}
.yf0{bottom:620.916000px;}
.y468{bottom:621.576000px;}
.y88{bottom:622.851000px;}
.y2ed{bottom:623.671050px;}
.y2d3{bottom:624.033540px;}
.y4a5{bottom:626.891550px;}
.y40d{bottom:627.732060px;}
.y407{bottom:628.629300px;}
.y53{bottom:628.911000px;}
.y13a{bottom:630.883800px;}
.y11a{bottom:632.631000px;}
.y184{bottom:633.891000px;}
.y151{bottom:635.408550px;}
.y1e3{bottom:636.696000px;}
.y21d{bottom:636.890850px;}
.y1b0{bottom:636.891000px;}
.y4cd{bottom:636.990900px;}
.y432{bottom:638.616000px;}
.ybb{bottom:638.871000px;}
.yef{bottom:638.916000px;}
.y467{bottom:639.576000px;}
.y2ec{bottom:640.069905px;}
.y2d2{bottom:640.432395px;}
.y87{bottom:640.851000px;}
.y40c{bottom:643.943805px;}
.y406{bottom:644.841045px;}
.y4a4{bottom:644.891550px;}
.y52{bottom:646.911000px;}
.yd{bottom:647.714700px;}
.y139{bottom:648.883800px;}
.y119{bottom:650.631000px;}
.y183{bottom:651.891000px;}
.y150{bottom:653.408550px;}
.y4cc{bottom:654.030900px;}
.y1e2{bottom:654.696000px;}
.y254{bottom:654.725850px;}
.y21c{bottom:654.890850px;}
.y1af{bottom:654.891000px;}
.y2eb{bottom:656.468760px;}
.y431{bottom:656.616000px;}
.y2d1{bottom:656.831250px;}
.yba{bottom:656.871000px;}
.yee{bottom:656.916000px;}
.y466{bottom:657.576000px;}
.y86{bottom:658.851000px;}
.y40b{bottom:660.342660px;}
.y405{bottom:661.239900px;}
.y4a3{bottom:662.891550px;}
.y51{bottom:664.911000px;}
.yc{bottom:665.710200px;}
.y138{bottom:666.883800px;}
.y118{bottom:668.631000px;}
.y182{bottom:669.891000px;}
.y4cb{bottom:671.070900px;}
.y14f{bottom:671.408550px;}
.y1e1{bottom:672.696000px;}
.y2ea{bottom:672.867615px;}
.y2d0{bottom:672.868950px;}
.y21b{bottom:672.890850px;}
.y1ae{bottom:672.891000px;}
.y430{bottom:674.616000px;}
.yb9{bottom:674.871000px;}
.yed{bottom:674.916000px;}
.y465{bottom:675.576000px;}
.y40a{bottom:676.554405px;}
.y85{bottom:676.851000px;}
.y404{bottom:677.277600px;}
.y4a2{bottom:680.891550px;}
.y50{bottom:682.911000px;}
.y137{bottom:684.883800px;}
.y117{bottom:686.631000px;}
.y181{bottom:687.891000px;}
.y4ca{bottom:688.110900px;}
.y2e9{bottom:689.079360px;}
.y2cf{bottom:689.253105px;}
.y14e{bottom:689.408550px;}
.y253{bottom:689.735850px;}
.y4c5{bottom:690.162900px;}
.y1e0{bottom:690.696000px;}
.y21a{bottom:690.890850px;}
.y1ad{bottom:690.891000px;}
.yb{bottom:692.214150px;}
.y42f{bottom:692.616000px;}
.yb8{bottom:692.871000px;}
.yec{bottom:692.916000px;}
.y403{bottom:692.953260px;}
.y464{bottom:693.576000px;}
.y84{bottom:694.851000px;}
.y4a1{bottom:698.891550px;}
.y4f{bottom:700.911000px;}
.y136{bottom:702.883800px;}
.y116{bottom:704.631000px;}
.y4c9{bottom:705.150900px;}
.y4c4{bottom:705.162900px;}
.y2e8{bottom:705.478215px;}
.y2ce{bottom:705.651960px;}
.y180{bottom:705.891000px;}
.y14d{bottom:707.406000px;}
.y252{bottom:707.735850px;}
.y1df{bottom:708.696000px;}
.y219{bottom:708.890850px;}
.y1ac{bottom:708.891000px;}
.y402{bottom:709.205100px;}
.y42e{bottom:710.616000px;}
.yb7{bottom:710.871000px;}
.yeb{bottom:710.916000px;}
.y83{bottom:712.851000px;}
.y4a0{bottom:716.891550px;}
.y4e{bottom:718.911000px;}
.y4c3{bottom:720.162900px;}
.y135{bottom:720.883800px;}
.y2cd{bottom:721.903800px;}
.y4c8{bottom:722.190900px;}
.y115{bottom:722.631000px;}
.y17f{bottom:723.891000px;}
.y14c{bottom:725.406000px;}
.y251{bottom:725.735850px;}
.y401{bottom:726.494370px;}
.y1de{bottom:726.696000px;}
.y218{bottom:726.890850px;}
.y1ab{bottom:726.891000px;}
.y463{bottom:728.586000px;}
.y42d{bottom:728.616000px;}
.yb6{bottom:728.871000px;}
.yea{bottom:728.916000px;}
.y82{bottom:730.851000px;}
.y49f{bottom:734.891550px;}
.y2c9{bottom:735.445500px;}
.y4d{bottom:736.911000px;}
.y134{bottom:738.883800px;}
.y4c7{bottom:739.230900px;}
.y114{bottom:740.631000px;}
.y17e{bottom:741.891000px;}
.y400{bottom:742.893225px;}
.y14b{bottom:743.406000px;}
.y250{bottom:743.735850px;}
.y1dd{bottom:744.696000px;}
.y217{bottom:744.890850px;}
.y1aa{bottom:744.891000px;}
.y42c{bottom:746.616000px;}
.yb5{bottom:746.871000px;}
.ye9{bottom:746.916000px;}
.y81{bottom:748.851000px;}
.y49e{bottom:752.891550px;}
.y4c{bottom:754.911000px;}
.y2cb{bottom:755.583000px;}
.y4c6{bottom:756.270900px;}
.y133{bottom:756.883800px;}
.y113{bottom:758.631000px;}
.y3ff{bottom:759.104970px;}
.y17d{bottom:759.891000px;}
.y14a{bottom:761.406000px;}
.y24f{bottom:761.735850px;}
.y1dc{bottom:762.696000px;}
.y216{bottom:762.890850px;}
.y1a9{bottom:762.891000px;}
.ya{bottom:762.955800px;}
.y462{bottom:764.226000px;}
.y42b{bottom:764.616000px;}
.y28a{bottom:764.871000px;}
.ye8{bottom:764.916000px;}
.y80{bottom:766.851000px;}
.y49d{bottom:770.891550px;}
.y4b{bottom:772.911000px;}
.y4c2{bottom:773.310900px;}
.y132{bottom:774.883800px;}
.y3fd{bottom:775.526250px;}
.y3fe{bottom:775.530555px;}
.y112{bottom:776.631000px;}
.y17c{bottom:777.891000px;}
.y149{bottom:779.406000px;}
.y24e{bottom:779.735850px;}
.y9{bottom:779.911800px;}
.y1db{bottom:780.696000px;}
.y215{bottom:780.890850px;}
.y1a8{bottom:780.891000px;}
.yb4{bottom:781.881000px;}
.y461{bottom:782.226000px;}
.y42a{bottom:782.616000px;}
.y289{bottom:782.871000px;}
.ye7{bottom:782.916000px;}
.y7f{bottom:784.851000px;}
.y2a7{bottom:785.208000px;}
.y49c{bottom:788.891550px;}
.y4c1{bottom:790.350900px;}
.y4a{bottom:790.911000px;}
.y3fc{bottom:791.742300px;}
.y131{bottom:792.883800px;}
.y111{bottom:794.631000px;}
.y17b{bottom:795.891000px;}
.y8{bottom:796.867800px;}
.y148{bottom:797.406000px;}
.y24d{bottom:797.735850px;}
.y1da{bottom:798.696000px;}
.y214{bottom:798.890850px;}
.y1a7{bottom:798.891000px;}
.yb3{bottom:799.881000px;}
.y460{bottom:800.226000px;}
.y429{bottom:800.616000px;}
.y288{bottom:800.871000px;}
.y7e{bottom:802.851000px;}
.y2bb{bottom:805.143240px;}
.y49b{bottom:806.891550px;}
.y4c0{bottom:807.390900px;}
.y3ee{bottom:808.845045px;}
.y2c8{bottom:808.889295px;}
.y130{bottom:810.883800px;}
.y110{bottom:812.631000px;}
.y7{bottom:813.823800px;}
.y147{bottom:815.406000px;}
.y24c{bottom:815.735850px;}
.y1d9{bottom:816.696000px;}
.y213{bottom:816.890850px;}
.y1a6{bottom:816.891000px;}
.yb2{bottom:817.881000px;}
.y45f{bottom:818.226000px;}
.ye6{bottom:818.556000px;}
.y428{bottom:818.616000px;}
.y287{bottom:818.871000px;}
.y2ba{bottom:821.542095px;}
.y4bf{bottom:824.430900px;}
.y49a{bottom:824.891550px;}
.y2c7{bottom:825.101040px;}
.y3ed{bottom:825.226095px;}
.y4bd{bottom:826.470900px;}
.y12f{bottom:828.883800px;}
.y49{bottom:828.891000px;}
.y10f{bottom:830.631000px;}
.y6{bottom:830.779800px;}
.y146{bottom:833.406000px;}
.y24b{bottom:833.735850px;}
.y1d8{bottom:834.696000px;}
.y212{bottom:834.890850px;}
.y1a5{bottom:834.891000px;}
.yb1{bottom:835.881000px;}
.y45e{bottom:836.226000px;}
.ye5{bottom:836.556000px;}
.y427{bottom:836.616000px;}
.y286{bottom:836.871000px;}
.y7d{bottom:837.861000px;}
.y2b9{bottom:837.940950px;}
.y3ec{bottom:841.437840px;}
.y4bc{bottom:841.470900px;}
.y2c6{bottom:841.499895px;}
.y499{bottom:842.891550px;}
.y12e{bottom:846.883800px;}
.y5{bottom:847.735800px;}
.y10e{bottom:848.631000px;}
.y145{bottom:851.406000px;}
.y24a{bottom:851.735850px;}
.y1d7{bottom:852.696000px;}
.y211{bottom:852.890850px;}
.y1a4{bottom:852.891000px;}
.yb0{bottom:853.881000px;}
.y2b8{bottom:854.152695px;}
.y45d{bottom:854.226000px;}
.ye4{bottom:854.556000px;}
.y285{bottom:854.871000px;}
.y4bb{bottom:856.470900px;}
.y2c5{bottom:857.711640px;}
.y3eb{bottom:857.836695px;}
.y3fb{bottom:858.380145px;}
.y4be{bottom:858.510900px;}
.y498{bottom:860.891550px;}
.y12d{bottom:864.883800px;}
.y10d{bottom:866.631000px;}
.y48{bottom:867.891000px;}
.y144{bottom:869.406000px;}
.y249{bottom:869.735850px;}
.y2b7{bottom:870.551550px;}
.y1d6{bottom:870.696000px;}
.y210{bottom:870.890850px;}
.y1a3{bottom:870.891000px;}
.y426{bottom:871.626000px;}
.yaf{bottom:871.881000px;}
.y45c{bottom:872.226000px;}
.ye3{bottom:872.556000px;}
.y284{bottom:872.871000px;}
.y4{bottom:873.189750px;}
.y2c4{bottom:874.110495px;}
.y7c{bottom:874.146000px;}
.y3ea{bottom:874.235550px;}
.y3fa{bottom:874.779000px;}
.y4ba{bottom:875.538900px;}
.y3da{bottom:875.823900px;}
.y497{bottom:878.891550px;}
.y12c{bottom:882.883800px;}
.y10c{bottom:884.631000px;}
.y2b6{bottom:886.763295px;}
.y143{bottom:887.406000px;}
.y248{bottom:887.735850px;}
.y1d5{bottom:888.696000px;}
.y20f{bottom:888.890850px;}
.y1a2{bottom:888.891000px;}
.yae{bottom:889.881000px;}
.y45b{bottom:890.226000px;}
.y2c3{bottom:890.509350px;}
.ye2{bottom:890.556000px;}
.y3e9{bottom:890.634405px;}
.y283{bottom:890.871000px;}
.y3f9{bottom:890.990745px;}
.y7b{bottom:892.146000px;}
.y3d3{bottom:892.391160px;}
.y4b9{bottom:892.578900px;}
.y496{bottom:896.891550px;}
.y12b{bottom:900.883800px;}
.y10b{bottom:902.631000px;}
.y2b5{bottom:903.162150px;}
.y142{bottom:905.406000px;}
.y247{bottom:905.735850px;}
.y1d4{bottom:906.696000px;}
.y2c2{bottom:906.721095px;}
.y3e8{bottom:906.841635px;}
.y20e{bottom:906.890850px;}
.y1a1{bottom:906.891000px;}
.y3f8{bottom:907.389600px;}
.yad{bottom:907.881000px;}
.y45a{bottom:908.226000px;}
.ye1{bottom:908.556000px;}
.y3d2{bottom:908.602905px;}
.y282{bottom:908.871000px;}
.y3d9{bottom:909.137505px;}
.y4b8{bottom:909.618900px;}
.y7a{bottom:910.146000px;}
.y495{bottom:914.891550px;}
.y12a{bottom:918.883800px;}
.y2b4{bottom:919.373895px;}
.y2c1{bottom:923.119950px;}
.y3e7{bottom:923.240490px;}
.y141{bottom:923.406000px;}
.y246{bottom:923.735850px;}
.y3f7{bottom:923.788455px;}
.y1d3{bottom:924.696000px;}
.y20d{bottom:924.890850px;}
.y47{bottom:924.891000px;}
.y17a{bottom:924.893550px;}
.y3d1{bottom:925.001760px;}
.y3d8{bottom:925.536360px;}
.yac{bottom:925.881000px;}
.y459{bottom:926.226000px;}
.y4b7{bottom:926.466900px;}
.ye0{bottom:926.556000px;}
.y281{bottom:926.871000px;}
.y79{bottom:928.146000px;}
.y494{bottom:932.891550px;}
.y2b3{bottom:935.772750px;}
.y129{bottom:936.883800px;}
.y2c0{bottom:939.331695px;}
.y3e6{bottom:939.639345px;}
.y3{bottom:939.709500px;}
.y10a{bottom:939.771000px;}
.y3f6{bottom:940.000200px;}
.y3d0{bottom:941.400615px;}
.y140{bottom:941.406000px;}
.y245{bottom:941.735850px;}
.y3d7{bottom:941.748105px;}
.y1d2{bottom:942.696000px;}
.y20c{bottom:942.890850px;}
.y46{bottom:942.891000px;}
.y179{bottom:942.893550px;}
.y4b6{bottom:943.506900px;}
.yab{bottom:943.881000px;}
.y458{bottom:944.226000px;}
.ydf{bottom:944.556000px;}
.y280{bottom:944.871000px;}
.y78{bottom:946.146000px;}
.y493{bottom:950.891550px;}
.y2b2{bottom:951.984495px;}
.y128{bottom:954.883800px;}
.y2bf{bottom:955.730550px;}
.y3e5{bottom:956.024835px;}
.y3f5{bottom:956.399055px;}
.y109{bottom:957.771000px;}
.y3cf{bottom:957.973215px;}
.y3d6{bottom:958.146960px;}
.y244{bottom:959.735850px;}
.y4b5{bottom:960.546900px;}
.y1d1{bottom:960.696000px;}
.y20b{bottom:960.890850px;}
.y45{bottom:960.891000px;}
.y178{bottom:960.893550px;}
.yaa{bottom:961.881000px;}
.y457{bottom:962.226000px;}
.y27f{bottom:962.871000px;}
.y77{bottom:964.146000px;}
.y2b1{bottom:968.383350px;}
.y492{bottom:968.891550px;}
.y4b3{bottom:969.066900px;}
.y2be{bottom:971.942295px;}
.y3e4{bottom:972.423690px;}
.y3f4{bottom:972.610800px;}
.y127{bottom:972.883800px;}
.y3d5{bottom:974.358705px;}
.y3ce{bottom:974.372070px;}
.y108{bottom:975.771000px;}
.y4b4{bottom:977.586900px;}
.y243{bottom:977.735850px;}
.y1d0{bottom:978.696000px;}
.y20a{bottom:978.890850px;}
.y44{bottom:978.891000px;}
.y177{bottom:978.893550px;}
.yde{bottom:979.566000px;}
.ya9{bottom:979.881000px;}
.y456{bottom:980.226000px;}
.y76{bottom:982.146000px;}
.y2b0{bottom:985.672051px;}
.y491{bottom:986.891550px;}
.y2bd{bottom:988.341150px;}
.y3e3{bottom:988.822545px;}
.y3f3{bottom:989.009655px;}
.y3cd{bottom:990.583815px;}
.y3d4{bottom:990.757560px;}
.y126{bottom:990.883800px;}
.y4b2{bottom:994.626900px;}
.y242{bottom:995.735850px;}
.y2{bottom:995.977200px;}
.y1cf{bottom:996.696000px;}
.y209{bottom:996.890850px;}
.y43{bottom:996.891000px;}
.y176{bottom:996.893550px;}
.ya8{bottom:997.881000px;}
.y455{bottom:998.226000px;}
.y75{bottom:1000.146000px;}
.y2af{bottom:1004.552895px;}
.y490{bottom:1004.891550px;}
.y3e2{bottom:1005.034290px;}
.y3f2{bottom:1005.221400px;}
.y3cc{bottom:1007.009400px;}
.y125{bottom:1008.883800px;}
.y4b1{bottom:1011.666900px;}
.y107{bottom:1012.911000px;}
.y241{bottom:1013.735850px;}
.y1ce{bottom:1014.696000px;}
.y208{bottom:1014.890850px;}
.y42{bottom:1014.891000px;}
.y175{bottom:1014.893550px;}
.ydd{bottom:1015.851000px;}
.ya7{bottom:1015.881000px;}
.y454{bottom:1016.226000px;}
.y74{bottom:1018.146000px;}
.y2ae{bottom:1020.991845px;}
.y3e1{bottom:1021.473240px;}
.y3f1{bottom:1021.660350px;}
.y48f{bottom:1022.891550px;}
.y3cb{bottom:1023.408255px;}
.y124{bottom:1026.883800px;}
.y4b0{bottom:1028.706900px;}
.y240{bottom:1031.735850px;}
.y1cd{bottom:1032.696000px;}
.y207{bottom:1032.890850px;}
.y41{bottom:1032.891000px;}
.y174{bottom:1032.893550px;}
.ydc{bottom:1033.851000px;}
.ya6{bottom:1033.881000px;}
.y1{bottom:1035.575850px;}
.y73{bottom:1036.146000px;}
.y2ad{bottom:1037.390700px;}
.y3e0{bottom:1037.872095px;}
.y3ca{bottom:1039.620000px;}
.y48e{bottom:1040.891550px;}
.y123{bottom:1044.883800px;}
.y4af{bottom:1045.554900px;}
.y23f{bottom:1049.735850px;}
.y1cc{bottom:1050.696000px;}
.y206{bottom:1050.890850px;}
.y40{bottom:1050.891000px;}
.y173{bottom:1050.893550px;}
.y453{bottom:1051.236000px;}
.ydb{bottom:1051.851000px;}
.ya5{bottom:1051.881000px;}
.y2ac{bottom:1053.602445px;}
.y72{bottom:1054.146000px;}
.y3df{bottom:1054.270950px;}
.y3b1{bottom:1056.704775px;}
.y48d{bottom:1058.891550px;}
.y4ae{bottom:1062.594900px;}
.y122{bottom:1062.883800px;}
.y23e{bottom:1067.735850px;}
.y1cb{bottom:1068.696000px;}
.y205{bottom:1068.890850px;}
.y3f{bottom:1068.891000px;}
.y172{bottom:1068.893550px;}
.yda{bottom:1069.851000px;}
.y2ab{bottom:1070.001300px;}
.y3de{bottom:1070.482695px;}
.y3f0{bottom:1070.669805px;}
.y71{bottom:1072.146000px;}
.y3b0{bottom:1073.103630px;}
.y48c{bottom:1076.891550px;}
.y4ad{bottom:1079.634900px;}
.y121{bottom:1080.883800px;}
.y23d{bottom:1085.735850px;}
.y2aa{bottom:1086.213045px;}
.y1ca{bottom:1086.696000px;}
.y452{bottom:1086.876000px;}
.y3dd{bottom:1086.881550px;}
.y204{bottom:1086.890850px;}
.y3e{bottom:1086.891000px;}
.y171{bottom:1086.893550px;}
.yd9{bottom:1087.851000px;}
.y3c9{bottom:1088.629305px;}
.y3af{bottom:1089.315375px;}
.y70{bottom:1090.146000px;}
.y48b{bottom:1094.891550px;}
.y120{bottom:1098.883800px;}
.y2a9{bottom:1102.611900px;}
.y3dc{bottom:1103.093295px;}
.y3ef{bottom:1103.280405px;}
.y23c{bottom:1103.735850px;}
.y3c8{bottom:1104.772590px;}
.y451{bottom:1104.876000px;}
.y203{bottom:1104.890850px;}
.y3d{bottom:1104.891000px;}
.y170{bottom:1104.893550px;}
.y3ae{bottom:1105.714230px;}
.yd8{bottom:1105.851000px;}
.y4ac{bottom:1106.254950px;}
.y6f{bottom:1108.146000px;}
.y36{bottom:1108.311000px;}
.y48a{bottom:1112.891550px;}
.y11f{bottom:1116.883800px;}
.y3db{bottom:1119.492150px;}
.y3c7{bottom:1121.171445px;}
.y23b{bottom:1121.735850px;}
.y3ad{bottom:1121.925975px;}
.y450{bottom:1122.876000px;}
.y202{bottom:1122.890850px;}
.y3c{bottom:1122.891000px;}
.y16f{bottom:1122.893550px;}
.yd7{bottom:1123.851000px;}
.y2a5{bottom:1132.194000px;}
.y3c6{bottom:1137.570300px;}
.y3ac{bottom:1138.324830px;}
.y44f{bottom:1140.876000px;}
.y201{bottom:1140.890850px;}
.y3b{bottom:1140.891000px;}
.y16e{bottom:1140.893550px;}
.y6e{bottom:1141.146000px;}
.y4f6{bottom:1151.843700px;}
.y11e{bottom:1151.891550px;}
.y3c5{bottom:1153.969155px;}
.y3ab{bottom:1154.723685px;}
.y35{bottom:1158.110100px;}
.yd6{bottom:1158.861000px;}
.y23a{bottom:1158.875850px;}
.y44e{bottom:1158.876000px;}
.y200{bottom:1158.890850px;}
.y3a{bottom:1158.891000px;}
.y16d{bottom:1158.893550px;}
.y6d{bottom:1159.146000px;}
.y425{bottom:1159.917900px;}
.y363{bottom:1159.931100px;}
.y3c4{bottom:1170.368010px;}
.y3aa{bottom:1170.935430px;}
.y34{bottom:1171.610100px;}
.y3c3{bottom:1186.766865px;}
.y3a9{bottom:1187.334285px;}
.y38{bottom:1194.090750px;}
.ya4{bottom:1194.094800px;}
.y39{bottom:1194.094950px;}
.y3c2{bottom:1202.978610px;}
.y3a8{bottom:1203.733140px;}
.y3c1{bottom:1219.377465px;}
.y3a7{bottom:1220.131995px;}
.y3c0{bottom:1235.589210px;}
.y3a6{bottom:1236.530850px;}
.y3bf{bottom:1252.028160px;}
.y3a5{bottom:1252.952130px;}
.y3be{bottom:1268.427015px;}
.y3a4{bottom:1269.163875px;}
.y3bd{bottom:1284.825870px;}
.y3a3{bottom:1285.562730px;}
.y3bc{bottom:1301.224725px;}
.y3a2{bottom:1301.961585px;}
.y3bb{bottom:1317.623580px;}
.y3a1{bottom:1318.360440px;}
.y3ba{bottom:1334.022435px;}
.y3a0{bottom:1334.759295px;}
.y3b9{bottom:1350.421290px;}
.y39f{bottom:1350.971040px;}
.y3b8{bottom:1366.820145px;}
.y39e{bottom:1367.369895px;}
.y3b7{bottom:1383.219000px;}
.y39d{bottom:1383.581640px;}
.y3b6{bottom:1399.617855px;}
.y39c{bottom:1399.980495px;}
.y3b5{bottom:1416.016710px;}
.y39b{bottom:1416.379350px;}
.y3b4{bottom:1432.415565px;}
.y39a{bottom:1432.416750px;}
.y3b3{bottom:1448.627310px;}
.y399{bottom:1448.801055px;}
.y3b2{bottom:1465.026165px;}
.y398{bottom:1465.199910px;}
.y397{bottom:1481.451750px;}
.y396{bottom:1515.130800px;}
.y386{bottom:1564.691340px;}
.y393{bottom:1568.437245px;}
.y385{bottom:1581.090195px;}
.y392{bottom:1584.648990px;}
.y384{bottom:1597.489050px;}
.y391{bottom:1601.047845px;}
.y383{bottom:1613.700795px;}
.y390{bottom:1617.259590px;}
.y382{bottom:1630.099500px;}
.y38f{bottom:1633.658445px;}
.y381{bottom:1646.311245px;}
.y38e{bottom:1650.057300px;}
.y380{bottom:1662.710100px;}
.y38d{bottom:1666.269045px;}
.y37f{bottom:1678.921845px;}
.y38c{bottom:1682.667900px;}
.y37e{bottom:1695.320700px;}
.y38b{bottom:1698.879645px;}
.y37d{bottom:1711.532445px;}
.y38a{bottom:1715.278500px;}
.y37c{bottom:1727.931300px;}
.y389{bottom:1731.490245px;}
.y37b{bottom:1745.220001px;}
.y388{bottom:1747.889100px;}
.y394{bottom:1755.061500px;}
.y37a{bottom:1764.100845px;}
.y379{bottom:1780.539795px;}
.y378{bottom:1796.938650px;}
.y371{bottom:1804.824000px;}
.y377{bottom:1813.150395px;}
.y376{bottom:1829.549250px;}
.y375{bottom:1845.760995px;}
.y374{bottom:1862.159850px;}
.y36f{bottom:2151.808500px;}
.h24{height:-1002.507000px;}
.h25{height:-655.522500px;}
.h28{height:-605.760000px;}
.hf{height:16.380000px;}
.h8{height:28.516113px;}
.h33{height:32.859375px;}
.h31{height:33.351562px;}
.h34{height:33.654563px;}
.h9{height:33.947754px;}
.h32{height:34.687500px;}
.h17{height:36.325652px;}
.h4{height:37.520508px;}
.h13{height:38.372168px;}
.h27{height:38.372768px;}
.h2c{height:38.390228px;}
.h2b{height:38.425628px;}
.h1e{height:38.442848px;}
.h2d{height:38.443388px;}
.h18{height:38.443448px;}
.h1d{height:38.444048px;}
.h1a{height:38.646008px;}
.h11{height:38.815928px;}
.hb{height:41.074219px;}
.hc{height:41.660156px;}
.h6{height:41.689453px;}
.hd{height:41.699653px;}
.h30{height:43.359375px;}
.h2f{height:44.284951px;}
.h7{height:44.285551px;}
.h2e{height:44.288551px;}
.he{height:44.301751px;}
.h20{height:47.052639px;}
.h23{height:47.054439px;}
.h15{height:47.069859px;}
.h21{height:47.070459px;}
.h1f{height:47.087679px;}
.h14{height:47.091879px;}
.h2a{height:47.092419px;}
.h22{height:47.112039px;}
.h1c{height:47.113059px;}
.h29{height:47.158959px;}
.h19{height:47.159559px;}
.h10{height:47.614205px;}
.h16{height:49.039500px;}
.ha{height:51.120000px;}
.h3{height:51.480000px;}
.h35{height:67.488000px;}
.h5{height:68.640000px;}
.h2{height:72.930000px;}
.h12{height:346.257000px;}
.h26{height:889.234500px;}
.h1b{height:1020.381000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:158.271000px;}
.w2{width:188.911500px;}
.w3{width:320.121000px;}
.w5{width:670.353000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.474500px;}
.x1{left:76.535400px;}
.x23{left:85.494450px;}
.xf{left:93.543300px;}
.x14{left:95.173500px;}
.x10{left:102.048300px;}
.x8{left:110.551200px;}
.x25{left:114.803100px;}
.x21{left:121.749900px;}
.xa{left:127.561050px;}
.x1c{left:129.189000px;}
.x22{left:131.799900px;}
.x12{left:136.066050px;}
.x2{left:167.579850px;}
.x1a{left:198.025050px;}
.x9{left:264.012450px;}
.x16{left:284.806500px;}
.x18{left:292.469250px;}
.x1d{left:318.822000px;}
.x1f{left:326.419950px;}
.x7{left:367.204050px;}
.x5{left:387.579750px;}
.x3{left:440.082450px;}
.x24{left:448.926450px;}
.x4{left:457.092450px;}
.x11{left:465.588300px;}
.xb{left:474.091050px;}
.xc{left:491.101650px;}
.x13{left:499.606050px;}
.x1b{left:519.031950px;}
.x17{left:605.641500px;}
.x19{left:613.303950px;}
.x6{left:623.402250px;}
.x1e{left:639.657000px;}
.x20{left:647.306100px;}
.xd{left:666.983700px;}
.x2d{left:680.314950px;}
.x2a{left:688.559100px;}
.x29{left:694.895100px;}
.x26{left:697.235100px;}
.x2b{left:703.547100px;}
.x2c{left:705.190950px;}
.x28{left:707.495100px;}
.x27{left:713.495100px;}
.xe{left:761.268450px;}
@media print{
.v2{vertical-align:-17.794133pt;}
.v4{vertical-align:-13.938667pt;}
.v3{vertical-align:-8.173973pt;}
.v5{vertical-align:-3.626667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.lsf{letter-spacing:-4.213333pt;}
.ls2{letter-spacing:-1.024000pt;}
.ls11{letter-spacing:-0.906667pt;}
.ls6{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.682667pt;}
.lse{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.237600pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.190080pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.142560pt;}
.ls1e{letter-spacing:-0.095040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047520pt;}
.ls19{letter-spacing:0.095040pt;}
.ls21{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.142560pt;}
.ls12{letter-spacing:0.190080pt;}
.ls5{letter-spacing:0.217600pt;}
.ls20{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.332640pt;}
.ls4{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.380160pt;}
.ls3{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.522720pt;}
.ls23{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.665280pt;}
.ls10{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.933333pt;}
.ls9{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.066667pt;}
.lsb{letter-spacing:19.002667pt;}
.ls26{letter-spacing:28.586667pt;}
.ls24{letter-spacing:35.733333pt;}
.ls1f{letter-spacing:136.352055pt;}
.ls18{letter-spacing:136.352589pt;}
.ws0{word-spacing:-20.480000pt;}
.ws160{word-spacing:-14.400000pt;}
.wsbe{word-spacing:-13.333333pt;}
.ws28{word-spacing:-12.520000pt;}
.ws14d{word-spacing:-12.000000pt;}
.ws140{word-spacing:-10.787040pt;}
.ws13f{word-spacing:-10.739520pt;}
.ws170{word-spacing:-10.666667pt;}
.ws143{word-spacing:-10.644480pt;}
.ws142{word-spacing:-10.549440pt;}
.ws141{word-spacing:-10.501920pt;}
.ws1{word-spacing:-7.773333pt;}
.ws144{word-spacing:-7.159680pt;}
.ws190{word-spacing:-6.218667pt;}
.ws108{word-spacing:-5.760000pt;}
.ws12b{word-spacing:-5.226667pt;}
.ws3e{word-spacing:-4.746667pt;}
.wsb9{word-spacing:-4.693333pt;}
.ws6e{word-spacing:-4.480000pt;}
.ws14f{word-spacing:-4.426667pt;}
.ws150{word-spacing:-4.266667pt;}
.wscf{word-spacing:-3.946667pt;}
.ws128{word-spacing:-3.786667pt;}
.ws119{word-spacing:-3.626667pt;}
.ws70{word-spacing:-3.520000pt;}
.wsaa{word-spacing:-3.360000pt;}
.ws126{word-spacing:-3.253333pt;}
.wsd6{word-spacing:-3.200000pt;}
.ws83{word-spacing:-3.040000pt;}
.ws45{word-spacing:-2.986667pt;}
.ws5a{word-spacing:-2.773333pt;}
.ws106{word-spacing:-2.720000pt;}
.wse9{word-spacing:-2.666667pt;}
.ws191{word-spacing:-2.640000pt;}
.wsed{word-spacing:-2.613333pt;}
.ws36{word-spacing:-2.560000pt;}
.ws87{word-spacing:-2.506667pt;}
.ws124{word-spacing:-2.400000pt;}
.wsb5{word-spacing:-2.346667pt;}
.ws39{word-spacing:-2.293333pt;}
.ws9c{word-spacing:-2.240000pt;}
.ws3b{word-spacing:-2.186667pt;}
.ws79{word-spacing:-2.133333pt;}
.ws81{word-spacing:-2.080000pt;}
.ws135{word-spacing:-2.026667pt;}
.wsa0{word-spacing:-1.973333pt;}
.ws10a{word-spacing:-1.920000pt;}
.ws109{word-spacing:-1.866667pt;}
.ws130{word-spacing:-1.813333pt;}
.ws12e{word-spacing:-1.760000pt;}
.wsb8{word-spacing:-1.706667pt;}
.ws14e{word-spacing:-1.653333pt;}
.wsda{word-spacing:-1.600000pt;}
.ws2f{word-spacing:-1.546667pt;}
.wsff{word-spacing:-1.493333pt;}
.ws10b{word-spacing:-1.440000pt;}
.ws12a{word-spacing:-1.386667pt;}
.ws5f{word-spacing:-1.333333pt;}
.ws8{word-spacing:-1.296000pt;}
.wsd9{word-spacing:-1.280000pt;}
.ws46{word-spacing:-1.226667pt;}
.ws175{word-spacing:-1.194667pt;}
.ws38{word-spacing:-1.173333pt;}
.wsaf{word-spacing:-1.120000pt;}
.ws162{word-spacing:-1.066667pt;}
.ws9{word-spacing:-1.056000pt;}
.ws17e{word-spacing:-1.024000pt;}
.ws19{word-spacing:-1.013333pt;}
.ws72{word-spacing:-0.960000pt;}
.ws68{word-spacing:-0.906667pt;}
.ws99{word-spacing:-0.853333pt;}
.ws2a{word-spacing:-0.800000pt;}
.ws182{word-spacing:-0.768000pt;}
.ws151{word-spacing:-0.746667pt;}
.wsae{word-spacing:-0.693333pt;}
.ws11c{word-spacing:-0.640000pt;}
.ws183{word-spacing:-0.597333pt;}
.ws125{word-spacing:-0.586667pt;}
.ws2{word-spacing:-0.544000pt;}
.ws93{word-spacing:-0.533333pt;}
.wsec{word-spacing:-0.480000pt;}
.ws193{word-spacing:-0.469333pt;}
.ws52{word-spacing:-0.426667pt;}
.ws55{word-spacing:-0.373333pt;}
.wsfe{word-spacing:-0.320000pt;}
.ws115{word-spacing:-0.266667pt;}
.wsa9{word-spacing:-0.213333pt;}
.ws149{word-spacing:-0.190080pt;}
.wsf3{word-spacing:-0.160000pt;}
.ws146{word-spacing:-0.142560pt;}
.ws18c{word-spacing:-0.128000pt;}
.ws158{word-spacing:-0.106667pt;}
.ws14b{word-spacing:-0.095040pt;}
.ws18a{word-spacing:-0.085333pt;}
.ws49{word-spacing:-0.053333pt;}
.ws14c{word-spacing:-0.047520pt;}
.ws16e{word-spacing:-0.042667pt;}
.ws6b{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:0.048000pt;}
.ws51{word-spacing:0.053333pt;}
.ws14a{word-spacing:0.095040pt;}
.ws137{word-spacing:0.106667pt;}
.ws145{word-spacing:0.142560pt;}
.wsa4{word-spacing:0.160000pt;}
.ws147{word-spacing:0.190080pt;}
.wsba{word-spacing:0.213333pt;}
.ws148{word-spacing:0.237600pt;}
.ws18d{word-spacing:0.256000pt;}
.ws71{word-spacing:0.266667pt;}
.ws17{word-spacing:0.320000pt;}
.ws165{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.426667pt;}
.ws184{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.480000pt;}
.ws44{word-spacing:0.533333pt;}
.ws4{word-spacing:0.576000pt;}
.ws92{word-spacing:0.586667pt;}
.ws78{word-spacing:0.640000pt;}
.ws6f{word-spacing:0.693333pt;}
.ws42{word-spacing:0.746667pt;}
.ws7a{word-spacing:0.800000pt;}
.wse1{word-spacing:0.853333pt;}
.ws136{word-spacing:0.906667pt;}
.ws8d{word-spacing:0.960000pt;}
.ws2d{word-spacing:1.013333pt;}
.ws10e{word-spacing:1.066667pt;}
.ws27{word-spacing:1.108800pt;}
.ws118{word-spacing:1.120000pt;}
.ws185{word-spacing:1.152000pt;}
.ws168{word-spacing:1.173333pt;}
.ws172{word-spacing:1.194667pt;}
.ws3a{word-spacing:1.226667pt;}
.wsf5{word-spacing:1.280000pt;}
.ws188{word-spacing:1.322667pt;}
.ws116{word-spacing:1.333333pt;}
.ws75{word-spacing:1.386667pt;}
.ws8e{word-spacing:1.440000pt;}
.ws16d{word-spacing:1.493333pt;}
.ws85{word-spacing:1.546667pt;}
.ws173{word-spacing:1.578667pt;}
.wsa2{word-spacing:1.600000pt;}
.ws159{word-spacing:1.653333pt;}
.wsbb{word-spacing:1.760000pt;}
.ws23{word-spacing:1.813333pt;}
.ws12c{word-spacing:1.866667pt;}
.ws17a{word-spacing:1.877333pt;}
.ws16b{word-spacing:1.920000pt;}
.ws8f{word-spacing:1.973333pt;}
.wsf8{word-spacing:2.026667pt;}
.ws22{word-spacing:2.080000pt;}
.ws9d{word-spacing:2.133333pt;}
.ws157{word-spacing:2.186667pt;}
.ws77{word-spacing:2.240000pt;}
.ws11a{word-spacing:2.293333pt;}
.ws98{word-spacing:2.346667pt;}
.wsdb{word-spacing:2.453333pt;}
.wse5{word-spacing:2.506667pt;}
.ws17c{word-spacing:2.517333pt;}
.ws15c{word-spacing:2.560000pt;}
.wsb2{word-spacing:2.613333pt;}
.ws63{word-spacing:2.666667pt;}
.ws20{word-spacing:2.720000pt;}
.ws25{word-spacing:2.755200pt;}
.ws40{word-spacing:2.773333pt;}
.ws82{word-spacing:2.826667pt;}
.ws3d{word-spacing:2.880000pt;}
.ws69{word-spacing:2.933333pt;}
.ws152{word-spacing:2.986667pt;}
.wsab{word-spacing:3.040000pt;}
.wsac{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.146667pt;}
.ws1f{word-spacing:3.200000pt;}
.ws5{word-spacing:3.216000pt;}
.ws139{word-spacing:3.253333pt;}
.ws101{word-spacing:3.306667pt;}
.ws16f{word-spacing:3.328000pt;}
.ws37{word-spacing:3.360000pt;}
.ws2b{word-spacing:3.413333pt;}
.ws26{word-spacing:3.427200pt;}
.ws15b{word-spacing:3.466667pt;}
.ws4b{word-spacing:3.520000pt;}
.ws86{word-spacing:3.573333pt;}
.ws180{word-spacing:3.584000pt;}
.ws24{word-spacing:3.626667pt;}
.ws41{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.733333pt;}
.ws178{word-spacing:3.754667pt;}
.wse8{word-spacing:3.786667pt;}
.ws17f{word-spacing:3.797333pt;}
.ws32{word-spacing:3.840000pt;}
.ws90{word-spacing:3.893333pt;}
.ws176{word-spacing:3.925333pt;}
.ws6{word-spacing:3.936000pt;}
.wsea{word-spacing:3.946667pt;}
.ws107{word-spacing:4.000000pt;}
.ws84{word-spacing:4.053333pt;}
.ws133{word-spacing:4.106667pt;}
.ws179{word-spacing:4.138667pt;}
.ws5c{word-spacing:4.160000pt;}
.wsde{word-spacing:4.213333pt;}
.ws11b{word-spacing:4.266667pt;}
.ws100{word-spacing:4.320000pt;}
.wsfd{word-spacing:4.373333pt;}
.ws31{word-spacing:4.426667pt;}
.ws10f{word-spacing:4.480000pt;}
.ws102{word-spacing:4.533333pt;}
.ws187{word-spacing:4.565333pt;}
.ws58{word-spacing:4.586667pt;}
.wsee{word-spacing:4.640000pt;}
.ws7b{word-spacing:4.693333pt;}
.ws21{word-spacing:4.746667pt;}
.wsf2{word-spacing:4.800000pt;}
.wsbc{word-spacing:4.853333pt;}
.ws73{word-spacing:4.906667pt;}
.ws60{word-spacing:4.960000pt;}
.wsce{word-spacing:5.013333pt;}
.ws2e{word-spacing:5.066667pt;}
.wsd8{word-spacing:5.120000pt;}
.ws138{word-spacing:5.173333pt;}
.wse7{word-spacing:5.226667pt;}
.ws174{word-spacing:5.248000pt;}
.ws62{word-spacing:5.280000pt;}
.ws4c{word-spacing:5.333333pt;}
.ws105{word-spacing:5.386667pt;}
.ws10c{word-spacing:5.440000pt;}
.ws104{word-spacing:5.493333pt;}
.ws18f{word-spacing:5.589333pt;}
.wsc0{word-spacing:5.600000pt;}
.ws177{word-spacing:5.632000pt;}
.ws47{word-spacing:5.653333pt;}
.ws169{word-spacing:5.760000pt;}
.wsa6{word-spacing:5.813333pt;}
.ws8c{word-spacing:5.866667pt;}
.ws171{word-spacing:5.888000pt;}
.ws186{word-spacing:5.930667pt;}
.wse6{word-spacing:6.026667pt;}
.ws17b{word-spacing:6.058667pt;}
.ws6d{word-spacing:6.080000pt;}
.ws9f{word-spacing:6.133333pt;}
.ws181{word-spacing:6.229333pt;}
.wsfb{word-spacing:6.240000pt;}
.wsf6{word-spacing:6.293333pt;}
.ws11{word-spacing:6.346667pt;}
.ws17d{word-spacing:6.357333pt;}
.wsbf{word-spacing:6.400000pt;}
.wse4{word-spacing:6.453333pt;}
.wsf1{word-spacing:6.506667pt;}
.ws18b{word-spacing:6.528000pt;}
.ws50{word-spacing:6.560000pt;}
.wsc1{word-spacing:6.613333pt;}
.ws12f{word-spacing:6.666667pt;}
.ws18e{word-spacing:6.698667pt;}
.ws1a{word-spacing:6.720000pt;}
.ws3c{word-spacing:6.773333pt;}
.ws13a{word-spacing:6.826667pt;}
.ws103{word-spacing:6.933333pt;}
.ws13b{word-spacing:6.986667pt;}
.ws59{word-spacing:7.040000pt;}
.ws121{word-spacing:7.093333pt;}
.ws30{word-spacing:7.200000pt;}
.ws33{word-spacing:7.253333pt;}
.ws1c{word-spacing:7.360000pt;}
.ws154{word-spacing:7.413333pt;}
.wsd2{word-spacing:7.466667pt;}
.ws54{word-spacing:7.520000pt;}
.ws64{word-spacing:7.626667pt;}
.wse2{word-spacing:7.680000pt;}
.ws43{word-spacing:7.733333pt;}
.ws29{word-spacing:7.786667pt;}
.ws35{word-spacing:7.840000pt;}
.wsf7{word-spacing:7.893333pt;}
.ws1b{word-spacing:7.946667pt;}
.ws34{word-spacing:8.000000pt;}
.wsad{word-spacing:8.053333pt;}
.wsdf{word-spacing:8.106667pt;}
.ws89{word-spacing:8.160000pt;}
.wsc{word-spacing:8.213333pt;}
.ws6a{word-spacing:8.266667pt;}
.ws5d{word-spacing:8.320000pt;}
.ws9a{word-spacing:8.373333pt;}
.ws13c{word-spacing:8.426667pt;}
.wsd7{word-spacing:8.480000pt;}
.ws112{word-spacing:8.533333pt;}
.ws48{word-spacing:8.586667pt;}
.ws7e{word-spacing:8.640000pt;}
.ws10d{word-spacing:8.746667pt;}
.ws2c{word-spacing:8.853333pt;}
.ws7c{word-spacing:9.066667pt;}
.wsb3{word-spacing:9.120000pt;}
.ws117{word-spacing:9.226667pt;}
.ws65{word-spacing:9.280000pt;}
.ws9e{word-spacing:9.333333pt;}
.ws61{word-spacing:9.386667pt;}
.ws67{word-spacing:9.440000pt;}
.ws132{word-spacing:9.600000pt;}
.wsf0{word-spacing:9.706667pt;}
.ws18{word-spacing:10.026667pt;}
.ws15{word-spacing:10.080000pt;}
.ws8b{word-spacing:10.293333pt;}
.wsb0{word-spacing:10.346667pt;}
.ws6c{word-spacing:10.400000pt;}
.wscc{word-spacing:10.453333pt;}
.wse0{word-spacing:10.506667pt;}
.ws80{word-spacing:10.560000pt;}
.ws134{word-spacing:10.613333pt;}
.wsc4{word-spacing:10.666667pt;}
.ws129{word-spacing:10.720000pt;}
.wsdc{word-spacing:10.773333pt;}
.wsbd{word-spacing:10.826667pt;}
.wsc5{word-spacing:10.880000pt;}
.ws11d{word-spacing:10.933333pt;}
.wsc6{word-spacing:11.093333pt;}
.wsf{word-spacing:11.146667pt;}
.ws7d{word-spacing:11.200000pt;}
.ws120{word-spacing:11.306667pt;}
.ws123{word-spacing:11.360000pt;}
.wsa3{word-spacing:11.413333pt;}
.ws97{word-spacing:11.520000pt;}
.wsb4{word-spacing:11.573333pt;}
.ws13{word-spacing:11.786667pt;}
.ws12d{word-spacing:11.840000pt;}
.ws13d{word-spacing:11.946667pt;}
.wsb1{word-spacing:12.053333pt;}
.ws8a{word-spacing:12.160000pt;}
.ws166{word-spacing:12.213333pt;}
.ws5b{word-spacing:12.266667pt;}
.wsb6{word-spacing:12.373333pt;}
.wsf9{word-spacing:12.426667pt;}
.ws113{word-spacing:12.480000pt;}
.ws10{word-spacing:12.533333pt;}
.ws5e{word-spacing:12.746667pt;}
.ws155{word-spacing:12.800000pt;}
.ws15d{word-spacing:12.960000pt;}
.ws4a{word-spacing:13.173333pt;}
.ws110{word-spacing:13.226667pt;}
.ws95{word-spacing:13.546667pt;}
.wsfc{word-spacing:13.600000pt;}
.wsc9{word-spacing:13.653333pt;}
.ws13e{word-spacing:13.706667pt;}
.wsd5{word-spacing:13.920000pt;}
.ws156{word-spacing:14.186667pt;}
.wsc2{word-spacing:14.453333pt;}
.ws16a{word-spacing:14.560000pt;}
.ws15e{word-spacing:14.773333pt;}
.wsd4{word-spacing:14.826667pt;}
.wse{word-spacing:14.933333pt;}
.wsf4{word-spacing:14.986667pt;}
.ws88{word-spacing:15.040000pt;}
.ws4d{word-spacing:15.093333pt;}
.ws7f{word-spacing:15.200000pt;}
.ws15a{word-spacing:15.306667pt;}
.wsa8{word-spacing:15.360000pt;}
.ws53{word-spacing:15.466667pt;}
.ws161{word-spacing:15.520000pt;}
.wsd3{word-spacing:15.786667pt;}
.ws189{word-spacing:15.872000pt;}
.ws122{word-spacing:15.893333pt;}
.wsdd{word-spacing:15.946667pt;}
.ws96{word-spacing:16.053333pt;}
.wsb7{word-spacing:16.106667pt;}
.ws57{word-spacing:16.160000pt;}
.ws163{word-spacing:16.320000pt;}
.ws76{word-spacing:16.426667pt;}
.wsef{word-spacing:16.533333pt;}
.wsc8{word-spacing:16.746667pt;}
.wsc3{word-spacing:16.906667pt;}
.ws14{word-spacing:17.013333pt;}
.ws4f{word-spacing:17.066667pt;}
.ws164{word-spacing:17.333333pt;}
.ws91{word-spacing:17.493333pt;}
.ws167{word-spacing:17.546667pt;}
.ws9b{word-spacing:17.600000pt;}
.ws12{word-spacing:17.706667pt;}
.wsfa{word-spacing:18.080000pt;}
.ws111{word-spacing:18.133333pt;}
.ws11e{word-spacing:18.293333pt;}
.ws4e{word-spacing:18.346667pt;}
.wsd{word-spacing:18.560000pt;}
.wsa{word-spacing:18.720000pt;}
.wsd1{word-spacing:19.040000pt;}
.ws56{word-spacing:19.413333pt;}
.wscb{word-spacing:19.626667pt;}
.ws131{word-spacing:19.680000pt;}
.ws16{word-spacing:20.213333pt;}
.wse3{word-spacing:20.266667pt;}
.ws74{word-spacing:20.853333pt;}
.wsca{word-spacing:21.013333pt;}
.ws15f{word-spacing:22.400000pt;}
.wseb{word-spacing:22.506667pt;}
.ws153{word-spacing:22.720000pt;}
.ws16c{word-spacing:22.773333pt;}
.ws66{word-spacing:22.933333pt;}
.wsd0{word-spacing:23.413333pt;}
.wsc7{word-spacing:24.266667pt;}
.ws11f{word-spacing:24.320000pt;}
.wscd{word-spacing:24.533333pt;}
.wsb{word-spacing:25.280000pt;}
.wsa5{word-spacing:26.826667pt;}
.ws114{word-spacing:31.413333pt;}
.ws127{word-spacing:32.106667pt;}
.ws192{word-spacing:34.858667pt;}
.ws94{word-spacing:38.720000pt;}
.wsa1{word-spacing:51.200000pt;}
._1b{margin-left:-53.173333pt;}
._1d{margin-left:-42.538667pt;}
._16{margin-left:-12.693333pt;}
._9{margin-left:-11.605333pt;}
._1e{margin-left:-10.666667pt;}
._6{margin-left:-9.130667pt;}
._4{margin-left:-6.423467pt;}
._8{margin-left:-4.784640pt;}
._13{margin-left:-3.733333pt;}
._5{margin-left:-2.649600pt;}
._2{margin-left:-1.704533pt;}
._0{width:0.924800pt;}
._1{width:2.049067pt;}
._3{width:3.445333pt;}
._a{width:4.560000pt;}
._7{width:5.525333pt;}
._b{width:6.722133pt;}
._d{width:7.898667pt;}
._f{width:9.002667pt;}
._c{width:9.898667pt;}
._19{width:10.970667pt;}
._1a{width:12.058667pt;}
._17{width:14.688000pt;}
._10{width:15.744000pt;}
._11{width:17.146667pt;}
._14{width:18.368000pt;}
._1c{width:32.938667pt;}
._22{width:34.858667pt;}
._15{width:37.386667pt;}
._12{width:57.706667pt;}
._e{width:59.413333pt;}
._27{width:69.973333pt;}
._18{width:221.041120pt;}
._29{width:454.442667pt;}
._26{width:511.252800pt;}
._28{width:624.192000pt;}
._23{width:659.289600pt;}
._25{width:672.512000pt;}
._24{width:874.154667pt;}
._20{width:1436.885333pt;}
._21{width:1486.869333pt;}
._1f{width:1845.866667pt;}
.fsd{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fsb{font-size:31.680000pt;}
.fs6{font-size:33.600000pt;}
.fs7{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fsa{font-size:44.985600pt;}
.fs8{font-size:47.520000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:58.291200pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.y362{bottom:-784.996667pt;}
.y35e{bottom:-770.423867pt;}
.y361{bottom:-768.047600pt;}
.y35d{bottom:-753.637200pt;}
.y360{bottom:-753.637160pt;}
.y35c{bottom:-739.060440pt;}
.y35f{bottom:-739.060400pt;}
.y35b{bottom:-724.649960pt;}
.y35a{bottom:-710.073200pt;}
.y359{bottom:-695.496440pt;}
.y358{bottom:-681.086000pt;}
.y355{bottom:-666.509640pt;}
.y357{bottom:-666.509240pt;}
.y354{bottom:-652.099200pt;}
.y356{bottom:-652.098800pt;}
.y353{bottom:-636.892800pt;}
.y352{bottom:-622.482360pt;}
.y351{bottom:-607.905600pt;}
.y350{bottom:-593.293200pt;}
.y34f{bottom:-578.882760pt;}
.y34e{bottom:-564.306000pt;}
.y34d{bottom:-549.895560pt;}
.y34c{bottom:-535.318800pt;}
.y34b{bottom:-520.908360pt;}
.y34a{bottom:-506.331600pt;}
.y342{bottom:-491.124667pt;}
.y349{bottom:-477.511773pt;}
.y341{bottom:-476.714227pt;}
.y348{bottom:-462.935013pt;}
.y340{bottom:-462.137467pt;}
.y347{bottom:-448.524573pt;}
.y33f{bottom:-447.727027pt;}
.y346{bottom:-433.947813pt;}
.y33e{bottom:-433.150267pt;}
.y345{bottom:-419.537373pt;}
.y33d{bottom:-418.894533pt;}
.y33c{bottom:-404.965093pt;}
.y344{bottom:-404.960613pt;}
.y33b{bottom:-390.519013pt;}
.y343{bottom:-390.514533pt;}
.y33a{bottom:-375.146293pt;}
.y339{bottom:-360.569533pt;}
.y338{bottom:-346.159093pt;}
.y337{bottom:-331.558573pt;}
.y336{bottom:-317.148133pt;}
.y328{bottom:-301.945693pt;}
.y327{bottom:-287.384640pt;}
.y326{bottom:-272.974200pt;}
.y325{bottom:-258.397440pt;}
.y335{bottom:-257.914453pt;}
.y324{bottom:-243.820680pt;}
.y334{bottom:-243.337693pt;}
.y323{bottom:-229.243920pt;}
.y333{bottom:-228.927253pt;}
.y322{bottom:-214.833480pt;}
.y332{bottom:-214.350493pt;}
.y321{bottom:-200.256720pt;}
.y331{bottom:-199.773733pt;}
.y320{bottom:-185.679960pt;}
.y330{bottom:-185.363293pt;}
.y31f{bottom:-171.119173pt;}
.y32f{bottom:-170.786533pt;}
.y31e{bottom:-156.542413pt;}
.y32e{bottom:-156.376093pt;}
.y31d{bottom:-141.965653pt;}
.y32d{bottom:-141.799333pt;}
.y31c{bottom:-127.555213pt;}
.y32c{bottom:-127.388893pt;}
.y31b{bottom:-112.942813pt;}
.y32b{bottom:-112.776493pt;}
.y31a{bottom:-98.366053pt;}
.y319{bottom:-83.789293pt;}
.y318{bottom:-69.378853pt;}
.y32a{bottom:-69.212533pt;}
.y317{bottom:-54.802093pt;}
.y316{bottom:-40.391653pt;}
.y329{bottom:-40.225333pt;}
.y315{bottom:-25.814893pt;}
.y314{bottom:-11.238133pt;}
.y0{bottom:0.000000pt;}
.y387{bottom:3.312933pt;}
.y2bc{bottom:3.313867pt;}
.y2a6{bottom:3.326133pt;}
.y370{bottom:3.326533pt;}
.y2cc{bottom:3.327200pt;}
.y30b{bottom:3.483600pt;}
.y424{bottom:4.751733pt;}
.y395{bottom:32.313333pt;}
.y2ca{bottom:32.314400pt;}
.y33{bottom:56.057333pt;}
.y32{bottom:67.254533pt;}
.y37{bottom:68.524000pt;}
.y31{bottom:78.451733pt;}
.y44d{bottom:105.192000pt;}
.y47e{bottom:105.206133pt;}
.y36e{bottom:105.664533pt;}
.y368{bottom:105.704533pt;}
.y4f5{bottom:112.766800pt;}
.y4f4{bottom:113.673467pt;}
.y30a{bottom:114.594667pt;}
.y1a0{bottom:115.458667pt;}
.y16c{bottom:115.487600pt;}
.y1ff{bottom:117.952000pt;}
.y26f{bottom:118.045200pt;}
.y1c9{bottom:118.045333pt;}
.y239{bottom:118.125200pt;}
.y27e{bottom:119.885333pt;}
.y44c{bottom:121.192000pt;}
.y47d{bottom:121.206133pt;}
.y6c{bottom:121.272000pt;}
.y106{bottom:121.498667pt;}
.ya3{bottom:121.636800pt;}
.yd5{bottom:121.645333pt;}
.y2a4{bottom:121.649067pt;}
.y36d{bottom:121.664533pt;}
.y367{bottom:121.704533pt;}
.y4f3{bottom:127.913467pt;}
.y19f{bottom:131.458667pt;}
.y16b{bottom:131.487600pt;}
.y20{bottom:132.340800pt;}
.y30{bottom:132.340933pt;}
.y309{bottom:132.488800pt;}
.y313{bottom:132.968493pt;}
.y1fe{bottom:133.952000pt;}
.y26e{bottom:134.045200pt;}
.y1c8{bottom:134.045333pt;}
.y238{bottom:134.125200pt;}
.y27d{bottom:135.885333pt;}
.y44b{bottom:137.192000pt;}
.y6b{bottom:137.272000pt;}
.y105{bottom:137.498667pt;}
.ya2{bottom:137.636800pt;}
.yd4{bottom:137.645333pt;}
.y2a3{bottom:137.649067pt;}
.y36c{bottom:137.664533pt;}
.y366{bottom:137.704533pt;}
.y4f2{bottom:143.145467pt;}
.y308{bottom:147.065560pt;}
.y19e{bottom:147.458667pt;}
.y16a{bottom:147.487600pt;}
.y312{bottom:147.545253pt;}
.y1f{bottom:148.340800pt;}
.y2f{bottom:148.340933pt;}
.y1fd{bottom:149.952000pt;}
.y26d{bottom:150.045200pt;}
.y1c7{bottom:150.045333pt;}
.y237{bottom:150.125200pt;}
.y47c{bottom:150.912800pt;}
.y27c{bottom:151.885333pt;}
.y44a{bottom:153.192000pt;}
.y6a{bottom:153.272000pt;}
.y104{bottom:153.498667pt;}
.ya1{bottom:153.636800pt;}
.yd3{bottom:153.645333pt;}
.y2a2{bottom:153.649067pt;}
.y36b{bottom:153.664533pt;}
.y4f1{bottom:158.206800pt;}
.y4f0{bottom:159.113467pt;}
.y307{bottom:161.642320pt;}
.y311{bottom:161.955693pt;}
.y19d{bottom:163.458667pt;}
.y169{bottom:163.487600pt;}
.y1e{bottom:164.340800pt;}
.y2e{bottom:164.340933pt;}
.y365{bottom:165.037867pt;}
.y1fc{bottom:165.952000pt;}
.y26c{bottom:166.045200pt;}
.y1c6{bottom:166.045333pt;}
.y236{bottom:166.125200pt;}
.y47b{bottom:166.912800pt;}
.y489{bottom:166.986267pt;}
.y27b{bottom:167.885333pt;}
.y449{bottom:169.192000pt;}
.y69{bottom:169.272000pt;}
.ya0{bottom:169.636800pt;}
.yd2{bottom:169.645333pt;}
.y2a1{bottom:169.649067pt;}
.y36a{bottom:169.664533pt;}
.y4ef{bottom:173.353467pt;}
.y306{bottom:176.373520pt;}
.y310{bottom:176.532453pt;}
.y19c{bottom:179.458667pt;}
.y168{bottom:179.487600pt;}
.y1d{bottom:180.340800pt;}
.y2d{bottom:180.340933pt;}
.y1fb{bottom:181.952000pt;}
.y26b{bottom:182.045200pt;}
.y1c5{bottom:182.045333pt;}
.y235{bottom:182.125200pt;}
.y488{bottom:182.986267pt;}
.y27a{bottom:183.885333pt;}
.y103{bottom:184.618667pt;}
.y448{bottom:185.192000pt;}
.y68{bottom:185.272000pt;}
.y9f{bottom:185.636800pt;}
.yd1{bottom:185.645333pt;}
.y2a0{bottom:185.649067pt;}
.y4ee{bottom:188.500133pt;}
.y30f{bottom:190.942893pt;}
.y305{bottom:190.950280pt;}
.y364{bottom:194.568667pt;}
.y19b{bottom:195.458667pt;}
.y167{bottom:195.487600pt;}
.y1c{bottom:196.340800pt;}
.y2c{bottom:196.340933pt;}
.y1fa{bottom:197.952000pt;}
.y26a{bottom:198.045200pt;}
.y234{bottom:198.125200pt;}
.y487{bottom:198.986267pt;}
.y279{bottom:199.885333pt;}
.y369{bottom:200.784533pt;}
.y447{bottom:201.192000pt;}
.y67{bottom:201.272000pt;}
.y9e{bottom:201.636800pt;}
.yd0{bottom:201.645333pt;}
.y29f{bottom:201.649067pt;}
.y47a{bottom:202.912000pt;}
.y4ed{bottom:203.476133pt;}
.y304{bottom:205.360720pt;}
.y30e{bottom:205.519653pt;}
.y19a{bottom:211.458667pt;}
.y166{bottom:211.487600pt;}
.y1b{bottom:212.340800pt;}
.y2b{bottom:212.340933pt;}
.y1c4{bottom:212.792000pt;}
.y1f9{bottom:213.952000pt;}
.y269{bottom:214.045200pt;}
.y233{bottom:214.125200pt;}
.y486{bottom:214.986267pt;}
.y278{bottom:215.885333pt;}
.y102{bottom:216.872000pt;}
.y446{bottom:217.192000pt;}
.y66{bottom:217.272000pt;}
.y9d{bottom:217.636800pt;}
.ycf{bottom:217.645333pt;}
.y29e{bottom:217.649067pt;}
.y4ec{bottom:218.622800pt;}
.y479{bottom:218.912000pt;}
.y303{bottom:219.961240pt;}
.y30d{bottom:219.965733pt;}
.y4e9{bottom:227.102800pt;}
.y199{bottom:227.458667pt;}
.y165{bottom:227.487600pt;}
.y1a{bottom:228.340800pt;}
.y2a{bottom:228.340933pt;}
.y1f8{bottom:229.952000pt;}
.y268{bottom:230.045200pt;}
.y232{bottom:230.125200pt;}
.y485{bottom:230.986267pt;}
.y373{bottom:231.170667pt;}
.y277{bottom:231.885333pt;}
.y101{bottom:232.872000pt;}
.y445{bottom:233.192000pt;}
.y65{bottom:233.272000pt;}
.y9c{bottom:233.636800pt;}
.yce{bottom:233.645333pt;}
.y29d{bottom:233.649067pt;}
.y4eb{bottom:233.769467pt;}
.y301{bottom:234.538000pt;}
.y30c{bottom:234.542493pt;}
.y478{bottom:234.912000pt;}
.y4e8{bottom:240.436133pt;}
.y1c3{bottom:242.125333pt;}
.y198{bottom:243.458667pt;}
.y19{bottom:244.340800pt;}
.y29{bottom:244.340933pt;}
.y1f7{bottom:245.952000pt;}
.y267{bottom:246.045200pt;}
.y231{bottom:246.125200pt;}
.y484{bottom:246.986267pt;}
.y276{bottom:247.885333pt;}
.y100{bottom:248.872000pt;}
.y4ea{bottom:248.916133pt;}
.y302{bottom:248.948440pt;}
.y300{bottom:248.952933pt;}
.y444{bottom:249.192000pt;}
.y64{bottom:249.272000pt;}
.y9b{bottom:249.636800pt;}
.ycd{bottom:249.645333pt;}
.y29c{bottom:249.649067pt;}
.y422{bottom:250.495200pt;}
.y477{bottom:250.912000pt;}
.y423{bottom:252.871467pt;}
.y197{bottom:259.458667pt;}
.y18{bottom:260.340800pt;}
.y28{bottom:260.340933pt;}
.y164{bottom:260.807600pt;}
.y1f6{bottom:261.952000pt;}
.y266{bottom:262.045200pt;}
.y230{bottom:262.125200pt;}
.y483{bottom:262.986267pt;}
.y275{bottom:263.885333pt;}
.y4e7{bottom:264.052133pt;}
.y2e7{bottom:264.139400pt;}
.yff{bottom:264.872000pt;}
.y443{bottom:265.192000pt;}
.y63{bottom:265.272000pt;}
.y9a{bottom:265.636800pt;}
.ycc{bottom:265.645333pt;}
.y29b{bottom:265.649067pt;}
.y476{bottom:266.912000pt;}
.y421{bottom:267.281907pt;}
.y196{bottom:275.458667pt;}
.y17{bottom:276.340800pt;}
.y27{bottom:276.340933pt;}
.y163{bottom:276.807600pt;}
.y1f5{bottom:277.952000pt;}
.y265{bottom:278.045200pt;}
.y22f{bottom:278.125200pt;}
.y1c2{bottom:278.125333pt;}
.y2e6{bottom:278.716160pt;}
.y4e6{bottom:279.198800pt;}
.y274{bottom:279.885333pt;}
.yfe{bottom:280.872000pt;}
.y442{bottom:281.192000pt;}
.y62{bottom:281.272000pt;}
.y99{bottom:281.636800pt;}
.ycb{bottom:281.645333pt;}
.y29a{bottom:281.649067pt;}
.y420{bottom:281.858667pt;}
.y475{bottom:282.912000pt;}
.y195{bottom:291.458667pt;}
.y16{bottom:292.340800pt;}
.y26{bottom:292.340933pt;}
.y2ff{bottom:292.516760pt;}
.y162{bottom:292.807600pt;}
.y2e5{bottom:293.126600pt;}
.y1f4{bottom:293.952000pt;}
.y264{bottom:294.045200pt;}
.y22e{bottom:294.125200pt;}
.y1c1{bottom:294.125333pt;}
.y4e5{bottom:294.174800pt;}
.y273{bottom:295.885333pt;}
.y41f{bottom:296.269107pt;}
.y372{bottom:296.550267pt;}
.y2a8{bottom:296.551067pt;}
.yfd{bottom:296.872000pt;}
.y441{bottom:297.192000pt;}
.y61{bottom:297.272000pt;}
.y98{bottom:297.636800pt;}
.yca{bottom:297.645333pt;}
.y299{bottom:297.649067pt;}
.y482{bottom:297.653333pt;}
.y474{bottom:298.912000pt;}
.y2fe{bottom:306.866347pt;}
.y194{bottom:307.458667pt;}
.y2e4{bottom:307.703360pt;}
.y15{bottom:308.340800pt;}
.y25{bottom:308.340933pt;}
.y161{bottom:308.807600pt;}
.y4e4{bottom:309.321467pt;}
.y1f3{bottom:309.952000pt;}
.y263{bottom:310.045200pt;}
.y22d{bottom:310.125200pt;}
.y1c0{bottom:310.125333pt;}
.y41e{bottom:310.845867pt;}
.y272{bottom:311.885333pt;}
.yfc{bottom:312.872000pt;}
.y440{bottom:313.192000pt;}
.y60{bottom:313.272000pt;}
.y97{bottom:313.636800pt;}
.yc9{bottom:313.645333pt;}
.y298{bottom:313.649067pt;}
.y2fd{bottom:321.443107pt;}
.y2e3{bottom:322.113800pt;}
.y193{bottom:323.458667pt;}
.y14{bottom:324.340800pt;}
.y24{bottom:324.340933pt;}
.y4e3{bottom:324.468133pt;}
.y160{bottom:324.807600pt;}
.y4e0{bottom:325.374800pt;}
.y41d{bottom:325.422627pt;}
.y1f2{bottom:325.952000pt;}
.y262{bottom:326.045200pt;}
.y22c{bottom:326.125200pt;}
.y1bf{bottom:326.125333pt;}
.y271{bottom:327.885333pt;}
.yfb{bottom:328.872000pt;}
.y43f{bottom:329.192000pt;}
.y5f{bottom:329.272000pt;}
.y96{bottom:329.636800pt;}
.yc8{bottom:329.645333pt;}
.y297{bottom:329.649067pt;}
.y473{bottom:330.032000pt;}
.y2fc{bottom:336.019867pt;}
.y2e2{bottom:336.690560pt;}
.y4df{bottom:338.708133pt;}
.y192{bottom:339.458667pt;}
.y4e2{bottom:339.614800pt;}
.y41c{bottom:339.833067pt;}
.y13{bottom:340.340800pt;}
.y23{bottom:340.340933pt;}
.y15f{bottom:340.807600pt;}
.y1f1{bottom:341.952000pt;}
.y261{bottom:342.045200pt;}
.y22b{bottom:342.125200pt;}
.y1be{bottom:342.125333pt;}
.yfa{bottom:344.872000pt;}
.y43e{bottom:345.192000pt;}
.y5e{bottom:345.272000pt;}
.y95{bottom:345.636800pt;}
.yc7{bottom:345.645333pt;}
.y296{bottom:345.649067pt;}
.y2fb{bottom:350.596627pt;}
.y2e1{bottom:351.267320pt;}
.y41a{bottom:354.406000pt;}
.y41b{bottom:354.409827pt;}
.y4e1{bottom:354.761467pt;}
.y191{bottom:355.458667pt;}
.y12{bottom:356.340800pt;}
.y22{bottom:356.340933pt;}
.y15e{bottom:356.807600pt;}
.y1f0{bottom:357.952000pt;}
.y260{bottom:358.045200pt;}
.y22a{bottom:358.125200pt;}
.y1bd{bottom:358.125333pt;}
.y270{bottom:359.005333pt;}
.yf9{bottom:360.872000pt;}
.y43d{bottom:361.192000pt;}
.y5d{bottom:361.272000pt;}
.y94{bottom:361.636800pt;}
.yc6{bottom:361.645333pt;}
.y295{bottom:361.649067pt;}
.y472{bottom:361.712000pt;}
.y2fa{bottom:365.173387pt;}
.y2e0{bottom:365.677760pt;}
.y481{bottom:368.330000pt;}
.y419{bottom:368.820267pt;}
.y4de{bottom:369.897467pt;}
.y190{bottom:371.458667pt;}
.y11{bottom:372.340800pt;}
.y21{bottom:372.340933pt;}
.y15d{bottom:372.807600pt;}
.y1ef{bottom:373.952000pt;}
.y25f{bottom:374.045200pt;}
.y229{bottom:374.125200pt;}
.y1bc{bottom:374.125333pt;}
.y43c{bottom:377.192000pt;}
.y5c{bottom:377.272000pt;}
.y93{bottom:377.636800pt;}
.yc5{bottom:377.645333pt;}
.y294{bottom:377.649067pt;}
.y471{bottom:377.712000pt;}
.y2f9{bottom:379.750147pt;}
.y2df{bottom:380.254520pt;}
.y418{bottom:384.026267pt;}
.y480{bottom:384.330000pt;}
.y4dd{bottom:385.044133pt;}
.y18f{bottom:387.458667pt;}
.y15c{bottom:388.807600pt;}
.y1ee{bottom:389.952000pt;}
.y25e{bottom:390.045200pt;}
.y228{bottom:390.125200pt;}
.y1bb{bottom:390.125333pt;}
.yf8{bottom:392.552000pt;}
.y43b{bottom:393.192000pt;}
.y5b{bottom:393.272000pt;}
.y92{bottom:393.636800pt;}
.y293{bottom:393.649067pt;}
.y470{bottom:393.712000pt;}
.y2f8{bottom:394.160587pt;}
.y2de{bottom:394.831280pt;}
.y417{bottom:398.436707pt;}
.y4dc{bottom:400.020133pt;}
.y10{bottom:400.813333pt;}
.y18e{bottom:403.458667pt;}
.y15b{bottom:404.807600pt;}
.y1ed{bottom:405.952000pt;}
.y25d{bottom:406.045200pt;}
.y227{bottom:406.125200pt;}
.y1ba{bottom:406.125333pt;}
.yf7{bottom:408.552000pt;}
.y2f7{bottom:408.737347pt;}
.yc4{bottom:408.765333pt;}
.y5a{bottom:409.272000pt;}
.y2dd{bottom:409.408040pt;}
.y91{bottom:409.636800pt;}
.y292{bottom:409.649067pt;}
.y46f{bottom:409.712000pt;}
.y416{bottom:413.013467pt;}
.y4db{bottom:415.166800pt;}
.y47f{bottom:415.448133pt;}
.y18d{bottom:419.458667pt;}
.y15a{bottom:420.807600pt;}
.y1ec{bottom:421.952000pt;}
.y25c{bottom:422.045200pt;}
.y226{bottom:422.125200pt;}
.y1b9{bottom:422.125333pt;}
.y2f6{bottom:423.147787pt;}
.y4d8{bottom:423.646800pt;}
.y2dc{bottom:423.984800pt;}
.y43a{bottom:424.312000pt;}
.yf6{bottom:424.552000pt;}
.y59{bottom:425.272000pt;}
.y90{bottom:425.636800pt;}
.y291{bottom:425.649067pt;}
.y46e{bottom:425.712000pt;}
.y415{bottom:427.625867pt;}
.y4da{bottom:430.313467pt;}
.y18c{bottom:435.458667pt;}
.y159{bottom:436.807600pt;}
.y4d7{bottom:436.980133pt;}
.y2f5{bottom:437.760187pt;}
.y1eb{bottom:437.952000pt;}
.y25b{bottom:438.045200pt;}
.y225{bottom:438.125200pt;}
.y1b8{bottom:438.125333pt;}
.y2db{bottom:438.581360pt;}
.yc3{bottom:439.885333pt;}
.y439{bottom:440.312000pt;}
.yf5{bottom:440.552000pt;}
.y58{bottom:441.272000pt;}
.y8f{bottom:441.636800pt;}
.y290{bottom:441.649067pt;}
.y46d{bottom:441.712000pt;}
.y414{bottom:442.036307pt;}
.y4d9{bottom:445.460133pt;}
.y18b{bottom:451.458667pt;}
.y2f4{bottom:452.336947pt;}
.y158{bottom:452.807600pt;}
.y2da{bottom:452.991800pt;}
.y1ea{bottom:453.952000pt;}
.y25a{bottom:454.045200pt;}
.y224{bottom:454.125200pt;}
.y1b7{bottom:454.125333pt;}
.yc2{bottom:455.885333pt;}
.y413{bottom:456.613067pt;}
.y8e{bottom:457.636800pt;}
.y28f{bottom:457.649067pt;}
.y46c{bottom:457.712000pt;}
.y4d6{bottom:460.596133pt;}
.y4ab{bottom:461.236933pt;}
.y13f{bottom:465.348000pt;}
.y2f3{bottom:466.913707pt;}
.y18a{bottom:467.458667pt;}
.y2d9{bottom:467.568560pt;}
.y157{bottom:468.807600pt;}
.y1e9{bottom:469.952000pt;}
.y259{bottom:470.045200pt;}
.y223{bottom:470.125200pt;}
.y1b6{bottom:470.125333pt;}
.y412{bottom:471.023507pt;}
.y438{bottom:471.658667pt;}
.yf4{bottom:471.672000pt;}
.yc1{bottom:471.885333pt;}
.y8d{bottom:473.636800pt;}
.y28e{bottom:473.649067pt;}
.yf{bottom:474.157200pt;}
.y57{bottom:475.032000pt;}
.y4d5{bottom:475.742800pt;}
.y4aa{bottom:477.236933pt;}
.y2f2{bottom:481.490467pt;}
.y2d8{bottom:482.145320pt;}
.y189{bottom:483.458667pt;}
.y156{bottom:484.807600pt;}
.y411{bottom:485.600267pt;}
.y1e8{bottom:485.952000pt;}
.y258{bottom:486.045200pt;}
.y222{bottom:486.125200pt;}
.y1b5{bottom:486.125333pt;}
.y437{bottom:487.658667pt;}
.yc0{bottom:487.885333pt;}
.y46b{bottom:488.832000pt;}
.y8c{bottom:489.636800pt;}
.y28d{bottom:489.649067pt;}
.y4d4{bottom:490.718800pt;}
.y4d3{bottom:491.625467pt;}
.y4a9{bottom:493.236933pt;}
.y2f1{bottom:496.067227pt;}
.y2d7{bottom:496.722080pt;}
.y13e{bottom:496.785600pt;}
.y11d{bottom:497.325333pt;}
.ye{bottom:497.716133pt;}
.y188{bottom:499.458667pt;}
.y410{bottom:500.010707pt;}
.y155{bottom:500.807600pt;}
.y1e7{bottom:501.952000pt;}
.y257{bottom:502.045200pt;}
.y221{bottom:502.125200pt;}
.y1b4{bottom:502.125333pt;}
.y436{bottom:503.658667pt;}
.ybf{bottom:503.885333pt;}
.yf3{bottom:503.925333pt;}
.y8b{bottom:505.636800pt;}
.y4d2{bottom:505.865467pt;}
.y4a8{bottom:509.236933pt;}
.y2f0{bottom:510.643987pt;}
.y56{bottom:511.032000pt;}
.y2d6{bottom:511.298840pt;}
.y13d{bottom:512.785600pt;}
.y11c{bottom:513.325333pt;}
.y40f{bottom:514.587467pt;}
.y187{bottom:515.458667pt;}
.y154{bottom:516.807600pt;}
.y1e6{bottom:517.952000pt;}
.y256{bottom:518.045200pt;}
.y220{bottom:518.125200pt;}
.y1b3{bottom:518.125333pt;}
.y435{bottom:519.658667pt;}
.ybe{bottom:519.885333pt;}
.yf2{bottom:519.925333pt;}
.y46a{bottom:520.512000pt;}
.y28c{bottom:520.769067pt;}
.y4d1{bottom:521.012133pt;}
.y8a{bottom:521.636800pt;}
.y2ef{bottom:525.220747pt;}
.y4a7{bottom:525.236933pt;}
.y2d5{bottom:525.709280pt;}
.y55{bottom:527.032000pt;}
.y13c{bottom:528.785600pt;}
.y11b{bottom:529.325333pt;}
.y409{bottom:529.794400pt;}
.y186{bottom:531.458667pt;}
.y153{bottom:532.807600pt;}
.y1e5{bottom:533.952000pt;}
.y21f{bottom:534.125200pt;}
.y1b2{bottom:534.125333pt;}
.y434{bottom:535.658667pt;}
.ybd{bottom:535.885333pt;}
.yf1{bottom:535.925333pt;}
.y4d0{bottom:535.988133pt;}
.y469{bottom:536.512000pt;}
.y4cf{bottom:536.894800pt;}
.y89{bottom:537.636800pt;}
.y2ee{bottom:539.797507pt;}
.y2d4{bottom:540.286040pt;}
.y4a6{bottom:541.236933pt;}
.y54{bottom:543.032000pt;}
.y40e{bottom:543.407293pt;}
.y408{bottom:544.204840pt;}
.y13b{bottom:544.785600pt;}
.y185{bottom:547.458667pt;}
.y152{bottom:548.807600pt;}
.y1e4{bottom:549.952000pt;}
.y21e{bottom:550.125200pt;}
.y1b1{bottom:550.125333pt;}
.y255{bottom:550.858533pt;}
.y4ce{bottom:551.067467pt;}
.y433{bottom:551.658667pt;}
.ybc{bottom:551.885333pt;}
.y28b{bottom:551.889067pt;}
.yf0{bottom:551.925333pt;}
.y468{bottom:552.512000pt;}
.y88{bottom:553.645333pt;}
.y2ed{bottom:554.374267pt;}
.y2d3{bottom:554.696480pt;}
.y4a5{bottom:557.236933pt;}
.y40d{bottom:557.984053pt;}
.y407{bottom:558.781600pt;}
.y53{bottom:559.032000pt;}
.y13a{bottom:560.785600pt;}
.y11a{bottom:562.338667pt;}
.y184{bottom:563.458667pt;}
.y151{bottom:564.807600pt;}
.y1e3{bottom:565.952000pt;}
.y21d{bottom:566.125200pt;}
.y1b0{bottom:566.125333pt;}
.y4cd{bottom:566.214133pt;}
.y432{bottom:567.658667pt;}
.ybb{bottom:567.885333pt;}
.yef{bottom:567.925333pt;}
.y467{bottom:568.512000pt;}
.y2ec{bottom:568.951027pt;}
.y2d2{bottom:569.273240pt;}
.y87{bottom:569.645333pt;}
.y40c{bottom:572.394493pt;}
.y406{bottom:573.192040pt;}
.y4a4{bottom:573.236933pt;}
.y52{bottom:575.032000pt;}
.yd{bottom:575.746400pt;}
.y139{bottom:576.785600pt;}
.y119{bottom:578.338667pt;}
.y183{bottom:579.458667pt;}
.y150{bottom:580.807600pt;}
.y4cc{bottom:581.360800pt;}
.y1e2{bottom:581.952000pt;}
.y254{bottom:581.978533pt;}
.y21c{bottom:582.125200pt;}
.y1af{bottom:582.125333pt;}
.y2eb{bottom:583.527787pt;}
.y431{bottom:583.658667pt;}
.y2d1{bottom:583.850000pt;}
.yba{bottom:583.885333pt;}
.yee{bottom:583.925333pt;}
.y466{bottom:584.512000pt;}
.y86{bottom:585.645333pt;}
.y40b{bottom:586.971253pt;}
.y405{bottom:587.768800pt;}
.y4a3{bottom:589.236933pt;}
.y51{bottom:591.032000pt;}
.yc{bottom:591.742400pt;}
.y138{bottom:592.785600pt;}
.y118{bottom:594.338667pt;}
.y182{bottom:595.458667pt;}
.y4cb{bottom:596.507467pt;}
.y14f{bottom:596.807600pt;}
.y1e1{bottom:597.952000pt;}
.y2ea{bottom:598.104547pt;}
.y2d0{bottom:598.105733pt;}
.y21b{bottom:598.125200pt;}
.y1ae{bottom:598.125333pt;}
.y430{bottom:599.658667pt;}
.yb9{bottom:599.885333pt;}
.yed{bottom:599.925333pt;}
.y465{bottom:600.512000pt;}
.y40a{bottom:601.381693pt;}
.y85{bottom:601.645333pt;}
.y404{bottom:602.024533pt;}
.y4a2{bottom:605.236933pt;}
.y50{bottom:607.032000pt;}
.y137{bottom:608.785600pt;}
.y117{bottom:610.338667pt;}
.y181{bottom:611.458667pt;}
.y4ca{bottom:611.654133pt;}
.y2e9{bottom:612.514987pt;}
.y2cf{bottom:612.669427pt;}
.y14e{bottom:612.807600pt;}
.y253{bottom:613.098533pt;}
.y4c5{bottom:613.478133pt;}
.y1e0{bottom:613.952000pt;}
.y21a{bottom:614.125200pt;}
.y1ad{bottom:614.125333pt;}
.yb{bottom:615.301467pt;}
.y42f{bottom:615.658667pt;}
.yb8{bottom:615.885333pt;}
.yec{bottom:615.925333pt;}
.y403{bottom:615.958453pt;}
.y464{bottom:616.512000pt;}
.y84{bottom:617.645333pt;}
.y4a1{bottom:621.236933pt;}
.y4f{bottom:623.032000pt;}
.y136{bottom:624.785600pt;}
.y116{bottom:626.338667pt;}
.y4c9{bottom:626.800800pt;}
.y4c4{bottom:626.811467pt;}
.y2e8{bottom:627.091747pt;}
.y2ce{bottom:627.246187pt;}
.y180{bottom:627.458667pt;}
.y14d{bottom:628.805333pt;}
.y252{bottom:629.098533pt;}
.y1df{bottom:629.952000pt;}
.y219{bottom:630.125200pt;}
.y1ac{bottom:630.125333pt;}
.y402{bottom:630.404533pt;}
.y42e{bottom:631.658667pt;}
.yb7{bottom:631.885333pt;}
.yeb{bottom:631.925333pt;}
.y83{bottom:633.645333pt;}
.y4a0{bottom:637.236933pt;}
.y4e{bottom:639.032000pt;}
.y4c3{bottom:640.144800pt;}
.y135{bottom:640.785600pt;}
.y2cd{bottom:641.692267pt;}
.y4c8{bottom:641.947467pt;}
.y115{bottom:642.338667pt;}
.y17f{bottom:643.458667pt;}
.y14c{bottom:644.805333pt;}
.y251{bottom:645.098533pt;}
.y401{bottom:645.772773pt;}
.y1de{bottom:645.952000pt;}
.y218{bottom:646.125200pt;}
.y1ab{bottom:646.125333pt;}
.y463{bottom:647.632000pt;}
.y42d{bottom:647.658667pt;}
.yb6{bottom:647.885333pt;}
.yea{bottom:647.925333pt;}
.y82{bottom:649.645333pt;}
.y49f{bottom:653.236933pt;}
.y2c9{bottom:653.729333pt;}
.y4d{bottom:655.032000pt;}
.y134{bottom:656.785600pt;}
.y4c7{bottom:657.094133pt;}
.y114{bottom:658.338667pt;}
.y17e{bottom:659.458667pt;}
.y400{bottom:660.349533pt;}
.y14b{bottom:660.805333pt;}
.y250{bottom:661.098533pt;}
.y1dd{bottom:661.952000pt;}
.y217{bottom:662.125200pt;}
.y1aa{bottom:662.125333pt;}
.y42c{bottom:663.658667pt;}
.yb5{bottom:663.885333pt;}
.ye9{bottom:663.925333pt;}
.y81{bottom:665.645333pt;}
.y49e{bottom:669.236933pt;}
.y4c{bottom:671.032000pt;}
.y2cb{bottom:671.629333pt;}
.y4c6{bottom:672.240800pt;}
.y133{bottom:672.785600pt;}
.y113{bottom:674.338667pt;}
.y3ff{bottom:674.759973pt;}
.y17d{bottom:675.458667pt;}
.y14a{bottom:676.805333pt;}
.y24f{bottom:677.098533pt;}
.y1dc{bottom:677.952000pt;}
.y216{bottom:678.125200pt;}
.y1a9{bottom:678.125333pt;}
.ya{bottom:678.182933pt;}
.y462{bottom:679.312000pt;}
.y42b{bottom:679.658667pt;}
.y28a{bottom:679.885333pt;}
.ye8{bottom:679.925333pt;}
.y80{bottom:681.645333pt;}
.y49d{bottom:685.236933pt;}
.y4b{bottom:687.032000pt;}
.y4c2{bottom:687.387467pt;}
.y132{bottom:688.785600pt;}
.y3fd{bottom:689.356667pt;}
.y3fe{bottom:689.360493pt;}
.y112{bottom:690.338667pt;}
.y17c{bottom:691.458667pt;}
.y149{bottom:692.805333pt;}
.y24e{bottom:693.098533pt;}
.y9{bottom:693.254933pt;}
.y1db{bottom:693.952000pt;}
.y215{bottom:694.125200pt;}
.y1a8{bottom:694.125333pt;}
.yb4{bottom:695.005333pt;}
.y461{bottom:695.312000pt;}
.y42a{bottom:695.658667pt;}
.y289{bottom:695.885333pt;}
.ye7{bottom:695.925333pt;}
.y7f{bottom:697.645333pt;}
.y2a7{bottom:697.962667pt;}
.y49c{bottom:701.236933pt;}
.y4c1{bottom:702.534133pt;}
.y4a{bottom:703.032000pt;}
.y3fc{bottom:703.770933pt;}
.y131{bottom:704.785600pt;}
.y111{bottom:706.338667pt;}
.y17b{bottom:707.458667pt;}
.y8{bottom:708.326933pt;}
.y148{bottom:708.805333pt;}
.y24d{bottom:709.098533pt;}
.y1da{bottom:709.952000pt;}
.y214{bottom:710.125200pt;}
.y1a7{bottom:710.125333pt;}
.yb3{bottom:711.005333pt;}
.y460{bottom:711.312000pt;}
.y429{bottom:711.658667pt;}
.y288{bottom:711.885333pt;}
.y7e{bottom:713.645333pt;}
.y2bb{bottom:715.682880pt;}
.y49b{bottom:717.236933pt;}
.y4c0{bottom:717.680800pt;}
.y3ee{bottom:718.973373pt;}
.y2c8{bottom:719.012707pt;}
.y130{bottom:720.785600pt;}
.y110{bottom:722.338667pt;}
.y7{bottom:723.398933pt;}
.y147{bottom:724.805333pt;}
.y24c{bottom:725.098533pt;}
.y1d9{bottom:725.952000pt;}
.y213{bottom:726.125200pt;}
.y1a6{bottom:726.125333pt;}
.yb2{bottom:727.005333pt;}
.y45f{bottom:727.312000pt;}
.ye6{bottom:727.605333pt;}
.y428{bottom:727.658667pt;}
.y287{bottom:727.885333pt;}
.y2ba{bottom:730.259640pt;}
.y4bf{bottom:732.827467pt;}
.y49a{bottom:733.236933pt;}
.y2c7{bottom:733.423147pt;}
.y3ed{bottom:733.534307pt;}
.y4bd{bottom:734.640800pt;}
.y12f{bottom:736.785600pt;}
.y49{bottom:736.792000pt;}
.y10f{bottom:738.338667pt;}
.y6{bottom:738.470933pt;}
.y146{bottom:740.805333pt;}
.y24b{bottom:741.098533pt;}
.y1d8{bottom:741.952000pt;}
.y212{bottom:742.125200pt;}
.y1a5{bottom:742.125333pt;}
.yb1{bottom:743.005333pt;}
.y45e{bottom:743.312000pt;}
.ye5{bottom:743.605333pt;}
.y427{bottom:743.658667pt;}
.y286{bottom:743.885333pt;}
.y7d{bottom:744.765333pt;}
.y2b9{bottom:744.836400pt;}
.y3ec{bottom:747.944747pt;}
.y4bc{bottom:747.974133pt;}
.y2c6{bottom:747.999907pt;}
.y499{bottom:749.236933pt;}
.y12e{bottom:752.785600pt;}
.y5{bottom:753.542933pt;}
.y10e{bottom:754.338667pt;}
.y145{bottom:756.805333pt;}
.y24a{bottom:757.098533pt;}
.y1d7{bottom:757.952000pt;}
.y211{bottom:758.125200pt;}
.y1a4{bottom:758.125333pt;}
.yb0{bottom:759.005333pt;}
.y2b8{bottom:759.246840pt;}
.y45d{bottom:759.312000pt;}
.ye4{bottom:759.605333pt;}
.y285{bottom:759.885333pt;}
.y4bb{bottom:761.307467pt;}
.y2c5{bottom:762.410347pt;}
.y3eb{bottom:762.521507pt;}
.y3fb{bottom:763.004573pt;}
.y4be{bottom:763.120800pt;}
.y498{bottom:765.236933pt;}
.y12d{bottom:768.785600pt;}
.y10d{bottom:770.338667pt;}
.y48{bottom:771.458667pt;}
.y144{bottom:772.805333pt;}
.y249{bottom:773.098533pt;}
.y2b7{bottom:773.823600pt;}
.y1d6{bottom:773.952000pt;}
.y210{bottom:774.125200pt;}
.y1a3{bottom:774.125333pt;}
.y426{bottom:774.778667pt;}
.yaf{bottom:775.005333pt;}
.y45c{bottom:775.312000pt;}
.ye3{bottom:775.605333pt;}
.y284{bottom:775.885333pt;}
.y4{bottom:776.168667pt;}
.y2c4{bottom:776.987107pt;}
.y7c{bottom:777.018667pt;}
.y3ea{bottom:777.098267pt;}
.y3fa{bottom:777.581333pt;}
.y4ba{bottom:778.256800pt;}
.y3da{bottom:778.510133pt;}
.y497{bottom:781.236933pt;}
.y12c{bottom:784.785600pt;}
.y10c{bottom:786.338667pt;}
.y2b6{bottom:788.234040pt;}
.y143{bottom:788.805333pt;}
.y248{bottom:789.098533pt;}
.y1d5{bottom:789.952000pt;}
.y20f{bottom:790.125200pt;}
.y1a2{bottom:790.125333pt;}
.yae{bottom:791.005333pt;}
.y45b{bottom:791.312000pt;}
.y2c3{bottom:791.563867pt;}
.ye2{bottom:791.605333pt;}
.y3e9{bottom:791.675027pt;}
.y283{bottom:791.885333pt;}
.y3f9{bottom:791.991773pt;}
.y7b{bottom:793.018667pt;}
.y3d3{bottom:793.236587pt;}
.y4b9{bottom:793.403467pt;}
.y496{bottom:797.236933pt;}
.y12b{bottom:800.785600pt;}
.y10b{bottom:802.338667pt;}
.y2b5{bottom:802.810800pt;}
.y142{bottom:804.805333pt;}
.y247{bottom:805.098533pt;}
.y1d4{bottom:805.952000pt;}
.y2c2{bottom:805.974307pt;}
.y3e8{bottom:806.081453pt;}
.y20e{bottom:806.125200pt;}
.y1a1{bottom:806.125333pt;}
.y3f8{bottom:806.568533pt;}
.yad{bottom:807.005333pt;}
.y45a{bottom:807.312000pt;}
.ye1{bottom:807.605333pt;}
.y3d2{bottom:807.647027pt;}
.y282{bottom:807.885333pt;}
.y3d9{bottom:808.122227pt;}
.y4b8{bottom:808.550133pt;}
.y7a{bottom:809.018667pt;}
.y495{bottom:813.236933pt;}
.y12a{bottom:816.785600pt;}
.y2b4{bottom:817.221240pt;}
.y2c1{bottom:820.551067pt;}
.y3e7{bottom:820.658213pt;}
.y141{bottom:820.805333pt;}
.y246{bottom:821.098533pt;}
.y3f7{bottom:821.145293pt;}
.y1d3{bottom:821.952000pt;}
.y20d{bottom:822.125200pt;}
.y47{bottom:822.125333pt;}
.y17a{bottom:822.127600pt;}
.y3d1{bottom:822.223787pt;}
.y3d8{bottom:822.698987pt;}
.yac{bottom:823.005333pt;}
.y459{bottom:823.312000pt;}
.y4b7{bottom:823.526133pt;}
.ye0{bottom:823.605333pt;}
.y281{bottom:823.885333pt;}
.y79{bottom:825.018667pt;}
.y494{bottom:829.236933pt;}
.y2b3{bottom:831.798000pt;}
.y129{bottom:832.785600pt;}
.y2c0{bottom:834.961507pt;}
.y3e6{bottom:835.234973pt;}
.y3{bottom:835.297333pt;}
.y10a{bottom:835.352000pt;}
.y3f6{bottom:835.555733pt;}
.y3d0{bottom:836.800547pt;}
.y140{bottom:836.805333pt;}
.y245{bottom:837.098533pt;}
.y3d7{bottom:837.109427pt;}
.y1d2{bottom:837.952000pt;}
.y20c{bottom:838.125200pt;}
.y46{bottom:838.125333pt;}
.y179{bottom:838.127600pt;}
.y4b6{bottom:838.672800pt;}
.yab{bottom:839.005333pt;}
.y458{bottom:839.312000pt;}
.ydf{bottom:839.605333pt;}
.y280{bottom:839.885333pt;}
.y78{bottom:841.018667pt;}
.y493{bottom:845.236933pt;}
.y2b2{bottom:846.208440pt;}
.y128{bottom:848.785600pt;}
.y2bf{bottom:849.538267pt;}
.y3e5{bottom:849.799853pt;}
.y3f5{bottom:850.132493pt;}
.y109{bottom:851.352000pt;}
.y3cf{bottom:851.531747pt;}
.y3d6{bottom:851.686187pt;}
.y244{bottom:853.098533pt;}
.y4b5{bottom:853.819467pt;}
.y1d1{bottom:853.952000pt;}
.y20b{bottom:854.125200pt;}
.y45{bottom:854.125333pt;}
.y178{bottom:854.127600pt;}
.yaa{bottom:855.005333pt;}
.y457{bottom:855.312000pt;}
.y27f{bottom:855.885333pt;}
.y77{bottom:857.018667pt;}
.y2b1{bottom:860.785200pt;}
.y492{bottom:861.236933pt;}
.y4b3{bottom:861.392800pt;}
.y2be{bottom:863.948707pt;}
.y3e4{bottom:864.376613pt;}
.y3f4{bottom:864.542933pt;}
.y127{bottom:864.785600pt;}
.y3d5{bottom:866.096627pt;}
.y3ce{bottom:866.108507pt;}
.y108{bottom:867.352000pt;}
.y4b4{bottom:868.966133pt;}
.y243{bottom:869.098533pt;}
.y1d0{bottom:869.952000pt;}
.y20a{bottom:870.125200pt;}
.y44{bottom:870.125333pt;}
.y177{bottom:870.127600pt;}
.yde{bottom:870.725333pt;}
.ya9{bottom:871.005333pt;}
.y456{bottom:871.312000pt;}
.y76{bottom:873.018667pt;}
.y2b0{bottom:876.152934pt;}
.y491{bottom:877.236933pt;}
.y2bd{bottom:878.525467pt;}
.y3e3{bottom:878.953373pt;}
.y3f3{bottom:879.119693pt;}
.y3cd{bottom:880.518947pt;}
.y3d4{bottom:880.673387pt;}
.y126{bottom:880.785600pt;}
.y4b2{bottom:884.112800pt;}
.y242{bottom:885.098533pt;}
.y2{bottom:885.313067pt;}
.y1cf{bottom:885.952000pt;}
.y209{bottom:886.125200pt;}
.y43{bottom:886.125333pt;}
.y176{bottom:886.127600pt;}
.ya8{bottom:887.005333pt;}
.y455{bottom:887.312000pt;}
.y75{bottom:889.018667pt;}
.y2af{bottom:892.935907pt;}
.y490{bottom:893.236933pt;}
.y3e2{bottom:893.363813pt;}
.y3f2{bottom:893.530133pt;}
.y3cc{bottom:895.119467pt;}
.y125{bottom:896.785600pt;}
.y4b1{bottom:899.259467pt;}
.y107{bottom:900.365333pt;}
.y241{bottom:901.098533pt;}
.y1ce{bottom:901.952000pt;}
.y208{bottom:902.125200pt;}
.y42{bottom:902.125333pt;}
.y175{bottom:902.127600pt;}
.ydd{bottom:902.978667pt;}
.ya7{bottom:903.005333pt;}
.y454{bottom:903.312000pt;}
.y74{bottom:905.018667pt;}
.y2ae{bottom:907.548307pt;}
.y3e1{bottom:907.976213pt;}
.y3f1{bottom:908.142533pt;}
.y48f{bottom:909.236933pt;}
.y3cb{bottom:909.696227pt;}
.y124{bottom:912.785600pt;}
.y4b0{bottom:914.406133pt;}
.y240{bottom:917.098533pt;}
.y1cd{bottom:917.952000pt;}
.y207{bottom:918.125200pt;}
.y41{bottom:918.125333pt;}
.y174{bottom:918.127600pt;}
.ydc{bottom:918.978667pt;}
.ya6{bottom:919.005333pt;}
.y1{bottom:920.511867pt;}
.y73{bottom:921.018667pt;}
.y2ad{bottom:922.125067pt;}
.y3e0{bottom:922.552973pt;}
.y3ca{bottom:924.106667pt;}
.y48e{bottom:925.236933pt;}
.y123{bottom:928.785600pt;}
.y4af{bottom:929.382133pt;}
.y23f{bottom:933.098533pt;}
.y1cc{bottom:933.952000pt;}
.y206{bottom:934.125200pt;}
.y40{bottom:934.125333pt;}
.y173{bottom:934.127600pt;}
.y453{bottom:934.432000pt;}
.ydb{bottom:934.978667pt;}
.ya5{bottom:935.005333pt;}
.y2ac{bottom:936.535507pt;}
.y72{bottom:937.018667pt;}
.y3df{bottom:937.129733pt;}
.y3b1{bottom:939.293133pt;}
.y48d{bottom:941.236933pt;}
.y4ae{bottom:944.528800pt;}
.y122{bottom:944.785600pt;}
.y23e{bottom:949.098533pt;}
.y1cb{bottom:949.952000pt;}
.y205{bottom:950.125200pt;}
.y3f{bottom:950.125333pt;}
.y172{bottom:950.127600pt;}
.yda{bottom:950.978667pt;}
.y2ab{bottom:951.112267pt;}
.y3de{bottom:951.540173pt;}
.y3f0{bottom:951.706493pt;}
.y71{bottom:953.018667pt;}
.y3b0{bottom:953.869893pt;}
.y48c{bottom:957.236933pt;}
.y4ad{bottom:959.675467pt;}
.y121{bottom:960.785600pt;}
.y23d{bottom:965.098533pt;}
.y2aa{bottom:965.522707pt;}
.y1ca{bottom:965.952000pt;}
.y452{bottom:966.112000pt;}
.y3dd{bottom:966.116933pt;}
.y204{bottom:966.125200pt;}
.y3e{bottom:966.125333pt;}
.y171{bottom:966.127600pt;}
.yd9{bottom:966.978667pt;}
.y3c9{bottom:967.670493pt;}
.y3af{bottom:968.280333pt;}
.y70{bottom:969.018667pt;}
.y48b{bottom:973.236933pt;}
.y120{bottom:976.785600pt;}
.y2a9{bottom:980.099467pt;}
.y3dc{bottom:980.527373pt;}
.y3ef{bottom:980.693693pt;}
.y23c{bottom:981.098533pt;}
.y3c8{bottom:982.020080pt;}
.y451{bottom:982.112000pt;}
.y203{bottom:982.125200pt;}
.y3d{bottom:982.125333pt;}
.y170{bottom:982.127600pt;}
.y3ae{bottom:982.857093pt;}
.yd8{bottom:982.978667pt;}
.y4ac{bottom:983.337733pt;}
.y6f{bottom:985.018667pt;}
.y36{bottom:985.165333pt;}
.y48a{bottom:989.236933pt;}
.y11f{bottom:992.785600pt;}
.y3db{bottom:995.104133pt;}
.y3c7{bottom:996.596840pt;}
.y23b{bottom:997.098533pt;}
.y3ad{bottom:997.267533pt;}
.y450{bottom:998.112000pt;}
.y202{bottom:998.125200pt;}
.y3c{bottom:998.125333pt;}
.y16f{bottom:998.127600pt;}
.yd7{bottom:998.978667pt;}
.y2a5{bottom:1006.394667pt;}
.y3c6{bottom:1011.173600pt;}
.y3ac{bottom:1011.844293pt;}
.y44f{bottom:1014.112000pt;}
.y201{bottom:1014.125200pt;}
.y3b{bottom:1014.125333pt;}
.y16e{bottom:1014.127600pt;}
.y6e{bottom:1014.352000pt;}
.y4f6{bottom:1023.861067pt;}
.y11e{bottom:1023.903600pt;}
.y3c5{bottom:1025.750360pt;}
.y3ab{bottom:1026.421053pt;}
.y35{bottom:1029.431200pt;}
.yd6{bottom:1030.098667pt;}
.y23a{bottom:1030.111867pt;}
.y44e{bottom:1030.112000pt;}
.y200{bottom:1030.125200pt;}
.y3a{bottom:1030.125333pt;}
.y16d{bottom:1030.127600pt;}
.y6d{bottom:1030.352000pt;}
.y425{bottom:1031.038133pt;}
.y363{bottom:1031.049867pt;}
.y3c4{bottom:1040.327120pt;}
.y3aa{bottom:1040.831493pt;}
.y34{bottom:1041.431200pt;}
.y3c3{bottom:1054.903880pt;}
.y3a9{bottom:1055.408253pt;}
.y38{bottom:1061.414000pt;}
.ya4{bottom:1061.417600pt;}
.y39{bottom:1061.417733pt;}
.y3c2{bottom:1069.314320pt;}
.y3a8{bottom:1069.985013pt;}
.y3c1{bottom:1083.891080pt;}
.y3a7{bottom:1084.561773pt;}
.y3c0{bottom:1098.301520pt;}
.y3a6{bottom:1099.138533pt;}
.y3bf{bottom:1112.913920pt;}
.y3a5{bottom:1113.735227pt;}
.y3be{bottom:1127.490680pt;}
.y3a4{bottom:1128.145667pt;}
.y3bd{bottom:1142.067440pt;}
.y3a3{bottom:1142.722427pt;}
.y3bc{bottom:1156.644200pt;}
.y3a2{bottom:1157.299187pt;}
.y3bb{bottom:1171.220960pt;}
.y3a1{bottom:1171.875947pt;}
.y3ba{bottom:1185.797720pt;}
.y3a0{bottom:1186.452707pt;}
.y3b9{bottom:1200.374480pt;}
.y39f{bottom:1200.863147pt;}
.y3b8{bottom:1214.951240pt;}
.y39e{bottom:1215.439907pt;}
.y3b7{bottom:1229.528000pt;}
.y39d{bottom:1229.850347pt;}
.y3b6{bottom:1244.104760pt;}
.y39c{bottom:1244.427107pt;}
.y3b5{bottom:1258.681520pt;}
.y39b{bottom:1259.003867pt;}
.y3b4{bottom:1273.258280pt;}
.y39a{bottom:1273.259333pt;}
.y3b3{bottom:1287.668720pt;}
.y399{bottom:1287.823160pt;}
.y3b2{bottom:1302.245480pt;}
.y398{bottom:1302.399920pt;}
.y397{bottom:1316.846000pt;}
.y396{bottom:1346.782933pt;}
.y386{bottom:1390.836747pt;}
.y393{bottom:1394.166440pt;}
.y385{bottom:1405.413507pt;}
.y392{bottom:1408.576880pt;}
.y384{bottom:1419.990267pt;}
.y391{bottom:1423.153640pt;}
.y383{bottom:1434.400707pt;}
.y390{bottom:1437.564080pt;}
.y382{bottom:1448.977333pt;}
.y38f{bottom:1452.140840pt;}
.y381{bottom:1463.387773pt;}
.y38e{bottom:1466.717600pt;}
.y380{bottom:1477.964533pt;}
.y38d{bottom:1481.128040pt;}
.y37f{bottom:1492.374973pt;}
.y38c{bottom:1495.704800pt;}
.y37e{bottom:1506.951733pt;}
.y38b{bottom:1510.115240pt;}
.y37d{bottom:1521.362173pt;}
.y38a{bottom:1524.692000pt;}
.y37c{bottom:1535.938933pt;}
.y389{bottom:1539.102440pt;}
.y37b{bottom:1551.306668pt;}
.y388{bottom:1553.679200pt;}
.y394{bottom:1560.054667pt;}
.y37a{bottom:1568.089640pt;}
.y379{bottom:1582.702040pt;}
.y378{bottom:1597.278800pt;}
.y371{bottom:1604.288000pt;}
.y377{bottom:1611.689240pt;}
.y376{bottom:1626.266000pt;}
.y375{bottom:1640.676440pt;}
.y374{bottom:1655.253200pt;}
.y36f{bottom:1912.718667pt;}
.h24{height:-891.117333pt;}
.h25{height:-582.686667pt;}
.h28{height:-538.453333pt;}
.hf{height:14.560000pt;}
.h8{height:25.347656pt;}
.h33{height:29.208333pt;}
.h31{height:29.645833pt;}
.h34{height:29.915167pt;}
.h9{height:30.175781pt;}
.h32{height:30.833333pt;}
.h17{height:32.289469pt;}
.h4{height:33.351562pt;}
.h13{height:34.108594pt;}
.h27{height:34.109127pt;}
.h2c{height:34.124647pt;}
.h2b{height:34.156114pt;}
.h1e{height:34.171420pt;}
.h2d{height:34.171900pt;}
.h18{height:34.171954pt;}
.h1d{height:34.172487pt;}
.h1a{height:34.352007pt;}
.h11{height:34.503047pt;}
.hb{height:36.510417pt;}
.hc{height:37.031250pt;}
.h6{height:37.057292pt;}
.hd{height:37.066358pt;}
.h30{height:38.541667pt;}
.h2f{height:39.364401pt;}
.h7{height:39.364934pt;}
.h2e{height:39.367601pt;}
.he{height:39.379334pt;}
.h20{height:41.824568pt;}
.h23{height:41.826168pt;}
.h15{height:41.839875pt;}
.h21{height:41.840408pt;}
.h1f{height:41.855715pt;}
.h14{height:41.859448pt;}
.h2a{height:41.859928pt;}
.h22{height:41.877368pt;}
.h1c{height:41.878275pt;}
.h29{height:41.919075pt;}
.h19{height:41.919608pt;}
.h10{height:42.323738pt;}
.h16{height:43.590667pt;}
.ha{height:45.440000pt;}
.h3{height:45.760000pt;}
.h35{height:59.989333pt;}
.h5{height:61.013333pt;}
.h2{height:64.826667pt;}
.h12{height:307.784000pt;}
.h26{height:790.430667pt;}
.h1b{height:907.005333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:140.685333pt;}
.w2{width:167.921333pt;}
.w3{width:284.552000pt;}
.w5{width:595.869333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.644000pt;}
.x1{left:68.031467pt;}
.x23{left:75.995067pt;}
.xf{left:83.149600pt;}
.x14{left:84.598667pt;}
.x10{left:90.709600pt;}
.x8{left:98.267733pt;}
.x25{left:102.047200pt;}
.x21{left:108.222133pt;}
.xa{left:113.387600pt;}
.x1c{left:114.834667pt;}
.x22{left:117.155467pt;}
.x12{left:120.947600pt;}
.x2{left:148.959867pt;}
.x1a{left:176.022267pt;}
.x9{left:234.677733pt;}
.x16{left:253.161333pt;}
.x18{left:259.972667pt;}
.x1d{left:283.397333pt;}
.x1f{left:290.151067pt;}
.x7{left:326.403600pt;}
.x5{left:344.515333pt;}
.x3{left:391.184400pt;}
.x24{left:399.045733pt;}
.x4{left:406.304400pt;}
.x11{left:413.856267pt;}
.xb{left:421.414267pt;}
.xc{left:436.534800pt;}
.x13{left:444.094267pt;}
.x1b{left:461.361733pt;}
.x17{left:538.348000pt;}
.x19{left:545.159067pt;}
.x6{left:554.135333pt;}
.x1e{left:568.584000pt;}
.x20{left:575.383200pt;}
.xd{left:592.874400pt;}
.x2d{left:604.724400pt;}
.x2a{left:612.052533pt;}
.x29{left:617.684533pt;}
.x26{left:619.764533pt;}
.x2b{left:625.375200pt;}
.x2c{left:626.836400pt;}
.x28{left:628.884533pt;}
.x27{left:634.217867pt;}
.xe{left:676.683067pt;}
}




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