
    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_eb6423ffb73e2e3ee5553965.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_2af5404c591606ad1dfe63b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.152832;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_14d04a805032e4261c755ab5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_1e515cd9db14afdc5f4a88ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_fdadaf043de593c7e5784fc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_65f03d1ec36c58f9b8ff9571.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_d8ae3b68f27c7804782dc44d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_ce6e357a70ba676be18fe88d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.022949;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_c4053620586609135c357e0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.276000;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_39fb24e8d67d93ff8c01c6a7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_04905384d404f259df600f9e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.439000;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_ab9d18876093423971b1e080.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9000b330b2b092db75569ed6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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;}
.m7{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m8{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v9{vertical-align:-38.772942px;}
.v5{vertical-align:-17.352000px;}
.v6{vertical-align:-7.143882px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.060518px;}
.v1{vertical-align:4.080539px;}
.vb{vertical-align:7.146000px;}
.vf{vertical-align:9.866068px;}
.v3{vertical-align:12.246856px;}
.v4{vertical-align:17.334928px;}
.va{vertical-align:43.876774px;}
.vc{vertical-align:45.924000px;}
.vd{vertical-align:51.027831px;}
.v7{vertical-align:83.676486px;}
.v8{vertical-align:89.800774px;}
.ve{vertical-align:134.360009px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.025567px;}
.ls1f{letter-spacing:0.031732px;}
.ls19{letter-spacing:0.043895px;}
.ls1d{letter-spacing:0.046597px;}
.ls1e{letter-spacing:0.167372px;}
.ls7{letter-spacing:0.798604px;}
.ls36{letter-spacing:0.964036px;}
.ls37{letter-spacing:1.117058px;}
.ls8{letter-spacing:1.119002px;}
.ls6{letter-spacing:1.138130px;}
.ls34{letter-spacing:1.142912px;}
.ls21{letter-spacing:1.185951px;}
.ls22{letter-spacing:1.190733px;}
.lsf{letter-spacing:2.655600px;}
.ls16{letter-spacing:2.934966px;}
.ls9{letter-spacing:2.991600px;}
.ls38{letter-spacing:3.106338px;}
.ls10{letter-spacing:9.435004px;}
.lsb{letter-spacing:9.779313px;}
.ls18{letter-spacing:9.812787px;}
.ls2d{letter-spacing:10.057981px;}
.ls11{letter-spacing:10.118839px;}
.ls35{letter-spacing:10.123621px;}
.ls14{letter-spacing:10.458365px;}
.ls4{letter-spacing:10.463147px;}
.ls2a{letter-spacing:10.797891px;}
.ls29{letter-spacing:10.802674px;}
.ls1b{letter-spacing:10.850069px;}
.lsd{letter-spacing:11.137418px;}
.lsc{letter-spacing:11.142200px;}
.ls12{letter-spacing:12.155997px;}
.lsa{letter-spacing:12.500305px;}
.ls2e{letter-spacing:13.932193px;}
.ls32{letter-spacing:14.142287px;}
.ls31{letter-spacing:14.482287px;}
.ls20{letter-spacing:15.852718px;}
.ls1a{letter-spacing:15.861655px;}
.ls2{letter-spacing:16.421141px;}
.ls1{letter-spacing:16.763316px;}
.ls17{letter-spacing:17.646763px;}
.ls2f{letter-spacing:17.882289px;}
.ls28{letter-spacing:18.281815px;}
.ls30{letter-spacing:18.562289px;}
.ls3{letter-spacing:18.586487px;}
.ls2c{letter-spacing:18.927227px;}
.ls33{letter-spacing:18.965650px;}
.ls0{letter-spacing:19.038201px;}
.ls2b{letter-spacing:20.663281px;}
.lse{letter-spacing:24.780635px;}
.ls13{letter-spacing:24.785417px;}
.ls23{letter-spacing:29.165784px;}
.ls24{letter-spacing:29.510092px;}
.ls1c{letter-spacing:32.604085px;}
.ls25{letter-spacing:35.325077px;}
.ls26{letter-spacing:35.329859px;}
.ls27{letter-spacing:695.075757px;}
.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;}
}
.ws6{word-spacing:-47.820600px;}
.wsb{word-spacing:-37.826095px;}
.ws8{word-spacing:-34.641243px;}
.wsd{word-spacing:-33.472800px;}
.wsa{word-spacing:-31.083000px;}
.ws15{word-spacing:-24.674733px;}
.ws1{word-spacing:-24.230394px;}
.ws2{word-spacing:-14.011436px;}
.ws13{word-spacing:-12.610134px;}
.ws5{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws14{word-spacing:-11.208832px;}
.ws7{word-spacing:-10.759500px;}
.ws4{word-spacing:-10.061328px;}
.wsc{word-spacing:-9.807530px;}
.ws16{word-spacing:-9.563850px;}
.ws9{word-spacing:-9.107319px;}
.wsf{word-spacing:-3.400045px;}
.ws11{word-spacing:-3.390481px;}
.ws10{word-spacing:-3.213544px;}
.ws12{word-spacing:-3.093993px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:7.130427px;}
._3{margin-left:-17.343592px;}
._26{margin-left:-5.446062px;}
._e{margin-left:-4.337407px;}
._9{margin-left:-3.120255px;}
._8{margin-left:-1.919495px;}
._2{width:1.905610px;}
._1{width:3.252089px;}
._4{width:4.411395px;}
._5{width:5.420068px;}
._b{width:6.886166px;}
._c{width:7.960136px;}
._7{width:9.089626px;}
._6{width:10.204310px;}
._14{width:11.229347px;}
._d{width:12.595946px;}
._12{width:15.388669px;}
._0{width:16.784820px;}
._f{width:18.038983px;}
._23{width:19.235068px;}
._11{width:20.318240px;}
._13{width:22.274835px;}
._22{width:24.297647px;}
._24{width:25.517072px;}
._10{width:26.889523px;}
._a{width:30.193927px;}
._80{width:32.623213px;}
._3c{width:38.354864px;}
._51{width:39.735884px;}
._25{width:42.187333px;}
._3e{width:45.898829px;}
._41{width:57.796258px;}
._4d{width:59.666947px;}
._46{width:61.311930px;}
._3d{width:67.272121px;}
._49{width:69.433551px;}
._42{width:71.109138px;}
._48{width:79.923182px;}
._67{width:104.808319px;}
._79{width:111.889394px;}
._65{width:112.891685px;}
._7d{width:115.294125px;}
._7e{width:120.569544px;}
._68{width:134.414173px;}
._7b{width:138.878579px;}
._3f{width:141.724780px;}
._4e{width:148.935923px;}
._7c{width:151.212120px;}
._72{width:154.964974px;}
._6e{width:158.369705px;}
._45{width:160.290126px;}
._4c{width:162.049874px;}
._77{width:163.694365px;}
._55{width:165.749172px;}
._69{width:172.726957px;}
._40{width:175.561682px;}
._76{width:178.262513px;}
._19{width:179.540243px;}
._50{width:182.179866px;}
._56{width:184.291073px;}
._5e{width:189.000312px;}
._59{width:190.190547px;}
._71{width:193.985482px;}
._53{width:199.069625px;}
._1c{width:200.722258px;}
._74{width:203.491949px;}
._6b{width:204.696994px;}
._7a{width:208.270049px;}
._7f{width:209.455966px;}
._52{width:212.906603px;}
._47{width:214.666352px;}
._54{width:216.100929px;}
._5b{width:219.727541px;}
._1f{width:221.085608px;}
._2c{width:225.940218px;}
._2b{width:234.792518px;}
._31{width:239.459676px;}
._75{width:241.440815px;}
._34{width:242.979173px;}
._6f{width:251.345629px;}
._70{width:252.673091px;}
._33{width:255.106135px;}
._43{width:256.215541px;}
._4a{width:257.975290px;}
._35{width:260.171150px;}
._6d{width:261.981122px;}
._6a{width:263.013526px;}
._6c{width:264.245350px;}
._4b{width:267.332561px;}
._44{width:269.092309px;}
._78{width:272.883419px;}
._73{width:275.114200px;}
._2e{width:276.643925px;}
._1b{width:283.227679px;}
._5d{width:284.379167px;}
._62{width:286.036608px;}
._57{width:288.790015px;}
._20{width:290.098349px;}
._4f{width:292.045549px;}
._28{width:296.383712px;}
._5c{width:300.614759px;}
._5f{width:301.804993px;}
._2a{width:303.189347px;}
._1e{width:307.252071px;}
._1a{width:316.724108px;}
._60{width:320.124521px;}
._3a{width:321.188513px;}
._21{width:323.342292px;}
._29{width:331.421832px;}
._2f{width:336.345302px;}
._1d{width:340.572524px;}
._30{width:356.314621px;}
._3b{width:372.167659px;}
._38{width:374.922048px;}
._37{width:376.184476px;}
._2d{width:379.527998px;}
._27{width:381.578487px;}
._39{width:419.833887px;}
._36{width:436.895796px;}
._32{width:466.658497px;}
._61{width:467.798508px;}
._16{width:499.420421px;}
._5a{width:501.578026px;}
._17{width:506.069210px;}
._15{width:515.097484px;}
._18{width:552.059852px;}
._63{width:554.179201px;}
._58{width:595.877587px;}
._64{width:599.282318px;}
._66{width:985.447627px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs5{font-size:26.761800px;}
.fs10{font-size:30.108600px;}
.fsf{font-size:31.083000px;}
.fs8{font-size:32.280600px;}
.fsd{font-size:33.472800px;}
.fsa{font-size:35.867400px;}
.fs6{font-size:38.255400px;}
.fsc{font-size:38.256000px;}
.fs7{font-size:41.842200px;}
.fs4{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs3{font-size:44.327400px;}
.fs9{font-size:47.820600px;}
.fse{font-size:57.385200px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fsb{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y4f{bottom:47.430000px;}
.ye0{bottom:78.406718px;}
.y2d8{bottom:78.408373px;}
.y298{bottom:78.408924px;}
.y28e{bottom:78.409296px;}
.y23f{bottom:78.412286px;}
.y2cc{bottom:78.831800px;}
.y3fb{bottom:79.342986px;}
.y95{bottom:79.349535px;}
.y3d7{bottom:79.349595px;}
.ye5{bottom:80.448486px;}
.y15c{bottom:83.594168px;}
.y2f9{bottom:84.955258px;}
.y37b{bottom:85.296109px;}
.y171{bottom:85.296805px;}
.y103{bottom:86.996417px;}
.y475{bottom:87.683230px;}
.y1bc{bottom:88.952636px;}
.y4{bottom:91.200000px;}
.yde{bottom:92.097600px;}
.y3a5{bottom:92.525576px;}
.y380{bottom:92.609136px;}
.y2a9{bottom:93.629068px;}
.ydf{bottom:94.138500px;}
.ydd{bottom:94.138850px;}
.y2d7{bottom:94.140155px;}
.y28d{bottom:94.141078px;}
.y23e{bottom:94.144068px;}
.y2ca{bottom:94.478700px;}
.y3fa{bottom:95.074768px;}
.y3d6{bottom:95.081377px;}
.y94{bottom:95.082512px;}
.ye4{bottom:96.180268px;}
.y15a{bottom:97.369950px;}
.y37a{bottom:98.221652px;}
.y170{bottom:98.222348px;}
.y15b{bottom:99.325950px;}
.y159{bottom:99.329614px;}
.y474{bottom:99.674385px;}
.y2cb{bottom:99.836100px;}
.y2f8{bottom:100.602158px;}
.y102{bottom:102.643318px;}
.y1bb{bottom:104.684417px;}
.y3{bottom:105.630000px;}
.y3a4{bottom:108.257358px;}
.y37f{bottom:108.340918px;}
.y2a8{bottom:109.360850px;}
.ydc{bottom:109.785750px;}
.yda{bottom:109.786536px;}
.y28c{bottom:109.787978px;}
.y2d6{bottom:109.788250px;}
.y297{bottom:109.788801px;}
.y23d{bottom:109.790968px;}
.y2c8{bottom:110.213576px;}
.y3f9{bottom:110.721668px;}
.y1ff{bottom:110.722536px;}
.y42b{bottom:110.726554px;}
.y93{bottom:110.729413px;}
.y3d5{bottom:110.729473px;}
.y379{bottom:111.062077px;}
.y16f{bottom:111.063730px;}
.y473{bottom:111.579465px;}
.ye3{bottom:111.827168px;}
.y158{bottom:114.976514px;}
.ydb{bottom:115.143300px;}
.y2c9{bottom:115.483350px;}
.y2fc{bottom:116.334200px;}
.y2f7{bottom:116.335136px;}
.y101{bottom:118.375100px;}
.y4d{bottom:119.905636px;}
.y1ba{bottom:120.331318px;}
.y472{bottom:123.569664px;}
.y378{bottom:123.903459px;}
.y16e{bottom:123.904155px;}
.y3a3{bottom:123.904258px;}
.y37e{bottom:124.072700px;}
.y2a7{bottom:125.007750px;}
.y2a5{bottom:125.008268px;}
.yd9{bottom:125.518318px;}
.y2d5{bottom:125.520032px;}
.y28b{bottom:125.520956px;}
.y23c{bottom:125.522750px;}
.y2c7{bottom:125.860476px;}
.y3f8{bottom:126.453450px;}
.y1fe{bottom:126.454318px;}
.y3f6{bottom:126.455516px;}
.y42a{bottom:126.458336px;}
.y92{bottom:126.461195px;}
.y3d4{bottom:126.461254px;}
.ye2{bottom:127.558950px;}
.y2a6{bottom:130.365300px;}
.y157{bottom:130.708296px;}
.y3f7{bottom:131.725950px;}
.y2fb{bottom:131.981100px;}
.y2f6{bottom:131.982036px;}
.yff{bottom:132.066000px;}
.y100{bottom:134.022000px;}
.yfe{bottom:134.022518px;}
.y4c{bottom:134.192100px;}
.y471{bottom:135.559863px;}
.y1b9{bottom:136.063100px;}
.y377{bottom:136.743884px;}
.y16d{bottom:136.744580px;}
.y2fa{bottom:137.338500px;}
.y3a2{bottom:139.636040px;}
.y37d{bottom:139.719600px;}
.y2a4{bottom:140.740050px;}
.y2a2{bottom:140.741358px;}
.yd8{bottom:141.165218px;}
.y28a{bottom:141.167856px;}
.y23b{bottom:141.169650px;}
.y2c6{bottom:141.592258px;}
.y1fd{bottom:142.101218px;}
.y3f5{bottom:142.102416px;}
.y429{bottom:142.105236px;}
.y91{bottom:142.108095px;}
.y3d3{bottom:142.108155px;}
.y2a3{bottom:146.012550px;}
.y156{bottom:146.440078px;}
.y470{bottom:147.465900px;}
.y2f5{bottom:147.713818px;}
.y376{bottom:149.584309px;}
.y16c{bottom:149.585961px;}
.yfd{bottom:149.754300px;}
.y1b8{bottom:151.710000px;}
.y1b7{bottom:151.710218px;}
.y3a1{bottom:155.284136px;}
.y2a1{bottom:156.388258px;}
.y296{bottom:156.389976px;}
.y4c7{bottom:156.482118px;}
.yd7{bottom:156.897000px;}
.yd5{bottom:156.898040px;}
.y2d4{bottom:156.898714px;}
.y289{bottom:156.899638px;}
.y23a{bottom:156.902628px;}
.y2c5{bottom:157.239158px;}
.y1fc{bottom:157.833000px;}
.y3f4{bottom:157.834198px;}
.y1fa{bottom:157.835796px;}
.y428{bottom:157.837018px;}
.y90{bottom:157.839877px;}
.y3d2{bottom:157.839937px;}
.y46f{bottom:159.456098px;}
.y48{bottom:159.703536px;}
.y155{bottom:162.086978px;}
.yd6{bottom:162.169500px;}
.y375{bottom:162.425690px;}
.y16b{bottom:162.426386px;}
.y1fb{bottom:163.105500px;}
.y2f4{bottom:163.360718px;}
.yfc{bottom:163.446000px;}
.y1b5{bottom:165.402000px;}
.yfb{bottom:165.402218px;}
.y1b6{bottom:167.442000px;}
.y1b4{bottom:167.444516px;}
.y116{bottom:168.040072px;}
.y4c5{bottom:168.388155px;}
.y3a0{bottom:171.015917px;}
.y46e{bottom:171.361179px;}
.y2a0{bottom:172.120040px;}
.y295{bottom:172.121758px;}
.yd4{bottom:172.546136px;}
.y288{bottom:172.546538px;}
.y2c4{bottom:172.972136px;}
.y39c{bottom:173.395108px;}
.y3f3{bottom:173.565980px;}
.y1f9{bottom:173.567578px;}
.y427{bottom:173.569996px;}
.y8f{bottom:173.572854px;}
.y3d1{bottom:173.572914px;}
.y47{bottom:174.075000px;}
.y16a{bottom:175.267768px;}
.y154{bottom:177.819956px;}
.yf9{bottom:179.092500px;}
.y4c4{bottom:180.378353px;}
.y115{bottom:180.966571px;}
.yfa{bottom:181.134000px;}
.yf8{bottom:181.136115px;}
.y374{bottom:182.154000px;}
.y1b3{bottom:183.091416px;}
.y46d{bottom:183.352334px;}
.y2f3{bottom:184.365000px;}
.y39f{bottom:186.662818px;}
.y39b{bottom:187.681572px;}
.y29f{bottom:187.768136px;}
.y294{bottom:187.768658px;}
.y169{bottom:188.108193px;}
.yd3{bottom:188.277917px;}
.y287{bottom:188.279516px;}
.y239{bottom:188.281310px;}
.y2d1{bottom:188.702600px;}
.y2d3{bottom:188.703000px;}
.y2c3{bottom:188.703917px;}
.y3f2{bottom:189.214076px;}
.y1f8{bottom:189.214478px;}
.y8e{bottom:189.219754px;}
.y3d0{bottom:189.219814px;}
.y4c3{bottom:192.283434px;}
.y153{bottom:193.466856px;}
.y114{bottom:193.806996px;}
.y2d2{bottom:193.974000px;}
.y46c{bottom:195.342533px;}
.yf7{bottom:196.783016px;}
.y1b2{bottom:198.823198px;}
.y168{bottom:201.033736px;}
.y373{bottom:201.883072px;}
.y39a{bottom:202.053036px;}
.y39e{bottom:202.394600px;}
.y29e{bottom:203.499917px;}
.y293{bottom:203.501636px;}
.yd2{bottom:203.924818px;}
.y286{bottom:203.926416px;}
.y4c2{bottom:204.273633px;}
.y2d0{bottom:204.349500px;}
.y2c2{bottom:204.350818px;}
.y3f1{bottom:204.945858px;}
.y1f7{bottom:204.947456px;}
.y426{bottom:204.948678px;}
.y8d{bottom:204.951536px;}
.y3cf{bottom:204.951596px;}
.y113{bottom:206.647421px;}
.y46b{bottom:207.247613px;}
.y152{bottom:209.198638px;}
.y2cf{bottom:209.707500px;}
.yf6{bottom:212.514798px;}
.y2ff{bottom:212.683572px;}
.y167{bottom:213.875117px;}
.y1b1{bottom:214.470098px;}
.y372{bottom:216.254536px;}
.y4c1{bottom:216.264788px;}
.y399{bottom:216.424500px;}
.y39d{bottom:218.041500px;}
.y29d{bottom:219.146818px;}
.y292{bottom:219.148536px;}
.y46a{bottom:219.237812px;}
.y112{bottom:219.488803px;}
.y3c{bottom:219.573376px;}
.yd1{bottom:219.656600px;}
.y285{bottom:219.658198px;}
.y238{bottom:219.915832px;}
.y2c1{bottom:220.082600px;}
.y3f0{bottom:220.592758px;}
.y1f6{bottom:220.594356px;}
.y8c{bottom:220.598437px;}
.y3ce{bottom:220.598497px;}
.y151{bottom:224.845538px;}
.y166{bottom:226.715542px;}
.y2fe{bottom:227.055036px;}
.yf5{bottom:228.161698px;}
.y4c0{bottom:228.169868px;}
.y1b0{bottom:230.203076px;}
.y371{bottom:230.541000px;}
.y469{bottom:231.143849px;}
.y111{bottom:232.329228px;}
.y29c{bottom:234.878600px;}
.y291{bottom:234.880318px;}
.yd0{bottom:235.303718px;}
.y284{bottom:235.305098px;}
.y3b{bottom:235.305158px;}
.y237{bottom:235.647614px;}
.y2cd{bottom:235.727602px;}
.y2c0{bottom:235.729500px;}
.y3ef{bottom:236.324540px;}
.y1f5{bottom:236.326138px;}
.y425{bottom:236.328555px;}
.y8b{bottom:236.331414px;}
.y3cd{bottom:236.331474px;}
.y4bf{bottom:240.160067px;}
.y150{bottom:240.578516px;}
.y2ce{bottom:241.086000px;}
.y2fd{bottom:241.426500px;}
.y468{bottom:243.134048px;}
.yf4{bottom:243.893480px;}
.y110{bottom:245.170609px;}
.y1af{bottom:245.849976px;}
.y165{bottom:246.444808px;}
.y299{bottom:248.569500px;}
.yce{bottom:248.995500px;}
.y29a{bottom:250.525500px;}
.y290{bottom:250.527218px;}
.y3a{bottom:250.952059px;}
.ycf{bottom:251.035500px;}
.ycd{bottom:251.036600px;}
.y283{bottom:251.038076px;}
.y236{bottom:251.380592px;}
.y3a9{bottom:251.717608px;}
.y3ee{bottom:251.972636px;}
.y1f4{bottom:251.973038px;}
.y424{bottom:251.975456px;}
.y8a{bottom:251.978314px;}
.y3cc{bottom:251.978374px;}
.y4be{bottom:252.065147px;}
.y467{bottom:255.039128px;}
.y29b{bottom:255.883500px;}
.y14f{bottom:256.225416px;}
.y10f{bottom:258.011034px;}
.yf3{bottom:259.541576px;}
.y1ae{bottom:261.581758px;}
.y4bd{bottom:264.056303px;}
.y332{bottom:264.644084px;}
.y370{bottom:264.644831px;}
.ycb{bottom:264.727500px;}
.y164{bottom:266.088000px;}
.y3a8{bottom:266.089072px;}
.y28f{bottom:266.259000px;}
.ycc{bottom:266.683500px;}
.y282{bottom:266.684976px;}
.y39{bottom:266.685036px;}
.yca{bottom:266.686296px;}
.y235{bottom:267.027492px;}
.y466{bottom:267.029327px;}
.y3ed{bottom:267.704417px;}
.y1f3{bottom:267.706016px;}
.y423{bottom:267.707238px;}
.y89{bottom:267.710096px;}
.y3cb{bottom:267.710156px;}
.y2f2{bottom:269.405608px;}
.y10e{bottom:270.936577px;}
.y14e{bottom:271.957198px;}
.yf2{bottom:275.273358px;}
.y4bc{bottom:276.046501px;}
.y1ad{bottom:277.228658px;}
.y465{bottom:279.020482px;}
.y331{bottom:280.290984px;}
.y36f{bottom:280.291732px;}
.y3a7{bottom:280.375536px;}
.y281{bottom:282.416758px;}
.y38{bottom:282.416818px;}
.yc9{bottom:282.418078px;}
.y234{bottom:282.759274px;}
.y3ec{bottom:283.351318px;}
.y1f2{bottom:283.352916px;}
.y422{bottom:283.354138px;}
.y88{bottom:283.356997px;}
.y3ca{bottom:283.357057px;}
.y2f1{bottom:283.692072px;}
.y10d{bottom:283.777959px;}
.y163{bottom:285.817572px;}
.y14d{bottom:287.604098px;}
.y4bb{bottom:287.951582px;}
.yf1{bottom:290.920258px;}
.y464{bottom:290.925563px;}
.y1ac{bottom:292.961636px;}
.y3a6{bottom:294.747000px;}
.y330{bottom:296.023961px;}
.y36e{bottom:296.024709px;}
.y10c{bottom:296.618384px;}
.y2f0{bottom:298.063536px;}
.y280{bottom:298.063658px;}
.y37{bottom:298.063718px;}
.yc8{bottom:298.064978px;}
.y233{bottom:298.406174px;}
.y3eb{bottom:299.083100px;}
.y1f1{bottom:299.084698px;}
.y421{bottom:299.087115px;}
.y87{bottom:299.089974px;}
.y3c9{bottom:299.090034px;}
.y4c6{bottom:299.772500px;}
.y4ba{bottom:299.941781px;}
.y162{bottom:300.189036px;}
.y463{bottom:302.915761px;}
.y14c{bottom:303.337076px;}
.yf0{bottom:306.652040px;}
.y2be{bottom:306.737994px;}
.y1ab{bottom:308.608536px;}
.y10b{bottom:309.458809px;}
.y32f{bottom:311.670862px;}
.y36d{bottom:311.671610px;}
.y4b9{bottom:311.847817px;}
.y2ef{bottom:312.435000px;}
.y36{bottom:313.795500px;}
.y27f{bottom:313.796636px;}
.y34{bottom:313.796818px;}
.yc7{bottom:313.797956px;}
.y232{bottom:314.139152px;}
.y161{bottom:314.560500px;}
.y3ea{bottom:314.730000px;}
.y1f0{bottom:314.731598px;}
.y420{bottom:314.734016px;}
.y86{bottom:314.736874px;}
.y3c8{bottom:314.736934px;}
.y462{bottom:314.820842px;}
.y14b{bottom:318.983976px;}
.y35{bottom:319.068000px;}
.y2bd{bottom:319.663537px;}
.y3e9{bottom:320.088000px;}
.yef{bottom:322.300136px;}
.y10a{bottom:322.300190px;}
.y4b8{bottom:323.838016px;}
.y1aa{bottom:324.340318px;}
.y461{bottom:326.811997px;}
.y32e{bottom:327.402644px;}
.y36c{bottom:327.403391px;}
.y46{bottom:329.442400px;}
.y27e{bottom:329.443536px;}
.y33{bottom:329.443718px;}
.yc6{bottom:329.444856px;}
.y231{bottom:329.786052px;}
.y1ef{bottom:330.464576px;}
.y41f{bottom:330.465798px;}
.y85{bottom:330.468656px;}
.y3c7{bottom:330.468716px;}
.y2bc{bottom:332.504919px;}
.y14a{bottom:334.715758px;}
.y4b7{bottom:335.743097px;}
.yee{bottom:338.031917px;}
.y460{bottom:338.802196px;}
.y1a9{bottom:339.987218px;}
.y109{bottom:342.028500px;}
.y32d{bottom:343.049544px;}
.y36b{bottom:343.050292px;}
.y45{bottom:345.174182px;}
.y27d{bottom:345.175318px;}
.y32{bottom:345.175500px;}
.y30{bottom:345.176576px;}
.yc5{bottom:345.176638px;}
.y2bb{bottom:345.345344px;}
.y230{bottom:345.517834px;}
.y1ee{bottom:346.111476px;}
.y41e{bottom:346.112698px;}
.y84{bottom:346.115557px;}
.y3c6{bottom:346.115616px;}
.y4b6{bottom:347.734252px;}
.y129{bottom:348.578636px;}
.y149{bottom:350.362658px;}
.y31{bottom:350.446500px;}
.y45f{bottom:350.707276px;}
.yed{bottom:353.678818px;}
.y1a7{bottom:353.679000px;}
.y1a8{bottom:355.719000px;}
.y1a6{bottom:355.720040px;}
.y2ba{bottom:358.185769px;}
.y32c{bottom:358.782521px;}
.y36a{bottom:358.783269px;}
.y4b5{bottom:359.724451px;}
.y44{bottom:360.821083px;}
.y27c{bottom:360.822218px;}
.y2f{bottom:360.823476px;}
.yc4{bottom:360.823538px;}
.y22f{bottom:361.164734px;}
.y108{bottom:361.757572px;}
.y1ed{bottom:361.843258px;}
.y83{bottom:361.848534px;}
.y3c5{bottom:361.848594px;}
.y45e{bottom:362.698431px;}
.y128{bottom:364.310417px;}
.y148{bottom:366.095636px;}
.yec{bottom:369.410600px;}
.y2b9{bottom:371.027150px;}
.y1a5{bottom:371.368136px;}
.y4b4{bottom:371.629531px;}
.y45d{bottom:374.603512px;}
.y107{bottom:376.129036px;}
.y43{bottom:376.552864px;}
.y27b{bottom:376.554000px;}
.y2e{bottom:376.555258px;}
.y279{bottom:376.555318px;}
.yc3{bottom:376.556516px;}
.y22e{bottom:376.897711px;}
.y1ec{bottom:377.490158px;}
.y41d{bottom:377.492576px;}
.y82{bottom:377.495434px;}
.y3c4{bottom:377.495494px;}
.y127{bottom:379.957318px;}
.y147{bottom:381.742536px;}
.y27a{bottom:381.826500px;}
.yea{bottom:383.101500px;}
.y4b3{bottom:383.619730px;}
.y2b8{bottom:383.867575px;}
.yeb{bottom:385.057500px;}
.ye9{bottom:385.059218px;}
.y45c{bottom:386.593710px;}
.y1a4{bottom:387.099917px;}
.y32b{bottom:390.161204px;}
.y369{bottom:390.161951px;}
.y106{bottom:390.415500px;}
.y42{bottom:392.200960px;}
.y2d{bottom:392.202158px;}
.y278{bottom:392.202218px;}
.yc2{bottom:392.203416px;}
.y22d{bottom:392.544612px;}
.y1eb{bottom:393.223136px;}
.y81{bottom:393.227216px;}
.y3c3{bottom:393.227276px;}
.y2b6{bottom:395.178000px;}
.y4b2{bottom:395.525767px;}
.y126{bottom:395.689100px;}
.y2b7{bottom:396.708000px;}
.y2b5{bottom:396.709190px;}
.y146{bottom:397.474318px;}
.y45b{bottom:398.498791px;}
.ye7{bottom:398.749500px;}
.ye6{bottom:400.787926px;}
.ye8{bottom:400.791000px;}
.y1a3{bottom:402.746818px;}
.y4b1{bottom:407.515965px;}
.y41{bottom:407.932742px;}
.y277{bottom:407.934000px;}
.y2c{bottom:407.935136px;}
.yc1{bottom:407.935198px;}
.y275{bottom:407.936448px;}
.y22c{bottom:408.276394px;}
.y1ea{bottom:408.870036px;}
.y41c{bottom:408.871258px;}
.y80{bottom:408.874116px;}
.y3c2{bottom:408.874176px;}
.y124{bottom:409.380000px;}
.y45a{bottom:410.489946px;}
.y125{bottom:411.336000px;}
.y123{bottom:411.337258px;}
.y276{bottom:413.206500px;}
.y2b4{bottom:416.437500px;}
.y1a2{bottom:418.478600px;}
.y4b0{bottom:419.506164px;}
.y366{bottom:422.135818px;}
.y368{bottom:422.136000px;}
.y459{bottom:422.480145px;}
.y40{bottom:423.579642px;}
.y2b{bottom:423.582036px;}
.yc0{bottom:423.582098px;}
.y274{bottom:423.583349px;}
.y22b{bottom:423.923294px;}
.y32a{bottom:424.601600px;}
.y1e9{bottom:424.601818px;}
.y41b{bottom:424.603040px;}
.y3c1{bottom:424.605958px;}
.y7f{bottom:424.607094px;}
.y144{bottom:426.813000px;}
.y122{bottom:427.069040px;}
.y367{bottom:427.407000px;}
.y145{bottom:428.853000px;}
.y143{bottom:428.854318px;}
.y4af{bottom:431.411245px;}
.y1a1{bottom:434.125500px;}
.y19f{bottom:434.128136px;}
.y458{bottom:434.385225px;}
.y105{bottom:434.465536px;}
.y2b3{bottom:436.167072px;}
.y365{bottom:437.782718px;}
.y3f{bottom:439.311424px;}
.y2a{bottom:439.313818px;}
.ybf{bottom:439.315076px;}
.y273{bottom:439.316326px;}
.y1a0{bottom:439.483500px;}
.y22a{bottom:439.655076px;}
.y329{bottom:440.248500px;}
.y1e8{bottom:440.248718px;}
.y327{bottom:440.249818px;}
.y41a{bottom:440.251136px;}
.y7e{bottom:440.253994px;}
.y3c0{bottom:440.254054px;}
.y121{bottom:442.717136px;}
.y4ae{bottom:443.402400px;}
.y142{bottom:444.501218px;}
.y328{bottom:445.606500px;}
.y457{bottom:446.375424px;}
.y104{bottom:448.752000px;}
.y19e{bottom:449.859917px;}
.y2b2{bottom:450.538536px;}
.y364{bottom:453.514500px;}
.y362{bottom:453.515540px;}
.y1e6{bottom:453.940500px;}
.y3e{bottom:454.959520px;}
.ybe{bottom:454.961976px;}
.y272{bottom:454.963227px;}
.y229{bottom:455.303172px;}
.y4ad{bottom:455.307480px;}
.y1e7{bottom:455.980500px;}
.y326{bottom:455.981600px;}
.y419{bottom:455.982917px;}
.y7d{bottom:455.985776px;}
.y3bf{bottom:455.985836px;}
.y1e5{bottom:455.987096px;}
.y140{bottom:458.191500px;}
.y456{bottom:458.281461px;}
.y120{bottom:458.448917px;}
.y363{bottom:458.787000px;}
.y141{bottom:460.233000px;}
.y13f{bottom:460.234456px;}
.y2b0{bottom:463.125000px;}
.y2b1{bottom:464.910000px;}
.y2af{bottom:464.911072px;}
.y19d{bottom:465.506818px;}
.y4ac{bottom:467.297679px;}
.y361{bottom:469.163636px;}
.y455{bottom:470.271660px;}
.y3d{bottom:470.691302px;}
.y29{bottom:470.692500px;}
.ybd{bottom:470.693758px;}
.y271{bottom:470.695008px;}
.y228{bottom:471.034954px;}
.y325{bottom:471.628500px;}
.y418{bottom:471.629818px;}
.y7c{bottom:471.632676px;}
.y3be{bottom:471.632736px;}
.y323{bottom:471.632954px;}
.y1e4{bottom:471.633997px;}
.y11f{bottom:474.095818px;}
.y324{bottom:476.985000px;}
.y2ae{bottom:479.197536px;}
.y4ab{bottom:479.288834px;}
.y19c{bottom:481.238600px;}
.y454{bottom:482.261858px;}
.y360{bottom:484.895417px;}
.ybc{bottom:486.340658px;}
.y270{bottom:486.341909px;}
.y227{bottom:486.681854px;}
.y417{bottom:487.361600px;}
.y7b{bottom:487.364458px;}
.y3bd{bottom:487.364518px;}
.y322{bottom:487.364736px;}
.y1e3{bottom:487.366974px;}
.y139{bottom:488.551807px;}
.y11e{bottom:489.827600px;}
.y4aa{bottom:491.193915px;}
.y2ad{bottom:493.569000px;}
.y136{bottom:493.824153px;}
.y13d{bottom:493.824840px;}
.y453{bottom:494.167895px;}
.y19b{bottom:496.885500px;}
.y35f{bottom:500.542318px;}
.y135{bottom:500.882474px;}
.y13c{bottom:500.883161px;}
.y132{bottom:501.306971px;}
.y13e{bottom:501.308764px;}
.ybb{bottom:502.073636px;}
.y26f{bottom:502.074886px;}
.y416{bottom:503.008500px;}
.y321{bottom:503.011637px;}
.y7a{bottom:503.012554px;}
.y3bc{bottom:503.012614px;}
.y4a9{bottom:503.184113px;}
.y11c{bottom:503.518500px;}
.y11d{bottom:505.474500px;}
.y11b{bottom:505.474658px;}
.y452{bottom:506.158094px;}
.y134{bottom:507.939599px;}
.y13b{bottom:507.941482px;}
.y19a{bottom:510.576000px;}
.y137{bottom:512.616453px;}
.y199{bottom:512.618417px;}
.y133{bottom:514.997919px;}
.y138{bottom:514.998000px;}
.y13a{bottom:514.998607px;}
.y4a8{bottom:515.089194px;}
.y35e{bottom:516.274100px;}
.yba{bottom:517.720536px;}
.y26e{bottom:517.721786px;}
.y226{bottom:518.061732px;}
.y451{bottom:518.063174px;}
.y79{bottom:518.744336px;}
.y3bb{bottom:518.744396px;}
.y320{bottom:518.744614px;}
.y1e2{bottom:518.745656px;}
.y414{bottom:518.745874px;}
.y11a{bottom:521.207636px;}
.y415{bottom:524.013000px;}
.y4a7{bottom:527.080349px;}
.y198{bottom:528.265318px;}
.y450{bottom:530.053373px;}
.y28{bottom:530.136036px;}
.y35d{bottom:531.921000px;}
.y35b{bottom:531.922318px;}
.yb9{bottom:533.452318px;}
.y26d{bottom:533.453568px;}
.y78{bottom:534.391236px;}
.y3ba{bottom:534.391296px;}
.y31f{bottom:534.391514px;}
.y1e1{bottom:534.392557px;}
.y413{bottom:534.392775px;}
.y131{bottom:536.853218px;}
.y2ac{bottom:537.278536px;}
.y35c{bottom:537.279000px;}
.y4a6{bottom:538.985429px;}
.y44f{bottom:541.959410px;}
.y197{bottom:543.997100px;}
.y27{bottom:544.507500px;}
.y25{bottom:544.507536px;}
.y35a{bottom:547.654100px;}
.yb8{bottom:549.184100px;}
.y26c{bottom:549.185350px;}
.y26{bottom:549.270000px;}
.y2ab{bottom:549.780000px;}
.y225{bottom:549.781136px;}
.y77{bottom:550.123018px;}
.y3b9{bottom:550.123078px;}
.y31e{bottom:550.123296px;}
.y412{bottom:550.124557px;}
.y1e0{bottom:550.125534px;}
.y12f{bottom:550.545000px;}
.y4a5{bottom:550.975628px;}
.y2aa{bottom:551.565000px;}
.y130{bottom:552.585000px;}
.y12e{bottom:552.586100px;}
.y119{bottom:552.586318px;}
.y44e{bottom:553.949609px;}
.y195{bottom:557.688000px;}
.y24{bottom:558.879000px;}
.y22{bottom:558.880466px;}
.y196{bottom:559.644000px;}
.y194{bottom:559.645536px;}
.y4a4{bottom:562.965827px;}
.y359{bottom:563.301000px;}
.y357{bottom:563.302076px;}
.y23{bottom:563.641500px;}
.yb7{bottom:564.831000px;}
.y26b{bottom:564.832251px;}
.yb6{bottom:564.832318px;}
.y224{bottom:565.512917px;}
.y3b8{bottom:565.769978px;}
.y31d{bottom:565.770197px;}
.y76{bottom:565.771114px;}
.y411{bottom:565.771457px;}
.y1df{bottom:565.772434px;}
.y44d{bottom:565.939808px;}
.y12c{bottom:566.277000px;}
.y12b{bottom:568.231802px;}
.y12d{bottom:568.233000px;}
.y358{bottom:568.659000px;}
.y21{bottom:573.251930px;}
.y4a3{bottom:574.871864px;}
.y193{bottom:575.377318px;}
.y44c{bottom:577.844888px;}
.y356{bottom:579.033858px;}
.yb5{bottom:580.564100px;}
.y26a{bottom:580.565228px;}
.y223{bottom:581.159818px;}
.y31c{bottom:581.501978px;}
.y75{bottom:581.502896px;}
.y3b7{bottom:581.502956px;}
.y1de{bottom:581.504216px;}
.y410{bottom:581.504434px;}
.y12a{bottom:583.963584px;}
.y118{bottom:583.965000px;}
.y4a2{bottom:586.862062px;}
.y20{bottom:587.538394px;}
.y44b{bottom:589.836043px;}
.y192{bottom:591.024218px;}
.y355{bottom:594.680758px;}
.yb4{bottom:596.211000px;}
.yb3{bottom:596.213768px;}
.y222{bottom:596.891600px;}
.y74{bottom:597.149796px;}
.y3b6{bottom:597.149856px;}
.y31b{bottom:597.150074px;}
.y1dd{bottom:597.151116px;}
.y40f{bottom:597.151335px;}
.y4a1{bottom:598.767143px;}
.y44a{bottom:601.741124px;}
.y1f{bottom:601.909859px;}
.y190{bottom:604.800000px;}
.y18f{bottom:606.755943px;}
.y191{bottom:606.756000px;}
.y354{bottom:610.412540px;}
.y4a0{bottom:610.757342px;}
.y269{bottom:611.943910px;}
.yb2{bottom:611.946745px;}
.y221{bottom:612.538500px;}
.y21f{bottom:612.540734px;}
.y73{bottom:612.881578px;}
.y3b5{bottom:612.881638px;}
.y31a{bottom:612.881856px;}
.y40e{bottom:612.883116px;}
.y1dc{bottom:612.884094px;}
.y449{bottom:613.731322px;}
.y15f{bottom:615.769500px;}
.y1e{bottom:616.281323px;}
.y160{bottom:617.556000px;}
.y15e{bottom:617.556036px;}
.y220{bottom:617.896500px;}
.y49f{bottom:622.748497px;}
.y448{bottom:625.721521px;}
.y353{bottom:626.060636px;}
.yb1{bottom:627.593646px;}
.y21e{bottom:628.273711px;}
.y72{bottom:628.528478px;}
.y3b4{bottom:628.528538px;}
.y319{bottom:628.528756px;}
.y40d{bottom:628.530017px;}
.y1db{bottom:628.530994px;}
.y1d{bottom:630.567787px;}
.y15d{bottom:631.927500px;}
.y49e{bottom:634.653577px;}
.y18e{bottom:636.013600px;}
.y447{bottom:637.627558px;}
.y352{bottom:641.792417px;}
.y21d{bottom:643.920612px;}
.y268{bottom:644.088917px;}
.y318{bottom:644.260538px;}
.y71{bottom:644.261456px;}
.y3b3{bottom:644.261516px;}
.y1da{bottom:644.262776px;}
.y40c{bottom:644.262994px;}
.y1c{bottom:644.939251px;}
.y49d{bottom:646.643776px;}
.y446{bottom:649.617757px;}
.y351{bottom:657.439318px;}
.y49c{bottom:658.549813px;}
.yb0{bottom:658.972328px;}
.y1b{bottom:659.310715px;}
.y21c{bottom:659.652394px;}
.y267{bottom:659.735818px;}
.y18d{bottom:659.738595px;}
.y70{bottom:659.908356px;}
.y3b2{bottom:659.908416px;}
.y317{bottom:659.908634px;}
.y1d9{bottom:659.909676px;}
.y40b{bottom:659.909894px;}
.y445{bottom:661.522837px;}
.y14{bottom:669.771419px;}
.y49b{bottom:670.540012px;}
.y350{bottom:673.171100px;}
.y444{bottom:673.513992px;}
.y1a{bottom:673.597179px;}
.y21b{bottom:675.299294px;}
.y266{bottom:675.467600px;}
.y18c{bottom:675.556454px;}
.y6f{bottom:675.640138px;}
.y3b1{bottom:675.640198px;}
.y316{bottom:675.640416px;}
.y1d8{bottom:675.641458px;}
.y40a{bottom:675.641676px;}
.y49a{bottom:682.445092px;}
.y13{bottom:682.612800px;}
.y443{bottom:685.504191px;}
.y19{bottom:687.968643px;}
.y34f{bottom:688.818000px;}
.y34d{bottom:688.819718px;}
.y264{bottom:689.158500px;}
.yaf{bottom:690.352206px;}
.y21a{bottom:691.031076px;}
.y265{bottom:691.114500px;}
.y263{bottom:691.115818px;}
.y18b{bottom:691.203355px;}
.y6e{bottom:691.287038px;}
.y3b0{bottom:691.287098px;}
.y315{bottom:691.287316px;}
.y409{bottom:691.288577px;}
.y1d7{bottom:691.289554px;}
.y34e{bottom:694.176000px;}
.y499{bottom:694.435291px;}
.y12{bottom:695.453225px;}
.y442{bottom:697.409272px;}
.y18{bottom:702.340108px;}
.y34c{bottom:704.551500px;}
.y34a{bottom:704.552636px;}
.y498{bottom:706.426446px;}
.y219{bottom:706.679172px;}
.y262{bottom:706.847600px;}
.y18a{bottom:706.935137px;}
.y314{bottom:707.019098px;}
.y6d{bottom:707.020016px;}
.y3af{bottom:707.020076px;}
.y1d6{bottom:707.021336px;}
.y408{bottom:707.021554px;}
.y11{bottom:708.293650px;}
.y441{bottom:709.399470px;}
.y34b{bottom:709.824000px;}
.y17{bottom:716.711572px;}
.y497{bottom:718.331527px;}
.y349{bottom:720.199536px;}
.y260{bottom:720.538500px;}
.y10{bottom:721.135032px;}
.y440{bottom:721.305507px;}
.y218{bottom:722.410954px;}
.y261{bottom:722.494500px;}
.y25f{bottom:722.495636px;}
.y189{bottom:722.582037px;}
.y6c{bottom:722.751798px;}
.yae{bottom:722.751858px;}
.y313{bottom:722.752076px;}
.y1d5{bottom:722.753118px;}
.y407{bottom:722.753336px;}
.y496{bottom:730.321725px;}
.y16{bottom:730.998036px;}
.y43f{bottom:733.295706px;}
.yf{bottom:733.975457px;}
.y348{bottom:735.931318px;}
.y217{bottom:738.057854px;}
.y25e{bottom:738.227417px;}
.y188{bottom:738.315014px;}
.y6b{bottom:738.398698px;}
.yad{bottom:738.398758px;}
.y312{bottom:738.398976px;}
.y1d4{bottom:738.400018px;}
.y406{bottom:738.400236px;}
.y495{bottom:742.226806px;}
.y43e{bottom:745.200786px;}
.y15{bottom:745.369500px;}
.ye{bottom:746.901000px;}
.y347{bottom:751.663100px;}
.y25d{bottom:753.874318px;}
.y187{bottom:753.961915px;}
.y6a{bottom:754.130480px;}
.yac{bottom:754.130540px;}
.y311{bottom:754.130758px;}
.y405{bottom:754.132018px;}
.y1d3{bottom:754.132996px;}
.y494{bottom:754.217961px;}
.y43d{bottom:757.190985px;}
.y493{bottom:766.208160px;}
.y346{bottom:767.310000px;}
.y344{bottom:767.311258px;}
.y43c{bottom:769.182140px;}
.y216{bottom:769.437732px;}
.y25c{bottom:769.606100px;}
.y186{bottom:769.693697px;}
.y310{bottom:769.777658px;}
.y69{bottom:769.778576px;}
.yab{bottom:769.778636px;}
.y1d2{bottom:769.779896px;}
.y404{bottom:769.780114px;}
.y345{bottom:772.668000px;}
.yd{bottom:774.624000px;}
.y492{bottom:778.113240px;}
.y43b{bottom:781.087221px;}
.y343{bottom:783.043040px;}
.y25a{bottom:783.297000px;}
.y25b{bottom:785.253000px;}
.y259{bottom:785.255636px;}
.y185{bottom:785.340597px;}
.y68{bottom:785.510358px;}
.yaa{bottom:785.510417px;}
.y30f{bottom:785.510636px;}
.y1d1{bottom:785.511678px;}
.y403{bottom:785.511896px;}
.y491{bottom:790.104395px;}
.y43a{bottom:793.077420px;}
.y342{bottom:798.691136px;}
.y258{bottom:800.987417px;}
.y184{bottom:801.073574px;}
.y215{bottom:801.157136px;}
.y67{bottom:801.157258px;}
.ya9{bottom:801.157318px;}
.y30e{bottom:801.157536px;}
.y1d0{bottom:801.158578px;}
.y402{bottom:801.158796px;}
.y490{bottom:802.009476px;}
.y439{bottom:804.982500px;}
.y48f{bottom:813.999674px;}
.y341{bottom:814.422917px;}
.y257{bottom:816.634318px;}
.y183{bottom:816.720475px;}
.y214{bottom:816.888917px;}
.y66{bottom:816.889040px;}
.ya8{bottom:816.889100px;}
.y30d{bottom:816.889318px;}
.y401{bottom:816.890578px;}
.y1cf{bottom:816.891555px;}
.yc{bottom:824.116500px;}
.y48e{bottom:825.904755px;}
.yb{bottom:828.369000px;}
.y340{bottom:830.069818px;}
.y256{bottom:832.366100px;}
.y182{bottom:832.452256px;}
.y438{bottom:832.531886px;}
.y213{bottom:832.535818px;}
.ya7{bottom:832.536000px;}
.y3ae{bottom:832.536036px;}
.ya5{bottom:832.536218px;}
.y65{bottom:832.537136px;}
.y400{bottom:832.537478px;}
.y1ce{bottom:832.538456px;}
.ya{bottom:836.958000px;}
.ya6{bottom:837.892500px;}
.y48d{bottom:837.895910px;}
.y9{bottom:841.209000px;}
.y33f{bottom:845.801600px;}
.y254{bottom:846.057000px;}
.y2ee{bottom:846.314071px;}
.y255{bottom:848.013000px;}
.y253{bottom:848.013158px;}
.y181{bottom:848.099157px;}
.y212{bottom:848.267600px;}
.y3e8{bottom:848.267782px;}
.y3ad{bottom:848.267818px;}
.ya4{bottom:848.268000px;}
.y64{bottom:848.268917px;}
.y30c{bottom:848.269040px;}
.y1cd{bottom:848.270238px;}
.y3ff{bottom:848.270456px;}
.y48c{bottom:849.886109px;}
.ya3{bottom:853.540500px;}
.y2ed{bottom:859.154496px;}
.y33e{bottom:861.448500px;}
.y33c{bottom:861.451069px;}
.y7{bottom:861.619500px;}
.y48b{bottom:861.791189px;}
.y210{bottom:861.958500px;}
.y252{bottom:863.746136px;}
.y180{bottom:863.832134px;}
.y437{bottom:863.911764px;}
.y211{bottom:863.914500px;}
.y3e7{bottom:863.914682px;}
.y3ac{bottom:863.914718px;}
.y20f{bottom:863.915758px;}
.y63{bottom:863.915818px;}
.y30b{bottom:863.917136px;}
.y1cc{bottom:863.917138px;}
.y3fe{bottom:863.917356px;}
.y397{bottom:866.635500px;}
.y395{bottom:866.637419px;}
.y33d{bottom:866.806500px;}
.y8{bottom:868.677000px;}
.y396{bottom:870.888000px;}
.y2ec{bottom:871.994921px;}
.y48a{bottom:873.781388px;}
.y398{bottom:879.475925px;}
.y251{bottom:879.477917px;}
.y394{bottom:879.478800px;}
.y17f{bottom:879.479034px;}
.y436{bottom:879.643546px;}
.y3e6{bottom:879.646464px;}
.y3ab{bottom:879.646500px;}
.y20e{bottom:879.647540px;}
.y62{bottom:879.647600px;}
.y30a{bottom:879.648917px;}
.y3fd{bottom:879.649138px;}
.y1cb{bottom:879.650115px;}
.y2eb{bottom:884.836303px;}
.y3aa{bottom:884.919000px;}
.y489{bottom:885.687425px;}
.y393{bottom:892.404344px;}
.y33b{bottom:892.830946px;}
.y250{bottom:895.124818px;}
.y435{bottom:895.290446px;}
.y3e5{bottom:895.293364px;}
.y61{bottom:895.294500px;}
.y5f{bottom:895.294718px;}
.y20d{bottom:895.295636px;}
.y17e{bottom:895.295698px;}
.y309{bottom:895.295818px;}
.y3fc{bottom:895.296038px;}
.y1ca{bottom:895.297016px;}
.y488{bottom:897.677624px;}
.y2ea{bottom:897.761846px;}
.y6{bottom:899.122216px;}
.y60{bottom:900.652500px;}
.y392{bottom:905.244769px;}
.y487{bottom:909.667822px;}
.y2e9{bottom:910.602271px;}
.y24f{bottom:910.856600px;}
.y434{bottom:911.023423px;}
.ya2{bottom:911.026282px;}
.y3e4{bottom:911.026342px;}
.y5e{bottom:911.026500px;}
.y20c{bottom:911.027417px;}
.y17d{bottom:911.027480px;}
.y308{bottom:911.027600px;}
.y1c9{bottom:911.028798px;}
.y5c{bottom:911.029016px;}
.y5d{bottom:916.299000px;}
.y391{bottom:918.086150px;}
.y486{bottom:921.572903px;}
.y2e8{bottom:923.443652px;}
.y24d{bottom:924.547500px;}
.y5{bottom:924.973500px;}
.y24e{bottom:926.503500px;}
.y24c{bottom:926.505036px;}
.y433{bottom:926.670324px;}
.ya1{bottom:926.673182px;}
.y3e3{bottom:926.673242px;}
.y20b{bottom:926.674318px;}
.y307{bottom:926.674500px;}
.y17c{bottom:926.675576px;}
.y305{bottom:926.675636px;}
.y1c8{bottom:926.675698px;}
.y5b{bottom:926.675916px;}
.y33a{bottom:926.675976px;}
.y390{bottom:930.926575px;}
.y306{bottom:932.031000px;}
.y485{bottom:933.564058px;}
.y2e7{bottom:936.284077px;}
.y24b{bottom:942.236818px;}
.y432{bottom:942.402106px;}
.ya0{bottom:942.404964px;}
.y3e2{bottom:942.405024px;}
.y20a{bottom:942.406100px;}
.y17b{bottom:942.407358px;}
.y304{bottom:942.407417px;}
.y1c7{bottom:942.407480px;}
.y5a{bottom:942.407698px;}
.y339{bottom:942.407758px;}
.y38e{bottom:943.767000px;}
.y38c{bottom:943.767650px;}
.y484{bottom:945.469138px;}
.y38d{bottom:948.019500px;}
.y2e6{bottom:949.125459px;}
.y38f{bottom:956.607425px;}
.y38b{bottom:956.608075px;}
.y483{bottom:957.459337px;}
.y24a{bottom:957.883718px;}
.y431{bottom:958.049006px;}
.y9f{bottom:958.051864px;}
.y3e1{bottom:958.051924px;}
.y209{bottom:958.053000px;}
.y17a{bottom:958.054258px;}
.y303{bottom:958.054318px;}
.y59{bottom:958.054598px;}
.y338{bottom:958.054658px;}
.y1c6{bottom:958.055576px;}
.y2e5{bottom:961.965884px;}
.y482{bottom:969.365374px;}
.y389{bottom:969.448500px;}
.y387{bottom:969.449499px;}
.y248{bottom:971.574000px;}
.y208{bottom:971.745000px;}
.y249{bottom:973.615500px;}
.y247{bottom:973.616600px;}
.y388{bottom:973.701000px;}
.y430{bottom:973.781983px;}
.y9e{bottom:973.784842px;}
.y3e0{bottom:973.784902px;}
.y179{bottom:973.786040px;}
.y302{bottom:973.786100px;}
.y207{bottom:973.786318px;}
.y1c5{bottom:973.787358px;}
.y58{bottom:973.787576px;}
.y337{bottom:973.787636px;}
.y2e4{bottom:974.806309px;}
.y481{bottom:981.355573px;}
.y38a{bottom:982.288925px;}
.y386{bottom:982.289924px;}
.y245{bottom:987.307500px;}
.y2e3{bottom:987.647690px;}
.y244{bottom:989.258427px;}
.y246{bottom:989.263500px;}
.y42f{bottom:989.428884px;}
.y9d{bottom:989.431742px;}
.y3df{bottom:989.431802px;}
.y301{bottom:989.433000px;}
.y206{bottom:989.433218px;}
.y178{bottom:989.434136px;}
.y1c4{bottom:989.434258px;}
.y57{bottom:989.434476px;}
.y336{bottom:989.434536px;}
.y480{bottom:993.345772px;}
.y300{bottom:994.791000px;}
.y385{bottom:1002.019190px;}
.y4b{bottom:1003.719000px;}
.y9c{bottom:1005.163524px;}
.y3de{bottom:1005.163584px;}
.y205{bottom:1005.165000px;}
.y177{bottom:1005.165917px;}
.y1c3{bottom:1005.166040px;}
.y56{bottom:1005.166258px;}
.y203{bottom:1005.166318px;}
.y47f{bottom:1005.250852px;}
.y2e1{bottom:1007.376000px;}
.y204{bottom:1010.437500px;}
.y2e2{bottom:1011.628500px;}
.y47e{bottom:1017.242007px;}
.y243{bottom:1020.638305px;}
.y42e{bottom:1020.807566px;}
.y9b{bottom:1020.810424px;}
.y3dd{bottom:1020.810484px;}
.y55{bottom:1020.813158px;}
.y202{bottom:1020.813218px;}
.y384{bottom:1021.747500px;}
.y2e0{bottom:1027.106643px;}
.y47d{bottom:1029.147088px;}
.y200{bottom:1034.503500px;}
.y9a{bottom:1036.543402px;}
.y3dc{bottom:1036.543462px;}
.y176{bottom:1036.544600px;}
.y201{bottom:1036.545000px;}
.y1c2{bottom:1036.545917px;}
.y54{bottom:1036.546136px;}
.y47c{bottom:1041.137286px;}
.y2df{bottom:1041.478108px;}
.y383{bottom:1041.478143px;}
.y335{bottom:1041.817500px;}
.y4a{bottom:1045.474500px;}
.y174{bottom:1050.235500px;}
.y242{bottom:1052.016987px;}
.y99{bottom:1052.190302px;}
.y3db{bottom:1052.190362px;}
.y175{bottom:1052.191500px;}
.y53{bottom:1052.193036px;}
.y47b{bottom:1053.127485px;}
.y2de{bottom:1055.849572px;}
.y382{bottom:1055.849608px;}
.y47a{bottom:1065.033522px;}
.y42d{bottom:1067.919225px;}
.y98{bottom:1067.922084px;}
.y3da{bottom:1067.922144px;}
.y1c1{bottom:1067.924600px;}
.y52{bottom:1067.924818px;}
.y2dd{bottom:1070.136036px;}
.y381{bottom:1070.136072px;}
.y479{bottom:1077.023721px;}
.y1bf{bottom:1081.615500px;}
.y2db{bottom:1082.721000px;}
.y1be{bottom:1083.562535px;}
.y241{bottom:1083.566628px;}
.y97{bottom:1083.568984px;}
.y3d9{bottom:1083.569044px;}
.y1c0{bottom:1083.571500px;}
.y51{bottom:1083.571718px;}
.y2dc{bottom:1084.507500px;}
.y2da{bottom:1084.507536px;}
.y49{bottom:1087.312500px;}
.y478{bottom:1088.928801px;}
.y173{bottom:1097.263500px;}
.y2d9{bottom:1098.879000px;}
.y1bd{bottom:1099.294317px;}
.y333{bottom:1099.296468px;}
.y42c{bottom:1099.297908px;}
.y240{bottom:1099.298410px;}
.y96{bottom:1099.301962px;}
.y3d8{bottom:1099.302022px;}
.y50{bottom:1099.303500px;}
.y477{bottom:1100.919000px;}
.y334{bottom:1104.576000px;}
.y2{bottom:1127.505000px;}
.y4e{bottom:1128.630000px;}
.y117{bottom:1128.633166px;}
.y2bf{bottom:1128.633266px;}
.y37c{bottom:1128.635633px;}
.y172{bottom:1128.636329px;}
.y4c8{bottom:1128.637906px;}
.y476{bottom:1128.641355px;}
.ye1{bottom:1128.642000px;}
.h18{height:1.912824px;}
.h8{height:23.521113px;}
.h1b{height:26.462637px;}
.h19{height:27.319043px;}
.hb{height:28.371621px;}
.hd{height:31.524082px;}
.h9{height:33.622910px;}
.h10{height:33.623438px;}
.h1e{height:34.300031px;}
.hf{height:34.478653px;}
.h1d{height:36.564511px;}
.h1c{height:36.568337px;}
.ha{height:36.775371px;}
.h7{height:37.122363px;}
.h3{height:37.826367px;}
.h13{height:38.907166px;}
.h6{height:38.959629px;}
.hc{height:42.029824px;}
.h12{height:42.439528px;}
.h14{height:42.450600px;}
.h16{height:42.455728px;}
.h15{height:42.456600px;}
.h11{height:45.625634px;}
.h5{height:55.689609px;}
.h4{height:70.925098px;}
.he{height:73.551270px;}
.h17{height:85.249427px;}
.h1a{height:136.272833px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x73{left:58.423970px;}
.xe7{left:61.483975px;}
.xd{left:62.758950px;}
.x1d{left:63.949500px;}
.x56{left:65.395200px;}
.x71{left:67.267194px;}
.x9e{left:68.456550px;}
.x9f{left:71.688150px;}
.x17{left:74.323389px;}
.xe6{left:80.871812px;}
.xb8{left:82.573200px;}
.xa0{left:87.930600px;}
.xe8{left:89.290869px;}
.xa1{left:90.822000px;}
.xcf{left:92.182650px;}
.xb9{left:94.563750px;}
.xcc{left:99.070800px;}
.x74{left:100.686600px;}
.x72{left:101.963430px;}
.xd0{left:104.173200px;}
.xcd{left:108.680250px;}
.xcb{left:110.891250px;}
.x2e{left:115.400987px;}
.x75{left:117.184200px;}
.xb6{left:119.310150px;}
.xb7{left:131.215650px;}
.xd1{left:135.041397px;}
.x2d{left:139.552781px;}
.xd3{left:144.056550px;}
.x6e{left:146.777850px;}
.x18{left:152.985000px;}
.x1a{left:155.197500px;}
.xaf{left:164.559711px;}
.x19{left:169.824000px;}
.xea{left:172.202754px;}
.xe9{left:175.179980px;}
.x8a{left:182.154000px;}
.x7a{left:184.024500px;}
.x7b{left:190.998000px;}
.x6b{left:192.357222px;}
.x8b{left:194.059500px;}
.x6f{left:199.246500px;}
.xd2{left:202.479000px;}
.x28{left:218.043122px;}
.xe5{left:221.525441px;}
.x70{left:222.802500px;}
.xa3{left:224.334000px;}
.xd7{left:227.398077px;}
.x2f{left:229.182931px;}
.xba{left:233.518500px;}
.x67{left:235.389000px;}
.xb4{left:236.749500px;}
.xe4{left:238.023082px;}
.xa4{left:239.215500px;}
.x59{left:242.532000px;}
.x5a{left:246.103500px;}
.x29{left:252.824240px;}
.xd5{left:254.949915px;}
.xbd{left:258.519000px;}
.x68{left:263.112000px;}
.x3{left:264.897000px;}
.x78{left:267.108000px;}
.x87{left:268.980000px;}
.x4{left:270.936000px;}
.xb0{left:272.892000px;}
.x5{left:275.442000px;}
.x69{left:278.163000px;}
.x57{left:280.204500px;}
.x6{left:281.310000px;}
.x58{left:283.776000px;}
.x86{left:290.494500px;}
.x1f{left:298.828500px;}
.xe{left:302.995500px;}
.x2b{left:305.717410px;}
.x76{left:307.246500px;}
.x88{left:311.670000px;}
.x77{left:315.835500px;}
.x79{left:317.452500px;}
.x89{left:321.108000px;}
.x6a{left:326.888074px;}
.x2a{left:334.461178px;}
.x1e{left:342.624000px;}
.x1{left:345.326979px;}
.xdf{left:346.532590px;}
.xd6{left:347.982502px;}
.xb5{left:350.191500px;}
.x2c{left:351.553456px;}
.x22{left:358.015500px;}
.x7c{left:362.863500px;}
.x11{left:366.519000px;}
.x23{left:367.710000px;}
.x25{left:374.853000px;}
.x12{left:381.316500px;}
.x26{left:387.780000px;}
.x24{left:392.626500px;}
.x27{left:402.321000px;}
.x6c{left:404.617500px;}
.x85{left:409.890000px;}
.x7{left:413.802000px;}
.xbb{left:417.714000px;}
.x8{left:419.839500px;}
.xa2{left:421.030500px;}
.xd4{left:422.646000px;}
.x6d{left:428.512500px;}
.xbc{left:429.619500px;}
.xb3{left:441.626979px;}
.x21{left:444.311979px;}
.x1b{left:459.888665px;}
.x45{left:466.780500px;}
.x3f{left:471.543000px;}
.x4c{left:473.074500px;}
.x32{left:477.834509px;}
.xe2{left:478.940820px;}
.xec{left:480.212281px;}
.x46{left:481.323000px;}
.xa5{left:482.853000px;}
.xe0{left:483.869767px;}
.xc4{left:487.956000px;}
.x40{left:491.017500px;}
.x63{left:492.037500px;}
.xc7{left:494.844000px;}
.xa6{left:497.224500px;}
.xef{left:498.750848px;}
.xce{left:500.962045px;}
.xca{left:502.752000px;}
.xaa{left:506.749500px;}
.x9{left:508.448648px;}
.x5e{left:512.446137px;}
.xeb{left:513.802435px;}
.xa{left:519.079500px;}
.x5f{left:520.866380px;}
.x41{left:521.886000px;}
.x13{left:523.162500px;}
.xb{left:525.118500px;}
.x5b{left:529.879500px;}
.xf0{left:531.746131px;}
.x5c{left:533.452500px;}
.x14{left:537.958500px;}
.xde{left:543.062345px;}
.xf1{left:549.773988px;}
.xc2{left:551.224500px;}
.x95{left:554.881500px;}
.x54{left:556.837500px;}
.x48{left:559.389000px;}
.x91{left:563.641500px;}
.x55{left:565.171500px;}
.x49{left:567.042000px;}
.xdb{left:568.404590px;}
.xab{left:569.424000px;}
.x4d{left:571.039500px;}
.xac{left:576.396000px;}
.xdd{left:577.587000px;}
.x4e{left:579.118500px;}
.x7e{left:580.479000px;}
.x7f{left:584.305500px;}
.x82{left:587.791500px;}
.xc5{left:591.703500px;}
.xad{left:594.085500px;}
.x83{left:595.956000px;}
.xa7{left:597.571500px;}
.xdc{left:603.099631px;}
.x84{left:606.160500px;}
.xc6{left:608.457000px;}
.x64{left:610.327500px;}
.x90{left:612.793500px;}
.x5d{left:616.875000px;}
.x37{left:618.576000px;}
.x38{left:621.297000px;}
.x60{left:622.828557px;}
.xc8{left:623.848500px;}
.x97{left:626.995500px;}
.xe1{left:634.136283px;}
.xc9{left:635.839500px;}
.x35{left:637.710000px;}
.x96{left:642.303000px;}
.xc{left:646.980000px;}
.x36{left:649.615500px;}
.x39{left:650.806500px;}
.x3a{left:653.527500px;}
.xee{left:655.902118px;}
.x4a{left:659.565000px;}
.xd9{left:661.435500px;}
.x9c{left:663.307500px;}
.x20{left:664.661979px;}
.x4b{left:667.219500px;}
.xa8{left:669.685500px;}
.xd8{left:670.788289px;}
.xda{left:676.998000px;}
.x98{left:678.189000px;}
.x9d{left:679.719000px;}
.x92{left:681.846000px;}
.x99{left:684.907500px;}
.x93{left:687.883500px;}
.x62{left:689.754000px;}
.x33{left:692.391000px;}
.xed{left:694.934103px;}
.x3b{left:696.303000px;}
.x34{left:697.492500px;}
.x3c{left:699.024000px;}
.xb1{left:701.914500px;}
.xbe{left:703.701000px;}
.x4f{left:705.912000px;}
.xc3{left:708.547500px;}
.x50{left:713.991000px;}
.x80{left:715.776000px;}
.xf{left:716.967000px;}
.x81{left:719.092500px;}
.xbf{left:722.835000px;}
.xae{left:726.661500px;}
.x15{left:729.382500px;}
.x10{left:730.402500px;}
.x7d{left:732.784500px;}
.x47{left:738.991500px;}
.x51{left:740.437500px;}
.x16{left:744.180000px;}
.x52{left:746.050500px;}
.x9b{left:749.536500px;}
.x3d{left:755.574000px;}
.xe3{left:757.271808px;}
.x3e{left:763.057500px;}
.x30{left:764.245234px;}
.x8e{left:765.864000px;}
.xa9{left:768.246000px;}
.x9a{left:770.797500px;}
.x65{left:776.664000px;}
.x42{left:782.532000px;}
.x94{left:784.318500px;}
.x1c{left:788.223709px;}
.x43{left:798.774000px;}
.x66{left:800.220000px;}
.xb2{left:806.853000px;}
.x44{left:810.679500px;}
.x8f{left:813.912000px;}
.xc0{left:816.463500px;}
.x61{left:820.798668px;}
.x31{left:823.176950px;}
.x8c{left:828.453000px;}
.x53{left:830.835000px;}
.x8d{left:832.024500px;}
.xc1{left:833.130000px;}
@media print{
.v9{vertical-align:-34.464838pt;}
.v5{vertical-align:-15.424000pt;}
.v6{vertical-align:-6.350118pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.720461pt;}
.v1{vertical-align:3.627145pt;}
.vb{vertical-align:6.352000pt;}
.vf{vertical-align:8.769838pt;}
.v3{vertical-align:10.886094pt;}
.v4{vertical-align:15.408825pt;}
.va{vertical-align:39.001577pt;}
.vc{vertical-align:40.821333pt;}
.vd{vertical-align:45.358072pt;}
.v7{vertical-align:74.379099pt;}
.v8{vertical-align:79.822910pt;}
.ve{vertical-align:119.431119pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.022726pt;}
.ls1f{letter-spacing:0.028206pt;}
.ls19{letter-spacing:0.039018pt;}
.ls1d{letter-spacing:0.041420pt;}
.ls1e{letter-spacing:0.148775pt;}
.ls7{letter-spacing:0.709870pt;}
.ls36{letter-spacing:0.856921pt;}
.ls37{letter-spacing:0.992940pt;}
.ls8{letter-spacing:0.994668pt;}
.ls6{letter-spacing:1.011671pt;}
.ls34{letter-spacing:1.015922pt;}
.ls21{letter-spacing:1.054179pt;}
.ls22{letter-spacing:1.058429pt;}
.lsf{letter-spacing:2.360533pt;}
.ls16{letter-spacing:2.608859pt;}
.ls9{letter-spacing:2.659200pt;}
.ls38{letter-spacing:2.761190pt;}
.ls10{letter-spacing:8.386671pt;}
.lsb{letter-spacing:8.692722pt;}
.ls18{letter-spacing:8.722477pt;}
.ls2d{letter-spacing:8.940427pt;}
.ls11{letter-spacing:8.994524pt;}
.ls35{letter-spacing:8.998774pt;}
.ls14{letter-spacing:9.296325pt;}
.ls4{letter-spacing:9.300575pt;}
.ls2a{letter-spacing:9.598126pt;}
.ls29{letter-spacing:9.602376pt;}
.ls1b{letter-spacing:9.644506pt;}
.lsd{letter-spacing:9.899927pt;}
.lsc{letter-spacing:9.904178pt;}
.ls12{letter-spacing:10.805330pt;}
.lsa{letter-spacing:11.111382pt;}
.ls2e{letter-spacing:12.384172pt;}
.ls32{letter-spacing:12.570922pt;}
.ls31{letter-spacing:12.873144pt;}
.ls20{letter-spacing:14.091305pt;}
.ls1a{letter-spacing:14.099249pt;}
.ls2{letter-spacing:14.596570pt;}
.ls1{letter-spacing:14.900725pt;}
.ls17{letter-spacing:15.686012pt;}
.ls2f{letter-spacing:15.895368pt;}
.ls28{letter-spacing:16.250503pt;}
.ls30{letter-spacing:16.499813pt;}
.ls3{letter-spacing:16.521321pt;}
.ls2c{letter-spacing:16.824202pt;}
.ls33{letter-spacing:16.858356pt;}
.ls0{letter-spacing:16.922845pt;}
.ls2b{letter-spacing:18.367361pt;}
.lse{letter-spacing:22.027231pt;}
.ls13{letter-spacing:22.031482pt;}
.ls23{letter-spacing:25.925141pt;}
.ls24{letter-spacing:26.231193pt;}
.ls1c{letter-spacing:28.981409pt;}
.ls25{letter-spacing:31.400069pt;}
.ls26{letter-spacing:31.404319pt;}
.ls27{letter-spacing:617.845117pt;}
.ws6{word-spacing:-42.507200pt;}
.wsb{word-spacing:-33.623195pt;}
.ws8{word-spacing:-30.792216pt;}
.wsd{word-spacing:-29.753600pt;}
.wsa{word-spacing:-27.629333pt;}
.ws15{word-spacing:-21.933096pt;}
.ws1{word-spacing:-21.538128pt;}
.ws2{word-spacing:-12.454610pt;}
.ws13{word-spacing:-11.209008pt;}
.ws5{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws14{word-spacing:-9.963406pt;}
.ws7{word-spacing:-9.564000pt;}
.ws4{word-spacing:-8.943403pt;}
.wsc{word-spacing:-8.717805pt;}
.ws16{word-spacing:-8.501200pt;}
.ws9{word-spacing:-8.095395pt;}
.wsf{word-spacing:-3.022262pt;}
.ws11{word-spacing:-3.013760pt;}
.ws10{word-spacing:-2.856484pt;}
.ws12{word-spacing:-2.750216pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:6.338157pt;}
._3{margin-left:-15.416526pt;}
._26{margin-left:-4.840944pt;}
._e{margin-left:-3.855473pt;}
._9{margin-left:-2.773560pt;}
._8{margin-left:-1.706218pt;}
._2{width:1.693876pt;}
._1{width:2.890746pt;}
._4{width:3.921240pt;}
._5{width:4.817838pt;}
._b{width:6.121037pt;}
._c{width:7.075676pt;}
._7{width:8.079667pt;}
._6{width:9.070498pt;}
._14{width:9.981642pt;}
._d{width:11.196396pt;}
._12{width:13.678817pt;}
._0{width:14.919840pt;}
._f{width:16.034652pt;}
._23{width:17.097839pt;}
._11{width:18.060658pt;}
._13{width:19.799854pt;}
._22{width:21.597908pt;}
._24{width:22.681842pt;}
._10{width:23.901799pt;}
._a{width:26.839046pt;}
._80{width:28.998412pt;}
._3c{width:34.093212pt;}
._51{width:35.320786pt;}
._25{width:37.499852pt;}
._3e{width:40.798959pt;}
._41{width:51.374452pt;}
._4d{width:53.037287pt;}
._46{width:54.499493pt;}
._3d{width:59.797441pt;}
._49{width:61.718712pt;}
._42{width:63.208122pt;}
._48{width:71.042828pt;}
._67{width:93.162951pt;}
._79{width:99.457239pt;}
._65{width:100.348165pt;}
._7d{width:102.483666pt;}
._7e{width:107.172928pt;}
._68{width:119.479265pt;}
._7b{width:123.447625pt;}
._3f{width:125.977583pt;}
._4e{width:132.387487pt;}
._7c{width:134.410773pt;}
._72{width:137.746644pt;}
._6e{width:140.773071pt;}
._45{width:142.480112pt;}
._4c{width:144.044333pt;}
._77{width:145.506102pt;}
._55{width:147.332597pt;}
._69{width:153.535072pt;}
._40{width:156.054828pt;}
._76{width:158.455567pt;}
._19{width:159.591327pt;}
._50{width:161.937659pt;}
._56{width:163.814287pt;}
._5e{width:168.000278pt;}
._59{width:169.058264pt;}
._71{width:172.431540pt;}
._53{width:176.950778pt;}
._1c{width:178.419785pt;}
._74{width:180.881733pt;}
._6b{width:181.952884pt;}
._7a{width:185.128932pt;}
._7f{width:186.183081pt;}
._52{width:189.250314pt;}
._47{width:190.814535pt;}
._54{width:192.089715pt;}
._5b{width:195.313370pt;}
._1f{width:196.520540pt;}
._2c{width:200.835749pt;}
._2b{width:208.704460pt;}
._31{width:212.853046pt;}
._75{width:214.614057pt;}
._34{width:215.981487pt;}
._6f{width:223.418337pt;}
._70{width:224.598304pt;}
._33{width:226.761009pt;}
._43{width:227.747148pt;}
._4a{width:229.311369pt;}
._35{width:231.263244pt;}
._6d{width:232.872108pt;}
._6a{width:233.789801pt;}
._6c{width:234.884756pt;}
._4b{width:237.628943pt;}
._44{width:239.193164pt;}
._78{width:242.563039pt;}
._73{width:244.545956pt;}
._2e{width:245.905711pt;}
._1b{width:251.757937pt;}
._5d{width:252.781482pt;}
._62{width:254.254763pt;}
._57{width:256.702235pt;}
._20{width:257.865199pt;}
._4f{width:259.596044pt;}
._28{width:263.452188pt;}
._5c{width:267.213119pt;}
._5f{width:268.271105pt;}
._2a{width:269.501642pt;}
._1e{width:273.112952pt;}
._1a{width:281.532540pt;}
._60{width:284.555130pt;}
._3a{width:285.500900pt;}
._21{width:287.415371pt;}
._29{width:294.597184pt;}
._2f{width:298.973602pt;}
._1d{width:302.731132pt;}
._30{width:316.724108pt;}
._3b{width:330.815697pt;}
._38{width:333.264042pt;}
._37{width:334.386201pt;}
._2d{width:337.358220pt;}
._27{width:339.180878pt;}
._39{width:373.185678pt;}
._36{width:388.351818pt;}
._32{width:414.807553pt;}
._61{width:415.820896pt;}
._16{width:443.929264pt;}
._5a{width:445.847134pt;}
._17{width:449.839298pt;}
._15{width:457.864431pt;}
._18{width:490.719868pt;}
._63{width:492.603734pt;}
._58{width:529.668966pt;}
._64{width:532.695393pt;}
._66{width:875.953447pt;}
.fs5{font-size:23.788267pt;}
.fs10{font-size:26.763200pt;}
.fsf{font-size:27.629333pt;}
.fs8{font-size:28.693867pt;}
.fsd{font-size:29.753600pt;}
.fsa{font-size:31.882133pt;}
.fs6{font-size:34.004800pt;}
.fsc{font-size:34.005333pt;}
.fs7{font-size:37.193067pt;}
.fs4{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs3{font-size:39.402133pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:51.009067pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fsb{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y4f{bottom:42.160000pt;}
.ye0{bottom:69.694861pt;}
.y2d8{bottom:69.696331pt;}
.y298{bottom:69.696821pt;}
.y28e{bottom:69.697152pt;}
.y23f{bottom:69.699810pt;}
.y2cc{bottom:70.072711pt;}
.y3fb{bottom:70.527099pt;}
.y95{bottom:70.532920pt;}
.y3d7{bottom:70.532973pt;}
.ye5{bottom:71.509765pt;}
.y15c{bottom:74.305927pt;}
.y2f9{bottom:75.515785pt;}
.y37b{bottom:75.818764pt;}
.y171{bottom:75.819382pt;}
.y103{bottom:77.330149pt;}
.y475{bottom:77.940649pt;}
.y1bc{bottom:79.069009pt;}
.y4{bottom:81.066667pt;}
.yde{bottom:81.864533pt;}
.y3a5{bottom:82.244956pt;}
.y380{bottom:82.319232pt;}
.y2a9{bottom:83.225838pt;}
.ydf{bottom:83.678667pt;}
.ydd{bottom:83.678977pt;}
.y2d7{bottom:83.680137pt;}
.y28d{bottom:83.680958pt;}
.y23e{bottom:83.683616pt;}
.y2ca{bottom:83.981067pt;}
.y3fa{bottom:84.510905pt;}
.y3d6{bottom:84.516779pt;}
.y94{bottom:84.517789pt;}
.ye4{bottom:85.493571pt;}
.y15a{bottom:86.551067pt;}
.y37a{bottom:87.308135pt;}
.y170{bottom:87.308754pt;}
.y15b{bottom:88.289733pt;}
.y159{bottom:88.292990pt;}
.y474{bottom:88.599453pt;}
.y2cb{bottom:88.743200pt;}
.y2f8{bottom:89.424141pt;}
.y102{bottom:91.238505pt;}
.y1bb{bottom:93.052816pt;}
.y3{bottom:93.893333pt;}
.y3a4{bottom:96.228762pt;}
.y37f{bottom:96.303038pt;}
.y2a8{bottom:97.209644pt;}
.ydc{bottom:97.587333pt;}
.yda{bottom:97.588032pt;}
.y28c{bottom:97.589314pt;}
.y2d6{bottom:97.589556pt;}
.y297{bottom:97.590046pt;}
.y23d{bottom:97.591972pt;}
.y2c8{bottom:97.967623pt;}
.y3f9{bottom:98.419261pt;}
.y1ff{bottom:98.420032pt;}
.y42b{bottom:98.423604pt;}
.y93{bottom:98.426145pt;}
.y3d5{bottom:98.426198pt;}
.y379{bottom:98.721847pt;}
.y16f{bottom:98.723315pt;}
.y473{bottom:99.181747pt;}
.ye3{bottom:99.401927pt;}
.y158{bottom:102.201346pt;}
.ydb{bottom:102.349600pt;}
.y2c9{bottom:102.651867pt;}
.y2fc{bottom:103.408177pt;}
.y2f7{bottom:103.409009pt;}
.y101{bottom:105.222311pt;}
.y4d{bottom:106.582787pt;}
.y1ba{bottom:106.961171pt;}
.y472{bottom:109.839701pt;}
.y378{bottom:110.136408pt;}
.y16e{bottom:110.137027pt;}
.y3a3{bottom:110.137118pt;}
.y37e{bottom:110.286844pt;}
.y2a7{bottom:111.118000pt;}
.y2a5{bottom:111.118461pt;}
.yd9{bottom:111.571838pt;}
.y2d5{bottom:111.573362pt;}
.y28b{bottom:111.574183pt;}
.y23c{bottom:111.575778pt;}
.y2c7{bottom:111.875979pt;}
.y3f8{bottom:112.403067pt;}
.y1fe{bottom:112.403838pt;}
.y3f6{bottom:112.404903pt;}
.y42a{bottom:112.407410pt;}
.y92{bottom:112.409951pt;}
.y3d4{bottom:112.410004pt;}
.ye2{bottom:113.385733pt;}
.y2a6{bottom:115.880267pt;}
.y157{bottom:116.185152pt;}
.y3f7{bottom:117.089733pt;}
.y2fb{bottom:117.316533pt;}
.y2f6{bottom:117.317365pt;}
.yff{bottom:117.392000pt;}
.y100{bottom:119.130667pt;}
.yfe{bottom:119.131127pt;}
.y4c{bottom:119.281867pt;}
.y471{bottom:120.497656pt;}
.y1b9{bottom:120.944977pt;}
.y377{bottom:121.550119pt;}
.y16d{bottom:121.550738pt;}
.y2fa{bottom:122.078667pt;}
.y3a2{bottom:124.120924pt;}
.y37d{bottom:124.195200pt;}
.y2a4{bottom:125.102267pt;}
.y2a2{bottom:125.103429pt;}
.yd8{bottom:125.480194pt;}
.y28a{bottom:125.482539pt;}
.y23b{bottom:125.484134pt;}
.y2c6{bottom:125.859785pt;}
.y1fd{bottom:126.312194pt;}
.y3f5{bottom:126.313259pt;}
.y429{bottom:126.315766pt;}
.y91{bottom:126.318307pt;}
.y3d3{bottom:126.318360pt;}
.y2a3{bottom:129.788933pt;}
.y156{bottom:130.168958pt;}
.y470{bottom:131.080800pt;}
.y2f5{bottom:131.301171pt;}
.y376{bottom:132.963830pt;}
.y16c{bottom:132.965299pt;}
.yfd{bottom:133.114933pt;}
.y1b8{bottom:134.853333pt;}
.y1b7{bottom:134.853527pt;}
.y3a1{bottom:138.030343pt;}
.y2a1{bottom:139.011785pt;}
.y296{bottom:139.013312pt;}
.y4c7{bottom:139.095216pt;}
.yd7{bottom:139.464000pt;}
.yd5{bottom:139.464924pt;}
.y2d4{bottom:139.465524pt;}
.y289{bottom:139.466345pt;}
.y23a{bottom:139.469002pt;}
.y2c5{bottom:139.768141pt;}
.y1fc{bottom:140.296000pt;}
.y3f4{bottom:140.297065pt;}
.y1fa{bottom:140.298486pt;}
.y428{bottom:140.299572pt;}
.y90{bottom:140.302113pt;}
.y3d2{bottom:140.302166pt;}
.y46f{bottom:141.738754pt;}
.y48{bottom:141.958699pt;}
.y155{bottom:144.077314pt;}
.yd6{bottom:144.150667pt;}
.y375{bottom:144.378391pt;}
.y16b{bottom:144.379010pt;}
.y1fb{bottom:144.982667pt;}
.y2f4{bottom:145.209527pt;}
.yfc{bottom:145.285333pt;}
.y1b5{bottom:147.024000pt;}
.yfb{bottom:147.024194pt;}
.y1b6{bottom:148.837333pt;}
.y1b4{bottom:148.839570pt;}
.y116{bottom:149.368953pt;}
.y4c5{bottom:149.678360pt;}
.y3a0{bottom:152.014149pt;}
.y46e{bottom:152.321048pt;}
.y2a0{bottom:152.995591pt;}
.y295{bottom:152.997118pt;}
.yd4{bottom:153.374343pt;}
.y288{bottom:153.374701pt;}
.y2c4{bottom:153.753009pt;}
.y39c{bottom:154.128985pt;}
.y3f3{bottom:154.280871pt;}
.y1f9{bottom:154.282292pt;}
.y427{bottom:154.284441pt;}
.y8f{bottom:154.286981pt;}
.y3d1{bottom:154.287035pt;}
.y47{bottom:154.733333pt;}
.y16a{bottom:155.793571pt;}
.y154{bottom:158.062183pt;}
.yf9{bottom:159.193333pt;}
.y4c4{bottom:160.336314pt;}
.y115{bottom:160.859174pt;}
.yfa{bottom:161.008000pt;}
.yf8{bottom:161.009880pt;}
.y374{bottom:161.914667pt;}
.y1b3{bottom:162.747925pt;}
.y46d{bottom:162.979853pt;}
.y2f3{bottom:163.880000pt;}
.y39f{bottom:165.922505pt;}
.y39b{bottom:166.828064pt;}
.y29f{bottom:166.905009pt;}
.y294{bottom:166.905474pt;}
.y169{bottom:167.207282pt;}
.yd3{bottom:167.358149pt;}
.y287{bottom:167.359570pt;}
.y239{bottom:167.361164pt;}
.y2d1{bottom:167.735644pt;}
.y2d3{bottom:167.736000pt;}
.y2c3{bottom:167.736816pt;}
.y3f2{bottom:168.190289pt;}
.y1f8{bottom:168.190647pt;}
.y8e{bottom:168.195337pt;}
.y3d0{bottom:168.195391pt;}
.y4c3{bottom:170.918608pt;}
.y153{bottom:171.970539pt;}
.y114{bottom:172.272886pt;}
.y2d2{bottom:172.421333pt;}
.y46c{bottom:173.637807pt;}
.yf7{bottom:174.918236pt;}
.y1b2{bottom:176.731732pt;}
.y168{bottom:178.696654pt;}
.y373{bottom:179.451619pt;}
.y39a{bottom:179.602699pt;}
.y39e{bottom:179.906311pt;}
.y29e{bottom:180.888816pt;}
.y293{bottom:180.890343pt;}
.yd2{bottom:181.266505pt;}
.y286{bottom:181.267925pt;}
.y4c2{bottom:181.576562pt;}
.y2d0{bottom:181.644000pt;}
.y2c2{bottom:181.645171pt;}
.y3f1{bottom:182.174096pt;}
.y1f7{bottom:182.175516pt;}
.y426{bottom:182.176602pt;}
.y8d{bottom:182.179143pt;}
.y3cf{bottom:182.179197pt;}
.y113{bottom:183.686597pt;}
.y46b{bottom:184.220101pt;}
.y152{bottom:185.954345pt;}
.y2cf{bottom:186.406667pt;}
.yf6{bottom:188.902042pt;}
.y2ff{bottom:189.052064pt;}
.y167{bottom:190.111215pt;}
.y1b1{bottom:190.640087pt;}
.y372{bottom:192.226254pt;}
.y4c1{bottom:192.235367pt;}
.y399{bottom:192.377333pt;}
.y39d{bottom:193.814667pt;}
.y29d{bottom:194.797171pt;}
.y292{bottom:194.798699pt;}
.y46a{bottom:194.878055pt;}
.y112{bottom:195.101158pt;}
.y3c{bottom:195.176334pt;}
.yd1{bottom:195.250311pt;}
.y285{bottom:195.251732pt;}
.y238{bottom:195.480740pt;}
.y2c1{bottom:195.628977pt;}
.y3f0{bottom:196.082451pt;}
.y1f6{bottom:196.083872pt;}
.y8c{bottom:196.087499pt;}
.y3ce{bottom:196.087553pt;}
.y151{bottom:199.862701pt;}
.y166{bottom:201.524927pt;}
.y2fe{bottom:201.826699pt;}
.yf5{bottom:202.810398pt;}
.y4c0{bottom:202.817661pt;}
.y1b0{bottom:204.624956pt;}
.y371{bottom:204.925333pt;}
.y469{bottom:205.461199pt;}
.y111{bottom:206.514869pt;}
.y29c{bottom:208.780977pt;}
.y291{bottom:208.782505pt;}
.yd0{bottom:209.158861pt;}
.y284{bottom:209.160087pt;}
.y3b{bottom:209.160141pt;}
.y237{bottom:209.464546pt;}
.y2cd{bottom:209.535646pt;}
.y2c0{bottom:209.537333pt;}
.y3ef{bottom:210.066258pt;}
.y1f5{bottom:210.067678pt;}
.y425{bottom:210.069827pt;}
.y8b{bottom:210.072368pt;}
.y3cd{bottom:210.072421pt;}
.y4bf{bottom:213.475615pt;}
.y150{bottom:213.847570pt;}
.y2ce{bottom:214.298667pt;}
.y2fd{bottom:214.601333pt;}
.y468{bottom:216.119153pt;}
.yf4{bottom:216.794204pt;}
.y110{bottom:217.929430pt;}
.y1af{bottom:218.533312pt;}
.y165{bottom:219.062052pt;}
.y299{bottom:220.950667pt;}
.yce{bottom:221.329333pt;}
.y29a{bottom:222.689333pt;}
.y290{bottom:222.690861pt;}
.y3a{bottom:223.068496pt;}
.ycf{bottom:223.142667pt;}
.ycd{bottom:223.143644pt;}
.y283{bottom:223.144956pt;}
.y236{bottom:223.449415pt;}
.y3a9{bottom:223.748985pt;}
.y3ee{bottom:223.975676pt;}
.y1f4{bottom:223.976034pt;}
.y424{bottom:223.978183pt;}
.y8a{bottom:223.980724pt;}
.y3cc{bottom:223.980777pt;}
.y4be{bottom:224.057909pt;}
.y467{bottom:226.701447pt;}
.y29b{bottom:227.452000pt;}
.y14f{bottom:227.755925pt;}
.y10f{bottom:229.343141pt;}
.yf3{bottom:230.703623pt;}
.y1ae{bottom:232.517118pt;}
.y4bd{bottom:234.716713pt;}
.y332{bottom:235.239186pt;}
.y370{bottom:235.239850pt;}
.ycb{bottom:235.313333pt;}
.y164{bottom:236.522667pt;}
.y3a8{bottom:236.523619pt;}
.y28f{bottom:236.674667pt;}
.ycc{bottom:237.052000pt;}
.y282{bottom:237.053312pt;}
.y39{bottom:237.053365pt;}
.yca{bottom:237.054486pt;}
.y235{bottom:237.357771pt;}
.y466{bottom:237.359402pt;}
.y3ed{bottom:237.959482pt;}
.y1f3{bottom:237.960903pt;}
.y423{bottom:237.961989pt;}
.y89{bottom:237.964530pt;}
.y3cb{bottom:237.964583pt;}
.y2f2{bottom:239.471651pt;}
.y10e{bottom:240.832513pt;}
.y14e{bottom:241.739732pt;}
.yf2{bottom:244.687429pt;}
.y4bc{bottom:245.374668pt;}
.y1ad{bottom:246.425474pt;}
.y465{bottom:248.018206pt;}
.y331{bottom:249.147541pt;}
.y36f{bottom:249.148206pt;}
.y3a7{bottom:249.222699pt;}
.y281{bottom:251.037118pt;}
.y38{bottom:251.037171pt;}
.yc9{bottom:251.038292pt;}
.y234{bottom:251.341577pt;}
.y3ec{bottom:251.867838pt;}
.y1f2{bottom:251.869259pt;}
.y422{bottom:251.870345pt;}
.y88{bottom:251.872886pt;}
.y3ca{bottom:251.872939pt;}
.y2f1{bottom:252.170730pt;}
.y10d{bottom:252.247074pt;}
.y163{bottom:254.060064pt;}
.y14d{bottom:255.648087pt;}
.y4bb{bottom:255.956962pt;}
.yf1{bottom:258.595785pt;}
.y464{bottom:258.600500pt;}
.y1ac{bottom:260.410343pt;}
.y3a6{bottom:261.997333pt;}
.y330{bottom:263.132410pt;}
.y36e{bottom:263.133075pt;}
.y10c{bottom:263.660786pt;}
.y2f0{bottom:264.945365pt;}
.y280{bottom:264.945474pt;}
.y37{bottom:264.945527pt;}
.yc8{bottom:264.946647pt;}
.y233{bottom:265.249933pt;}
.y3eb{bottom:265.851644pt;}
.y1f1{bottom:265.853065pt;}
.y421{bottom:265.855214pt;}
.y87{bottom:265.857755pt;}
.y3c9{bottom:265.857808pt;}
.y4c6{bottom:266.464445pt;}
.y4ba{bottom:266.614916pt;}
.y162{bottom:266.834699pt;}
.y463{bottom:269.258454pt;}
.y14c{bottom:269.632956pt;}
.yf0{bottom:272.579591pt;}
.y2be{bottom:272.655995pt;}
.y1ab{bottom:274.318699pt;}
.y10b{bottom:275.074497pt;}
.y32f{bottom:277.040766pt;}
.y36d{bottom:277.041431pt;}
.y4b9{bottom:277.198060pt;}
.y2ef{bottom:277.720000pt;}
.y36{bottom:278.929333pt;}
.y27f{bottom:278.930343pt;}
.y34{bottom:278.930505pt;}
.yc7{bottom:278.931516pt;}
.y232{bottom:279.234801pt;}
.y161{bottom:279.609333pt;}
.y3ea{bottom:279.760000pt;}
.y1f0{bottom:279.761421pt;}
.y420{bottom:279.763570pt;}
.y86{bottom:279.766110pt;}
.y3c8{bottom:279.766164pt;}
.y462{bottom:279.840748pt;}
.y14b{bottom:283.541312pt;}
.y35{bottom:283.616000pt;}
.y2bd{bottom:284.145366pt;}
.y3e9{bottom:284.522667pt;}
.yef{bottom:286.489009pt;}
.y10a{bottom:286.489058pt;}
.y4b8{bottom:287.856014pt;}
.y1aa{bottom:288.302505pt;}
.y461{bottom:290.499553pt;}
.y32e{bottom:291.024572pt;}
.y36c{bottom:291.025237pt;}
.y46{bottom:292.837689pt;}
.y27e{bottom:292.838699pt;}
.y33{bottom:292.838861pt;}
.yc6{bottom:292.839872pt;}
.y231{bottom:293.143157pt;}
.y1ef{bottom:293.746289pt;}
.y41f{bottom:293.747376pt;}
.y85{bottom:293.749917pt;}
.y3c7{bottom:293.749970pt;}
.y2bc{bottom:295.559928pt;}
.y14a{bottom:297.525118pt;}
.y4b7{bottom:298.438308pt;}
.yee{bottom:300.472816pt;}
.y460{bottom:301.157507pt;}
.y1a9{bottom:302.210861pt;}
.y109{bottom:304.025333pt;}
.y32d{bottom:304.932928pt;}
.y36b{bottom:304.933593pt;}
.y45{bottom:306.821495pt;}
.y27d{bottom:306.822505pt;}
.y32{bottom:306.822667pt;}
.y30{bottom:306.823623pt;}
.yc5{bottom:306.823678pt;}
.y2bb{bottom:306.973639pt;}
.y230{bottom:307.126963pt;}
.y1ee{bottom:307.654645pt;}
.y41e{bottom:307.655732pt;}
.y84{bottom:307.658272pt;}
.y3c6{bottom:307.658326pt;}
.y4b6{bottom:309.097113pt;}
.y129{bottom:309.847676pt;}
.y149{bottom:311.433474pt;}
.y31{bottom:311.508000pt;}
.y45f{bottom:311.739801pt;}
.yed{bottom:314.381171pt;}
.y1a7{bottom:314.381333pt;}
.y1a8{bottom:316.194667pt;}
.y1a6{bottom:316.195591pt;}
.y2ba{bottom:318.387350pt;}
.y32c{bottom:318.917797pt;}
.y36a{bottom:318.918461pt;}
.y4b5{bottom:319.755067pt;}
.y44{bottom:320.729851pt;}
.y27c{bottom:320.730861pt;}
.y2f{bottom:320.731979pt;}
.yc4{bottom:320.732034pt;}
.y22f{bottom:321.035319pt;}
.y108{bottom:321.562286pt;}
.y1ed{bottom:321.638451pt;}
.y83{bottom:321.643141pt;}
.y3c5{bottom:321.643195pt;}
.y45e{bottom:322.398606pt;}
.y128{bottom:323.831482pt;}
.y148{bottom:325.418343pt;}
.yec{bottom:328.364977pt;}
.y2b9{bottom:329.801911pt;}
.y1a5{bottom:330.105009pt;}
.y4b4{bottom:330.337361pt;}
.y45d{bottom:332.980899pt;}
.y107{bottom:334.336921pt;}
.y43{bottom:334.713657pt;}
.y27b{bottom:334.714667pt;}
.y2e{bottom:334.715785pt;}
.y279{bottom:334.715838pt;}
.yc3{bottom:334.716903pt;}
.y22e{bottom:335.020188pt;}
.y1ec{bottom:335.546807pt;}
.y41d{bottom:335.548956pt;}
.y82{bottom:335.551497pt;}
.y3c4{bottom:335.551550pt;}
.y127{bottom:337.739838pt;}
.y147{bottom:339.326699pt;}
.y27a{bottom:339.401333pt;}
.yea{bottom:340.534667pt;}
.y4b3{bottom:340.995315pt;}
.y2b8{bottom:341.215622pt;}
.yeb{bottom:342.273333pt;}
.ye9{bottom:342.274861pt;}
.y45c{bottom:343.638854pt;}
.y1a4{bottom:344.088816pt;}
.y32b{bottom:346.809959pt;}
.y369{bottom:346.810623pt;}
.y106{bottom:347.036000pt;}
.y42{bottom:348.623076pt;}
.y2d{bottom:348.624141pt;}
.y278{bottom:348.624194pt;}
.yc2{bottom:348.625259pt;}
.y22d{bottom:348.928544pt;}
.y1eb{bottom:349.531676pt;}
.y81{bottom:349.535303pt;}
.y3c3{bottom:349.535356pt;}
.y2b6{bottom:351.269333pt;}
.y4b2{bottom:351.578459pt;}
.y126{bottom:351.723644pt;}
.y2b7{bottom:352.629333pt;}
.y2b5{bottom:352.630391pt;}
.y146{bottom:353.310505pt;}
.y45b{bottom:354.221147pt;}
.ye7{bottom:354.444000pt;}
.ye6{bottom:356.255934pt;}
.ye8{bottom:356.258667pt;}
.y1a3{bottom:357.997171pt;}
.y4b1{bottom:362.236414pt;}
.y41{bottom:362.606882pt;}
.y277{bottom:362.608000pt;}
.y2c{bottom:362.609009pt;}
.yc1{bottom:362.609065pt;}
.y275{bottom:362.610176pt;}
.y22c{bottom:362.912350pt;}
.y1ea{bottom:363.440032pt;}
.y41c{bottom:363.441118pt;}
.y80{bottom:363.443659pt;}
.y3c2{bottom:363.443712pt;}
.y124{bottom:363.893333pt;}
.y45a{bottom:364.879952pt;}
.y125{bottom:365.632000pt;}
.y123{bottom:365.633118pt;}
.y276{bottom:367.294667pt;}
.y2b4{bottom:370.166667pt;}
.y1a2{bottom:371.980977pt;}
.y4b0{bottom:372.894368pt;}
.y366{bottom:375.231838pt;}
.y368{bottom:375.232000pt;}
.y459{bottom:375.537906pt;}
.y40{bottom:376.515238pt;}
.y2b{bottom:376.517365pt;}
.yc0{bottom:376.517421pt;}
.y274{bottom:376.518532pt;}
.y22b{bottom:376.820706pt;}
.y32a{bottom:377.423644pt;}
.y1e9{bottom:377.423838pt;}
.y41b{bottom:377.424924pt;}
.y3c1{bottom:377.427518pt;}
.y7f{bottom:377.428528pt;}
.y144{bottom:379.389333pt;}
.y122{bottom:379.616924pt;}
.y367{bottom:379.917333pt;}
.y145{bottom:381.202667pt;}
.y143{bottom:381.203838pt;}
.y4af{bottom:383.476662pt;}
.y1a1{bottom:385.889333pt;}
.y19f{bottom:385.891676pt;}
.y458{bottom:386.120200pt;}
.y105{bottom:386.191587pt;}
.y2b3{bottom:387.704064pt;}
.y365{bottom:389.140194pt;}
.y3f{bottom:390.499044pt;}
.y2a{bottom:390.501171pt;}
.ybf{bottom:390.502289pt;}
.y273{bottom:390.503401pt;}
.y1a0{bottom:390.652000pt;}
.y22a{bottom:390.804512pt;}
.y329{bottom:391.332000pt;}
.y1e8{bottom:391.332194pt;}
.y327{bottom:391.333171pt;}
.y41a{bottom:391.334343pt;}
.y7e{bottom:391.336884pt;}
.y3c0{bottom:391.336937pt;}
.y121{bottom:393.526343pt;}
.y4ae{bottom:394.135466pt;}
.y142{bottom:395.112194pt;}
.y328{bottom:396.094667pt;}
.y457{bottom:396.778155pt;}
.y104{bottom:398.890667pt;}
.y19e{bottom:399.875482pt;}
.y2b2{bottom:400.478699pt;}
.y364{bottom:403.124000pt;}
.y362{bottom:403.124924pt;}
.y1e6{bottom:403.502667pt;}
.y3e{bottom:404.408462pt;}
.ybe{bottom:404.410645pt;}
.y272{bottom:404.411757pt;}
.y229{bottom:404.713930pt;}
.y4ad{bottom:404.717760pt;}
.y1e7{bottom:405.316000pt;}
.y326{bottom:405.316977pt;}
.y419{bottom:405.318149pt;}
.y7d{bottom:405.320690pt;}
.y3bf{bottom:405.320743pt;}
.y1e5{bottom:405.321863pt;}
.y140{bottom:407.281333pt;}
.y456{bottom:407.361299pt;}
.y120{bottom:407.510149pt;}
.y363{bottom:407.810667pt;}
.y141{bottom:409.096000pt;}
.y13f{bottom:409.097294pt;}
.y2b0{bottom:411.666667pt;}
.y2b1{bottom:413.253333pt;}
.y2af{bottom:413.254286pt;}
.y19d{bottom:413.783838pt;}
.y4ac{bottom:415.375715pt;}
.y361{bottom:417.034343pt;}
.y455{bottom:418.019253pt;}
.y3d{bottom:418.392268pt;}
.y29{bottom:418.393333pt;}
.ybd{bottom:418.394451pt;}
.y271{bottom:418.395563pt;}
.y228{bottom:418.697737pt;}
.y325{bottom:419.225333pt;}
.y418{bottom:419.226505pt;}
.y7c{bottom:419.229046pt;}
.y3be{bottom:419.229099pt;}
.y323{bottom:419.229293pt;}
.y1e4{bottom:419.230219pt;}
.y11f{bottom:421.418505pt;}
.y324{bottom:423.986667pt;}
.y2ae{bottom:425.953365pt;}
.y4ab{bottom:426.034519pt;}
.y19c{bottom:427.767644pt;}
.y454{bottom:428.677207pt;}
.y360{bottom:431.018149pt;}
.ybc{bottom:432.302807pt;}
.y270{bottom:432.303919pt;}
.y227{bottom:432.606092pt;}
.y417{bottom:433.210311pt;}
.y7b{bottom:433.212852pt;}
.y3bd{bottom:433.212905pt;}
.y322{bottom:433.213099pt;}
.y1e3{bottom:433.215088pt;}
.y139{bottom:434.268272pt;}
.y11e{bottom:435.402311pt;}
.y4aa{bottom:436.616813pt;}
.y2ad{bottom:438.728000pt;}
.y136{bottom:438.954803pt;}
.y13d{bottom:438.955414pt;}
.y453{bottom:439.260351pt;}
.y19b{bottom:441.676000pt;}
.y35f{bottom:444.926505pt;}
.y135{bottom:445.228866pt;}
.y13c{bottom:445.229476pt;}
.y132{bottom:445.606196pt;}
.y13e{bottom:445.607791pt;}
.ybb{bottom:446.287676pt;}
.y26f{bottom:446.288788pt;}
.y416{bottom:447.118667pt;}
.y321{bottom:447.121455pt;}
.y7a{bottom:447.122270pt;}
.y3bc{bottom:447.122324pt;}
.y4a9{bottom:447.274767pt;}
.y11c{bottom:447.572000pt;}
.y11d{bottom:449.310667pt;}
.y11b{bottom:449.310807pt;}
.y452{bottom:449.918306pt;}
.y134{bottom:451.501866pt;}
.y13b{bottom:451.503539pt;}
.y19a{bottom:453.845333pt;}
.y137{bottom:455.659070pt;}
.y199{bottom:455.660816pt;}
.y133{bottom:457.775928pt;}
.y138{bottom:457.776000pt;}
.y13a{bottom:457.776539pt;}
.y4a8{bottom:457.857061pt;}
.y35e{bottom:458.910311pt;}
.yba{bottom:460.196032pt;}
.y26e{bottom:460.197144pt;}
.y226{bottom:460.499317pt;}
.y451{bottom:460.500600pt;}
.y79{bottom:461.106076pt;}
.y3bb{bottom:461.106130pt;}
.y320{bottom:461.106324pt;}
.y1e2{bottom:461.107250pt;}
.y414{bottom:461.107444pt;}
.y11a{bottom:463.295676pt;}
.y415{bottom:465.789333pt;}
.y4a7{bottom:468.515866pt;}
.y198{bottom:469.569171pt;}
.y450{bottom:471.158554pt;}
.y28{bottom:471.232032pt;}
.y35d{bottom:472.818667pt;}
.y35b{bottom:472.819838pt;}
.yb9{bottom:474.179838pt;}
.y26d{bottom:474.180950pt;}
.y78{bottom:475.014432pt;}
.y3ba{bottom:475.014486pt;}
.y31f{bottom:475.014679pt;}
.y1e1{bottom:475.015606pt;}
.y413{bottom:475.015800pt;}
.y131{bottom:477.202861pt;}
.y2ac{bottom:477.580921pt;}
.y35c{bottom:477.581333pt;}
.y4a6{bottom:479.098159pt;}
.y44f{bottom:481.741698pt;}
.y197{bottom:483.552977pt;}
.y27{bottom:484.006667pt;}
.y25{bottom:484.006699pt;}
.y35a{bottom:486.803644pt;}
.yb8{bottom:488.163644pt;}
.y26c{bottom:488.164756pt;}
.y26{bottom:488.240000pt;}
.y2ab{bottom:488.693333pt;}
.y225{bottom:488.694343pt;}
.y77{bottom:488.998238pt;}
.y3b9{bottom:488.998292pt;}
.y31e{bottom:488.998486pt;}
.y412{bottom:488.999606pt;}
.y1e0{bottom:489.000475pt;}
.y12f{bottom:489.373333pt;}
.y4a5{bottom:489.756114pt;}
.y2aa{bottom:490.280000pt;}
.y130{bottom:491.186667pt;}
.y12e{bottom:491.187644pt;}
.y119{bottom:491.187838pt;}
.y44e{bottom:492.399652pt;}
.y195{bottom:495.722667pt;}
.y24{bottom:496.781333pt;}
.y22{bottom:496.782637pt;}
.y196{bottom:497.461333pt;}
.y194{bottom:497.462699pt;}
.y4a4{bottom:500.414068pt;}
.y359{bottom:500.712000pt;}
.y357{bottom:500.712956pt;}
.y23{bottom:501.014667pt;}
.yb7{bottom:502.072000pt;}
.y26b{bottom:502.073112pt;}
.yb6{bottom:502.073171pt;}
.y224{bottom:502.678149pt;}
.y3b8{bottom:502.906647pt;}
.y31d{bottom:502.906841pt;}
.y76{bottom:502.907657pt;}
.y411{bottom:502.907962pt;}
.y1df{bottom:502.908830pt;}
.y44d{bottom:503.057607pt;}
.y12c{bottom:503.357333pt;}
.y12b{bottom:505.094935pt;}
.y12d{bottom:505.096000pt;}
.y358{bottom:505.474667pt;}
.y21{bottom:509.557271pt;}
.y4a3{bottom:510.997212pt;}
.y193{bottom:511.446505pt;}
.y44c{bottom:513.639900pt;}
.y356{bottom:514.696762pt;}
.yb5{bottom:516.056977pt;}
.y26a{bottom:516.057980pt;}
.y223{bottom:516.586505pt;}
.y31c{bottom:516.890647pt;}
.y75{bottom:516.891463pt;}
.y3b7{bottom:516.891516pt;}
.y1de{bottom:516.892637pt;}
.y410{bottom:516.892830pt;}
.y12a{bottom:519.078741pt;}
.y118{bottom:519.080000pt;}
.y4a2{bottom:521.655167pt;}
.y20{bottom:522.256351pt;}
.y44b{bottom:524.298705pt;}
.y192{bottom:525.354861pt;}
.y355{bottom:528.605118pt;}
.yb4{bottom:529.965333pt;}
.yb3{bottom:529.967794pt;}
.y222{bottom:530.570311pt;}
.y74{bottom:530.799819pt;}
.y3b6{bottom:530.799872pt;}
.y31b{bottom:530.800066pt;}
.y1dd{bottom:530.800992pt;}
.y40f{bottom:530.801186pt;}
.y4a1{bottom:532.237460pt;}
.y44a{bottom:534.880999pt;}
.y1f{bottom:535.030985pt;}
.y190{bottom:537.600000pt;}
.y18f{bottom:539.338616pt;}
.y191{bottom:539.338667pt;}
.y354{bottom:542.588924pt;}
.y4a0{bottom:542.895415pt;}
.y269{bottom:543.950142pt;}
.yb2{bottom:543.952662pt;}
.y221{bottom:544.478667pt;}
.y21f{bottom:544.480652pt;}
.y73{bottom:544.783625pt;}
.y3b5{bottom:544.783678pt;}
.y31a{bottom:544.783872pt;}
.y40e{bottom:544.784992pt;}
.y1dc{bottom:544.785861pt;}
.y449{bottom:545.538953pt;}
.y15f{bottom:547.350667pt;}
.y1e{bottom:547.805620pt;}
.y160{bottom:548.938667pt;}
.y15e{bottom:548.938699pt;}
.y220{bottom:549.241333pt;}
.y49f{bottom:553.554219pt;}
.y448{bottom:556.196908pt;}
.y353{bottom:556.498343pt;}
.yb1{bottom:557.861018pt;}
.y21e{bottom:558.465521pt;}
.y72{bottom:558.691981pt;}
.y3b4{bottom:558.692034pt;}
.y319{bottom:558.692228pt;}
.y40d{bottom:558.693348pt;}
.y1db{bottom:558.694217pt;}
.y1d{bottom:560.504699pt;}
.y15d{bottom:561.713333pt;}
.y49e{bottom:564.136513pt;}
.y18e{bottom:565.345422pt;}
.y447{bottom:566.780052pt;}
.y352{bottom:570.482149pt;}
.y21d{bottom:572.373877pt;}
.y268{bottom:572.523482pt;}
.y318{bottom:572.676034pt;}
.y71{bottom:572.676850pt;}
.y3b3{bottom:572.676903pt;}
.y1da{bottom:572.678023pt;}
.y40c{bottom:572.678217pt;}
.y1c{bottom:573.279334pt;}
.y49d{bottom:574.794468pt;}
.y446{bottom:577.438006pt;}
.y351{bottom:584.390505pt;}
.y49c{bottom:585.377612pt;}
.yb0{bottom:585.753180pt;}
.y1b{bottom:586.053969pt;}
.y21c{bottom:586.357683pt;}
.y267{bottom:586.431838pt;}
.y18d{bottom:586.434307pt;}
.y70{bottom:586.585205pt;}
.y3b2{bottom:586.585259pt;}
.y317{bottom:586.585453pt;}
.y1d9{bottom:586.586379pt;}
.y40b{bottom:586.586573pt;}
.y445{bottom:588.020300pt;}
.y14{bottom:595.352372pt;}
.y49b{bottom:596.035566pt;}
.y350{bottom:598.374311pt;}
.y444{bottom:598.679104pt;}
.y1a{bottom:598.753048pt;}
.y21b{bottom:600.266039pt;}
.y266{bottom:600.415644pt;}
.y18c{bottom:600.494626pt;}
.y6f{bottom:600.569012pt;}
.y3b1{bottom:600.569065pt;}
.y316{bottom:600.569259pt;}
.y1d8{bottom:600.570185pt;}
.y40a{bottom:600.570379pt;}
.y49a{bottom:606.617860pt;}
.y13{bottom:606.766934pt;}
.y443{bottom:609.337059pt;}
.y19{bottom:611.527683pt;}
.y34f{bottom:612.282667pt;}
.y34d{bottom:612.284194pt;}
.y264{bottom:612.585333pt;}
.yaf{bottom:613.646405pt;}
.y21a{bottom:614.249845pt;}
.y265{bottom:614.324000pt;}
.y263{bottom:614.325171pt;}
.y18b{bottom:614.402982pt;}
.y6e{bottom:614.477367pt;}
.y3b0{bottom:614.477421pt;}
.y315{bottom:614.477615pt;}
.y409{bottom:614.478735pt;}
.y1d7{bottom:614.479604pt;}
.y34e{bottom:617.045333pt;}
.y499{bottom:617.275814pt;}
.y12{bottom:618.180645pt;}
.y442{bottom:619.919353pt;}
.y18{bottom:624.302318pt;}
.y34c{bottom:626.268000pt;}
.y34a{bottom:626.269009pt;}
.y498{bottom:627.934619pt;}
.y219{bottom:628.159264pt;}
.y262{bottom:628.308977pt;}
.y18a{bottom:628.386788pt;}
.y314{bottom:628.461421pt;}
.y6d{bottom:628.462236pt;}
.y3af{bottom:628.462289pt;}
.y1d6{bottom:628.463410pt;}
.y408{bottom:628.463604pt;}
.y11{bottom:629.594356pt;}
.y441{bottom:630.577307pt;}
.y34b{bottom:630.954667pt;}
.y17{bottom:637.076953pt;}
.y497{bottom:638.516912pt;}
.y349{bottom:640.177365pt;}
.y260{bottom:640.478667pt;}
.y10{bottom:641.008917pt;}
.y440{bottom:641.160451pt;}
.y218{bottom:642.143070pt;}
.y261{bottom:642.217333pt;}
.y25f{bottom:642.218343pt;}
.y189{bottom:642.295144pt;}
.y6c{bottom:642.446042pt;}
.yae{bottom:642.446096pt;}
.y313{bottom:642.446289pt;}
.y1d5{bottom:642.447216pt;}
.y407{bottom:642.447410pt;}
.y496{bottom:649.174867pt;}
.y16{bottom:649.776032pt;}
.y43f{bottom:651.818405pt;}
.yf{bottom:652.422628pt;}
.y348{bottom:654.161171pt;}
.y217{bottom:656.051426pt;}
.y25e{bottom:656.202149pt;}
.y188{bottom:656.280013pt;}
.y6b{bottom:656.354398pt;}
.yad{bottom:656.354451pt;}
.y312{bottom:656.354645pt;}
.y1d4{bottom:656.355572pt;}
.y406{bottom:656.355766pt;}
.y495{bottom:659.757161pt;}
.y43e{bottom:662.400699pt;}
.y15{bottom:662.550667pt;}
.ye{bottom:663.912000pt;}
.y347{bottom:668.144977pt;}
.y25d{bottom:670.110505pt;}
.y187{bottom:670.188369pt;}
.y6a{bottom:670.338204pt;}
.yac{bottom:670.338258pt;}
.y311{bottom:670.338451pt;}
.y405{bottom:670.339572pt;}
.y1d3{bottom:670.340441pt;}
.y494{bottom:670.415965pt;}
.y43d{bottom:673.058653pt;}
.y493{bottom:681.073920pt;}
.y346{bottom:682.053333pt;}
.y344{bottom:682.054451pt;}
.y43c{bottom:683.717458pt;}
.y216{bottom:683.944650pt;}
.y25c{bottom:684.094311pt;}
.y186{bottom:684.172175pt;}
.y310{bottom:684.246807pt;}
.y69{bottom:684.247623pt;}
.yab{bottom:684.247676pt;}
.y1d2{bottom:684.248796pt;}
.y404{bottom:684.248990pt;}
.y345{bottom:686.816000pt;}
.yd{bottom:688.554667pt;}
.y492{bottom:691.656213pt;}
.y43b{bottom:694.299752pt;}
.y343{bottom:696.038258pt;}
.y25a{bottom:696.264000pt;}
.y25b{bottom:698.002667pt;}
.y259{bottom:698.005009pt;}
.y185{bottom:698.080531pt;}
.y68{bottom:698.231429pt;}
.yaa{bottom:698.231482pt;}
.y30f{bottom:698.231676pt;}
.y1d1{bottom:698.232602pt;}
.y403{bottom:698.232796pt;}
.y491{bottom:702.315018pt;}
.y43a{bottom:704.957706pt;}
.y342{bottom:709.947676pt;}
.y258{bottom:711.988816pt;}
.y184{bottom:712.065399pt;}
.y215{bottom:712.139676pt;}
.y67{bottom:712.139785pt;}
.ya9{bottom:712.139838pt;}
.y30e{bottom:712.140032pt;}
.y1d0{bottom:712.140958pt;}
.y402{bottom:712.141152pt;}
.y490{bottom:712.897312pt;}
.y439{bottom:715.540000pt;}
.y48f{bottom:723.555266pt;}
.y341{bottom:723.931482pt;}
.y257{bottom:725.897171pt;}
.y183{bottom:725.973755pt;}
.y214{bottom:726.123482pt;}
.y66{bottom:726.123591pt;}
.ya8{bottom:726.123644pt;}
.y30d{bottom:726.123838pt;}
.y401{bottom:726.124958pt;}
.y1cf{bottom:726.125827pt;}
.yc{bottom:732.548000pt;}
.y48e{bottom:734.137560pt;}
.yb{bottom:736.328000pt;}
.y340{bottom:737.839838pt;}
.y256{bottom:739.880977pt;}
.y182{bottom:739.957561pt;}
.y438{bottom:740.028343pt;}
.y213{bottom:740.031838pt;}
.ya7{bottom:740.032000pt;}
.y3ae{bottom:740.032032pt;}
.ya5{bottom:740.032194pt;}
.y65{bottom:740.033009pt;}
.y400{bottom:740.033314pt;}
.y1ce{bottom:740.034183pt;}
.ya{bottom:743.962667pt;}
.ya6{bottom:744.793333pt;}
.y48d{bottom:744.796365pt;}
.y9{bottom:747.741333pt;}
.y33f{bottom:751.823644pt;}
.y254{bottom:752.050667pt;}
.y2ee{bottom:752.279174pt;}
.y255{bottom:753.789333pt;}
.y253{bottom:753.789474pt;}
.y181{bottom:753.865917pt;}
.y212{bottom:754.015644pt;}
.y3e8{bottom:754.015806pt;}
.y3ad{bottom:754.015838pt;}
.ya4{bottom:754.016000pt;}
.y64{bottom:754.016816pt;}
.y30c{bottom:754.016924pt;}
.y1cd{bottom:754.017989pt;}
.y3ff{bottom:754.018183pt;}
.y48c{bottom:755.454319pt;}
.ya3{bottom:758.702667pt;}
.y2ed{bottom:763.692886pt;}
.y33e{bottom:765.732000pt;}
.y33c{bottom:765.734283pt;}
.y7{bottom:765.884000pt;}
.y48b{bottom:766.036613pt;}
.y210{bottom:766.185333pt;}
.y252{bottom:767.774343pt;}
.y180{bottom:767.850786pt;}
.y437{bottom:767.921568pt;}
.y211{bottom:767.924000pt;}
.y3e7{bottom:767.924162pt;}
.y3ac{bottom:767.924194pt;}
.y20f{bottom:767.925118pt;}
.y63{bottom:767.925171pt;}
.y30b{bottom:767.926343pt;}
.y1cc{bottom:767.926345pt;}
.y3fe{bottom:767.926539pt;}
.y397{bottom:770.342667pt;}
.y395{bottom:770.344372pt;}
.y33d{bottom:770.494667pt;}
.y8{bottom:772.157333pt;}
.y396{bottom:774.122667pt;}
.y2ec{bottom:775.106597pt;}
.y48a{bottom:776.694567pt;}
.y398{bottom:781.756378pt;}
.y251{bottom:781.758149pt;}
.y394{bottom:781.758934pt;}
.y17f{bottom:781.759142pt;}
.y436{bottom:781.905374pt;}
.y3e6{bottom:781.907968pt;}
.y3ab{bottom:781.908000pt;}
.y20e{bottom:781.908924pt;}
.y62{bottom:781.908977pt;}
.y30a{bottom:781.910149pt;}
.y3fd{bottom:781.910345pt;}
.y1cb{bottom:781.911214pt;}
.y2eb{bottom:786.521158pt;}
.y3aa{bottom:786.594667pt;}
.y489{bottom:787.277711pt;}
.y393{bottom:793.248305pt;}
.y33b{bottom:793.627508pt;}
.y250{bottom:795.666505pt;}
.y435{bottom:795.813730pt;}
.y3e5{bottom:795.816324pt;}
.y61{bottom:795.817333pt;}
.y5f{bottom:795.817527pt;}
.y20d{bottom:795.818343pt;}
.y17e{bottom:795.818398pt;}
.y309{bottom:795.818505pt;}
.y3fc{bottom:795.818701pt;}
.y1ca{bottom:795.819570pt;}
.y488{bottom:797.935665pt;}
.y2ea{bottom:798.010530pt;}
.y6{bottom:799.219748pt;}
.y60{bottom:800.580000pt;}
.y392{bottom:804.662017pt;}
.y487{bottom:808.593620pt;}
.y2e9{bottom:809.424241pt;}
.y24f{bottom:809.650311pt;}
.y434{bottom:809.798599pt;}
.ya2{bottom:809.801139pt;}
.y3e4{bottom:809.801193pt;}
.y5e{bottom:809.801333pt;}
.y20c{bottom:809.802149pt;}
.y17d{bottom:809.802204pt;}
.y308{bottom:809.802311pt;}
.y1c9{bottom:809.803376pt;}
.y5c{bottom:809.803570pt;}
.y5d{bottom:814.488000pt;}
.y391{bottom:816.076578pt;}
.y486{bottom:819.175914pt;}
.y2e8{bottom:820.838802pt;}
.y24d{bottom:821.820000pt;}
.y5{bottom:822.198667pt;}
.y24e{bottom:823.558667pt;}
.y24c{bottom:823.560032pt;}
.y433{bottom:823.706954pt;}
.ya1{bottom:823.709495pt;}
.y3e3{bottom:823.709549pt;}
.y20b{bottom:823.710505pt;}
.y307{bottom:823.710667pt;}
.y17c{bottom:823.711623pt;}
.y305{bottom:823.711676pt;}
.y1c8{bottom:823.711732pt;}
.y5b{bottom:823.711925pt;}
.y33a{bottom:823.711979pt;}
.y390{bottom:827.490289pt;}
.y306{bottom:828.472000pt;}
.y485{bottom:829.834718pt;}
.y2e7{bottom:832.252513pt;}
.y24b{bottom:837.543838pt;}
.y432{bottom:837.690760pt;}
.ya0{bottom:837.693301pt;}
.y3e2{bottom:837.693355pt;}
.y20a{bottom:837.694311pt;}
.y17b{bottom:837.695429pt;}
.y304{bottom:837.695482pt;}
.y1c7{bottom:837.695538pt;}
.y5a{bottom:837.695732pt;}
.y339{bottom:837.695785pt;}
.y38e{bottom:838.904000pt;}
.y38c{bottom:838.904578pt;}
.y484{bottom:840.417012pt;}
.y38d{bottom:842.684000pt;}
.y2e6{bottom:843.667074pt;}
.y38f{bottom:850.317711pt;}
.y38b{bottom:850.318289pt;}
.y483{bottom:851.074966pt;}
.y24a{bottom:851.452194pt;}
.y431{bottom:851.599116pt;}
.y9f{bottom:851.601657pt;}
.y3e1{bottom:851.601711pt;}
.y209{bottom:851.602667pt;}
.y17a{bottom:851.603785pt;}
.y303{bottom:851.603838pt;}
.y59{bottom:851.604087pt;}
.y338{bottom:851.604141pt;}
.y1c6{bottom:851.604956pt;}
.y2e5{bottom:855.080786pt;}
.y482{bottom:861.658110pt;}
.y389{bottom:861.732000pt;}
.y387{bottom:861.732888pt;}
.y248{bottom:863.621333pt;}
.y208{bottom:863.773333pt;}
.y249{bottom:865.436000pt;}
.y247{bottom:865.436977pt;}
.y388{bottom:865.512000pt;}
.y430{bottom:865.583985pt;}
.y9e{bottom:865.586526pt;}
.y3e0{bottom:865.586579pt;}
.y179{bottom:865.587591pt;}
.y302{bottom:865.587644pt;}
.y207{bottom:865.587838pt;}
.y1c5{bottom:865.588762pt;}
.y58{bottom:865.588956pt;}
.y337{bottom:865.589009pt;}
.y2e4{bottom:866.494497pt;}
.y481{bottom:872.316065pt;}
.y38a{bottom:873.145711pt;}
.y386{bottom:873.146599pt;}
.y245{bottom:877.606667pt;}
.y2e3{bottom:877.909058pt;}
.y244{bottom:879.340824pt;}
.y246{bottom:879.345333pt;}
.y42f{bottom:879.492341pt;}
.y9d{bottom:879.494882pt;}
.y3df{bottom:879.494935pt;}
.y301{bottom:879.496000pt;}
.y206{bottom:879.496194pt;}
.y178{bottom:879.497009pt;}
.y1c4{bottom:879.497118pt;}
.y57{bottom:879.497312pt;}
.y336{bottom:879.497365pt;}
.y480{bottom:882.974019pt;}
.y300{bottom:884.258667pt;}
.y385{bottom:890.683725pt;}
.y4b{bottom:892.194667pt;}
.y9c{bottom:893.478688pt;}
.y3de{bottom:893.478741pt;}
.y205{bottom:893.480000pt;}
.y177{bottom:893.480816pt;}
.y1c3{bottom:893.480924pt;}
.y56{bottom:893.481118pt;}
.y203{bottom:893.481171pt;}
.y47f{bottom:893.556313pt;}
.y2e1{bottom:895.445333pt;}
.y204{bottom:898.166667pt;}
.y2e2{bottom:899.225333pt;}
.y47e{bottom:904.215118pt;}
.y243{bottom:907.234049pt;}
.y42e{bottom:907.384503pt;}
.y9b{bottom:907.387044pt;}
.y3dd{bottom:907.387097pt;}
.y55{bottom:907.389474pt;}
.y202{bottom:907.389527pt;}
.y384{bottom:908.220000pt;}
.y2e0{bottom:912.983683pt;}
.y47d{bottom:914.797411pt;}
.y200{bottom:919.558667pt;}
.y9a{bottom:921.371913pt;}
.y3dc{bottom:921.371966pt;}
.y176{bottom:921.372977pt;}
.y201{bottom:921.373333pt;}
.y1c2{bottom:921.374149pt;}
.y54{bottom:921.374343pt;}
.y47c{bottom:925.455366pt;}
.y2df{bottom:925.758318pt;}
.y383{bottom:925.758350pt;}
.y335{bottom:926.060000pt;}
.y4a{bottom:929.310667pt;}
.y174{bottom:933.542667pt;}
.y242{bottom:935.126211pt;}
.y99{bottom:935.280268pt;}
.y3db{bottom:935.280322pt;}
.y175{bottom:935.281333pt;}
.y53{bottom:935.282699pt;}
.y47b{bottom:936.113320pt;}
.y2de{bottom:938.532953pt;}
.y382{bottom:938.532985pt;}
.y47a{bottom:946.696464pt;}
.y42d{bottom:949.261534pt;}
.y98{bottom:949.264075pt;}
.y3da{bottom:949.264128pt;}
.y1c1{bottom:949.266311pt;}
.y52{bottom:949.266505pt;}
.y2dd{bottom:951.232032pt;}
.y381{bottom:951.232064pt;}
.y479{bottom:957.354418pt;}
.y1bf{bottom:961.436000pt;}
.y2db{bottom:962.418667pt;}
.y1be{bottom:963.166698pt;}
.y241{bottom:963.170336pt;}
.y97{bottom:963.172430pt;}
.y3d9{bottom:963.172484pt;}
.y1c0{bottom:963.174667pt;}
.y51{bottom:963.174861pt;}
.y2dc{bottom:964.006667pt;}
.y2da{bottom:964.006699pt;}
.y49{bottom:966.500000pt;}
.y478{bottom:967.936712pt;}
.y173{bottom:975.345333pt;}
.y2d9{bottom:976.781333pt;}
.y1bd{bottom:977.150504pt;}
.y333{bottom:977.152416pt;}
.y42c{bottom:977.153696pt;}
.y240{bottom:977.154142pt;}
.y96{bottom:977.157299pt;}
.y3d8{bottom:977.157353pt;}
.y50{bottom:977.158667pt;}
.y477{bottom:978.594667pt;}
.y334{bottom:981.845333pt;}
.y2{bottom:1002.226667pt;}
.y4e{bottom:1003.226667pt;}
.y117{bottom:1003.229481pt;}
.y2bf{bottom:1003.229570pt;}
.y37c{bottom:1003.231674pt;}
.y172{bottom:1003.232293pt;}
.y4c8{bottom:1003.233695pt;}
.y476{bottom:1003.236760pt;}
.ye1{bottom:1003.237333pt;}
.h18{height:1.700288pt;}
.h8{height:20.907656pt;}
.h1b{height:23.522344pt;}
.h19{height:24.283594pt;}
.hb{height:25.219219pt;}
.hd{height:28.021406pt;}
.h9{height:29.887031pt;}
.h10{height:29.887500pt;}
.h1e{height:30.488916pt;}
.hf{height:30.647691pt;}
.h1d{height:32.501788pt;}
.h1c{height:32.505188pt;}
.ha{height:32.689219pt;}
.h7{height:32.997656pt;}
.h3{height:33.623437pt;}
.h13{height:34.584147pt;}
.h6{height:34.630781pt;}
.hc{height:37.359844pt;}
.h12{height:37.724025pt;}
.h14{height:37.733867pt;}
.h16{height:37.738424pt;}
.h15{height:37.739200pt;}
.h11{height:40.556120pt;}
.h5{height:49.501875pt;}
.h4{height:63.044531pt;}
.he{height:65.378906pt;}
.h17{height:75.777269pt;}
.h1a{height:121.131407pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x73{left:51.932417pt;}
.xe7{left:54.652422pt;}
.xd{left:55.785733pt;}
.x1d{left:56.844000pt;}
.x56{left:58.129067pt;}
.x71{left:59.793061pt;}
.x9e{left:60.850267pt;}
.x9f{left:63.722800pt;}
.x17{left:66.065235pt;}
.xe6{left:71.886055pt;}
.xb8{left:73.398400pt;}
.xa0{left:78.160533pt;}
.xe8{left:79.369661pt;}
.xa1{left:80.730667pt;}
.xcf{left:81.940133pt;}
.xb9{left:84.056667pt;}
.xcc{left:88.062933pt;}
.x74{left:89.499200pt;}
.x72{left:90.634160pt;}
.xd0{left:92.598400pt;}
.xcd{left:96.604667pt;}
.xcb{left:98.570000pt;}
.x2e{left:102.578655pt;}
.x75{left:104.163733pt;}
.xb6{left:106.053467pt;}
.xb7{left:116.636133pt;}
.xd1{left:120.036798pt;}
.x2d{left:124.046916pt;}
.xd3{left:128.050267pt;}
.x6e{left:130.469200pt;}
.x18{left:135.986667pt;}
.x1a{left:137.953333pt;}
.xaf{left:146.275298pt;}
.x19{left:150.954667pt;}
.xea{left:153.069114pt;}
.xe9{left:155.715538pt;}
.x8a{left:161.914667pt;}
.x7a{left:163.577333pt;}
.x7b{left:169.776000pt;}
.x6b{left:170.984197pt;}
.x8b{left:172.497333pt;}
.x6f{left:177.108000pt;}
.xd2{left:179.981333pt;}
.x28{left:193.816109pt;}
.xe5{left:196.911503pt;}
.x70{left:198.046667pt;}
.xa3{left:199.408000pt;}
.xd7{left:202.131624pt;}
.x2f{left:203.718161pt;}
.xba{left:207.572000pt;}
.x67{left:209.234667pt;}
.xb4{left:210.444000pt;}
.xe4{left:211.576073pt;}
.xa4{left:212.636000pt;}
.x59{left:215.584000pt;}
.x5a{left:218.758667pt;}
.x29{left:224.732658pt;}
.xd5{left:226.622147pt;}
.xbd{left:229.794667pt;}
.x68{left:233.877333pt;}
.x3{left:235.464000pt;}
.x78{left:237.429333pt;}
.x87{left:239.093333pt;}
.x4{left:240.832000pt;}
.xb0{left:242.570667pt;}
.x5{left:244.837333pt;}
.x69{left:247.256000pt;}
.x57{left:249.070667pt;}
.x6{left:250.053333pt;}
.x58{left:252.245333pt;}
.x86{left:258.217333pt;}
.x1f{left:265.625333pt;}
.xe{left:269.329333pt;}
.x2b{left:271.748809pt;}
.x76{left:273.108000pt;}
.x88{left:277.040000pt;}
.x77{left:280.742667pt;}
.x79{left:282.180000pt;}
.x89{left:285.429333pt;}
.x6a{left:290.567177pt;}
.x2a{left:297.298825pt;}
.x1e{left:304.554667pt;}
.x1{left:306.957314pt;}
.xdf{left:308.028969pt;}
.xd6{left:309.317779pt;}
.xb5{left:311.281333pt;}
.x2c{left:312.491960pt;}
.x22{left:318.236000pt;}
.x7c{left:322.545333pt;}
.x11{left:325.794667pt;}
.x23{left:326.853333pt;}
.x25{left:333.202667pt;}
.x12{left:338.948000pt;}
.x26{left:344.693333pt;}
.x24{left:349.001333pt;}
.x27{left:357.618667pt;}
.x6c{left:359.660000pt;}
.x85{left:364.346667pt;}
.x7{left:367.824000pt;}
.xbb{left:371.301333pt;}
.x8{left:373.190667pt;}
.xa2{left:374.249333pt;}
.xd4{left:375.685333pt;}
.x6d{left:380.900000pt;}
.xbc{left:381.884000pt;}
.xb3{left:392.557314pt;}
.x21{left:394.943981pt;}
.x1b{left:408.789925pt;}
.x45{left:414.916000pt;}
.x3f{left:419.149333pt;}
.x4c{left:420.510667pt;}
.x32{left:424.741786pt;}
.xe2{left:425.725173pt;}
.xec{left:426.855361pt;}
.x46{left:427.842667pt;}
.xa5{left:429.202667pt;}
.xe0{left:430.106460pt;}
.xc4{left:433.738667pt;}
.x40{left:436.460000pt;}
.x63{left:437.366667pt;}
.xc7{left:439.861333pt;}
.xa6{left:441.977333pt;}
.xef{left:443.334087pt;}
.xce{left:445.299596pt;}
.xca{left:446.890667pt;}
.xaa{left:450.444000pt;}
.x9{left:451.954354pt;}
.x5e{left:455.507677pt;}
.xeb{left:456.713276pt;}
.xa{left:461.404000pt;}
.x5f{left:462.992338pt;}
.x41{left:463.898667pt;}
.x13{left:465.033333pt;}
.xb{left:466.772000pt;}
.x5b{left:471.004000pt;}
.xf0{left:472.663227pt;}
.x5c{left:474.180000pt;}
.x14{left:478.185333pt;}
.xde{left:482.722084pt;}
.xf1{left:488.687989pt;}
.xc2{left:489.977333pt;}
.x95{left:493.228000pt;}
.x54{left:494.966667pt;}
.x48{left:497.234667pt;}
.x91{left:501.014667pt;}
.x55{left:502.374667pt;}
.x49{left:504.037333pt;}
.xdb{left:505.248525pt;}
.xab{left:506.154667pt;}
.x4d{left:507.590667pt;}
.xac{left:512.352000pt;}
.xdd{left:513.410667pt;}
.x4e{left:514.772000pt;}
.x7e{left:515.981333pt;}
.x7f{left:519.382667pt;}
.x82{left:522.481333pt;}
.xc5{left:525.958667pt;}
.xad{left:528.076000pt;}
.x83{left:529.738667pt;}
.xa7{left:531.174667pt;}
.xdc{left:536.088561pt;}
.x84{left:538.809333pt;}
.xc6{left:540.850667pt;}
.x64{left:542.513333pt;}
.x90{left:544.705333pt;}
.x5d{left:548.333333pt;}
.x37{left:549.845333pt;}
.x38{left:552.264000pt;}
.x60{left:553.625384pt;}
.xc8{left:554.532000pt;}
.x97{left:557.329333pt;}
.xe1{left:563.676696pt;}
.xc9{left:565.190667pt;}
.x35{left:566.853333pt;}
.x96{left:570.936000pt;}
.xc{left:575.093333pt;}
.x36{left:577.436000pt;}
.x39{left:578.494667pt;}
.x3a{left:580.913333pt;}
.xee{left:583.024105pt;}
.x4a{left:586.280000pt;}
.xd9{left:587.942667pt;}
.x9c{left:589.606667pt;}
.x20{left:590.810648pt;}
.x4b{left:593.084000pt;}
.xa8{left:595.276000pt;}
.xd8{left:596.256257pt;}
.xda{left:601.776000pt;}
.x98{left:602.834667pt;}
.x9d{left:604.194667pt;}
.x92{left:606.085333pt;}
.x99{left:608.806667pt;}
.x93{left:611.452000pt;}
.x62{left:613.114667pt;}
.x33{left:615.458667pt;}
.xed{left:617.719203pt;}
.x3b{left:618.936000pt;}
.x34{left:619.993333pt;}
.x3c{left:621.354667pt;}
.xb1{left:623.924000pt;}
.xbe{left:625.512000pt;}
.x4f{left:627.477333pt;}
.xc3{left:629.820000pt;}
.x50{left:634.658667pt;}
.x80{left:636.245333pt;}
.xf{left:637.304000pt;}
.x81{left:639.193333pt;}
.xbf{left:642.520000pt;}
.xae{left:645.921333pt;}
.x15{left:648.340000pt;}
.x10{left:649.246667pt;}
.x7d{left:651.364000pt;}
.x47{left:656.881333pt;}
.x51{left:658.166667pt;}
.x16{left:661.493333pt;}
.x52{left:663.156000pt;}
.x9b{left:666.254667pt;}
.x3d{left:671.621333pt;}
.xe3{left:673.130496pt;}
.x3e{left:678.273333pt;}
.x30{left:679.329096pt;}
.x8e{left:680.768000pt;}
.xa9{left:682.885333pt;}
.x9a{left:685.153333pt;}
.x65{left:690.368000pt;}
.x42{left:695.584000pt;}
.x94{left:697.172000pt;}
.x1c{left:700.643297pt;}
.x43{left:710.021333pt;}
.x66{left:711.306667pt;}
.xb2{left:717.202667pt;}
.x44{left:720.604000pt;}
.x8f{left:723.477333pt;}
.xc0{left:725.745333pt;}
.x61{left:729.598816pt;}
.x31{left:731.712844pt;}
.x8c{left:736.402667pt;}
.x53{left:738.520000pt;}
.x8d{left:739.577333pt;}
.xc1{left:740.560000pt;}
}




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