
    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_c9882cea3888929adad402c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_57c35fdeb52280a888591a8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_bf65135dd057ce5844f423ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_0704dc5adc306f15d050c2c8.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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_68fe3b6566b094d01f953312.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_77cefc42a00cb481f9cddf52.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_02a683b36d7d725bb86f5605.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_c83f24806ff83451f77f1764.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7727e946a6d5d8467e53ef4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.073242;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;}
.m8{transform:matrix(0.000000,-0.250032,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250032,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250032,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245832,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.179201px;}
.v1{vertical-align:18.000000px;}
.ls16{letter-spacing:-3.126000px;}
.ls17{letter-spacing:-3.102000px;}
.ls3b{letter-spacing:-3.060000px;}
.ls19{letter-spacing:-2.880000px;}
.ls39{letter-spacing:-2.610000px;}
.ls32{letter-spacing:-1.865928px;}
.ls21{letter-spacing:-1.626000px;}
.ls6{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.164000px;}
.ls5{letter-spacing:-0.720000px;}
.ls3c{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.495600px;}
.ls31{letter-spacing:-0.472200px;}
.ls22{letter-spacing:-0.463200px;}
.ls38{letter-spacing:-0.450000px;}
.ls33{letter-spacing:-0.449400px;}
.ls24{letter-spacing:-0.370200px;}
.ls34{letter-spacing:-0.334200px;}
.ls18{letter-spacing:-0.270600px;}
.lsd{letter-spacing:-0.247800px;}
.lsc{letter-spacing:-0.224400px;}
.ls36{letter-spacing:-0.219000px;}
.ls23{letter-spacing:-0.188400px;}
.ls35{letter-spacing:-0.051840px;}
.ls37{letter-spacing:-0.027360px;}
.lsf{letter-spacing:-0.023040px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000001px;}
.ls8{letter-spacing:0.000003px;}
.ls28{letter-spacing:0.008640px;}
.ls25{letter-spacing:0.015120px;}
.ls3{letter-spacing:0.017280px;}
.ls11{letter-spacing:0.023040px;}
.ls3a{letter-spacing:0.027360px;}
.ls2{letter-spacing:0.034560px;}
.ls2e{letter-spacing:0.042480px;}
.ls0{letter-spacing:0.046080px;}
.ls1f{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.224400px;}
.ls1c{letter-spacing:0.224640px;}
.lse{letter-spacing:0.270600px;}
.ls9{letter-spacing:0.270720px;}
.ls2c{letter-spacing:0.291578px;}
.ls1e{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.428303px;}
.ls26{letter-spacing:0.552448px;}
.ls2a{letter-spacing:0.587470px;}
.ls7{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.727965px;}
.ls1b{letter-spacing:12.240000px;}
.ls30{letter-spacing:15.120000px;}
.ls29{letter-spacing:20.160000px;}
.ls1{letter-spacing:23.489280px;}
.ls1d{letter-spacing:57.080640px;}
.ls14{letter-spacing:75.168000px;}
.ls15{letter-spacing:75.888000px;}
.ls2f{letter-spacing:98.120640px;}
.ls2d{letter-spacing:110.880000px;}
.ls1a{letter-spacing:136.758720px;}
.ls13{letter-spacing:255.864000px;}
.lsb{letter-spacing:848.316000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3d{word-spacing:-22.050000px;}
.ws3f{word-spacing:-19.890000px;}
.ws1{word-spacing:-19.457280px;}
.ws24{word-spacing:-19.448640px;}
.wsf{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.550600px;}
.ws8{word-spacing:-17.504400px;}
.ws11{word-spacing:-17.303040px;}
.ws3{word-spacing:-17.280003px;}
.ws9{word-spacing:-17.280001px;}
.ws10{word-spacing:-17.280000px;}
.ws7{word-spacing:-17.256960px;}
.ws4{word-spacing:-17.055600px;}
.ws5{word-spacing:-17.032200px;}
.wsc{word-spacing:-17.009400px;}
.ws38{word-spacing:-16.830600px;}
.ws25{word-spacing:-16.807800px;}
.ws21{word-spacing:-16.784400px;}
.ws1b{word-spacing:-16.560000px;}
.wse{word-spacing:-15.840000px;}
.ws3a{word-spacing:-15.788160px;}
.ws3b{word-spacing:-15.621000px;}
.ws39{word-spacing:-15.505800px;}
.ws3e{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.400000px;}
.ws40{word-spacing:-14.220000px;}
.ws3c{word-spacing:-14.192640px;}
.wsb{word-spacing:-14.178000px;}
.wsa{word-spacing:-14.154000px;}
.ws22{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.140000px;}
.ws18{word-spacing:-12.780000px;}
.ws19{word-spacing:-12.591600px;}
.ws17{word-spacing:-12.316800px;}
.ws12{word-spacing:-11.616000px;}
.ws1a{word-spacing:-11.340000px;}
.ws14{word-spacing:-11.154000px;}
.ws23{word-spacing:-10.293840px;}
.ws2e{word-spacing:-10.203144px;}
.ws1c{word-spacing:-9.483439px;}
.ws1f{word-spacing:-8.880982px;}
.ws37{word-spacing:-8.845741px;}
.ws1e{word-spacing:-8.589404px;}
.ws20{word-spacing:-8.588320px;}
.ws13{word-spacing:-8.280000px;}
.ws16{word-spacing:-7.560000px;}
.ws2{word-spacing:0.000000px;}
.ws2d{word-spacing:57.927862px;}
.ws2c{word-spacing:62.944646px;}
.ws2b{word-spacing:65.907708px;}
.ws2f{word-spacing:65.927728px;}
.ws26{word-spacing:69.938573px;}
.ws2a{word-spacing:69.978615px;}
.ws33{word-spacing:74.853552px;}
.ws29{word-spacing:77.936738px;}
.ws27{word-spacing:77.940142px;}
.ws34{word-spacing:77.956759px;}
.ws31{word-spacing:77.960163px;}
.ws30{word-spacing:78.947883px;}
.ws28{word-spacing:87.958895px;}
.ws32{word-spacing:88.038978px;}
.ws1d{word-spacing:278.472194px;}
.ws36{word-spacing:415.795976px;}
.ws35{word-spacing:715.579066px;}
._33{margin-left:-17.481120px;}
._1b{margin-left:-15.937440px;}
._1f{margin-left:-13.085280px;}
._20{margin-left:-11.495054px;}
._1a{margin-left:-9.587040px;}
._1e{margin-left:-8.405826px;}
._1c{margin-left:-6.671040px;}
._1d{margin-left:-5.321769px;}
._c{margin-left:-4.061280px;}
._2{margin-left:-2.880000px;}
._0{margin-left:-1.244160px;}
._1{width:1.321920px;}
._6{width:2.793120px;}
._13{width:3.939840px;}
._3{width:5.114880px;}
._4{width:6.987360px;}
._5{width:8.080800px;}
._d{width:9.215280px;}
._9{width:10.229760px;}
._7{width:11.404800px;}
._8{width:12.510240px;}
._14{width:13.685760px;}
._15{width:14.929920px;}
._3c{width:16.035840px;}
._42{width:17.994240px;}
._12{width:19.164000px;}
._11{width:20.183040px;}
._a{width:21.427200px;}
._b{width:22.481760px;}
._e{width:23.516640px;}
._38{width:24.537600px;}
._35{width:26.403840px;}
._36{width:28.217760px;}
._39{width:29.560800px;}
._45{width:30.574080px;}
._19{width:31.633920px;}
._37{width:32.647680px;}
._3d{width:34.283520px;}
._f{width:35.320320px;}
._10{width:36.564480px;}
._3e{width:37.739520px;}
._17{width:39.052800px;}
._18{width:40.919040px;}
._4e{width:42.024960px;}
._34{width:43.545600px;}
._3a{width:45.411840px;}
._41{width:47.201040px;}
._55{width:48.936960px;}
._47{width:50.388480px;}
._4a{width:51.624000px;}
._52{width:55.365120px;}
._3f{width:56.885760px;}
._4d{width:61.655040px;}
._56{width:63.313920px;}
._57{width:64.395840px;}
._58{width:67.599360px;}
._53{width:72.783360px;}
._46{width:74.027520px;}
._3b{width:76.141920px;}
._59{width:78.658560px;}
._5a{width:80.110080px;}
._49{width:108.958024px;}
._4f{width:110.586720px;}
._27{width:149.061120px;}
._43{width:198.696000px;}
._32{width:205.515840px;}
._22{width:213.049920px;}
._24{width:216.920640px;}
._2f{width:220.722240px;}
._31{width:243.877440px;}
._2c{width:247.679040px;}
._21{width:251.480640px;}
._26{width:259.895280px;}
._30{width:263.696880px;}
._2b{width:266.894400px;}
._2a{width:271.369200px;}
._2d{width:275.309400px;}
._2e{width:282.981720px;}
._29{width:298.079280px;}
._23{width:301.431360px;}
._25{width:309.575520px;}
._28{width:336.463200px;}
._44{width:359.469916px;}
._54{width:436.345811px;}
._4c{width:484.762313px;}
._4b{width:594.167135px;}
._40{width:633.936000px;}
._51{width:849.936000px;}
._50{width:852.816000px;}
._16{width:1866.517429px;}
._48{width:1944.456000px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:25.896004px;}
.fs7{font-size:30.240000px;}
.fs9{font-size:33.120000px;}
.fsc{font-size:34.528005px;}
.fsd{font-size:34.873285px;}
.fs12{font-size:38.001417px;}
.fs11{font-size:38.006214px;}
.fs16{font-size:39.140447px;}
.fsb{font-size:39.707206px;}
.fsf{font-size:40.052486px;}
.fs14{font-size:41.760000px;}
.fs10{font-size:41.962119px;}
.fs15{font-size:45.146654px;}
.fsa{font-size:45.360000px;}
.fs17{font-size:48.149757px;}
.fs8{font-size:51.120000px;}
.fs3{font-size:56.880000px;}
.fs13{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:138.240000px;}
.y0{bottom:0.000000px;}
.y3dd{bottom:2.252329px;}
.y3ac{bottom:2.252330px;}
.y3b5{bottom:2.282362px;}
.y1b8{bottom:2.340000px;}
.y17a{bottom:2.880000px;}
.y27c{bottom:2.893939px;}
.y3a7{bottom:3.003104px;}
.y33b{bottom:3.060000px;}
.y59b{bottom:3.090000px;}
.y333{bottom:3.240000px;}
.y3b9{bottom:3.753882px;}
.y3a5{bottom:3.753889px;}
.y3c9{bottom:3.753912px;}
.y3d7{bottom:3.773905px;}
.y3e8{bottom:3.778908px;}
.y3e1{bottom:3.783911px;}
.y3e6{bottom:3.783915px;}
.y3a3{bottom:3.783920px;}
.y336{bottom:4.320000px;}
.y16a{bottom:4.500000px;}
.y39f{bottom:4.504656px;}
.y2ad{bottom:4.726767px;}
.y17c{bottom:5.220000px;}
.y190{bottom:5.265000px;}
.y3da{bottom:5.280472px;}
.y3c5{bottom:5.285462px;}
.y172{bottom:5.400000px;}
.y173{bottom:5.580000px;}
.y169{bottom:5.610000px;}
.yb6{bottom:5.940000px;}
.y3cf{bottom:6.031236px;}
.y53{bottom:6.120000px;}
.y2b8{bottom:6.869247px;}
.y18e{bottom:7.380000px;}
.y170{bottom:7.560000px;}
.y293{bottom:7.591767px;}
.y29c{bottom:7.601414px;}
.y2c3{bottom:7.958381px;}
.y2fd{bottom:8.216084px;}
.y184{bottom:8.820000px;}
.y2e3{bottom:8.848453px;}
.y194{bottom:9.000000px;}
.y3a1{bottom:9.039341px;}
.y3ae{bottom:9.039342px;}
.y3eb{bottom:9.039345px;}
.y280{bottom:9.762222px;}
.y27a{bottom:9.771868px;}
.y339{bottom:9.900000px;}
.y340{bottom:10.080000px;}
.y2f1{bottom:10.744550px;}
.y3bc{bottom:11.291670px;}
.y3c0{bottom:11.291672px;}
.y2a7{bottom:11.604696px;}
.y186{bottom:11.880000px;}
.y3d3{bottom:12.037441px;}
.y196{bottom:12.060000px;}
.y286{bottom:14.132070px;}
.y167{bottom:14.220000px;}
.y1b7{bottom:14.940000px;}
.y3ab{bottom:15.045549px;}
.y3dc{bottom:15.045550px;}
.y3b4{bottom:15.065569px;}
.y17d{bottom:15.480000px;}
.y331{bottom:16.050000px;}
.y277{bottom:16.640150px;}
.y33a{bottom:16.740000px;}
.y334{bottom:16.920000px;}
.y179{bottom:17.460000px;}
.y2d6{bottom:17.722188px;}
.y3be{bottom:18.068672px;}
.y3c4{bottom:18.068674px;}
.y2ac{bottom:18.472979px;}
.y1bd{bottom:18.720000px;}
.y3d1{bottom:18.819449px;}
.y3ce{bottom:18.819450px;}
.y509{bottom:19.440000px;}
.y556{bottom:19.470000px;}
.y533{bottom:19.485000px;}
.y547{bottom:19.620000px;}
.y3d9{bottom:20.321002px;}
.y2b7{bottom:20.644398px;}
.y2fc{bottom:20.877799px;}
.y199{bottom:20.880000px;}
.y288{bottom:21.000352px;}
.y18c{bottom:21.060000px;}
.y16d{bottom:21.240000px;}
.y29a{bottom:21.347625px;}
.y292{bottom:21.366918px;}
.y2e2{bottom:21.514382px;}
.y2c2{bottom:21.728516px;}
.y188{bottom:22.140000px;}
.y16f{bottom:22.320000px;}
.y183{bottom:22.860000px;}
.y2f0{bottom:23.402052px;}
.y27f{bottom:23.508433px;}
.y279{bottom:23.518079px;}
.y3bb{bottom:24.074879px;}
.y2a6{bottom:25.350907px;}
.y180{bottom:27.720000px;}
.y284{bottom:27.878281px;}
.y193{bottom:27.900000px;}
.y1b6{bottom:28.620000px;}
.y276{bottom:30.386362px;}
.y3c3{bottom:30.861893px;}
.y176{bottom:31.140000px;}
.y1bc{bottom:31.680000px;}
.y2ab{bottom:32.219190px;}
.y178{bottom:32.220000px;}
.y2fb{bottom:33.539515px;}
.y504{bottom:33.840000px;}
.y2e1{bottom:34.171884px;}
.y2b4{bottom:34.390609px;}
.y287{bottom:34.746563px;}
.y291{bottom:35.113129px;}
.y2bf{bottom:35.474727px;}
.y210{bottom:35.524955px;}
.y198{bottom:35.640000px;}
.y18b{bottom:35.685000px;}
.y16c{bottom:35.820000px;}
.y59a{bottom:35.850000px;}
.y532{bottom:35.865000px;}
.y58b{bottom:36.000000px;}
.y2ef{bottom:36.067981px;}
.y182{bottom:36.720000px;}
.y18d{bottom:36.765000px;}
.y16e{bottom:36.900000px;}
.y4cd{bottom:37.080000px;}
.y278{bottom:37.283583px;}
.y2a3{bottom:39.097119px;}
.y2e5{bottom:41.124240px;}
.y2ba{bottom:41.258891px;}
.y285{bottom:41.624492px;}
.y28d{bottom:41.981411px;}
.y17f{bottom:42.300000px;}
.y2bd{bottom:42.347832px;}
.y192{bottom:42.480000px;}
.y2bb{bottom:42.709574px;}
.y281{bottom:44.151866px;}
.y27b{bottom:44.161512px;}
.y1bb{bottom:44.640000px;}
.y175{bottom:45.720000px;}
.y2a1{bottom:45.965401px;}
.y2f3{bottom:46.201230px;}
.y177{bottom:46.800000px;}
.y2e0{bottom:46.837813px;}
.y1b5{bottom:46.980000px;}
.y20f{bottom:47.610116px;}
.y2b3{bottom:48.136820px;}
.y2ee{bottom:48.725483px;}
.y28b{bottom:48.859340px;}
.y2be{bottom:49.220938px;}
.y2e6{bottom:49.357515px;}
.y181{bottom:50.760000px;}
.y503{bottom:52.020000px;}
.y523{bottom:52.200000px;}
.y599{bottom:52.230000px;}
.y553{bottom:52.245000px;}
.y52a{bottom:52.380000px;}
.y29f{bottom:52.862623px;}
.y272{bottom:53.820000px;}
.y24a{bottom:54.360000px;}
.y2b0{bottom:55.005103px;}
.y4cc{bottom:55.260000px;}
.y20c{bottom:55.378917px;}
.y28c{bottom:55.727623px;}
.y296{bottom:55.737269px;}
.y1b4{bottom:55.980000px;}
.y1ba{bottom:58.185000px;}
.y2fa{bottom:58.841877px;}
.y2df{bottom:59.478461px;}
.y20e{bottom:59.694918px;}
.y2a0{bottom:59.740552px;}
.y2ed{bottom:61.366131px;}
.y2b2{bottom:61.883031px;}
.y297{bottom:62.605552px;}
.y290{bottom:62.624844px;}
.y2c1{bottom:62.967149px;}
.y20b{bottom:64.442519px;}
.y2a2{bottom:66.608834px;}
.y522{bottom:68.580000px;}
.y598{bottom:68.610000px;}
.y575{bottom:68.625000px;}
.y2b9{bottom:68.751314px;}
.y1b3{bottom:68.760000px;}
.y502{bottom:70.236000px;}
.y2f9{bottom:71.503593px;}
.y20d{bottom:71.779720px;}
.y2de{bottom:72.135962px;}
.y4cb{bottom:73.296000px;}
.y2aa{bottom:73.486763px;}
.y20a{bottom:73.937720px;}
.y2ec{bottom:74.032059px;}
.y2b1{bottom:75.648536px;}
.y298{bottom:76.351763px;}
.y28f{bottom:76.371056px;}
.y2c0{bottom:76.737477px;}
.y271{bottom:79.596000px;}
.y249{bottom:80.136000px;}
.y2a5{bottom:80.355045px;}
.y307{bottom:80.496000px;}
.y1b2{bottom:81.720000px;}
.y379{bottom:83.916000px;}
.y2f8{bottom:84.167836px;}
.y2dd{bottom:84.801891px;}
.y521{bottom:84.960000px;}
.y597{bottom:84.990000px;}
.y574{bottom:85.185000px;}
.y395{bottom:86.076000px;}
.y2eb{bottom:86.689561px;}
.y209{bottom:86.972042px;}
.y2a9{bottom:87.232974px;}
.y501{bottom:88.236000px;}
.y2b6{bottom:89.394747px;}
.y39e{bottom:89.517507px;}
.y28e{bottom:90.117267px;}
.y299{bottom:90.126913px;}
.y23f{bottom:90.756000px;}
.y4ca{bottom:91.476000px;}
.y2a4{bottom:94.101257px;}
.y1b1{bottom:94.680000px;}
.y208{bottom:94.740843px;}
.y2f7{bottom:96.825338px;}
.y2dc{bottom:97.459393px;}
.y2ea{bottom:99.355490px;}
.y2a8{bottom:100.998478px;}
.y545{bottom:101.340000px;}
.y520{bottom:101.370000px;}
.y270{bottom:101.556000px;}
.y573{bottom:101.565000px;}
.y273{bottom:101.812004px;}
.y2bc{bottom:102.173746px;}
.y2b5{bottom:103.140958px;}
.y29b{bottom:103.873125px;}
.y2d2{bottom:104.436000px;}
.y248{bottom:105.876000px;}
.y306{bottom:106.236000px;}
.y500{bottom:106.416000px;}
.y207{bottom:106.825645px;}
.y21{bottom:107.136000px;}
.y1b0{bottom:107.640000px;}
.y469{bottom:109.296000px;}
.y2f6{bottom:109.465986px;}
.y4c9{bottom:109.476000px;}
.y378{bottom:109.836000px;}
.y2db{bottom:110.100041px;}
.y394{bottom:111.816000px;}
.y2e9{bottom:111.996138px;}
.y133{bottom:114.336000px;}
.y23e{bottom:116.496000px;}
.y2fe{bottom:117.707688px;}
.y544{bottom:117.720000px;}
.y51f{bottom:117.750000px;}
.y572{bottom:117.945000px;}
.y51{bottom:118.116000px;}
.y206{bottom:118.910447px;}
.y1e2{bottom:121.500047px;}
.y2f5{bottom:122.131915px;}
.y101{bottom:122.616000px;}
.y2da{bottom:122.765969px;}
.y4ff{bottom:124.596000px;}
.y2e8{bottom:124.653640px;}
.y1af{bottom:125.100000px;}
.y4c8{bottom:127.656000px;}
.y20{bottom:129.456000px;}
.y2d1{bottom:130.176000px;}
.y1e1{bottom:130.995249px;}
.y247{bottom:131.796000px;}
.y22a{bottom:131.976000px;}
.y1ae{bottom:133.560000px;}
.y543{bottom:134.100000px;}
.y51e{bottom:134.130000px;}
.y571{bottom:134.325000px;}
.y2f4{bottom:134.789416px;}
.y468{bottom:135.036000px;}
.y2d9{bottom:135.423471px;}
.y377{bottom:135.576000px;}
.y1f8{bottom:135.742850px;}
.y2e7{bottom:137.319568px;}
.y1f0{bottom:137.469250px;}
.y393{bottom:137.736000px;}
.y50{bottom:138.096000px;}
.y39d{bottom:139.894566px;}
.y132{bottom:140.076000px;}
.y1e0{bottom:140.490450px;}
.y205{bottom:142.216851px;}
.y23d{bottom:142.236000px;}
.y4fe{bottom:142.596000px;}
.y1f7{bottom:144.806451px;}
.y4c7{bottom:145.836000px;}
.y1ad{bottom:146.520000px;}
.y1ef{bottom:146.532851px;}
.y2ae{bottom:148.020987px;}
.y2d8{bottom:148.089400px;}
.y100{bottom:148.356000px;}
.y1df{bottom:149.554052px;}
.y542{bottom:150.480000px;}
.y51d{bottom:150.510000px;}
.y596{bottom:150.690000px;}
.y570{bottom:150.705000px;}
.yac{bottom:151.770000px;}
.y1f{bottom:151.950000px;}
.y1f6{bottom:154.301652px;}
.y2d0{bottom:155.910000px;}
.y1ee{bottom:156.028053px;}
.y246{bottom:157.530000px;}
.y229{bottom:157.710000px;}
.y4f{bottom:157.890000px;}
.y1de{bottom:159.135573px;}
.y1ac{bottom:159.480000px;}
.y2d7{bottom:160.730048px;}
.y467{bottom:160.770000px;}
.y376{bottom:161.310000px;}
.y392{bottom:163.470000px;}
.y4c6{bottom:163.830000px;}
.y131{bottom:165.990000px;}
.y204{bottom:166.472774px;}
.y541{bottom:166.860000px;}
.y51c{bottom:166.890000px;}
.y595{bottom:167.070000px;}
.y56f{bottom:167.085000px;}
.y1f5{bottom:167.335974px;}
.y23c{bottom:167.970000px;}
.y1ed{bottom:169.062375px;}
.y1dd{bottom:172.083575px;}
.y1e{bottom:174.270000px;}
.y26b{bottom:176.610000px;}
.y1ab{bottom:176.760000px;}
.y4e{bottom:177.690000px;}
.y203{bottom:178.557576px;}
.y4fd{bottom:178.770000px;}
.y2cf{bottom:181.830000px;}
.y4c5{bottom:182.010000px;}
.y540{bottom:183.240000px;}
.y245{bottom:183.270000px;}
.y583{bottom:183.420000px;}
.y228{bottom:183.450000px;}
.y56e{bottom:183.465000px;}
.y305{bottom:183.630000px;}
.y1aa{bottom:185.220000px;}
.yab{bottom:186.510000px;}
.y466{bottom:186.690000px;}
.y375{bottom:187.050000px;}
.y391{bottom:189.210000px;}
.y202{bottom:190.642378px;}
.y130{bottom:191.730000px;}
.y23b{bottom:193.890000px;}
.y145{bottom:194.430000px;}
.y2af{bottom:194.827888px;}
.y433{bottom:196.590000px;}
.y1d{bottom:196.770000px;}
.y4fc{bottom:196.950000px;}
.y1a9{bottom:198.180000px;}
.y53f{bottom:199.620000px;}
.y51b{bottom:199.650000px;}
.y594{bottom:199.830000px;}
.y56d{bottom:199.845000px;}
.yff{bottom:200.010000px;}
.y39c{bottom:200.076757px;}
.y26a{bottom:202.350000px;}
.y2ce{bottom:207.570000px;}
.y244{bottom:209.010000px;}
.y227{bottom:209.370000px;}
.y1e7{bottom:210.927581px;}
.y1a8{bottom:211.140000px;}
.y465{bottom:212.430000px;}
.y374{bottom:212.970000px;}
.y1ec{bottom:213.517182px;}
.y201{bottom:214.811982px;}
.y390{bottom:214.950000px;}
.y4fb{bottom:215.130000px;}
.y441{bottom:215.850000px;}
.y53e{bottom:216.000000px;}
.y51a{bottom:216.030000px;}
.y593{bottom:216.210000px;}
.y56c{bottom:216.225000px;}
.y12f{bottom:217.470000px;}
.y4d{bottom:218.190000px;}
.y1f4{bottom:218.264782px;}
.y1d4{bottom:218.370000px;}
.y1c{bottom:219.270000px;}
.y23a{bottom:219.630000px;}
.y144{bottom:220.170000px;}
.y1e6{bottom:220.422783px;}
.yaa{bottom:221.250000px;}
.y432{bottom:222.510000px;}
.y40c{bottom:222.870000px;}
.y1eb{bottom:223.012383px;}
.y1a7{bottom:224.100000px;}
.yfe{bottom:225.750000px;}
.y200{bottom:226.896784px;}
.y1f3{bottom:227.328384px;}
.y269{bottom:228.090000px;}
.y1e5{bottom:229.486384px;}
.y1ea{bottom:232.075984px;}
.y519{bottom:232.410000px;}
.y579{bottom:232.590000px;}
.y56b{bottom:232.605000px;}
.y4fa{bottom:233.130000px;}
.y2cd{bottom:233.310000px;}
.y31a{bottom:234.570000px;}
.y243{bottom:234.930000px;}
.y226{bottom:235.110000px;}
.y48a{bottom:235.470000px;}
.y4c4{bottom:236.370000px;}
.y1f2{bottom:236.823585px;}
.y4c{bottom:237.990000px;}
.y464{bottom:238.170000px;}
.y373{bottom:238.710000px;}
.y1e4{bottom:239.067905px;}
.y26f{bottom:240.690000px;}
.y38f{bottom:240.870000px;}
.y1a6{bottom:241.560000px;}
.y1b{bottom:241.590000px;}
.y1e9{bottom:241.657506px;}
.y440{bottom:241.770000px;}
.y12e{bottom:243.210000px;}
.y1d3{bottom:244.110000px;}
.y239{bottom:245.370000px;}
.y143{bottom:245.910000px;}
.y578{bottom:247.530000px;}
.y164{bottom:248.070000px;}
.y431{bottom:248.250000px;}
.y40b{bottom:248.610000px;}
.y518{bottom:248.790000px;}
.y592{bottom:248.970000px;}
.y56a{bottom:248.985000px;}
.y1f1{bottom:249.857907px;}
.y1a5{bottom:250.020000px;}
.y1ff{bottom:251.152707px;}
.y4f9{bottom:251.310000px;}
.yfd{bottom:251.670000px;}
.y1e3{bottom:252.015907px;}
.y268{bottom:254.010000px;}
.y4c3{bottom:254.370000px;}
.y1e8{bottom:254.605508px;}
.y1be{bottom:255.270000px;}
.ycf{bottom:255.630000px;}
.y76{bottom:255.810000px;}
.ya9{bottom:255.990000px;}
.y4b{bottom:257.970000px;}
.y425{bottom:258.690000px;}
.y2cc{bottom:259.050000px;}
.y319{bottom:260.490000px;}
.y242{bottom:260.670000px;}
.y225{bottom:260.850000px;}
.y489{bottom:261.390000px;}
.y1fe{bottom:263.237509px;}
.y29d{bottom:263.489161px;}
.y577{bottom:263.910000px;}
.y1a{bottom:264.090000px;}
.y372{bottom:264.450000px;}
.y517{bottom:265.170000px;}
.y591{bottom:265.350000px;}
.y569{bottom:265.365000px;}
.y26e{bottom:266.430000px;}
.y38e{bottom:266.610000px;}
.y1a4{bottom:267.330000px;}
.y43f{bottom:267.510000px;}
.y12d{bottom:269.130000px;}
.y4f8{bottom:269.310000px;}
.y1d2{bottom:270.030000px;}
.y238{bottom:271.110000px;}
.y142{bottom:271.650000px;}
.y4c2{bottom:272.550000px;}
.y1b9{bottom:273.270000px;}
.y163{bottom:273.990000px;}
.y40a{bottom:274.350000px;}
.y1a3{bottom:275.790000px;}
.yfc{bottom:277.410000px;}
.y576{bottom:277.950000px;}
.y39b{bottom:278.287578px;}
.y1dc{bottom:279.638312px;}
.y267{bottom:279.750000px;}
.y516{bottom:281.550000px;}
.y75{bottom:281.730000px;}
.y568{bottom:281.745000px;}
.y26d{bottom:282.630000px;}
.y1d9{bottom:282.659512px;}
.y424{bottom:284.430000px;}
.y2cb{bottom:284.790000px;}
.y318{bottom:286.230000px;}
.y19{bottom:286.410000px;}
.y1fd{bottom:286.543913px;}
.y224{bottom:286.590000px;}
.y304{bottom:286.770000px;}
.y488{bottom:287.310000px;}
.y4f7{bottom:287.490000px;}
.y1a2{bottom:288.750000px;}
.y54a{bottom:289.110000px;}
.y463{bottom:289.830000px;}
.y371{bottom:290.190000px;}
.y1db{bottom:290.428313px;}
.yce{bottom:290.730000px;}
.y38d{bottom:292.350000px;}
.y43e{bottom:293.250000px;}
.y1d8{bottom:293.449514px;}
.y12c{bottom:294.870000px;}
.y55a{bottom:295.050000px;}
.y1d1{bottom:295.770000px;}
.y237{bottom:297.030000px;}
.y141{bottom:297.570000px;}
.y515{bottom:297.930000px;}
.y567{bottom:298.125000px;}
.y4a{bottom:298.470000px;}
.y1fc{bottom:298.628715px;}
.y162{bottom:299.730000px;}
.y409{bottom:300.090000px;}
.y1d7{bottom:302.944715px;}
.yfb{bottom:303.150000px;}
.y549{bottom:303.690000px;}
.ya8{bottom:304.050000px;}
.y266{bottom:305.490000px;}
.y1da{bottom:305.534316px;}
.y4f6{bottom:305.670000px;}
.y1a1{bottom:306.210000px;}
.y74{bottom:307.470000px;}
.y4c1{bottom:308.730000px;}
.y18{bottom:308.910000px;}
.y423{bottom:310.170000px;}
.y2ca{bottom:310.710000px;}
.y1fb{bottom:310.713516px;}
.y317{bottom:311.970000px;}
.y241{bottom:312.150000px;}
.y29e{bottom:312.438542px;}
.y223{bottom:312.510000px;}
.y487{bottom:313.050000px;}
.y1d6{bottom:313.734717px;}
.y514{bottom:314.310000px;}
.y566{bottom:314.535000px;}
.y1a0{bottom:314.670000px;}
.y462{bottom:315.570000px;}
.y370{bottom:316.110000px;}
.y38c{bottom:318.090000px;}
.y49{bottom:318.270000px;}
.y548{bottom:318.630000px;}
.y43d{bottom:318.990000px;}
.y12b{bottom:320.610000px;}
.y1d0{bottom:321.510000px;}
.y236{bottom:322.770000px;}
.y1fa{bottom:322.884638px;}
.y140{bottom:323.310000px;}
.y4f5{bottom:323.670000px;}
.ycd{bottom:325.650000px;}
.y408{bottom:326.010000px;}
.y4c0{bottom:326.910000px;}
.yfa{bottom:328.935000px;}
.y513{bottom:330.690000px;}
.y565{bottom:330.915000px;}
.y265{bottom:331.275000px;}
.y19f{bottom:332.130000px;}
.y546{bottom:332.715000px;}
.y73{bottom:333.255000px;}
.y422{bottom:336.135000px;}
.y2c9{bottom:336.495000px;}
.y39a{bottom:336.968218px;}
.y316{bottom:337.755000px;}
.y48{bottom:338.115000px;}
.y222{bottom:338.295000px;}
.ya7{bottom:338.835000px;}
.y17{bottom:339.915000px;}
.y19e{bottom:340.590000px;}
.y461{bottom:341.355000px;}
.y36f{bottom:341.895000px;}
.y38b{bottom:344.055000px;}
.y19b{bottom:344.595000px;}
.y43c{bottom:344.955000px;}
.y12a{bottom:346.395000px;}
.y53d{bottom:347.070000px;}
.y512{bottom:347.250000px;}
.y564{bottom:347.295000px;}
.y1cf{bottom:347.475000px;}
.y235{bottom:348.555000px;}
.y13f{bottom:349.095000px;}
.y161{bottom:351.435000px;}
.y407{bottom:351.795000px;}
.yf9{bottom:354.855000px;}
.y264{bottom:357.195000px;}
.y19d{bottom:358.050000px;}
.y2c8{bottom:358.635000px;}
.y2d3{bottom:358.821275px;}
.y72{bottom:358.995000px;}
.y4f4{bottom:360.075000px;}
.ycc{bottom:360.795000px;}
.y421{bottom:361.875000px;}
.y16{bottom:362.235000px;}
.y4bf{bottom:363.135000px;}
.y53c{bottom:363.450000px;}
.y315{bottom:363.675000px;}
.y240{bottom:363.855000px;}
.y221{bottom:364.035000px;}
.y486{bottom:364.575000px;}
.y2f2{bottom:365.794660px;}
.y1f9{bottom:366.044645px;}
.y534{bottom:366.375000px;}
.y19c{bottom:366.870000px;}
.y460{bottom:367.275000px;}
.y36e{bottom:367.635000px;}
.y47{bottom:369.075000px;}
.y38a{bottom:369.795000px;}
.y43b{bottom:370.695000px;}
.y129{bottom:372.315000px;}
.y1ce{bottom:373.215000px;}
.ya6{bottom:373.755000px;}
.y234{bottom:374.475000px;}
.y13e{bottom:374.835000px;}
.y160{bottom:377.175000px;}
.y406{bottom:377.535000px;}
.y4f3{bottom:378.075000px;}
.y294{bottom:379.661527px;}
.y53b{bottom:380.010000px;}
.y563{bottom:380.055000px;}
.yf8{bottom:380.595000px;}
.y4be{bottom:381.315000px;}
.y263{bottom:382.935000px;}
.y15{bottom:384.735000px;}
.y71{bottom:384.915000px;}
.y354{bottom:385.455000px;}
.y420{bottom:387.615000px;}
.y46{bottom:388.875000px;}
.y314{bottom:389.415000px;}
.y215{bottom:389.595000px;}
.y220{bottom:389.775000px;}
.y303{bottom:389.955000px;}
.y485{bottom:390.495000px;}
.y45f{bottom:393.015000px;}
.y36d{bottom:393.375000px;}
.y389{bottom:395.535000px;}
.ycb{bottom:395.895000px;}
.y4f2{bottom:396.255000px;}
.y53a{bottom:396.390000px;}
.y43a{bottom:396.435000px;}
.y128{bottom:398.055000px;}
.y1cd{bottom:398.955000px;}
.y4bd{bottom:399.315000px;}
.y233{bottom:400.215000px;}
.y13d{bottom:400.755000px;}
.y15f{bottom:402.915000px;}
.y405{bottom:403.455000px;}
.ya5{bottom:403.815000px;}
.yf7{bottom:406.335000px;}
.y353{bottom:408.495000px;}
.y45{bottom:408.675000px;}
.y70{bottom:410.835000px;}
.y589{bottom:411.375000px;}
.y539{bottom:412.770000px;}
.y562{bottom:412.815000px;}
.y41f{bottom:413.355000px;}
.y4f1{bottom:414.255000px;}
.y313{bottom:415.155000px;}
.y214{bottom:415.335000px;}
.y14{bottom:415.515000px;}
.y21f{bottom:415.695000px;}
.y484{bottom:416.235000px;}
.y4bc{bottom:417.495000px;}
.y45e{bottom:418.755000px;}
.y36c{bottom:419.295000px;}
.y388{bottom:421.275000px;}
.y439{bottom:422.175000px;}
.y127{bottom:423.795000px;}
.y1cc{bottom:424.695000px;}
.y295{bottom:425.736262px;}
.y232{bottom:425.955000px;}
.y13c{bottom:426.495000px;}
.y32f{bottom:426.675000px;}
.y49c{bottom:427.755000px;}
.y44{bottom:428.475000px;}
.y15e{bottom:428.835000px;}
.y538{bottom:429.150000px;}
.y404{bottom:429.195000px;}
.yca{bottom:430.995000px;}
.yf6{bottom:432.075000px;}
.y4f0{bottom:432.435000px;}
.ya4{bottom:433.875000px;}
.y262{bottom:434.415000px;}
.y4bb{bottom:435.495000px;}
.y6f{bottom:436.575000px;}
.y13{bottom:438.015000px;}
.y41e{bottom:439.275000px;}
.y312{bottom:440.895000px;}
.y213{bottom:441.255000px;}
.y21e{bottom:441.435000px;}
.y588{bottom:441.795000px;}
.y483{bottom:441.975000px;}
.y352{bottom:443.415000px;}
.y45d{bottom:444.495000px;}
.y36b{bottom:445.035000px;}
.y537{bottom:445.530000px;}
.y561{bottom:445.575000px;}
.y32e{bottom:446.835000px;}
.y387{bottom:447.195000px;}
.y438{bottom:448.095000px;}
.y43{bottom:448.275000px;}
.y126{bottom:449.715000px;}
.y1cb{bottom:450.615000px;}
.y231{bottom:451.695000px;}
.y13b{bottom:452.235000px;}
.y49b{bottom:453.495000px;}
.ya3{bottom:453.675000px;}
.y15d{bottom:454.575000px;}
.y403{bottom:454.935000px;}
.yf5{bottom:457.995000px;}
.y351{bottom:460.155000px;}
.y261{bottom:460.335000px;}
.y526{bottom:460.515000px;}
.y536{bottom:461.910000px;}
.y560{bottom:461.955000px;}
.y6e{bottom:462.315000px;}
.y12{bottom:463.215000px;}
.y41d{bottom:465.015000px;}
.yc9{bottom:466.095000px;}
.y311{bottom:466.815000px;}
.y212{bottom:466.995000px;}
.y21d{bottom:467.175000px;}
.y302{bottom:467.355000px;}
.y482{bottom:467.715000px;}
.y42{bottom:468.255000px;}
.y4ef{bottom:468.615000px;}
.y398{bottom:470.235000px;}
.y45c{bottom:470.415000px;}
.y36a{bottom:470.775000px;}
.y4ba{bottom:471.855000px;}
.y13a{bottom:472.395000px;}
.y32d{bottom:472.575000px;}
.y386{bottom:472.935000px;}
.y437{bottom:473.835000px;}
.y125{bottom:475.455000px;}
.y1ca{bottom:476.355000px;}
.y525{bottom:476.895000px;}
.y230{bottom:477.615000px;}
.y535{bottom:478.290000px;}
.y55f{bottom:478.335000px;}
.y350{bottom:479.235000px;}
.y15c{bottom:480.315000px;}
.y402{bottom:480.675000px;}
.y2d4{bottom:480.953512px;}
.yf4{bottom:483.735000px;}
.y260{bottom:486.075000px;}
.y4ee{bottom:486.795000px;}
.y41{bottom:488.055000px;}
.y11{bottom:488.235000px;}
.ya2{bottom:488.415000px;}
.y4b9{bottom:489.855000px;}
.y41c{bottom:490.755000px;}
.y524{bottom:491.115000px;}
.y289{bottom:491.849904px;}
.y310{bottom:492.555000px;}
.y211{bottom:492.735000px;}
.y21c{bottom:492.915000px;}
.y481{bottom:493.635000px;}
.y55e{bottom:494.715000px;}
.y397{bottom:495.975000px;}
.y45b{bottom:496.155000px;}
.y369{bottom:496.695000px;}
.y32c{bottom:498.495000px;}
.y385{bottom:498.675000px;}
.y22f{bottom:499.395000px;}
.y436{bottom:499.575000px;}
.yc8{bottom:501.195000px;}
.y1c9{bottom:502.095000px;}
.y4ed{bottom:504.795000px;}
.y49a{bottom:504.975000px;}
.y15b{bottom:506.055000px;}
.y401{bottom:506.595000px;}
.y40{bottom:507.855000px;}
.y4b8{bottom:508.035000px;}
.y511{bottom:508.215000px;}
.yf3{bottom:509.475000px;}
.y34f{bottom:509.655000px;}
.y55d{bottom:511.095000px;}
.y25f{bottom:511.815000px;}
.y2e4{bottom:513.250005px;}
.y10{bottom:513.255000px;}
.y6d{bottom:513.975000px;}
.y41b{bottom:516.675000px;}
.y30f{bottom:518.295000px;}
.y139{bottom:518.475000px;}
.y21b{bottom:518.835000px;}
.y480{bottom:519.375000px;}
.y435{bottom:519.735000px;}
.y45a{bottom:521.895000px;}
.y368{bottom:522.435000px;}
.y4ec{bottom:522.975000px;}
.ya1{bottom:523.335000px;}
.y32b{bottom:524.235000px;}
.y384{bottom:524.415000px;}
.y4b7{bottom:526.215000px;}
.y396{bottom:526.755000px;}
.y124{bottom:526.935000px;}
.y55c{bottom:527.475000px;}
.y3f{bottom:527.655000px;}
.y1c8{bottom:527.835000px;}
.y399{bottom:527.880000px;}
.y3c8{bottom:528.630750px;}
.y3ca{bottom:528.630762px;}
.y3cb{bottom:528.630773px;}
.y3cc{bottom:528.630785px;}
.y499{bottom:530.895000px;}
.y15a{bottom:531.975000px;}
.y400{bottom:532.335000px;}
.yf2{bottom:535.215000px;}
.yc7{bottom:536.295000px;}
.y25e{bottom:537.735000px;}
.yf{bottom:538.275000px;}
.y6c{bottom:539.715000px;}
.y34e{bottom:540.255000px;}
.y4eb{bottom:541.155000px;}
.y41a{bottom:542.415000px;}
.y55b{bottom:543.855000px;}
.y30e{bottom:544.035000px;}
.y4b6{bottom:544.215000px;}
.y138{bottom:544.395000px;}
.y3cd{bottom:544.422094px;}
.y3d0{bottom:544.422106px;}
.y3d2{bottom:544.422118px;}
.y3d4{bottom:544.422130px;}
.y21a{bottom:544.575000px;}
.y301{bottom:544.755000px;}
.y28a{bottom:544.802567px;}
.y47f{bottom:545.115000px;}
.y559{bottom:545.655000px;}
.y3e{bottom:547.455000px;}
.y459{bottom:547.635000px;}
.y434{bottom:547.995000px;}
.y367{bottom:548.175000px;}
.y32a{bottom:549.975000px;}
.y383{bottom:550.335000px;}
.y123{bottom:552.855000px;}
.y1c7{bottom:553.755000px;}
.y498{bottom:556.455000px;}
.y159{bottom:557.715000px;}
.y3ff{bottom:558.075000px;}
.y4ea{bottom:559.155000px;}
.y558{bottom:560.415000px;}
.ye{bottom:560.595000px;}
.yf1{bottom:561.135000px;}
.y4b5{bottom:562.395000px;}
.y25d{bottom:563.475000px;}
.y59c{bottom:564.555000px;}
.y6b{bottom:565.455000px;}
.y3d{bottom:567.435000px;}
.y419{bottom:568.155000px;}
.y34d{bottom:568.695000px;}
.y30d{bottom:569.955000px;}
.y137{bottom:570.135000px;}
.y219{bottom:570.315000px;}
.y300{bottom:570.495000px;}
.y47e{bottom:570.855000px;}
.ya0{bottom:571.395000px;}
.y458{bottom:573.555000px;}
.y366{bottom:573.915000px;}
.y557{bottom:575.355000px;}
.y1c6{bottom:575.535000px;}
.y329{bottom:575.715000px;}
.y3d8{bottom:576.004731px;}
.y382{bottom:576.075000px;}
.y1d5{bottom:576.267044px;}
.y282{bottom:576.545858px;}
.y4e9{bottom:577.335000px;}
.y122{bottom:578.595000px;}
.y4b4{bottom:580.395000px;}
.y497{bottom:582.375000px;}
.y158{bottom:583.455000px;}
.y3fe{bottom:583.815000px;}
.yf0{bottom:586.875000px;}
.y3c{bottom:587.235000px;}
.yd{bottom:588.675000px;}
.yb4{bottom:588.855000px;}
.y25c{bottom:589.035000px;}
.y555{bottom:589.395000px;}
.y6a{bottom:591.375000px;}
.y2ff{bottom:592.635000px;}
.y418{bottom:593.895000px;}
.y4e8{bottom:595.515000px;}
.y30c{bottom:595.695000px;}
.y136{bottom:595.905000px;}
.y218{bottom:596.265000px;}
.y47d{bottom:596.805000px;}
.y4b3{bottom:598.605000px;}
.y34c{bottom:599.145000px;}
.y457{bottom:599.325000px;}
.y365{bottom:599.865000px;}
.y328{bottom:601.665000px;}
.y381{bottom:601.845000px;}
.y121{bottom:604.365000px;}
.y9f{bottom:606.165000px;}
.yc6{bottom:606.525000px;}
.y3b{bottom:607.065000px;}
.yb3{bottom:607.425000px;}
.y496{bottom:608.325000px;}
.y430{bottom:608.505000px;}
.y157{bottom:609.225000px;}
.y586{bottom:609.585000px;}
.y3fd{bottom:609.765000px;}
.yef{bottom:612.645000px;}
.y4e7{bottom:613.545000px;}
.y3e7{bottom:613.618616px;}
.y3e9{bottom:613.618624px;}
.yc{bottom:614.445000px;}
.y25b{bottom:615.165000px;}
.y4b2{bottom:616.785000px;}
.y69{bottom:616.965000px;}
.y417{bottom:619.845000px;}
.y8b{bottom:620.925000px;}
.y30b{bottom:621.465000px;}
.y135{bottom:621.645000px;}
.y217{bottom:622.005000px;}
.y47c{bottom:622.545000px;}
.y554{bottom:622.905000px;}
.y585{bottom:624.525000px;}
.y456{bottom:625.065000px;}
.y364{bottom:625.605000px;}
.y3a{bottom:626.865000px;}
.y327{bottom:627.405000px;}
.y380{bottom:627.765000px;}
.y3e0{bottom:629.404914px;}
.y3e2{bottom:629.404922px;}
.y3e5{bottom:629.404930px;}
.y3e3{bottom:629.404945px;}
.y3e4{bottom:629.404953px;}
.y34b{bottom:629.565000px;}
.y120{bottom:630.105000px;}
.y4e6{bottom:631.725000px;}
.y495{bottom:634.065000px;}
.y42f{bottom:634.245000px;}
.y4b1{bottom:634.785000px;}
.y156{bottom:635.145000px;}
.y27d{bottom:635.890905px;}
.yee{bottom:638.385000px;}
.y584{bottom:638.565000px;}
.y8a{bottom:640.905000px;}
.yc5{bottom:641.625000px;}
.y68{bottom:642.885000px;}
.y216{bottom:643.965000px;}
.y3d6{bottom:644.450462px;}
.y416{bottom:645.585000px;}
.y39{bottom:646.665000px;}
.y30a{bottom:647.205000px;}
.y134{bottom:647.565000px;}
.y47b{bottom:648.285000px;}
.y34a{bottom:648.825000px;}
.y4e5{bottom:649.725000px;}
.y283{bottom:650.479581px;}
.y455{bottom:650.805000px;}
.y363{bottom:651.345000px;}
.y4b0{bottom:652.965000px;}
.y326{bottom:653.145000px;}
.y37f{bottom:653.505000px;}
.y3fc{bottom:654.765000px;}
.yb2{bottom:655.485000px;}
.y11f{bottom:656.025000px;}
.y505{bottom:659.265000px;}
.y42e{bottom:659.985000px;}
.y89{bottom:660.705000px;}
.y155{bottom:660.885000px;}
.y2d5{bottom:663.227076px;}
.y3ec{bottom:664.020701px;}
.y3ed{bottom:664.020709px;}
.yed{bottom:664.305000px;}
.y38{bottom:666.645000px;}
.y4e4{bottom:667.905000px;}
.y67{bottom:668.805000px;}
.y4af{bottom:671.145000px;}
.y415{bottom:671.325000px;}
.y582{bottom:672.045000px;}
.y309{bottom:673.125000px;}
.y10c{bottom:673.305000px;}
.y47a{bottom:674.025000px;}
.y9e{bottom:675.645000px;}
.yc4{bottom:676.545000px;}
.y454{bottom:676.725000px;}
.y362{bottom:677.085000px;}
.y325{bottom:678.885000px;}
.y349{bottom:679.245000px;}
.y3db{bottom:679.806999px;}
.y3de{bottom:679.807006px;}
.y3ea{bottom:679.807014px;}
.y3df{bottom:679.807030px;}
.y3c7{bottom:679.807038px;}
.y3fb{bottom:680.505000px;}
.yb{bottom:681.405000px;}
.y11e{bottom:681.765000px;}
.y494{bottom:685.725000px;}
.y42d{bottom:685.905000px;}
.y4e3{bottom:686.085000px;}
.y37{bottom:686.445000px;}
.y154{bottom:686.625000px;}
.y4ae{bottom:689.145000px;}
.yec{bottom:690.045000px;}
.y274{bottom:690.904689px;}
.y25a{bottom:692.565000px;}
.y66{bottom:694.725000px;}
.y414{bottom:697.065000px;}
.y348{bottom:698.325000px;}
.y88{bottom:698.685000px;}
.y10b{bottom:699.045000px;}
.y479{bottom:699.945000px;}
.y453{bottom:702.465000px;}
.y361{bottom:703.005000px;}
.yb1{bottom:703.545000px;}
.y4e2{bottom:704.085000px;}
.y3d5{bottom:704.632653px;}
.y324{bottom:704.805000px;}
.y37e{bottom:704.985000px;}
.y36{bottom:706.245000px;}
.y4ad{bottom:707.325000px;}
.y11d{bottom:707.505000px;}
.y493{bottom:711.465000px;}
.yc3{bottom:711.645000px;}
.y153{bottom:712.545000px;}
.y27e{bottom:714.194476px;}
.yeb{bottom:715.785000px;}
.y259{bottom:718.305000px;}
.y65{bottom:720.465000px;}
.ya{bottom:721.005000px;}
.y4e1{bottom:722.265000px;}
.y9d{bottom:723.705000px;}
.y197{bottom:724.065000px;}
.y87{bottom:724.425000px;}
.y308{bottom:724.785000px;}
.y10a{bottom:724.965000px;}
.y4ac{bottom:725.325000px;}
.y478{bottom:725.685000px;}
.y35{bottom:726.045000px;}
.y452{bottom:728.205000px;}
.y347{bottom:728.745000px;}
.y323{bottom:730.545000px;}
.y37d{bottom:730.905000px;}
.y3fa{bottom:732.165000px;}
.y11c{bottom:733.245000px;}
.y413{bottom:735.405000px;}
.y42c{bottom:737.385000px;}
.y152{bottom:738.285000px;}
.y3ba{bottom:739.969169px;}
.y3bd{bottom:739.969177px;}
.y3bf{bottom:739.969185px;}
.y3c1{bottom:739.969193px;}
.y3c2{bottom:739.969200px;}
.y3c6{bottom:739.969208px;}
.y4e0{bottom:740.265000px;}
.yea{bottom:741.525000px;}
.y4ab{bottom:743.505000px;}
.y258{bottom:744.045000px;}
.y34{bottom:745.845000px;}
.y64{bottom:746.205000px;}
.yc2{bottom:746.745000px;}
.y346{bottom:748.005000px;}
.y19a{bottom:748.725000px;}
.y86{bottom:750.525000px;}
.y109{bottom:750.705000px;}
.y477{bottom:751.425000px;}
.yb0{bottom:751.605000px;}
.y451{bottom:753.945000px;}
.y360{bottom:754.485000px;}
.y322{bottom:756.285000px;}
.y37c{bottom:756.645000px;}
.y3f9{bottom:757.905000px;}
.y9c{bottom:758.445000px;}
.y11b{bottom:759.165000px;}
.y9{bottom:760.605000px;}
.y412{bottom:761.505000px;}
.y4aa{bottom:761.685000px;}
.y42b{bottom:763.125000px;}
.y151{bottom:764.025000px;}
.y33{bottom:765.825000px;}
.y345{bottom:767.085000px;}
.ye9{bottom:767.445000px;}
.y275{bottom:769.198614px;}
.y257{bottom:769.965000px;}
.y63{bottom:771.945000px;}
.y191{bottom:773.385000px;}
.y85{bottom:776.085000px;}
.y26c{bottom:776.265000px;}
.y108{bottom:776.445000px;}
.y4df{bottom:776.625000px;}
.y476{bottom:777.165000px;}
.y4a9{bottom:779.685000px;}
.y450{bottom:779.865000px;}
.y35f{bottom:780.225000px;}
.yc1{bottom:781.845000px;}
.y321{bottom:782.385000px;}
.y3b8{bottom:782.863495px;}
.y3f8{bottom:783.645000px;}
.y11a{bottom:784.905000px;}
.y32{bottom:785.625000px;}
.y344{bottom:786.165000px;}
.y492{bottom:788.865000px;}
.y42a{bottom:789.045000px;}
.y411{bottom:789.405000px;}
.y150{bottom:789.765000px;}
.ye8{bottom:793.185000px;}
.y9b{bottom:793.365000px;}
.y4de{bottom:794.625000px;}
.y256{bottom:795.705000px;}
.y62{bottom:797.865000px;}
.yaf{bottom:799.845000px;}
.y8{bottom:800.385000px;}
.y84{bottom:802.005000px;}
.y107{bottom:802.185000px;}
.y475{bottom:803.085000px;}
.y31{bottom:805.425000px;}
.y44f{bottom:805.605000px;}
.y35e{bottom:806.145000px;}
.y320{bottom:808.125000px;}
.y3f7{bottom:809.565000px;}
.y119{bottom:810.645000px;}
.y195{bottom:811.545000px;}
.y4dd{bottom:812.805000px;}
.y9a{bottom:813.165000px;}
.y429{bottom:814.785000px;}
.y14f{bottom:815.685000px;}
.y4a8{bottom:815.865000px;}
.y343{bottom:816.585000px;}
.yc0{bottom:816.945000px;}
.y3a8{bottom:818.200011px;}
.y3a9{bottom:818.200019px;}
.y3aa{bottom:818.200027px;}
.y3ad{bottom:818.200035px;}
.y3af{bottom:818.200043px;}
.y3b0{bottom:818.200051px;}
.ye7{bottom:818.925000px;}
.y255{bottom:821.445000px;}
.y61{bottom:823.605000px;}
.y30{bottom:825.225000px;}
.y83{bottom:827.925000px;}
.y106{bottom:828.105000px;}
.y474{bottom:828.825000px;}
.y4dc{bottom:830.985000px;}
.y44e{bottom:831.345000px;}
.y35d{bottom:831.885000px;}
.y31f{bottom:833.865000px;}
.y37b{bottom:834.045000px;}
.y410{bottom:834.585000px;}
.y3f6{bottom:835.305000px;}
.y18a{bottom:836.205000px;}
.y118{bottom:836.385000px;}
.y552{bottom:836.745000px;}
.y7{bottom:839.985000px;}
.y491{bottom:840.345000px;}
.y428{bottom:840.525000px;}
.y14e{bottom:841.425000px;}
.y3a6{bottom:843.776441px;}
.ye6{bottom:844.665000px;}
.y2f{bottom:845.025000px;}
.y254{bottom:847.185000px;}
.y99{bottom:847.905000px;}
.y4db{bottom:848.985000px;}
.y60{bottom:849.345000px;}
.ybf{bottom:852.045000px;}
.y4a7{bottom:852.225000px;}
.y587{bottom:853.125000px;}
.y82{bottom:853.485000px;}
.y2c7{bottom:853.665000px;}
.y105{bottom:853.845000px;}
.y473{bottom:854.565000px;}
.y44d{bottom:857.085000px;}
.y35c{bottom:857.625000px;}
.y531{bottom:858.705000px;}
.y31e{bottom:859.605000px;}
.y37a{bottom:859.785000px;}
.y40f{bottom:860.325000px;}
.y18f{bottom:861.045000px;}
.y117{bottom:862.305000px;}
.y2e{bottom:865.050000px;}
.y342{bottom:866.310000px;}
.y490{bottom:866.490000px;}
.y14d{bottom:867.210000px;}
.y510{bottom:869.550000px;}
.y4a6{bottom:870.270000px;}
.ye5{bottom:870.630000px;}
.y22e{bottom:871.530000px;}
.y253{bottom:873.150000px;}
.y5f{bottom:875.130000px;}
.y3b1{bottom:876.860630px;}
.y3b2{bottom:876.860638px;}
.y3b3{bottom:876.860646px;}
.y3b6{bottom:876.860654px;}
.y3b7{bottom:876.860661px;}
.y3a0{bottom:876.860669px;}
.y81{bottom:879.630000px;}
.y472{bottom:880.530000px;}
.y44c{bottom:883.050000px;}
.y35b{bottom:883.410000px;}
.y95{bottom:883.590000px;}
.y2d{bottom:884.850000px;}
.y4da{bottom:885.210000px;}
.y187{bottom:885.570000px;}
.y40e{bottom:886.110000px;}
.y3f5{bottom:886.830000px;}
.ybe{bottom:887.190000px;}
.y116{bottom:888.090000px;}
.y6{bottom:888.450000px;}
.y427{bottom:892.230000px;}
.y14c{bottom:892.950000px;}
.y98{bottom:896.010000px;}
.ye4{bottom:896.370000px;}
.y341{bottom:896.730000px;}
.y22d{bottom:897.450000px;}
.y252{bottom:898.890000px;}
.y5e{bottom:901.050000px;}
.y3a2{bottom:902.437060px;}
.y551{bottom:903.030000px;}
.y4d9{bottom:903.390000px;}
.y2c{bottom:904.650000px;}
.y80{bottom:905.370000px;}
.y471{bottom:906.270000px;}
.y4a5{bottom:906.630000px;}
.y530{bottom:908.610000px;}
.y44b{bottom:908.790000px;}
.y35a{bottom:909.330000px;}
.y94{bottom:909.510000px;}
.y189{bottom:910.410000px;}
.y31d{bottom:911.310000px;}
.y40d{bottom:912.030000px;}
.ydc{bottom:912.390000px;}
.y3f4{bottom:912.750000px;}
.y115{bottom:913.830000px;}
.y33f{bottom:915.810000px;}
.y426{bottom:917.970000px;}
.y581{bottom:918.690000px;}
.y14b{bottom:918.870000px;}
.y50f{bottom:919.410000px;}
.y550{bottom:920.130000px;}
.y4d8{bottom:921.570000px;}
.y3a4{bottom:922.007284px;}
.ye3{bottom:922.110000px;}
.ybd{bottom:922.290000px;}
.y22c{bottom:923.190000px;}
.y2b{bottom:924.450000px;}
.y251{bottom:924.630000px;}
.y590{bottom:924.990000px;}
.y52f{bottom:925.710000px;}
.y5d{bottom:926.790000px;}
.y5{bottom:928.050000px;}
.yd5{bottom:930.570000px;}
.y7f{bottom:931.110000px;}
.y104{bottom:931.290000px;}
.y470{bottom:932.010000px;}
.y44a{bottom:934.530000px;}
.y17e{bottom:935.070000px;}
.y93{bottom:935.250000px;}
.y50e{bottom:936.510000px;}
.y31c{bottom:937.050000px;}
.y54f{bottom:937.230000px;}
.y3f3{bottom:938.490000px;}
.y114{bottom:939.570000px;}
.y58f{bottom:942.090000px;}
.ydb{bottom:942.450000px;}
.y4a4{bottom:942.810000px;}
.y52e{bottom:942.990000px;}
.y48f{bottom:943.710000px;}
.y2a{bottom:944.250000px;}
.y14a{bottom:944.610000px;}
.y33e{bottom:946.410000px;}
.ye2{bottom:948.030000px;}
.y22b{bottom:948.930000px;}
.yd4{bottom:950.370000px;}
.y5c{bottom:952.530000px;}
.y50d{bottom:953.610000px;}
.y54e{bottom:954.510000px;}
.y7e{bottom:956.850000px;}
.y103{bottom:957.030000px;}
.ybc{bottom:957.390000px;}
.y46f{bottom:957.750000px;}
.y58e{bottom:959.370000px;}
.y52d{bottom:960.090000px;}
.y449{bottom:960.450000px;}
.y359{bottom:960.810000px;}
.y92{bottom:961.170000px;}
.yda{bottom:962.250000px;}
.y31b{bottom:962.790000px;}
.y29{bottom:964.230000px;}
.y113{bottom:965.490000px;}
.y4{bottom:967.830000px;}
.y580{bottom:968.550000px;}
.y48e{bottom:969.630000px;}
.y149{bottom:970.350000px;}
.y50c{bottom:970.890000px;}
.y54d{bottom:971.610000px;}
.y185{bottom:973.230000px;}
.ye1{bottom:973.770000px;}
.y1c5{bottom:974.670000px;}
.y4d7{bottom:975.930000px;}
.y250{bottom:976.290000px;}
.y58d{bottom:976.470000px;}
.y52c{bottom:977.190000px;}
.y5b{bottom:978.270000px;}
.y4a3{bottom:978.990000px;}
.yd3{bottom:980.430000px;}
.y7d{bottom:982.770000px;}
.y46e{bottom:983.670000px;}
.y28{bottom:984.030000px;}
.y33d{bottom:984.570000px;}
.y57f{bottom:985.650000px;}
.y448{bottom:986.190000px;}
.y358{bottom:986.550000px;}
.y91{bottom:986.910000px;}
.y50b{bottom:987.990000px;}
.y54c{bottom:988.710000px;}
.y3f2{bottom:989.970000px;}
.y112{bottom:991.230000px;}
.y97{bottom:992.310000px;}
.ybb{bottom:992.490000px;}
.yd9{bottom:992.670000px;}
.y58c{bottom:993.570000px;}
.y4d6{bottom:993.930000px;}
.y52b{bottom:994.290000px;}
.y48d{bottom:995.370000px;}
.y148{bottom:996.090000px;}
.y4a2{bottom:997.170000px;}
.y174{bottom:997.710000px;}
.ye0{bottom:999.510000px;}
.y1c4{bottom:1000.590000px;}
.y24f{bottom:1001.850000px;}
.y57e{bottom:1002.750000px;}
.y33c{bottom:1003.650000px;}
.y27{bottom:1003.830000px;}
.y5a{bottom:1004.190000px;}
.y50a{bottom:1005.090000px;}
.y3{bottom:1007.430000px;}
.y7c{bottom:1008.510000px;}
.y46d{bottom:1009.410000px;}
.yd2{bottom:1010.670000px;}
.y447{bottom:1011.930000px;}
.y4d5{bottom:1012.110000px;}
.y90{bottom:1012.470000px;}
.y4a1{bottom:1015.170000px;}
.y3f1{bottom:1015.890000px;}
.y111{bottom:1016.970000px;}
.ydf{bottom:1019.850000px;}
.y57d{bottom:1020.030000px;}
.y48c{bottom:1021.110000px;}
.y147{bottom:1022.010000px;}
.y54b{bottom:1022.190000px;}
.y24e{bottom:1022.370000px;}
.y338{bottom:1022.910000px;}
.y26{bottom:1023.630000px;}
.y1c3{bottom:1026.330000px;}
.yba{bottom:1027.410000px;}
.y529{bottom:1027.770000px;}
.y59{bottom:1029.930000px;}
.y4d4{bottom:1030.110000px;}
.y357{bottom:1032.270000px;}
.y17b{bottom:1032.630000px;}
.y4a0{bottom:1033.350000px;}
.y2c6{bottom:1034.250000px;}
.y7b{bottom:1034.430000px;}
.y46c{bottom:1035.150000px;}
.y57c{bottom:1037.130000px;}
.y446{bottom:1037.670000px;}
.y8f{bottom:1038.390000px;}
.y508{bottom:1038.570000px;}
.y96{bottom:1040.370000px;}
.yd1{bottom:1040.730000px;}
.y3f0{bottom:1041.630000px;}
.y146{bottom:1042.170000px;}
.yd8{bottom:1042.530000px;}
.y110{bottom:1042.890000px;}
.y25{bottom:1043.430000px;}
.y58a{bottom:1044.150000px;}
.y48b{bottom:1047.030000px;}
.y2{bottom:1047.210000px;}
.yde{bottom:1048.110000px;}
.y4d3{bottom:1048.290000px;}
.y24d{bottom:1050.630000px;}
.y49f{bottom:1051.350000px;}
.y1c2{bottom:1052.070000px;}
.y337{bottom:1053.330000px;}
.y57b{bottom:1054.230000px;}
.y58{bottom:1055.670000px;}
.y16b{bottom:1057.110000px;}
.y8e{bottom:1059.450000px;}
.y2c5{bottom:1059.990000px;}
.y7a{bottom:1060.170000px;}
.y46b{bottom:1060.890000px;}
.yb9{bottom:1062.510000px;}
.y24{bottom:1063.410000px;}
.y445{bottom:1063.590000px;}
.y4d2{bottom:1066.470000px;}
.y10f{bottom:1068.630000px;}
.y49e{bottom:1069.530000px;}
.ydd{bottom:1070.430000px;}
.yd0{bottom:1071.150000px;}
.y57a{bottom:1071.330000px;}
.y335{bottom:1072.410000px;}
.yd7{bottom:1072.770000px;}
.y24c{bottom:1073.850000px;}
.y1c1{bottom:1077.810000px;}
.y3ef{bottom:1081.050000px;}
.y57{bottom:1081.410000px;}
.y171{bottom:1081.950000px;}
.y23{bottom:1083.210000px;}
.y4d1{bottom:1084.470000px;}
.y79{bottom:1085.910000px;}
.y1{bottom:1086.810000px;}
.yae{bottom:1088.430000px;}
.y10e{bottom:1088.790000px;}
.y49d{bottom:1089.150000px;}
.y444{bottom:1089.330000px;}
.y8d{bottom:1089.510000px;}
.yb8{bottom:1091.310000px;}
.y332{bottom:1091.490000px;}
.yd6{bottom:1093.830000px;}
.y528{bottom:1094.190000px;}
.y1c0{bottom:1098.150000px;}
.y56{bottom:1102.470000px;}
.y4d0{bottom:1102.650000px;}
.y22{bottom:1103.010000px;}
.y24b{bottom:1103.910000px;}
.y166{bottom:1105.890000px;}
.y46a{bottom:1106.970000px;}
.y507{bottom:1108.770000px;}
.y3ee{bottom:1109.490000px;}
.y2c4{bottom:1111.470000px;}
.y78{bottom:1111.650000px;}
.yb5{bottom:1112.370000px;}
.y356{bottom:1112.910000px;}
.y527{bottom:1114.350000px;}
.y443{bottom:1115.070000px;}
.y8c{bottom:1115.430000px;}
.y10d{bottom:1117.230000px;}
.y4cf{bottom:1120.650000px;}
.y330{bottom:1122.090000px;}
.yb7{bottom:1123.890000px;}
.y168{bottom:1124.070000px;}
.y1bf{bottom:1126.410000px;}
.y506{bottom:1126.950000px;}
.y55{bottom:1132.560000px;}
.y442{bottom:1135.260000px;}
.y355{bottom:1135.440000px;}
.yad{bottom:1136.700000px;}
.y77{bottom:1137.420000px;}
.y102{bottom:1137.600000px;}
.y4ce{bottom:1138.860000px;}
.y165{bottom:1145.880000px;}
.y52{bottom:1187.820000px;}
.y54{bottom:1208.520000px;}
.h54{height:12.037485px;}
.h4c{height:13.680000px;}
.h61{height:14.289773px;}
.h60{height:14.289775px;}
.h62{height:14.289782px;}
.h51{height:14.289812px;}
.h5d{height:14.314838px;}
.h5a{height:15.040549px;}
.h59{height:15.040550px;}
.h52{height:15.791364px;}
.h47{height:16.020000px;}
.h49{height:16.056000px;}
.h45{height:16.200000px;}
.h65{height:16.380000px;}
.h15{height:18.180000px;}
.h14{height:20.196000px;}
.hd{height:22.860000px;}
.h7{height:23.040000px;}
.h1b{height:23.760000px;}
.h20{height:23.796000px;}
.h18{height:23.940000px;}
.h58{height:24.074885px;}
.h5f{height:24.074886px;}
.h63{height:24.074894px;}
.h19{height:24.120000px;}
.h4f{height:24.825661px;}
.h55{height:24.825662px;}
.h10{height:25.219688px;}
.h4b{height:25.380000px;}
.h25{height:25.928438px;}
.h48{height:27.360000px;}
.h4a{height:27.396000px;}
.h43{height:27.540000px;}
.h2b{height:29.183583px;}
.h2d{height:29.925395px;}
.h2c{height:30.224649px;}
.h41{height:30.276000px;}
.h5c{height:30.831871px;}
.h5b{height:30.831873px;}
.h5e{height:32.358484px;}
.h67{height:32.760000px;}
.h70{height:32.796000px;}
.h6c{height:32.940000px;}
.h2e{height:33.561120px;}
.h1c{height:34.020000px;}
.h29{height:34.414204px;}
.h2f{height:34.713458px;}
.h1e{height:37.260000px;}
.h22{height:37.440000px;}
.h3d{height:37.802079px;}
.h26{height:37.829531px;}
.h11{height:38.376000px;}
.h3c{height:38.910631px;}
.h3a{height:38.915542px;}
.h50{height:38.930220px;}
.h2a{height:39.593405px;}
.h31{height:41.736736px;}
.h57{height:42.143557px;}
.h56{height:42.143558px;}
.h17{height:42.633281px;}
.h12{height:43.831406px;}
.h4e{height:44.904167px;}
.h46{height:45.116367px;}
.h13{height:46.397813px;}
.h44{height:46.445273px;}
.h8{height:47.437031px;}
.h53{height:47.891140px;}
.h23{height:48.600000px;}
.h1f{height:48.636000px;}
.h64{height:48.770156px;}
.h16{height:48.780000px;}
.h66{height:49.140000px;}
.h6a{height:49.176000px;}
.h74{height:49.320000px;}
.hc{height:52.841250px;}
.h32{height:54.647219px;}
.h5{height:57.645000px;}
.h1a{height:58.680000px;}
.h6{height:59.265000px;}
.h42{height:61.189805px;}
.h1d{height:61.920000px;}
.h21{height:62.100000px;}
.h33{height:63.353152px;}
.h4{height:64.850625px;}
.h6d{height:65.520000px;}
.he{height:65.522461px;}
.h6e{height:65.556000px;}
.h69{height:65.700000px;}
.hf{height:66.673125px;}
.h27{height:70.596000px;}
.hb{height:71.613281px;}
.ha{height:75.058594px;}
.h9{height:77.167969px;}
.h38{height:92.292545px;}
.h34{height:105.310448px;}
.h36{height:112.940801px;}
.h2{height:115.290000px;}
.h37{height:117.252770px;}
.h3{height:118.530000px;}
.h35{height:118.699740px;}
.h3f{height:144.271925px;}
.h3e{height:146.800054px;}
.h3b{height:170.227388px;}
.h6f{height:212.940000px;}
.h72{height:245.910000px;}
.h75{height:278.715000px;}
.h68{height:360.615000px;}
.h73{height:376.770000px;}
.h24{height:378.750000px;}
.h28{height:388.440059px;}
.h4d{height:409.923623px;}
.h40{height:467.661826px;}
.h39{height:490.457127px;}
.h6b{height:491.610000px;}
.h71{height:573.765000px;}
.h30{height:722.037832px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:19.440000px;}
.w12{width:20.880000px;}
.w26{width:24.660000px;}
.wb{width:28.440000px;}
.w13{width:41.400000px;}
.w21{width:41.751002px;}
.we{width:41.760000px;}
.w16{width:62.100000px;}
.w11{width:62.460000px;}
.w30{width:65.463113px;}
.w1b{width:68.759616px;}
.w1d{width:74.907478px;}
.w1c{width:80.332062px;}
.w32{width:80.514120px;}
.w33{width:80.539163px;}
.w38{width:82.080000px;}
.w39{width:82.800000px;}
.w15{width:82.980000px;}
.w10{width:83.340000px;}
.w2d{width:84.636000px;}
.w27{width:84.996000px;}
.w1e{width:90.843700px;}
.wc{width:91.980000px;}
.w29{width:94.860000px;}
.w2a{width:94.896000px;}
.w36{width:106.103335px;}
.w35{width:121.129298px;}
.w34{width:121.159350px;}
.wd{width:124.380000px;}
.w6{width:131.940000px;}
.w3{width:145.980000px;}
.w1f{width:148.754148px;}
.w28{width:152.310000px;}
.w2e{width:152.670000px;}
.w2b{width:159.330000px;}
.w37{width:161.779537px;}
.w3d{width:168.870000px;}
.w3b{width:169.230000px;}
.wa{width:178.050000px;}
.w3e{width:179.670000px;}
.w22{width:187.858446px;}
.w2c{width:190.470000px;}
.w23{width:191.675439px;}
.w24{width:204.314492px;}
.w7{width:224.490000px;}
.w3a{width:227.550000px;}
.w9{width:228.090000px;}
.w5{width:289.830000px;}
.w19{width:308.370000px;}
.w8{width:324.795000px;}
.w31{width:471.815245px;}
.w2f{width:472.566544px;}
.w1a{width:484.957809px;}
.w3f{width:508.785000px;}
.w14{width:510.225000px;}
.wf{width:510.945000px;}
.w3c{width:519.405000px;}
.w17{width:636.045000px;}
.w20{width:690.715776px;}
.w18{width:690.908735px;}
.w25{width:833.580000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x11{left:1.440000px;}
.x54{left:2.536294px;}
.x13{left:4.500000px;}
.x57{left:6.509501px;}
.x23{left:8.100000px;}
.x58{left:9.421900px;}
.x26{left:10.620000px;}
.x59{left:11.958194px;}
.x21{left:13.500000px;}
.x29{left:14.940000px;}
.x4e{left:16.997030px;}
.x24{left:18.000000px;}
.x60{left:19.914251px;}
.x52{left:21.341519px;}
.x5f{left:22.807362px;}
.x50{left:24.258740px;}
.x5b{left:25.700474px;}
.x28{left:27.180000px;}
.x53{left:28.231946px;}
.x5e{left:29.673680px;}
.x5d{left:30.763419px;}
.x5a{left:31.843514px;}
.x56{left:34.379808px;}
.x35{left:37.262885px;}
.x36{left:38.471975px;}
.x3a{left:40.976520px;}
.x66{left:42.480000px;}
.x3b{left:43.567427px;}
.x5c{left:47.418097px;}
.x37{left:49.785606px;}
.x2d{left:50.821969px;}
.x2c{left:53.671968px;}
.x47{left:54.794694px;}
.x34{left:58.249238px;}
.x39{left:59.285601px;}
.x3c{left:60.840146px;}
.x46{left:67.749233px;}
.x33{left:70.944686px;}
.x38{left:73.276503px;}
.x6f{left:96.316424px;}
.x10{left:104.796000px;}
.x1{left:106.235987px;}
.x20{left:107.856000px;}
.x4c{left:110.949139px;}
.x14{left:114.695987px;}
.x19{left:117.395987px;}
.x61{left:120.180534px;}
.x1f{left:127.475987px;}
.x4d{left:130.501751px;}
.x1d{left:133.235987px;}
.x48{left:134.495987px;}
.x15{left:138.275987px;}
.x73{left:147.746529px;}
.x1a{left:148.895987px;}
.x27{left:149.976000px;}
.x68{left:152.850000px;}
.x62{left:154.345528px;}
.x1e{left:160.229987px;}
.x44{left:168.276454px;}
.x1b{left:170.129987px;}
.x16{left:182.729987px;}
.x3f{left:188.226444px;}
.x3e{left:191.076442px;}
.x4f{left:199.623005px;}
.x2e{left:205.412799px;}
.x2f{left:209.903705px;}
.x17{left:212.969987px;}
.x40{left:214.740067px;}
.x3d{left:217.503701px;}
.x49{left:225.569987px;}
.x75{left:229.011947px;}
.x78{left:247.709987px;}
.x70{left:269.632134px;}
.x7{left:273.674987px;}
.x79{left:276.915000px;}
.xb{left:279.614987px;}
.x9{left:286.634987px;}
.x2a{left:297.974987px;}
.x4{left:301.214987px;}
.x2{left:303.194987px;}
.x69{left:306.075000px;}
.xa{left:314.894987px;}
.x30{left:335.994550px;}
.x31{left:339.880911px;}
.x3{left:342.074987px;}
.x77{left:348.014987px;}
.x71{left:350.902560px;}
.x32{left:352.058178px;}
.x67{left:355.755000px;}
.x43{left:356.894539px;}
.x5{left:358.274987px;}
.x41{left:366.560064px;}
.xf{left:368.534987px;}
.x42{left:370.194532px;}
.x55{left:371.526867px;}
.xe{left:374.474987px;}
.xc{left:379.874987px;}
.x8{left:381.854987px;}
.x74{left:391.542782px;}
.x6a{left:401.655000px;}
.xd{left:414.614987px;}
.x72{left:432.162969px;}
.x1c{left:446.684987px;}
.x6{left:467.204987px;}
.x76{left:472.813209px;}
.x6b{left:497.445000px;}
.x45{left:507.152795px;}
.x6e{left:513.453430px;}
.x51{left:520.637832px;}
.x63{left:535.143319px;}
.x4b{left:569.804987px;}
.x6d{left:579.524987px;}
.x4a{left:648.509987px;}
.x6c{left:657.690000px;}
.x22{left:660.570000px;}
.x25{left:723.030000px;}
.x64{left:755.248200px;}
.x18{left:764.460000px;}
.x12{left:773.460000px;}
.x2b{left:797.579987px;}
.x65{left:827.279987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.603734pt;}
.v1{vertical-align:16.000000pt;}
.ls16{letter-spacing:-2.778667pt;}
.ls17{letter-spacing:-2.757333pt;}
.ls3b{letter-spacing:-2.720000pt;}
.ls19{letter-spacing:-2.560000pt;}
.ls39{letter-spacing:-2.320000pt;}
.ls32{letter-spacing:-1.658603pt;}
.ls21{letter-spacing:-1.445333pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-1.034667pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.440533pt;}
.ls31{letter-spacing:-0.419733pt;}
.ls22{letter-spacing:-0.411733pt;}
.ls38{letter-spacing:-0.400000pt;}
.ls33{letter-spacing:-0.399467pt;}
.ls24{letter-spacing:-0.329067pt;}
.ls34{letter-spacing:-0.297067pt;}
.ls18{letter-spacing:-0.240533pt;}
.lsd{letter-spacing:-0.220267pt;}
.lsc{letter-spacing:-0.199467pt;}
.ls36{letter-spacing:-0.194667pt;}
.ls23{letter-spacing:-0.167467pt;}
.ls35{letter-spacing:-0.046080pt;}
.ls37{letter-spacing:-0.024320pt;}
.lsf{letter-spacing:-0.020480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000001pt;}
.ls8{letter-spacing:0.000003pt;}
.ls28{letter-spacing:0.007680pt;}
.ls25{letter-spacing:0.013440pt;}
.ls3{letter-spacing:0.015360pt;}
.ls11{letter-spacing:0.020480pt;}
.ls3a{letter-spacing:0.024320pt;}
.ls2{letter-spacing:0.030720pt;}
.ls2e{letter-spacing:0.037760pt;}
.ls0{letter-spacing:0.040960pt;}
.ls1f{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.199467pt;}
.ls1c{letter-spacing:0.199680pt;}
.lse{letter-spacing:0.240533pt;}
.ls9{letter-spacing:0.240640pt;}
.ls2c{letter-spacing:0.259180pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.380714pt;}
.ls26{letter-spacing:0.491065pt;}
.ls2a{letter-spacing:0.522195pt;}
.ls7{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.647080pt;}
.ls1b{letter-spacing:10.880000pt;}
.ls30{letter-spacing:13.440000pt;}
.ls29{letter-spacing:17.920000pt;}
.ls1{letter-spacing:20.879360pt;}
.ls1d{letter-spacing:50.738347pt;}
.ls14{letter-spacing:66.816000pt;}
.ls15{letter-spacing:67.456000pt;}
.ls2f{letter-spacing:87.218347pt;}
.ls2d{letter-spacing:98.560000pt;}
.ls1a{letter-spacing:121.563307pt;}
.ls13{letter-spacing:227.434667pt;}
.lsb{letter-spacing:754.058667pt;}
.ws3d{word-spacing:-19.600000pt;}
.ws3f{word-spacing:-17.680000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws24{word-spacing:-17.287680pt;}
.wsf{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.600533pt;}
.ws8{word-spacing:-15.559467pt;}
.ws11{word-spacing:-15.380480pt;}
.ws3{word-spacing:-15.360003pt;}
.ws9{word-spacing:-15.360001pt;}
.ws10{word-spacing:-15.360000pt;}
.ws7{word-spacing:-15.339520pt;}
.ws4{word-spacing:-15.160533pt;}
.ws5{word-spacing:-15.139733pt;}
.wsc{word-spacing:-15.119467pt;}
.ws38{word-spacing:-14.960533pt;}
.ws25{word-spacing:-14.940267pt;}
.ws21{word-spacing:-14.919467pt;}
.ws1b{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.080000pt;}
.ws3a{word-spacing:-14.033920pt;}
.ws3b{word-spacing:-13.885333pt;}
.ws39{word-spacing:-13.782933pt;}
.ws3e{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.800000pt;}
.ws40{word-spacing:-12.640000pt;}
.ws3c{word-spacing:-12.615680pt;}
.wsb{word-spacing:-12.602667pt;}
.wsa{word-spacing:-12.581333pt;}
.ws22{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.680000pt;}
.ws18{word-spacing:-11.360000pt;}
.ws19{word-spacing:-11.192533pt;}
.ws17{word-spacing:-10.948267pt;}
.ws12{word-spacing:-10.325333pt;}
.ws1a{word-spacing:-10.080000pt;}
.ws14{word-spacing:-9.914667pt;}
.ws23{word-spacing:-9.150080pt;}
.ws2e{word-spacing:-9.069461pt;}
.ws1c{word-spacing:-8.429723pt;}
.ws1f{word-spacing:-7.894206pt;}
.ws37{word-spacing:-7.862881pt;}
.ws1e{word-spacing:-7.635026pt;}
.ws20{word-spacing:-7.634062pt;}
.ws13{word-spacing:-7.360000pt;}
.ws16{word-spacing:-6.720000pt;}
.ws2{word-spacing:0.000000pt;}
.ws2d{word-spacing:51.491432pt;}
.ws2c{word-spacing:55.950796pt;}
.ws2b{word-spacing:58.584629pt;}
.ws2f{word-spacing:58.602425pt;}
.ws26{word-spacing:62.167621pt;}
.ws2a{word-spacing:62.203213pt;}
.ws33{word-spacing:66.536491pt;}
.ws29{word-spacing:69.277101pt;}
.ws27{word-spacing:69.280126pt;}
.ws34{word-spacing:69.294897pt;}
.ws31{word-spacing:69.297922pt;}
.ws30{word-spacing:70.175896pt;}
.ws28{word-spacing:78.185684pt;}
.ws32{word-spacing:78.256869pt;}
.ws1d{word-spacing:247.530839pt;}
.ws36{word-spacing:369.596423pt;}
.ws35{word-spacing:636.070281pt;}
._33{margin-left:-15.538773pt;}
._1b{margin-left:-14.166613pt;}
._1f{margin-left:-11.631360pt;}
._20{margin-left:-10.217826pt;}
._1a{margin-left:-8.521813pt;}
._1e{margin-left:-7.471845pt;}
._1c{margin-left:-5.929813pt;}
._1d{margin-left:-4.730461pt;}
._c{margin-left:-3.610027pt;}
._2{margin-left:-2.560000pt;}
._0{margin-left:-1.105920pt;}
._1{width:1.175040pt;}
._6{width:2.482773pt;}
._13{width:3.502080pt;}
._3{width:4.546560pt;}
._4{width:6.210987pt;}
._5{width:7.182933pt;}
._d{width:8.191360pt;}
._9{width:9.093120pt;}
._7{width:10.137600pt;}
._8{width:11.120213pt;}
._14{width:12.165120pt;}
._15{width:13.271040pt;}
._3c{width:14.254080pt;}
._42{width:15.994880pt;}
._12{width:17.034667pt;}
._11{width:17.940480pt;}
._a{width:19.046400pt;}
._b{width:19.983787pt;}
._e{width:20.903680pt;}
._38{width:21.811200pt;}
._35{width:23.470080pt;}
._36{width:25.082453pt;}
._39{width:26.276267pt;}
._45{width:27.176960pt;}
._19{width:28.119040pt;}
._37{width:29.020160pt;}
._3d{width:30.474240pt;}
._f{width:31.395840pt;}
._10{width:32.501760pt;}
._3e{width:33.546240pt;}
._17{width:34.713600pt;}
._18{width:36.372480pt;}
._4e{width:37.355520pt;}
._34{width:38.707200pt;}
._3a{width:40.366080pt;}
._41{width:41.956480pt;}
._55{width:43.499520pt;}
._47{width:44.789760pt;}
._4a{width:45.888000pt;}
._52{width:49.213440pt;}
._3f{width:50.565120pt;}
._4d{width:54.804480pt;}
._56{width:56.279040pt;}
._57{width:57.240747pt;}
._58{width:60.088320pt;}
._53{width:64.696320pt;}
._46{width:65.802240pt;}
._3b{width:67.681707pt;}
._59{width:69.918720pt;}
._5a{width:71.208960pt;}
._49{width:96.851577pt;}
._4f{width:98.299307pt;}
._27{width:132.498773pt;}
._43{width:176.618667pt;}
._32{width:182.680747pt;}
._22{width:189.377707pt;}
._24{width:192.818347pt;}
._2f{width:196.197547pt;}
._31{width:216.779947pt;}
._2c{width:220.159147pt;}
._21{width:223.538347pt;}
._26{width:231.018027pt;}
._30{width:234.397227pt;}
._2b{width:237.239467pt;}
._2a{width:241.217067pt;}
._2d{width:244.719467pt;}
._2e{width:251.539307pt;}
._29{width:264.959360pt;}
._23{width:267.938987pt;}
._25{width:275.178240pt;}
._28{width:299.078400pt;}
._44{width:319.528815pt;}
._54{width:387.862944pt;}
._4c{width:430.899834pt;}
._4b{width:528.148564pt;}
._40{width:563.498667pt;}
._51{width:755.498667pt;}
._50{width:758.058667pt;}
._16{width:1659.126603pt;}
._48{width:1728.405333pt;}
.fse{font-size:23.018670pt;}
.fs7{font-size:26.880000pt;}
.fs9{font-size:29.440000pt;}
.fsc{font-size:30.691560pt;}
.fsd{font-size:30.998476pt;}
.fs12{font-size:33.779037pt;}
.fs11{font-size:33.783301pt;}
.fs16{font-size:34.791508pt;}
.fsb{font-size:35.295294pt;}
.fsf{font-size:35.602210pt;}
.fs14{font-size:37.120000pt;}
.fs10{font-size:37.299661pt;}
.fs15{font-size:40.130359pt;}
.fsa{font-size:40.320000pt;}
.fs17{font-size:42.799784pt;}
.fs8{font-size:45.440000pt;}
.fs3{font-size:50.560000pt;}
.fs13{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:122.880000pt;}
.y0{bottom:0.000000pt;}
.y3dd{bottom:2.002070pt;}
.y3ac{bottom:2.002072pt;}
.y3b5{bottom:2.028766pt;}
.y1b8{bottom:2.080000pt;}
.y17a{bottom:2.560000pt;}
.y27c{bottom:2.572390pt;}
.y3a7{bottom:2.669426pt;}
.y33b{bottom:2.720000pt;}
.y59b{bottom:2.746667pt;}
.y333{bottom:2.880000pt;}
.y3b9{bottom:3.336784pt;}
.y3a5{bottom:3.336790pt;}
.y3c9{bottom:3.336811pt;}
.y3d7{bottom:3.354582pt;}
.y3e8{bottom:3.359029pt;}
.y3e1{bottom:3.363477pt;}
.y3e6{bottom:3.363480pt;}
.y3a3{bottom:3.363484pt;}
.y336{bottom:3.840000pt;}
.y16a{bottom:4.000000pt;}
.y39f{bottom:4.004139pt;}
.y2ad{bottom:4.201571pt;}
.y17c{bottom:4.640000pt;}
.y190{bottom:4.680000pt;}
.y3da{bottom:4.693752pt;}
.y3c5{bottom:4.698189pt;}
.y172{bottom:4.800000pt;}
.y173{bottom:4.960000pt;}
.y169{bottom:4.986667pt;}
.yb6{bottom:5.280000pt;}
.y3cf{bottom:5.361099pt;}
.y53{bottom:5.440000pt;}
.y2b8{bottom:6.105997pt;}
.y18e{bottom:6.560000pt;}
.y170{bottom:6.720000pt;}
.y293{bottom:6.748237pt;}
.y29c{bottom:6.756812pt;}
.y2c3{bottom:7.074116pt;}
.y2fd{bottom:7.303186pt;}
.y184{bottom:7.840000pt;}
.y2e3{bottom:7.865292pt;}
.y194{bottom:8.000000pt;}
.y3a1{bottom:8.034970pt;}
.y3ae{bottom:8.034971pt;}
.y3eb{bottom:8.034973pt;}
.y280{bottom:8.677530pt;}
.y27a{bottom:8.686105pt;}
.y339{bottom:8.800000pt;}
.y340{bottom:8.960000pt;}
.y2f1{bottom:9.550712pt;}
.y3bc{bottom:10.037040pt;}
.y3c0{bottom:10.037041pt;}
.y2a7{bottom:10.315286pt;}
.y186{bottom:10.560000pt;}
.y3d3{bottom:10.699947pt;}
.y196{bottom:10.720000pt;}
.y286{bottom:12.561840pt;}
.y167{bottom:12.640000pt;}
.y1b7{bottom:13.280000pt;}
.y3ab{bottom:13.373821pt;}
.y3dc{bottom:13.373822pt;}
.y3b4{bottom:13.391617pt;}
.y17d{bottom:13.760000pt;}
.y331{bottom:14.266667pt;}
.y277{bottom:14.791245pt;}
.y33a{bottom:14.880000pt;}
.y334{bottom:15.040000pt;}
.y179{bottom:15.520000pt;}
.y2d6{bottom:15.753056pt;}
.y3be{bottom:16.061042pt;}
.y3c4{bottom:16.061043pt;}
.y2ac{bottom:16.420425pt;}
.y1bd{bottom:16.640000pt;}
.y3d1{bottom:16.728399pt;}
.y3ce{bottom:16.728400pt;}
.y509{bottom:17.280000pt;}
.y556{bottom:17.306667pt;}
.y533{bottom:17.320000pt;}
.y547{bottom:17.440000pt;}
.y3d9{bottom:18.063113pt;}
.y2b7{bottom:18.350576pt;}
.y2fc{bottom:18.558044pt;}
.y199{bottom:18.560000pt;}
.y288{bottom:18.666980pt;}
.y18c{bottom:18.720000pt;}
.y16d{bottom:18.880000pt;}
.y29a{bottom:18.975667pt;}
.y292{bottom:18.992816pt;}
.y2e2{bottom:19.123895pt;}
.y2c2{bottom:19.314236pt;}
.y188{bottom:19.680000pt;}
.y16f{bottom:19.840000pt;}
.y183{bottom:20.320000pt;}
.y2f0{bottom:20.801824pt;}
.y27f{bottom:20.896385pt;}
.y279{bottom:20.904959pt;}
.y3bb{bottom:21.399893pt;}
.y2a6{bottom:22.534140pt;}
.y180{bottom:24.640000pt;}
.y284{bottom:24.780694pt;}
.y193{bottom:24.800000pt;}
.y1b6{bottom:25.440000pt;}
.y276{bottom:27.010099pt;}
.y3c3{bottom:27.432794pt;}
.y176{bottom:27.680000pt;}
.y1bc{bottom:28.160000pt;}
.y2ab{bottom:28.639280pt;}
.y178{bottom:28.640000pt;}
.y2fb{bottom:29.812902pt;}
.y504{bottom:30.080000pt;}
.y2e1{bottom:30.375008pt;}
.y2b4{bottom:30.569430pt;}
.y287{bottom:30.885834pt;}
.y291{bottom:31.211670pt;}
.y2bf{bottom:31.533090pt;}
.y210{bottom:31.577737pt;}
.y198{bottom:31.680000pt;}
.y18b{bottom:31.720000pt;}
.y16c{bottom:31.840000pt;}
.y59a{bottom:31.866667pt;}
.y532{bottom:31.880000pt;}
.y58b{bottom:32.000000pt;}
.y2ef{bottom:32.060428pt;}
.y182{bottom:32.640000pt;}
.y18d{bottom:32.680000pt;}
.y16e{bottom:32.800000pt;}
.y4cd{bottom:32.960000pt;}
.y278{bottom:33.140963pt;}
.y2a3{bottom:34.752994pt;}
.y2e5{bottom:36.554880pt;}
.y2ba{bottom:36.674570pt;}
.y285{bottom:36.999549pt;}
.y28d{bottom:37.316810pt;}
.y17f{bottom:37.600000pt;}
.y2bd{bottom:37.642518pt;}
.y192{bottom:37.760000pt;}
.y2bb{bottom:37.964066pt;}
.y281{bottom:39.246103pt;}
.y27b{bottom:39.254678pt;}
.y1bb{bottom:39.680000pt;}
.y175{bottom:40.640000pt;}
.y2a1{bottom:40.858134pt;}
.y2f3{bottom:41.067760pt;}
.y177{bottom:41.600000pt;}
.y2e0{bottom:41.633611pt;}
.y1b5{bottom:41.760000pt;}
.y20f{bottom:42.320103pt;}
.y2b3{bottom:42.788285pt;}
.y2ee{bottom:43.311540pt;}
.y28b{bottom:43.430525pt;}
.y2be{bottom:43.751945pt;}
.y2e6{bottom:43.873347pt;}
.y181{bottom:45.120000pt;}
.y503{bottom:46.240000pt;}
.y523{bottom:46.400000pt;}
.y599{bottom:46.426667pt;}
.y553{bottom:46.440000pt;}
.y52a{bottom:46.560000pt;}
.y29f{bottom:46.988998pt;}
.y272{bottom:47.840000pt;}
.y24a{bottom:48.320000pt;}
.y2b0{bottom:48.893424pt;}
.y4cc{bottom:49.120000pt;}
.y20c{bottom:49.225704pt;}
.y28c{bottom:49.535665pt;}
.y296{bottom:49.544239pt;}
.y1b4{bottom:49.760000pt;}
.y1ba{bottom:51.720000pt;}
.y2fa{bottom:52.303891pt;}
.y2df{bottom:52.869743pt;}
.y20e{bottom:53.062149pt;}
.y2a0{bottom:53.102713pt;}
.y2ed{bottom:54.547672pt;}
.y2b2{bottom:55.007139pt;}
.y297{bottom:55.649379pt;}
.y290{bottom:55.666528pt;}
.y2c1{bottom:55.970799pt;}
.y20b{bottom:57.282239pt;}
.y2a2{bottom:59.207853pt;}
.y522{bottom:60.960000pt;}
.y598{bottom:60.986667pt;}
.y575{bottom:61.000000pt;}
.y2b9{bottom:61.112279pt;}
.y1b3{bottom:61.120000pt;}
.y502{bottom:62.432000pt;}
.y2f9{bottom:63.558749pt;}
.y20d{bottom:63.804195pt;}
.y2de{bottom:64.120855pt;}
.y4cb{bottom:65.152000pt;}
.y2aa{bottom:65.321567pt;}
.y20a{bottom:65.722418pt;}
.y2ec{bottom:65.806275pt;}
.y2b1{bottom:67.243143pt;}
.y298{bottom:67.868234pt;}
.y28f{bottom:67.885383pt;}
.y2c0{bottom:68.211090pt;}
.y271{bottom:70.752000pt;}
.y249{bottom:71.232000pt;}
.y2a5{bottom:71.426707pt;}
.y307{bottom:71.552000pt;}
.y1b2{bottom:72.640000pt;}
.y379{bottom:74.592000pt;}
.y2f8{bottom:74.815855pt;}
.y2dd{bottom:75.379459pt;}
.y521{bottom:75.520000pt;}
.y597{bottom:75.546667pt;}
.y574{bottom:75.720000pt;}
.y395{bottom:76.512000pt;}
.y2eb{bottom:77.057388pt;}
.y209{bottom:77.308482pt;}
.y2a9{bottom:77.540421pt;}
.y501{bottom:78.432000pt;}
.y2b6{bottom:79.461997pt;}
.y39e{bottom:79.571117pt;}
.y28e{bottom:80.104237pt;}
.y299{bottom:80.112812pt;}
.y23f{bottom:80.672000pt;}
.y4ca{bottom:81.312000pt;}
.y2a4{bottom:83.645561pt;}
.y1b1{bottom:84.160000pt;}
.y208{bottom:84.214083pt;}
.y2f7{bottom:86.066967pt;}
.y2dc{bottom:86.630572pt;}
.y2ea{bottom:88.315991pt;}
.y2a8{bottom:89.776425pt;}
.y545{bottom:90.080000pt;}
.y520{bottom:90.106667pt;}
.y270{bottom:90.272000pt;}
.y573{bottom:90.280000pt;}
.y273{bottom:90.499559pt;}
.y2bc{bottom:90.821107pt;}
.y2b5{bottom:91.680852pt;}
.y29b{bottom:92.331666pt;}
.y2d2{bottom:92.832000pt;}
.y248{bottom:94.112000pt;}
.y306{bottom:94.432000pt;}
.y500{bottom:94.592000pt;}
.y207{bottom:94.956129pt;}
.y21{bottom:95.232000pt;}
.y1b0{bottom:95.680000pt;}
.y469{bottom:97.152000pt;}
.y2f6{bottom:97.303098pt;}
.y4c9{bottom:97.312000pt;}
.y378{bottom:97.632000pt;}
.y2db{bottom:97.866703pt;}
.y394{bottom:99.392000pt;}
.y2e9{bottom:99.552122pt;}
.y133{bottom:101.632000pt;}
.y23e{bottom:103.552000pt;}
.y2fe{bottom:104.629056pt;}
.y544{bottom:104.640000pt;}
.y51f{bottom:104.666667pt;}
.y572{bottom:104.840000pt;}
.y51{bottom:104.992000pt;}
.y206{bottom:105.698175pt;}
.y1e2{bottom:108.000042pt;}
.y2f5{bottom:108.561702pt;}
.y101{bottom:108.992000pt;}
.y2da{bottom:109.125306pt;}
.y4ff{bottom:110.752000pt;}
.y2e8{bottom:110.803235pt;}
.y1af{bottom:111.200000pt;}
.y4c8{bottom:113.472000pt;}
.y20{bottom:115.072000pt;}
.y2d1{bottom:115.712000pt;}
.y1e1{bottom:116.440221pt;}
.y247{bottom:117.152000pt;}
.y22a{bottom:117.312000pt;}
.y1ae{bottom:118.720000pt;}
.y543{bottom:119.200000pt;}
.y51e{bottom:119.226667pt;}
.y571{bottom:119.400000pt;}
.y2f4{bottom:119.812815pt;}
.y468{bottom:120.032000pt;}
.y2d9{bottom:120.376419pt;}
.y377{bottom:120.512000pt;}
.y1f8{bottom:120.660311pt;}
.y2e7{bottom:122.061839pt;}
.y1f0{bottom:122.194889pt;}
.y393{bottom:122.432000pt;}
.y50{bottom:122.752000pt;}
.y39d{bottom:124.350725pt;}
.y132{bottom:124.512000pt;}
.y1e0{bottom:124.880400pt;}
.y205{bottom:126.414978pt;}
.y23d{bottom:126.432000pt;}
.y4fe{bottom:126.752000pt;}
.y1f7{bottom:128.716845pt;}
.y4c7{bottom:129.632000pt;}
.y1ad{bottom:130.240000pt;}
.y1ef{bottom:130.251423pt;}
.y2ae{bottom:131.574210pt;}
.y2d8{bottom:131.635022pt;}
.y100{bottom:131.872000pt;}
.y1df{bottom:132.936935pt;}
.y542{bottom:133.760000pt;}
.y51d{bottom:133.786667pt;}
.y596{bottom:133.946667pt;}
.y570{bottom:133.960000pt;}
.yac{bottom:134.906667pt;}
.y1f{bottom:135.066667pt;}
.y1f6{bottom:137.157024pt;}
.y2d0{bottom:138.586667pt;}
.y1ee{bottom:138.691602pt;}
.y246{bottom:140.026667pt;}
.y229{bottom:140.186667pt;}
.y4f{bottom:140.346667pt;}
.y1de{bottom:141.453843pt;}
.y1ac{bottom:141.760000pt;}
.y2d7{bottom:142.871154pt;}
.y467{bottom:142.906667pt;}
.y376{bottom:143.386667pt;}
.y392{bottom:145.306667pt;}
.y4c6{bottom:145.626667pt;}
.y131{bottom:147.546667pt;}
.y204{bottom:147.975799pt;}
.y541{bottom:148.320000pt;}
.y51c{bottom:148.346667pt;}
.y595{bottom:148.506667pt;}
.y56f{bottom:148.520000pt;}
.y1f5{bottom:148.743088pt;}
.y23c{bottom:149.306667pt;}
.y1ed{bottom:150.277666pt;}
.y1dd{bottom:152.963178pt;}
.y1e{bottom:154.906667pt;}
.y26b{bottom:156.986667pt;}
.y1ab{bottom:157.120000pt;}
.y4e{bottom:157.946667pt;}
.y203{bottom:158.717845pt;}
.y4fd{bottom:158.906667pt;}
.y2cf{bottom:161.626667pt;}
.y4c5{bottom:161.786667pt;}
.y540{bottom:162.880000pt;}
.y245{bottom:162.906667pt;}
.y583{bottom:163.040000pt;}
.y228{bottom:163.066667pt;}
.y56e{bottom:163.080000pt;}
.y305{bottom:163.226667pt;}
.y1aa{bottom:164.640000pt;}
.yab{bottom:165.786667pt;}
.y466{bottom:165.946667pt;}
.y375{bottom:166.266667pt;}
.y391{bottom:168.186667pt;}
.y202{bottom:169.459892pt;}
.y130{bottom:170.426667pt;}
.y23b{bottom:172.346667pt;}
.y145{bottom:172.826667pt;}
.y2af{bottom:173.180345pt;}
.y433{bottom:174.746667pt;}
.y1d{bottom:174.906667pt;}
.y4fc{bottom:175.066667pt;}
.y1a9{bottom:176.160000pt;}
.y53f{bottom:177.440000pt;}
.y51b{bottom:177.466667pt;}
.y594{bottom:177.626667pt;}
.y56d{bottom:177.640000pt;}
.yff{bottom:177.786667pt;}
.y39c{bottom:177.846006pt;}
.y26a{bottom:179.866667pt;}
.y2ce{bottom:184.506667pt;}
.y244{bottom:185.786667pt;}
.y227{bottom:186.106667pt;}
.y1e7{bottom:187.491183pt;}
.y1a8{bottom:187.680000pt;}
.y465{bottom:188.826667pt;}
.y374{bottom:189.306667pt;}
.y1ec{bottom:189.793050pt;}
.y201{bottom:190.943984pt;}
.y390{bottom:191.066667pt;}
.y4fb{bottom:191.226667pt;}
.y441{bottom:191.866667pt;}
.y53e{bottom:192.000000pt;}
.y51a{bottom:192.026667pt;}
.y593{bottom:192.186667pt;}
.y56c{bottom:192.200000pt;}
.y12f{bottom:193.306667pt;}
.y4d{bottom:193.946667pt;}
.y1f4{bottom:194.013140pt;}
.y1d4{bottom:194.106667pt;}
.y1c{bottom:194.906667pt;}
.y23a{bottom:195.226667pt;}
.y144{bottom:195.706667pt;}
.y1e6{bottom:195.931362pt;}
.yaa{bottom:196.666667pt;}
.y432{bottom:197.786667pt;}
.y40c{bottom:198.106667pt;}
.y1eb{bottom:198.233229pt;}
.y1a7{bottom:199.200000pt;}
.yfe{bottom:200.666667pt;}
.y200{bottom:201.686030pt;}
.y1f3{bottom:202.069674pt;}
.y269{bottom:202.746667pt;}
.y1e5{bottom:203.987897pt;}
.y1ea{bottom:206.289764pt;}
.y519{bottom:206.586667pt;}
.y579{bottom:206.746667pt;}
.y56b{bottom:206.760000pt;}
.y4fa{bottom:207.226667pt;}
.y2cd{bottom:207.386667pt;}
.y31a{bottom:208.506667pt;}
.y243{bottom:208.826667pt;}
.y226{bottom:208.986667pt;}
.y48a{bottom:209.306667pt;}
.y4c4{bottom:210.106667pt;}
.y1f2{bottom:210.509853pt;}
.y4c{bottom:211.546667pt;}
.y464{bottom:211.706667pt;}
.y373{bottom:212.186667pt;}
.y1e4{bottom:212.504805pt;}
.y26f{bottom:213.946667pt;}
.y38f{bottom:214.106667pt;}
.y1a6{bottom:214.720000pt;}
.y1b{bottom:214.746667pt;}
.y1e9{bottom:214.806672pt;}
.y440{bottom:214.906667pt;}
.y12e{bottom:216.186667pt;}
.y1d3{bottom:216.986667pt;}
.y239{bottom:218.106667pt;}
.y143{bottom:218.586667pt;}
.y578{bottom:220.026667pt;}
.y164{bottom:220.506667pt;}
.y431{bottom:220.666667pt;}
.y40b{bottom:220.986667pt;}
.y518{bottom:221.146667pt;}
.y592{bottom:221.306667pt;}
.y56a{bottom:221.320000pt;}
.y1f1{bottom:222.095917pt;}
.y1a5{bottom:222.240000pt;}
.y1ff{bottom:223.246851pt;}
.y4f9{bottom:223.386667pt;}
.yfd{bottom:223.706667pt;}
.y1e3{bottom:224.014140pt;}
.y268{bottom:225.786667pt;}
.y4c3{bottom:226.106667pt;}
.y1e8{bottom:226.316007pt;}
.y1be{bottom:226.906667pt;}
.ycf{bottom:227.226667pt;}
.y76{bottom:227.386667pt;}
.ya9{bottom:227.546667pt;}
.y4b{bottom:229.306667pt;}
.y425{bottom:229.946667pt;}
.y2cc{bottom:230.266667pt;}
.y319{bottom:231.546667pt;}
.y242{bottom:231.706667pt;}
.y225{bottom:231.866667pt;}
.y489{bottom:232.346667pt;}
.y1fe{bottom:233.988897pt;}
.y29d{bottom:234.212588pt;}
.y577{bottom:234.586667pt;}
.y1a{bottom:234.746667pt;}
.y372{bottom:235.066667pt;}
.y517{bottom:235.706667pt;}
.y591{bottom:235.866667pt;}
.y569{bottom:235.880000pt;}
.y26e{bottom:236.826667pt;}
.y38e{bottom:236.986667pt;}
.y1a4{bottom:237.626667pt;}
.y43f{bottom:237.786667pt;}
.y12d{bottom:239.226667pt;}
.y4f8{bottom:239.386667pt;}
.y1d2{bottom:240.026667pt;}
.y238{bottom:240.986667pt;}
.y142{bottom:241.466667pt;}
.y4c2{bottom:242.266667pt;}
.y1b9{bottom:242.906667pt;}
.y163{bottom:243.546667pt;}
.y40a{bottom:243.866667pt;}
.y1a3{bottom:245.146667pt;}
.yfc{bottom:246.586667pt;}
.y576{bottom:247.066667pt;}
.y39b{bottom:247.366736pt;}
.y1dc{bottom:248.567388pt;}
.y267{bottom:248.666667pt;}
.y516{bottom:250.266667pt;}
.y75{bottom:250.426667pt;}
.y568{bottom:250.440000pt;}
.y26d{bottom:251.226667pt;}
.y1d9{bottom:251.252900pt;}
.y424{bottom:252.826667pt;}
.y2cb{bottom:253.146667pt;}
.y318{bottom:254.426667pt;}
.y19{bottom:254.586667pt;}
.y1fd{bottom:254.705700pt;}
.y224{bottom:254.746667pt;}
.y304{bottom:254.906667pt;}
.y488{bottom:255.386667pt;}
.y4f7{bottom:255.546667pt;}
.y1a2{bottom:256.666667pt;}
.y54a{bottom:256.986667pt;}
.y463{bottom:257.626667pt;}
.y371{bottom:257.946667pt;}
.y1db{bottom:258.158501pt;}
.yce{bottom:258.426667pt;}
.y38d{bottom:259.866667pt;}
.y43e{bottom:260.666667pt;}
.y1d8{bottom:260.844012pt;}
.y12c{bottom:262.106667pt;}
.y55a{bottom:262.266667pt;}
.y1d1{bottom:262.906667pt;}
.y237{bottom:264.026667pt;}
.y141{bottom:264.506667pt;}
.y515{bottom:264.826667pt;}
.y567{bottom:265.000000pt;}
.y4a{bottom:265.306667pt;}
.y1fc{bottom:265.447746pt;}
.y162{bottom:266.426667pt;}
.y409{bottom:266.746667pt;}
.y1d7{bottom:269.284191pt;}
.yfb{bottom:269.466667pt;}
.y549{bottom:269.946667pt;}
.ya8{bottom:270.266667pt;}
.y266{bottom:271.546667pt;}
.y1da{bottom:271.586058pt;}
.y4f6{bottom:271.706667pt;}
.y1a1{bottom:272.186667pt;}
.y74{bottom:273.306667pt;}
.y4c1{bottom:274.426667pt;}
.y18{bottom:274.586667pt;}
.y423{bottom:275.706667pt;}
.y2ca{bottom:276.186667pt;}
.y1fb{bottom:276.189792pt;}
.y317{bottom:277.306667pt;}
.y241{bottom:277.466667pt;}
.y29e{bottom:277.723148pt;}
.y223{bottom:277.786667pt;}
.y487{bottom:278.266667pt;}
.y1d6{bottom:278.875304pt;}
.y514{bottom:279.386667pt;}
.y566{bottom:279.586667pt;}
.y1a0{bottom:279.706667pt;}
.y462{bottom:280.506667pt;}
.y370{bottom:280.986667pt;}
.y38c{bottom:282.746667pt;}
.y49{bottom:282.906667pt;}
.y548{bottom:283.226667pt;}
.y43d{bottom:283.546667pt;}
.y12b{bottom:284.986667pt;}
.y1d0{bottom:285.786667pt;}
.y236{bottom:286.906667pt;}
.y1fa{bottom:287.008567pt;}
.y140{bottom:287.386667pt;}
.y4f5{bottom:287.706667pt;}
.ycd{bottom:289.466667pt;}
.y408{bottom:289.786667pt;}
.y4c0{bottom:290.586667pt;}
.yfa{bottom:292.386667pt;}
.y513{bottom:293.946667pt;}
.y565{bottom:294.146667pt;}
.y265{bottom:294.466667pt;}
.y19f{bottom:295.226667pt;}
.y546{bottom:295.746667pt;}
.y73{bottom:296.226667pt;}
.y422{bottom:298.786667pt;}
.y2c9{bottom:299.106667pt;}
.y39a{bottom:299.527305pt;}
.y316{bottom:300.226667pt;}
.y48{bottom:300.546667pt;}
.y222{bottom:300.706667pt;}
.ya7{bottom:301.186667pt;}
.y17{bottom:302.146667pt;}
.y19e{bottom:302.746667pt;}
.y461{bottom:303.426667pt;}
.y36f{bottom:303.906667pt;}
.y38b{bottom:305.826667pt;}
.y19b{bottom:306.306667pt;}
.y43c{bottom:306.626667pt;}
.y12a{bottom:307.906667pt;}
.y53d{bottom:308.506667pt;}
.y512{bottom:308.666667pt;}
.y564{bottom:308.706667pt;}
.y1cf{bottom:308.866667pt;}
.y235{bottom:309.826667pt;}
.y13f{bottom:310.306667pt;}
.y161{bottom:312.386667pt;}
.y407{bottom:312.706667pt;}
.yf9{bottom:315.426667pt;}
.y264{bottom:317.506667pt;}
.y19d{bottom:318.266667pt;}
.y2c8{bottom:318.786667pt;}
.y2d3{bottom:318.952245pt;}
.y72{bottom:319.106667pt;}
.y4f4{bottom:320.066667pt;}
.ycc{bottom:320.706667pt;}
.y421{bottom:321.666667pt;}
.y16{bottom:321.986667pt;}
.y4bf{bottom:322.786667pt;}
.y53c{bottom:323.066667pt;}
.y315{bottom:323.266667pt;}
.y240{bottom:323.426667pt;}
.y221{bottom:323.586667pt;}
.y486{bottom:324.066667pt;}
.y2f2{bottom:325.150809pt;}
.y1f9{bottom:325.373018pt;}
.y534{bottom:325.666667pt;}
.y19c{bottom:326.106667pt;}
.y460{bottom:326.466667pt;}
.y36e{bottom:326.786667pt;}
.y47{bottom:328.066667pt;}
.y38a{bottom:328.706667pt;}
.y43b{bottom:329.506667pt;}
.y129{bottom:330.946667pt;}
.y1ce{bottom:331.746667pt;}
.ya6{bottom:332.226667pt;}
.y234{bottom:332.866667pt;}
.y13e{bottom:333.186667pt;}
.y160{bottom:335.266667pt;}
.y406{bottom:335.586667pt;}
.y4f3{bottom:336.066667pt;}
.y294{bottom:337.476913pt;}
.y53b{bottom:337.786667pt;}
.y563{bottom:337.826667pt;}
.yf8{bottom:338.306667pt;}
.y4be{bottom:338.946667pt;}
.y263{bottom:340.386667pt;}
.y15{bottom:341.986667pt;}
.y71{bottom:342.146667pt;}
.y354{bottom:342.626667pt;}
.y420{bottom:344.546667pt;}
.y46{bottom:345.666667pt;}
.y314{bottom:346.146667pt;}
.y215{bottom:346.306667pt;}
.y220{bottom:346.466667pt;}
.y303{bottom:346.626667pt;}
.y485{bottom:347.106667pt;}
.y45f{bottom:349.346667pt;}
.y36d{bottom:349.666667pt;}
.y389{bottom:351.586667pt;}
.ycb{bottom:351.906667pt;}
.y4f2{bottom:352.226667pt;}
.y53a{bottom:352.346667pt;}
.y43a{bottom:352.386667pt;}
.y128{bottom:353.826667pt;}
.y1cd{bottom:354.626667pt;}
.y4bd{bottom:354.946667pt;}
.y233{bottom:355.746667pt;}
.y13d{bottom:356.226667pt;}
.y15f{bottom:358.146667pt;}
.y405{bottom:358.626667pt;}
.ya5{bottom:358.946667pt;}
.yf7{bottom:361.186667pt;}
.y353{bottom:363.106667pt;}
.y45{bottom:363.266667pt;}
.y70{bottom:365.186667pt;}
.y589{bottom:365.666667pt;}
.y539{bottom:366.906667pt;}
.y562{bottom:366.946667pt;}
.y41f{bottom:367.426667pt;}
.y4f1{bottom:368.226667pt;}
.y313{bottom:369.026667pt;}
.y214{bottom:369.186667pt;}
.y14{bottom:369.346667pt;}
.y21f{bottom:369.506667pt;}
.y484{bottom:369.986667pt;}
.y4bc{bottom:371.106667pt;}
.y45e{bottom:372.226667pt;}
.y36c{bottom:372.706667pt;}
.y388{bottom:374.466667pt;}
.y439{bottom:375.266667pt;}
.y127{bottom:376.706667pt;}
.y1cc{bottom:377.506667pt;}
.y295{bottom:378.432233pt;}
.y232{bottom:378.626667pt;}
.y13c{bottom:379.106667pt;}
.y32f{bottom:379.266667pt;}
.y49c{bottom:380.226667pt;}
.y44{bottom:380.866667pt;}
.y15e{bottom:381.186667pt;}
.y538{bottom:381.466667pt;}
.y404{bottom:381.506667pt;}
.yca{bottom:383.106667pt;}
.yf6{bottom:384.066667pt;}
.y4f0{bottom:384.386667pt;}
.ya4{bottom:385.666667pt;}
.y262{bottom:386.146667pt;}
.y4bb{bottom:387.106667pt;}
.y6f{bottom:388.066667pt;}
.y13{bottom:389.346667pt;}
.y41e{bottom:390.466667pt;}
.y312{bottom:391.906667pt;}
.y213{bottom:392.226667pt;}
.y21e{bottom:392.386667pt;}
.y588{bottom:392.706667pt;}
.y483{bottom:392.866667pt;}
.y352{bottom:394.146667pt;}
.y45d{bottom:395.106667pt;}
.y36b{bottom:395.586667pt;}
.y537{bottom:396.026667pt;}
.y561{bottom:396.066667pt;}
.y32e{bottom:397.186667pt;}
.y387{bottom:397.506667pt;}
.y438{bottom:398.306667pt;}
.y43{bottom:398.466667pt;}
.y126{bottom:399.746667pt;}
.y1cb{bottom:400.546667pt;}
.y231{bottom:401.506667pt;}
.y13b{bottom:401.986667pt;}
.y49b{bottom:403.106667pt;}
.ya3{bottom:403.266667pt;}
.y15d{bottom:404.066667pt;}
.y403{bottom:404.386667pt;}
.yf5{bottom:407.106667pt;}
.y351{bottom:409.026667pt;}
.y261{bottom:409.186667pt;}
.y526{bottom:409.346667pt;}
.y536{bottom:410.586667pt;}
.y560{bottom:410.626667pt;}
.y6e{bottom:410.946667pt;}
.y12{bottom:411.746667pt;}
.y41d{bottom:413.346667pt;}
.yc9{bottom:414.306667pt;}
.y311{bottom:414.946667pt;}
.y212{bottom:415.106667pt;}
.y21d{bottom:415.266667pt;}
.y302{bottom:415.426667pt;}
.y482{bottom:415.746667pt;}
.y42{bottom:416.226667pt;}
.y4ef{bottom:416.546667pt;}
.y398{bottom:417.986667pt;}
.y45c{bottom:418.146667pt;}
.y36a{bottom:418.466667pt;}
.y4ba{bottom:419.426667pt;}
.y13a{bottom:419.906667pt;}
.y32d{bottom:420.066667pt;}
.y386{bottom:420.386667pt;}
.y437{bottom:421.186667pt;}
.y125{bottom:422.626667pt;}
.y1ca{bottom:423.426667pt;}
.y525{bottom:423.906667pt;}
.y230{bottom:424.546667pt;}
.y535{bottom:425.146667pt;}
.y55f{bottom:425.186667pt;}
.y350{bottom:425.986667pt;}
.y15c{bottom:426.946667pt;}
.y402{bottom:427.266667pt;}
.y2d4{bottom:427.514233pt;}
.yf4{bottom:429.986667pt;}
.y260{bottom:432.066667pt;}
.y4ee{bottom:432.706667pt;}
.y41{bottom:433.826667pt;}
.y11{bottom:433.986667pt;}
.ya2{bottom:434.146667pt;}
.y4b9{bottom:435.426667pt;}
.y41c{bottom:436.226667pt;}
.y524{bottom:436.546667pt;}
.y289{bottom:437.199915pt;}
.y310{bottom:437.826667pt;}
.y211{bottom:437.986667pt;}
.y21c{bottom:438.146667pt;}
.y481{bottom:438.786667pt;}
.y55e{bottom:439.746667pt;}
.y397{bottom:440.866667pt;}
.y45b{bottom:441.026667pt;}
.y369{bottom:441.506667pt;}
.y32c{bottom:443.106667pt;}
.y385{bottom:443.266667pt;}
.y22f{bottom:443.906667pt;}
.y436{bottom:444.066667pt;}
.yc8{bottom:445.506667pt;}
.y1c9{bottom:446.306667pt;}
.y4ed{bottom:448.706667pt;}
.y49a{bottom:448.866667pt;}
.y15b{bottom:449.826667pt;}
.y401{bottom:450.306667pt;}
.y40{bottom:451.426667pt;}
.y4b8{bottom:451.586667pt;}
.y511{bottom:451.746667pt;}
.yf3{bottom:452.866667pt;}
.y34f{bottom:453.026667pt;}
.y55d{bottom:454.306667pt;}
.y25f{bottom:454.946667pt;}
.y2e4{bottom:456.222227pt;}
.y10{bottom:456.226667pt;}
.y6d{bottom:456.866667pt;}
.y41b{bottom:459.266667pt;}
.y30f{bottom:460.706667pt;}
.y139{bottom:460.866667pt;}
.y21b{bottom:461.186667pt;}
.y480{bottom:461.666667pt;}
.y435{bottom:461.986667pt;}
.y45a{bottom:463.906667pt;}
.y368{bottom:464.386667pt;}
.y4ec{bottom:464.866667pt;}
.ya1{bottom:465.186667pt;}
.y32b{bottom:465.986667pt;}
.y384{bottom:466.146667pt;}
.y4b7{bottom:467.746667pt;}
.y396{bottom:468.226667pt;}
.y124{bottom:468.386667pt;}
.y55c{bottom:468.866667pt;}
.y3f{bottom:469.026667pt;}
.y1c8{bottom:469.186667pt;}
.y399{bottom:469.226667pt;}
.y3c8{bottom:469.894000pt;}
.y3ca{bottom:469.894010pt;}
.y3cb{bottom:469.894021pt;}
.y3cc{bottom:469.894031pt;}
.y499{bottom:471.906667pt;}
.y15a{bottom:472.866667pt;}
.y400{bottom:473.186667pt;}
.yf2{bottom:475.746667pt;}
.yc7{bottom:476.706667pt;}
.y25e{bottom:477.986667pt;}
.yf{bottom:478.466667pt;}
.y6c{bottom:479.746667pt;}
.y34e{bottom:480.226667pt;}
.y4eb{bottom:481.026667pt;}
.y41a{bottom:482.146667pt;}
.y55b{bottom:483.426667pt;}
.y30e{bottom:483.586667pt;}
.y4b6{bottom:483.746667pt;}
.y138{bottom:483.906667pt;}
.y3cd{bottom:483.930751pt;}
.y3d0{bottom:483.930761pt;}
.y3d2{bottom:483.930772pt;}
.y3d4{bottom:483.930782pt;}
.y21a{bottom:484.066667pt;}
.y301{bottom:484.226667pt;}
.y28a{bottom:484.268949pt;}
.y47f{bottom:484.546667pt;}
.y559{bottom:485.026667pt;}
.y3e{bottom:486.626667pt;}
.y459{bottom:486.786667pt;}
.y434{bottom:487.106667pt;}
.y367{bottom:487.266667pt;}
.y32a{bottom:488.866667pt;}
.y383{bottom:489.186667pt;}
.y123{bottom:491.426667pt;}
.y1c7{bottom:492.226667pt;}
.y498{bottom:494.626667pt;}
.y159{bottom:495.746667pt;}
.y3ff{bottom:496.066667pt;}
.y4ea{bottom:497.026667pt;}
.y558{bottom:498.146667pt;}
.ye{bottom:498.306667pt;}
.yf1{bottom:498.786667pt;}
.y4b5{bottom:499.906667pt;}
.y25d{bottom:500.866667pt;}
.y59c{bottom:501.826667pt;}
.y6b{bottom:502.626667pt;}
.y3d{bottom:504.386667pt;}
.y419{bottom:505.026667pt;}
.y34d{bottom:505.506667pt;}
.y30d{bottom:506.626667pt;}
.y137{bottom:506.786667pt;}
.y219{bottom:506.946667pt;}
.y300{bottom:507.106667pt;}
.y47e{bottom:507.426667pt;}
.ya0{bottom:507.906667pt;}
.y458{bottom:509.826667pt;}
.y366{bottom:510.146667pt;}
.y557{bottom:511.426667pt;}
.y1c6{bottom:511.586667pt;}
.y329{bottom:511.746667pt;}
.y3d8{bottom:512.004206pt;}
.y382{bottom:512.066667pt;}
.y1d5{bottom:512.237373pt;}
.y282{bottom:512.485207pt;}
.y4e9{bottom:513.186667pt;}
.y122{bottom:514.306667pt;}
.y4b4{bottom:515.906667pt;}
.y497{bottom:517.666667pt;}
.y158{bottom:518.626667pt;}
.y3fe{bottom:518.946667pt;}
.yf0{bottom:521.666667pt;}
.y3c{bottom:521.986667pt;}
.yd{bottom:523.266667pt;}
.yb4{bottom:523.426667pt;}
.y25c{bottom:523.586667pt;}
.y555{bottom:523.906667pt;}
.y6a{bottom:525.666667pt;}
.y2ff{bottom:526.786667pt;}
.y418{bottom:527.906667pt;}
.y4e8{bottom:529.346667pt;}
.y30c{bottom:529.506667pt;}
.y136{bottom:529.693333pt;}
.y218{bottom:530.013333pt;}
.y47d{bottom:530.493333pt;}
.y4b3{bottom:532.093333pt;}
.y34c{bottom:532.573333pt;}
.y457{bottom:532.733333pt;}
.y365{bottom:533.213333pt;}
.y328{bottom:534.813333pt;}
.y381{bottom:534.973333pt;}
.y121{bottom:537.213333pt;}
.y9f{bottom:538.813333pt;}
.yc6{bottom:539.133333pt;}
.y3b{bottom:539.613333pt;}
.yb3{bottom:539.933333pt;}
.y496{bottom:540.733333pt;}
.y430{bottom:540.893333pt;}
.y157{bottom:541.533333pt;}
.y586{bottom:541.853333pt;}
.y3fd{bottom:542.013333pt;}
.yef{bottom:544.573333pt;}
.y4e7{bottom:545.373333pt;}
.y3e7{bottom:545.438770pt;}
.y3e9{bottom:545.438777pt;}
.yc{bottom:546.173333pt;}
.y25b{bottom:546.813333pt;}
.y4b2{bottom:548.253333pt;}
.y69{bottom:548.413333pt;}
.y417{bottom:550.973333pt;}
.y8b{bottom:551.933333pt;}
.y30b{bottom:552.413333pt;}
.y135{bottom:552.573333pt;}
.y217{bottom:552.893333pt;}
.y47c{bottom:553.373333pt;}
.y554{bottom:553.693333pt;}
.y585{bottom:555.133333pt;}
.y456{bottom:555.613333pt;}
.y364{bottom:556.093333pt;}
.y3a{bottom:557.213333pt;}
.y327{bottom:557.693333pt;}
.y380{bottom:558.013333pt;}
.y3e0{bottom:559.471035pt;}
.y3e2{bottom:559.471042pt;}
.y3e5{bottom:559.471049pt;}
.y3e3{bottom:559.471063pt;}
.y3e4{bottom:559.471070pt;}
.y34b{bottom:559.613333pt;}
.y120{bottom:560.093333pt;}
.y4e6{bottom:561.533333pt;}
.y495{bottom:563.613333pt;}
.y42f{bottom:563.773333pt;}
.y4b1{bottom:564.253333pt;}
.y156{bottom:564.573333pt;}
.y27d{bottom:565.236360pt;}
.yee{bottom:567.453333pt;}
.y584{bottom:567.613333pt;}
.y8a{bottom:569.693333pt;}
.yc5{bottom:570.333333pt;}
.y68{bottom:571.453333pt;}
.y216{bottom:572.413333pt;}
.y3d6{bottom:572.844855pt;}
.y416{bottom:573.853333pt;}
.y39{bottom:574.813333pt;}
.y30a{bottom:575.293333pt;}
.y134{bottom:575.613333pt;}
.y47b{bottom:576.253333pt;}
.y34a{bottom:576.733333pt;}
.y4e5{bottom:577.533333pt;}
.y283{bottom:578.204072pt;}
.y455{bottom:578.493333pt;}
.y363{bottom:578.973333pt;}
.y4b0{bottom:580.413333pt;}
.y326{bottom:580.573333pt;}
.y37f{bottom:580.893333pt;}
.y3fc{bottom:582.013333pt;}
.yb2{bottom:582.653333pt;}
.y11f{bottom:583.133333pt;}
.y505{bottom:586.013333pt;}
.y42e{bottom:586.653333pt;}
.y89{bottom:587.293333pt;}
.y155{bottom:587.453333pt;}
.y2d5{bottom:589.535178pt;}
.y3ec{bottom:590.240623pt;}
.y3ed{bottom:590.240630pt;}
.yed{bottom:590.493333pt;}
.y38{bottom:592.573333pt;}
.y4e4{bottom:593.693333pt;}
.y67{bottom:594.493333pt;}
.y4af{bottom:596.573333pt;}
.y415{bottom:596.733333pt;}
.y582{bottom:597.373333pt;}
.y309{bottom:598.333333pt;}
.y10c{bottom:598.493333pt;}
.y47a{bottom:599.133333pt;}
.y9e{bottom:600.573333pt;}
.yc4{bottom:601.373333pt;}
.y454{bottom:601.533333pt;}
.y362{bottom:601.853333pt;}
.y325{bottom:603.453333pt;}
.y349{bottom:603.773333pt;}
.y3db{bottom:604.272888pt;}
.y3de{bottom:604.272895pt;}
.y3ea{bottom:604.272902pt;}
.y3df{bottom:604.272916pt;}
.y3c7{bottom:604.272923pt;}
.y3fb{bottom:604.893333pt;}
.yb{bottom:605.693333pt;}
.y11e{bottom:606.013333pt;}
.y494{bottom:609.533333pt;}
.y42d{bottom:609.693333pt;}
.y4e3{bottom:609.853333pt;}
.y37{bottom:610.173333pt;}
.y154{bottom:610.333333pt;}
.y4ae{bottom:612.573333pt;}
.yec{bottom:613.373333pt;}
.y274{bottom:614.137501pt;}
.y25a{bottom:615.613333pt;}
.y66{bottom:617.533333pt;}
.y414{bottom:619.613333pt;}
.y348{bottom:620.733333pt;}
.y88{bottom:621.053333pt;}
.y10b{bottom:621.373333pt;}
.y479{bottom:622.173333pt;}
.y453{bottom:624.413333pt;}
.y361{bottom:624.893333pt;}
.yb1{bottom:625.373333pt;}
.y4e2{bottom:625.853333pt;}
.y3d5{bottom:626.340136pt;}
.y324{bottom:626.493333pt;}
.y37e{bottom:626.653333pt;}
.y36{bottom:627.773333pt;}
.y4ad{bottom:628.733333pt;}
.y11d{bottom:628.893333pt;}
.y493{bottom:632.413333pt;}
.yc3{bottom:632.573333pt;}
.y153{bottom:633.373333pt;}
.y27e{bottom:634.839534pt;}
.yeb{bottom:636.253333pt;}
.y259{bottom:638.493333pt;}
.y65{bottom:640.413333pt;}
.ya{bottom:640.893333pt;}
.y4e1{bottom:642.013333pt;}
.y9d{bottom:643.293333pt;}
.y197{bottom:643.613333pt;}
.y87{bottom:643.933333pt;}
.y308{bottom:644.253333pt;}
.y10a{bottom:644.413333pt;}
.y4ac{bottom:644.733333pt;}
.y478{bottom:645.053333pt;}
.y35{bottom:645.373333pt;}
.y452{bottom:647.293333pt;}
.y347{bottom:647.773333pt;}
.y323{bottom:649.373333pt;}
.y37d{bottom:649.693333pt;}
.y3fa{bottom:650.813333pt;}
.y11c{bottom:651.773333pt;}
.y413{bottom:653.693333pt;}
.y42c{bottom:655.453333pt;}
.y152{bottom:656.253333pt;}
.y3ba{bottom:657.750372pt;}
.y3bd{bottom:657.750379pt;}
.y3bf{bottom:657.750386pt;}
.y3c1{bottom:657.750393pt;}
.y3c2{bottom:657.750400pt;}
.y3c6{bottom:657.750407pt;}
.y4e0{bottom:658.013333pt;}
.yea{bottom:659.133333pt;}
.y4ab{bottom:660.893333pt;}
.y258{bottom:661.373333pt;}
.y34{bottom:662.973333pt;}
.y64{bottom:663.293333pt;}
.yc2{bottom:663.773333pt;}
.y346{bottom:664.893333pt;}
.y19a{bottom:665.533333pt;}
.y86{bottom:667.133333pt;}
.y109{bottom:667.293333pt;}
.y477{bottom:667.933333pt;}
.yb0{bottom:668.093333pt;}
.y451{bottom:670.173333pt;}
.y360{bottom:670.653333pt;}
.y322{bottom:672.253333pt;}
.y37c{bottom:672.573333pt;}
.y3f9{bottom:673.693333pt;}
.y9c{bottom:674.173333pt;}
.y11b{bottom:674.813333pt;}
.y9{bottom:676.093333pt;}
.y412{bottom:676.893333pt;}
.y4aa{bottom:677.053333pt;}
.y42b{bottom:678.333333pt;}
.y151{bottom:679.133333pt;}
.y33{bottom:680.733333pt;}
.y345{bottom:681.853333pt;}
.ye9{bottom:682.173333pt;}
.y275{bottom:683.732101pt;}
.y257{bottom:684.413333pt;}
.y63{bottom:686.173333pt;}
.y191{bottom:687.453333pt;}
.y85{bottom:689.853333pt;}
.y26c{bottom:690.013333pt;}
.y108{bottom:690.173333pt;}
.y4df{bottom:690.333333pt;}
.y476{bottom:690.813333pt;}
.y4a9{bottom:693.053333pt;}
.y450{bottom:693.213333pt;}
.y35f{bottom:693.533333pt;}
.yc1{bottom:694.973333pt;}
.y321{bottom:695.453333pt;}
.y3b8{bottom:695.878662pt;}
.y3f8{bottom:696.573333pt;}
.y11a{bottom:697.693333pt;}
.y32{bottom:698.333333pt;}
.y344{bottom:698.813333pt;}
.y492{bottom:701.213333pt;}
.y42a{bottom:701.373333pt;}
.y411{bottom:701.693333pt;}
.y150{bottom:702.013333pt;}
.ye8{bottom:705.053333pt;}
.y9b{bottom:705.213333pt;}
.y4de{bottom:706.333333pt;}
.y256{bottom:707.293333pt;}
.y62{bottom:709.213333pt;}
.yaf{bottom:710.973333pt;}
.y8{bottom:711.453333pt;}
.y84{bottom:712.893333pt;}
.y107{bottom:713.053333pt;}
.y475{bottom:713.853333pt;}
.y31{bottom:715.933333pt;}
.y44f{bottom:716.093333pt;}
.y35e{bottom:716.573333pt;}
.y320{bottom:718.333333pt;}
.y3f7{bottom:719.613333pt;}
.y119{bottom:720.573333pt;}
.y195{bottom:721.373333pt;}
.y4dd{bottom:722.493333pt;}
.y9a{bottom:722.813333pt;}
.y429{bottom:724.253333pt;}
.y14f{bottom:725.053333pt;}
.y4a8{bottom:725.213333pt;}
.y343{bottom:725.853333pt;}
.yc0{bottom:726.173333pt;}
.y3a8{bottom:727.288899pt;}
.y3a9{bottom:727.288906pt;}
.y3aa{bottom:727.288913pt;}
.y3ad{bottom:727.288920pt;}
.y3af{bottom:727.288927pt;}
.y3b0{bottom:727.288934pt;}
.ye7{bottom:727.933333pt;}
.y255{bottom:730.173333pt;}
.y61{bottom:732.093333pt;}
.y30{bottom:733.533333pt;}
.y83{bottom:735.933333pt;}
.y106{bottom:736.093333pt;}
.y474{bottom:736.733333pt;}
.y4dc{bottom:738.653333pt;}
.y44e{bottom:738.973333pt;}
.y35d{bottom:739.453333pt;}
.y31f{bottom:741.213333pt;}
.y37b{bottom:741.373333pt;}
.y410{bottom:741.853333pt;}
.y3f6{bottom:742.493333pt;}
.y18a{bottom:743.293333pt;}
.y118{bottom:743.453333pt;}
.y552{bottom:743.773333pt;}
.y7{bottom:746.653333pt;}
.y491{bottom:746.973333pt;}
.y428{bottom:747.133333pt;}
.y14e{bottom:747.933333pt;}
.y3a6{bottom:750.023504pt;}
.ye6{bottom:750.813333pt;}
.y2f{bottom:751.133333pt;}
.y254{bottom:753.053333pt;}
.y99{bottom:753.693333pt;}
.y4db{bottom:754.653333pt;}
.y60{bottom:754.973333pt;}
.ybf{bottom:757.373333pt;}
.y4a7{bottom:757.533333pt;}
.y587{bottom:758.333333pt;}
.y82{bottom:758.653333pt;}
.y2c7{bottom:758.813333pt;}
.y105{bottom:758.973333pt;}
.y473{bottom:759.613333pt;}
.y44d{bottom:761.853333pt;}
.y35c{bottom:762.333333pt;}
.y531{bottom:763.293333pt;}
.y31e{bottom:764.093333pt;}
.y37a{bottom:764.253333pt;}
.y40f{bottom:764.733333pt;}
.y18f{bottom:765.373333pt;}
.y117{bottom:766.493333pt;}
.y2e{bottom:768.933333pt;}
.y342{bottom:770.053333pt;}
.y490{bottom:770.213333pt;}
.y14d{bottom:770.853333pt;}
.y510{bottom:772.933333pt;}
.y4a6{bottom:773.573333pt;}
.ye5{bottom:773.893333pt;}
.y22e{bottom:774.693333pt;}
.y253{bottom:776.133333pt;}
.y5f{bottom:777.893333pt;}
.y3b1{bottom:779.431671pt;}
.y3b2{bottom:779.431678pt;}
.y3b3{bottom:779.431685pt;}
.y3b6{bottom:779.431692pt;}
.y3b7{bottom:779.431699pt;}
.y3a0{bottom:779.431706pt;}
.y81{bottom:781.893333pt;}
.y472{bottom:782.693333pt;}
.y44c{bottom:784.933333pt;}
.y35b{bottom:785.253333pt;}
.y95{bottom:785.413333pt;}
.y2d{bottom:786.533333pt;}
.y4da{bottom:786.853333pt;}
.y187{bottom:787.173333pt;}
.y40e{bottom:787.653333pt;}
.y3f5{bottom:788.293333pt;}
.ybe{bottom:788.613333pt;}
.y116{bottom:789.413333pt;}
.y6{bottom:789.733333pt;}
.y427{bottom:793.093333pt;}
.y14c{bottom:793.733333pt;}
.y98{bottom:796.453333pt;}
.ye4{bottom:796.773333pt;}
.y341{bottom:797.093333pt;}
.y22d{bottom:797.733333pt;}
.y252{bottom:799.013333pt;}
.y5e{bottom:800.933333pt;}
.y3a2{bottom:802.166276pt;}
.y551{bottom:802.693333pt;}
.y4d9{bottom:803.013333pt;}
.y2c{bottom:804.133333pt;}
.y80{bottom:804.773333pt;}
.y471{bottom:805.573333pt;}
.y4a5{bottom:805.893333pt;}
.y530{bottom:807.653333pt;}
.y44b{bottom:807.813333pt;}
.y35a{bottom:808.293333pt;}
.y94{bottom:808.453333pt;}
.y189{bottom:809.253333pt;}
.y31d{bottom:810.053333pt;}
.y40d{bottom:810.693333pt;}
.ydc{bottom:811.013333pt;}
.y3f4{bottom:811.333333pt;}
.y115{bottom:812.293333pt;}
.y33f{bottom:814.053333pt;}
.y426{bottom:815.973333pt;}
.y581{bottom:816.613333pt;}
.y14b{bottom:816.773333pt;}
.y50f{bottom:817.253333pt;}
.y550{bottom:817.893333pt;}
.y4d8{bottom:819.173333pt;}
.y3a4{bottom:819.562030pt;}
.ye3{bottom:819.653333pt;}
.ybd{bottom:819.813333pt;}
.y22c{bottom:820.613333pt;}
.y2b{bottom:821.733333pt;}
.y251{bottom:821.893333pt;}
.y590{bottom:822.213333pt;}
.y52f{bottom:822.853333pt;}
.y5d{bottom:823.813333pt;}
.y5{bottom:824.933333pt;}
.yd5{bottom:827.173333pt;}
.y7f{bottom:827.653333pt;}
.y104{bottom:827.813333pt;}
.y470{bottom:828.453333pt;}
.y44a{bottom:830.693333pt;}
.y17e{bottom:831.173333pt;}
.y93{bottom:831.333333pt;}
.y50e{bottom:832.453333pt;}
.y31c{bottom:832.933333pt;}
.y54f{bottom:833.093333pt;}
.y3f3{bottom:834.213333pt;}
.y114{bottom:835.173333pt;}
.y58f{bottom:837.413333pt;}
.ydb{bottom:837.733333pt;}
.y4a4{bottom:838.053333pt;}
.y52e{bottom:838.213333pt;}
.y48f{bottom:838.853333pt;}
.y2a{bottom:839.333333pt;}
.y14a{bottom:839.653333pt;}
.y33e{bottom:841.253333pt;}
.ye2{bottom:842.693333pt;}
.y22b{bottom:843.493333pt;}
.yd4{bottom:844.773333pt;}
.y5c{bottom:846.693333pt;}
.y50d{bottom:847.653333pt;}
.y54e{bottom:848.453333pt;}
.y7e{bottom:850.533333pt;}
.y103{bottom:850.693333pt;}
.ybc{bottom:851.013333pt;}
.y46f{bottom:851.333333pt;}
.y58e{bottom:852.773333pt;}
.y52d{bottom:853.413333pt;}
.y449{bottom:853.733333pt;}
.y359{bottom:854.053333pt;}
.y92{bottom:854.373333pt;}
.yda{bottom:855.333333pt;}
.y31b{bottom:855.813333pt;}
.y29{bottom:857.093333pt;}
.y113{bottom:858.213333pt;}
.y4{bottom:860.293333pt;}
.y580{bottom:860.933333pt;}
.y48e{bottom:861.893333pt;}
.y149{bottom:862.533333pt;}
.y50c{bottom:863.013333pt;}
.y54d{bottom:863.653333pt;}
.y185{bottom:865.093333pt;}
.ye1{bottom:865.573333pt;}
.y1c5{bottom:866.373333pt;}
.y4d7{bottom:867.493333pt;}
.y250{bottom:867.813333pt;}
.y58d{bottom:867.973333pt;}
.y52c{bottom:868.613333pt;}
.y5b{bottom:869.573333pt;}
.y4a3{bottom:870.213333pt;}
.yd3{bottom:871.493333pt;}
.y7d{bottom:873.573333pt;}
.y46e{bottom:874.373333pt;}
.y28{bottom:874.693333pt;}
.y33d{bottom:875.173333pt;}
.y57f{bottom:876.133333pt;}
.y448{bottom:876.613333pt;}
.y358{bottom:876.933333pt;}
.y91{bottom:877.253333pt;}
.y50b{bottom:878.213333pt;}
.y54c{bottom:878.853333pt;}
.y3f2{bottom:879.973333pt;}
.y112{bottom:881.093333pt;}
.y97{bottom:882.053333pt;}
.ybb{bottom:882.213333pt;}
.yd9{bottom:882.373333pt;}
.y58c{bottom:883.173333pt;}
.y4d6{bottom:883.493333pt;}
.y52b{bottom:883.813333pt;}
.y48d{bottom:884.773333pt;}
.y148{bottom:885.413333pt;}
.y4a2{bottom:886.373333pt;}
.y174{bottom:886.853333pt;}
.ye0{bottom:888.453333pt;}
.y1c4{bottom:889.413333pt;}
.y24f{bottom:890.533333pt;}
.y57e{bottom:891.333333pt;}
.y33c{bottom:892.133333pt;}
.y27{bottom:892.293333pt;}
.y5a{bottom:892.613333pt;}
.y50a{bottom:893.413333pt;}
.y3{bottom:895.493333pt;}
.y7c{bottom:896.453333pt;}
.y46d{bottom:897.253333pt;}
.yd2{bottom:898.373333pt;}
.y447{bottom:899.493333pt;}
.y4d5{bottom:899.653333pt;}
.y90{bottom:899.973333pt;}
.y4a1{bottom:902.373333pt;}
.y3f1{bottom:903.013333pt;}
.y111{bottom:903.973333pt;}
.ydf{bottom:906.533333pt;}
.y57d{bottom:906.693333pt;}
.y48c{bottom:907.653333pt;}
.y147{bottom:908.453333pt;}
.y54b{bottom:908.613333pt;}
.y24e{bottom:908.773333pt;}
.y338{bottom:909.253333pt;}
.y26{bottom:909.893333pt;}
.y1c3{bottom:912.293333pt;}
.yba{bottom:913.253333pt;}
.y529{bottom:913.573333pt;}
.y59{bottom:915.493333pt;}
.y4d4{bottom:915.653333pt;}
.y357{bottom:917.573333pt;}
.y17b{bottom:917.893333pt;}
.y4a0{bottom:918.533333pt;}
.y2c6{bottom:919.333333pt;}
.y7b{bottom:919.493333pt;}
.y46c{bottom:920.133333pt;}
.y57c{bottom:921.893333pt;}
.y446{bottom:922.373333pt;}
.y8f{bottom:923.013333pt;}
.y508{bottom:923.173333pt;}
.y96{bottom:924.773333pt;}
.yd1{bottom:925.093333pt;}
.y3f0{bottom:925.893333pt;}
.y146{bottom:926.373333pt;}
.yd8{bottom:926.693333pt;}
.y110{bottom:927.013333pt;}
.y25{bottom:927.493333pt;}
.y58a{bottom:928.133333pt;}
.y48b{bottom:930.693333pt;}
.y2{bottom:930.853333pt;}
.yde{bottom:931.653333pt;}
.y4d3{bottom:931.813333pt;}
.y24d{bottom:933.893333pt;}
.y49f{bottom:934.533333pt;}
.y1c2{bottom:935.173333pt;}
.y337{bottom:936.293333pt;}
.y57b{bottom:937.093333pt;}
.y58{bottom:938.373333pt;}
.y16b{bottom:939.653333pt;}
.y8e{bottom:941.733333pt;}
.y2c5{bottom:942.213333pt;}
.y7a{bottom:942.373333pt;}
.y46b{bottom:943.013333pt;}
.yb9{bottom:944.453333pt;}
.y24{bottom:945.253333pt;}
.y445{bottom:945.413333pt;}
.y4d2{bottom:947.973333pt;}
.y10f{bottom:949.893333pt;}
.y49e{bottom:950.693333pt;}
.ydd{bottom:951.493333pt;}
.yd0{bottom:952.133333pt;}
.y57a{bottom:952.293333pt;}
.y335{bottom:953.253333pt;}
.yd7{bottom:953.573333pt;}
.y24c{bottom:954.533333pt;}
.y1c1{bottom:958.053333pt;}
.y3ef{bottom:960.933333pt;}
.y57{bottom:961.253333pt;}
.y171{bottom:961.733333pt;}
.y23{bottom:962.853333pt;}
.y4d1{bottom:963.973333pt;}
.y79{bottom:965.253333pt;}
.y1{bottom:966.053333pt;}
.yae{bottom:967.493333pt;}
.y10e{bottom:967.813333pt;}
.y49d{bottom:968.133333pt;}
.y444{bottom:968.293333pt;}
.y8d{bottom:968.453333pt;}
.yb8{bottom:970.053333pt;}
.y332{bottom:970.213333pt;}
.yd6{bottom:972.293333pt;}
.y528{bottom:972.613333pt;}
.y1c0{bottom:976.133333pt;}
.y56{bottom:979.973333pt;}
.y4d0{bottom:980.133333pt;}
.y22{bottom:980.453333pt;}
.y24b{bottom:981.253333pt;}
.y166{bottom:983.013333pt;}
.y46a{bottom:983.973333pt;}
.y507{bottom:985.573333pt;}
.y3ee{bottom:986.213333pt;}
.y2c4{bottom:987.973333pt;}
.y78{bottom:988.133333pt;}
.yb5{bottom:988.773333pt;}
.y356{bottom:989.253333pt;}
.y527{bottom:990.533333pt;}
.y443{bottom:991.173333pt;}
.y8c{bottom:991.493333pt;}
.y10d{bottom:993.093333pt;}
.y4cf{bottom:996.133333pt;}
.y330{bottom:997.413333pt;}
.yb7{bottom:999.013333pt;}
.y168{bottom:999.173333pt;}
.y1bf{bottom:1001.253333pt;}
.y506{bottom:1001.733333pt;}
.y55{bottom:1006.720000pt;}
.y442{bottom:1009.120000pt;}
.y355{bottom:1009.280000pt;}
.yad{bottom:1010.400000pt;}
.y77{bottom:1011.040000pt;}
.y102{bottom:1011.200000pt;}
.y4ce{bottom:1012.320000pt;}
.y165{bottom:1018.560000pt;}
.y52{bottom:1055.840000pt;}
.y54{bottom:1074.240000pt;}
.h54{height:10.699987pt;}
.h4c{height:12.160000pt;}
.h61{height:12.702021pt;}
.h60{height:12.702022pt;}
.h62{height:12.702029pt;}
.h51{height:12.702055pt;}
.h5d{height:12.724301pt;}
.h5a{height:13.369377pt;}
.h59{height:13.369378pt;}
.h52{height:14.036768pt;}
.h47{height:14.240000pt;}
.h49{height:14.272000pt;}
.h45{height:14.400000pt;}
.h65{height:14.560000pt;}
.h15{height:16.160000pt;}
.h14{height:17.952000pt;}
.hd{height:20.320000pt;}
.h7{height:20.480000pt;}
.h1b{height:21.120000pt;}
.h20{height:21.152000pt;}
.h18{height:21.280000pt;}
.h58{height:21.399898pt;}
.h5f{height:21.399899pt;}
.h63{height:21.399906pt;}
.h19{height:21.440000pt;}
.h4f{height:22.067254pt;}
.h55{height:22.067255pt;}
.h10{height:22.417500pt;}
.h4b{height:22.560000pt;}
.h25{height:23.047500pt;}
.h48{height:24.320000pt;}
.h4a{height:24.352000pt;}
.h43{height:24.480000pt;}
.h2b{height:25.940962pt;}
.h2d{height:26.600351pt;}
.h2c{height:26.866355pt;}
.h41{height:26.912000pt;}
.h5c{height:27.406108pt;}
.h5b{height:27.406109pt;}
.h5e{height:28.763097pt;}
.h67{height:29.120000pt;}
.h70{height:29.152000pt;}
.h6c{height:29.280000pt;}
.h2e{height:29.832107pt;}
.h1c{height:30.240000pt;}
.h29{height:30.590404pt;}
.h2f{height:30.856407pt;}
.h1e{height:33.120000pt;}
.h22{height:33.280000pt;}
.h3d{height:33.601848pt;}
.h26{height:33.626250pt;}
.h11{height:34.112000pt;}
.h3c{height:34.587227pt;}
.h3a{height:34.591593pt;}
.h50{height:34.604640pt;}
.h2a{height:35.194138pt;}
.h31{height:37.099321pt;}
.h57{height:37.460939pt;}
.h56{height:37.460941pt;}
.h17{height:37.896250pt;}
.h12{height:38.961250pt;}
.h4e{height:39.914815pt;}
.h46{height:40.103437pt;}
.h13{height:41.242500pt;}
.h44{height:41.284687pt;}
.h8{height:42.166250pt;}
.h53{height:42.569902pt;}
.h23{height:43.200000pt;}
.h1f{height:43.232000pt;}
.h64{height:43.351250pt;}
.h16{height:43.360000pt;}
.h66{height:43.680000pt;}
.h6a{height:43.712000pt;}
.h74{height:43.840000pt;}
.hc{height:46.970000pt;}
.h32{height:48.575306pt;}
.h5{height:51.240000pt;}
.h1a{height:52.160000pt;}
.h6{height:52.680000pt;}
.h42{height:54.390938pt;}
.h1d{height:55.040000pt;}
.h21{height:55.200000pt;}
.h33{height:56.313913pt;}
.h4{height:57.645000pt;}
.h6d{height:58.240000pt;}
.he{height:58.242188pt;}
.h6e{height:58.272000pt;}
.h69{height:58.400000pt;}
.hf{height:59.265000pt;}
.h27{height:62.752000pt;}
.hb{height:63.656250pt;}
.ha{height:66.718750pt;}
.h9{height:68.593750pt;}
.h38{height:82.037817pt;}
.h34{height:93.609287pt;}
.h36{height:100.391823pt;}
.h2{height:102.480000pt;}
.h37{height:104.224685pt;}
.h3{height:105.360000pt;}
.h35{height:105.510880pt;}
.h3f{height:128.241711pt;}
.h3e{height:130.488937pt;}
.h3b{height:151.313233pt;}
.h6f{height:189.280000pt;}
.h72{height:218.586667pt;}
.h75{height:247.746667pt;}
.h68{height:320.546667pt;}
.h73{height:334.906667pt;}
.h24{height:336.666667pt;}
.h28{height:345.280053pt;}
.h4d{height:364.376553pt;}
.h40{height:415.699401pt;}
.h39{height:435.961891pt;}
.h6b{height:436.986667pt;}
.h71{height:510.013333pt;}
.h30{height:641.811406pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:17.280000pt;}
.w12{width:18.560000pt;}
.w26{width:21.920000pt;}
.wb{width:25.280000pt;}
.w13{width:36.800000pt;}
.w21{width:37.112002pt;}
.we{width:37.120000pt;}
.w16{width:55.200000pt;}
.w11{width:55.520000pt;}
.w30{width:58.189434pt;}
.w1b{width:61.119659pt;}
.w1d{width:66.584425pt;}
.w1c{width:71.406277pt;}
.w32{width:71.568106pt;}
.w33{width:71.590367pt;}
.w38{width:72.960000pt;}
.w39{width:73.600000pt;}
.w15{width:73.760000pt;}
.w10{width:74.080000pt;}
.w2d{width:75.232000pt;}
.w27{width:75.552000pt;}
.w1e{width:80.749956pt;}
.wc{width:81.760000pt;}
.w29{width:84.320000pt;}
.w2a{width:84.352000pt;}
.w36{width:94.314076pt;}
.w35{width:107.670487pt;}
.w34{width:107.697200pt;}
.wd{width:110.560000pt;}
.w6{width:117.280000pt;}
.w3{width:129.760000pt;}
.w1f{width:132.225909pt;}
.w28{width:135.386667pt;}
.w2e{width:135.706667pt;}
.w2b{width:141.626667pt;}
.w37{width:143.804033pt;}
.w3d{width:150.106667pt;}
.w3b{width:150.426667pt;}
.wa{width:158.266667pt;}
.w3e{width:159.706667pt;}
.w22{width:166.985285pt;}
.w2c{width:169.306667pt;}
.w23{width:170.378168pt;}
.w24{width:181.612881pt;}
.w7{width:199.546667pt;}
.w3a{width:202.266667pt;}
.w9{width:202.746667pt;}
.w5{width:257.626667pt;}
.w19{width:274.106667pt;}
.w8{width:288.706667pt;}
.w31{width:419.391329pt;}
.w2f{width:420.059150pt;}
.w1a{width:431.073608pt;}
.w3f{width:452.253333pt;}
.w14{width:453.533333pt;}
.wf{width:454.173333pt;}
.w3c{width:461.693333pt;}
.w17{width:565.373333pt;}
.w20{width:613.969579pt;}
.w18{width:614.141098pt;}
.w25{width:740.960000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x11{left:1.280000pt;}
.x54{left:2.254484pt;}
.x13{left:4.000000pt;}
.x57{left:5.786223pt;}
.x23{left:7.200000pt;}
.x58{left:8.375022pt;}
.x26{left:9.440000pt;}
.x59{left:10.629506pt;}
.x21{left:12.000000pt;}
.x29{left:13.280000pt;}
.x4e{left:15.108471pt;}
.x24{left:16.000000pt;}
.x60{left:17.701556pt;}
.x52{left:18.970239pt;}
.x5f{left:20.273211pt;}
.x50{left:21.563324pt;}
.x5b{left:22.844865pt;}
.x28{left:24.160000pt;}
.x53{left:25.095063pt;}
.x5e{left:26.376604pt;}
.x5d{left:27.345261pt;}
.x5a{left:28.305345pt;}
.x56{left:30.559829pt;}
.x35{left:33.122565pt;}
.x36{left:34.197312pt;}
.x3a{left:36.423573pt;}
.x66{left:37.760000pt;}
.x3b{left:38.726602pt;}
.x5c{left:42.149419pt;}
.x37{left:44.253872pt;}
.x2d{left:45.175084pt;}
.x2c{left:47.708416pt;}
.x47{left:48.706395pt;}
.x34{left:51.777100pt;}
.x39{left:52.698312pt;}
.x3c{left:54.080130pt;}
.x46{left:60.221541pt;}
.x33{left:63.061943pt;}
.x38{left:65.134669pt;}
.x6f{left:85.614599pt;}
.x10{left:93.152000pt;}
.x1{left:94.431988pt;}
.x20{left:95.872000pt;}
.x4c{left:98.621457pt;}
.x14{left:101.951988pt;}
.x19{left:104.351988pt;}
.x61{left:106.827142pt;}
.x1f{left:113.311988pt;}
.x4d{left:116.001556pt;}
.x1d{left:118.431988pt;}
.x48{left:119.551988pt;}
.x15{left:122.911988pt;}
.x73{left:131.330248pt;}
.x1a{left:132.351988pt;}
.x27{left:133.312000pt;}
.x68{left:135.866667pt;}
.x62{left:137.196025pt;}
.x1e{left:142.426655pt;}
.x44{left:149.579070pt;}
.x1b{left:151.226655pt;}
.x16{left:162.426655pt;}
.x3f{left:167.312395pt;}
.x3e{left:169.845727pt;}
.x4f{left:177.442671pt;}
.x2e{left:182.589154pt;}
.x2f{left:186.581071pt;}
.x17{left:189.306655pt;}
.x40{left:190.880059pt;}
.x3d{left:193.336624pt;}
.x49{left:200.506655pt;}
.x75{left:203.566175pt;}
.x78{left:220.186655pt;}
.x70{left:239.673008pt;}
.x7{left:243.266655pt;}
.x79{left:246.146667pt;}
.xb{left:248.546655pt;}
.x9{left:254.786655pt;}
.x2a{left:264.866655pt;}
.x4{left:267.746655pt;}
.x2{left:269.506655pt;}
.x69{left:272.066667pt;}
.xa{left:279.906655pt;}
.x30{left:298.661822pt;}
.x31{left:302.116366pt;}
.x3{left:304.066655pt;}
.x77{left:309.346655pt;}
.x71{left:311.913387pt;}
.x32{left:312.940602pt;}
.x67{left:316.226667pt;}
.x43{left:317.239590pt;}
.x5{left:318.466655pt;}
.x41{left:325.831168pt;}
.xf{left:327.586655pt;}
.x42{left:329.061806pt;}
.x55{left:330.246104pt;}
.xe{left:332.866655pt;}
.xc{left:337.666655pt;}
.x8{left:339.426655pt;}
.x74{left:348.038029pt;}
.x6a{left:357.026667pt;}
.xd{left:368.546655pt;}
.x72{left:384.144862pt;}
.x1c{left:397.053321pt;}
.x6{left:415.293321pt;}
.x76{left:420.278408pt;}
.x6b{left:442.173333pt;}
.x45{left:450.802484pt;}
.x6e{left:456.403049pt;}
.x51{left:462.789184pt;}
.x63{left:475.682950pt;}
.x4b{left:506.493322pt;}
.x6d{left:515.133322pt;}
.x4a{left:576.453322pt;}
.x6c{left:584.613333pt;}
.x22{left:587.173333pt;}
.x25{left:642.693333pt;}
.x64{left:671.331733pt;}
.x18{left:679.520000pt;}
.x12{left:687.520000pt;}
.x2b{left:708.959988pt;}
.x65{left:735.359988pt;}
}




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