
    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_a2ab24187ae16eddefb855cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_de1724406fd98a3aa2709528.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_9e3e8bc36e6daf2f7988af74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e09dfe09e4cf0c31eb3e4bb6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_25e4ab292f1985754080008e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_7ff656bf796d065f3f591217.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_dc0f355beb9f3b3183fa6e33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_10cd2b24c95a360f15b30a98.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805000;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_b8ad024c1cf68cb154e8fda5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.808000;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_cf875ddb1bd4daf9be55aa34.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_b9dc1192931a12f59aa3b0f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.130371;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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls37{letter-spacing:-1.296000px;}
.ls23{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.252000px;}
.ls25{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.198000px;}
.ls9{letter-spacing:-0.172200px;}
.ls30{letter-spacing:-0.164400px;}
.ls3{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.132600px;}
.ls2b{letter-spacing:-0.115200px;}
.ls28{letter-spacing:-0.109200px;}
.ls2c{letter-spacing:-0.078000px;}
.ls2{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.069600px;}
.lsb{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.049680px;}
.ls33{letter-spacing:-0.048960px;}
.ls34{letter-spacing:-0.046080px;}
.ls40{letter-spacing:-0.036000px;}
.ls43{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000001px;}
.lse{letter-spacing:0.018720px;}
.ls31{letter-spacing:0.020160px;}
.ls3b{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.037440px;}
.ls32{letter-spacing:0.060600px;}
.ls24{letter-spacing:0.072000px;}
.ls3c{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.158400px;}
.ls3a{letter-spacing:0.174240px;}
.ls16{letter-spacing:0.195600px;}
.ls3d{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.233400px;}
.ls15{letter-spacing:0.262200px;}
.ls39{letter-spacing:0.262800px;}
.ls41{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.371400px;}
.ls42{letter-spacing:0.378000px;}
.ls17{letter-spacing:1.152000px;}
.ls1{letter-spacing:1.206000px;}
.ls1a{letter-spacing:1.340640px;}
.ls18{letter-spacing:1.476000px;}
.ls38{letter-spacing:1.584000px;}
.ls36{letter-spacing:1.728000px;}
.ls19{letter-spacing:7.938720px;}
.ls26{letter-spacing:10.224000px;}
.ls20{letter-spacing:23.904000px;}
.ls1f{letter-spacing:32.544000px;}
.ls11{letter-spacing:37.745280px;}
.ls35{letter-spacing:41.184000px;}
.ls1c{letter-spacing:49.104000px;}
.ls12{letter-spacing:57.161280px;}
.ls27{letter-spacing:59.345280px;}
.lsd{letter-spacing:60.065280px;}
.ls13{letter-spacing:69.425280px;}
.ls1b{letter-spacing:87.984000px;}
.lsf{letter-spacing:97.481280px;}
.ls14{letter-spacing:105.138720px;}
.ls10{letter-spacing:195.960000px;}
.ls6{letter-spacing:198.894240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-72.000000px;}
.ws1a{word-spacing:-66.240000px;}
.ws1{word-spacing:-44.640720px;}
.ws0{word-spacing:-43.434720px;}
.wsf{word-spacing:-40.032000px;}
.ws10{word-spacing:-28.097280px;}
.ws11{word-spacing:-27.961920px;}
.wsb{word-spacing:-26.658720px;}
.ws8{word-spacing:-26.640000px;}
.ws19{word-spacing:-26.621280px;}
.wsa{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws12{word-spacing:-19.944000px;}
.ws2{word-spacing:-19.872000px;}
.ws29{word-spacing:-19.800000px;}
.ws13{word-spacing:-19.728000px;}
.ws17{word-spacing:-19.584000px;}
.ws2a{word-spacing:-19.440000px;}
.ws18{word-spacing:-19.296000px;}
.ws16{word-spacing:-19.224001px;}
.wsc{word-spacing:-18.676920px;}
.wse{word-spacing:-18.610320px;}
.ws14{word-spacing:-18.414720px;}
.ws1b{word-spacing:-18.305520px;}
.ws21{word-spacing:-15.341640px;}
.ws1d{word-spacing:-15.203640px;}
.ws25{word-spacing:-15.030840px;}
.ws24{word-spacing:-14.990400px;}
.ws1c{word-spacing:-14.970240px;}
.ws27{word-spacing:-14.924160px;}
.ws26{word-spacing:-14.921280px;}
.ws20{word-spacing:-14.892240px;}
.ws28{word-spacing:-14.861040px;}
.ws1f{word-spacing:-14.855040px;}
.ws22{word-spacing:-14.837640px;}
.ws23{word-spacing:-14.805840px;}
.ws1e{word-spacing:-14.754240px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws2b{word-spacing:-12.204000px;}
.ws2d{word-spacing:-12.186000px;}
.ws2e{word-spacing:-12.006000px;}
.ws2c{word-spacing:-11.952000px;}
.wsd{word-spacing:-11.609280px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-24.139440px;}
._15{margin-left:-19.332000px;}
._17{margin-left:-18.276000px;}
._16{margin-left:-16.404000px;}
._19{margin-left:-14.820000px;}
._1c{margin-left:-13.092000px;}
._1a{margin-left:-11.292000px;}
._9{margin-left:-9.504000px;}
._1b{margin-left:-7.908000px;}
._14{margin-left:-6.759600px;}
._18{margin-left:-5.450160px;}
._6{margin-left:-3.528000px;}
._5{margin-left:-1.944000px;}
._0{width:1.406160px;}
._1{width:2.499840px;}
._1f{width:3.708240px;}
._a{width:5.051760px;}
._2{width:6.514800px;}
._8{width:8.097840px;}
._d{width:9.470160px;}
._10{width:10.517760px;}
._11{width:11.872080px;}
._2b{width:13.543920px;}
._3{width:14.808000px;}
._4{width:15.972000px;}
._31{width:16.992000px;}
._32{width:18.408000px;}
._25{width:20.468160px;}
._36{width:22.032000px;}
._3a{width:23.229840px;}
._43{width:24.719760px;}
._c{width:25.881840px;}
._b{width:27.432000px;}
._35{width:28.512000px;}
._2f{width:30.096000px;}
._2e{width:31.104000px;}
._2d{width:32.722560px;}
._46{width:33.768000px;}
._2c{width:34.776000px;}
._34{width:36.177840px;}
._23{width:38.172000px;}
._22{width:39.288000px;}
._24{width:40.694400px;}
._28{width:42.216480px;}
._52{width:43.560000px;}
._39{width:45.000000px;}
._21{width:47.299680px;}
._20{width:48.312000px;}
._3b{width:49.823997px;}
._4d{width:51.768000px;}
._4b{width:52.992000px;}
._38{width:54.936000px;}
._53{width:56.088000px;}
._1e{width:57.792000px;}
._1d{width:58.896000px;}
._26{width:60.808320px;}
._30{width:62.784000px;}
._33{width:64.440000px;}
._40{width:65.592000px;}
._37{width:67.392000px;}
._4a{width:70.436160px;}
._3f{width:72.432000px;}
._54{width:77.544000px;}
._44{width:78.696000px;}
._55{width:79.901520px;}
._4e{width:81.396000px;}
._41{width:82.692000px;}
._5d{width:85.824000px;}
._5c{width:87.012000px;}
._51{width:91.512000px;}
._42{width:92.592000px;}
._13{width:94.227840px;}
._3c{width:97.272000px;}
._4c{width:98.352000px;}
._50{width:109.161840px;}
._4f{width:110.304000px;}
._49{width:118.990080px;}
._48{width:139.302720px;}
._3d{width:145.080000px;}
._5a{width:149.616000px;}
._57{width:151.524000px;}
._56{width:152.688000px;}
._5f{width:163.008000px;}
._5e{width:164.304000px;}
._e{width:169.133760px;}
._5b{width:175.392000px;}
._58{width:186.040080px;}
._60{width:189.239040px;}
._59{width:197.712000px;}
._f{width:198.894240px;}
._45{width:211.752000px;}
._29{width:247.164480px;}
._47{width:250.254720px;}
._2a{width:301.598640px;}
._27{width:317.378880px;}
._7{width:844.267680px;}
._3e{width:2002.020000px;}
._61{width:2500.440000px;}
.fcf{color:rgb(49,109,94);}
.fc0{color:rgb(34,77,66);}
.fc7{color:rgb(87,237,144);}
.fc1{color:rgb(13,29,25);}
.fcd{color:rgb(6,61,39);}
.fc4{color:rgb(0,0,0);}
.fc8{color:rgb(255,255,255);}
.fcb{color:rgb(64,64,64);}
.fc3{color:rgb(255,110,46);}
.fca{color:rgb(5,99,193);}
.fc2{color:rgb(5,61,39);}
.fcc{color:rgb(209,52,56);}
.fce{color:rgb(0,0,255);}
.fc6{color:rgb(3,45,28);}
.fc5{color:transparent;}
.fc9{color:rgb(27,60,52);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:3.420000px;}
.yc3{bottom:3.600000px;}
.y2b4{bottom:3.774000px;}
.y1e{bottom:3.780000px;}
.y1ff{bottom:3.816000px;}
.y39{bottom:3.960000px;}
.y319{bottom:4.494000px;}
.y2f7{bottom:4.500000px;}
.y336{bottom:4.680000px;}
.y1ed{bottom:5.040000px;}
.y3d7{bottom:5.220000px;}
.yc8{bottom:5.400000px;}
.y248{bottom:5.580000px;}
.y2f1{bottom:5.760000px;}
.y27{bottom:6.120000px;}
.y1b{bottom:6.300000px;}
.y228{bottom:6.336000px;}
.yc9{bottom:7.020000px;}
.y1ce{bottom:7.596000px;}
.y54e{bottom:10.080000px;}
.y533{bottom:10.980000px;}
.y216{bottom:12.420000px;}
.y2d0{bottom:12.780000px;}
.yd8{bottom:12.960000px;}
.yd2{bottom:13.140000px;}
.y37e{bottom:14.034000px;}
.y1b8{bottom:14.040000px;}
.y46d{bottom:14.220000px;}
.y2a1{bottom:14.400000px;}
.y226{bottom:14.616000px;}
.y24b{bottom:16.920000px;}
.y20b{bottom:18.180000px;}
.y55b{bottom:20.520000px;}
.y1ca{bottom:20.880000px;}
.y1f3{bottom:21.960000px;}
.y1bf{bottom:22.140000px;}
.y202{bottom:22.170000px;}
.y3b{bottom:22.320000px;}
.ycb{bottom:22.500000px;}
.y273{bottom:24.474000px;}
.y1d{bottom:24.480000px;}
.y1ec{bottom:24.510000px;}
.y1c2{bottom:24.525000px;}
.y2f6{bottom:24.654000px;}
.y2fc{bottom:24.660000px;}
.y161{bottom:25.560000px;}
.y16c{bottom:25.740000px;}
.y1d1{bottom:25.770000px;}
.y534{bottom:26.640000px;}
.y17a{bottom:26.820000px;}
.y1c5{bottom:27.000000px;}
.y227{bottom:27.030000px;}
.y207{bottom:27.045000px;}
.y15f{bottom:28.080000px;}
.y1cd{bottom:28.290000px;}
.y219{bottom:28.980000px;}
.y532{bottom:29.160000px;}
.y177{bottom:29.340000px;}
.y348{bottom:31.185000px;}
.y33e{bottom:31.320000px;}
.ydc{bottom:32.040000px;}
.y340{bottom:32.400000px;}
.y215{bottom:33.120000px;}
.y4f2{bottom:33.480000px;}
.y54d{bottom:34.200000px;}
.y2dd{bottom:34.920000px;}
.y46c{bottom:34.965000px;}
.y20d{bottom:36.360000px;}
.y225{bottom:36.930000px;}
.y55a{bottom:37.080000px;}
.y22f{bottom:37.620000px;}
.y33a{bottom:38.160000px;}
.y20a{bottom:38.880000px;}
.y4ef{bottom:39.420000px;}
.y342{bottom:40.140000px;}
.y524{bottom:40.680000px;}
.y1e3{bottom:41.040000px;}
.yd6{bottom:41.400000px;}
.ydf{bottom:41.580000px;}
.y2cf{bottom:42.480000px;}
.y1f2{bottom:42.660000px;}
.y1c9{bottom:42.840000px;}
.y211{bottom:42.870000px;}
.y201{bottom:43.950000px;}
.y1be{bottom:44.100000px;}
.y30f{bottom:44.640000px;}
.y2f5{bottom:44.814000px;}
.y2fb{bottom:44.820000px;}
.y3fa{bottom:45.000000px;}
.y272{bottom:45.174000px;}
.y22{bottom:45.180000px;}
.y145{bottom:45.210000px;}
.y1c1{bottom:45.225000px;}
.y1fc{bottom:46.260000px;}
.y1c6{bottom:46.440000px;}
.y229{bottom:46.470000px;}
.y530{bottom:47.205000px;}
.y160{bottom:47.520000px;}
.y173{bottom:47.565000px;}
.y17f{bottom:47.700000px;}
.y1d0{bottom:47.730000px;}
.y206{bottom:47.745000px;}
.y344{bottom:48.465000px;}
.y15e{bottom:48.780000px;}
.y17e{bottom:48.960000px;}
.y1cc{bottom:48.990000px;}
.y176{bottom:50.040000px;}
.y218{bottom:51.300000px;}
.y347{bottom:51.885000px;}
.y33d{bottom:52.020000px;}
.y559{bottom:53.460000px;}
.y22d{bottom:53.640000px;}
.y214{bottom:53.820000px;}
.y4f1{bottom:54.180000px;}
.y3b3{bottom:55.434000px;}
.y397{bottom:55.440000px;}
.y3c1{bottom:55.620000px;}
.y27c{bottom:55.650000px;}
.y46b{bottom:55.665000px;}
.y4c7{bottom:57.060000px;}
.y20c{bottom:58.320000px;}
.y339{bottom:58.860000px;}
.y546{bottom:59.040000px;}
.y224{bottom:59.250000px;}
.y209{bottom:59.580000px;}
.y522{bottom:60.120000px;}
.y3db{bottom:60.480000px;}
.y341{bottom:60.840000px;}
.y1e2{bottom:63.360000px;}
.y1c8{bottom:64.620000px;}
.y200{bottom:64.650000px;}
.y1c3{bottom:64.665000px;}
.y30d{bottom:64.800000px;}
.y210{bottom:64.830000px;}
.y2f4{bottom:64.974000px;}
.y2fa{bottom:64.980000px;}
.y3f9{bottom:65.700000px;}
.y271{bottom:65.874000px;}
.y15c{bottom:65.880000px;}
.y1fe{bottom:65.910000px;}
.y21{bottom:65.925000px;}
.y1d3{bottom:66.960000px;}
.y1d7{bottom:67.140000px;}
.y1eb{bottom:67.170000px;}
.y1f7{bottom:67.185000px;}
.y1d2{bottom:68.220000px;}
.y172{bottom:68.265000px;}
.y222{bottom:68.400000px;}
.y1cf{bottom:68.430000px;}
.y1de{bottom:68.445000px;}
.y2cb{bottom:68.940000px;}
.y16b{bottom:69.480000px;}
.y1cb{bottom:69.690000px;}
.y558{bottom:70.020000px;}
.y175{bottom:70.740000px;}
.y2ce{bottom:72.180000px;}
.y346{bottom:72.585000px;}
.y33c{bottom:72.720000px;}
.y217{bottom:73.260000px;}
.y213{bottom:74.520000px;}
.y4f0{bottom:74.880000px;}
.y22c{bottom:75.960000px;}
.y42e{bottom:76.140000px;}
.y372{bottom:76.320000px;}
.y52c{bottom:77.220000px;}
.y4c9{bottom:77.940000px;}
.y3da{bottom:79.380000px;}
.y322{bottom:83.700000px;}
.y30e{bottom:83.730000px;}
.y2fd{bottom:83.880000px;}
.y313{bottom:84.960000px;}
.y30c{bottom:84.990000px;}
.y32b{bottom:85.005000px;}
.y2f3{bottom:85.134000px;}
.y2f9{bottom:85.140000px;}
.y1e1{bottom:85.320000px;}
.y3f8{bottom:86.400000px;}
.y270{bottom:86.574000px;}
.y1e0{bottom:86.580000px;}
.y27b{bottom:86.610000px;}
.y263{bottom:86.625000px;}
.y21b{bottom:87.660000px;}
.y1d6{bottom:87.840000px;}
.y1ea{bottom:87.870000px;}
.y1df{bottom:87.885000px;}
.y2{bottom:88.200000px;}
.y1d5{bottom:88.920000px;}
.y1f5{bottom:88.965000px;}
.y221{bottom:89.100000px;}
.y1e9{bottom:89.130000px;}
.y1dd{bottom:89.145000px;}
.y1fa{bottom:90.180000px;}
.y171{bottom:90.225000px;}
.y16a{bottom:91.440000px;}
.y16f{bottom:91.485000px;}
.y2cd{bottom:92.880000px;}
.y345{bottom:93.285000px;}
.y33b{bottom:93.450000px;}
.y52b{bottom:95.580000px;}
.y439{bottom:96.840000px;}
.y22b{bottom:98.280000px;}
.y557{bottom:102.960000px;}
.y31c{bottom:103.860000px;}
.y318{bottom:104.034000px;}
.y315{bottom:104.040000px;}
.y312{bottom:105.120000px;}
.y32a{bottom:105.165000px;}
.y317{bottom:105.294000px;}
.y309{bottom:105.300000px;}
.y314{bottom:105.345000px;}
.y3f7{bottom:107.100000px;}
.y2b3{bottom:107.274000px;}
.y25d{bottom:107.280000px;}
.y27a{bottom:107.310000px;}
.y262{bottom:107.325000px;}
.y1f6{bottom:108.585000px;}
.y1fb{bottom:109.620000px;}
.y1f4{bottom:109.665000px;}
.y205{bottom:109.845000px;}
.y1f9{bottom:110.880000px;}
.y170{bottom:110.925000px;}
.y16e{bottom:112.185000px;}
.y1e7{bottom:112.530000px;}
.y169{bottom:113.400000px;}
.y2cc{bottom:113.580000px;}
.y545{bottom:113.940000px;}
.y52a{bottom:113.970000px;}
.y556{bottom:119.340000px;}
.y4ce{bottom:122.580000px;}
.y4c0{bottom:122.625000px;}
.y324{bottom:124.020000px;}
.y311{bottom:125.280000px;}
.y328{bottom:125.325000px;}
.y308{bottom:125.460000px;}
.y31f{bottom:125.505000px;}
.y3f0{bottom:127.800000px;}
.y2b2{bottom:127.974000px;}
.y25c{bottom:127.980000px;}
.y26a{bottom:128.010000px;}
.y26d{bottom:128.025000px;}
.ycf{bottom:130.680000px;}
.y1b9{bottom:130.860000px;}
.y223{bottom:131.040000px;}
.y516{bottom:131.940000px;}
.y1f0{bottom:131.985000px;}
.y1fd{bottom:132.120000px;}
.y529{bottom:132.150000px;}
.y436{bottom:132.660000px;}
.y1e6{bottom:133.230000px;}
.y2a4{bottom:134.280000px;}
.y151{bottom:134.856000px;}
.y168{bottom:135.180000px;}
.yce{bottom:135.216000px;}
.y555{bottom:135.900000px;}
.y29c{bottom:136.296000px;}
.y286{bottom:136.476000px;}
.y3dc{bottom:136.836000px;}
.y3fb{bottom:137.736000px;}
.y431{bottom:138.240000px;}
.y26f{bottom:138.276000px;}
.y109{bottom:140.976000px;}
.y2f2{bottom:141.516000px;}
.y1a0{bottom:143.316000px;}
.y91{bottom:143.676000px;}
.y2da{bottom:143.856000px;}
.y451{bottom:144.216000px;}
.y320{bottom:144.405000px;}
.y4bc{bottom:145.296000px;}
.y327{bottom:145.485000px;}
.y307{bottom:145.620000px;}
.y31e{bottom:145.665000px;}
.y3b2{bottom:145.836000px;}
.y465{bottom:146.736000px;}
.y316{bottom:146.916000px;}
.y4a0{bottom:147.636000px;}
.y3f6{bottom:148.500000px;}
.y14{bottom:148.536000px;}
.y2b1{bottom:148.674000px;}
.y25b{bottom:148.680000px;}
.y269{bottom:148.710000px;}
.y2af{bottom:148.716000px;}
.y26c{bottom:148.725000px;}
.y370{bottom:150.150000px;}
.y544{bottom:150.480000px;}
.y67{bottom:150.510000px;}
.y47d{bottom:151.050000px;}
.y554{bottom:152.280000px;}
.y245{bottom:152.490000px;}
.y1db{bottom:152.640000px;}
.y1ef{bottom:152.685000px;}
.y1e5{bottom:153.930000px;}
.y3ef{bottom:154.650000px;}
.y21f{bottom:154.980000px;}
.y2a3{bottom:155.010000px;}
.y139{bottom:156.090000px;}
.y150{bottom:156.270000px;}
.y29b{bottom:156.990000px;}
.y167{bottom:157.140000px;}
.y285{bottom:157.170000px;}
.y37{bottom:158.070000px;}
.y430{bottom:158.940000px;}
.y39b{bottom:160.050000px;}
.y3d9{bottom:160.770000px;}
.y515{bottom:161.490000px;}
.y108{bottom:161.670000px;}
.y4f3{bottom:163.470000px;}
.y90{bottom:164.370000px;}
.y329{bottom:164.385000px;}
.y2d9{bottom:164.550000px;}
.y179{bottom:165.450000px;}
.y326{bottom:165.645000px;}
.y306{bottom:165.780000px;}
.y4bb{bottom:165.990000px;}
.y464{bottom:167.430000px;}
.y49f{bottom:168.330000px;}
.y543{bottom:168.840000px;}
.y528{bottom:168.870000px;}
.y3f5{bottom:169.200000px;}
.y13{bottom:169.230000px;}
.y2b0{bottom:169.374000px;}
.y25a{bottom:169.380000px;}
.y268{bottom:169.410000px;}
.y369{bottom:169.425000px;}
.y36f{bottom:170.850000px;}
.y66{bottom:171.210000px;}
.y32c{bottom:172.290000px;}
.y244{bottom:173.190000px;}
.y1da{bottom:173.385000px;}
.y47c{bottom:174.990000px;}
.y21e{bottom:175.725000px;}
.y138{bottom:176.790000px;}
.y25e{bottom:177.510000px;}
.y29a{bottom:177.690000px;}
.y166{bottom:177.870000px;}
.y164{bottom:180.210000px;}
.y19f{bottom:182.010000px;}
.y107{bottom:182.370000px;}
.y3be{bottom:183.090000px;}
.y41e{bottom:184.170000px;}
.y4ee{bottom:184.890000px;}
.y8f{bottom:185.070000px;}
.y118{bottom:185.250000px;}
.y553{bottom:185.400000px;}
.y36{bottom:185.430000px;}
.y305{bottom:185.760000px;}
.y514{bottom:185.970000px;}
.y4ba{bottom:186.690000px;}
.y527{bottom:187.050000px;}
.y450{bottom:187.230000px;}
.y542{bottom:187.245000px;}
.y49e{bottom:189.030000px;}
.y3f4{bottom:189.900000px;}
.y12{bottom:189.930000px;}
.y259{bottom:190.080000px;}
.y267{bottom:190.110000px;}
.y368{bottom:190.125000px;}
.y36e{bottom:191.550000px;}
.y65{bottom:191.910000px;}
.ycd{bottom:192.990000px;}
.y243{bottom:193.890000px;}
.y1d9{bottom:194.085000px;}
.y39a{bottom:194.970000px;}
.y42f{bottom:196.410000px;}
.y21d{bottom:196.425000px;}
.y4d1{bottom:197.130000px;}
.y137{bottom:197.490000px;}
.y299{bottom:198.390000px;}
.y284{bottom:198.570000px;}
.y165{bottom:199.830000px;}
.y37d{bottom:200.730000px;}
.y163{bottom:200.910000px;}
.y34a{bottom:201.810000px;}
.y552{bottom:201.825000px;}
.y106{bottom:203.070000px;}
.y3bd{bottom:203.790000px;}
.y526{bottom:205.410000px;}
.y541{bottom:205.425000px;}
.y502{bottom:205.590000px;}
.y8e{bottom:205.770000px;}
.y2d8{bottom:205.950000px;}
.y304{bottom:205.965000px;}
.y463{bottom:206.130000px;}
.y4b9{bottom:207.390000px;}
.y49d{bottom:209.730000px;}
.y178{bottom:210.090000px;}
.y3f3{bottom:210.600000px;}
.y435{bottom:210.645000px;}
.y258{bottom:210.780000px;}
.y266{bottom:210.810000px;}
.y25f{bottom:210.825000px;}
.y36d{bottom:212.250000px;}
.y35{bottom:212.610000px;}
.y242{bottom:214.590000px;}
.y11{bottom:215.130000px;}
.y1f8{bottom:216.570000px;}
.y21c{bottom:217.830000px;}
.y47b{bottom:218.010000px;}
.y136{bottom:218.190000px;}
.y551{bottom:218.385000px;}
.y349{bottom:218.730000px;}
.y1c7{bottom:218.910000px;}
.y14f{bottom:219.090000px;}
.y283{bottom:219.270000px;}
.y19e{bottom:220.710000px;}
.y105{bottom:223.770000px;}
.y540{bottom:223.785000px;}
.y303{bottom:226.125000px;}
.y501{bottom:226.290000px;}
.y8d{bottom:226.470000px;}
.y2d7{bottom:226.650000px;}
.y4b8{bottom:228.090000px;}
.y37c{bottom:228.990000px;}
.y4d0{bottom:229.710000px;}
.y49c{bottom:230.430000px;}
.y3f2{bottom:231.300000px;}
.y434{bottom:231.345000px;}
.y358{bottom:231.510000px;}
.y3bc{bottom:231.525000px;}
.ycc{bottom:231.690000px;}
.y36c{bottom:232.950000px;}
.y64{bottom:233.310000px;}
.y399{bottom:233.670000px;}
.y550{bottom:234.765000px;}
.y241{bottom:235.290000px;}
.y135{bottom:238.890000px;}
.y298{bottom:239.790000px;}
.y34{bottom:239.970000px;}
.y19d{bottom:241.410000px;}
.y53f{bottom:242.145000px;}
.y26e{bottom:242.490000px;}
.y104{bottom:244.470000px;}
.y462{bottom:244.830000px;}
.y302{bottom:246.285000px;}
.y500{bottom:246.990000px;}
.y8c{bottom:247.170000px;}
.y2d6{bottom:247.350000px;}
.y4b7{bottom:248.790000px;}
.y37b{bottom:249.690000px;}
.y49b{bottom:251.130000px;}
.yca{bottom:251.310000px;}
.y3f1{bottom:252.045000px;}
.y174{bottom:252.210000px;}
.y3bb{bottom:252.225000px;}
.y63{bottom:254.010000px;}
.y240{bottom:255.990000px;}
.y3d8{bottom:257.070000px;}
.y2f0{bottom:257.250000px;}
.y134{bottom:259.590000px;}
.y10{bottom:259.950000px;}
.y297{bottom:260.490000px;}
.y53e{bottom:260.505000px;}
.y117{bottom:260.850000px;}
.y14e{bottom:261.210000px;}
.y19c{bottom:262.110000px;}
.y4cf{bottom:262.470000px;}
.y461{bottom:265.530000px;}
.y301{bottom:266.445000px;}
.y33{bottom:267.330000px;}
.y4ff{bottom:267.690000px;}
.y8b{bottom:267.870000px;}
.y2d5{bottom:268.050000px;}
.y4b6{bottom:269.490000px;}
.y37a{bottom:270.390000px;}
.y4c4{bottom:270.750000px;}
.y44f{bottom:271.470000px;}
.y36b{bottom:271.650000px;}
.y49a{bottom:271.830000px;}
.y362{bottom:272.010000px;}
.y433{bottom:272.745000px;}
.y357{bottom:272.910000px;}
.y62{bottom:274.710000px;}
.y23f{bottom:276.690000px;}
.y282{bottom:278.670000px;}
.y53d{bottom:278.685000px;}
.y133{bottom:280.290000px;}
.y296{bottom:281.190000px;}
.y47a{bottom:281.550000px;}
.y3b1{bottom:282.450000px;}
.y19b{bottom:282.810000px;}
.y531{bottom:285.330000px;}
.y103{bottom:285.870000px;}
.y460{bottom:286.230000px;}
.y300{bottom:286.605000px;}
.y4fe{bottom:288.390000px;}
.y8a{bottom:288.570000px;}
.y2d4{bottom:288.750000px;}
.yc7{bottom:290.010000px;}
.y4b5{bottom:290.190000px;}
.y379{bottom:291.090000px;}
.y499{bottom:292.530000px;}
.y432{bottom:293.445000px;}
.y356{bottom:293.610000px;}
.y4ed{bottom:293.790000px;}
.y32{bottom:294.690000px;}
.y61{bottom:295.410000px;}
.y398{bottom:295.950000px;}
.y3d6{bottom:296.670000px;}
.y53c{bottom:297.045000px;}
.y23e{bottom:297.390000px;}
.y3ba{bottom:298.110000px;}
.y2ef{bottom:299.730000px;}
.y132{bottom:300.990000px;}
.y1c4{bottom:303.150000px;}
.y19a{bottom:303.510000px;}
.yf{bottom:304.950000px;}
.y30a{bottom:305.505000px;}
.y102{bottom:306.570000px;}
.y2ff{bottom:306.765000px;}
.y45f{bottom:306.930000px;}
.y361{bottom:307.650000px;}
.y325{bottom:308.190000px;}
.y4fd{bottom:309.090000px;}
.y89{bottom:309.270000px;}
.y36a{bottom:310.350000px;}
.y3b0{bottom:310.710000px;}
.y4b4{bottom:310.890000px;}
.y378{bottom:311.790000px;}
.y396{bottom:312.870000px;}
.y498{bottom:313.230000px;}
.yc6{bottom:313.410000px;}
.y44e{bottom:314.310000px;}
.y53b{bottom:315.405000px;}
.y4cd{bottom:315.930000px;}
.y60{bottom:316.110000px;}
.y281{bottom:317.370000px;}
.y23d{bottom:318.090000px;}
.y295{bottom:319.890000px;}
.y131{bottom:321.690000px;}
.y31{bottom:321.870000px;}
.y14d{bottom:324.210000px;}
.y4ec{bottom:324.930000px;}
.y220{bottom:325.290000px;}
.y1bc{bottom:326.415000px;}
.y367{bottom:327.270000px;}
.y2d3{bottom:327.450000px;}
.y2ee{bottom:327.990000px;}
.y360{bottom:328.350000px;}
.y88{bottom:329.970000px;}
.y3af{bottom:331.410000px;}
.y3d5{bottom:331.590000px;}
.y377{bottom:332.490000px;}
.y53a{bottom:333.585000px;}
.y497{bottom:333.930000px;}
.y456{bottom:335.055000px;}
.y479{bottom:335.370000px;}
.y116{bottom:336.450000px;}
.y5f{bottom:336.810000px;}
.y280{bottom:338.070000px;}
.y16d{bottom:340.590000px;}
.y130{bottom:342.390000px;}
.y199{bottom:344.910000px;}
.ye{bottom:345.270000px;}
.y14c{bottom:345.630000px;}
.y1ee{bottom:345.810000px;}
.y26b{bottom:346.710000px;}
.y1bb{bottom:347.115000px;}
.y23c{bottom:347.430000px;}
.y2ae{bottom:347.610000px;}
.y41d{bottom:347.790000px;}
.y101{bottom:347.970000px;}
.y45e{bottom:348.150000px;}
.y2ed{bottom:348.690000px;}
.y35f{bottom:349.050000px;}
.y30{bottom:349.230000px;}
.y87{bottom:350.670000px;}
.y539{bottom:351.945000px;}
.yc4{bottom:352.110000px;}
.y4b3{bottom:352.290000px;}
.y496{bottom:354.630000px;}
.y27f{bottom:354.990000px;}
.y455{bottom:355.755000px;}
.y5e{bottom:357.510000px;}
.y294{bottom:358.590000px;}
.y3d4{bottom:359.850000px;}
.y12f{bottom:363.090000px;}
.y478{bottom:363.630000px;}
.y343{bottom:365.250000px;}
.y198{bottom:365.610000px;}
.yd{bottom:365.970000px;}
.y2d2{bottom:366.150000px;}
.y4eb{bottom:366.330000px;}
.y2f{bottom:367.590000px;}
.y1ba{bottom:367.815000px;}
.y100{bottom:368.670000px;}
.y45d{bottom:368.850000px;}
.y1c0{bottom:369.210000px;}
.y2ec{bottom:369.390000px;}
.y35e{bottom:369.750000px;}
.y538{bottom:370.305000px;}
.y376{bottom:371.190000px;}
.y86{bottom:371.370000px;}
.yc2{bottom:371.730000px;}
.y23b{bottom:371.910000px;}
.y3ae{bottom:372.810000px;}
.y4b2{bottom:372.990000px;}
.y293{bottom:375.510000px;}
.y2ad{bottom:375.870000px;}
.y41c{bottom:376.050000px;}
.y454{bottom:376.455000px;}
.y5d{bottom:378.210000px;}
.y3d3{bottom:380.550000px;}
.y12e{bottom:383.790000px;}
.y477{bottom:384.330000px;}
.y197{bottom:386.310000px;}
.yc{bottom:386.670000px;}
.y2d1{bottom:386.850000px;}
.y14b{bottom:387.795000px;}
.y4fc{bottom:387.975000px;}
.y537{bottom:388.665000px;}
.y45c{bottom:389.595000px;}
.y2eb{bottom:390.135000px;}
.y35d{bottom:390.495000px;}
.y85{bottom:392.115000px;}
.y495{bottom:393.375000px;}
.y3ad{bottom:393.555000px;}
.y2e{bottom:394.995000px;}
.y2ac{bottom:396.615000px;}
.y41b{bottom:396.795000px;}
.y5c{bottom:398.955000px;}
.y4ea{bottom:399.135000px;}
.y3d2{bottom:401.295000px;}
.y2ca{bottom:403.815000px;}
.yc1{bottom:403.995000px;}
.y12d{bottom:404.535000px;}
.y476{bottom:405.075000px;}
.y257{bottom:405.975000px;}
.y536{bottom:406.845000px;}
.y196{bottom:407.055000px;}
.yb{bottom:407.415000px;}
.y375{bottom:409.935000px;}
.yff{bottom:410.115000px;}
.y45b{bottom:410.295000px;}
.y2ea{bottom:410.835000px;}
.y35c{bottom:411.195000px;}
.y4b1{bottom:411.735000px;}
.y115{bottom:412.095000px;}
.y84{bottom:412.815000px;}
.y4cc{bottom:413.355000px;}
.y3ac{bottom:414.255000px;}
.y2ab{bottom:417.315000px;}
.y41a{bottom:417.495000px;}
.y27e{bottom:418.575000px;}
.y310{bottom:418.755000px;}
.y44d{bottom:419.475000px;}
.y5b{bottom:419.655000px;}
.y4e9{bottom:419.835000px;}
.y3d1{bottom:421.995000px;}
.y2d{bottom:424.695000px;}
.y12c{bottom:425.235000px;}
.y475{bottom:425.775000px;}
.y513{bottom:425.955000px;}
.y374{bottom:426.855000px;}
.y195{bottom:427.755000px;}
.ya{bottom:428.115000px;}
.y14a{bottom:429.915000px;}
.yfe{bottom:430.815000px;}
.y45a{bottom:430.995000px;}
.y35b{bottom:431.895000px;}
.y494{bottom:432.075000px;}
.ybf{bottom:432.255000px;}
.y21a{bottom:432.795000px;}
.y83{bottom:433.515000px;}
.y3ab{bottom:434.955000px;}
.y3ee{bottom:436.215000px;}
.y2aa{bottom:438.015000px;}
.yc0{bottom:438.195000px;}
.y4cb{bottom:439.815000px;}
.y5a{bottom:440.355000px;}
.y4e8{bottom:440.535000px;}
.y3d0{bottom:442.695000px;}
.y474{bottom:446.475000px;}
.y4fb{bottom:447.195000px;}
.y194{bottom:448.455000px;}
.y9{bottom:448.815000px;}
.y2e9{bottom:449.535000px;}
.y4b0{bottom:450.435000px;}
.y149{bottom:451.335000px;}
.yfd{bottom:451.515000px;}
.y459{bottom:451.695000px;}
.y493{bottom:452.775000px;}
.ybe{bottom:452.955000px;}
.y1bd{bottom:453.495000px;}
.y82{bottom:454.215000px;}
.y512{bottom:455.475000px;}
.y3aa{bottom:455.655000px;}
.y2a9{bottom:458.715000px;}
.y419{bottom:458.895000px;}
.y59{bottom:461.055000px;}
.y2c{bottom:461.235000px;}
.y3cf{bottom:463.395000px;}
.y3ed{bottom:464.475000px;}
.y12b{bottom:466.635000px;}
.y473{bottom:467.175000px;}
.y193{bottom:469.155000px;}
.y8{bottom:469.515000px;}
.y162{bottom:470.415000px;}
.y35a{bottom:470.595000px;}
.y4af{bottom:471.135000px;}
.yfc{bottom:472.215000px;}
.y458{bottom:472.395000px;}
.y44c{bottom:473.295000px;}
.y492{bottom:473.475000px;}
.ybd{bottom:473.655000px;}
.y1f1{bottom:474.015000px;}
.y81{bottom:474.915000px;}
.y52f{bottom:475.635000px;}
.y3a9{bottom:476.355000px;}
.y33f{bottom:476.895000px;}
.y395{bottom:477.795000px;}
.y2a8{bottom:479.415000px;}
.y418{bottom:479.595000px;}
.y511{bottom:479.955000px;}
.y3ec{bottom:481.395000px;}
.y58{bottom:481.755000px;}
.y3ce{bottom:484.095000px;}
.y12a{bottom:487.335000px;}
.y114{bottom:487.695000px;}
.y472{bottom:487.875000px;}
.y2e8{bottom:488.235000px;}
.y457{bottom:489.315000px;}
.y192{bottom:489.855000px;}
.y7{bottom:491.475000px;}
.y4ae{bottom:491.835000px;}
.yfb{bottom:492.915000px;}
.y148{bottom:493.455000px;}
.y4e7{bottom:493.995000px;}
.y491{bottom:494.175000px;}
.ybc{bottom:494.355000px;}
.y80{bottom:495.615000px;}
.y3a8{bottom:497.055000px;}
.y2a2{bottom:497.415000px;}
.y56e{bottom:497.775000px;}
.y2b{bottom:497.955000px;}
.y394{bottom:498.495000px;}
.y417{bottom:500.295000px;}
.y44b{bottom:501.555000px;}
.y57{bottom:502.455000px;}
.y52e{bottom:503.895000px;}
.y323{bottom:504.435000px;}
.y3cd{bottom:504.795000px;}
.y359{bottom:506.235000px;}
.y129{bottom:508.035000px;}
.y42d{bottom:508.395000px;}
.y471{bottom:508.575000px;}
.y2e7{bottom:508.935000px;}
.y191{bottom:510.555000px;}
.y4ad{bottom:512.535000px;}
.y265{bottom:513.075000px;}
.yfa{bottom:513.615000px;}
.y4e6{bottom:514.695000px;}
.y490{bottom:514.875000px;}
.ybb{bottom:515.055000px;}
.y7f{bottom:516.315000px;}
.y1b7{bottom:517.215000px;}
.y3a7{bottom:517.755000px;}
.y56d{bottom:518.475000px;}
.y393{bottom:519.195000px;}
.y416{bottom:520.995000px;}
.y44a{bottom:522.255000px;}
.y56{bottom:523.155000px;}
.y27d{bottom:523.695000px;}
.y52d{bottom:525.315000px;}
.y3cc{bottom:525.495000px;}
.y113{bottom:527.295000px;}
.y2e6{bottom:529.635000px;}
.y190{bottom:531.255000px;}
.y292{bottom:533.055000px;}
.y4ac{bottom:533.235000px;}
.yf9{bottom:534.315000px;}
.y4e5{bottom:535.395000px;}
.y147{bottom:535.575000px;}
.yba{bottom:535.755000px;}
.y7e{bottom:537.015000px;}
.y3a6{bottom:538.455000px;}
.y56c{bottom:539.175000px;}
.ye3{bottom:539.715000px;}
.y212{bottom:540.075000px;}
.y525{bottom:540.975000px;}
.y392{bottom:541.155000px;}
.y415{bottom:541.695000px;}
.y373{bottom:542.775000px;}
.y449{bottom:542.955000px;}
.y55{bottom:543.855000px;}
.y3cb{bottom:546.195000px;}
.y6{bottom:547.815000px;}
.y128{bottom:549.435000px;}
.y2e5{bottom:550.335000px;}
.y18f{bottom:551.955000px;}
.yf8{bottom:555.015000px;}
.y4ab{bottom:555.195000px;}
.y112{bottom:555.555000px;}
.y338{bottom:556.095000px;}
.yb9{bottom:556.455000px;}
.ye2{bottom:557.355000px;}
.y7d{bottom:557.715000px;}
.y1e4{bottom:558.255000px;}
.y3a5{bottom:559.155000px;}
.y56b{bottom:559.875000px;}
.y2a7{bottom:560.955000px;}
.y291{bottom:561.315000px;}
.y414{bottom:562.395000px;}
.y391{bottom:562.935000px;}
.y448{bottom:563.655000px;}
.y54{bottom:564.555000px;}
.y3eb{bottom:565.635000px;}
.y3ca{bottom:566.895000px;}
.y2c9{bottom:567.435000px;}
.y48f{bottom:567.975000px;}
.y127{bottom:570.135000px;}
.y1b6{bottom:571.035000px;}
.y18e{bottom:572.655000px;}
.y2a{bottom:573.555000px;}
.y453{bottom:573.735000px;}
.y30b{bottom:574.815000px;}
.yf7{bottom:575.715000px;}
.y4c3{bottom:575.895000px;}
.y111{bottom:576.255000px;}
.y4e4{bottom:576.615000px;}
.ye1{bottom:576.975000px;}
.yb8{bottom:577.155000px;}
.y146{bottom:577.875000px;}
.y7c{bottom:578.415000px;}
.y3a4{bottom:579.855000px;}
.y56a{bottom:580.575000px;}
.y290{bottom:582.015000px;}
.y413{bottom:583.095000px;}
.y447{bottom:584.355000px;}
.y390{bottom:584.895000px;}
.y53{bottom:585.255000px;}
.y48e{bottom:587.235000px;}
.y3c9{bottom:587.595000px;}
.y126{bottom:590.835000px;}
.y2e4{bottom:591.735000px;}
.y5{bottom:592.635000px;}
.y18d{bottom:593.355000px;}
.y2c8{bottom:595.695000px;}
.y510{bottom:596.235000px;}
.yf6{bottom:596.415000px;}
.ye0{bottom:596.775000px;}
.y110{bottom:596.955000px;}
.yb7{bottom:597.855000px;}
.y4aa{bottom:598.935000px;}
.y7b{bottom:599.115000px;}
.y144{bottom:599.295000px;}
.y569{bottom:601.275000px;}
.y28f{bottom:602.715000px;}
.y412{bottom:603.795000px;}
.y2a6{bottom:603.975000px;}
.y446{bottom:605.055000px;}
.y52{bottom:605.955000px;}
.y38f{bottom:606.855000px;}
.y48d{bottom:607.935000px;}
.y3b9{bottom:608.115000px;}
.y1b5{bottom:608.295000px;}
.y4e3{bottom:609.375000px;}
.y29{bottom:610.275000px;}
.y125{bottom:611.535000px;}
.y2e3{bottom:612.435000px;}
.y18c{bottom:614.055000px;}
.y2c7{bottom:616.395000px;}
.y50f{bottom:616.935000px;}
.yf5{bottom:617.115000px;}
.y10f{bottom:617.655000px;}
.yb6{bottom:618.555000px;}
.y7a{bottom:619.815000px;}
.y4fa{bottom:620.175000px;}
.y4a9{bottom:620.895000px;}
.y568{bottom:621.975000px;}
.y1e8{bottom:623.055000px;}
.ya1{bottom:623.415000px;}
.y411{bottom:624.495000px;}
.y445{bottom:625.755000px;}
.y51{bottom:626.655000px;}
.y38e{bottom:627.555000px;}
.y2a5{bottom:627.915000px;}
.y279{bottom:628.635000px;}
.y3b8{bottom:628.815000px;}
.y3c8{bottom:628.995000px;}
.y4ca{bottom:629.355000px;}
.y4e2{bottom:630.075000px;}
.y124{bottom:632.235000px;}
.y20f{bottom:632.955000px;}
.y2e2{bottom:633.135000px;}
.y256{bottom:634.575000px;}
.y18b{bottom:634.755000px;}
.y54a{bottom:634.935000px;}
.y2c6{bottom:637.095000px;}
.y4{bottom:637.455000px;}
.y50e{bottom:637.635000px;}
.yf4{bottom:637.815000px;}
.y10e{bottom:638.355000px;}
.yb5{bottom:639.255000px;}
.y79{bottom:640.545000px;}
.y567{bottom:642.705000px;}
.y4a8{bottom:642.885000px;}
.y28e{bottom:644.145000px;}
.y410{bottom:645.225000px;}
.ya0{bottom:645.405000px;}
.y444{bottom:646.485000px;}
.y50{bottom:647.385000px;}
.y48c{bottom:649.365000px;}
.y1b4{bottom:649.545000px;}
.y3c7{bottom:649.725000px;}
.y3ea{bottom:649.905000px;}
.y4e1{bottom:650.805000px;}
.y2e1{bottom:653.865000px;}
.y55d{bottom:654.225000px;}
.yde{bottom:654.405000px;}
.y42c{bottom:654.765000px;}
.y18a{bottom:655.485000px;}
.y549{bottom:655.665000px;}
.y3a3{bottom:657.285000px;}
.y2c5{bottom:657.825000px;}
.y50d{bottom:658.365000px;}
.yf3{bottom:658.545000px;}
.y10d{bottom:659.085000px;}
.yb4{bottom:659.985000px;}
.y321{bottom:660.525000px;}
.y78{bottom:661.245000px;}
.y143{bottom:662.145000px;}
.y566{bottom:663.405000px;}
.y28d{bottom:664.845000px;}
.y28{bottom:665.205000px;}
.y40f{bottom:665.925000px;}
.y443{bottom:667.185000px;}
.y337{bottom:667.905000px;}
.y4f{bottom:668.085000px;}
.y48b{bottom:670.065000px;}
.y38d{bottom:670.245000px;}
.y3c6{bottom:670.425000px;}
.y2a0{bottom:670.785000px;}
.y4e0{bottom:671.505000px;}
.y9f{bottom:671.685000px;}
.y470{bottom:671.865000px;}
.y123{bottom:673.665000px;}
.y1b3{bottom:674.025000px;}
.y2e0{bottom:674.565000px;}
.y55c{bottom:674.925000px;}
.y189{bottom:676.185000px;}
.y548{bottom:676.365000px;}
.y3a2{bottom:677.985000px;}
.y2c4{bottom:678.525000px;}
.y50c{bottom:679.065000px;}
.yf2{bottom:679.245000px;}
.y23a{bottom:679.605000px;}
.y10c{bottom:679.785000px;}
.yb3{bottom:680.685000px;}
.y77{bottom:681.945000px;}
.y3{bottom:682.305000px;}
.y4c8{bottom:682.665000px;}
.y4f9{bottom:683.025000px;}
.y142{bottom:683.565000px;}
.y565{bottom:684.105000px;}
.y28c{bottom:685.545000px;}
.y40e{bottom:686.625000px;}
.y442{bottom:687.885000px;}
.y4e{bottom:688.785000px;}
.y15d{bottom:689.145000px;}
.y42b{bottom:689.685000px;}
.y2fe{bottom:690.405000px;}
.y48a{bottom:690.765000px;}
.y38c{bottom:690.945000px;}
.y3c5{bottom:691.125000px;}
.y9e{bottom:692.385000px;}
.y54f{bottom:692.565000px;}
.y122{bottom:694.365000px;}
.y1b2{bottom:694.725000px;}
.y188{bottom:696.885000px;}
.y547{bottom:697.065000px;}
.y3a1{bottom:698.685000px;}
.y2c3{bottom:699.225000px;}
.y50b{bottom:699.765000px;}
.yf1{bottom:699.945000px;}
.y239{bottom:700.305000px;}
.yb2{bottom:701.385000px;}
.y26{bottom:701.925000px;}
.y76{bottom:702.645000px;}
.y29f{bottom:703.545000px;}
.y4df{bottom:704.265000px;}
.y564{bottom:704.805000px;}
.y28b{bottom:706.245000px;}
.y51e{bottom:706.785000px;}
.y40d{bottom:707.325000px;}
.y441{bottom:708.585000px;}
.y4d{bottom:709.485000px;}
.y489{bottom:711.465000px;}
.y38b{bottom:711.645000px;}
.y3c4{bottom:711.825000px;}
.ydd{bottom:712.185000px;}
.y9d{bottom:713.085000px;}
.y2df{bottom:713.265000px;}
.y535{bottom:713.985000px;}
.y121{bottom:715.065000px;}
.y1b1{bottom:715.425000px;}
.y20e{bottom:717.405000px;}
.y187{bottom:717.585000px;}
.y42a{bottom:717.945000px;}
.y3a0{bottom:719.385000px;}
.y10b{bottom:719.745000px;}
.y2c2{bottom:719.925000px;}
.y50a{bottom:720.465000px;}
.yf0{bottom:720.645000px;}
.y238{bottom:721.005000px;}
.yb1{bottom:722.085000px;}
.y75{bottom:723.345000px;}
.y4de{bottom:724.965000px;}
.y4f8{bottom:725.145000px;}
.y563{bottom:725.505000px;}
.y141{bottom:725.685000px;}
.y28a{bottom:726.945000px;}
.y51d{bottom:727.485000px;}
.y4a7{bottom:728.025000px;}
.y440{bottom:729.285000px;}
.y4c{bottom:730.185000px;}
.y1d8{bottom:730.545000px;}
.y488{bottom:732.165000px;}
.y38a{bottom:732.345000px;}
.y9c{bottom:733.785000px;}
.y1b0{bottom:736.125000px;}
.y1{bottom:736.845000px;}
.y39f{bottom:737.745000px;}
.y366{bottom:737.925000px;}
.y255{bottom:738.105000px;}
.y186{bottom:738.285000px;}
.y25{bottom:738.465000px;}
.y429{bottom:738.645000px;}
.y2c1{bottom:740.625000px;}
.y509{bottom:741.165000px;}
.yef{bottom:741.345000px;}
.y264{bottom:741.525000px;}
.y237{bottom:741.705000px;}
.yb0{bottom:742.785000px;}
.y74{bottom:745.305000px;}
.y4dd{bottom:745.665000px;}
.y40c{bottom:746.025000px;}
.y562{bottom:746.205000px;}
.y140{bottom:747.105000px;}
.y10a{bottom:747.465000px;}
.y289{bottom:747.645000px;}
.y51c{bottom:748.185000px;}
.y4f7{bottom:748.365000px;}
.y4a6{bottom:748.725000px;}
.y43f{bottom:749.985000px;}
.y4b{bottom:750.885000px;}
.y3c3{bottom:751.785000px;}
.y2de{bottom:751.965000px;}
.y487{bottom:752.865000px;}
.y389{bottom:753.045000px;}
.y278{bottom:754.305000px;}
.y15b{bottom:755.565000px;}
.y9b{bottom:755.745000px;}
.y120{bottom:756.465000px;}
.y1af{bottom:756.825000px;}
.y254{bottom:758.805000px;}
.y185{bottom:758.985000px;}
.y428{bottom:759.345000px;}
.y2c0{bottom:761.325000px;}
.y508{bottom:761.865000px;}
.yee{bottom:762.045000px;}
.y236{bottom:762.225000px;}
.y523{bottom:762.585000px;}
.yaf{bottom:763.485000px;}
.y4dc{bottom:766.365000px;}
.y561{bottom:766.905000px;}
.y288{bottom:768.345000px;}
.y2dc{bottom:768.885000px;}
.y4a5{bottom:769.425000px;}
.ydb{bottom:769.785000px;}
.y43e{bottom:770.685000px;}
.y4a{bottom:771.585000px;}
.y24{bottom:771.945000px;}
.y486{bottom:773.565000px;}
.y388{bottom:773.745000px;}
.y31d{bottom:776.085000px;}
.y365{bottom:776.625000px;}
.y46f{bottom:776.985000px;}
.y11f{bottom:777.165000px;}
.y1ae{bottom:777.525000px;}
.y253{bottom:779.505000px;}
.y184{bottom:779.685000px;}
.y427{bottom:780.045000px;}
.y507{bottom:782.565000px;}
.yed{bottom:782.745000px;}
.y9a{bottom:783.465000px;}
.yae{bottom:784.185000px;}
.y40b{bottom:784.725000px;}
.y560{bottom:787.605000px;}
.y287{bottom:789.045000px;}
.y277{bottom:789.405000px;}
.y4c6{bottom:789.585000px;}
.y4a4{bottom:790.125000px;}
.y485{bottom:790.485000px;}
.y43d{bottom:791.385000px;}
.y387{bottom:794.445000px;}
.y23{bottom:795.165000px;}
.y3e9{bottom:796.425000px;}
.y364{bottom:797.325000px;}
.y11e{bottom:797.865000px;}
.y1ad{bottom:798.225000px;}
.y4db{bottom:798.945000px;}
.y2bf{bottom:800.025000px;}
.y252{bottom:800.205000px;}
.y426{bottom:800.745000px;}
.y46e{bottom:800.925000px;}
.y208{bottom:801.645000px;}
.y235{bottom:802.365000px;}
.y49{bottom:802.545000px;}
.y506{bottom:803.265000px;}
.yec{bottom:803.445000px;}
.yad{bottom:804.885000px;}
.y40a{bottom:805.425000px;}
.y55f{bottom:807.945000px;}
.y99{bottom:809.745000px;}
.y13f{bottom:809.925000px;}
.y51b{bottom:810.285000px;}
.y4a3{bottom:810.825000px;}
.y43c{bottom:812.085000px;}
.y4f6{bottom:812.445000px;}
.y3c2{bottom:814.065000px;}
.y335{bottom:814.245000px;}
.y386{bottom:815.145000px;}
.y363{bottom:818.025000px;}
.y11d{bottom:818.565000px;}
.y1ac{bottom:818.925000px;}
.y521{bottom:819.465000px;}
.y183{bottom:819.645000px;}
.y251{bottom:820.905000px;}
.y425{bottom:821.445000px;}
.y4c5{bottom:822.165000px;}
.y505{bottom:823.965000px;}
.yeb{bottom:824.145000px;}
.yac{bottom:825.585000px;}
.y409{bottom:826.125000px;}
.y55e{bottom:827.025000px;}
.yda{bottom:827.565000px;}
.y276{bottom:827.925000px;}
.y234{bottom:829.905000px;}
.y98{bottom:830.445000px;}
.y3c0{bottom:830.985000px;}
.y3e8{bottom:831.345000px;}
.y4a2{bottom:831.525000px;}
.y20{bottom:831.885000px;}
.y40{bottom:832.965000px;}
.y4f5{bottom:833.145000px;}
.y484{bottom:833.325000px;}
.y1dc{bottom:835.485000px;}
.y385{bottom:835.845000px;}
.y48{bottom:837.825000px;}
.y2be{bottom:838.725000px;}
.y73{bottom:839.265000px;}
.y1ab{bottom:839.625000px;}
.y4da{bottom:840.345000px;}
.y520{bottom:841.245000px;}
.y250{bottom:841.605000px;}
.y11c{bottom:841.785000px;}
.y424{bottom:842.145000px;}
.y39e{bottom:842.865000px;}
.yea{bottom:844.845000px;}
.yab{bottom:846.285000px;}
.y408{bottom:846.825000px;}
.y334{bottom:849.345000px;}
.y43b{bottom:850.785000px;}
.y97{bottom:851.145000px;}
.y15a{bottom:851.685000px;}
.y13e{bottom:852.225000px;}
.y504{bottom:853.305000px;}
.y4f4{bottom:853.845000px;}
.y384{bottom:856.545000px;}
.y483{bottom:857.445000px;}
.y47{bottom:858.525000px;}
.y2bd{bottom:859.425000px;}
.y3e7{bottom:859.605000px;}
.y1aa{bottom:860.325000px;}
.y4d9{bottom:861.045000px;}
.y24f{bottom:862.305000px;}
.y3f{bottom:862.665000px;}
.y423{bottom:862.845000px;}
.y2db{bottom:864.285000px;}
.y46a{bottom:864.465000px;}
.ye9{bottom:865.545000px;}
.yd9{bottom:866.265000px;}
.yaa{bottom:866.985000px;}
.y407{bottom:867.525000px;}
.y51a{bottom:869.685000px;}
.y29e{bottom:870.585000px;}
.y4a1{bottom:871.665000px;}
.y96{bottom:871.845000px;}
.y355{bottom:874.545000px;}
.y4bf{bottom:875.625000px;}
.y72{bottom:875.805000px;}
.y383{bottom:877.245000px;}
.y333{bottom:877.605000px;}
.y503{bottom:877.785000px;}
.y46{bottom:879.225000px;}
.y204{bottom:879.585000px;}
.y2bc{bottom:880.125000px;}
.y3e6{bottom:880.305000px;}
.y1a9{bottom:881.025000px;}
.y482{bottom:881.385000px;}
.y182{bottom:881.925000px;}
.y24e{bottom:883.005000px;}
.y422{bottom:883.545000px;}
.ye8{bottom:886.245000px;}
.y261{bottom:887.145000px;}
.ya9{bottom:887.685000px;}
.y406{bottom:888.225000px;}
.y43a{bottom:889.485000px;}
.y275{bottom:890.205000px;}
.y519{bottom:890.385000px;}
.y159{bottom:891.825000px;}
.y233{bottom:892.185000px;}
.y95{bottom:892.590000px;}
.y4d8{bottom:893.850000px;}
.y13d{bottom:894.390000px;}
.y354{bottom:895.290000px;}
.y382{bottom:897.990000px;}
.y332{bottom:898.350000px;}
.y181{bottom:899.610000px;}
.y24d{bottom:899.970000px;}
.y2bb{bottom:900.870000px;}
.y3e5{bottom:901.050000px;}
.y1a8{bottom:901.770000px;}
.y71{bottom:903.390000px;}
.y3e{bottom:903.570000px;}
.y421{bottom:904.290000px;}
.yd7{bottom:905.010000px;}
.y481{bottom:905.370000px;}
.y29d{bottom:905.730000px;}
.y438{bottom:906.450000px;}
.ye7{bottom:906.990000px;}
.y274{bottom:907.890000px;}
.ya8{bottom:908.430000px;}
.y405{bottom:908.970000px;}
.y45{bottom:910.410000px;}
.y518{bottom:911.130000px;}
.y158{bottom:912.570000px;}
.y232{bottom:912.930000px;}
.y94{bottom:913.290000px;}
.y4d7{bottom:914.550000px;}
.y13c{bottom:915.810000px;}
.y353{bottom:915.990000px;}
.y11b{bottom:917.430000px;}
.y381{bottom:918.690000px;}
.y331{bottom:919.050000px;}
.y2ba{bottom:921.570000px;}
.y3e4{bottom:921.750000px;}
.y1a7{bottom:922.470000px;}
.y1f{bottom:928.230000px;}
.ya7{bottom:929.130000px;}
.y480{bottom:929.490000px;}
.y404{bottom:929.670000px;}
.y517{bottom:931.830000px;}
.y157{bottom:933.270000px;}
.y231{bottom:933.630000px;}
.y93{bottom:933.990000px;}
.y352{bottom:936.690000px;}
.y44{bottom:937.950000px;}
.y380{bottom:939.390000px;}
.y330{bottom:939.750000px;}
.y70{bottom:940.110000px;}
.y4c2{bottom:941.010000px;}
.y180{bottom:941.730000px;}
.y54c{bottom:942.090000px;}
.y2b9{bottom:942.270000px;}
.y3e3{bottom:942.450000px;}
.y24c{bottom:942.810000px;}
.y1d4{bottom:942.990000px;}
.y1a6{bottom:943.170000px;}
.yd5{bottom:943.710000px;}
.ye6{bottom:946.950000px;}
.y371{bottom:947.130000px;}
.y39d{bottom:947.850000px;}
.y469{bottom:948.930000px;}
.y13b{bottom:949.650000px;}
.ya6{bottom:949.830000px;}
.y403{bottom:950.370000px;}
.y31b{bottom:952.350000px;}
.y4d6{bottom:953.250000px;}
.y47f{bottom:953.430000px;}
.y156{bottom:953.970000px;}
.y230{bottom:954.330000px;}
.y92{bottom:954.690000px;}
.y351{bottom:957.390000px;}
.y3b7{bottom:960.090000px;}
.y3d{bottom:962.610000px;}
.y2b8{bottom:962.970000px;}
.y3e2{bottom:963.150000px;}
.y1a5{bottom:963.870000px;}
.y1c{bottom:964.950000px;}
.y24a{bottom:966.930000px;}
.y3bf{bottom:967.830000px;}
.y452{bottom:968.550000px;}
.ya5{bottom:970.530000px;}
.y402{bottom:971.070000px;}
.y51f{bottom:971.970000px;}
.y22a{bottom:972.330000px;}
.y43{bottom:974.490000px;}
.y6f{bottom:975.390000px;}
.y350{bottom:978.090000px;}
.y32f{bottom:979.710000px;}
.y3b6{bottom:980.790000px;}
.y420{bottom:983.130000px;}
.y2b7{bottom:983.670000px;}
.y17d{bottom:983.850000px;}
.y13a{bottom:988.350000px;}
.y47e{bottom:988.530000px;}
.ya4{bottom:991.230000px;}
.y401{bottom:991.770000px;}
.y4d5{bottom:991.950000px;}
.y11a{bottom:993.030000px;}
.y4c1{bottom:994.470000px;}
.y155{bottom:995.730000px;}
.y6e{bottom:996.090000px;}
.y34f{bottom:998.790000px;}
.yd4{bottom:1001.310000px;}
.y3c{bottom:1003.470000px;}
.y2b6{bottom:1004.370000px;}
.y3e1{bottom:1004.550000px;}
.y203{bottom:1007.790000px;}
.y1a4{bottom:1009.050000px;}
.y42{bottom:1011.030000px;}
.y39c{bottom:1011.390000px;}
.ya3{bottom:1011.930000px;}
.y260{bottom:1012.110000px;}
.y400{bottom:1012.470000px;}
.y4d4{bottom:1012.650000px;}
.y6d{bottom:1016.790000px;}
.y34e{bottom:1019.310000px;}
.y1a{bottom:1019.850000px;}
.ye5{bottom:1020.390000px;}
.yd3{bottom:1020.930000px;}
.y3b5{bottom:1022.010000px;}
.y3e0{bottom:1025.250000px;}
.y4be{bottom:1027.230000px;}
.y2f8{bottom:1027.770000px;}
.y1a3{bottom:1029.750000px;}
.y4d3{bottom:1031.370000px;}
.ya2{bottom:1032.630000px;}
.y3ff{bottom:1033.170000px;}
.y37f{bottom:1033.530000px;}
.y468{bottom:1034.610000px;}
.y154{bottom:1035.690000px;}
.y6c{bottom:1037.310000px;}
.y34d{bottom:1040.010000px;}
.y32e{bottom:1041.990000px;}
.y3b4{bottom:1042.710000px;}
.y2b5{bottom:1043.070000px;}
.y249{bottom:1043.790000px;}
.y3a{bottom:1044.330000px;}
.y41f{bottom:1045.410000px;}
.y3df{bottom:1045.950000px;}
.y41{bottom:1047.750000px;}
.y17c{bottom:1050.450000px;}
.y19{bottom:1053.330000px;}
.y3fe{bottom:1053.870000px;}
.y54b{bottom:1054.770000px;}
.y6b{bottom:1058.010000px;}
.y467{bottom:1058.730000px;}
.y22e{bottom:1059.090000px;}
.yd1{bottom:1059.630000px;}
.y34c{bottom:1060.710000px;}
.ye4{bottom:1061.790000px;}
.y32d{bottom:1062.690000px;}
.y119{bottom:1068.630000px;}
.y4bd{bottom:1071.150000px;}
.y3fd{bottom:1074.570000px;}
.y1a2{bottom:1074.930000px;}
.y6a{bottom:1078.710000px;}
.y34b{bottom:1081.410000px;}
.y4d2{bottom:1084.830000px;}
.y247{bottom:1086.630000px;}
.y31a{bottom:1088.250000px;}
.y3de{bottom:1089.150000px;}
.y466{bottom:1093.650000px;}
.y437{bottom:1094.190000px;}
.y17b{bottom:1094.910000px;}
.y1a1{bottom:1095.630000px;}
.y153{bottom:1097.970000px;}
.yd0{bottom:1098.330000px;}
.y69{bottom:1099.410000px;}
.y18{bottom:1103.190000px;}
.y38{bottom:1103.370000px;}
.y3dd{bottom:1113.090000px;}
.y3fc{bottom:1114.530000px;}
.y152{bottom:1115.610000px;}
.y68{bottom:1120.110000px;}
.y246{bottom:1121.550000px;}
.y17{bottom:1140.810000px;}
.y16{bottom:1161.540000px;}
.y15{bottom:1182.240000px;}
.h15{height:18.900000px;}
.h1f{height:19.080000px;}
.h14{height:19.116000px;}
.h21{height:20.700000px;}
.h4f{height:21.420000px;}
.h17{height:22.500000px;}
.h49{height:22.536000px;}
.hb{height:23.040000px;}
.h8{height:23.220000px;}
.hf{height:27.360000px;}
.h69{height:29.700000px;}
.h6c{height:29.736000px;}
.h4b{height:31.320000px;}
.h16{height:37.800000px;}
.h1c{height:37.836000px;}
.h18{height:37.980000px;}
.h58{height:40.320000px;}
.h19{height:40.550625px;}
.h9{height:41.400000px;}
.hc{height:41.436000px;}
.h29{height:43.740000px;}
.h11{height:45.540000px;}
.h12{height:50.312812px;}
.h6b{height:50.400000px;}
.h70{height:50.436000px;}
.h65{height:52.727040px;}
.h77{height:55.080000px;}
.h81{height:55.291992px;}
.h80{height:56.320312px;}
.h1b{height:56.880000px;}
.h78{height:56.900391px;}
.h1e{height:56.916000px;}
.h1d{height:57.060000px;}
.h2b{height:57.312000px;}
.h1a{height:59.383125px;}
.he{height:59.439023px;}
.h10{height:61.189805px;}
.h7b{height:61.920000px;}
.hd{height:62.100000px;}
.h22{height:62.136000px;}
.h3{height:62.327813px;}
.h35{height:63.360000px;}
.h23{height:64.546875px;}
.h2d{height:64.620000px;}
.h25{height:65.700000px;}
.h2a{height:65.880000px;}
.h52{height:65.884219px;}
.h50{height:67.824844px;}
.h13{height:69.086250px;}
.h2{height:75.093750px;}
.h41{height:75.240000px;}
.h39{height:76.500000px;}
.h5f{height:77.760000px;}
.h24{height:82.800000px;}
.ha{height:82.836000px;}
.h6e{height:82.980000px;}
.h2f{height:85.140000px;}
.h40{height:85.320000px;}
.h3e{height:85.356000px;}
.h2e{height:86.616000px;}
.h28{height:87.660000px;}
.h3a{height:91.440000px;}
.h73{height:91.800000px;}
.h64{height:94.860000px;}
.h7d{height:99.000000px;}
.h6{height:99.874688px;}
.h5b{height:100.620000px;}
.h54{height:100.656000px;}
.h51{height:100.800000px;}
.h76{height:102.832031px;}
.h33{height:103.500000px;}
.h62{height:103.536000px;}
.h6f{height:103.860000px;}
.h30{height:105.840000px;}
.h3c{height:105.876000px;}
.h3d{height:106.020000px;}
.h32{height:106.056000px;}
.h20{height:108.281250px;}
.h60{height:110.196000px;}
.h5e{height:110.376000px;}
.h7e{height:110.583984px;}
.h7a{height:113.076000px;}
.h74{height:117.036000px;}
.h59{height:120.780000px;}
.h57{height:120.960000px;}
.h56{height:120.996000px;}
.h44{height:124.200000px;}
.h45{height:124.236000px;}
.h36{height:126.576000px;}
.h38{height:126.756000px;}
.h37{height:127.800000px;}
.h27{height:129.096000px;}
.h71{height:133.020000px;}
.h75{height:138.816000px;}
.h5{height:140.066719px;}
.h55{height:140.940000px;}
.h5c{height:140.976000px;}
.h46{height:144.900000px;}
.h48{height:144.936000px;}
.h72{height:148.500000px;}
.h6a{height:148.536000px;}
.h7{height:150.187500px;}
.h4e{height:151.200000px;}
.h5a{height:161.310000px;}
.h4{height:162.953438px;}
.h3f{height:163.260000px;}
.h4a{height:165.600000px;}
.h47{height:165.630000px;}
.h34{height:170.850000px;}
.h4c{height:171.930000px;}
.h5d{height:181.290000px;}
.h4d{height:186.300000px;}
.h31{height:210.990000px;}
.h3b{height:213.330000px;}
.h26{height:217.830000px;}
.h79{height:219.810000px;}
.h42{height:227.700000px;}
.h43{height:227.730000px;}
.h7f{height:247.710000px;}
.h66{height:268.950000px;}
.h63{height:269.130000px;}
.h6d{height:296.670000px;}
.h67{height:310.350000px;}
.h61{height:310.530000px;}
.h53{height:322.410000px;}
.h2c{height:384.735000px;}
.h68{height:393.375000px;}
.h7c{height:421.230000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w60{width:10.260000px;}
.w73{width:11.700000px;}
.w72{width:22.320000px;}
.w74{width:26.460000px;}
.w7b{width:30.060000px;}
.w78{width:34.380000px;}
.w7e{width:34.416000px;}
.w7a{width:34.560000px;}
.w79{width:36.756000px;}
.w7{width:37.980000px;}
.w75{width:38.160000px;}
.w76{width:38.556000px;}
.w7c{width:40.860000px;}
.w7d{width:41.580000px;}
.w81{width:42.336000px;}
.w69{width:44.820000px;}
.w77{width:45.180000px;}
.w71{width:46.440000px;}
.w15{width:52.020000px;}
.w7f{width:54.720000px;}
.w44{width:57.780000px;}
.w80{width:64.800000px;}
.w31{width:66.240000px;}
.w6e{width:75.240000px;}
.w32{width:76.500000px;}
.w6c{width:80.316000px;}
.w67{width:81.540000px;}
.w66{width:81.576000px;}
.w6f{width:82.476000px;}
.w30{width:83.196000px;}
.w5d{width:88.020000px;}
.w62{width:88.740000px;}
.w33{width:90.036000px;}
.w63{width:90.936000px;}
.w34{width:101.556000px;}
.w8{width:104.940000px;}
.w6a{width:108.540000px;}
.w3d{width:115.200000px;}
.w1b{width:115.416000px;}
.w65{width:116.640000px;}
.w48{width:116.676000px;}
.w2f{width:121.536000px;}
.w4d{width:122.256000px;}
.w4a{width:123.516000px;}
.w52{width:125.676000px;}
.w28{width:126.180000px;}
.w54{width:126.396000px;}
.w1c{width:126.540000px;}
.w12{width:126.900000px;}
.w49{width:128.016000px;}
.w6b{width:131.436000px;}
.w37{width:134.496000px;}
.w4f{width:135.756000px;}
.w26{width:137.340000px;}
.w11{width:137.556000px;}
.w18{width:137.700000px;}
.w21{width:142.056000px;}
.w4e{width:146.916000px;}
.w23{width:147.780000px;}
.w40{width:148.500000px;}
.w4c{width:150.120000px;}
.w20{width:150.150000px;}
.w53{width:153.750000px;}
.w2e{width:156.420000px;}
.w50{width:157.890000px;}
.w42{width:158.040000px;}
.w58{width:158.940000px;}
.w55{width:160.020000px;}
.w1f{width:164.520000px;}
.w64{width:165.630000px;}
.w3a{width:166.890000px;}
.w35{width:168.120000px;}
.w38{width:177.150000px;}
.w4b{width:178.050000px;}
.wc{width:188.850000px;}
.w47{width:189.390000px;}
.w6d{width:194.250000px;}
.w2c{width:205.050000px;}
.w5b{width:207.030000px;}
.w5a{width:208.695000px;}
.w1a{width:212.970000px;}
.wd{width:213.330000px;}
.w13{width:219.855000px;}
.w16{width:222.510000px;}
.w3f{width:231.195000px;}
.w46{width:232.455000px;}
.w10{width:232.770000px;}
.w45{width:236.910000px;}
.we{width:237.450000px;}
.w5f{width:240.015000px;}
.w25{width:240.195000px;}
.w19{width:242.715000px;}
.w5{width:251.490000px;}
.w57{width:253.695000px;}
.w3{width:254.370000px;}
.w9{width:260.715000px;}
.w22{width:262.695000px;}
.w1e{width:291.675000px;}
.w29{width:296.175000px;}
.w2a{width:296.355000px;}
.w2b{width:296.895000px;}
.w1d{width:298.875000px;}
.w56{width:305.355000px;}
.w51{width:309.810000px;}
.wa{width:316.515000px;}
.w24{width:330.375000px;}
.w59{width:351.435000px;}
.w3c{width:360.435000px;}
.w3b{width:360.615000px;}
.wf{width:360.975000px;}
.w3e{width:372.135000px;}
.w39{width:373.215000px;}
.w5e{width:391.935000px;}
.w36{width:414.645000px;}
.w17{width:445.965000px;}
.w4{width:479.985000px;}
.w6{width:483.405000px;}
.w5c{width:514.365000px;}
.w2d{width:515.805000px;}
.w43{width:561.930000px;}
.w41{width:573.270000px;}
.w27{width:584.070000px;}
.w61{width:712.230000px;}
.w14{width:719.250000px;}
.w70{width:722.310000px;}
.w68{width:722.490000px;}
.wb{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x56{left:1.260000px;}
.x2f{left:5.220000px;}
.x4{left:6.480000px;}
.xf{left:7.740000px;}
.x1e{left:10.440000px;}
.x7{left:15.660000px;}
.x4b{left:22.005000px;}
.x4e{left:28.620000px;}
.x1f{left:31.860000px;}
.x23{left:34.200000px;}
.x4f{left:38.160000px;}
.x4c{left:40.860000px;}
.x66{left:48.960000px;}
.x51{left:50.040000px;}
.x50{left:51.165000px;}
.x4d{left:57.780000px;}
.x3f{left:74.514000px;}
.x3{left:84.995987px;}
.x2e{left:87.336000px;}
.x13{left:90.395987px;}
.x16{left:94.715987px;}
.xb{left:102.995987px;}
.x19{left:111.995987px;}
.x14{left:117.395987px;}
.xc{left:120.995987px;}
.x8{left:123.696000px;}
.x17{left:128.195987px;}
.x62{left:131.076000px;}
.x68{left:132.696000px;}
.x15{left:138.995987px;}
.x3b{left:142.374000px;}
.x41{left:144.396000px;}
.x69{left:155.730000px;}
.x3c{left:158.574000px;}
.x3a{left:161.274000px;}
.x6a{left:168.150000px;}
.x57{left:174.630000px;}
.x5b{left:185.070000px;}
.x5a{left:193.359000px;}
.x6b{left:195.330000px;}
.x3d{left:201.630000px;}
.x61{left:211.539000px;}
.x24{left:212.970000px;}
.x2b{left:222.330000px;}
.x20{left:224.130000px;}
.x9{left:229.530000px;}
.x29{left:234.390000px;}
.x47{left:236.550000px;}
.x63{left:240.330000px;}
.x40{left:244.470000px;}
.x30{left:245.910000px;}
.x26{left:251.130000px;}
.x36{left:254.550000px;}
.x67{left:261.399000px;}
.x38{left:263.595000px;}
.x6c{left:273.495000px;}
.x10{left:275.475000px;}
.x5c{left:276.735000px;}
.x2d{left:291.675000px;}
.x12{left:301.034987px;}
.x1a{left:319.395000px;}
.x6{left:337.215000px;}
.x5{left:340.095000px;}
.x2{left:352.334987px;}
.x6d{left:354.675000px;}
.x48{left:360.435000px;}
.x1d{left:361.875000px;}
.x31{left:369.795000px;}
.x44{left:372.675000px;}
.x42{left:382.935000px;}
.x6e{left:393.555000px;}
.x52{left:396.435000px;}
.x27{left:402.015000px;}
.x6f{left:420.915000px;}
.x5d{left:443.265000px;}
.x18{left:446.685000px;}
.x64{left:453.525000px;}
.x32{left:455.325000px;}
.x1b{left:457.665000px;}
.x21{left:468.465000px;}
.x11{left:489.525000px;}
.xa{left:491.145000px;}
.x70{left:493.665000px;}
.x45{left:502.125000px;}
.x49{left:508.965000px;}
.x2c{left:510.405000px;}
.x25{left:513.465000px;}
.x33{left:523.905000px;}
.x28{left:544.965000px;}
.x54{left:552.705000px;}
.x5e{left:560.805000px;}
.x2a{left:566.205000px;}
.x58{left:567.465000px;}
.x3e{left:575.205000px;}
.x1c{left:585.285000px;}
.x55{left:597.705000px;}
.x34{left:602.565000px;}
.x71{left:608.505000px;}
.x43{left:617.010000px;}
.x59{left:625.109987px;}
.x46{left:627.090000px;}
.x39{left:638.250000px;}
.x5f{left:643.110000px;}
.x4a{left:646.170000px;}
.x65{left:648.690000px;}
.x37{left:670.650000px;}
.x53{left:678.750000px;}
.x22{left:682.170000px;}
.x35{left:694.950000px;}
.x72{left:699.090000px;}
.xd{left:703.049973px;}
.xe{left:709.709987px;}
.x60{left:725.550000px;}
.x73{left:764.610000px;}
.x1{left:808.019987px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls37{letter-spacing:-1.152000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.224000pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.176000pt;}
.ls9{letter-spacing:-0.153067pt;}
.ls30{letter-spacing:-0.146133pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.117867pt;}
.ls2b{letter-spacing:-0.102400pt;}
.ls28{letter-spacing:-0.097067pt;}
.ls2c{letter-spacing:-0.069333pt;}
.ls2{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.061867pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.044160pt;}
.ls33{letter-spacing:-0.043520pt;}
.ls34{letter-spacing:-0.040960pt;}
.ls40{letter-spacing:-0.032000pt;}
.ls43{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000001pt;}
.lse{letter-spacing:0.016640pt;}
.ls31{letter-spacing:0.017920pt;}
.ls3b{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.033280pt;}
.ls32{letter-spacing:0.053867pt;}
.ls24{letter-spacing:0.064000pt;}
.ls3c{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.140800pt;}
.ls3a{letter-spacing:0.154880pt;}
.ls16{letter-spacing:0.173867pt;}
.ls3d{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.207467pt;}
.ls15{letter-spacing:0.233067pt;}
.ls39{letter-spacing:0.233600pt;}
.ls41{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.330133pt;}
.ls42{letter-spacing:0.336000pt;}
.ls17{letter-spacing:1.024000pt;}
.ls1{letter-spacing:1.072000pt;}
.ls1a{letter-spacing:1.191680pt;}
.ls18{letter-spacing:1.312000pt;}
.ls38{letter-spacing:1.408000pt;}
.ls36{letter-spacing:1.536000pt;}
.ls19{letter-spacing:7.056640pt;}
.ls26{letter-spacing:9.088000pt;}
.ls20{letter-spacing:21.248000pt;}
.ls1f{letter-spacing:28.928000pt;}
.ls11{letter-spacing:33.551360pt;}
.ls35{letter-spacing:36.608000pt;}
.ls1c{letter-spacing:43.648000pt;}
.ls12{letter-spacing:50.810027pt;}
.ls27{letter-spacing:52.751360pt;}
.lsd{letter-spacing:53.391360pt;}
.ls13{letter-spacing:61.711360pt;}
.ls1b{letter-spacing:78.208000pt;}
.lsf{letter-spacing:86.650027pt;}
.ls14{letter-spacing:93.456640pt;}
.ls10{letter-spacing:174.186667pt;}
.ls6{letter-spacing:176.794880pt;}
.ws15{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-58.880000pt;}
.ws1{word-spacing:-39.680640pt;}
.ws0{word-spacing:-38.608640pt;}
.wsf{word-spacing:-35.584000pt;}
.ws10{word-spacing:-24.975360pt;}
.ws11{word-spacing:-24.855040pt;}
.wsb{word-spacing:-23.696640pt;}
.ws8{word-spacing:-23.680000pt;}
.ws19{word-spacing:-23.663360pt;}
.wsa{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws12{word-spacing:-17.728000pt;}
.ws2{word-spacing:-17.664000pt;}
.ws29{word-spacing:-17.600000pt;}
.ws13{word-spacing:-17.536000pt;}
.ws17{word-spacing:-17.408000pt;}
.ws2a{word-spacing:-17.280000pt;}
.ws18{word-spacing:-17.152000pt;}
.ws16{word-spacing:-17.088001pt;}
.wsc{word-spacing:-16.601707pt;}
.wse{word-spacing:-16.542507pt;}
.ws14{word-spacing:-16.368640pt;}
.ws1b{word-spacing:-16.271573pt;}
.ws21{word-spacing:-13.637013pt;}
.ws1d{word-spacing:-13.514347pt;}
.ws25{word-spacing:-13.360747pt;}
.ws24{word-spacing:-13.324800pt;}
.ws1c{word-spacing:-13.306880pt;}
.ws27{word-spacing:-13.265920pt;}
.ws26{word-spacing:-13.263360pt;}
.ws20{word-spacing:-13.237547pt;}
.ws28{word-spacing:-13.209813pt;}
.ws1f{word-spacing:-13.204480pt;}
.ws22{word-spacing:-13.189013pt;}
.ws23{word-spacing:-13.160747pt;}
.ws1e{word-spacing:-13.114880pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws2b{word-spacing:-10.848000pt;}
.ws2d{word-spacing:-10.832000pt;}
.ws2e{word-spacing:-10.672000pt;}
.ws2c{word-spacing:-10.624000pt;}
.wsd{word-spacing:-10.319360pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-21.457280pt;}
._15{margin-left:-17.184000pt;}
._17{margin-left:-16.245333pt;}
._16{margin-left:-14.581333pt;}
._19{margin-left:-13.173333pt;}
._1c{margin-left:-11.637333pt;}
._1a{margin-left:-10.037333pt;}
._9{margin-left:-8.448000pt;}
._1b{margin-left:-7.029333pt;}
._14{margin-left:-6.008533pt;}
._18{margin-left:-4.844587pt;}
._6{margin-left:-3.136000pt;}
._5{margin-left:-1.728000pt;}
._0{width:1.249920pt;}
._1{width:2.222080pt;}
._1f{width:3.296213pt;}
._a{width:4.490453pt;}
._2{width:5.790933pt;}
._8{width:7.198080pt;}
._d{width:8.417920pt;}
._10{width:9.349120pt;}
._11{width:10.552960pt;}
._2b{width:12.039040pt;}
._3{width:13.162667pt;}
._4{width:14.197333pt;}
._31{width:15.104000pt;}
._32{width:16.362667pt;}
._25{width:18.193920pt;}
._36{width:19.584000pt;}
._3a{width:20.648747pt;}
._43{width:21.973120pt;}
._c{width:23.006080pt;}
._b{width:24.384000pt;}
._35{width:25.344000pt;}
._2f{width:26.752000pt;}
._2e{width:27.648000pt;}
._2d{width:29.086720pt;}
._46{width:30.016000pt;}
._2c{width:30.912000pt;}
._34{width:32.158080pt;}
._23{width:33.930667pt;}
._22{width:34.922667pt;}
._24{width:36.172800pt;}
._28{width:37.525760pt;}
._52{width:38.720000pt;}
._39{width:40.000000pt;}
._21{width:42.044160pt;}
._20{width:42.944000pt;}
._3b{width:44.287997pt;}
._4d{width:46.016000pt;}
._4b{width:47.104000pt;}
._38{width:48.832000pt;}
._53{width:49.856000pt;}
._1e{width:51.370667pt;}
._1d{width:52.352000pt;}
._26{width:54.051840pt;}
._30{width:55.808000pt;}
._33{width:57.280000pt;}
._40{width:58.304000pt;}
._37{width:59.904000pt;}
._4a{width:62.609920pt;}
._3f{width:64.384000pt;}
._54{width:68.928000pt;}
._44{width:69.952000pt;}
._55{width:71.023573pt;}
._4e{width:72.352000pt;}
._41{width:73.504000pt;}
._5d{width:76.288000pt;}
._5c{width:77.344000pt;}
._51{width:81.344000pt;}
._42{width:82.304000pt;}
._13{width:83.758080pt;}
._3c{width:86.464000pt;}
._4c{width:87.424000pt;}
._50{width:97.032747pt;}
._4f{width:98.048000pt;}
._49{width:105.768960pt;}
._48{width:123.824640pt;}
._3d{width:128.960000pt;}
._5a{width:132.992000pt;}
._57{width:134.688000pt;}
._56{width:135.722667pt;}
._5f{width:144.896000pt;}
._5e{width:146.048000pt;}
._e{width:150.341120pt;}
._5b{width:155.904000pt;}
._58{width:165.368960pt;}
._60{width:168.212480pt;}
._59{width:175.744000pt;}
._f{width:176.794880pt;}
._45{width:188.224000pt;}
._29{width:219.701760pt;}
._47{width:222.448640pt;}
._2a{width:268.087680pt;}
._27{width:282.114560pt;}
._7{width:750.460160pt;}
._3e{width:1779.573333pt;}
._61{width:2222.613333pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:3.040000pt;}
.yc3{bottom:3.200000pt;}
.y2b4{bottom:3.354667pt;}
.y1e{bottom:3.360000pt;}
.y1ff{bottom:3.392000pt;}
.y39{bottom:3.520000pt;}
.y319{bottom:3.994667pt;}
.y2f7{bottom:4.000000pt;}
.y336{bottom:4.160000pt;}
.y1ed{bottom:4.480000pt;}
.y3d7{bottom:4.640000pt;}
.yc8{bottom:4.800000pt;}
.y248{bottom:4.960000pt;}
.y2f1{bottom:5.120000pt;}
.y27{bottom:5.440000pt;}
.y1b{bottom:5.600000pt;}
.y228{bottom:5.632000pt;}
.yc9{bottom:6.240000pt;}
.y1ce{bottom:6.752000pt;}
.y54e{bottom:8.960000pt;}
.y533{bottom:9.760000pt;}
.y216{bottom:11.040000pt;}
.y2d0{bottom:11.360000pt;}
.yd8{bottom:11.520000pt;}
.yd2{bottom:11.680000pt;}
.y37e{bottom:12.474667pt;}
.y1b8{bottom:12.480000pt;}
.y46d{bottom:12.640000pt;}
.y2a1{bottom:12.800000pt;}
.y226{bottom:12.992000pt;}
.y24b{bottom:15.040000pt;}
.y20b{bottom:16.160000pt;}
.y55b{bottom:18.240000pt;}
.y1ca{bottom:18.560000pt;}
.y1f3{bottom:19.520000pt;}
.y1bf{bottom:19.680000pt;}
.y202{bottom:19.706667pt;}
.y3b{bottom:19.840000pt;}
.ycb{bottom:20.000000pt;}
.y273{bottom:21.754667pt;}
.y1d{bottom:21.760000pt;}
.y1ec{bottom:21.786667pt;}
.y1c2{bottom:21.800000pt;}
.y2f6{bottom:21.914667pt;}
.y2fc{bottom:21.920000pt;}
.y161{bottom:22.720000pt;}
.y16c{bottom:22.880000pt;}
.y1d1{bottom:22.906667pt;}
.y534{bottom:23.680000pt;}
.y17a{bottom:23.840000pt;}
.y1c5{bottom:24.000000pt;}
.y227{bottom:24.026667pt;}
.y207{bottom:24.040000pt;}
.y15f{bottom:24.960000pt;}
.y1cd{bottom:25.146667pt;}
.y219{bottom:25.760000pt;}
.y532{bottom:25.920000pt;}
.y177{bottom:26.080000pt;}
.y348{bottom:27.720000pt;}
.y33e{bottom:27.840000pt;}
.ydc{bottom:28.480000pt;}
.y340{bottom:28.800000pt;}
.y215{bottom:29.440000pt;}
.y4f2{bottom:29.760000pt;}
.y54d{bottom:30.400000pt;}
.y2dd{bottom:31.040000pt;}
.y46c{bottom:31.080000pt;}
.y20d{bottom:32.320000pt;}
.y225{bottom:32.826667pt;}
.y55a{bottom:32.960000pt;}
.y22f{bottom:33.440000pt;}
.y33a{bottom:33.920000pt;}
.y20a{bottom:34.560000pt;}
.y4ef{bottom:35.040000pt;}
.y342{bottom:35.680000pt;}
.y524{bottom:36.160000pt;}
.y1e3{bottom:36.480000pt;}
.yd6{bottom:36.800000pt;}
.ydf{bottom:36.960000pt;}
.y2cf{bottom:37.760000pt;}
.y1f2{bottom:37.920000pt;}
.y1c9{bottom:38.080000pt;}
.y211{bottom:38.106667pt;}
.y201{bottom:39.066667pt;}
.y1be{bottom:39.200000pt;}
.y30f{bottom:39.680000pt;}
.y2f5{bottom:39.834667pt;}
.y2fb{bottom:39.840000pt;}
.y3fa{bottom:40.000000pt;}
.y272{bottom:40.154667pt;}
.y22{bottom:40.160000pt;}
.y145{bottom:40.186667pt;}
.y1c1{bottom:40.200000pt;}
.y1fc{bottom:41.120000pt;}
.y1c6{bottom:41.280000pt;}
.y229{bottom:41.306667pt;}
.y530{bottom:41.960000pt;}
.y160{bottom:42.240000pt;}
.y173{bottom:42.280000pt;}
.y17f{bottom:42.400000pt;}
.y1d0{bottom:42.426667pt;}
.y206{bottom:42.440000pt;}
.y344{bottom:43.080000pt;}
.y15e{bottom:43.360000pt;}
.y17e{bottom:43.520000pt;}
.y1cc{bottom:43.546667pt;}
.y176{bottom:44.480000pt;}
.y218{bottom:45.600000pt;}
.y347{bottom:46.120000pt;}
.y33d{bottom:46.240000pt;}
.y559{bottom:47.520000pt;}
.y22d{bottom:47.680000pt;}
.y214{bottom:47.840000pt;}
.y4f1{bottom:48.160000pt;}
.y3b3{bottom:49.274667pt;}
.y397{bottom:49.280000pt;}
.y3c1{bottom:49.440000pt;}
.y27c{bottom:49.466667pt;}
.y46b{bottom:49.480000pt;}
.y4c7{bottom:50.720000pt;}
.y20c{bottom:51.840000pt;}
.y339{bottom:52.320000pt;}
.y546{bottom:52.480000pt;}
.y224{bottom:52.666667pt;}
.y209{bottom:52.960000pt;}
.y522{bottom:53.440000pt;}
.y3db{bottom:53.760000pt;}
.y341{bottom:54.080000pt;}
.y1e2{bottom:56.320000pt;}
.y1c8{bottom:57.440000pt;}
.y200{bottom:57.466667pt;}
.y1c3{bottom:57.480000pt;}
.y30d{bottom:57.600000pt;}
.y210{bottom:57.626667pt;}
.y2f4{bottom:57.754667pt;}
.y2fa{bottom:57.760000pt;}
.y3f9{bottom:58.400000pt;}
.y271{bottom:58.554667pt;}
.y15c{bottom:58.560000pt;}
.y1fe{bottom:58.586667pt;}
.y21{bottom:58.600000pt;}
.y1d3{bottom:59.520000pt;}
.y1d7{bottom:59.680000pt;}
.y1eb{bottom:59.706667pt;}
.y1f7{bottom:59.720000pt;}
.y1d2{bottom:60.640000pt;}
.y172{bottom:60.680000pt;}
.y222{bottom:60.800000pt;}
.y1cf{bottom:60.826667pt;}
.y1de{bottom:60.840000pt;}
.y2cb{bottom:61.280000pt;}
.y16b{bottom:61.760000pt;}
.y1cb{bottom:61.946667pt;}
.y558{bottom:62.240000pt;}
.y175{bottom:62.880000pt;}
.y2ce{bottom:64.160000pt;}
.y346{bottom:64.520000pt;}
.y33c{bottom:64.640000pt;}
.y217{bottom:65.120000pt;}
.y213{bottom:66.240000pt;}
.y4f0{bottom:66.560000pt;}
.y22c{bottom:67.520000pt;}
.y42e{bottom:67.680000pt;}
.y372{bottom:67.840000pt;}
.y52c{bottom:68.640000pt;}
.y4c9{bottom:69.280000pt;}
.y3da{bottom:70.560000pt;}
.y322{bottom:74.400000pt;}
.y30e{bottom:74.426667pt;}
.y2fd{bottom:74.560000pt;}
.y313{bottom:75.520000pt;}
.y30c{bottom:75.546667pt;}
.y32b{bottom:75.560000pt;}
.y2f3{bottom:75.674667pt;}
.y2f9{bottom:75.680000pt;}
.y1e1{bottom:75.840000pt;}
.y3f8{bottom:76.800000pt;}
.y270{bottom:76.954667pt;}
.y1e0{bottom:76.960000pt;}
.y27b{bottom:76.986667pt;}
.y263{bottom:77.000000pt;}
.y21b{bottom:77.920000pt;}
.y1d6{bottom:78.080000pt;}
.y1ea{bottom:78.106667pt;}
.y1df{bottom:78.120000pt;}
.y2{bottom:78.400000pt;}
.y1d5{bottom:79.040000pt;}
.y1f5{bottom:79.080000pt;}
.y221{bottom:79.200000pt;}
.y1e9{bottom:79.226667pt;}
.y1dd{bottom:79.240000pt;}
.y1fa{bottom:80.160000pt;}
.y171{bottom:80.200000pt;}
.y16a{bottom:81.280000pt;}
.y16f{bottom:81.320000pt;}
.y2cd{bottom:82.560000pt;}
.y345{bottom:82.920000pt;}
.y33b{bottom:83.066667pt;}
.y52b{bottom:84.960000pt;}
.y439{bottom:86.080000pt;}
.y22b{bottom:87.360000pt;}
.y557{bottom:91.520000pt;}
.y31c{bottom:92.320000pt;}
.y318{bottom:92.474667pt;}
.y315{bottom:92.480000pt;}
.y312{bottom:93.440000pt;}
.y32a{bottom:93.480000pt;}
.y317{bottom:93.594667pt;}
.y309{bottom:93.600000pt;}
.y314{bottom:93.640000pt;}
.y3f7{bottom:95.200000pt;}
.y2b3{bottom:95.354667pt;}
.y25d{bottom:95.360000pt;}
.y27a{bottom:95.386667pt;}
.y262{bottom:95.400000pt;}
.y1f6{bottom:96.520000pt;}
.y1fb{bottom:97.440000pt;}
.y1f4{bottom:97.480000pt;}
.y205{bottom:97.640000pt;}
.y1f9{bottom:98.560000pt;}
.y170{bottom:98.600000pt;}
.y16e{bottom:99.720000pt;}
.y1e7{bottom:100.026667pt;}
.y169{bottom:100.800000pt;}
.y2cc{bottom:100.960000pt;}
.y545{bottom:101.280000pt;}
.y52a{bottom:101.306667pt;}
.y556{bottom:106.080000pt;}
.y4ce{bottom:108.960000pt;}
.y4c0{bottom:109.000000pt;}
.y324{bottom:110.240000pt;}
.y311{bottom:111.360000pt;}
.y328{bottom:111.400000pt;}
.y308{bottom:111.520000pt;}
.y31f{bottom:111.560000pt;}
.y3f0{bottom:113.600000pt;}
.y2b2{bottom:113.754667pt;}
.y25c{bottom:113.760000pt;}
.y26a{bottom:113.786667pt;}
.y26d{bottom:113.800000pt;}
.ycf{bottom:116.160000pt;}
.y1b9{bottom:116.320000pt;}
.y223{bottom:116.480000pt;}
.y516{bottom:117.280000pt;}
.y1f0{bottom:117.320000pt;}
.y1fd{bottom:117.440000pt;}
.y529{bottom:117.466667pt;}
.y436{bottom:117.920000pt;}
.y1e6{bottom:118.426667pt;}
.y2a4{bottom:119.360000pt;}
.y151{bottom:119.872000pt;}
.y168{bottom:120.160000pt;}
.yce{bottom:120.192000pt;}
.y555{bottom:120.800000pt;}
.y29c{bottom:121.152000pt;}
.y286{bottom:121.312000pt;}
.y3dc{bottom:121.632000pt;}
.y3fb{bottom:122.432000pt;}
.y431{bottom:122.880000pt;}
.y26f{bottom:122.912000pt;}
.y109{bottom:125.312000pt;}
.y2f2{bottom:125.792000pt;}
.y1a0{bottom:127.392000pt;}
.y91{bottom:127.712000pt;}
.y2da{bottom:127.872000pt;}
.y451{bottom:128.192000pt;}
.y320{bottom:128.360000pt;}
.y4bc{bottom:129.152000pt;}
.y327{bottom:129.320000pt;}
.y307{bottom:129.440000pt;}
.y31e{bottom:129.480000pt;}
.y3b2{bottom:129.632000pt;}
.y465{bottom:130.432000pt;}
.y316{bottom:130.592000pt;}
.y4a0{bottom:131.232000pt;}
.y3f6{bottom:132.000000pt;}
.y14{bottom:132.032000pt;}
.y2b1{bottom:132.154667pt;}
.y25b{bottom:132.160000pt;}
.y269{bottom:132.186667pt;}
.y2af{bottom:132.192000pt;}
.y26c{bottom:132.200000pt;}
.y370{bottom:133.466667pt;}
.y544{bottom:133.760000pt;}
.y67{bottom:133.786667pt;}
.y47d{bottom:134.266667pt;}
.y554{bottom:135.360000pt;}
.y245{bottom:135.546667pt;}
.y1db{bottom:135.680000pt;}
.y1ef{bottom:135.720000pt;}
.y1e5{bottom:136.826667pt;}
.y3ef{bottom:137.466667pt;}
.y21f{bottom:137.760000pt;}
.y2a3{bottom:137.786667pt;}
.y139{bottom:138.746667pt;}
.y150{bottom:138.906667pt;}
.y29b{bottom:139.546667pt;}
.y167{bottom:139.680000pt;}
.y285{bottom:139.706667pt;}
.y37{bottom:140.506667pt;}
.y430{bottom:141.280000pt;}
.y39b{bottom:142.266667pt;}
.y3d9{bottom:142.906667pt;}
.y515{bottom:143.546667pt;}
.y108{bottom:143.706667pt;}
.y4f3{bottom:145.306667pt;}
.y90{bottom:146.106667pt;}
.y329{bottom:146.120000pt;}
.y2d9{bottom:146.266667pt;}
.y179{bottom:147.066667pt;}
.y326{bottom:147.240000pt;}
.y306{bottom:147.360000pt;}
.y4bb{bottom:147.546667pt;}
.y464{bottom:148.826667pt;}
.y49f{bottom:149.626667pt;}
.y543{bottom:150.080000pt;}
.y528{bottom:150.106667pt;}
.y3f5{bottom:150.400000pt;}
.y13{bottom:150.426667pt;}
.y2b0{bottom:150.554667pt;}
.y25a{bottom:150.560000pt;}
.y268{bottom:150.586667pt;}
.y369{bottom:150.600000pt;}
.y36f{bottom:151.866667pt;}
.y66{bottom:152.186667pt;}
.y32c{bottom:153.146667pt;}
.y244{bottom:153.946667pt;}
.y1da{bottom:154.120000pt;}
.y47c{bottom:155.546667pt;}
.y21e{bottom:156.200000pt;}
.y138{bottom:157.146667pt;}
.y25e{bottom:157.786667pt;}
.y29a{bottom:157.946667pt;}
.y166{bottom:158.106667pt;}
.y164{bottom:160.186667pt;}
.y19f{bottom:161.786667pt;}
.y107{bottom:162.106667pt;}
.y3be{bottom:162.746667pt;}
.y41e{bottom:163.706667pt;}
.y4ee{bottom:164.346667pt;}
.y8f{bottom:164.506667pt;}
.y118{bottom:164.666667pt;}
.y553{bottom:164.800000pt;}
.y36{bottom:164.826667pt;}
.y305{bottom:165.120000pt;}
.y514{bottom:165.306667pt;}
.y4ba{bottom:165.946667pt;}
.y527{bottom:166.266667pt;}
.y450{bottom:166.426667pt;}
.y542{bottom:166.440000pt;}
.y49e{bottom:168.026667pt;}
.y3f4{bottom:168.800000pt;}
.y12{bottom:168.826667pt;}
.y259{bottom:168.960000pt;}
.y267{bottom:168.986667pt;}
.y368{bottom:169.000000pt;}
.y36e{bottom:170.266667pt;}
.y65{bottom:170.586667pt;}
.ycd{bottom:171.546667pt;}
.y243{bottom:172.346667pt;}
.y1d9{bottom:172.520000pt;}
.y39a{bottom:173.306667pt;}
.y42f{bottom:174.586667pt;}
.y21d{bottom:174.600000pt;}
.y4d1{bottom:175.226667pt;}
.y137{bottom:175.546667pt;}
.y299{bottom:176.346667pt;}
.y284{bottom:176.506667pt;}
.y165{bottom:177.626667pt;}
.y37d{bottom:178.426667pt;}
.y163{bottom:178.586667pt;}
.y34a{bottom:179.386667pt;}
.y552{bottom:179.400000pt;}
.y106{bottom:180.506667pt;}
.y3bd{bottom:181.146667pt;}
.y526{bottom:182.586667pt;}
.y541{bottom:182.600000pt;}
.y502{bottom:182.746667pt;}
.y8e{bottom:182.906667pt;}
.y2d8{bottom:183.066667pt;}
.y304{bottom:183.080000pt;}
.y463{bottom:183.226667pt;}
.y4b9{bottom:184.346667pt;}
.y49d{bottom:186.426667pt;}
.y178{bottom:186.746667pt;}
.y3f3{bottom:187.200000pt;}
.y435{bottom:187.240000pt;}
.y258{bottom:187.360000pt;}
.y266{bottom:187.386667pt;}
.y25f{bottom:187.400000pt;}
.y36d{bottom:188.666667pt;}
.y35{bottom:188.986667pt;}
.y242{bottom:190.746667pt;}
.y11{bottom:191.226667pt;}
.y1f8{bottom:192.506667pt;}
.y21c{bottom:193.626667pt;}
.y47b{bottom:193.786667pt;}
.y136{bottom:193.946667pt;}
.y551{bottom:194.120000pt;}
.y349{bottom:194.426667pt;}
.y1c7{bottom:194.586667pt;}
.y14f{bottom:194.746667pt;}
.y283{bottom:194.906667pt;}
.y19e{bottom:196.186667pt;}
.y105{bottom:198.906667pt;}
.y540{bottom:198.920000pt;}
.y303{bottom:201.000000pt;}
.y501{bottom:201.146667pt;}
.y8d{bottom:201.306667pt;}
.y2d7{bottom:201.466667pt;}
.y4b8{bottom:202.746667pt;}
.y37c{bottom:203.546667pt;}
.y4d0{bottom:204.186667pt;}
.y49c{bottom:204.826667pt;}
.y3f2{bottom:205.600000pt;}
.y434{bottom:205.640000pt;}
.y358{bottom:205.786667pt;}
.y3bc{bottom:205.800000pt;}
.ycc{bottom:205.946667pt;}
.y36c{bottom:207.066667pt;}
.y64{bottom:207.386667pt;}
.y399{bottom:207.706667pt;}
.y550{bottom:208.680000pt;}
.y241{bottom:209.146667pt;}
.y135{bottom:212.346667pt;}
.y298{bottom:213.146667pt;}
.y34{bottom:213.306667pt;}
.y19d{bottom:214.586667pt;}
.y53f{bottom:215.240000pt;}
.y26e{bottom:215.546667pt;}
.y104{bottom:217.306667pt;}
.y462{bottom:217.626667pt;}
.y302{bottom:218.920000pt;}
.y500{bottom:219.546667pt;}
.y8c{bottom:219.706667pt;}
.y2d6{bottom:219.866667pt;}
.y4b7{bottom:221.146667pt;}
.y37b{bottom:221.946667pt;}
.y49b{bottom:223.226667pt;}
.yca{bottom:223.386667pt;}
.y3f1{bottom:224.040000pt;}
.y174{bottom:224.186667pt;}
.y3bb{bottom:224.200000pt;}
.y63{bottom:225.786667pt;}
.y240{bottom:227.546667pt;}
.y3d8{bottom:228.506667pt;}
.y2f0{bottom:228.666667pt;}
.y134{bottom:230.746667pt;}
.y10{bottom:231.066667pt;}
.y297{bottom:231.546667pt;}
.y53e{bottom:231.560000pt;}
.y117{bottom:231.866667pt;}
.y14e{bottom:232.186667pt;}
.y19c{bottom:232.986667pt;}
.y4cf{bottom:233.306667pt;}
.y461{bottom:236.026667pt;}
.y301{bottom:236.840000pt;}
.y33{bottom:237.626667pt;}
.y4ff{bottom:237.946667pt;}
.y8b{bottom:238.106667pt;}
.y2d5{bottom:238.266667pt;}
.y4b6{bottom:239.546667pt;}
.y37a{bottom:240.346667pt;}
.y4c4{bottom:240.666667pt;}
.y44f{bottom:241.306667pt;}
.y36b{bottom:241.466667pt;}
.y49a{bottom:241.626667pt;}
.y362{bottom:241.786667pt;}
.y433{bottom:242.440000pt;}
.y357{bottom:242.586667pt;}
.y62{bottom:244.186667pt;}
.y23f{bottom:245.946667pt;}
.y282{bottom:247.706667pt;}
.y53d{bottom:247.720000pt;}
.y133{bottom:249.146667pt;}
.y296{bottom:249.946667pt;}
.y47a{bottom:250.266667pt;}
.y3b1{bottom:251.066667pt;}
.y19b{bottom:251.386667pt;}
.y531{bottom:253.626667pt;}
.y103{bottom:254.106667pt;}
.y460{bottom:254.426667pt;}
.y300{bottom:254.760000pt;}
.y4fe{bottom:256.346667pt;}
.y8a{bottom:256.506667pt;}
.y2d4{bottom:256.666667pt;}
.yc7{bottom:257.786667pt;}
.y4b5{bottom:257.946667pt;}
.y379{bottom:258.746667pt;}
.y499{bottom:260.026667pt;}
.y432{bottom:260.840000pt;}
.y356{bottom:260.986667pt;}
.y4ed{bottom:261.146667pt;}
.y32{bottom:261.946667pt;}
.y61{bottom:262.586667pt;}
.y398{bottom:263.066667pt;}
.y3d6{bottom:263.706667pt;}
.y53c{bottom:264.040000pt;}
.y23e{bottom:264.346667pt;}
.y3ba{bottom:264.986667pt;}
.y2ef{bottom:266.426667pt;}
.y132{bottom:267.546667pt;}
.y1c4{bottom:269.466667pt;}
.y19a{bottom:269.786667pt;}
.yf{bottom:271.066667pt;}
.y30a{bottom:271.560000pt;}
.y102{bottom:272.506667pt;}
.y2ff{bottom:272.680000pt;}
.y45f{bottom:272.826667pt;}
.y361{bottom:273.466667pt;}
.y325{bottom:273.946667pt;}
.y4fd{bottom:274.746667pt;}
.y89{bottom:274.906667pt;}
.y36a{bottom:275.866667pt;}
.y3b0{bottom:276.186667pt;}
.y4b4{bottom:276.346667pt;}
.y378{bottom:277.146667pt;}
.y396{bottom:278.106667pt;}
.y498{bottom:278.426667pt;}
.yc6{bottom:278.586667pt;}
.y44e{bottom:279.386667pt;}
.y53b{bottom:280.360000pt;}
.y4cd{bottom:280.826667pt;}
.y60{bottom:280.986667pt;}
.y281{bottom:282.106667pt;}
.y23d{bottom:282.746667pt;}
.y295{bottom:284.346667pt;}
.y131{bottom:285.946667pt;}
.y31{bottom:286.106667pt;}
.y14d{bottom:288.186667pt;}
.y4ec{bottom:288.826667pt;}
.y220{bottom:289.146667pt;}
.y1bc{bottom:290.146667pt;}
.y367{bottom:290.906667pt;}
.y2d3{bottom:291.066667pt;}
.y2ee{bottom:291.546667pt;}
.y360{bottom:291.866667pt;}
.y88{bottom:293.306667pt;}
.y3af{bottom:294.586667pt;}
.y3d5{bottom:294.746667pt;}
.y377{bottom:295.546667pt;}
.y53a{bottom:296.520000pt;}
.y497{bottom:296.826667pt;}
.y456{bottom:297.826667pt;}
.y479{bottom:298.106667pt;}
.y116{bottom:299.066667pt;}
.y5f{bottom:299.386667pt;}
.y280{bottom:300.506667pt;}
.y16d{bottom:302.746667pt;}
.y130{bottom:304.346667pt;}
.y199{bottom:306.586667pt;}
.ye{bottom:306.906667pt;}
.y14c{bottom:307.226667pt;}
.y1ee{bottom:307.386667pt;}
.y26b{bottom:308.186667pt;}
.y1bb{bottom:308.546667pt;}
.y23c{bottom:308.826667pt;}
.y2ae{bottom:308.986667pt;}
.y41d{bottom:309.146667pt;}
.y101{bottom:309.306667pt;}
.y45e{bottom:309.466667pt;}
.y2ed{bottom:309.946667pt;}
.y35f{bottom:310.266667pt;}
.y30{bottom:310.426667pt;}
.y87{bottom:311.706667pt;}
.y539{bottom:312.840000pt;}
.yc4{bottom:312.986667pt;}
.y4b3{bottom:313.146667pt;}
.y496{bottom:315.226667pt;}
.y27f{bottom:315.546667pt;}
.y455{bottom:316.226667pt;}
.y5e{bottom:317.786667pt;}
.y294{bottom:318.746667pt;}
.y3d4{bottom:319.866667pt;}
.y12f{bottom:322.746667pt;}
.y478{bottom:323.226667pt;}
.y343{bottom:324.666667pt;}
.y198{bottom:324.986667pt;}
.yd{bottom:325.306667pt;}
.y2d2{bottom:325.466667pt;}
.y4eb{bottom:325.626667pt;}
.y2f{bottom:326.746667pt;}
.y1ba{bottom:326.946667pt;}
.y100{bottom:327.706667pt;}
.y45d{bottom:327.866667pt;}
.y1c0{bottom:328.186667pt;}
.y2ec{bottom:328.346667pt;}
.y35e{bottom:328.666667pt;}
.y538{bottom:329.160000pt;}
.y376{bottom:329.946667pt;}
.y86{bottom:330.106667pt;}
.yc2{bottom:330.426667pt;}
.y23b{bottom:330.586667pt;}
.y3ae{bottom:331.386667pt;}
.y4b2{bottom:331.546667pt;}
.y293{bottom:333.786667pt;}
.y2ad{bottom:334.106667pt;}
.y41c{bottom:334.266667pt;}
.y454{bottom:334.626667pt;}
.y5d{bottom:336.186667pt;}
.y3d3{bottom:338.266667pt;}
.y12e{bottom:341.146667pt;}
.y477{bottom:341.626667pt;}
.y197{bottom:343.386667pt;}
.yc{bottom:343.706667pt;}
.y2d1{bottom:343.866667pt;}
.y14b{bottom:344.706667pt;}
.y4fc{bottom:344.866667pt;}
.y537{bottom:345.480000pt;}
.y45c{bottom:346.306667pt;}
.y2eb{bottom:346.786667pt;}
.y35d{bottom:347.106667pt;}
.y85{bottom:348.546667pt;}
.y495{bottom:349.666667pt;}
.y3ad{bottom:349.826667pt;}
.y2e{bottom:351.106667pt;}
.y2ac{bottom:352.546667pt;}
.y41b{bottom:352.706667pt;}
.y5c{bottom:354.626667pt;}
.y4ea{bottom:354.786667pt;}
.y3d2{bottom:356.706667pt;}
.y2ca{bottom:358.946667pt;}
.yc1{bottom:359.106667pt;}
.y12d{bottom:359.586667pt;}
.y476{bottom:360.066667pt;}
.y257{bottom:360.866667pt;}
.y536{bottom:361.640000pt;}
.y196{bottom:361.826667pt;}
.yb{bottom:362.146667pt;}
.y375{bottom:364.386667pt;}
.yff{bottom:364.546667pt;}
.y45b{bottom:364.706667pt;}
.y2ea{bottom:365.186667pt;}
.y35c{bottom:365.506667pt;}
.y4b1{bottom:365.986667pt;}
.y115{bottom:366.306667pt;}
.y84{bottom:366.946667pt;}
.y4cc{bottom:367.426667pt;}
.y3ac{bottom:368.226667pt;}
.y2ab{bottom:370.946667pt;}
.y41a{bottom:371.106667pt;}
.y27e{bottom:372.066667pt;}
.y310{bottom:372.226667pt;}
.y44d{bottom:372.866667pt;}
.y5b{bottom:373.026667pt;}
.y4e9{bottom:373.186667pt;}
.y3d1{bottom:375.106667pt;}
.y2d{bottom:377.506667pt;}
.y12c{bottom:377.986667pt;}
.y475{bottom:378.466667pt;}
.y513{bottom:378.626667pt;}
.y374{bottom:379.426667pt;}
.y195{bottom:380.226667pt;}
.ya{bottom:380.546667pt;}
.y14a{bottom:382.146667pt;}
.yfe{bottom:382.946667pt;}
.y45a{bottom:383.106667pt;}
.y35b{bottom:383.906667pt;}
.y494{bottom:384.066667pt;}
.ybf{bottom:384.226667pt;}
.y21a{bottom:384.706667pt;}
.y83{bottom:385.346667pt;}
.y3ab{bottom:386.626667pt;}
.y3ee{bottom:387.746667pt;}
.y2aa{bottom:389.346667pt;}
.yc0{bottom:389.506667pt;}
.y4cb{bottom:390.946667pt;}
.y5a{bottom:391.426667pt;}
.y4e8{bottom:391.586667pt;}
.y3d0{bottom:393.506667pt;}
.y474{bottom:396.866667pt;}
.y4fb{bottom:397.506667pt;}
.y194{bottom:398.626667pt;}
.y9{bottom:398.946667pt;}
.y2e9{bottom:399.586667pt;}
.y4b0{bottom:400.386667pt;}
.y149{bottom:401.186667pt;}
.yfd{bottom:401.346667pt;}
.y459{bottom:401.506667pt;}
.y493{bottom:402.466667pt;}
.ybe{bottom:402.626667pt;}
.y1bd{bottom:403.106667pt;}
.y82{bottom:403.746667pt;}
.y512{bottom:404.866667pt;}
.y3aa{bottom:405.026667pt;}
.y2a9{bottom:407.746667pt;}
.y419{bottom:407.906667pt;}
.y59{bottom:409.826667pt;}
.y2c{bottom:409.986667pt;}
.y3cf{bottom:411.906667pt;}
.y3ed{bottom:412.866667pt;}
.y12b{bottom:414.786667pt;}
.y473{bottom:415.266667pt;}
.y193{bottom:417.026667pt;}
.y8{bottom:417.346667pt;}
.y162{bottom:418.146667pt;}
.y35a{bottom:418.306667pt;}
.y4af{bottom:418.786667pt;}
.yfc{bottom:419.746667pt;}
.y458{bottom:419.906667pt;}
.y44c{bottom:420.706667pt;}
.y492{bottom:420.866667pt;}
.ybd{bottom:421.026667pt;}
.y1f1{bottom:421.346667pt;}
.y81{bottom:422.146667pt;}
.y52f{bottom:422.786667pt;}
.y3a9{bottom:423.426667pt;}
.y33f{bottom:423.906667pt;}
.y395{bottom:424.706667pt;}
.y2a8{bottom:426.146667pt;}
.y418{bottom:426.306667pt;}
.y511{bottom:426.626667pt;}
.y3ec{bottom:427.906667pt;}
.y58{bottom:428.226667pt;}
.y3ce{bottom:430.306667pt;}
.y12a{bottom:433.186667pt;}
.y114{bottom:433.506667pt;}
.y472{bottom:433.666667pt;}
.y2e8{bottom:433.986667pt;}
.y457{bottom:434.946667pt;}
.y192{bottom:435.426667pt;}
.y7{bottom:436.866667pt;}
.y4ae{bottom:437.186667pt;}
.yfb{bottom:438.146667pt;}
.y148{bottom:438.626667pt;}
.y4e7{bottom:439.106667pt;}
.y491{bottom:439.266667pt;}
.ybc{bottom:439.426667pt;}
.y80{bottom:440.546667pt;}
.y3a8{bottom:441.826667pt;}
.y2a2{bottom:442.146667pt;}
.y56e{bottom:442.466667pt;}
.y2b{bottom:442.626667pt;}
.y394{bottom:443.106667pt;}
.y417{bottom:444.706667pt;}
.y44b{bottom:445.826667pt;}
.y57{bottom:446.626667pt;}
.y52e{bottom:447.906667pt;}
.y323{bottom:448.386667pt;}
.y3cd{bottom:448.706667pt;}
.y359{bottom:449.986667pt;}
.y129{bottom:451.586667pt;}
.y42d{bottom:451.906667pt;}
.y471{bottom:452.066667pt;}
.y2e7{bottom:452.386667pt;}
.y191{bottom:453.826667pt;}
.y4ad{bottom:455.586667pt;}
.y265{bottom:456.066667pt;}
.yfa{bottom:456.546667pt;}
.y4e6{bottom:457.506667pt;}
.y490{bottom:457.666667pt;}
.ybb{bottom:457.826667pt;}
.y7f{bottom:458.946667pt;}
.y1b7{bottom:459.746667pt;}
.y3a7{bottom:460.226667pt;}
.y56d{bottom:460.866667pt;}
.y393{bottom:461.506667pt;}
.y416{bottom:463.106667pt;}
.y44a{bottom:464.226667pt;}
.y56{bottom:465.026667pt;}
.y27d{bottom:465.506667pt;}
.y52d{bottom:466.946667pt;}
.y3cc{bottom:467.106667pt;}
.y113{bottom:468.706667pt;}
.y2e6{bottom:470.786667pt;}
.y190{bottom:472.226667pt;}
.y292{bottom:473.826667pt;}
.y4ac{bottom:473.986667pt;}
.yf9{bottom:474.946667pt;}
.y4e5{bottom:475.906667pt;}
.y147{bottom:476.066667pt;}
.yba{bottom:476.226667pt;}
.y7e{bottom:477.346667pt;}
.y3a6{bottom:478.626667pt;}
.y56c{bottom:479.266667pt;}
.ye3{bottom:479.746667pt;}
.y212{bottom:480.066667pt;}
.y525{bottom:480.866667pt;}
.y392{bottom:481.026667pt;}
.y415{bottom:481.506667pt;}
.y373{bottom:482.466667pt;}
.y449{bottom:482.626667pt;}
.y55{bottom:483.426667pt;}
.y3cb{bottom:485.506667pt;}
.y6{bottom:486.946667pt;}
.y128{bottom:488.386667pt;}
.y2e5{bottom:489.186667pt;}
.y18f{bottom:490.626667pt;}
.yf8{bottom:493.346667pt;}
.y4ab{bottom:493.506667pt;}
.y112{bottom:493.826667pt;}
.y338{bottom:494.306667pt;}
.yb9{bottom:494.626667pt;}
.ye2{bottom:495.426667pt;}
.y7d{bottom:495.746667pt;}
.y1e4{bottom:496.226667pt;}
.y3a5{bottom:497.026667pt;}
.y56b{bottom:497.666667pt;}
.y2a7{bottom:498.626667pt;}
.y291{bottom:498.946667pt;}
.y414{bottom:499.906667pt;}
.y391{bottom:500.386667pt;}
.y448{bottom:501.026667pt;}
.y54{bottom:501.826667pt;}
.y3eb{bottom:502.786667pt;}
.y3ca{bottom:503.906667pt;}
.y2c9{bottom:504.386667pt;}
.y48f{bottom:504.866667pt;}
.y127{bottom:506.786667pt;}
.y1b6{bottom:507.586667pt;}
.y18e{bottom:509.026667pt;}
.y2a{bottom:509.826667pt;}
.y453{bottom:509.986667pt;}
.y30b{bottom:510.946667pt;}
.yf7{bottom:511.746667pt;}
.y4c3{bottom:511.906667pt;}
.y111{bottom:512.226667pt;}
.y4e4{bottom:512.546667pt;}
.ye1{bottom:512.866667pt;}
.yb8{bottom:513.026667pt;}
.y146{bottom:513.666667pt;}
.y7c{bottom:514.146667pt;}
.y3a4{bottom:515.426667pt;}
.y56a{bottom:516.066667pt;}
.y290{bottom:517.346667pt;}
.y413{bottom:518.306667pt;}
.y447{bottom:519.426667pt;}
.y390{bottom:519.906667pt;}
.y53{bottom:520.226667pt;}
.y48e{bottom:521.986667pt;}
.y3c9{bottom:522.306667pt;}
.y126{bottom:525.186667pt;}
.y2e4{bottom:525.986667pt;}
.y5{bottom:526.786667pt;}
.y18d{bottom:527.426667pt;}
.y2c8{bottom:529.506667pt;}
.y510{bottom:529.986667pt;}
.yf6{bottom:530.146667pt;}
.ye0{bottom:530.466667pt;}
.y110{bottom:530.626667pt;}
.yb7{bottom:531.426667pt;}
.y4aa{bottom:532.386667pt;}
.y7b{bottom:532.546667pt;}
.y144{bottom:532.706667pt;}
.y569{bottom:534.466667pt;}
.y28f{bottom:535.746667pt;}
.y412{bottom:536.706667pt;}
.y2a6{bottom:536.866667pt;}
.y446{bottom:537.826667pt;}
.y52{bottom:538.626667pt;}
.y38f{bottom:539.426667pt;}
.y48d{bottom:540.386667pt;}
.y3b9{bottom:540.546667pt;}
.y1b5{bottom:540.706667pt;}
.y4e3{bottom:541.666667pt;}
.y29{bottom:542.466667pt;}
.y125{bottom:543.586667pt;}
.y2e3{bottom:544.386667pt;}
.y18c{bottom:545.826667pt;}
.y2c7{bottom:547.906667pt;}
.y50f{bottom:548.386667pt;}
.yf5{bottom:548.546667pt;}
.y10f{bottom:549.026667pt;}
.yb6{bottom:549.826667pt;}
.y7a{bottom:550.946667pt;}
.y4fa{bottom:551.266667pt;}
.y4a9{bottom:551.906667pt;}
.y568{bottom:552.866667pt;}
.y1e8{bottom:553.826667pt;}
.ya1{bottom:554.146667pt;}
.y411{bottom:555.106667pt;}
.y445{bottom:556.226667pt;}
.y51{bottom:557.026667pt;}
.y38e{bottom:557.826667pt;}
.y2a5{bottom:558.146667pt;}
.y279{bottom:558.786667pt;}
.y3b8{bottom:558.946667pt;}
.y3c8{bottom:559.106667pt;}
.y4ca{bottom:559.426667pt;}
.y4e2{bottom:560.066667pt;}
.y124{bottom:561.986667pt;}
.y20f{bottom:562.626667pt;}
.y2e2{bottom:562.786667pt;}
.y256{bottom:564.066667pt;}
.y18b{bottom:564.226667pt;}
.y54a{bottom:564.386667pt;}
.y2c6{bottom:566.306667pt;}
.y4{bottom:566.626667pt;}
.y50e{bottom:566.786667pt;}
.yf4{bottom:566.946667pt;}
.y10e{bottom:567.426667pt;}
.yb5{bottom:568.226667pt;}
.y79{bottom:569.373333pt;}
.y567{bottom:571.293333pt;}
.y4a8{bottom:571.453333pt;}
.y28e{bottom:572.573333pt;}
.y410{bottom:573.533333pt;}
.ya0{bottom:573.693333pt;}
.y444{bottom:574.653333pt;}
.y50{bottom:575.453333pt;}
.y48c{bottom:577.213333pt;}
.y1b4{bottom:577.373333pt;}
.y3c7{bottom:577.533333pt;}
.y3ea{bottom:577.693333pt;}
.y4e1{bottom:578.493333pt;}
.y2e1{bottom:581.213333pt;}
.y55d{bottom:581.533333pt;}
.yde{bottom:581.693333pt;}
.y42c{bottom:582.013333pt;}
.y18a{bottom:582.653333pt;}
.y549{bottom:582.813333pt;}
.y3a3{bottom:584.253333pt;}
.y2c5{bottom:584.733333pt;}
.y50d{bottom:585.213333pt;}
.yf3{bottom:585.373333pt;}
.y10d{bottom:585.853333pt;}
.yb4{bottom:586.653333pt;}
.y321{bottom:587.133333pt;}
.y78{bottom:587.773333pt;}
.y143{bottom:588.573333pt;}
.y566{bottom:589.693333pt;}
.y28d{bottom:590.973333pt;}
.y28{bottom:591.293333pt;}
.y40f{bottom:591.933333pt;}
.y443{bottom:593.053333pt;}
.y337{bottom:593.693333pt;}
.y4f{bottom:593.853333pt;}
.y48b{bottom:595.613333pt;}
.y38d{bottom:595.773333pt;}
.y3c6{bottom:595.933333pt;}
.y2a0{bottom:596.253333pt;}
.y4e0{bottom:596.893333pt;}
.y9f{bottom:597.053333pt;}
.y470{bottom:597.213333pt;}
.y123{bottom:598.813333pt;}
.y1b3{bottom:599.133333pt;}
.y2e0{bottom:599.613333pt;}
.y55c{bottom:599.933333pt;}
.y189{bottom:601.053333pt;}
.y548{bottom:601.213333pt;}
.y3a2{bottom:602.653333pt;}
.y2c4{bottom:603.133333pt;}
.y50c{bottom:603.613333pt;}
.yf2{bottom:603.773333pt;}
.y23a{bottom:604.093333pt;}
.y10c{bottom:604.253333pt;}
.yb3{bottom:605.053333pt;}
.y77{bottom:606.173333pt;}
.y3{bottom:606.493333pt;}
.y4c8{bottom:606.813333pt;}
.y4f9{bottom:607.133333pt;}
.y142{bottom:607.613333pt;}
.y565{bottom:608.093333pt;}
.y28c{bottom:609.373333pt;}
.y40e{bottom:610.333333pt;}
.y442{bottom:611.453333pt;}
.y4e{bottom:612.253333pt;}
.y15d{bottom:612.573333pt;}
.y42b{bottom:613.053333pt;}
.y2fe{bottom:613.693333pt;}
.y48a{bottom:614.013333pt;}
.y38c{bottom:614.173333pt;}
.y3c5{bottom:614.333333pt;}
.y9e{bottom:615.453333pt;}
.y54f{bottom:615.613333pt;}
.y122{bottom:617.213333pt;}
.y1b2{bottom:617.533333pt;}
.y188{bottom:619.453333pt;}
.y547{bottom:619.613333pt;}
.y3a1{bottom:621.053333pt;}
.y2c3{bottom:621.533333pt;}
.y50b{bottom:622.013333pt;}
.yf1{bottom:622.173333pt;}
.y239{bottom:622.493333pt;}
.yb2{bottom:623.453333pt;}
.y26{bottom:623.933333pt;}
.y76{bottom:624.573333pt;}
.y29f{bottom:625.373333pt;}
.y4df{bottom:626.013333pt;}
.y564{bottom:626.493333pt;}
.y28b{bottom:627.773333pt;}
.y51e{bottom:628.253333pt;}
.y40d{bottom:628.733333pt;}
.y441{bottom:629.853333pt;}
.y4d{bottom:630.653333pt;}
.y489{bottom:632.413333pt;}
.y38b{bottom:632.573333pt;}
.y3c4{bottom:632.733333pt;}
.ydd{bottom:633.053333pt;}
.y9d{bottom:633.853333pt;}
.y2df{bottom:634.013333pt;}
.y535{bottom:634.653333pt;}
.y121{bottom:635.613333pt;}
.y1b1{bottom:635.933333pt;}
.y20e{bottom:637.693333pt;}
.y187{bottom:637.853333pt;}
.y42a{bottom:638.173333pt;}
.y3a0{bottom:639.453333pt;}
.y10b{bottom:639.773333pt;}
.y2c2{bottom:639.933333pt;}
.y50a{bottom:640.413333pt;}
.yf0{bottom:640.573333pt;}
.y238{bottom:640.893333pt;}
.yb1{bottom:641.853333pt;}
.y75{bottom:642.973333pt;}
.y4de{bottom:644.413333pt;}
.y4f8{bottom:644.573333pt;}
.y563{bottom:644.893333pt;}
.y141{bottom:645.053333pt;}
.y28a{bottom:646.173333pt;}
.y51d{bottom:646.653333pt;}
.y4a7{bottom:647.133333pt;}
.y440{bottom:648.253333pt;}
.y4c{bottom:649.053333pt;}
.y1d8{bottom:649.373333pt;}
.y488{bottom:650.813333pt;}
.y38a{bottom:650.973333pt;}
.y9c{bottom:652.253333pt;}
.y1b0{bottom:654.333333pt;}
.y1{bottom:654.973333pt;}
.y39f{bottom:655.773333pt;}
.y366{bottom:655.933333pt;}
.y255{bottom:656.093333pt;}
.y186{bottom:656.253333pt;}
.y25{bottom:656.413333pt;}
.y429{bottom:656.573333pt;}
.y2c1{bottom:658.333333pt;}
.y509{bottom:658.813333pt;}
.yef{bottom:658.973333pt;}
.y264{bottom:659.133333pt;}
.y237{bottom:659.293333pt;}
.yb0{bottom:660.253333pt;}
.y74{bottom:662.493333pt;}
.y4dd{bottom:662.813333pt;}
.y40c{bottom:663.133333pt;}
.y562{bottom:663.293333pt;}
.y140{bottom:664.093333pt;}
.y10a{bottom:664.413333pt;}
.y289{bottom:664.573333pt;}
.y51c{bottom:665.053333pt;}
.y4f7{bottom:665.213333pt;}
.y4a6{bottom:665.533333pt;}
.y43f{bottom:666.653333pt;}
.y4b{bottom:667.453333pt;}
.y3c3{bottom:668.253333pt;}
.y2de{bottom:668.413333pt;}
.y487{bottom:669.213333pt;}
.y389{bottom:669.373333pt;}
.y278{bottom:670.493333pt;}
.y15b{bottom:671.613333pt;}
.y9b{bottom:671.773333pt;}
.y120{bottom:672.413333pt;}
.y1af{bottom:672.733333pt;}
.y254{bottom:674.493333pt;}
.y185{bottom:674.653333pt;}
.y428{bottom:674.973333pt;}
.y2c0{bottom:676.733333pt;}
.y508{bottom:677.213333pt;}
.yee{bottom:677.373333pt;}
.y236{bottom:677.533333pt;}
.y523{bottom:677.853333pt;}
.yaf{bottom:678.653333pt;}
.y4dc{bottom:681.213333pt;}
.y561{bottom:681.693333pt;}
.y288{bottom:682.973333pt;}
.y2dc{bottom:683.453333pt;}
.y4a5{bottom:683.933333pt;}
.ydb{bottom:684.253333pt;}
.y43e{bottom:685.053333pt;}
.y4a{bottom:685.853333pt;}
.y24{bottom:686.173333pt;}
.y486{bottom:687.613333pt;}
.y388{bottom:687.773333pt;}
.y31d{bottom:689.853333pt;}
.y365{bottom:690.333333pt;}
.y46f{bottom:690.653333pt;}
.y11f{bottom:690.813333pt;}
.y1ae{bottom:691.133333pt;}
.y253{bottom:692.893333pt;}
.y184{bottom:693.053333pt;}
.y427{bottom:693.373333pt;}
.y507{bottom:695.613333pt;}
.yed{bottom:695.773333pt;}
.y9a{bottom:696.413333pt;}
.yae{bottom:697.053333pt;}
.y40b{bottom:697.533333pt;}
.y560{bottom:700.093333pt;}
.y287{bottom:701.373333pt;}
.y277{bottom:701.693333pt;}
.y4c6{bottom:701.853333pt;}
.y4a4{bottom:702.333333pt;}
.y485{bottom:702.653333pt;}
.y43d{bottom:703.453333pt;}
.y387{bottom:706.173333pt;}
.y23{bottom:706.813333pt;}
.y3e9{bottom:707.933333pt;}
.y364{bottom:708.733333pt;}
.y11e{bottom:709.213333pt;}
.y1ad{bottom:709.533333pt;}
.y4db{bottom:710.173333pt;}
.y2bf{bottom:711.133333pt;}
.y252{bottom:711.293333pt;}
.y426{bottom:711.773333pt;}
.y46e{bottom:711.933333pt;}
.y208{bottom:712.573333pt;}
.y235{bottom:713.213333pt;}
.y49{bottom:713.373333pt;}
.y506{bottom:714.013333pt;}
.yec{bottom:714.173333pt;}
.yad{bottom:715.453333pt;}
.y40a{bottom:715.933333pt;}
.y55f{bottom:718.173333pt;}
.y99{bottom:719.773333pt;}
.y13f{bottom:719.933333pt;}
.y51b{bottom:720.253333pt;}
.y4a3{bottom:720.733333pt;}
.y43c{bottom:721.853333pt;}
.y4f6{bottom:722.173333pt;}
.y3c2{bottom:723.613333pt;}
.y335{bottom:723.773333pt;}
.y386{bottom:724.573333pt;}
.y363{bottom:727.133333pt;}
.y11d{bottom:727.613333pt;}
.y1ac{bottom:727.933333pt;}
.y521{bottom:728.413333pt;}
.y183{bottom:728.573333pt;}
.y251{bottom:729.693333pt;}
.y425{bottom:730.173333pt;}
.y4c5{bottom:730.813333pt;}
.y505{bottom:732.413333pt;}
.yeb{bottom:732.573333pt;}
.yac{bottom:733.853333pt;}
.y409{bottom:734.333333pt;}
.y55e{bottom:735.133333pt;}
.yda{bottom:735.613333pt;}
.y276{bottom:735.933333pt;}
.y234{bottom:737.693333pt;}
.y98{bottom:738.173333pt;}
.y3c0{bottom:738.653333pt;}
.y3e8{bottom:738.973333pt;}
.y4a2{bottom:739.133333pt;}
.y20{bottom:739.453333pt;}
.y40{bottom:740.413333pt;}
.y4f5{bottom:740.573333pt;}
.y484{bottom:740.733333pt;}
.y1dc{bottom:742.653333pt;}
.y385{bottom:742.973333pt;}
.y48{bottom:744.733333pt;}
.y2be{bottom:745.533333pt;}
.y73{bottom:746.013333pt;}
.y1ab{bottom:746.333333pt;}
.y4da{bottom:746.973333pt;}
.y520{bottom:747.773333pt;}
.y250{bottom:748.093333pt;}
.y11c{bottom:748.253333pt;}
.y424{bottom:748.573333pt;}
.y39e{bottom:749.213333pt;}
.yea{bottom:750.973333pt;}
.yab{bottom:752.253333pt;}
.y408{bottom:752.733333pt;}
.y334{bottom:754.973333pt;}
.y43b{bottom:756.253333pt;}
.y97{bottom:756.573333pt;}
.y15a{bottom:757.053333pt;}
.y13e{bottom:757.533333pt;}
.y504{bottom:758.493333pt;}
.y4f4{bottom:758.973333pt;}
.y384{bottom:761.373333pt;}
.y483{bottom:762.173333pt;}
.y47{bottom:763.133333pt;}
.y2bd{bottom:763.933333pt;}
.y3e7{bottom:764.093333pt;}
.y1aa{bottom:764.733333pt;}
.y4d9{bottom:765.373333pt;}
.y24f{bottom:766.493333pt;}
.y3f{bottom:766.813333pt;}
.y423{bottom:766.973333pt;}
.y2db{bottom:768.253333pt;}
.y46a{bottom:768.413333pt;}
.ye9{bottom:769.373333pt;}
.yd9{bottom:770.013333pt;}
.yaa{bottom:770.653333pt;}
.y407{bottom:771.133333pt;}
.y51a{bottom:773.053333pt;}
.y29e{bottom:773.853333pt;}
.y4a1{bottom:774.813333pt;}
.y96{bottom:774.973333pt;}
.y355{bottom:777.373333pt;}
.y4bf{bottom:778.333333pt;}
.y72{bottom:778.493333pt;}
.y383{bottom:779.773333pt;}
.y333{bottom:780.093333pt;}
.y503{bottom:780.253333pt;}
.y46{bottom:781.533333pt;}
.y204{bottom:781.853333pt;}
.y2bc{bottom:782.333333pt;}
.y3e6{bottom:782.493333pt;}
.y1a9{bottom:783.133333pt;}
.y482{bottom:783.453333pt;}
.y182{bottom:783.933333pt;}
.y24e{bottom:784.893333pt;}
.y422{bottom:785.373333pt;}
.ye8{bottom:787.773333pt;}
.y261{bottom:788.573333pt;}
.ya9{bottom:789.053333pt;}
.y406{bottom:789.533333pt;}
.y43a{bottom:790.653333pt;}
.y275{bottom:791.293333pt;}
.y519{bottom:791.453333pt;}
.y159{bottom:792.733333pt;}
.y233{bottom:793.053333pt;}
.y95{bottom:793.413333pt;}
.y4d8{bottom:794.533333pt;}
.y13d{bottom:795.013333pt;}
.y354{bottom:795.813333pt;}
.y382{bottom:798.213333pt;}
.y332{bottom:798.533333pt;}
.y181{bottom:799.653333pt;}
.y24d{bottom:799.973333pt;}
.y2bb{bottom:800.773333pt;}
.y3e5{bottom:800.933333pt;}
.y1a8{bottom:801.573333pt;}
.y71{bottom:803.013333pt;}
.y3e{bottom:803.173333pt;}
.y421{bottom:803.813333pt;}
.yd7{bottom:804.453333pt;}
.y481{bottom:804.773333pt;}
.y29d{bottom:805.093333pt;}
.y438{bottom:805.733333pt;}
.ye7{bottom:806.213333pt;}
.y274{bottom:807.013333pt;}
.ya8{bottom:807.493333pt;}
.y405{bottom:807.973333pt;}
.y45{bottom:809.253333pt;}
.y518{bottom:809.893333pt;}
.y158{bottom:811.173333pt;}
.y232{bottom:811.493333pt;}
.y94{bottom:811.813333pt;}
.y4d7{bottom:812.933333pt;}
.y13c{bottom:814.053333pt;}
.y353{bottom:814.213333pt;}
.y11b{bottom:815.493333pt;}
.y381{bottom:816.613333pt;}
.y331{bottom:816.933333pt;}
.y2ba{bottom:819.173333pt;}
.y3e4{bottom:819.333333pt;}
.y1a7{bottom:819.973333pt;}
.y1f{bottom:825.093333pt;}
.ya7{bottom:825.893333pt;}
.y480{bottom:826.213333pt;}
.y404{bottom:826.373333pt;}
.y517{bottom:828.293333pt;}
.y157{bottom:829.573333pt;}
.y231{bottom:829.893333pt;}
.y93{bottom:830.213333pt;}
.y352{bottom:832.613333pt;}
.y44{bottom:833.733333pt;}
.y380{bottom:835.013333pt;}
.y330{bottom:835.333333pt;}
.y70{bottom:835.653333pt;}
.y4c2{bottom:836.453333pt;}
.y180{bottom:837.093333pt;}
.y54c{bottom:837.413333pt;}
.y2b9{bottom:837.573333pt;}
.y3e3{bottom:837.733333pt;}
.y24c{bottom:838.053333pt;}
.y1d4{bottom:838.213333pt;}
.y1a6{bottom:838.373333pt;}
.yd5{bottom:838.853333pt;}
.ye6{bottom:841.733333pt;}
.y371{bottom:841.893333pt;}
.y39d{bottom:842.533333pt;}
.y469{bottom:843.493333pt;}
.y13b{bottom:844.133333pt;}
.ya6{bottom:844.293333pt;}
.y403{bottom:844.773333pt;}
.y31b{bottom:846.533333pt;}
.y4d6{bottom:847.333333pt;}
.y47f{bottom:847.493333pt;}
.y156{bottom:847.973333pt;}
.y230{bottom:848.293333pt;}
.y92{bottom:848.613333pt;}
.y351{bottom:851.013333pt;}
.y3b7{bottom:853.413333pt;}
.y3d{bottom:855.653333pt;}
.y2b8{bottom:855.973333pt;}
.y3e2{bottom:856.133333pt;}
.y1a5{bottom:856.773333pt;}
.y1c{bottom:857.733333pt;}
.y24a{bottom:859.493333pt;}
.y3bf{bottom:860.293333pt;}
.y452{bottom:860.933333pt;}
.ya5{bottom:862.693333pt;}
.y402{bottom:863.173333pt;}
.y51f{bottom:863.973333pt;}
.y22a{bottom:864.293333pt;}
.y43{bottom:866.213333pt;}
.y6f{bottom:867.013333pt;}
.y350{bottom:869.413333pt;}
.y32f{bottom:870.853333pt;}
.y3b6{bottom:871.813333pt;}
.y420{bottom:873.893333pt;}
.y2b7{bottom:874.373333pt;}
.y17d{bottom:874.533333pt;}
.y13a{bottom:878.533333pt;}
.y47e{bottom:878.693333pt;}
.ya4{bottom:881.093333pt;}
.y401{bottom:881.573333pt;}
.y4d5{bottom:881.733333pt;}
.y11a{bottom:882.693333pt;}
.y4c1{bottom:883.973333pt;}
.y155{bottom:885.093333pt;}
.y6e{bottom:885.413333pt;}
.y34f{bottom:887.813333pt;}
.yd4{bottom:890.053333pt;}
.y3c{bottom:891.973333pt;}
.y2b6{bottom:892.773333pt;}
.y3e1{bottom:892.933333pt;}
.y203{bottom:895.813333pt;}
.y1a4{bottom:896.933333pt;}
.y42{bottom:898.693333pt;}
.y39c{bottom:899.013333pt;}
.ya3{bottom:899.493333pt;}
.y260{bottom:899.653333pt;}
.y400{bottom:899.973333pt;}
.y4d4{bottom:900.133333pt;}
.y6d{bottom:903.813333pt;}
.y34e{bottom:906.053333pt;}
.y1a{bottom:906.533333pt;}
.ye5{bottom:907.013333pt;}
.yd3{bottom:907.493333pt;}
.y3b5{bottom:908.453333pt;}
.y3e0{bottom:911.333333pt;}
.y4be{bottom:913.093333pt;}
.y2f8{bottom:913.573333pt;}
.y1a3{bottom:915.333333pt;}
.y4d3{bottom:916.773333pt;}
.ya2{bottom:917.893333pt;}
.y3ff{bottom:918.373333pt;}
.y37f{bottom:918.693333pt;}
.y468{bottom:919.653333pt;}
.y154{bottom:920.613333pt;}
.y6c{bottom:922.053333pt;}
.y34d{bottom:924.453333pt;}
.y32e{bottom:926.213333pt;}
.y3b4{bottom:926.853333pt;}
.y2b5{bottom:927.173333pt;}
.y249{bottom:927.813333pt;}
.y3a{bottom:928.293333pt;}
.y41f{bottom:929.253333pt;}
.y3df{bottom:929.733333pt;}
.y41{bottom:931.333333pt;}
.y17c{bottom:933.733333pt;}
.y19{bottom:936.293333pt;}
.y3fe{bottom:936.773333pt;}
.y54b{bottom:937.573333pt;}
.y6b{bottom:940.453333pt;}
.y467{bottom:941.093333pt;}
.y22e{bottom:941.413333pt;}
.yd1{bottom:941.893333pt;}
.y34c{bottom:942.853333pt;}
.ye4{bottom:943.813333pt;}
.y32d{bottom:944.613333pt;}
.y119{bottom:949.893333pt;}
.y4bd{bottom:952.133333pt;}
.y3fd{bottom:955.173333pt;}
.y1a2{bottom:955.493333pt;}
.y6a{bottom:958.853333pt;}
.y34b{bottom:961.253333pt;}
.y4d2{bottom:964.293333pt;}
.y247{bottom:965.893333pt;}
.y31a{bottom:967.333333pt;}
.y3de{bottom:968.133333pt;}
.y466{bottom:972.133333pt;}
.y437{bottom:972.613333pt;}
.y17b{bottom:973.253333pt;}
.y1a1{bottom:973.893333pt;}
.y153{bottom:975.973333pt;}
.yd0{bottom:976.293333pt;}
.y69{bottom:977.253333pt;}
.y18{bottom:980.613333pt;}
.y38{bottom:980.773333pt;}
.y3dd{bottom:989.413333pt;}
.y3fc{bottom:990.693333pt;}
.y152{bottom:991.653333pt;}
.y68{bottom:995.653333pt;}
.y246{bottom:996.933333pt;}
.y17{bottom:1014.053333pt;}
.y16{bottom:1032.480000pt;}
.y15{bottom:1050.880000pt;}
.h15{height:16.800000pt;}
.h1f{height:16.960000pt;}
.h14{height:16.992000pt;}
.h21{height:18.400000pt;}
.h4f{height:19.040000pt;}
.h17{height:20.000000pt;}
.h49{height:20.032000pt;}
.hb{height:20.480000pt;}
.h8{height:20.640000pt;}
.hf{height:24.320000pt;}
.h69{height:26.400000pt;}
.h6c{height:26.432000pt;}
.h4b{height:27.840000pt;}
.h16{height:33.600000pt;}
.h1c{height:33.632000pt;}
.h18{height:33.760000pt;}
.h58{height:35.840000pt;}
.h19{height:36.045000pt;}
.h9{height:36.800000pt;}
.hc{height:36.832000pt;}
.h29{height:38.880000pt;}
.h11{height:40.480000pt;}
.h12{height:44.722500pt;}
.h6b{height:44.800000pt;}
.h70{height:44.832000pt;}
.h65{height:46.868480pt;}
.h77{height:48.960000pt;}
.h81{height:49.148438pt;}
.h80{height:50.062500pt;}
.h1b{height:50.560000pt;}
.h78{height:50.578125pt;}
.h1e{height:50.592000pt;}
.h1d{height:50.720000pt;}
.h2b{height:50.944000pt;}
.h1a{height:52.785000pt;}
.he{height:52.834688pt;}
.h10{height:54.390938pt;}
.h7b{height:55.040000pt;}
.hd{height:55.200000pt;}
.h22{height:55.232000pt;}
.h3{height:55.402500pt;}
.h35{height:56.320000pt;}
.h23{height:57.375000pt;}
.h2d{height:57.440000pt;}
.h25{height:58.400000pt;}
.h2a{height:58.560000pt;}
.h52{height:58.563750pt;}
.h50{height:60.288750pt;}
.h13{height:61.410000pt;}
.h2{height:66.750000pt;}
.h41{height:66.880000pt;}
.h39{height:68.000000pt;}
.h5f{height:69.120000pt;}
.h24{height:73.600000pt;}
.ha{height:73.632000pt;}
.h6e{height:73.760000pt;}
.h2f{height:75.680000pt;}
.h40{height:75.840000pt;}
.h3e{height:75.872000pt;}
.h2e{height:76.992000pt;}
.h28{height:77.920000pt;}
.h3a{height:81.280000pt;}
.h73{height:81.600000pt;}
.h64{height:84.320000pt;}
.h7d{height:88.000000pt;}
.h6{height:88.777500pt;}
.h5b{height:89.440000pt;}
.h54{height:89.472000pt;}
.h51{height:89.600000pt;}
.h76{height:91.406250pt;}
.h33{height:92.000000pt;}
.h62{height:92.032000pt;}
.h6f{height:92.320000pt;}
.h30{height:94.080000pt;}
.h3c{height:94.112000pt;}
.h3d{height:94.240000pt;}
.h32{height:94.272000pt;}
.h20{height:96.250000pt;}
.h60{height:97.952000pt;}
.h5e{height:98.112000pt;}
.h7e{height:98.296875pt;}
.h7a{height:100.512000pt;}
.h74{height:104.032000pt;}
.h59{height:107.360000pt;}
.h57{height:107.520000pt;}
.h56{height:107.552000pt;}
.h44{height:110.400000pt;}
.h45{height:110.432000pt;}
.h36{height:112.512000pt;}
.h38{height:112.672000pt;}
.h37{height:113.600000pt;}
.h27{height:114.752000pt;}
.h71{height:118.240000pt;}
.h75{height:123.392000pt;}
.h5{height:124.503750pt;}
.h55{height:125.280000pt;}
.h5c{height:125.312000pt;}
.h46{height:128.800000pt;}
.h48{height:128.832000pt;}
.h72{height:132.000000pt;}
.h6a{height:132.032000pt;}
.h7{height:133.500000pt;}
.h4e{height:134.400000pt;}
.h5a{height:143.386667pt;}
.h4{height:144.847500pt;}
.h3f{height:145.120000pt;}
.h4a{height:147.200000pt;}
.h47{height:147.226667pt;}
.h34{height:151.866667pt;}
.h4c{height:152.826667pt;}
.h5d{height:161.146667pt;}
.h4d{height:165.600000pt;}
.h31{height:187.546667pt;}
.h3b{height:189.626667pt;}
.h26{height:193.626667pt;}
.h79{height:195.386667pt;}
.h42{height:202.400000pt;}
.h43{height:202.426667pt;}
.h7f{height:220.186667pt;}
.h66{height:239.066667pt;}
.h63{height:239.226667pt;}
.h6d{height:263.706667pt;}
.h67{height:275.866667pt;}
.h61{height:276.026667pt;}
.h53{height:286.586667pt;}
.h2c{height:341.986667pt;}
.h68{height:349.666667pt;}
.h7c{height:374.426667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w60{width:9.120000pt;}
.w73{width:10.400000pt;}
.w72{width:19.840000pt;}
.w74{width:23.520000pt;}
.w7b{width:26.720000pt;}
.w78{width:30.560000pt;}
.w7e{width:30.592000pt;}
.w7a{width:30.720000pt;}
.w79{width:32.672000pt;}
.w7{width:33.760000pt;}
.w75{width:33.920000pt;}
.w76{width:34.272000pt;}
.w7c{width:36.320000pt;}
.w7d{width:36.960000pt;}
.w81{width:37.632000pt;}
.w69{width:39.840000pt;}
.w77{width:40.160000pt;}
.w71{width:41.280000pt;}
.w15{width:46.240000pt;}
.w7f{width:48.640000pt;}
.w44{width:51.360000pt;}
.w80{width:57.600000pt;}
.w31{width:58.880000pt;}
.w6e{width:66.880000pt;}
.w32{width:68.000000pt;}
.w6c{width:71.392000pt;}
.w67{width:72.480000pt;}
.w66{width:72.512000pt;}
.w6f{width:73.312000pt;}
.w30{width:73.952000pt;}
.w5d{width:78.240000pt;}
.w62{width:78.880000pt;}
.w33{width:80.032000pt;}
.w63{width:80.832000pt;}
.w34{width:90.272000pt;}
.w8{width:93.280000pt;}
.w6a{width:96.480000pt;}
.w3d{width:102.400000pt;}
.w1b{width:102.592000pt;}
.w65{width:103.680000pt;}
.w48{width:103.712000pt;}
.w2f{width:108.032000pt;}
.w4d{width:108.672000pt;}
.w4a{width:109.792000pt;}
.w52{width:111.712000pt;}
.w28{width:112.160000pt;}
.w54{width:112.352000pt;}
.w1c{width:112.480000pt;}
.w12{width:112.800000pt;}
.w49{width:113.792000pt;}
.w6b{width:116.832000pt;}
.w37{width:119.552000pt;}
.w4f{width:120.672000pt;}
.w26{width:122.080000pt;}
.w11{width:122.272000pt;}
.w18{width:122.400000pt;}
.w21{width:126.272000pt;}
.w4e{width:130.592000pt;}
.w23{width:131.360000pt;}
.w40{width:132.000000pt;}
.w4c{width:133.440000pt;}
.w20{width:133.466667pt;}
.w53{width:136.666667pt;}
.w2e{width:139.040000pt;}
.w50{width:140.346667pt;}
.w42{width:140.480000pt;}
.w58{width:141.280000pt;}
.w55{width:142.240000pt;}
.w1f{width:146.240000pt;}
.w64{width:147.226667pt;}
.w3a{width:148.346667pt;}
.w35{width:149.440000pt;}
.w38{width:157.466667pt;}
.w4b{width:158.266667pt;}
.wc{width:167.866667pt;}
.w47{width:168.346667pt;}
.w6d{width:172.666667pt;}
.w2c{width:182.266667pt;}
.w5b{width:184.026667pt;}
.w5a{width:185.506667pt;}
.w1a{width:189.306667pt;}
.wd{width:189.626667pt;}
.w13{width:195.426667pt;}
.w16{width:197.786667pt;}
.w3f{width:205.506667pt;}
.w46{width:206.626667pt;}
.w10{width:206.906667pt;}
.w45{width:210.586667pt;}
.we{width:211.066667pt;}
.w5f{width:213.346667pt;}
.w25{width:213.506667pt;}
.w19{width:215.746667pt;}
.w5{width:223.546667pt;}
.w57{width:225.506667pt;}
.w3{width:226.106667pt;}
.w9{width:231.746667pt;}
.w22{width:233.506667pt;}
.w1e{width:259.266667pt;}
.w29{width:263.266667pt;}
.w2a{width:263.426667pt;}
.w2b{width:263.906667pt;}
.w1d{width:265.666667pt;}
.w56{width:271.426667pt;}
.w51{width:275.386667pt;}
.wa{width:281.346667pt;}
.w24{width:293.666667pt;}
.w59{width:312.386667pt;}
.w3c{width:320.386667pt;}
.w3b{width:320.546667pt;}
.wf{width:320.866667pt;}
.w3e{width:330.786667pt;}
.w39{width:331.746667pt;}
.w5e{width:348.386667pt;}
.w36{width:368.573333pt;}
.w17{width:396.413333pt;}
.w4{width:426.653333pt;}
.w6{width:429.693333pt;}
.w5c{width:457.213333pt;}
.w2d{width:458.493333pt;}
.w43{width:499.493333pt;}
.w41{width:509.573333pt;}
.w27{width:519.173333pt;}
.w61{width:633.093333pt;}
.w14{width:639.333333pt;}
.w70{width:642.053333pt;}
.w68{width:642.213333pt;}
.wb{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x56{left:1.120000pt;}
.x2f{left:4.640000pt;}
.x4{left:5.760000pt;}
.xf{left:6.880000pt;}
.x1e{left:9.280000pt;}
.x7{left:13.920000pt;}
.x4b{left:19.560000pt;}
.x4e{left:25.440000pt;}
.x1f{left:28.320000pt;}
.x23{left:30.400000pt;}
.x4f{left:33.920000pt;}
.x4c{left:36.320000pt;}
.x66{left:43.520000pt;}
.x51{left:44.480000pt;}
.x50{left:45.480000pt;}
.x4d{left:51.360000pt;}
.x3f{left:66.234667pt;}
.x3{left:75.551988pt;}
.x2e{left:77.632000pt;}
.x13{left:80.351988pt;}
.x16{left:84.191988pt;}
.xb{left:91.551988pt;}
.x19{left:99.551988pt;}
.x14{left:104.351988pt;}
.xc{left:107.551988pt;}
.x8{left:109.952000pt;}
.x17{left:113.951988pt;}
.x62{left:116.512000pt;}
.x68{left:117.952000pt;}
.x15{left:123.551988pt;}
.x3b{left:126.554667pt;}
.x41{left:128.352000pt;}
.x69{left:138.426667pt;}
.x3c{left:140.954667pt;}
.x3a{left:143.354667pt;}
.x6a{left:149.466667pt;}
.x57{left:155.226667pt;}
.x5b{left:164.506667pt;}
.x5a{left:171.874667pt;}
.x6b{left:173.626667pt;}
.x3d{left:179.226667pt;}
.x61{left:188.034667pt;}
.x24{left:189.306667pt;}
.x2b{left:197.626667pt;}
.x20{left:199.226667pt;}
.x9{left:204.026667pt;}
.x29{left:208.346667pt;}
.x47{left:210.266667pt;}
.x63{left:213.626667pt;}
.x40{left:217.306667pt;}
.x30{left:218.586667pt;}
.x26{left:223.226667pt;}
.x36{left:226.266667pt;}
.x67{left:232.354667pt;}
.x38{left:234.306667pt;}
.x6c{left:243.106667pt;}
.x10{left:244.866667pt;}
.x5c{left:245.986667pt;}
.x2d{left:259.266667pt;}
.x12{left:267.586655pt;}
.x1a{left:283.906667pt;}
.x6{left:299.746667pt;}
.x5{left:302.306667pt;}
.x2{left:313.186655pt;}
.x6d{left:315.266667pt;}
.x48{left:320.386667pt;}
.x1d{left:321.666667pt;}
.x31{left:328.706667pt;}
.x44{left:331.266667pt;}
.x42{left:340.386667pt;}
.x6e{left:349.826667pt;}
.x52{left:352.386667pt;}
.x27{left:357.346667pt;}
.x6f{left:374.146667pt;}
.x5d{left:394.013333pt;}
.x18{left:397.053333pt;}
.x64{left:403.133333pt;}
.x32{left:404.733333pt;}
.x1b{left:406.813333pt;}
.x21{left:416.413333pt;}
.x11{left:435.133333pt;}
.xa{left:436.573333pt;}
.x70{left:438.813333pt;}
.x45{left:446.333333pt;}
.x49{left:452.413333pt;}
.x2c{left:453.693333pt;}
.x25{left:456.413333pt;}
.x33{left:465.693333pt;}
.x28{left:484.413333pt;}
.x54{left:491.293333pt;}
.x5e{left:498.493333pt;}
.x2a{left:503.293333pt;}
.x58{left:504.413333pt;}
.x3e{left:511.293333pt;}
.x1c{left:520.253333pt;}
.x55{left:531.293333pt;}
.x34{left:535.613333pt;}
.x71{left:540.893333pt;}
.x43{left:548.453333pt;}
.x59{left:555.653322pt;}
.x46{left:557.413333pt;}
.x39{left:567.333333pt;}
.x5f{left:571.653333pt;}
.x4a{left:574.373333pt;}
.x65{left:576.613333pt;}
.x37{left:596.133333pt;}
.x53{left:603.333333pt;}
.x22{left:606.373333pt;}
.x35{left:617.733333pt;}
.x72{left:621.413333pt;}
.xd{left:624.933310pt;}
.xe{left:630.853322pt;}
.x60{left:644.933333pt;}
.x73{left:679.653333pt;}
.x1{left:718.239988pt;}
}




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