
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:10.078992px;}
.ls2{letter-spacing:10.079064px;}
.ls1{letter-spacing:16.559280px;}
.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;}
}
.ws90{word-spacing:-10.079064px;}
.ws98{word-spacing:-10.078992px;}
.wse{word-spacing:0.000000px;}
.ws4{word-spacing:0.719092px;}
.ws91{word-spacing:0.719531px;}
.wscc{word-spacing:0.720994px;}
.ws5{word-spacing:1.439064px;}
.ws5a{word-spacing:1.439503px;}
.ws8d{word-spacing:1.439575px;}
.wsa4{word-spacing:1.439647px;}
.ws1b{word-spacing:1.439942px;}
.ws74{word-spacing:1.440014px;}
.wsd{word-spacing:1.440454px;}
.ws4a{word-spacing:1.440526px;}
.ws1d{word-spacing:1.440821px;}
.ws35{word-spacing:1.440965px;}
.wsa3{word-spacing:2.159035px;}
.ws92{word-spacing:2.159474px;}
.wsa5{word-spacing:2.159546px;}
.ws10{word-spacing:2.160497px;}
.ws61{word-spacing:2.879006px;}
.ws3c{word-spacing:2.879078px;}
.ws0{word-spacing:2.880468px;}
.wsc6{word-spacing:3.599417px;}
.wsc7{word-spacing:3.599561px;}
.ws17{word-spacing:3.600878px;}
.wsa0{word-spacing:3.600950px;}
.wsbc{word-spacing:8.639064px;}
.ws16{word-spacing:10.078992px;}
.ws4c{word-spacing:10.079064px;}
.ws83{word-spacing:10.079568px;}
.ws6c{word-spacing:10.080504px;}
.wsb2{word-spacing:10.800000px;}
.ws55{word-spacing:11.520432px;}
.wsc5{word-spacing:11.521008px;}
.wsb9{word-spacing:12.240000px;}
.ws93{word-spacing:12.958800px;}
.wsb8{word-spacing:12.959400px;}
.ws9a{word-spacing:12.959520px;}
.wsa1{word-spacing:12.960000px;}
.ws75{word-spacing:12.960960px;}
.wscb{word-spacing:13.679400px;}
.ws24{word-spacing:13.679520px;}
.wsba{word-spacing:13.680000px;}
.wsb1{word-spacing:13.680480px;}
.wsbb{word-spacing:14.398800px;}
.ws42{word-spacing:14.399040px;}
.ws39{word-spacing:14.400000px;}
.wsb5{word-spacing:14.400960px;}
.ws8b{word-spacing:14.401200px;}
.ws28{word-spacing:15.118800px;}
.ws46{word-spacing:15.120000px;}
.ws8c{word-spacing:15.120480px;}
.wsf{word-spacing:15.120600px;}
.ws9b{word-spacing:15.120960px;}
.ws73{word-spacing:15.121200px;}
.ws29{word-spacing:15.838800px;}
.ws78{word-spacing:15.839400px;}
.wsb6{word-spacing:15.840000px;}
.ws72{word-spacing:15.840480px;}
.ws32{word-spacing:15.840600px;}
.ws85{word-spacing:15.843120px;}
.ws71{word-spacing:16.558800px;}
.ws7b{word-spacing:16.559400px;}
.ws1f{word-spacing:16.559520px;}
.ws2a{word-spacing:16.560000px;}
.ws2b{word-spacing:16.560480px;}
.ws64{word-spacing:16.560600px;}
.ws27{word-spacing:16.561200px;}
.ws3d{word-spacing:17.278800px;}
.ws65{word-spacing:17.279040px;}
.ws44{word-spacing:17.279400px;}
.ws49{word-spacing:17.279520px;}
.ws3{word-spacing:17.280000px;}
.ws1e{word-spacing:17.280600px;}
.ws7c{word-spacing:17.280960px;}
.wsb0{word-spacing:17.281200px;}
.ws20{word-spacing:17.998800px;}
.ws6b{word-spacing:17.999040px;}
.ws7{word-spacing:17.999400px;}
.wsbe{word-spacing:17.999520px;}
.ws38{word-spacing:18.000000px;}
.ws86{word-spacing:18.000600px;}
.ws6{word-spacing:18.001200px;}
.ws2{word-spacing:18.718800px;}
.ws80{word-spacing:18.719400px;}
.ws67{word-spacing:18.719520px;}
.ws6a{word-spacing:18.720000px;}
.wsbd{word-spacing:18.720480px;}
.ws56{word-spacing:18.720600px;}
.ws4d{word-spacing:18.720960px;}
.ws34{word-spacing:18.721200px;}
.ws22{word-spacing:19.438800px;}
.ws62{word-spacing:19.439040px;}
.wsc{word-spacing:19.439400px;}
.ws8e{word-spacing:19.439520px;}
.ws48{word-spacing:19.440000px;}
.ws1c{word-spacing:19.440480px;}
.ws7a{word-spacing:19.440600px;}
.ws99{word-spacing:19.440960px;}
.ws68{word-spacing:19.441200px;}
.ws9{word-spacing:20.158800px;}
.ws6f{word-spacing:20.159400px;}
.ws70{word-spacing:20.159520px;}
.ws36{word-spacing:20.160000px;}
.ws33{word-spacing:20.160600px;}
.wsb3{word-spacing:20.160960px;}
.ws41{word-spacing:20.161200px;}
.ws9e{word-spacing:20.878800px;}
.ws51{word-spacing:20.879400px;}
.ws6e{word-spacing:20.879520px;}
.ws43{word-spacing:20.880000px;}
.ws79{word-spacing:20.880600px;}
.ws9f{word-spacing:20.881200px;}
.ws11{word-spacing:21.598800px;}
.ws50{word-spacing:21.599040px;}
.ws66{word-spacing:21.599400px;}
.ws30{word-spacing:21.600000px;}
.ws57{word-spacing:21.600600px;}
.ws23{word-spacing:21.601200px;}
.ws15{word-spacing:22.318800px;}
.ws3a{word-spacing:22.319040px;}
.ws6d{word-spacing:22.319400px;}
.ws13{word-spacing:22.320000px;}
.ws52{word-spacing:22.320480px;}
.wsb7{word-spacing:22.320600px;}
.ws63{word-spacing:22.320960px;}
.ws12{word-spacing:22.321200px;}
.ws5d{word-spacing:22.321800px;}
.ws26{word-spacing:23.038800px;}
.ws45{word-spacing:23.039400px;}
.ws5e{word-spacing:23.040000px;}
.ws94{word-spacing:23.040480px;}
.ws21{word-spacing:23.040600px;}
.ws8{word-spacing:23.041200px;}
.ws7d{word-spacing:23.758800px;}
.ws37{word-spacing:23.759400px;}
.ws4f{word-spacing:23.759520px;}
.ws14{word-spacing:23.760000px;}
.ws25{word-spacing:23.761200px;}
.ws97{word-spacing:24.477600px;}
.ws76{word-spacing:24.478800px;}
.wsab{word-spacing:24.479520px;}
.ws77{word-spacing:24.480000px;}
.ws47{word-spacing:24.480600px;}
.ws9c{word-spacing:24.481200px;}
.ws3f{word-spacing:25.198800px;}
.ws18{word-spacing:25.199040px;}
.ws3b{word-spacing:25.199400px;}
.ws31{word-spacing:25.200000px;}
.ws8a{word-spacing:25.200480px;}
.wsae{word-spacing:25.200600px;}
.ws40{word-spacing:25.201200px;}
.ws3e{word-spacing:25.919400px;}
.ws89{word-spacing:25.920000px;}
.ws7f{word-spacing:25.920480px;}
.ws81{word-spacing:25.920960px;}
.ws84{word-spacing:25.921200px;}
.ws2f{word-spacing:26.640000px;}
.ws2e{word-spacing:26.640600px;}
.wsa{word-spacing:26.641200px;}
.ws19{word-spacing:27.358800px;}
.ws60{word-spacing:27.359400px;}
.ws87{word-spacing:27.359520px;}
.ws2d{word-spacing:27.360000px;}
.wsb{word-spacing:27.360600px;}
.ws8f{word-spacing:27.361200px;}
.ws88{word-spacing:28.078800px;}
.ws7e{word-spacing:28.079400px;}
.ws1a{word-spacing:28.079520px;}
.wsa8{word-spacing:28.080600px;}
.ws5f{word-spacing:28.081200px;}
.ws5b{word-spacing:28.798800px;}
.ws82{word-spacing:28.799040px;}
.ws9d{word-spacing:28.800000px;}
.ws53{word-spacing:28.801200px;}
.ws54{word-spacing:29.519400px;}
.wsa9{word-spacing:30.238800px;}
.wsaa{word-spacing:30.240480px;}
.ws5c{word-spacing:30.240600px;}
.ws1{word-spacing:31.680000px;}
.wsc4{word-spacing:43.200000px;}
.wsa7{word-spacing:51.840600px;}
.ws69{word-spacing:53.280600px;}
.wsac{word-spacing:60.479400px;}
.wsc9{word-spacing:60.480000px;}
.wsc8{word-spacing:66.959400px;}
.wsc3{word-spacing:66.960000px;}
.ws58{word-spacing:69.840000px;}
.wsc0{word-spacing:70.554000px;}
.wsca{word-spacing:70.561200px;}
.wsc1{word-spacing:74.160000px;}
.ws4b{word-spacing:80.641200px;}
.wsbf{word-spacing:88.558800px;}
.wsc2{word-spacing:90.720000px;}
.wsa6{word-spacing:128.158800px;}
.ws4e{word-spacing:154.798800px;}
.wsad{word-spacing:187.921200px;}
.wsb4{word-spacing:245.521200px;}
.ws59{word-spacing:254.160000px;}
.ws96{word-spacing:327.598800px;}
.wsaf{word-spacing:412.560000px;}
.ws95{word-spacing:455.760000px;}
.ws2c{word-spacing:548.640600px;}
.wsa2{word-spacing:631.440000px;}
._28{margin-left:-29.516774px;}
._7{margin-left:-27.360000px;}
._29{margin-left:-21.598344px;}
._18{margin-left:-10.079928px;}
._3{margin-left:-7.919040px;}
._1a{margin-left:-6.479520px;}
._4{margin-left:-5.040960px;}
._0{margin-left:-2.880000px;}
._5{margin-left:-1.438200px;}
._a{width:1.437542px;}
._c{width:2.880029px;}
._12{width:4.316918px;}
._17{width:7.200000px;}
._19{width:10.078992px;}
._8{width:12.240936px;}
._9{width:13.674024px;}
._13{width:15.845976px;}
._f{width:17.279616px;}
._6{width:19.440600px;}
._b{width:21.600058px;}
._11{width:23.052658px;}
._d{width:25.198200px;}
._14{width:27.361800px;}
._e{width:28.796640px;}
._15{width:30.242040px;}
._2{width:31.680732px;}
._1{width:33.840000px;}
._23{width:42.480000px;}
._24{width:43.920000px;}
._25{width:56.160000px;}
._21{width:61.920000px;}
._26{width:66.960000px;}
._1b{width:68.401200px;}
._27{width:71.998200px;}
._10{width:80.641200px;}
._1d{width:88.560000px;}
._22{width:92.160384px;}
._1e{width:103.680000px;}
._1f{width:138.240000px;}
._1c{width:148.320000px;}
._20{width:159.840000px;}
._16{width:1385.279904px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:0.720000px;}
.y0{bottom:0.000000px;}
.y2d8{bottom:261.120135px;}
.y388{bottom:262.560600px;}
.y2d6{bottom:264.360375px;}
.y46b{bottom:264.719952px;}
.y19f{bottom:264.720264px;}
.y1dc{bottom:266.520130px;}
.y2d4{bottom:268.140255px;}
.y197{bottom:268.140435px;}
.y5f{bottom:268.679250px;}
.y507{bottom:268.679400px;}
.y248{bottom:268.679436px;}
.y396{bottom:268.679535px;}
.y532{bottom:268.679550px;}
.y150{bottom:268.679706px;}
.y2b{bottom:268.679715px;}
.y1db{bottom:268.679890px;}
.yf9{bottom:268.679940px;}
.yac{bottom:268.679985px;}
.y38a{bottom:269.760000px;}
.y2d7{bottom:269.940255px;}
.y394{bottom:270.479541px;}
.y2da{bottom:270.479910px;}
.y479{bottom:270.840090px;}
.y2cd{bottom:271.020150px;}
.y393{bottom:271.919775px;}
.y470{bottom:271.920000px;}
.y38c{bottom:272.639886px;}
.y2c{bottom:272.640060px;}
.y477{bottom:272.640096px;}
.y2d5{bottom:272.640255px;}
.y2cb{bottom:272.640270px;}
.y19a{bottom:273.360495px;}
.y38b{bottom:274.079535px;}
.y476{bottom:274.079745px;}
.yfa{bottom:274.079940px;}
.y472{bottom:274.799886px;}
.y2dc{bottom:274.800015px;}
.y2d0{bottom:274.800030px;}
.y471{bottom:276.240120px;}
.y395{bottom:277.499655px;}
.y2d9{bottom:278.220135px;}
.y2ce{bottom:278.220150px;}
.y47c{bottom:278.399895px;}
.y1a2{bottom:278.400084px;}
.y2d3{bottom:279.120141px;}
.y478{bottom:279.479745px;}
.y38d{bottom:280.199655px;}
.y47b{bottom:280.199895px;}
.y384{bottom:280.200150px;}
.y2d2{bottom:280.560375px;}
.y2cc{bottom:280.560390px;}
.y57e{bottom:280.921050px;}
.y1a0{bottom:282.179964px;}
.y196{bottom:282.180090px;}
.y468{bottom:282.360102px;}
.y473{bottom:282.360240px;}
.y47e{bottom:282.360345px;}
.y390{bottom:283.260000px;}
.y2db{bottom:283.620135px;}
.y2cf{bottom:283.620150px;}
.y2d1{bottom:283.979910px;}
.y1da{bottom:284.340280px;}
.y5e{bottom:286.499400px;}
.y506{bottom:286.499550px;}
.y247{bottom:286.499586px;}
.y38e{bottom:286.499655px;}
.y531{bottom:286.499700px;}
.y14f{bottom:286.499856px;}
.y2a{bottom:286.499865px;}
.y1d9{bottom:286.500040px;}
.yf8{bottom:286.500090px;}
.yab{bottom:286.500135px;}
.y385{bottom:286.500150px;}
.y392{bottom:286.679541px;}
.y391{bottom:288.119775px;}
.y1a1{bottom:288.300084px;}
.y475{bottom:288.660246px;}
.y474{bottom:290.099895px;}
.y389{bottom:290.460600px;}
.y199{bottom:291.180045px;}
.y38f{bottom:291.899655px;}
.y46c{bottom:292.440102px;}
.y2ca{bottom:292.620120px;}
.y2c8{bottom:294.420120px;}
.y387{bottom:294.420300px;}
.y46f{bottom:294.599862px;}
.y19e{bottom:296.400114px;}
.y46a{bottom:296.579652px;}
.y57d{bottom:297.480750px;}
.y46d{bottom:297.840102px;}
.y47a{bottom:298.919940px;}
.y47d{bottom:298.920045px;}
.y386{bottom:298.920300px;}
.y19c{bottom:300.180000px;}
.y19d{bottom:300.720234px;}
.y469{bottom:301.079652px;}
.y2c9{bottom:302.160360px;}
.y19b{bottom:303.240345px;}
.y198{bottom:303.240390px;}
.y46e{bottom:303.419982px;}
.y5d{bottom:304.499400px;}
.y505{bottom:304.499550px;}
.y246{bottom:304.499586px;}
.y530{bottom:304.499700px;}
.y1d8{bottom:304.500040px;}
.yf7{bottom:304.500090px;}
.yaa{bottom:304.500135px;}
.y23{bottom:310.440795px;}
.y14a{bottom:311.160240px;}
.y14e{bottom:311.160246px;}
.y2c6{bottom:311.520060px;}
.y57c{bottom:312.600900px;}
.y149{bottom:313.320000px;}
.y14d{bottom:313.320006px;}
.y2c7{bottom:313.320060px;}
.y25{bottom:314.220000px;}
.y36f{bottom:315.119910px;}
.y2c4{bottom:315.479820px;}
.y14c{bottom:318.179766px;}
.y44b{bottom:319.260120px;}
.y14b{bottom:319.620000px;}
.y37d{bottom:321.240090px;}
.y44c{bottom:322.319880px;}
.y371{bottom:322.320000px;}
.y5c{bottom:322.499400px;}
.y504{bottom:322.499550px;}
.y245{bottom:322.499586px;}
.y52f{bottom:322.499700px;}
.y381{bottom:322.500000px;}
.yf6{bottom:322.500090px;}
.ya9{bottom:322.500135px;}
.y37b{bottom:323.040096px;}
.y2c5{bottom:323.220060px;}
.y1d7{bottom:323.220190px;}
.y37a{bottom:324.479745px;}
.y28{bottom:324.479775px;}
.y22{bottom:324.480450px;}
.y466{bottom:324.839952px;}
.y373{bottom:325.199886px;}
.y461{bottom:325.379613px;}
.y460{bottom:326.639964px;}
.y453{bottom:326.640000px;}
.y372{bottom:326.640120px;}
.y195{bottom:327.360540px;}
.y462{bottom:327.539958px;}
.y463{bottom:328.079607px;}
.y45f{bottom:328.079613px;}
.y456{bottom:328.260120px;}
.y27{bottom:328.440120px;}
.y57b{bottom:329.161200px;}
.y455{bottom:329.519886px;}
.y37c{bottom:329.879745px;}
.y457{bottom:330.419880px;}
.y458{bottom:330.960114px;}
.y454{bottom:330.960120px;}
.y36b{bottom:332.760060px;}
.y37e{bottom:332.760210px;}
.y374{bottom:332.760240px;}
.y383{bottom:332.760450px;}
.y464{bottom:333.479607px;}
.y2c3{bottom:334.740210px;}
.y24{bottom:334.740795px;}
.yf2{bottom:335.280000px;}
.y465{bottom:335.639952px;}
.y377{bottom:335.820000px;}
.y26{bottom:336.720000px;}
.y29{bottom:336.720015px;}
.y2c2{bottom:336.899970px;}
.y459{bottom:337.079649px;}
.y448{bottom:337.079670px;}
.y36c{bottom:339.060060px;}
.y375{bottom:339.060240px;}
.y379{bottom:339.060246px;}
.y5b{bottom:340.319550px;}
.y503{bottom:340.319700px;}
.y147{bottom:340.319850px;}
.y148{bottom:340.320000px;}
.yef{bottom:340.320045px;}
.yf4{bottom:340.320240px;}
.y378{bottom:340.499895px;}
.y1d6{bottom:341.220190px;}
.y45c{bottom:342.299769px;}
.y370{bottom:342.840060px;}
.y380{bottom:342.840090px;}
.y45b{bottom:343.560120px;}
.y194{bottom:343.560540px;}
.y45d{bottom:344.460114px;}
.y376{bottom:344.460240px;}
.y45e{bottom:344.999763px;}
.y45a{bottom:344.999769px;}
.y192{bottom:345.360540px;}
.y57a{bottom:345.541050px;}
.yf0{bottom:345.720045px;}
.yf5{bottom:345.720240px;}
.yf1{bottom:346.260285px;}
.y36e{bottom:346.979610px;}
.y44e{bottom:347.339970px;}
.y37f{bottom:349.319910px;}
.y382{bottom:349.320150px;}
.y452{bottom:349.499730px;}
.y242{bottom:350.219736px;}
.y2bd{bottom:350.760300px;}
.y2c0{bottom:350.760315px;}
.y44a{bottom:351.299820px;}
.y36d{bottom:351.479610px;}
.y240{bottom:351.659970px;}
.yf3{bottom:352.380000px;}
.y44f{bottom:352.739970px;}
.ya8{bottom:352.740435px;}
.y2b9{bottom:353.099940px;}
.y193{bottom:353.100195px;}
.y241{bottom:354.539850px;}
.y2b7{bottom:354.899940px;}
.y2be{bottom:354.899955px;}
.y2c1{bottom:354.899970px;}
.y449{bottom:355.799820px;}
.y2bc{bottom:357.060285px;}
.y450{bottom:358.139970px;}
.y145{bottom:358.140000px;}
.y5a{bottom:358.319550px;}
.y502{bottom:358.319700px;}
.y52e{bottom:358.319850px;}
.yed{bottom:358.320045px;}
.y1d5{bottom:359.040340px;}
.y2ba{bottom:360.299940px;}
.y579{bottom:360.841050px;}
.y451{bottom:361.199730px;}
.y467{bottom:362.639952px;}
.y44d{bottom:362.639970px;}
.y2b8{bottom:362.640180px;}
.y2bf{bottom:362.640195px;}
.y146{bottom:363.540000px;}
.yee{bottom:363.720045px;}
.y21{bottom:364.440750px;}
.y2bb{bottom:365.699940px;}
.y190{bottom:366.060540px;}
.y244{bottom:367.319676px;}
.y360{bottom:367.679610px;}
.y243{bottom:369.479436px;}
.y23c{bottom:369.479550px;}
.ya7{bottom:370.740435px;}
.y191{bottom:371.640420px;}
.y436{bottom:372.720195px;}
.y2b6{bottom:373.979856px;}
.y23e{bottom:374.160021px;}
.y364{bottom:374.880000px;}
.y36a{bottom:375.060000px;}
.y2b5{bottom:375.420090px;}
.y23d{bottom:375.599670px;}
.y59{bottom:376.139700px;}
.y501{bottom:376.139850px;}
.y144{bottom:376.140000px;}
.y2b4{bottom:376.320090px;}
.y1d4{bottom:377.040340px;}
.y578{bottom:377.220900px;}
.y366{bottom:377.760471px;}
.y2b2{bottom:378.120090px;}
.y446{bottom:378.840120px;}
.y365{bottom:379.200120px;}
.y43d{bottom:379.920000px;}
.y430{bottom:380.100000px;}
.y444{bottom:380.640126px;}
.y443{bottom:382.079775px;}
.y20{bottom:382.440750px;}
.y43f{bottom:382.799886px;}
.y23f{bottom:383.699670px;}
.y18e{bottom:384.060540px;}
.y43e{bottom:384.240120px;}
.y35c{bottom:385.319760px;}
.y362{bottom:385.319910px;}
.y368{bottom:385.320270px;}
.y2b3{bottom:385.860330px;}
.y433{bottom:386.400000px;}
.y445{bottom:387.660240px;}
.ye7{bottom:387.840000px;}
.ya6{bottom:388.560585px;}
.y18f{bottom:389.460540px;}
.y440{bottom:390.360240px;}
.y42a{bottom:390.360285px;}
.y42d{bottom:390.360300px;}
.y431{bottom:390.360345px;}
.y35d{bottom:391.439880px;}
.y500{bottom:391.979505px;}
.y577{bottom:392.520900px;}
.y238{bottom:393.779601px;}
.y57{bottom:394.139700px;}
.y142{bottom:394.139850px;}
.y143{bottom:394.140000px;}
.y230{bottom:394.499886px;}
.y1d3{bottom:395.040340px;}
.y237{bottom:395.219835px;}
.y363{bottom:395.399790px;}
.y369{bottom:395.400150px;}
.y239{bottom:395.939835px;}
.y22f{bottom:395.940120px;}
.y42b{bottom:396.660285px;}
.y432{bottom:396.660345px;}
.y442{bottom:396.840126px;}
.ye4{bottom:398.099595px;}
.ye9{bottom:398.099850px;}
.yec{bottom:398.099895px;}
.y441{bottom:398.279775px;}
.y439{bottom:398.460435px;}
.y2b0{bottom:398.999940px;}
.y58{bottom:399.539700px;}
.y35f{bottom:399.539910px;}
.y42c{bottom:399.720060px;}
.y1f{bottom:400.260900px;}
.y42e{bottom:400.620060px;}
.y438{bottom:400.620195px;}
.y429{bottom:402.599940px;}
.y43c{bottom:402.779955px;}
.y2b1{bottom:402.960291px;}
.y35e{bottom:404.039910px;}
.ye5{bottom:404.399595px;}
.yea{bottom:404.399850px;}
.y22a{bottom:404.399940px;}
.y435{bottom:404.579895px;}
.y42f{bottom:406.020060px;}
.y43a{bottom:406.020195px;}
.y361{bottom:406.379610px;}
.y367{bottom:406.379970px;}
.ya5{bottom:406.560585px;}
.ye6{bottom:408.179475px;}
.y576{bottom:408.900750px;}
.y434{bottom:409.079895px;}
.y4ff{bottom:409.979505px;}
.y43b{bottom:411.420195px;}
.y23b{bottom:411.599640px;}
.y232{bottom:411.599841px;}
.y22b{bottom:411.599940px;}
.y141{bottom:411.960000px;}
.y140{bottom:411.960300px;}
.y56{bottom:412.139700px;}
.y4fe{bottom:412.139850px;}
.y52d{bottom:412.140000px;}
.y1d2{bottom:412.860490px;}
.y23a{bottom:413.759985px;}
.y233{bottom:413.760000px;}
.y231{bottom:413.760186px;}
.y229{bottom:413.760285px;}
.ye8{bottom:414.660150px;}
.yeb{bottom:414.660195px;}
.y447{bottom:415.919970px;}
.y437{bottom:415.920195px;}
.y1e{bottom:418.260900px;}
.y235{bottom:418.619766px;}
.y22d{bottom:418.620051px;}
.y234{bottom:420.060000px;}
.y22c{bottom:420.060285px;}
.y18b{bottom:421.500090px;}
.y228{bottom:423.299940px;}
.y575{bottom:425.280600px;}
.y236{bottom:427.979535px;}
.y22e{bottom:427.979820px;}
.y55{bottom:429.959850px;}
.y4fd{bottom:429.960000px;}
.y52c{bottom:429.960150px;}
.y13f{bottom:429.960300px;}
.y1d1{bottom:430.860490px;}
.y2a5{bottom:433.919961px;}
.y18d{bottom:434.820240px;}
.y9a{bottom:435.000030px;}
.y2a4{bottom:435.360195px;}
.y1d{bottom:436.260900px;}
.ye2{bottom:436.799595px;}
.y99{bottom:436.979910px;}
.y187{bottom:439.320240px;}
.y574{bottom:440.580600px;}
.y420{bottom:441.299850px;}
.y9b{bottom:441.479910px;}
.ye3{bottom:442.199595px;}
.y188{bottom:445.620240px;}
.y2a3{bottom:445.979721px;}
.y292{bottom:447.060141px;}
.y35b{bottom:447.239910px;}
.y18c{bottom:447.240360px;}
.y2a2{bottom:447.419955px;}
.y13e{bottom:447.779850px;}
.y54{bottom:447.959850px;}
.y4fc{bottom:447.960000px;}
.y52b{bottom:447.960150px;}
.y425{bottom:448.320000px;}
.y2a7{bottom:448.499745px;}
.y291{bottom:448.499790px;}
.y299{bottom:448.499940px;}
.y1d0{bottom:448.860490px;}
.y427{bottom:451.199886px;}
.y426{bottom:452.640120px;}
.y98{bottom:452.640210px;}
.y18a{bottom:453.540390px;}
.y1c{bottom:454.080450px;}
.ye1{bottom:454.619745px;}
.ya3{bottom:454.800135px;}
.y2a0{bottom:456.060255px;}
.y2ae{bottom:456.060345px;}
.y573{bottom:456.961050px;}
.y189{bottom:458.040390px;}
.y41d{bottom:458.760150px;}
.y428{bottom:458.760240px;}
.y97{bottom:459.299970px;}
.y227{bottom:460.020030px;}
.y28f{bottom:462.719970px;}
.y8c{bottom:463.079790px;}
.ya0{bottom:463.079970px;}
.y225{bottom:463.979790px;}
.y2a9{bottom:464.339985px;}
.y294{bottom:464.340081px;}
.y2af{bottom:464.340180px;}
.y424{bottom:465.060240px;}
.y35a{bottom:465.239910px;}
.y96{bottom:465.420090px;}
.y29f{bottom:465.599910px;}
.y2ad{bottom:465.600000px;}
.y13d{bottom:465.779850px;}
.y53{bottom:465.959850px;}
.y4fb{bottom:465.960000px;}
.y52a{bottom:465.960150px;}
.y2a8{bottom:466.499745px;}
.y293{bottom:466.499841px;}
.y28d{bottom:466.499850px;}
.y29a{bottom:466.499940px;}
.y295{bottom:466.500000px;}
.y422{bottom:466.860240px;}
.y421{bottom:469.020000px;}
.y226{bottom:469.379790px;}
.y95{bottom:471.360330px;}
.y1b{bottom:472.080450px;}
.ye0{bottom:472.619745px;}
.y28e{bottom:472.619970px;}
.y8b{bottom:472.620030px;}
.y29b{bottom:472.620060px;}
.y9f{bottom:472.620210px;}
.y41f{bottom:472.979700px;}
.y87{bottom:473.340180px;}
.ya1{bottom:473.340315px;}
.ya4{bottom:473.340435px;}
.y572{bottom:473.520750px;}
.y29e{bottom:474.599910px;}
.y2ac{bottom:474.600000px;}
.y423{bottom:476.760240px;}
.y41e{bottom:477.479700px;}
.y224{bottom:479.820090px;}
.y2a6{bottom:480.540045px;}
.y290{bottom:480.540090px;}
.y2a1{bottom:480.540105px;}
.y298{bottom:480.540240px;}
.y8a{bottom:481.620030px;}
.y13c{bottom:481.620090px;}
.y9e{bottom:481.620210px;}
.y223{bottom:481.979850px;}
.y359{bottom:483.060060px;}
.y93{bottom:483.060381px;}
.y1cf{bottom:483.420190px;}
.y29d{bottom:483.599910px;}
.y2ab{bottom:483.600000px;}
.y52{bottom:483.779400px;}
.y4fa{bottom:483.779550px;}
.y529{bottom:483.779700px;}
.y13b{bottom:483.779850px;}
.y92{bottom:484.500030px;}
.y186{bottom:484.679940px;}
.y297{bottom:484.860351px;}
.y296{bottom:486.300000px;}
.ya2{bottom:487.560435px;}
.y571{bottom:488.640900px;}
.y94{bottom:489.000030px;}
.y1a{bottom:490.080450px;}
.ydf{bottom:490.619745px;}
.y89{bottom:490.620030px;}
.y9d{bottom:490.620210px;}
.y401{bottom:495.839970px;}
.y402{bottom:498.719850px;}
.y13a{bottom:499.440240px;}
.y91{bottom:500.160330px;}
.y41b{bottom:501.419850px;}
.y138{bottom:501.599862px;}
.y139{bottom:501.600000px;}
.y51{bottom:501.779400px;}
.y4f9{bottom:501.779550px;}
.y416{bottom:501.779628px;}
.y528{bottom:501.779700px;}
.y185{bottom:502.500090px;}
.y8f{bottom:502.679856px;}
.y409{bottom:503.040000px;}
.y415{bottom:503.219859px;}
.y417{bottom:503.939973px;}
.y8e{bottom:504.120090px;}
.y418{bottom:504.660090px;}
.y414{bottom:504.660093px;}
.y40c{bottom:504.660120px;}
.y570{bottom:505.200600px;}
.y40b{bottom:505.919886px;}
.y40d{bottom:506.819880px;}
.y40e{bottom:507.360114px;}
.y40a{bottom:507.360120px;}
.y19{bottom:507.900600px;}
.y90{bottom:508.620090px;}
.y29c{bottom:509.879760px;}
.y2aa{bottom:509.879850px;}
.y419{bottom:510.060090px;}
.y21f{bottom:510.960051px;}
.y215{bottom:510.960822px;}
.y41a{bottom:512.219850px;}
.y21e{bottom:512.399700px;}
.y214{bottom:512.400471px;}
.y40f{bottom:513.660114px;}
.y3fe{bottom:513.660120px;}
.y354{bottom:514.379565px;}
.y88{bottom:516.899880px;}
.y9c{bottom:516.900060px;}
.y4f8{bottom:517.439940px;}
.y1ce{bottom:517.979890px;}
.y411{bottom:518.879649px;}
.y50{bottom:519.599550px;}
.y4f7{bottom:519.599700px;}
.yda{bottom:519.599820px;}
.y527{bottom:519.599850px;}
.y137{bottom:519.599862px;}
.y8d{bottom:519.779790px;}
.y219{bottom:520.140000px;}
.y56f{bottom:520.320750px;}
.y184{bottom:520.500090px;}
.y412{bottom:521.039994px;}
.y413{bottom:521.579643px;}
.y410{bottom:521.579649px;}
.y34e{bottom:521.760000px;}
.y404{bottom:523.739970px;}
.y408{bottom:525.899730px;}
.y18{bottom:525.900600px;}
.y400{bottom:527.879670px;}
.y54f{bottom:528.060000px;}
.ydd{bottom:528.239925px;}
.y221{bottom:528.239991px;}
.yd4{bottom:528.240000px;}
.y405{bottom:529.139970px;}
.y28c{bottom:529.679700px;}
.y356{bottom:529.860105px;}
.y220{bottom:530.399751px;}
.y21a{bottom:530.399760px;}
.y222{bottom:530.400000px;}
.y212{bottom:530.400531px;}
.y28a{bottom:531.479700px;}
.y34f{bottom:532.019760px;}
.y355{bottom:532.019865px;}
.y357{bottom:532.020000px;}
.y34b{bottom:532.020150px;}
.y3ff{bottom:532.379670px;}
.yd7{bottom:533.279655px;}
.yd1{bottom:533.279730px;}
.y406{bottom:534.719850px;}
.y21c{bottom:535.079646px;}
.y1cd{bottom:535.800040px;}
.y21b{bottom:536.519880px;}
.y56e{bottom:536.880450px;}
.yde{bottom:537.060045px;}
.yd5{bottom:537.060120px;}
.ycf{bottom:537.060195px;}
.y4f{bottom:537.599550px;}
.y4f6{bottom:537.599700px;}
.y407{bottom:537.599730px;}
.y526{bottom:537.599850px;}
.y136{bottom:537.599862px;}
.y350{bottom:538.139880px;}
.y34c{bottom:538.140270px;}
.y183{bottom:538.320240px;}
.y403{bottom:539.219820px;}
.y41c{bottom:539.219850px;}
.y28b{bottom:539.219940px;}
.y86{bottom:539.399880px;}
.y217{bottom:540.840762px;}
.y351{bottom:542.099640px;}
.y358{bottom:542.099880px;}
.y34d{bottom:542.100030px;}
.y218{bottom:543.000000px;}
.y216{bottom:543.000522px;}
.yd6{bottom:543.179655px;}
.yd0{bottom:543.179730px;}
.y17{bottom:543.720750px;}
.y21d{bottom:544.440000px;}
.y213{bottom:544.440771px;}
.ydc{bottom:546.059475px;}
.yd3{bottom:546.059550px;}
.y353{bottom:546.239865px;}
.y3ec{bottom:549.299754px;}
.y352{bottom:550.559400px;}
.y135{bottom:550.920012px;}
.yd9{bottom:551.279670px;}
.y289{bottom:551.459550px;}
.y132{bottom:553.259667px;}
.y56d{bottom:553.260300px;}
.y54e{bottom:553.619700px;}
.y1cc{bottom:553.800040px;}
.y3fc{bottom:555.419970px;}
.y131{bottom:555.420012px;}
.y4e{bottom:555.599550px;}
.y4f5{bottom:555.599700px;}
.y525{bottom:555.599850px;}
.yd8{bottom:555.779670px;}
.y3f3{bottom:556.320000px;}
.y182{bottom:556.320240px;}
.y3fa{bottom:557.219976px;}
.y84{bottom:557.399880px;}
.ydb{bottom:558.119820px;}
.yd2{bottom:558.119895px;}
.y3f9{bottom:558.659625px;}
.y3f5{bottom:559.199886px;}
.y3f4{bottom:560.640120px;}
.y16{bottom:561.720750px;}
.y20f{bottom:562.260381px;}
.y85{bottom:562.799880px;}
.y134{bottom:562.979772px;}
.y20e{bottom:563.700615px;}
.y20a{bottom:563.880495px;}
.y3fb{bottom:564.059625px;}
.y133{bottom:566.579772px;}
.y3e5{bottom:566.939889px;}
.y3e9{bottom:566.939904px;}
.y3f6{bottom:566.940120px;}
.y56c{bottom:568.560300px;}
.y130{bottom:569.640132px;}
.y181{bottom:569.820240px;}
.y12e{bottom:571.259667px;}
.y54d{bottom:571.439850px;}
.y1cb{bottom:571.800040px;}
.y206{bottom:572.160300px;}
.y3e6{bottom:573.059424px;}
.y3f8{bottom:573.240126px;}
.y4d{bottom:573.419700px;}
.y4f3{bottom:573.419850px;}
.y524{bottom:573.420000px;}
.y12d{bottom:573.420012px;}
.y17f{bottom:574.320240px;}
.y3f7{bottom:574.679775px;}
.y3ef{bottom:574.859559px;}
.y82{bottom:575.220030px;}
.y34a{bottom:575.940300px;}
.y3e8{bottom:576.119784px;}
.y3ee{bottom:577.019904px;}
.y4f4{bottom:578.819850px;}
.y12f{bottom:578.820012px;}
.y3e4{bottom:578.999649px;}
.y3e7{bottom:578.999664px;}
.y3f2{bottom:579.179664px;}
.y207{bottom:579.360300px;}
.y211{bottom:579.360336px;}
.y20c{bottom:579.360450px;}
.yce{bottom:579.540045px;}
.y15{bottom:579.720750px;}
.y83{bottom:580.799910px;}
.y3eb{bottom:581.159454px;}
.y205{bottom:581.520645px;}
.y210{bottom:581.520681px;}
.y20b{bottom:581.520795px;}
.y180{bottom:582.059895px;}
.y3f0{bottom:582.419904px;}
.y27d{bottom:584.400102px;}
.y283{bottom:584.400147px;}
.y56b{bottom:584.940750px;}
.y3ea{bottom:585.659454px;}
.y3f1{bottom:587.999784px;}
.y12c{bottom:589.079817px;}
.y54c{bottom:589.439850px;}
.y204{bottom:590.880405px;}
.y12b{bottom:591.240162px;}
.y4c{bottom:591.419700px;}
.y4f2{bottom:591.419850px;}
.y3ed{bottom:592.499754px;}
.y3fd{bottom:592.499820px;}
.y81{bottom:593.220030px;}
.y17e{bottom:593.400090px;}
.y27c{bottom:595.020222px;}
.y282{bottom:595.020258px;}
.y209{bottom:595.740795px;}
.y20d{bottom:595.740915px;}
.y27a{bottom:596.459871px;}
.y281{bottom:596.459907px;}
.ycd{bottom:597.540045px;}
.y285{bottom:597.540297px;}
.y14{bottom:597.540900px;}
.y17b{bottom:597.900090px;}
.y56a{bottom:600.240750px;}
.y208{bottom:600.240795px;}
.y27b{bottom:600.959871px;}
.y523{bottom:601.320000px;}
.y17c{bottom:603.300090px;}
.y1ca{bottom:604.920131px;}
.y17d{bottom:605.640330px;}
.y346{bottom:606.359550px;}
.y338{bottom:606.359940px;}
.y33d{bottom:606.360090px;}
.y1c9{bottom:607.079891px;}
.y4f1{bottom:607.259505px;}
.y54b{bottom:607.439850px;}
.y4b{bottom:609.419700px;}
.y4f0{bottom:609.419850px;}
.y120{bottom:609.959550px;}
.y80{bottom:611.220030px;}
.y287{bottom:613.379952px;}
.y27f{bottom:613.380057px;}
.y341{bottom:613.740000px;}
.ycc{bottom:615.360195px;}
.y288{bottom:615.540000px;}
.y286{bottom:615.540297px;}
.y27e{bottom:615.540402px;}
.y13{bottom:615.540900px;}
.y569{bottom:616.620600px;}
.y17a{bottom:618.779940px;}
.y3dd{bottom:619.679505px;}
.y3d4{bottom:620.040180px;}
.y348{bottom:621.840090px;}
.y33a{bottom:621.840480px;}
.y3de{bottom:622.739850px;}
.y342{bottom:623.999760px;}
.y347{bottom:623.999850px;}
.y349{bottom:624.000000px;}
.y335{bottom:624.000090px;}
.y339{bottom:624.000240px;}
.y54a{bottom:625.260000px;}
.y11d{bottom:625.439940px;}
.y203{bottom:625.800555px;}
.y3d7{bottom:627.060000px;}
.y4a{bottom:627.239850px;}
.y4ef{bottom:627.240000px;}
.y3d0{bottom:627.420000px;}
.y11c{bottom:627.599700px;}
.y121{bottom:627.599850px;}
.y124{bottom:627.599856px;}
.y12a{bottom:627.599862px;}
.y3e0{bottom:628.679535px;}
.y7f{bottom:629.040180px;}
.y284{bottom:629.579997px;}
.y279{bottom:629.580021px;}
.y280{bottom:629.580057px;}
.y3d9{bottom:629.939886px;}
.y127{bottom:630.479736px;}
.y3e1{bottom:630.839880px;}
.y3e2{bottom:631.379529px;}
.y3d8{bottom:631.379535px;}
.y123{bottom:632.460201px;}
.y129{bottom:632.460207px;}
.y568{bottom:633.000450px;}
.ycb{bottom:633.360195px;}
.y122{bottom:633.899850px;}
.y128{bottom:633.899856px;}
.y343{bottom:634.260105px;}
.y33f{bottom:634.620480px;}
.y178{bottom:636.600090px;}
.y340{bottom:636.780000px;}
.y33e{bottom:636.780240px;}
.y3e3{bottom:637.499649px;}
.y3da{bottom:637.499655px;}
.y3d1{bottom:637.499880px;}
.y3c9{bottom:637.500060px;}
.y3cc{bottom:637.500075px;}
.y345{bottom:638.219850px;}
.y337{bottom:638.220240px;}
.y33c{bottom:638.220390px;}
.y126{bottom:638.399856px;}
.y4ee{bottom:641.279655px;}
.y125{bottom:641.640096px;}
.y11f{bottom:641.819850px;}
.y1c8{bottom:641.820190px;}
.y179{bottom:642.179970px;}
.y344{bottom:642.719850px;}
.y336{bottom:642.720240px;}
.y33b{bottom:642.720390px;}
.y4ec{bottom:643.079655px;}
.y549{bottom:643.260000px;}
.y202{bottom:643.620705px;}
.y3ca{bottom:643.800060px;}
.y3cd{bottom:643.800075px;}
.y522{bottom:644.160300px;}
.y4e9{bottom:645.239315px;}
.y49{bottom:645.239850px;}
.y4eb{bottom:645.240000px;}
.y3d6{bottom:645.599985px;}
.y11e{bottom:646.319850px;}
.y3cb{bottom:646.860420px;}
.y7e{bottom:647.040180px;}
.y3df{bottom:647.759955px;}
.y3d5{bottom:647.760330px;}
.y3ce{bottom:647.760420px;}
.y567{bottom:648.300450px;}
.y12{bottom:649.020750px;}
.y3c8{bottom:649.740300px;}
.y4ed{bottom:650.279655px;}
.y278{bottom:651.180021px;}
.yca{bottom:651.360195px;}
.y3dc{bottom:651.719805px;}
.y3d3{bottom:651.720030px;}
.y3cf{bottom:653.160420px;}
.y177{bottom:654.600090px;}
.y3db{bottom:656.219805px;}
.y3d2{bottom:656.220030px;}
.y4ea{bottom:658.199075px;}
.y548{bottom:661.260000px;}
.y201{bottom:661.620705px;}
.y521{bottom:662.160300px;}
.y4e8{bottom:663.059464px;}
.y48{bottom:663.060000px;}
.y566{bottom:664.680300px;}
.y7d{bottom:665.040180px;}
.y334{bottom:669.000090px;}
.yc9{bottom:669.179745px;}
.y277{bottom:669.180021px;}
.y11a{bottom:671.699700px;}
.y176{bottom:672.600090px;}
.y1c6{bottom:676.560356px;}
.y11b{bottom:677.279580px;}
.y547{bottom:679.079550px;}
.y3c6{bottom:679.620150px;}
.y200{bottom:679.620705px;}
.y520{bottom:680.160300px;}
.y4e7{bottom:681.059464px;}
.y47{bottom:681.060000px;}
.y565{bottom:681.240600px;}
.y1c2{bottom:683.220101px;}
.y3c7{bottom:685.020150px;}
.y1c1{bottom:685.379861px;}
.y1c7{bottom:685.379890px;}
.y333{bottom:687.000090px;}
.yc8{bottom:687.179745px;}
.y276{bottom:687.180021px;}
.y118{bottom:689.699700px;}
.y175{bottom:690.420240px;}
.y7b{bottom:691.320060px;}
.y76{bottom:691.320120px;}
.y1c5{bottom:692.220055px;}
.y1c4{bottom:694.379815px;}
.y119{bottom:695.099700px;}
.y564{bottom:696.360750px;}
.y11{bottom:696.540900px;}
.y4e6{bottom:696.899120px;}
.y546{bottom:697.079550px;}
.y1ff{bottom:697.440855px;}
.y3c5{bottom:697.620150px;}
.y51f{bottom:697.979850px;}
.y78{bottom:697.979895px;}
.y73{bottom:697.979955px;}
.y4e5{bottom:699.059464px;}
.y46{bottom:699.060000px;}
.y7c{bottom:700.140180px;}
.y77{bottom:700.140240px;}
.y72{bottom:700.140300px;}
.y275{bottom:705.000171px;}
.yc7{bottom:705.179745px;}
.y1c3{bottom:706.440161px;}
.y117{bottom:707.699700px;}
.y7a{bottom:709.320060px;}
.y75{bottom:709.320120px;}
.y174{bottom:710.400090px;}
.y563{bottom:712.920450px;}
.y10{bottom:713.100600px;}
.y545{bottom:714.899700px;}
.y3c4{bottom:715.440300px;}
.y51e{bottom:715.979850px;}
.y31c{bottom:716.160270px;}
.y324{bottom:716.160375px;}
.y4e4{bottom:716.879015px;}
.y45{bottom:716.879550px;}
.y79{bottom:721.199940px;}
.y74{bottom:721.200000px;}
.y332{bottom:722.279970px;}
.yc6{bottom:722.999895px;}
.y274{bottom:723.000171px;}
.y326{bottom:723.180000px;}
.y71{bottom:723.360450px;}
.y330{bottom:724.079976px;}
.y31f{bottom:724.260270px;}
.y1c0{bottom:725.160311px;}
.y116{bottom:725.519850px;}
.y32f{bottom:725.520210px;}
.y328{bottom:726.060471px;}
.y1fe{bottom:726.780555px;}
.y327{bottom:727.500120px;}
.y172{bottom:728.400090px;}
.y562{bottom:729.300300px;}
.y331{bottom:730.920210px;}
.y320{bottom:731.640165px;}
.y544{bottom:732.899700px;}
.y318{bottom:733.799820px;}
.y31e{bottom:733.799925px;}
.y173{bottom:733.800090px;}
.y329{bottom:733.800120px;}
.y51d{bottom:733.979850px;}
.y4e3{bottom:734.879015px;}
.y44{bottom:734.879550px;}
.y32c{bottom:736.680000px;}
.y319{bottom:739.919940px;}
.y32a{bottom:739.920240px;}
.y32e{bottom:740.100126px;}
.yc5{bottom:740.999895px;}
.y273{bottom:741.000171px;}
.y321{bottom:741.179805px;}
.y3b8{bottom:741.180036px;}
.y70{bottom:741.360450px;}
.y32d{bottom:741.540360px;}
.y3b6{bottom:742.620270px;}
.y1bf{bottom:742.979861px;}
.y31d{bottom:743.160270px;}
.y115{bottom:743.519850px;}
.y325{bottom:743.879925px;}
.y3c1{bottom:744.060150px;}
.y3b0{bottom:744.060300px;}
.y561{bottom:744.600300px;}
.y32b{bottom:745.320240px;}
.yf{bottom:745.320750px;}
.y171{bottom:746.400090px;}
.y3b7{bottom:747.120270px;}
.y31b{bottom:748.019970px;}
.y323{bottom:748.020075px;}
.y4e2{bottom:750.719255px;}
.y543{bottom:750.899700px;}
.y3b2{bottom:751.080000px;}
.y3ab{bottom:751.440000px;}
.y51c{bottom:751.800000px;}
.y31a{bottom:752.519970px;}
.y322{bottom:752.520075px;}
.y4e0{bottom:752.879015px;}
.y43{bottom:752.879550px;}
.y3b4{bottom:753.960471px;}
.y3b3{bottom:755.400120px;}
.y4e1{bottom:758.279015px;}
.yc4{bottom:758.820045px;}
.y6f{bottom:759.180000px;}
.y272{bottom:759.180021px;}
.y3c2{bottom:759.540090px;}
.y3ba{bottom:759.540426px;}
.y16e{bottom:759.720240px;}
.y1be{bottom:760.979861px;}
.y560{bottom:760.980150px;}
.y114{bottom:761.519850px;}
.y3ad{bottom:761.699850px;}
.y3a5{bottom:761.700000px;}
.y3bd{bottom:761.700141px;}
.y3b9{bottom:761.700186px;}
.ye{bottom:761.700600px;}
.y16b{bottom:764.220225px;}
.y16f{bottom:764.220240px;}
.y3a8{bottom:764.760300px;}
.y3bc{bottom:764.760486px;}
.y3a6{bottom:767.820120px;}
.y542{bottom:768.719850px;}
.y307{bottom:768.720015px;}
.y30f{bottom:768.720135px;}
.y1fd{bottom:769.080510px;}
.y170{bottom:769.620240px;}
.y51b{bottom:769.800000px;}
.y4df{bottom:770.699165px;}
.y42{bottom:770.699700px;}
.y1fc{bottom:771.240855px;}
.y3b1{bottom:771.779835px;}
.y3aa{bottom:771.779880px;}
.y16d{bottom:771.780000px;}
.y3be{bottom:771.780021px;}
.y16c{bottom:775.560465px;}
.y313{bottom:775.740000px;}
.y3c0{bottom:775.919850px;}
.y3af{bottom:775.920000px;}
.y3b5{bottom:775.920270px;}
.y30a{bottom:776.820015px;}
.yc2{bottom:776.820045px;}
.y1bd{bottom:776.820101px;}
.y6e{bottom:777.180000px;}
.y271{bottom:777.180021px;}
.y55f{bottom:777.360600px;}
.y3ac{bottom:778.260150px;}
.y3a9{bottom:778.260300px;}
.yd{bottom:778.260900px;}
.y315{bottom:778.619886px;}
.y1bc{bottom:778.979861px;}
.y113{bottom:779.340000px;}
.y314{bottom:780.060120px;}
.y3bf{bottom:780.419850px;}
.y3ae{bottom:780.420000px;}
.yc3{bottom:780.779805px;}
.y169{bottom:782.220225px;}
.y30b{bottom:784.199910px;}
.y317{bottom:786.360120px;}
.y303{bottom:786.360135px;}
.y309{bottom:786.360255px;}
.y311{bottom:786.360435px;}
.y541{bottom:786.719850px;}
.y1fb{bottom:786.900660px;}
.y16a{bottom:787.620225px;}
.y41{bottom:788.699700px;}
.y3c3{bottom:788.700000px;}
.y1fa{bottom:789.061005px;}
.y3a7{bottom:791.760300px;}
.y3bb{bottom:791.760486px;}
.y304{bottom:792.479670px;}
.y55e{bottom:792.660600px;}
.y30c{bottom:793.740135px;}
.y1bb{bottom:794.640251px;}
.yc{bottom:794.640750px;}
.yc1{bottom:794.820045px;}
.y6d{bottom:795.000150px;}
.y270{bottom:795.000171px;}
.y308{bottom:795.720015px;}
.y312{bottom:796.440315px;}
.y1ba{bottom:796.800011px;}
.y112{bottom:797.340000px;}
.y306{bottom:800.579715px;}
.y30e{bottom:800.579835px;}
.y4de{bottom:804.539465px;}
.y540{bottom:804.719850px;}
.y305{bottom:804.899835px;}
.y30d{bottom:804.899955px;}
.y1f9{bottom:804.900660px;}
.y40{bottom:806.519850px;}
.y1f8{bottom:807.061005px;}
.y316{bottom:807.419820px;}
.y310{bottom:807.420135px;}
.y55d{bottom:809.040450px;}
.y3a3{bottom:809.940300px;}
.yb{bottom:811.020600px;}
.y26d{bottom:812.100171px;}
.y6c{bottom:813.000150px;}
.y1b9{bottom:814.800011px;}
.y110{bottom:815.160150px;}
.y3a4{bottom:815.340300px;}
.y269{bottom:816.600096px;}
.y26f{bottom:816.600171px;}
.ybd{bottom:820.200000px;}
.y111{bottom:820.740030px;}
.y166{bottom:821.100225px;}
.y53f{bottom:822.540000px;}
.y26c{bottom:822.540402px;}
.y1f7{bottom:822.900660px;}
.y26b{bottom:823.980051px;}
.y3f{bottom:824.519850px;}
.y1f6{bottom:825.061005px;}
.y55c{bottom:825.600150px;}
.y51a{bottom:825.780300px;}
.ya{bottom:827.580300px;}
.y3a2{bottom:827.940300px;}
.ybb{bottom:830.460060px;}
.ybe{bottom:830.460345px;}
.y6b{bottom:831.000150px;}
.y1b8{bottom:832.620161px;}
.y164{bottom:832.980075px;}
.y302{bottom:833.160135px;}
.y10f{bottom:833.160150px;}
.y26a{bottom:833.340396px;}
.y26e{bottom:833.340471px;}
.ybf{bottom:834.420105px;}
.y165{bottom:837.480075px;}
.y268{bottom:838.200096px;}
.ybc{bottom:840.539940px;}
.y53e{bottom:840.540000px;}
.yc0{bottom:840.540225px;}
.y55b{bottom:841.980000px;}
.y519{bottom:842.160750px;}
.y3e{bottom:842.519850px;}
.y1f4{bottom:842.880555px;}
.y9{bottom:843.960750px;}
.y3a0{bottom:845.760450px;}
.y1f5{bottom:848.280555px;}
.y168{bottom:849.900180px;}
.y4dc{bottom:850.439465px;}
.y1b7{bottom:850.620161px;}
.y301{bottom:850.979685px;}
.y10d{bottom:851.160150px;}
.y3a1{bottom:851.160450px;}
.y167{bottom:852.060525px;}
.y161{bottom:852.060540px;}
.y4dd{bottom:855.839465px;}
.y267{bottom:856.200096px;}
.y10e{bottom:856.560150px;}
.y55a{bottom:857.280150px;}
.y162{bottom:858.360540px;}
.y518{bottom:858.540600px;}
.y3d{bottom:860.340000px;}
.y8{bottom:860.340600px;}
.y1f3{bottom:860.880555px;}
.yb4{bottom:861.060465px;}
.yb5{bottom:861.960465px;}
.y39f{bottom:863.760450px;}
.yb8{bottom:864.840000px;}
.y6a{bottom:865.920300px;}
.y163{bottom:866.280075px;}
.y4da{bottom:868.439465px;}
.y1b6{bottom:868.620161px;}
.y300{bottom:868.979685px;}
.y10b{bottom:868.979700px;}
.y53d{bottom:869.880000px;}
.y559{bottom:873.660600px;}
.y4db{bottom:873.839465px;}
.y266{bottom:874.200096px;}
.y10c{bottom:874.379700px;}
.yb9{bottom:875.099760px;}
.yb3{bottom:875.100120px;}
.y517{bottom:875.100300px;}
.y7{bottom:876.900300px;}
.y3c{bottom:878.340000px;}
.yba{bottom:879.060105px;}
.yb6{bottom:879.060465px;}
.y53c{bottom:881.760000px;}
.y39e{bottom:881.760450px;}
.y4d7{bottom:884.099265px;}
.yb7{bottom:885.180000px;}
.y4d6{bottom:886.259610px;}
.y4d9{bottom:886.259615px;}
.y1b5{bottom:886.440311px;}
.y4d8{bottom:886.979145px;}
.y2ff{bottom:886.979685px;}
.y109{bottom:886.979700px;}
.y558{bottom:890.040450px;}
.y160{bottom:891.300240px;}
.y516{bottom:891.480150px;}
.y265{bottom:892.020246px;}
.y10a{bottom:892.379700px;}
.y6{bottom:893.280150px;}
.y53b{bottom:894.360000px;}
.y1f2{bottom:896.161005px;}
.y3b{bottom:896.340000px;}
.y39c{bottom:899.580000px;}
.y4d4{bottom:900.299265px;}
.y4d5{bottom:902.099265px;}
.y4d1{bottom:904.259610px;}
.y1b4{bottom:904.440311px;}
.y2fe{bottom:904.799835px;}
.y108{bottom:904.979700px;}
.y39d{bottom:904.980000px;}
.y53a{bottom:906.420000px;}
.y515{bottom:907.860600px;}
.y15f{bottom:909.120390px;}
.y264{bottom:910.020246px;}
.y4d2{bottom:911.999265px;}
.yb2{bottom:912.900120px;}
.y69{bottom:912.900150px;}
.y3a{bottom:914.160150px;}
.y4d3{bottom:916.499265px;}
.y39b{bottom:917.580000px;}
.y557{bottom:918.480150px;}
.y539{bottom:918.840000px;}
.y2fd{bottom:922.799835px;}
.y107{bottom:922.799850px;}
.y514{bottom:924.420300px;}
.y15e{bottom:924.960630px;}
.yb0{bottom:925.680000px;}
.yae{bottom:926.400150px;}
.y15d{bottom:927.120390px;}
.y538{bottom:930.900000px;}
.yb1{bottom:930.900120px;}
.y68{bottom:930.900150px;}
.y39{bottom:932.160150px;}
.y4bb{bottom:936.119952px;}
.yaf{bottom:936.660495px;}
.y1ed{bottom:938.100615px;}
.y556{bottom:940.260000px;}
.y2fc{bottom:940.799835px;}
.y513{bottom:940.800150px;}
.y4c9{bottom:942.239970px;}
.y4c0{bottom:943.140000px;}
.y537{bottom:943.320000px;}
.y399{bottom:943.680000px;}
.y261{bottom:943.859946px;}
.y4c7{bottom:944.039976px;}
.y1b3{bottom:944.580011px;}
.y103{bottom:944.940000px;}
.y4c6{bottom:945.479625px;}
.y4c2{bottom:946.019886px;}
.y1f0{bottom:946.200615px;}
.y4c1{bottom:947.459535px;}
.y5{bottom:947.640450px;}
.y66{bottom:948.720300px;}
.y39a{bottom:949.080000px;}
.y4ce{bottom:949.799760px;}
.y37{bottom:949.979700px;}
.y4c8{bottom:950.879625px;}
.y4cc{bottom:951.599760px;}
.y1f1{bottom:953.580510px;}
.y4b8{bottom:953.759502px;}
.y4cb{bottom:953.759520px;}
.y4c3{bottom:953.759535px;}
.y4d0{bottom:953.759610px;}
.y38{bottom:953.940045px;}
.y67{bottom:954.120300px;}
.y260{bottom:954.300186px;}
.y105{bottom:955.199850px;}
.y100{bottom:955.200300px;}
.y512{bottom:955.740351px;}
.y25e{bottom:955.740420px;}
.y1ea{bottom:955.740765px;}
.y1ef{bottom:955.740855px;}
.y536{bottom:955.920000px;}
.y159{bottom:956.459970px;}
.y511{bottom:957.180000px;}
.y555{bottom:958.260000px;}
.y2fb{bottom:958.619985px;}
.y15a{bottom:959.340435px;}
.y4c5{bottom:960.059541px;}
.y25f{bottom:960.240420px;}
.y106{bottom:961.319970px;}
.y101{bottom:961.320420px;}
.y4cd{bottom:961.499760px;}
.y4c4{bottom:961.499775px;}
.y534{bottom:961.860000px;}
.y4bc{bottom:963.840102px;}
.y4{bottom:964.200150px;}
.y25a{bottom:964.380000px;}
.y1ee{bottom:965.100615px;}
.y102{bottom:965.280180px;}
.y256{bottom:965.459940px;}
.y4bf{bottom:965.999862px;}
.y65{bottom:966.720300px;}
.y25c{bottom:967.259886px;}
.y4ba{bottom:967.979652px;}
.y36{bottom:967.979700px;}
.y535{bottom:967.980000px;}
.y25b{bottom:968.700120px;}
.y4bd{bottom:969.240102px;}
.y1ec{bottom:969.780465px;}
.y4ca{bottom:970.319820px;}
.y4cf{bottom:970.319910px;}
.y104{bottom:971.759550px;}
.y15c{bottom:972.120330px;}
.y510{bottom:972.300066px;}
.y4b9{bottom:972.479652px;}
.y263{bottom:972.659901px;}
.y257{bottom:972.659940px;}
.y50f{bottom:973.740300px;}
.y15b{bottom:974.280090px;}
.y157{bottom:974.280150px;}
.y1eb{bottom:974.280465px;}
.y4be{bottom:974.819982px;}
.y262{bottom:974.820246px;}
.y255{bottom:974.820285px;}
.y553{bottom:976.080150px;}
.y2f9{bottom:976.619985px;}
.y554{bottom:981.480150px;}
.y2fa{bottom:982.019985px;}
.y258{bottom:982.380045px;}
.y254{bottom:984.359940px;}
.y63{bottom:984.720300px;}
.y259{bottom:984.900165px;}
.yfe{bottom:986.160000px;}
.y158{bottom:988.500270px;}
.y50e{bottom:988.679916px;}
.y25d{bottom:989.040420px;}
.y50d{bottom:990.120150px;}
.y64{bottom:990.120300px;}
.y49b{bottom:990.659490px;}
.yff{bottom:992.460000px;}
.y1e0{bottom:992.640630px;}
.y1e7{bottom:992.640765px;}
.y1ae{bottom:993.180011px;}
.y49c{bottom:993.719835px;}
.y552{bottom:994.080150px;}
.y3{bottom:995.520300px;}
.y4b6{bottom:996.239952px;}
.y1a6{bottom:996.600210px;}
.y4b1{bottom:996.779613px;}
.y4b0{bottom:998.039964px;}
.y4a3{bottom:998.040000px;}
.y34{bottom:998.759550px;}
.y4b2{bottom:998.939958px;}
.y4b3{bottom:999.479607px;}
.y4af{bottom:999.479613px;}
.y4a6{bottom:999.659535px;}
.y156{bottom:1000.560000px;}
.y1e3{bottom:1000.740630px;}
.y4a5{bottom:1000.919886px;}
.y4a7{bottom:1001.819880px;}
.y1a9{bottom:1001.820240px;}
.y4a8{bottom:1002.359529px;}
.y4a4{bottom:1002.359535px;}
.y62{bottom:1002.540450px;}
.y250{bottom:1003.080000px;}
.y30{bottom:1003.260060px;}
.y24c{bottom:1004.160045px;}
.y4b4{bottom:1004.879607px;}
.y252{bottom:1005.959886px;}
.y50c{bottom:1006.500000px;}
.y1b1{bottom:1006.859846px;}
.y4b5{bottom:1007.039952px;}
.y32{bottom:1007.040000px;}
.y251{bottom:1007.400120px;}
.y398{bottom:1007.940450px;}
.y1e4{bottom:1008.120525px;}
.y1e9{bottom:1008.120705px;}
.y498{bottom:1008.479640px;}
.y4a9{bottom:1008.479649px;}
.y1a4{bottom:1008.480105px;}
.y533{bottom:1009.020300px;}
.y2e1{bottom:1010.280096px;}
.y1dd{bottom:1010.280150px;}
.y2e7{bottom:1010.280171px;}
.y1e2{bottom:1010.280285px;}
.y1e8{bottom:1010.280465px;}
.y1af{bottom:1010.640311px;}
.y1a3{bottom:1010.640450px;}
.y24d{bottom:1011.360045px;}
.yfc{bottom:1011.540450px;}
.y551{bottom:1012.080150px;}
.y253{bottom:1013.520240px;}
.y24b{bottom:1013.520390px;}
.y4ac{bottom:1013.699769px;}
.y4ab{bottom:1014.959535px;}
.y4ad{bottom:1015.859529px;}
.y4ae{bottom:1016.399763px;}
.y4aa{bottom:1016.399769px;}
.y1b0{bottom:1016.759846px;}
.y1a5{bottom:1016.759985px;}
.y35{bottom:1017.299850px;}
.y2f{bottom:1017.300300px;}
.yfd{bottom:1017.840450px;}
.y1b2{bottom:1018.200071px;}
.y155{bottom:1018.380150px;}
.y49e{bottom:1018.559490px;}
.y1a8{bottom:1019.640390px;}
.y1e1{bottom:1019.640630px;}
.y61{bottom:1020.540450px;}
.y4a2{bottom:1020.899715px;}
.y2e0{bottom:1020.900216px;}
.y2e6{bottom:1020.900282px;}
.y24e{bottom:1021.080150px;}
.y2de{bottom:1022.340450px;}
.y2e5{bottom:1022.340516px;}
.y49a{bottom:1022.699790px;}
.y24a{bottom:1022.880150px;}
.y50b{bottom:1023.059700px;}
.y2e9{bottom:1023.600171px;}
.y24f{bottom:1023.600270px;}
.y49f{bottom:1024.139955px;}
.y1df{bottom:1024.500330px;}
.y1e6{bottom:1024.500465px;}
.y1ad{bottom:1024.859861px;}
.y2df{bottom:1026.840450px;}
.y499{bottom:1027.199790px;}
.y31{bottom:1027.560060px;}
.y1ab{bottom:1028.640330px;}
.y1de{bottom:1028.820450px;}
.y1e5{bottom:1028.820585px;}
.y1ac{bottom:1029.359861px;}
.y4a0{bottom:1029.539955px;}
.y2f7{bottom:1029.899865px;}
.y33{bottom:1031.519850px;}
.y2f5{bottom:1031.699871px;}
.y1aa{bottom:1031.700090px;}
.y1a7{bottom:1031.700150px;}
.y4a1{bottom:1032.599715px;}
.y2f4{bottom:1033.140105px;}
.y49d{bottom:1034.039940px;}
.y4b7{bottom:1034.039952px;}
.y550{bottom:1034.580150px;}
.y152{bottom:1036.380150px;}
.y2ee{bottom:1037.279766px;}
.y60{bottom:1038.360000px;}
.y2f6{bottom:1038.540105px;}
.y2ed{bottom:1038.720000px;}
.y2eb{bottom:1039.259976px;}
.y2e3{bottom:1039.260051px;}
.y50a{bottom:1039.440150px;}
.y2f8{bottom:1041.419985px;}
.y2ec{bottom:1041.420000px;}
.y2ea{bottom:1041.420321px;}
.y2e2{bottom:1041.420396px;}
.y153{bottom:1041.780150px;}
.yad{bottom:1042.320345px;}
.y397{bottom:1043.940465px;}
.y486{bottom:1044.120225px;}
.y2f1{bottom:1044.299880px;}
.y154{bottom:1046.280150px;}
.y2{bottom:1047.360000px;}
.y2ef{bottom:1047.540120px;}
.y2f3{bottom:1047.720006px;}
.y2f2{bottom:1049.159655px;}
.y496{bottom:1050.240090px;}
.y48d{bottom:1051.320000px;}
.y494{bottom:1052.040096px;}
.y249{bottom:1052.400240px;}
.y2f0{bottom:1052.940120px;}
.y493{bottom:1053.479745px;}
.y48f{bottom:1054.199886px;}
.y48e{bottom:1055.640120px;}
.y2dd{bottom:1055.640450px;}
.y2e8{bottom:1055.640471px;}
.y2e4{bottom:1055.640516px;}
.y509{bottom:1055.820000px;}
.y2e{bottom:1056.360000px;}
.y495{bottom:1058.879745px;}
.y490{bottom:1061.759655px;}
.y480{bottom:1061.759760px;}
.y483{bottom:1061.759775px;}
.yfb{bottom:1061.760000px;}
.y492{bottom:1068.059661px;}
.y481{bottom:1068.059760px;}
.y491{bottom:1069.499895px;}
.y489{bottom:1069.680030px;}
.y2d{bottom:1069.860000px;}
.y482{bottom:1070.940240px;}
.y488{bottom:1071.840375px;}
.y47f{bottom:1074.000000px;}
.y48c{bottom:1074.180015px;}
.y1{bottom:1074.360000px;}
.y508{bottom:1074.720000px;}
.y485{bottom:1075.979925px;}
.y48a{bottom:1077.420255px;}
.y151{bottom:1079.760000px;}
.y484{bottom:1080.479925px;}
.y48b{bottom:1082.820255px;}
.y497{bottom:1087.319940px;}
.y487{bottom:1087.320225px;}
.h1{height:0.684000px;}
.h2{height:0.684600px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:202.141110px;}
.x15f{left:205.020000px;}
.x80{left:207.902415px;}
.x123{left:209.700465px;}
.x10e{left:212.218410px;}
.x11a{left:213.840690px;}
.xd0{left:215.460930px;}
.x81{left:216.902415px;}
.x135{left:218.340030px;}
.x15d{left:219.598110px;}
.x120{left:221.580300px;}
.x152{left:222.839316px;}
.x1{left:224.280000px;}
.x136{left:225.719910px;}
.x153{left:227.699715px;}
.x10f{left:228.778170px;}
.x130{left:231.481725px;}
.x82{left:233.462175px;}
.xe7{left:234.539895px;}
.xea{left:236.699850px;}
.xf8{left:237.961548px;}
.x124{left:239.940765px;}
.xd{left:241.379550px;}
.x83{left:242.462175px;}
.xef{left:243.539340px;}
.x9{left:244.619880px;}
.x11{left:245.879460px;}
.x77{left:246.962715px;}
.x6f{left:248.580135px;}
.x10d{left:250.198920px;}
.x6e{left:251.640480px;}
.xf0{left:253.619220px;}
.x7b{left:254.702205px;}
.x15b{left:255.779475px;}
.x88{left:256.861815px;}
.xf1{left:258.299100px;}
.x12{left:259.739220px;}
.xc6{left:261.182325px;}
.x18{left:262.799100px;}
.x70{left:264.239835px;}
.x10a{left:265.499070px;}
.x13c{left:266.582238px;}
.xc7{left:267.662205px;}
.x13{left:268.919100px;}
.x144{left:270.722463px;}
.x84{left:272.341650px;}
.x117{left:273.776583px;}
.xac{left:275.222070px;}
.x19{left:276.478980px;}
.xeb{left:278.279790px;}
.x14f{left:279.718596px;}
.x131{left:280.980585px;}
.x1a{left:282.238740px;}
.x7c{left:283.322355px;}
.x2{left:284.579850px;}
.x129{left:285.841365px;}
.x14{left:287.459400px;}
.xc8{left:289.080180px;}
.x1b{left:290.698500px;}
.x3{left:292.859640px;}
.x71{left:295.199535px;}
.x102{left:296.639475px;}
.x2b{left:297.718050px;}
.xa8{left:299.161110px;}
.x75{left:300.781095px;}
.xdd{left:302.219340px;}
.xc5{left:303.302115px;}
.x89{left:304.741065px;}
.x12a{left:305.821245px;}
.x15{left:307.259400px;}
.xe{left:309.419190px;}
.x72{left:310.679385px;}
.xb7{left:312.299715px;}
.xb9{left:314.099715px;}
.x76{left:315.540855px;}
.xa{left:317.520480px;}
.x94{left:319.321560px;}
.xc3{left:320.399535px;}
.xcc{left:322.380930px;}
.x16{left:323.639250px;}
.xb{left:324.901410px;}
.xb8{left:326.159475px;}
.x109{left:327.598635px;}
.x159{left:328.679930px;}
.xba{left:329.759415px;}
.x14a{left:330.839685px;}
.xcd{left:332.821170px;}
.x14d{left:333.901140px;}
.x95{left:335.161260px;}
.x158{left:337.499535px;}
.xad{left:338.762310px;}
.x149{left:340.021095px;}
.xde{left:342.179550px;}
.xf9{left:343.441998px;}
.xbb{left:345.059415px;}
.x115{left:346.136952px;}
.xf2{left:347.398560px;}
.x5{left:348.659250px;}
.x142{left:349.740570px;}
.x100{left:350.999175px;}
.x2d{left:352.438170px;}
.x154{left:353.700228px;}
.x6{left:355.499490px;}
.x116{left:357.296712px;}
.x5a{left:358.379085px;}
.xe2{left:359.640120px;}
.xa9{left:361.261770px;}
.x11c{left:362.520000px;}
.x14b{left:363.599445px;}
.x33{left:364.857720px;}
.x13b{left:365.941578px;}
.xaf{left:367.741590px;}
.x4d{left:368.999700px;}
.x150{left:370.258311px;}
.x34{left:371.337600px;}
.xd1{left:372.781800px;}
.x96{left:373.861260px;}
.x4{left:375.299400px;}
.x5f{left:377.278965px;}
.x13d{left:378.361533px;}
.x35{left:379.437600px;}
.x5b{left:381.058935px;}
.x2e{left:382.677780px;}
.xd2{left:383.941560px;}
.x60{left:385.378965px;}
.x79{left:386.642985px;}
.x5c{left:388.618695px;}
.x36{left:390.057720px;}
.x2f{left:391.677780px;}
.x11d{left:393.479820px;}
.x37{left:394.737600px;}
.x61{left:395.999085px;}
.x30{left:397.437540px;}
.x140{left:398.880375px;}
.x97{left:399.961260px;}
.x38{left:401.577840px;}
.x5d{left:403.378455px;}
.x31{left:405.357660px;}
.x13f{left:406.440720px;}
.x62{left:407.519205px;}
.xb0{left:409.680840px;}
.x32{left:411.117420px;}
.x73{left:412.380735px;}
.x98{left:413.641140px;}
.xb1{left:415.080840px;}
.x5e{left:417.058335px;}
.x133{left:418.319490px;}
.x99{left:419.400900px;}
.x58{left:420.479895px;}
.x39{left:422.638140px;}
.x103{left:424.620240px;}
.xbc{left:425.699595px;}
.x7a{left:426.782535px;}
.x63{left:428.578905px;}
.xbd{left:430.739850px;}
.x104{left:432.180000px;}
.x10b{left:433.258725px;}
.x59{left:434.520135px;}
.xd4{left:435.960630px;}
.x8f{left:437.221215px;}
.x3a{left:438.478440px;}
.x9a{left:440.101560px;}
.x15c{left:441.180057px;}
.xf3{left:442.259010px;}
.xb4{left:443.880315px;}
.xd5{left:444.960630px;}
.x64{left:446.040000px;}
.x3b{left:447.478440px;}
.x2c{left:449.278470px;}
.xd6{left:450.720390px;}
.xbe{left:452.159385px;}
.x3c{left:453.238200px;}
.xf4{left:454.319355px;}
.x90{left:455.941365px;}
.x145{left:457.022511px;}
.xb5{left:458.100435px;}
.xb2{left:460.080810px;}
.x3d{left:461.697960px;}
.x8a{left:462.781845px;}
.x4c{left:464.399625px;}
.xf5{left:465.479115px;}
.xe9{left:466.740180px;}
.xbf{left:467.819685px;}
.x65{left:469.619880px;}
.x85{left:471.059895px;}
.x127{left:472.140945px;}
.xb3{left:473.760690px;}
.x47{left:474.840735px;}
.x13e{left:476.280138px;}
.x141{left:477.540681px;}
.x48{left:478.980975px;}
.x8b{left:480.961695px;}
.xe3{left:482.399760px;}
.x66{left:483.839400px;}
.x86{left:486.000135px;}
.x3e{left:487.618140px;}
.x7{left:488.881140px;}
.xdf{left:491.040555px;}
.x20{left:493.017990px;}
.x155{left:494.639655px;}
.x8{left:495.721380px;}
.xd7{left:496.980150px;}
.x49{left:498.420615px;}
.x15e{left:499.500420px;}
.x3f{left:500.580120px;}
.x67{left:502.379700px;}
.x128{left:503.461065px;}
.x21{left:505.077750px;}
.x137{left:506.160663px;}
.x41{left:507.420345px;}
.xd8{left:508.500270px;}
.x11b{left:509.579700px;}
.x40{left:510.660000px;}
.x4a{left:512.640135px;}
.x15a{left:514.079435px;}
.xf6{left:515.159028px;}
.x4b{left:516.780375px;}
.xd9{left:517.860030px;}
.x22{left:519.117990px;}
.xe4{left:520.199700px;}
.x9b{left:521.281500px;}
.x68{left:522.359580px;}
.x121{left:523.980270px;}
.x87{left:525.240435px;}
.x139{left:526.859688px;}
.xe0{left:528.120240px;}
.x69{left:529.199820px;}
.x105{left:530.279985px;}
.x122{left:531.540030px;}
.x23{left:532.797870px;}
.x42{left:534.600825px;}
.x6a{left:536.219940px;}
.x112{left:537.476442px;}
.x24{left:538.557630px;}
.xc0{left:540.359325px;}
.xe8{left:541.800360px;}
.x43{left:543.600825px;}
.x6b{left:545.219940px;}
.x25{left:547.017390px;}
.x14c{left:548.279400px;}
.x44{left:549.360585px;}
.x6c{left:550.979700px;}
.xca{left:552.239910px;}
.x9c{left:553.321140px;}
.xfa{left:554.759880px;}
.xce{left:555.841590px;}
.x45{left:557.820345px;}
.x6d{left:558.899820px;}
.x91{left:560.700375px;}
.x134{left:561.779835px;}
.x46{left:563.580105px;}
.x146{left:565.382121px;}
.x92{left:566.460135px;}
.x9d{left:567.540660px;}
.x110{left:568.616925px;}
.xcb{left:569.699670px;}
.xe5{left:570.959880px;}
.xc2{left:572.579385px;}
.xda{left:574.020180px;}
.xc1{left:575.999505px;}
.x147{left:577.079685px;}
.x17{left:578.159430px;}
.x93{left:580.140015px;}
.x9e{left:581.220540px;}
.x12b{left:583.021965px;}
.x78{left:584.102085px;}
.xdb{left:585.540300px;}
.x111{left:586.796805px;}
.xfb{left:587.880000px;}
.xe6{left:588.960465px;}
.x138{left:590.040720px;}
.x26{left:591.297210px;}
.x13a{left:592.380393px;}
.x9f{left:594.000420px;}
.x1c{left:595.977480px;}
.x125{left:597.061575px;}
.x113{left:598.136832px;}
.xf7{left:599.939613px;}
.xfd{left:601.380765px;}
.x12d{left:602.461545px;}
.x27{left:603.717330px;}
.x10c{left:604.978260px;}
.x126{left:606.780525px;}
.x114{left:607.856367px;}
.xa0{left:609.660120px;}
.x118{left:610.917423px;}
.x1d{left:612.177480px;}
.x151{left:613.619151px;}
.x7d{left:614.881215px;}
.x14e{left:615.958770px;}
.xa2{left:617.041410px;}
.x4e{left:618.658740px;}
.xc9{left:620.100930px;}
.xa3{left:621.181650px;}
.x7e{left:623.161095px;}
.x7f{left:624.962115px;}
.x4f{left:626.578860px;}
.x157{left:628.559880px;}
.x1e{left:629.637180px;}
.x156{left:631.260735px;}
.x50{left:632.338620px;}
.x101{left:633.419355px;}
.xa4{left:634.861530px;}
.xdc{left:636.300060px;}
.xae{left:637.562280px;}
.xfe{left:638.641470px;}
.x51{left:639.719670px;}
.xe1{left:642.059820px;}
.xaa{left:644.221980px;}
.x52{left:646.199550px;}
.x12e{left:647.460945px;}
.xa5{left:649.081050px;}
.x1f{left:650.337180px;}
.x8c{left:651.962445px;}
.x53{left:654.299550px;}
.xff{left:655.921320px;}
.xc4{left:656.998785px;}
.x148{left:658.980465px;}
.xd3{left:661.322100px;}
.xf{left:663.118410px;}
.x54{left:664.919670px;}
.xec{left:667.258830px;}
.x119{left:668.339493px;}
.x55{left:669.599550px;}
.x74{left:671.400825px;}
.x8d{left:673.381965px;}
.x2a{left:674.818560px;}
.x56{left:676.439790px;}
.xcf{left:678.242310px;}
.xed{left:681.299070px;}
.xa6{left:682.380390px;}
.xfc{left:684.540360px;}
.x57{left:685.979445px;}
.x132{left:687.601575px;}
.xee{left:689.759700px;}
.x8e{left:691.022265px;}
.x106{left:694.081050px;}
.x12f{left:696.060945px;}
.xab{left:697.682400px;}
.x11e{left:699.662205px;}
.xa1{left:701.821620px;}
.x143{left:703.081503px;}
.x107{left:704.159175px;}
.x12c{left:705.241335px;}
.x28{left:708.117150px;}
.xb6{left:709.740015px;}
.x10{left:710.997660px;}
.x11f{left:712.262205px;}
.xa7{left:713.340120px;}
.x108{left:715.318935px;}
.x29{left:716.576910px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:8.959104pt;}
.ls2{letter-spacing:8.959168pt;}
.ls1{letter-spacing:14.719360pt;}
.ws90{word-spacing:-8.959168pt;}
.ws98{word-spacing:-8.959104pt;}
.wse{word-spacing:0.000000pt;}
.ws4{word-spacing:0.639193pt;}
.ws91{word-spacing:0.639583pt;}
.wscc{word-spacing:0.640883pt;}
.ws5{word-spacing:1.279168pt;}
.ws5a{word-spacing:1.279558pt;}
.ws8d{word-spacing:1.279622pt;}
.wsa4{word-spacing:1.279686pt;}
.ws1b{word-spacing:1.279949pt;}
.ws74{word-spacing:1.280013pt;}
.wsd{word-spacing:1.280403pt;}
.ws4a{word-spacing:1.280467pt;}
.ws1d{word-spacing:1.280730pt;}
.ws35{word-spacing:1.280858pt;}
.wsa3{word-spacing:1.919142pt;}
.ws92{word-spacing:1.919533pt;}
.wsa5{word-spacing:1.919597pt;}
.ws10{word-spacing:1.920442pt;}
.ws61{word-spacing:2.559117pt;}
.ws3c{word-spacing:2.559181pt;}
.ws0{word-spacing:2.560416pt;}
.wsc6{word-spacing:3.199482pt;}
.wsc7{word-spacing:3.199610pt;}
.ws17{word-spacing:3.200781pt;}
.wsa0{word-spacing:3.200845pt;}
.wsbc{word-spacing:7.679168pt;}
.ws16{word-spacing:8.959104pt;}
.ws4c{word-spacing:8.959168pt;}
.ws83{word-spacing:8.959616pt;}
.ws6c{word-spacing:8.960448pt;}
.wsb2{word-spacing:9.600000pt;}
.ws55{word-spacing:10.240384pt;}
.wsc5{word-spacing:10.240896pt;}
.wsb9{word-spacing:10.880000pt;}
.ws93{word-spacing:11.518933pt;}
.wsb8{word-spacing:11.519467pt;}
.ws9a{word-spacing:11.519573pt;}
.wsa1{word-spacing:11.520000pt;}
.ws75{word-spacing:11.520853pt;}
.wscb{word-spacing:12.159467pt;}
.ws24{word-spacing:12.159573pt;}
.wsba{word-spacing:12.160000pt;}
.wsb1{word-spacing:12.160427pt;}
.wsbb{word-spacing:12.798933pt;}
.ws42{word-spacing:12.799147pt;}
.ws39{word-spacing:12.800000pt;}
.wsb5{word-spacing:12.800853pt;}
.ws8b{word-spacing:12.801067pt;}
.ws28{word-spacing:13.438933pt;}
.ws46{word-spacing:13.440000pt;}
.ws8c{word-spacing:13.440427pt;}
.wsf{word-spacing:13.440533pt;}
.ws9b{word-spacing:13.440853pt;}
.ws73{word-spacing:13.441067pt;}
.ws29{word-spacing:14.078933pt;}
.ws78{word-spacing:14.079467pt;}
.wsb6{word-spacing:14.080000pt;}
.ws72{word-spacing:14.080427pt;}
.ws32{word-spacing:14.080533pt;}
.ws85{word-spacing:14.082773pt;}
.ws71{word-spacing:14.718933pt;}
.ws7b{word-spacing:14.719467pt;}
.ws1f{word-spacing:14.719573pt;}
.ws2a{word-spacing:14.720000pt;}
.ws2b{word-spacing:14.720427pt;}
.ws64{word-spacing:14.720533pt;}
.ws27{word-spacing:14.721067pt;}
.ws3d{word-spacing:15.358933pt;}
.ws65{word-spacing:15.359147pt;}
.ws44{word-spacing:15.359467pt;}
.ws49{word-spacing:15.359573pt;}
.ws3{word-spacing:15.360000pt;}
.ws1e{word-spacing:15.360533pt;}
.ws7c{word-spacing:15.360853pt;}
.wsb0{word-spacing:15.361067pt;}
.ws20{word-spacing:15.998933pt;}
.ws6b{word-spacing:15.999147pt;}
.ws7{word-spacing:15.999467pt;}
.wsbe{word-spacing:15.999573pt;}
.ws38{word-spacing:16.000000pt;}
.ws86{word-spacing:16.000533pt;}
.ws6{word-spacing:16.001067pt;}
.ws2{word-spacing:16.638933pt;}
.ws80{word-spacing:16.639467pt;}
.ws67{word-spacing:16.639573pt;}
.ws6a{word-spacing:16.640000pt;}
.wsbd{word-spacing:16.640427pt;}
.ws56{word-spacing:16.640533pt;}
.ws4d{word-spacing:16.640853pt;}
.ws34{word-spacing:16.641067pt;}
.ws22{word-spacing:17.278933pt;}
.ws62{word-spacing:17.279147pt;}
.wsc{word-spacing:17.279467pt;}
.ws8e{word-spacing:17.279573pt;}
.ws48{word-spacing:17.280000pt;}
.ws1c{word-spacing:17.280427pt;}
.ws7a{word-spacing:17.280533pt;}
.ws99{word-spacing:17.280853pt;}
.ws68{word-spacing:17.281067pt;}
.ws9{word-spacing:17.918933pt;}
.ws6f{word-spacing:17.919467pt;}
.ws70{word-spacing:17.919573pt;}
.ws36{word-spacing:17.920000pt;}
.ws33{word-spacing:17.920533pt;}
.wsb3{word-spacing:17.920853pt;}
.ws41{word-spacing:17.921067pt;}
.ws9e{word-spacing:18.558933pt;}
.ws51{word-spacing:18.559467pt;}
.ws6e{word-spacing:18.559573pt;}
.ws43{word-spacing:18.560000pt;}
.ws79{word-spacing:18.560533pt;}
.ws9f{word-spacing:18.561067pt;}
.ws11{word-spacing:19.198933pt;}
.ws50{word-spacing:19.199147pt;}
.ws66{word-spacing:19.199467pt;}
.ws30{word-spacing:19.200000pt;}
.ws57{word-spacing:19.200533pt;}
.ws23{word-spacing:19.201067pt;}
.ws15{word-spacing:19.838933pt;}
.ws3a{word-spacing:19.839147pt;}
.ws6d{word-spacing:19.839467pt;}
.ws13{word-spacing:19.840000pt;}
.ws52{word-spacing:19.840427pt;}
.wsb7{word-spacing:19.840533pt;}
.ws63{word-spacing:19.840853pt;}
.ws12{word-spacing:19.841067pt;}
.ws5d{word-spacing:19.841600pt;}
.ws26{word-spacing:20.478933pt;}
.ws45{word-spacing:20.479467pt;}
.ws5e{word-spacing:20.480000pt;}
.ws94{word-spacing:20.480427pt;}
.ws21{word-spacing:20.480533pt;}
.ws8{word-spacing:20.481067pt;}
.ws7d{word-spacing:21.118933pt;}
.ws37{word-spacing:21.119467pt;}
.ws4f{word-spacing:21.119573pt;}
.ws14{word-spacing:21.120000pt;}
.ws25{word-spacing:21.121067pt;}
.ws97{word-spacing:21.757867pt;}
.ws76{word-spacing:21.758933pt;}
.wsab{word-spacing:21.759573pt;}
.ws77{word-spacing:21.760000pt;}
.ws47{word-spacing:21.760533pt;}
.ws9c{word-spacing:21.761067pt;}
.ws3f{word-spacing:22.398933pt;}
.ws18{word-spacing:22.399147pt;}
.ws3b{word-spacing:22.399467pt;}
.ws31{word-spacing:22.400000pt;}
.ws8a{word-spacing:22.400427pt;}
.wsae{word-spacing:22.400533pt;}
.ws40{word-spacing:22.401067pt;}
.ws3e{word-spacing:23.039467pt;}
.ws89{word-spacing:23.040000pt;}
.ws7f{word-spacing:23.040427pt;}
.ws81{word-spacing:23.040853pt;}
.ws84{word-spacing:23.041067pt;}
.ws2f{word-spacing:23.680000pt;}
.ws2e{word-spacing:23.680533pt;}
.wsa{word-spacing:23.681067pt;}
.ws19{word-spacing:24.318933pt;}
.ws60{word-spacing:24.319467pt;}
.ws87{word-spacing:24.319573pt;}
.ws2d{word-spacing:24.320000pt;}
.wsb{word-spacing:24.320533pt;}
.ws8f{word-spacing:24.321067pt;}
.ws88{word-spacing:24.958933pt;}
.ws7e{word-spacing:24.959467pt;}
.ws1a{word-spacing:24.959573pt;}
.wsa8{word-spacing:24.960533pt;}
.ws5f{word-spacing:24.961067pt;}
.ws5b{word-spacing:25.598933pt;}
.ws82{word-spacing:25.599147pt;}
.ws9d{word-spacing:25.600000pt;}
.ws53{word-spacing:25.601067pt;}
.ws54{word-spacing:26.239467pt;}
.wsa9{word-spacing:26.878933pt;}
.wsaa{word-spacing:26.880427pt;}
.ws5c{word-spacing:26.880533pt;}
.ws1{word-spacing:28.160000pt;}
.wsc4{word-spacing:38.400000pt;}
.wsa7{word-spacing:46.080533pt;}
.ws69{word-spacing:47.360533pt;}
.wsac{word-spacing:53.759467pt;}
.wsc9{word-spacing:53.760000pt;}
.wsc8{word-spacing:59.519467pt;}
.wsc3{word-spacing:59.520000pt;}
.ws58{word-spacing:62.080000pt;}
.wsc0{word-spacing:62.714667pt;}
.wsca{word-spacing:62.721067pt;}
.wsc1{word-spacing:65.920000pt;}
.ws4b{word-spacing:71.681067pt;}
.wsbf{word-spacing:78.718933pt;}
.wsc2{word-spacing:80.640000pt;}
.wsa6{word-spacing:113.918933pt;}
.ws4e{word-spacing:137.598933pt;}
.wsad{word-spacing:167.041067pt;}
.wsb4{word-spacing:218.241067pt;}
.ws59{word-spacing:225.920000pt;}
.ws96{word-spacing:291.198933pt;}
.wsaf{word-spacing:366.720000pt;}
.ws95{word-spacing:405.120000pt;}
.ws2c{word-spacing:487.680533pt;}
.wsa2{word-spacing:561.280000pt;}
._28{margin-left:-26.237133pt;}
._7{margin-left:-24.320000pt;}
._29{margin-left:-19.198528pt;}
._18{margin-left:-8.959936pt;}
._3{margin-left:-7.039147pt;}
._1a{margin-left:-5.759573pt;}
._4{margin-left:-4.480853pt;}
._0{margin-left:-2.560000pt;}
._5{margin-left:-1.278400pt;}
._a{width:1.277815pt;}
._c{width:2.560026pt;}
._12{width:3.837261pt;}
._17{width:6.400000pt;}
._19{width:8.959104pt;}
._8{width:10.880832pt;}
._9{width:12.154688pt;}
._13{width:14.085312pt;}
._f{width:15.359659pt;}
._6{width:17.280533pt;}
._b{width:19.200051pt;}
._11{width:20.491251pt;}
._d{width:22.398400pt;}
._14{width:24.321600pt;}
._e{width:25.597013pt;}
._15{width:26.881813pt;}
._2{width:28.160651pt;}
._1{width:30.080000pt;}
._23{width:37.760000pt;}
._24{width:39.040000pt;}
._25{width:49.920000pt;}
._21{width:55.040000pt;}
._26{width:59.520000pt;}
._1b{width:60.801067pt;}
._27{width:63.998400pt;}
._10{width:71.681067pt;}
._1d{width:78.720000pt;}
._22{width:81.920341pt;}
._1e{width:92.160000pt;}
._1f{width:122.880000pt;}
._1c{width:131.840000pt;}
._20{width:142.080000pt;}
._16{width:1231.359915pt;}
.fs0{font-size:0.640000pt;}
.y0{bottom:0.000000pt;}
.y2d8{bottom:232.106787pt;}
.y388{bottom:233.387200pt;}
.y2d6{bottom:234.987000pt;}
.y46b{bottom:235.306624pt;}
.y19f{bottom:235.306901pt;}
.y1dc{bottom:236.906783pt;}
.y2d4{bottom:238.346893pt;}
.y197{bottom:238.347053pt;}
.y5f{bottom:238.826000pt;}
.y507{bottom:238.826133pt;}
.y248{bottom:238.826165pt;}
.y396{bottom:238.826253pt;}
.y532{bottom:238.826267pt;}
.y150{bottom:238.826405pt;}
.y2b{bottom:238.826413pt;}
.y1db{bottom:238.826569pt;}
.yf9{bottom:238.826613pt;}
.yac{bottom:238.826653pt;}
.y38a{bottom:239.786667pt;}
.y2d7{bottom:239.946893pt;}
.y394{bottom:240.426259pt;}
.y2da{bottom:240.426587pt;}
.y479{bottom:240.746747pt;}
.y2cd{bottom:240.906800pt;}
.y393{bottom:241.706467pt;}
.y470{bottom:241.706667pt;}
.y38c{bottom:242.346565pt;}
.y2c{bottom:242.346720pt;}
.y477{bottom:242.346752pt;}
.y2d5{bottom:242.346893pt;}
.y2cb{bottom:242.346907pt;}
.y19a{bottom:242.987107pt;}
.y38b{bottom:243.626253pt;}
.y476{bottom:243.626440pt;}
.yfa{bottom:243.626613pt;}
.y472{bottom:244.266565pt;}
.y2dc{bottom:244.266680pt;}
.y2d0{bottom:244.266693pt;}
.y471{bottom:245.546773pt;}
.y395{bottom:246.666360pt;}
.y2d9{bottom:247.306787pt;}
.y2ce{bottom:247.306800pt;}
.y47c{bottom:247.466573pt;}
.y1a2{bottom:247.466741pt;}
.y2d3{bottom:248.106792pt;}
.y478{bottom:248.426440pt;}
.y38d{bottom:249.066360pt;}
.y47b{bottom:249.066573pt;}
.y384{bottom:249.066800pt;}
.y2d2{bottom:249.387000pt;}
.y2cc{bottom:249.387013pt;}
.y57e{bottom:249.707600pt;}
.y1a0{bottom:250.826635pt;}
.y196{bottom:250.826747pt;}
.y468{bottom:250.986757pt;}
.y473{bottom:250.986880pt;}
.y47e{bottom:250.986973pt;}
.y390{bottom:251.786667pt;}
.y2db{bottom:252.106787pt;}
.y2cf{bottom:252.106800pt;}
.y2d1{bottom:252.426587pt;}
.y1da{bottom:252.746916pt;}
.y5e{bottom:254.666133pt;}
.y506{bottom:254.666267pt;}
.y247{bottom:254.666299pt;}
.y38e{bottom:254.666360pt;}
.y531{bottom:254.666400pt;}
.y14f{bottom:254.666539pt;}
.y2a{bottom:254.666547pt;}
.y1d9{bottom:254.666703pt;}
.yf8{bottom:254.666747pt;}
.yab{bottom:254.666787pt;}
.y385{bottom:254.666800pt;}
.y392{bottom:254.826259pt;}
.y391{bottom:256.106467pt;}
.y1a1{bottom:256.266741pt;}
.y475{bottom:256.586885pt;}
.y474{bottom:257.866573pt;}
.y389{bottom:258.187200pt;}
.y199{bottom:258.826707pt;}
.y38f{bottom:259.466360pt;}
.y46c{bottom:259.946757pt;}
.y2ca{bottom:260.106773pt;}
.y2c8{bottom:261.706773pt;}
.y387{bottom:261.706933pt;}
.y46f{bottom:261.866544pt;}
.y19e{bottom:263.466768pt;}
.y46a{bottom:263.626357pt;}
.y57d{bottom:264.427333pt;}
.y46d{bottom:264.746757pt;}
.y47a{bottom:265.706613pt;}
.y47d{bottom:265.706707pt;}
.y386{bottom:265.706933pt;}
.y19c{bottom:266.826667pt;}
.y19d{bottom:267.306875pt;}
.y469{bottom:267.626357pt;}
.y2c9{bottom:268.586987pt;}
.y19b{bottom:269.546973pt;}
.y198{bottom:269.547013pt;}
.y46e{bottom:269.706651pt;}
.y5d{bottom:270.666133pt;}
.y505{bottom:270.666267pt;}
.y246{bottom:270.666299pt;}
.y530{bottom:270.666400pt;}
.y1d8{bottom:270.666703pt;}
.yf7{bottom:270.666747pt;}
.yaa{bottom:270.666787pt;}
.y23{bottom:275.947373pt;}
.y14a{bottom:276.586880pt;}
.y14e{bottom:276.586885pt;}
.y2c6{bottom:276.906720pt;}
.y57c{bottom:277.867467pt;}
.y149{bottom:278.506667pt;}
.y14d{bottom:278.506672pt;}
.y2c7{bottom:278.506720pt;}
.y25{bottom:279.306667pt;}
.y36f{bottom:280.106587pt;}
.y2c4{bottom:280.426507pt;}
.y14c{bottom:282.826459pt;}
.y44b{bottom:283.786773pt;}
.y14b{bottom:284.106667pt;}
.y37d{bottom:285.546747pt;}
.y44c{bottom:286.506560pt;}
.y371{bottom:286.506667pt;}
.y5c{bottom:286.666133pt;}
.y504{bottom:286.666267pt;}
.y245{bottom:286.666299pt;}
.y52f{bottom:286.666400pt;}
.y381{bottom:286.666667pt;}
.yf6{bottom:286.666747pt;}
.ya9{bottom:286.666787pt;}
.y37b{bottom:287.146752pt;}
.y2c5{bottom:287.306720pt;}
.y1d7{bottom:287.306836pt;}
.y37a{bottom:288.426440pt;}
.y28{bottom:288.426467pt;}
.y22{bottom:288.427067pt;}
.y466{bottom:288.746624pt;}
.y373{bottom:289.066565pt;}
.y461{bottom:289.226323pt;}
.y460{bottom:290.346635pt;}
.y453{bottom:290.346667pt;}
.y372{bottom:290.346773pt;}
.y195{bottom:290.987147pt;}
.y462{bottom:291.146629pt;}
.y463{bottom:291.626317pt;}
.y45f{bottom:291.626323pt;}
.y456{bottom:291.786773pt;}
.y27{bottom:291.946773pt;}
.y57b{bottom:292.587733pt;}
.y455{bottom:292.906565pt;}
.y37c{bottom:293.226440pt;}
.y457{bottom:293.706560pt;}
.y458{bottom:294.186768pt;}
.y454{bottom:294.186773pt;}
.y36b{bottom:295.786720pt;}
.y37e{bottom:295.786853pt;}
.y374{bottom:295.786880pt;}
.y383{bottom:295.787067pt;}
.y464{bottom:296.426317pt;}
.y2c3{bottom:297.546853pt;}
.y24{bottom:297.547373pt;}
.yf2{bottom:298.026667pt;}
.y465{bottom:298.346624pt;}
.y377{bottom:298.506667pt;}
.y26{bottom:299.306667pt;}
.y29{bottom:299.306680pt;}
.y2c2{bottom:299.466640pt;}
.y459{bottom:299.626355pt;}
.y448{bottom:299.626373pt;}
.y36c{bottom:301.386720pt;}
.y375{bottom:301.386880pt;}
.y379{bottom:301.386885pt;}
.y5b{bottom:302.506267pt;}
.y503{bottom:302.506400pt;}
.y147{bottom:302.506533pt;}
.y148{bottom:302.506667pt;}
.yef{bottom:302.506707pt;}
.yf4{bottom:302.506880pt;}
.y378{bottom:302.666573pt;}
.y1d6{bottom:303.306836pt;}
.y45c{bottom:304.266461pt;}
.y370{bottom:304.746720pt;}
.y380{bottom:304.746747pt;}
.y45b{bottom:305.386773pt;}
.y194{bottom:305.387147pt;}
.y45d{bottom:306.186768pt;}
.y376{bottom:306.186880pt;}
.y45e{bottom:306.666456pt;}
.y45a{bottom:306.666461pt;}
.y192{bottom:306.987147pt;}
.y57a{bottom:307.147600pt;}
.yf0{bottom:307.306707pt;}
.yf5{bottom:307.306880pt;}
.yf1{bottom:307.786920pt;}
.y36e{bottom:308.426320pt;}
.y44e{bottom:308.746640pt;}
.y37f{bottom:310.506587pt;}
.y382{bottom:310.506800pt;}
.y452{bottom:310.666427pt;}
.y242{bottom:311.306432pt;}
.y2bd{bottom:311.786933pt;}
.y2c0{bottom:311.786947pt;}
.y44a{bottom:312.266507pt;}
.y36d{bottom:312.426320pt;}
.y240{bottom:312.586640pt;}
.yf3{bottom:313.226667pt;}
.y44f{bottom:313.546640pt;}
.ya8{bottom:313.547053pt;}
.y2b9{bottom:313.866613pt;}
.y193{bottom:313.866840pt;}
.y241{bottom:315.146533pt;}
.y2b7{bottom:315.466613pt;}
.y2be{bottom:315.466627pt;}
.y2c1{bottom:315.466640pt;}
.y449{bottom:316.266507pt;}
.y2bc{bottom:317.386920pt;}
.y450{bottom:318.346640pt;}
.y145{bottom:318.346667pt;}
.y5a{bottom:318.506267pt;}
.y502{bottom:318.506400pt;}
.y52e{bottom:318.506533pt;}
.yed{bottom:318.506707pt;}
.y1d5{bottom:319.146969pt;}
.y2ba{bottom:320.266613pt;}
.y579{bottom:320.747600pt;}
.y451{bottom:321.066427pt;}
.y467{bottom:322.346624pt;}
.y44d{bottom:322.346640pt;}
.y2b8{bottom:322.346827pt;}
.y2bf{bottom:322.346840pt;}
.y146{bottom:323.146667pt;}
.yee{bottom:323.306707pt;}
.y21{bottom:323.947333pt;}
.y2bb{bottom:325.066613pt;}
.y190{bottom:325.387147pt;}
.y244{bottom:326.506379pt;}
.y360{bottom:326.826320pt;}
.y243{bottom:328.426165pt;}
.y23c{bottom:328.426267pt;}
.ya7{bottom:329.547053pt;}
.y191{bottom:330.347040pt;}
.y436{bottom:331.306840pt;}
.y2b6{bottom:332.426539pt;}
.y23e{bottom:332.586685pt;}
.y364{bottom:333.226667pt;}
.y36a{bottom:333.386667pt;}
.y2b5{bottom:333.706747pt;}
.y23d{bottom:333.866373pt;}
.y59{bottom:334.346400pt;}
.y501{bottom:334.346533pt;}
.y144{bottom:334.346667pt;}
.y2b4{bottom:334.506747pt;}
.y1d4{bottom:335.146969pt;}
.y578{bottom:335.307467pt;}
.y366{bottom:335.787085pt;}
.y2b2{bottom:336.106747pt;}
.y446{bottom:336.746773pt;}
.y365{bottom:337.066773pt;}
.y43d{bottom:337.706667pt;}
.y430{bottom:337.866667pt;}
.y444{bottom:338.346779pt;}
.y443{bottom:339.626467pt;}
.y20{bottom:339.947333pt;}
.y43f{bottom:340.266565pt;}
.y23f{bottom:341.066373pt;}
.y18e{bottom:341.387147pt;}
.y43e{bottom:341.546773pt;}
.y35c{bottom:342.506453pt;}
.y362{bottom:342.506587pt;}
.y368{bottom:342.506907pt;}
.y2b3{bottom:342.986960pt;}
.y433{bottom:343.466667pt;}
.y445{bottom:344.586880pt;}
.ye7{bottom:344.746667pt;}
.ya6{bottom:345.387187pt;}
.y18f{bottom:346.187147pt;}
.y440{bottom:346.986880pt;}
.y42a{bottom:346.986920pt;}
.y42d{bottom:346.986933pt;}
.y431{bottom:346.986973pt;}
.y35d{bottom:347.946560pt;}
.y500{bottom:348.426227pt;}
.y577{bottom:348.907467pt;}
.y238{bottom:350.026312pt;}
.y57{bottom:350.346400pt;}
.y142{bottom:350.346533pt;}
.y143{bottom:350.346667pt;}
.y230{bottom:350.666565pt;}
.y1d3{bottom:351.146969pt;}
.y237{bottom:351.306520pt;}
.y363{bottom:351.466480pt;}
.y369{bottom:351.466800pt;}
.y239{bottom:351.946520pt;}
.y22f{bottom:351.946773pt;}
.y42b{bottom:352.586920pt;}
.y432{bottom:352.586973pt;}
.y442{bottom:352.746779pt;}
.ye4{bottom:353.866307pt;}
.ye9{bottom:353.866533pt;}
.yec{bottom:353.866573pt;}
.y441{bottom:354.026467pt;}
.y439{bottom:354.187053pt;}
.y2b0{bottom:354.666613pt;}
.y58{bottom:355.146400pt;}
.y35f{bottom:355.146587pt;}
.y42c{bottom:355.306720pt;}
.y1f{bottom:355.787467pt;}
.y42e{bottom:356.106720pt;}
.y438{bottom:356.106840pt;}
.y429{bottom:357.866613pt;}
.y43c{bottom:358.026627pt;}
.y2b1{bottom:358.186925pt;}
.y35e{bottom:359.146587pt;}
.ye5{bottom:359.466307pt;}
.yea{bottom:359.466533pt;}
.y22a{bottom:359.466613pt;}
.y435{bottom:359.626573pt;}
.y42f{bottom:360.906720pt;}
.y43a{bottom:360.906840pt;}
.y361{bottom:361.226320pt;}
.y367{bottom:361.226640pt;}
.ya5{bottom:361.387187pt;}
.ye6{bottom:362.826200pt;}
.y576{bottom:363.467333pt;}
.y434{bottom:363.626573pt;}
.y4ff{bottom:364.426227pt;}
.y43b{bottom:365.706840pt;}
.y23b{bottom:365.866347pt;}
.y232{bottom:365.866525pt;}
.y22b{bottom:365.866613pt;}
.y141{bottom:366.186667pt;}
.y140{bottom:366.186933pt;}
.y56{bottom:366.346400pt;}
.y4fe{bottom:366.346533pt;}
.y52d{bottom:366.346667pt;}
.y1d2{bottom:366.987103pt;}
.y23a{bottom:367.786653pt;}
.y233{bottom:367.786667pt;}
.y231{bottom:367.786832pt;}
.y229{bottom:367.786920pt;}
.ye8{bottom:368.586800pt;}
.yeb{bottom:368.586840pt;}
.y447{bottom:369.706640pt;}
.y437{bottom:369.706840pt;}
.y1e{bottom:371.787467pt;}
.y235{bottom:372.106459pt;}
.y22d{bottom:372.106712pt;}
.y234{bottom:373.386667pt;}
.y22c{bottom:373.386920pt;}
.y18b{bottom:374.666747pt;}
.y228{bottom:376.266613pt;}
.y575{bottom:378.027200pt;}
.y236{bottom:380.426253pt;}
.y22e{bottom:380.426507pt;}
.y55{bottom:382.186533pt;}
.y4fd{bottom:382.186667pt;}
.y52c{bottom:382.186800pt;}
.y13f{bottom:382.186933pt;}
.y1d1{bottom:382.987103pt;}
.y2a5{bottom:385.706632pt;}
.y18d{bottom:386.506880pt;}
.y9a{bottom:386.666693pt;}
.y2a4{bottom:386.986840pt;}
.y1d{bottom:387.787467pt;}
.ye2{bottom:388.266307pt;}
.y99{bottom:388.426587pt;}
.y187{bottom:390.506880pt;}
.y574{bottom:391.627200pt;}
.y420{bottom:392.266533pt;}
.y9b{bottom:392.426587pt;}
.ye3{bottom:393.066307pt;}
.y188{bottom:396.106880pt;}
.y2a3{bottom:396.426419pt;}
.y292{bottom:397.386792pt;}
.y35b{bottom:397.546587pt;}
.y18c{bottom:397.546987pt;}
.y2a2{bottom:397.706627pt;}
.y13e{bottom:398.026533pt;}
.y54{bottom:398.186533pt;}
.y4fc{bottom:398.186667pt;}
.y52b{bottom:398.186800pt;}
.y425{bottom:398.506667pt;}
.y2a7{bottom:398.666440pt;}
.y291{bottom:398.666480pt;}
.y299{bottom:398.666613pt;}
.y1d0{bottom:398.987103pt;}
.y427{bottom:401.066565pt;}
.y426{bottom:402.346773pt;}
.y98{bottom:402.346853pt;}
.y18a{bottom:403.147013pt;}
.y1c{bottom:403.627067pt;}
.ye1{bottom:404.106440pt;}
.ya3{bottom:404.266787pt;}
.y2a0{bottom:405.386893pt;}
.y2ae{bottom:405.386973pt;}
.y573{bottom:406.187600pt;}
.y189{bottom:407.147013pt;}
.y41d{bottom:407.786800pt;}
.y428{bottom:407.786880pt;}
.y97{bottom:408.266640pt;}
.y227{bottom:408.906693pt;}
.y28f{bottom:411.306640pt;}
.y8c{bottom:411.626480pt;}
.ya0{bottom:411.626640pt;}
.y225{bottom:412.426480pt;}
.y2a9{bottom:412.746653pt;}
.y294{bottom:412.746739pt;}
.y2af{bottom:412.746827pt;}
.y424{bottom:413.386880pt;}
.y35a{bottom:413.546587pt;}
.y96{bottom:413.706747pt;}
.y29f{bottom:413.866587pt;}
.y2ad{bottom:413.866667pt;}
.y13d{bottom:414.026533pt;}
.y53{bottom:414.186533pt;}
.y4fb{bottom:414.186667pt;}
.y52a{bottom:414.186800pt;}
.y2a8{bottom:414.666440pt;}
.y293{bottom:414.666525pt;}
.y28d{bottom:414.666533pt;}
.y29a{bottom:414.666613pt;}
.y295{bottom:414.666667pt;}
.y422{bottom:414.986880pt;}
.y421{bottom:416.906667pt;}
.y226{bottom:417.226480pt;}
.y95{bottom:418.986960pt;}
.y1b{bottom:419.627067pt;}
.ye0{bottom:420.106440pt;}
.y28e{bottom:420.106640pt;}
.y8b{bottom:420.106693pt;}
.y29b{bottom:420.106720pt;}
.y9f{bottom:420.106853pt;}
.y41f{bottom:420.426400pt;}
.y87{bottom:420.746827pt;}
.ya1{bottom:420.746947pt;}
.ya4{bottom:420.747053pt;}
.y572{bottom:420.907333pt;}
.y29e{bottom:421.866587pt;}
.y2ac{bottom:421.866667pt;}
.y423{bottom:423.786880pt;}
.y41e{bottom:424.426400pt;}
.y224{bottom:426.506747pt;}
.y2a6{bottom:427.146707pt;}
.y290{bottom:427.146747pt;}
.y2a1{bottom:427.146760pt;}
.y298{bottom:427.146880pt;}
.y8a{bottom:428.106693pt;}
.y13c{bottom:428.106747pt;}
.y9e{bottom:428.106853pt;}
.y223{bottom:428.426533pt;}
.y359{bottom:429.386720pt;}
.y93{bottom:429.387005pt;}
.y1cf{bottom:429.706836pt;}
.y29d{bottom:429.866587pt;}
.y2ab{bottom:429.866667pt;}
.y52{bottom:430.026133pt;}
.y4fa{bottom:430.026267pt;}
.y529{bottom:430.026400pt;}
.y13b{bottom:430.026533pt;}
.y92{bottom:430.666693pt;}
.y186{bottom:430.826613pt;}
.y297{bottom:430.986979pt;}
.y296{bottom:432.266667pt;}
.ya2{bottom:433.387053pt;}
.y571{bottom:434.347467pt;}
.y94{bottom:434.666693pt;}
.y1a{bottom:435.627067pt;}
.ydf{bottom:436.106440pt;}
.y89{bottom:436.106693pt;}
.y9d{bottom:436.106853pt;}
.y401{bottom:440.746640pt;}
.y402{bottom:443.306533pt;}
.y13a{bottom:443.946880pt;}
.y91{bottom:444.586960pt;}
.y41b{bottom:445.706533pt;}
.y138{bottom:445.866544pt;}
.y139{bottom:445.866667pt;}
.y51{bottom:446.026133pt;}
.y4f9{bottom:446.026267pt;}
.y416{bottom:446.026336pt;}
.y528{bottom:446.026400pt;}
.y185{bottom:446.666747pt;}
.y8f{bottom:446.826539pt;}
.y409{bottom:447.146667pt;}
.y415{bottom:447.306541pt;}
.y417{bottom:447.946643pt;}
.y8e{bottom:448.106747pt;}
.y418{bottom:448.586747pt;}
.y414{bottom:448.586749pt;}
.y40c{bottom:448.586773pt;}
.y570{bottom:449.067200pt;}
.y40b{bottom:449.706565pt;}
.y40d{bottom:450.506560pt;}
.y40e{bottom:450.986768pt;}
.y40a{bottom:450.986773pt;}
.y19{bottom:451.467200pt;}
.y90{bottom:452.106747pt;}
.y29c{bottom:453.226453pt;}
.y2aa{bottom:453.226533pt;}
.y419{bottom:453.386747pt;}
.y21f{bottom:454.186712pt;}
.y215{bottom:454.187397pt;}
.y41a{bottom:455.306533pt;}
.y21e{bottom:455.466400pt;}
.y214{bottom:455.467085pt;}
.y40f{bottom:456.586768pt;}
.y3fe{bottom:456.586773pt;}
.y354{bottom:457.226280pt;}
.y88{bottom:459.466560pt;}
.y9c{bottom:459.466720pt;}
.y4f8{bottom:459.946613pt;}
.y1ce{bottom:460.426569pt;}
.y411{bottom:461.226355pt;}
.y50{bottom:461.866267pt;}
.y4f7{bottom:461.866400pt;}
.yda{bottom:461.866507pt;}
.y527{bottom:461.866533pt;}
.y137{bottom:461.866544pt;}
.y8d{bottom:462.026480pt;}
.y219{bottom:462.346667pt;}
.y56f{bottom:462.507333pt;}
.y184{bottom:462.666747pt;}
.y412{bottom:463.146661pt;}
.y413{bottom:463.626349pt;}
.y410{bottom:463.626355pt;}
.y34e{bottom:463.786667pt;}
.y404{bottom:465.546640pt;}
.y408{bottom:467.466427pt;}
.y18{bottom:467.467200pt;}
.y400{bottom:469.226373pt;}
.y54f{bottom:469.386667pt;}
.ydd{bottom:469.546600pt;}
.y221{bottom:469.546659pt;}
.yd4{bottom:469.546667pt;}
.y405{bottom:470.346640pt;}
.y28c{bottom:470.826400pt;}
.y356{bottom:470.986760pt;}
.y220{bottom:471.466445pt;}
.y21a{bottom:471.466453pt;}
.y222{bottom:471.466667pt;}
.y212{bottom:471.467139pt;}
.y28a{bottom:472.426400pt;}
.y34f{bottom:472.906453pt;}
.y355{bottom:472.906547pt;}
.y357{bottom:472.906667pt;}
.y34b{bottom:472.906800pt;}
.y3ff{bottom:473.226373pt;}
.yd7{bottom:474.026360pt;}
.yd1{bottom:474.026427pt;}
.y406{bottom:475.306533pt;}
.y21c{bottom:475.626352pt;}
.y1cd{bottom:476.266703pt;}
.y21b{bottom:476.906560pt;}
.y56e{bottom:477.227067pt;}
.yde{bottom:477.386707pt;}
.yd5{bottom:477.386773pt;}
.ycf{bottom:477.386840pt;}
.y4f{bottom:477.866267pt;}
.y4f6{bottom:477.866400pt;}
.y407{bottom:477.866427pt;}
.y526{bottom:477.866533pt;}
.y136{bottom:477.866544pt;}
.y350{bottom:478.346560pt;}
.y34c{bottom:478.346907pt;}
.y183{bottom:478.506880pt;}
.y403{bottom:479.306507pt;}
.y41c{bottom:479.306533pt;}
.y28b{bottom:479.306613pt;}
.y86{bottom:479.466560pt;}
.y217{bottom:480.747344pt;}
.y351{bottom:481.866347pt;}
.y358{bottom:481.866560pt;}
.y34d{bottom:481.866693pt;}
.y218{bottom:482.666667pt;}
.y216{bottom:482.667131pt;}
.yd6{bottom:482.826360pt;}
.yd0{bottom:482.826427pt;}
.y17{bottom:483.307333pt;}
.y21d{bottom:483.946667pt;}
.y213{bottom:483.947352pt;}
.ydc{bottom:485.386200pt;}
.yd3{bottom:485.386267pt;}
.y353{bottom:485.546547pt;}
.y3ec{bottom:488.266448pt;}
.y352{bottom:489.386133pt;}
.y135{bottom:489.706677pt;}
.yd9{bottom:490.026373pt;}
.y289{bottom:490.186267pt;}
.y132{bottom:491.786371pt;}
.y56d{bottom:491.786933pt;}
.y54e{bottom:492.106400pt;}
.y1cc{bottom:492.266703pt;}
.y3fc{bottom:493.706640pt;}
.y131{bottom:493.706677pt;}
.y4e{bottom:493.866267pt;}
.y4f5{bottom:493.866400pt;}
.y525{bottom:493.866533pt;}
.yd8{bottom:494.026373pt;}
.y3f3{bottom:494.506667pt;}
.y182{bottom:494.506880pt;}
.y3fa{bottom:495.306645pt;}
.y84{bottom:495.466560pt;}
.ydb{bottom:496.106507pt;}
.yd2{bottom:496.106573pt;}
.y3f9{bottom:496.586333pt;}
.y3f5{bottom:497.066565pt;}
.y3f4{bottom:498.346773pt;}
.y16{bottom:499.307333pt;}
.y20f{bottom:499.787005pt;}
.y85{bottom:500.266560pt;}
.y134{bottom:500.426464pt;}
.y20e{bottom:501.067213pt;}
.y20a{bottom:501.227107pt;}
.y3fb{bottom:501.386333pt;}
.y133{bottom:503.626464pt;}
.y3e5{bottom:503.946568pt;}
.y3e9{bottom:503.946581pt;}
.y3f6{bottom:503.946773pt;}
.y56c{bottom:505.386933pt;}
.y130{bottom:506.346784pt;}
.y181{bottom:506.506880pt;}
.y12e{bottom:507.786371pt;}
.y54d{bottom:507.946533pt;}
.y1cb{bottom:508.266703pt;}
.y206{bottom:508.586933pt;}
.y3e6{bottom:509.386155pt;}
.y3f8{bottom:509.546779pt;}
.y4d{bottom:509.706400pt;}
.y4f3{bottom:509.706533pt;}
.y524{bottom:509.706667pt;}
.y12d{bottom:509.706677pt;}
.y17f{bottom:510.506880pt;}
.y3f7{bottom:510.826467pt;}
.y3ef{bottom:510.986275pt;}
.y82{bottom:511.306693pt;}
.y34a{bottom:511.946933pt;}
.y3e8{bottom:512.106475pt;}
.y3ee{bottom:512.906581pt;}
.y4f4{bottom:514.506533pt;}
.y12f{bottom:514.506677pt;}
.y3e4{bottom:514.666355pt;}
.y3e7{bottom:514.666368pt;}
.y3f2{bottom:514.826368pt;}
.y207{bottom:514.986933pt;}
.y211{bottom:514.986965pt;}
.y20c{bottom:514.987067pt;}
.yce{bottom:515.146707pt;}
.y15{bottom:515.307333pt;}
.y83{bottom:516.266587pt;}
.y3eb{bottom:516.586181pt;}
.y205{bottom:516.907240pt;}
.y210{bottom:516.907272pt;}
.y20b{bottom:516.907373pt;}
.y180{bottom:517.386573pt;}
.y3f0{bottom:517.706581pt;}
.y27d{bottom:519.466757pt;}
.y283{bottom:519.466797pt;}
.y56b{bottom:519.947333pt;}
.y3ea{bottom:520.586181pt;}
.y3f1{bottom:522.666475pt;}
.y12c{bottom:523.626504pt;}
.y54c{bottom:523.946533pt;}
.y204{bottom:525.227027pt;}
.y12b{bottom:525.546811pt;}
.y4c{bottom:525.706400pt;}
.y4f2{bottom:525.706533pt;}
.y3ed{bottom:526.666448pt;}
.y3fd{bottom:526.666507pt;}
.y81{bottom:527.306693pt;}
.y17e{bottom:527.466747pt;}
.y27c{bottom:528.906864pt;}
.y282{bottom:528.906896pt;}
.y209{bottom:529.547373pt;}
.y20d{bottom:529.547480pt;}
.y27a{bottom:530.186552pt;}
.y281{bottom:530.186584pt;}
.ycd{bottom:531.146707pt;}
.y285{bottom:531.146931pt;}
.y14{bottom:531.147467pt;}
.y17b{bottom:531.466747pt;}
.y56a{bottom:533.547333pt;}
.y208{bottom:533.547373pt;}
.y27b{bottom:534.186552pt;}
.y523{bottom:534.506667pt;}
.y17c{bottom:536.266747pt;}
.y1ca{bottom:537.706783pt;}
.y17d{bottom:538.346960pt;}
.y346{bottom:538.986267pt;}
.y338{bottom:538.986613pt;}
.y33d{bottom:538.986747pt;}
.y1c9{bottom:539.626569pt;}
.y4f1{bottom:539.786227pt;}
.y54b{bottom:539.946533pt;}
.y4b{bottom:541.706400pt;}
.y4f0{bottom:541.706533pt;}
.y120{bottom:542.186267pt;}
.y80{bottom:543.306693pt;}
.y287{bottom:545.226624pt;}
.y27f{bottom:545.226717pt;}
.y341{bottom:545.546667pt;}
.ycc{bottom:546.986840pt;}
.y288{bottom:547.146667pt;}
.y286{bottom:547.146931pt;}
.y27e{bottom:547.147024pt;}
.y13{bottom:547.147467pt;}
.y569{bottom:548.107200pt;}
.y17a{bottom:550.026613pt;}
.y3dd{bottom:550.826227pt;}
.y3d4{bottom:551.146827pt;}
.y348{bottom:552.746747pt;}
.y33a{bottom:552.747093pt;}
.y3de{bottom:553.546533pt;}
.y342{bottom:554.666453pt;}
.y347{bottom:554.666533pt;}
.y349{bottom:554.666667pt;}
.y335{bottom:554.666747pt;}
.y339{bottom:554.666880pt;}
.y54a{bottom:555.786667pt;}
.y11d{bottom:555.946613pt;}
.y203{bottom:556.267160pt;}
.y3d7{bottom:557.386667pt;}
.y4a{bottom:557.546533pt;}
.y4ef{bottom:557.546667pt;}
.y3d0{bottom:557.706667pt;}
.y11c{bottom:557.866400pt;}
.y121{bottom:557.866533pt;}
.y124{bottom:557.866539pt;}
.y12a{bottom:557.866544pt;}
.y3e0{bottom:558.826253pt;}
.y7f{bottom:559.146827pt;}
.y284{bottom:559.626664pt;}
.y279{bottom:559.626685pt;}
.y280{bottom:559.626717pt;}
.y3d9{bottom:559.946565pt;}
.y127{bottom:560.426432pt;}
.y3e1{bottom:560.746560pt;}
.y3e2{bottom:561.226248pt;}
.y3d8{bottom:561.226253pt;}
.y123{bottom:562.186845pt;}
.y129{bottom:562.186851pt;}
.y568{bottom:562.667067pt;}
.ycb{bottom:562.986840pt;}
.y122{bottom:563.466533pt;}
.y128{bottom:563.466539pt;}
.y343{bottom:563.786760pt;}
.y33f{bottom:564.107093pt;}
.y178{bottom:565.866747pt;}
.y340{bottom:566.026667pt;}
.y33e{bottom:566.026880pt;}
.y3e3{bottom:566.666355pt;}
.y3da{bottom:566.666360pt;}
.y3d1{bottom:566.666560pt;}
.y3c9{bottom:566.666720pt;}
.y3cc{bottom:566.666733pt;}
.y345{bottom:567.306533pt;}
.y337{bottom:567.306880pt;}
.y33c{bottom:567.307013pt;}
.y126{bottom:567.466539pt;}
.y4ee{bottom:570.026360pt;}
.y125{bottom:570.346752pt;}
.y11f{bottom:570.506533pt;}
.y1c8{bottom:570.506836pt;}
.y179{bottom:570.826640pt;}
.y344{bottom:571.306533pt;}
.y336{bottom:571.306880pt;}
.y33b{bottom:571.307013pt;}
.y4ec{bottom:571.626360pt;}
.y549{bottom:571.786667pt;}
.y202{bottom:572.107293pt;}
.y3ca{bottom:572.266720pt;}
.y3cd{bottom:572.266733pt;}
.y522{bottom:572.586933pt;}
.y4e9{bottom:573.546057pt;}
.y49{bottom:573.546533pt;}
.y4eb{bottom:573.546667pt;}
.y3d6{bottom:573.866653pt;}
.y11e{bottom:574.506533pt;}
.y3cb{bottom:574.987040pt;}
.y7e{bottom:575.146827pt;}
.y3df{bottom:575.786627pt;}
.y3d5{bottom:575.786960pt;}
.y3ce{bottom:575.787040pt;}
.y567{bottom:576.267067pt;}
.y12{bottom:576.907333pt;}
.y3c8{bottom:577.546933pt;}
.y4ed{bottom:578.026360pt;}
.y278{bottom:578.826685pt;}
.yca{bottom:578.986840pt;}
.y3dc{bottom:579.306493pt;}
.y3d3{bottom:579.306693pt;}
.y3cf{bottom:580.587040pt;}
.y177{bottom:581.866747pt;}
.y3db{bottom:583.306493pt;}
.y3d2{bottom:583.306693pt;}
.y4ea{bottom:585.065844pt;}
.y548{bottom:587.786667pt;}
.y201{bottom:588.107293pt;}
.y521{bottom:588.586933pt;}
.y4e8{bottom:589.386191pt;}
.y48{bottom:589.386667pt;}
.y566{bottom:590.826933pt;}
.y7d{bottom:591.146827pt;}
.y334{bottom:594.666747pt;}
.yc9{bottom:594.826440pt;}
.y277{bottom:594.826685pt;}
.y11a{bottom:597.066400pt;}
.y176{bottom:597.866747pt;}
.y1c6{bottom:601.386983pt;}
.y11b{bottom:602.026293pt;}
.y547{bottom:603.626267pt;}
.y3c6{bottom:604.106800pt;}
.y200{bottom:604.107293pt;}
.y520{bottom:604.586933pt;}
.y4e7{bottom:605.386191pt;}
.y47{bottom:605.386667pt;}
.y565{bottom:605.547200pt;}
.y1c2{bottom:607.306756pt;}
.y3c7{bottom:608.906800pt;}
.y1c1{bottom:609.226543pt;}
.y1c7{bottom:609.226569pt;}
.y333{bottom:610.666747pt;}
.yc8{bottom:610.826440pt;}
.y276{bottom:610.826685pt;}
.y118{bottom:613.066400pt;}
.y175{bottom:613.706880pt;}
.y7b{bottom:614.506720pt;}
.y76{bottom:614.506773pt;}
.y1c5{bottom:615.306716pt;}
.y1c4{bottom:617.226503pt;}
.y119{bottom:617.866400pt;}
.y564{bottom:618.987333pt;}
.y11{bottom:619.147467pt;}
.y4e6{bottom:619.465884pt;}
.y546{bottom:619.626267pt;}
.y1ff{bottom:619.947427pt;}
.y3c5{bottom:620.106800pt;}
.y51f{bottom:620.426533pt;}
.y78{bottom:620.426573pt;}
.y73{bottom:620.426627pt;}
.y4e5{bottom:621.386191pt;}
.y46{bottom:621.386667pt;}
.y7c{bottom:622.346827pt;}
.y77{bottom:622.346880pt;}
.y72{bottom:622.346933pt;}
.y275{bottom:626.666819pt;}
.yc7{bottom:626.826440pt;}
.y1c3{bottom:627.946809pt;}
.y117{bottom:629.066400pt;}
.y7a{bottom:630.506720pt;}
.y75{bottom:630.506773pt;}
.y174{bottom:631.466747pt;}
.y563{bottom:633.707067pt;}
.y10{bottom:633.867200pt;}
.y545{bottom:635.466400pt;}
.y3c4{bottom:635.946933pt;}
.y51e{bottom:636.426533pt;}
.y31c{bottom:636.586907pt;}
.y324{bottom:636.587000pt;}
.y4e4{bottom:637.225791pt;}
.y45{bottom:637.226267pt;}
.y79{bottom:641.066613pt;}
.y74{bottom:641.066667pt;}
.y332{bottom:642.026640pt;}
.yc6{bottom:642.666573pt;}
.y274{bottom:642.666819pt;}
.y326{bottom:642.826667pt;}
.y71{bottom:642.987067pt;}
.y330{bottom:643.626645pt;}
.y31f{bottom:643.786907pt;}
.y1c0{bottom:644.586943pt;}
.y116{bottom:644.906533pt;}
.y32f{bottom:644.906853pt;}
.y328{bottom:645.387085pt;}
.y1fe{bottom:646.027160pt;}
.y327{bottom:646.666773pt;}
.y172{bottom:647.466747pt;}
.y562{bottom:648.266933pt;}
.y331{bottom:649.706853pt;}
.y320{bottom:650.346813pt;}
.y544{bottom:651.466400pt;}
.y318{bottom:652.266507pt;}
.y31e{bottom:652.266600pt;}
.y173{bottom:652.266747pt;}
.y329{bottom:652.266773pt;}
.y51d{bottom:652.426533pt;}
.y4e3{bottom:653.225791pt;}
.y44{bottom:653.226267pt;}
.y32c{bottom:654.826667pt;}
.y319{bottom:657.706613pt;}
.y32a{bottom:657.706880pt;}
.y32e{bottom:657.866779pt;}
.yc5{bottom:658.666573pt;}
.y273{bottom:658.666819pt;}
.y321{bottom:658.826493pt;}
.y3b8{bottom:658.826699pt;}
.y70{bottom:658.987067pt;}
.y32d{bottom:659.146987pt;}
.y3b6{bottom:660.106907pt;}
.y1bf{bottom:660.426543pt;}
.y31d{bottom:660.586907pt;}
.y115{bottom:660.906533pt;}
.y325{bottom:661.226600pt;}
.y3c1{bottom:661.386800pt;}
.y3b0{bottom:661.386933pt;}
.y561{bottom:661.866933pt;}
.y32b{bottom:662.506880pt;}
.yf{bottom:662.507333pt;}
.y171{bottom:663.466747pt;}
.y3b7{bottom:664.106907pt;}
.y31b{bottom:664.906640pt;}
.y323{bottom:664.906733pt;}
.y4e2{bottom:667.306004pt;}
.y543{bottom:667.466400pt;}
.y3b2{bottom:667.626667pt;}
.y3ab{bottom:667.946667pt;}
.y51c{bottom:668.266667pt;}
.y31a{bottom:668.906640pt;}
.y322{bottom:668.906733pt;}
.y4e0{bottom:669.225791pt;}
.y43{bottom:669.226267pt;}
.y3b4{bottom:670.187085pt;}
.y3b3{bottom:671.466773pt;}
.y4e1{bottom:674.025791pt;}
.yc4{bottom:674.506707pt;}
.y6f{bottom:674.826667pt;}
.y272{bottom:674.826685pt;}
.y3c2{bottom:675.146747pt;}
.y3ba{bottom:675.147045pt;}
.y16e{bottom:675.306880pt;}
.y1be{bottom:676.426543pt;}
.y560{bottom:676.426800pt;}
.y114{bottom:676.906533pt;}
.y3ad{bottom:677.066533pt;}
.y3a5{bottom:677.066667pt;}
.y3bd{bottom:677.066792pt;}
.y3b9{bottom:677.066832pt;}
.ye{bottom:677.067200pt;}
.y16b{bottom:679.306867pt;}
.y16f{bottom:679.306880pt;}
.y3a8{bottom:679.786933pt;}
.y3bc{bottom:679.787099pt;}
.y3a6{bottom:682.506773pt;}
.y542{bottom:683.306533pt;}
.y307{bottom:683.306680pt;}
.y30f{bottom:683.306787pt;}
.y1fd{bottom:683.627120pt;}
.y170{bottom:684.106880pt;}
.y51b{bottom:684.266667pt;}
.y4df{bottom:685.065924pt;}
.y42{bottom:685.066400pt;}
.y1fc{bottom:685.547427pt;}
.y3b1{bottom:686.026520pt;}
.y3aa{bottom:686.026560pt;}
.y16d{bottom:686.026667pt;}
.y3be{bottom:686.026685pt;}
.y16c{bottom:689.387080pt;}
.y313{bottom:689.546667pt;}
.y3c0{bottom:689.706533pt;}
.y3af{bottom:689.706667pt;}
.y3b5{bottom:689.706907pt;}
.y30a{bottom:690.506680pt;}
.yc2{bottom:690.506707pt;}
.y1bd{bottom:690.506756pt;}
.y6e{bottom:690.826667pt;}
.y271{bottom:690.826685pt;}
.y55f{bottom:690.987200pt;}
.y3ac{bottom:691.786800pt;}
.y3a9{bottom:691.786933pt;}
.yd{bottom:691.787467pt;}
.y315{bottom:692.106565pt;}
.y1bc{bottom:692.426543pt;}
.y113{bottom:692.746667pt;}
.y314{bottom:693.386773pt;}
.y3bf{bottom:693.706533pt;}
.y3ae{bottom:693.706667pt;}
.yc3{bottom:694.026493pt;}
.y169{bottom:695.306867pt;}
.y30b{bottom:697.066587pt;}
.y317{bottom:698.986773pt;}
.y303{bottom:698.986787pt;}
.y309{bottom:698.986893pt;}
.y311{bottom:698.987053pt;}
.y541{bottom:699.306533pt;}
.y1fb{bottom:699.467253pt;}
.y16a{bottom:700.106867pt;}
.y41{bottom:701.066400pt;}
.y3c3{bottom:701.066667pt;}
.y1fa{bottom:701.387560pt;}
.y3a7{bottom:703.786933pt;}
.y3bb{bottom:703.787099pt;}
.y304{bottom:704.426373pt;}
.y55e{bottom:704.587200pt;}
.y30c{bottom:705.546787pt;}
.y1bb{bottom:706.346889pt;}
.yc{bottom:706.347333pt;}
.yc1{bottom:706.506707pt;}
.y6d{bottom:706.666800pt;}
.y270{bottom:706.666819pt;}
.y308{bottom:707.306680pt;}
.y312{bottom:707.946947pt;}
.y1ba{bottom:708.266676pt;}
.y112{bottom:708.746667pt;}
.y306{bottom:711.626413pt;}
.y30e{bottom:711.626520pt;}
.y4de{bottom:715.146191pt;}
.y540{bottom:715.306533pt;}
.y305{bottom:715.466520pt;}
.y30d{bottom:715.466627pt;}
.y1f9{bottom:715.467253pt;}
.y40{bottom:716.906533pt;}
.y1f8{bottom:717.387560pt;}
.y316{bottom:717.706507pt;}
.y310{bottom:717.706787pt;}
.y55d{bottom:719.147067pt;}
.y3a3{bottom:719.946933pt;}
.yb{bottom:720.907200pt;}
.y26d{bottom:721.866819pt;}
.y6c{bottom:722.666800pt;}
.y1b9{bottom:724.266676pt;}
.y110{bottom:724.586800pt;}
.y3a4{bottom:724.746933pt;}
.y269{bottom:725.866752pt;}
.y26f{bottom:725.866819pt;}
.ybd{bottom:729.066667pt;}
.y111{bottom:729.546693pt;}
.y166{bottom:729.866867pt;}
.y53f{bottom:731.146667pt;}
.y26c{bottom:731.147024pt;}
.y1f7{bottom:731.467253pt;}
.y26b{bottom:732.426712pt;}
.y3f{bottom:732.906533pt;}
.y1f6{bottom:733.387560pt;}
.y55c{bottom:733.866800pt;}
.y51a{bottom:734.026933pt;}
.ya{bottom:735.626933pt;}
.y3a2{bottom:735.946933pt;}
.ybb{bottom:738.186720pt;}
.ybe{bottom:738.186973pt;}
.y6b{bottom:738.666800pt;}
.y1b8{bottom:740.106809pt;}
.y164{bottom:740.426733pt;}
.y302{bottom:740.586787pt;}
.y10f{bottom:740.586800pt;}
.y26a{bottom:740.747019pt;}
.y26e{bottom:740.747085pt;}
.ybf{bottom:741.706760pt;}
.y165{bottom:744.426733pt;}
.y268{bottom:745.066752pt;}
.ybc{bottom:747.146613pt;}
.y53e{bottom:747.146667pt;}
.yc0{bottom:747.146867pt;}
.y55b{bottom:748.426667pt;}
.y519{bottom:748.587333pt;}
.y3e{bottom:748.906533pt;}
.y1f4{bottom:749.227160pt;}
.y9{bottom:750.187333pt;}
.y3a0{bottom:751.787067pt;}
.y1f5{bottom:754.027160pt;}
.y168{bottom:755.466827pt;}
.y4dc{bottom:755.946191pt;}
.y1b7{bottom:756.106809pt;}
.y301{bottom:756.426387pt;}
.y10d{bottom:756.586800pt;}
.y3a1{bottom:756.587067pt;}
.y167{bottom:757.387133pt;}
.y161{bottom:757.387147pt;}
.y4dd{bottom:760.746191pt;}
.y267{bottom:761.066752pt;}
.y10e{bottom:761.386800pt;}
.y55a{bottom:762.026800pt;}
.y162{bottom:762.987147pt;}
.y518{bottom:763.147200pt;}
.y3d{bottom:764.746667pt;}
.y8{bottom:764.747200pt;}
.y1f3{bottom:765.227160pt;}
.yb4{bottom:765.387080pt;}
.yb5{bottom:766.187080pt;}
.y39f{bottom:767.787067pt;}
.yb8{bottom:768.746667pt;}
.y6a{bottom:769.706933pt;}
.y163{bottom:770.026733pt;}
.y4da{bottom:771.946191pt;}
.y1b6{bottom:772.106809pt;}
.y300{bottom:772.426387pt;}
.y10b{bottom:772.426400pt;}
.y53d{bottom:773.226667pt;}
.y559{bottom:776.587200pt;}
.y4db{bottom:776.746191pt;}
.y266{bottom:777.066752pt;}
.y10c{bottom:777.226400pt;}
.yb9{bottom:777.866453pt;}
.yb3{bottom:777.866773pt;}
.y517{bottom:777.866933pt;}
.y7{bottom:779.466933pt;}
.y3c{bottom:780.746667pt;}
.yba{bottom:781.386760pt;}
.yb6{bottom:781.387080pt;}
.y53c{bottom:783.786667pt;}
.y39e{bottom:783.787067pt;}
.y4d7{bottom:785.866013pt;}
.yb7{bottom:786.826667pt;}
.y4d6{bottom:787.786320pt;}
.y4d9{bottom:787.786324pt;}
.y1b5{bottom:787.946943pt;}
.y4d8{bottom:788.425907pt;}
.y2ff{bottom:788.426387pt;}
.y109{bottom:788.426400pt;}
.y558{bottom:791.147067pt;}
.y160{bottom:792.266880pt;}
.y516{bottom:792.426800pt;}
.y265{bottom:792.906885pt;}
.y10a{bottom:793.226400pt;}
.y6{bottom:794.026800pt;}
.y53b{bottom:794.986667pt;}
.y1f2{bottom:796.587560pt;}
.y3b{bottom:796.746667pt;}
.y39c{bottom:799.626667pt;}
.y4d4{bottom:800.266013pt;}
.y4d5{bottom:801.866013pt;}
.y4d1{bottom:803.786320pt;}
.y1b4{bottom:803.946943pt;}
.y2fe{bottom:804.266520pt;}
.y108{bottom:804.426400pt;}
.y39d{bottom:804.426667pt;}
.y53a{bottom:805.706667pt;}
.y515{bottom:806.987200pt;}
.y15f{bottom:808.107013pt;}
.y264{bottom:808.906885pt;}
.y4d2{bottom:810.666013pt;}
.yb2{bottom:811.466773pt;}
.y69{bottom:811.466800pt;}
.y3a{bottom:812.586800pt;}
.y4d3{bottom:814.666013pt;}
.y39b{bottom:815.626667pt;}
.y557{bottom:816.426800pt;}
.y539{bottom:816.746667pt;}
.y2fd{bottom:820.266520pt;}
.y107{bottom:820.266533pt;}
.y514{bottom:821.706933pt;}
.y15e{bottom:822.187227pt;}
.yb0{bottom:822.826667pt;}
.yae{bottom:823.466800pt;}
.y15d{bottom:824.107013pt;}
.y538{bottom:827.466667pt;}
.yb1{bottom:827.466773pt;}
.y68{bottom:827.466800pt;}
.y39{bottom:828.586800pt;}
.y4bb{bottom:832.106624pt;}
.yaf{bottom:832.587107pt;}
.y1ed{bottom:833.867213pt;}
.y556{bottom:835.786667pt;}
.y2fc{bottom:836.266520pt;}
.y513{bottom:836.266800pt;}
.y4c9{bottom:837.546640pt;}
.y4c0{bottom:838.346667pt;}
.y537{bottom:838.506667pt;}
.y399{bottom:838.826667pt;}
.y261{bottom:838.986619pt;}
.y4c7{bottom:839.146645pt;}
.y1b3{bottom:839.626676pt;}
.y103{bottom:839.946667pt;}
.y4c6{bottom:840.426333pt;}
.y4c2{bottom:840.906565pt;}
.y1f0{bottom:841.067213pt;}
.y4c1{bottom:842.186253pt;}
.y5{bottom:842.347067pt;}
.y66{bottom:843.306933pt;}
.y39a{bottom:843.626667pt;}
.y4ce{bottom:844.266453pt;}
.y37{bottom:844.426400pt;}
.y4c8{bottom:845.226333pt;}
.y4cc{bottom:845.866453pt;}
.y1f1{bottom:847.627120pt;}
.y4b8{bottom:847.786224pt;}
.y4cb{bottom:847.786240pt;}
.y4c3{bottom:847.786253pt;}
.y4d0{bottom:847.786320pt;}
.y38{bottom:847.946707pt;}
.y67{bottom:848.106933pt;}
.y260{bottom:848.266832pt;}
.y105{bottom:849.066533pt;}
.y100{bottom:849.066933pt;}
.y512{bottom:849.546979pt;}
.y25e{bottom:849.547040pt;}
.y1ea{bottom:849.547347pt;}
.y1ef{bottom:849.547427pt;}
.y536{bottom:849.706667pt;}
.y159{bottom:850.186640pt;}
.y511{bottom:850.826667pt;}
.y555{bottom:851.786667pt;}
.y2fb{bottom:852.106653pt;}
.y15a{bottom:852.747053pt;}
.y4c5{bottom:853.386259pt;}
.y25f{bottom:853.547040pt;}
.y106{bottom:854.506640pt;}
.y101{bottom:854.507040pt;}
.y4cd{bottom:854.666453pt;}
.y4c4{bottom:854.666467pt;}
.y534{bottom:854.986667pt;}
.y4bc{bottom:856.746757pt;}
.y4{bottom:857.066800pt;}
.y25a{bottom:857.226667pt;}
.y1ee{bottom:857.867213pt;}
.y102{bottom:858.026827pt;}
.y256{bottom:858.186613pt;}
.y4bf{bottom:858.666544pt;}
.y65{bottom:859.306933pt;}
.y25c{bottom:859.786565pt;}
.y4ba{bottom:860.426357pt;}
.y36{bottom:860.426400pt;}
.y535{bottom:860.426667pt;}
.y25b{bottom:861.066773pt;}
.y4bd{bottom:861.546757pt;}
.y1ec{bottom:862.027080pt;}
.y4ca{bottom:862.506507pt;}
.y4cf{bottom:862.506587pt;}
.y104{bottom:863.786267pt;}
.y15c{bottom:864.106960pt;}
.y510{bottom:864.266725pt;}
.y4b9{bottom:864.426357pt;}
.y263{bottom:864.586579pt;}
.y257{bottom:864.586613pt;}
.y50f{bottom:865.546933pt;}
.y15b{bottom:866.026747pt;}
.y157{bottom:866.026800pt;}
.y1eb{bottom:866.027080pt;}
.y4be{bottom:866.506651pt;}
.y262{bottom:866.506885pt;}
.y255{bottom:866.506920pt;}
.y553{bottom:867.626800pt;}
.y2f9{bottom:868.106653pt;}
.y554{bottom:872.426800pt;}
.y2fa{bottom:872.906653pt;}
.y258{bottom:873.226707pt;}
.y254{bottom:874.986613pt;}
.y63{bottom:875.306933pt;}
.y259{bottom:875.466813pt;}
.yfe{bottom:876.586667pt;}
.y158{bottom:878.666907pt;}
.y50e{bottom:878.826592pt;}
.y25d{bottom:879.147040pt;}
.y50d{bottom:880.106800pt;}
.y64{bottom:880.106933pt;}
.y49b{bottom:880.586213pt;}
.yff{bottom:882.186667pt;}
.y1e0{bottom:882.347227pt;}
.y1e7{bottom:882.347347pt;}
.y1ae{bottom:882.826676pt;}
.y49c{bottom:883.306520pt;}
.y552{bottom:883.626800pt;}
.y3{bottom:884.906933pt;}
.y4b6{bottom:885.546624pt;}
.y1a6{bottom:885.866853pt;}
.y4b1{bottom:886.026323pt;}
.y4b0{bottom:887.146635pt;}
.y4a3{bottom:887.146667pt;}
.y34{bottom:887.786267pt;}
.y4b2{bottom:887.946629pt;}
.y4b3{bottom:888.426317pt;}
.y4af{bottom:888.426323pt;}
.y4a6{bottom:888.586253pt;}
.y156{bottom:889.386667pt;}
.y1e3{bottom:889.547227pt;}
.y4a5{bottom:889.706565pt;}
.y4a7{bottom:890.506560pt;}
.y1a9{bottom:890.506880pt;}
.y4a8{bottom:890.986248pt;}
.y4a4{bottom:890.986253pt;}
.y62{bottom:891.147067pt;}
.y250{bottom:891.626667pt;}
.y30{bottom:891.786720pt;}
.y24c{bottom:892.586707pt;}
.y4b4{bottom:893.226317pt;}
.y252{bottom:894.186565pt;}
.y50c{bottom:894.666667pt;}
.y1b1{bottom:894.986529pt;}
.y4b5{bottom:895.146624pt;}
.y32{bottom:895.146667pt;}
.y251{bottom:895.466773pt;}
.y398{bottom:895.947067pt;}
.y1e4{bottom:896.107133pt;}
.y1e9{bottom:896.107293pt;}
.y498{bottom:896.426347pt;}
.y4a9{bottom:896.426355pt;}
.y1a4{bottom:896.426760pt;}
.y533{bottom:896.906933pt;}
.y2e1{bottom:898.026752pt;}
.y1dd{bottom:898.026800pt;}
.y2e7{bottom:898.026819pt;}
.y1e2{bottom:898.026920pt;}
.y1e8{bottom:898.027080pt;}
.y1af{bottom:898.346943pt;}
.y1a3{bottom:898.347067pt;}
.y24d{bottom:898.986707pt;}
.yfc{bottom:899.147067pt;}
.y551{bottom:899.626800pt;}
.y253{bottom:900.906880pt;}
.y24b{bottom:900.907013pt;}
.y4ac{bottom:901.066461pt;}
.y4ab{bottom:902.186253pt;}
.y4ad{bottom:902.986248pt;}
.y4ae{bottom:903.466456pt;}
.y4aa{bottom:903.466461pt;}
.y1b0{bottom:903.786529pt;}
.y1a5{bottom:903.786653pt;}
.y35{bottom:904.266533pt;}
.y2f{bottom:904.266933pt;}
.yfd{bottom:904.747067pt;}
.y1b2{bottom:905.066729pt;}
.y155{bottom:905.226800pt;}
.y49e{bottom:905.386213pt;}
.y1a8{bottom:906.347013pt;}
.y1e1{bottom:906.347227pt;}
.y61{bottom:907.147067pt;}
.y4a2{bottom:907.466413pt;}
.y2e0{bottom:907.466859pt;}
.y2e6{bottom:907.466917pt;}
.y24e{bottom:907.626800pt;}
.y2de{bottom:908.747067pt;}
.y2e5{bottom:908.747125pt;}
.y49a{bottom:909.066480pt;}
.y24a{bottom:909.226800pt;}
.y50b{bottom:909.386400pt;}
.y2e9{bottom:909.866819pt;}
.y24f{bottom:909.866907pt;}
.y49f{bottom:910.346627pt;}
.y1df{bottom:910.666960pt;}
.y1e6{bottom:910.667080pt;}
.y1ad{bottom:910.986543pt;}
.y2df{bottom:912.747067pt;}
.y499{bottom:913.066480pt;}
.y31{bottom:913.386720pt;}
.y1ab{bottom:914.346960pt;}
.y1de{bottom:914.507067pt;}
.y1e5{bottom:914.507187pt;}
.y1ac{bottom:914.986543pt;}
.y4a0{bottom:915.146627pt;}
.y2f7{bottom:915.466547pt;}
.y33{bottom:916.906533pt;}
.y2f5{bottom:917.066552pt;}
.y1aa{bottom:917.066747pt;}
.y1a7{bottom:917.066800pt;}
.y4a1{bottom:917.866413pt;}
.y2f4{bottom:918.346760pt;}
.y49d{bottom:919.146613pt;}
.y4b7{bottom:919.146624pt;}
.y550{bottom:919.626800pt;}
.y152{bottom:921.226800pt;}
.y2ee{bottom:922.026459pt;}
.y60{bottom:922.986667pt;}
.y2f6{bottom:923.146760pt;}
.y2ed{bottom:923.306667pt;}
.y2eb{bottom:923.786645pt;}
.y2e3{bottom:923.786712pt;}
.y50a{bottom:923.946800pt;}
.y2f8{bottom:925.706653pt;}
.y2ec{bottom:925.706667pt;}
.y2ea{bottom:925.706952pt;}
.y2e2{bottom:925.707019pt;}
.y153{bottom:926.026800pt;}
.yad{bottom:926.506973pt;}
.y397{bottom:927.947080pt;}
.y486{bottom:928.106867pt;}
.y2f1{bottom:928.266560pt;}
.y154{bottom:930.026800pt;}
.y2{bottom:930.986667pt;}
.y2ef{bottom:931.146773pt;}
.y2f3{bottom:931.306672pt;}
.y2f2{bottom:932.586360pt;}
.y496{bottom:933.546747pt;}
.y48d{bottom:934.506667pt;}
.y494{bottom:935.146752pt;}
.y249{bottom:935.466880pt;}
.y2f0{bottom:935.946773pt;}
.y493{bottom:936.426440pt;}
.y48f{bottom:937.066565pt;}
.y48e{bottom:938.346773pt;}
.y2dd{bottom:938.347067pt;}
.y2e8{bottom:938.347085pt;}
.y2e4{bottom:938.347125pt;}
.y509{bottom:938.506667pt;}
.y2e{bottom:938.986667pt;}
.y495{bottom:941.226440pt;}
.y490{bottom:943.786360pt;}
.y480{bottom:943.786453pt;}
.y483{bottom:943.786467pt;}
.yfb{bottom:943.786667pt;}
.y492{bottom:949.386365pt;}
.y481{bottom:949.386453pt;}
.y491{bottom:950.666573pt;}
.y489{bottom:950.826693pt;}
.y2d{bottom:950.986667pt;}
.y482{bottom:951.946880pt;}
.y488{bottom:952.747000pt;}
.y47f{bottom:954.666667pt;}
.y48c{bottom:954.826680pt;}
.y1{bottom:954.986667pt;}
.y508{bottom:955.306667pt;}
.y485{bottom:956.426600pt;}
.y48a{bottom:957.706893pt;}
.y151{bottom:959.786667pt;}
.y484{bottom:960.426600pt;}
.y48b{bottom:962.506893pt;}
.y497{bottom:966.506613pt;}
.y487{bottom:966.506867pt;}
.h1{height:0.608000pt;}
.h2{height:0.608533pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:179.680987pt;}
.x15f{left:182.240000pt;}
.x80{left:184.802147pt;}
.x123{left:186.400413pt;}
.x10e{left:188.638587pt;}
.x11a{left:190.080613pt;}
.xd0{left:191.520827pt;}
.x81{left:192.802147pt;}
.x135{left:194.080027pt;}
.x15d{left:195.198320pt;}
.x120{left:196.960267pt;}
.x152{left:198.079392pt;}
.x1{left:199.360000pt;}
.x136{left:200.639920pt;}
.x153{left:202.399747pt;}
.x10f{left:203.358373pt;}
.x130{left:205.761533pt;}
.x82{left:207.521933pt;}
.xe7{left:208.479907pt;}
.xea{left:210.399867pt;}
.xf8{left:211.521376pt;}
.x124{left:213.280680pt;}
.xd{left:214.559600pt;}
.x83{left:215.521933pt;}
.xef{left:216.479413pt;}
.x9{left:217.439893pt;}
.x11{left:218.559520pt;}
.x77{left:219.522413pt;}
.x6f{left:220.960120pt;}
.x10d{left:222.399040pt;}
.x6e{left:223.680427pt;}
.xf0{left:225.439307pt;}
.x7b{left:226.401960pt;}
.x15b{left:227.359533pt;}
.x88{left:228.321613pt;}
.xf1{left:229.599200pt;}
.x12{left:230.879307pt;}
.xc6{left:232.162067pt;}
.x18{left:233.599200pt;}
.x70{left:234.879853pt;}
.x10a{left:235.999173pt;}
.x13c{left:236.961989pt;}
.xc7{left:237.921960pt;}
.x13{left:239.039200pt;}
.x144{left:240.642189pt;}
.x84{left:242.081467pt;}
.x117{left:243.356963pt;}
.xac{left:244.641840pt;}
.x19{left:245.759093pt;}
.xeb{left:247.359813pt;}
.x14f{left:248.638752pt;}
.x131{left:249.760520pt;}
.x1a{left:250.878880pt;}
.x7c{left:251.842093pt;}
.x2{left:252.959867pt;}
.x129{left:254.081213pt;}
.x14{left:255.519467pt;}
.xc8{left:256.960160pt;}
.x1b{left:258.398667pt;}
.x3{left:260.319680pt;}
.x71{left:262.399587pt;}
.x102{left:263.679533pt;}
.x2b{left:264.638267pt;}
.xa8{left:265.920987pt;}
.x75{left:267.360973pt;}
.xdd{left:268.639413pt;}
.xc5{left:269.601880pt;}
.x89{left:270.880947pt;}
.x12a{left:271.841107pt;}
.x15{left:273.119467pt;}
.xe{left:275.039280pt;}
.x72{left:276.159453pt;}
.xb7{left:277.599747pt;}
.xb9{left:279.199747pt;}
.x76{left:280.480760pt;}
.xa{left:282.240427pt;}
.x94{left:283.841387pt;}
.xc3{left:284.799587pt;}
.xcc{left:286.560827pt;}
.x16{left:287.679333pt;}
.xb{left:288.801253pt;}
.xb8{left:289.919533pt;}
.x109{left:291.198787pt;}
.x159{left:292.159937pt;}
.xba{left:293.119480pt;}
.x14a{left:294.079720pt;}
.xcd{left:295.841040pt;}
.x14d{left:296.801013pt;}
.x95{left:297.921120pt;}
.x158{left:299.999587pt;}
.xad{left:301.122053pt;}
.x149{left:302.240973pt;}
.xde{left:304.159600pt;}
.xf9{left:305.281776pt;}
.xbb{left:306.719480pt;}
.x115{left:307.677291pt;}
.xf2{left:308.798720pt;}
.x5{left:309.919333pt;}
.x142{left:310.880507pt;}
.x100{left:311.999267pt;}
.x2d{left:313.278373pt;}
.x154{left:314.400203pt;}
.x6{left:315.999547pt;}
.x116{left:317.597077pt;}
.x5a{left:318.559187pt;}
.xe2{left:319.680107pt;}
.xa9{left:321.121573pt;}
.x11c{left:322.240000pt;}
.x14b{left:323.199507pt;}
.x33{left:324.317973pt;}
.x13b{left:325.281403pt;}
.xaf{left:326.881413pt;}
.x4d{left:327.999733pt;}
.x150{left:329.118499pt;}
.x34{left:330.077867pt;}
.xd1{left:331.361600pt;}
.x96{left:332.321120pt;}
.x4{left:333.599467pt;}
.x5f{left:335.359080pt;}
.x13d{left:336.321363pt;}
.x35{left:337.277867pt;}
.x5b{left:338.719053pt;}
.x2e{left:340.158027pt;}
.xd2{left:341.281387pt;}
.x60{left:342.559080pt;}
.x79{left:343.682653pt;}
.x5c{left:345.438840pt;}
.x36{left:346.717973pt;}
.x2f{left:348.158027pt;}
.x11d{left:349.759840pt;}
.x37{left:350.877867pt;}
.x61{left:351.999187pt;}
.x30{left:353.277813pt;}
.x140{left:354.560333pt;}
.x97{left:355.521120pt;}
.x38{left:356.958080pt;}
.x5d{left:358.558627pt;}
.x31{left:360.317920pt;}
.x13f{left:361.280640pt;}
.x62{left:362.239293pt;}
.xb0{left:364.160747pt;}
.x32{left:365.437707pt;}
.x73{left:366.560653pt;}
.x98{left:367.681013pt;}
.xb1{left:368.960747pt;}
.x5e{left:370.718520pt;}
.x133{left:371.839547pt;}
.x99{left:372.800800pt;}
.x58{left:373.759907pt;}
.x39{left:375.678347pt;}
.x103{left:377.440213pt;}
.xbc{left:378.399640pt;}
.x7a{left:379.362253pt;}
.x63{left:380.959027pt;}
.xbd{left:382.879867pt;}
.x104{left:384.160000pt;}
.x10b{left:385.118867pt;}
.x59{left:386.240120pt;}
.xd4{left:387.520560pt;}
.x8f{left:388.641080pt;}
.x3a{left:389.758613pt;}
.x9a{left:391.201387pt;}
.x15c{left:392.160051pt;}
.xf3{left:393.119120pt;}
.xb4{left:394.560280pt;}
.xd5{left:395.520560pt;}
.x64{left:396.480000pt;}
.x3b{left:397.758613pt;}
.x2c{left:399.358640pt;}
.xd6{left:400.640347pt;}
.xbe{left:401.919453pt;}
.x3c{left:402.878400pt;}
.xf4{left:403.839427pt;}
.x90{left:405.281213pt;}
.x145{left:406.242232pt;}
.xb5{left:407.200387pt;}
.xb2{left:408.960720pt;}
.x3d{left:410.398187pt;}
.x8a{left:411.361640pt;}
.x4c{left:412.799667pt;}
.xf5{left:413.759213pt;}
.xe9{left:414.880160pt;}
.xbf{left:415.839720pt;}
.x65{left:417.439893pt;}
.x85{left:418.719907pt;}
.x127{left:419.680840pt;}
.xb3{left:421.120613pt;}
.x47{left:422.080653pt;}
.x13e{left:423.360123pt;}
.x141{left:424.480605pt;}
.x48{left:425.760867pt;}
.x8b{left:427.521507pt;}
.xe3{left:428.799787pt;}
.x66{left:430.079467pt;}
.x86{left:432.000120pt;}
.x3e{left:433.438347pt;}
.x7{left:434.561013pt;}
.xdf{left:436.480493pt;}
.x20{left:438.238213pt;}
.x155{left:439.679693pt;}
.x8{left:440.641227pt;}
.xd7{left:441.760133pt;}
.x49{left:443.040547pt;}
.x15e{left:444.000373pt;}
.x3f{left:444.960107pt;}
.x67{left:446.559733pt;}
.x128{left:447.520947pt;}
.x21{left:448.958000pt;}
.x137{left:449.920589pt;}
.x41{left:451.040307pt;}
.xd8{left:452.000240pt;}
.x11b{left:452.959733pt;}
.x40{left:453.920000pt;}
.x4a{left:455.680120pt;}
.x15a{left:456.959497pt;}
.xf6{left:457.919136pt;}
.x4b{left:459.360333pt;}
.xd9{left:460.320027pt;}
.x22{left:461.438213pt;}
.xe4{left:462.399733pt;}
.x9b{left:463.361333pt;}
.x68{left:464.319627pt;}
.x121{left:465.760240pt;}
.x87{left:466.880387pt;}
.x139{left:468.319723pt;}
.xe0{left:469.440213pt;}
.x69{left:470.399840pt;}
.x105{left:471.359987pt;}
.x122{left:472.480027pt;}
.x23{left:473.598107pt;}
.x42{left:475.200733pt;}
.x6a{left:476.639947pt;}
.x112{left:477.756837pt;}
.x24{left:478.717893pt;}
.xc0{left:480.319400pt;}
.xe8{left:481.600320pt;}
.x43{left:483.200733pt;}
.x6b{left:484.639947pt;}
.x25{left:486.237680pt;}
.x14c{left:487.359467pt;}
.x44{left:488.320520pt;}
.x6c{left:489.759733pt;}
.xca{left:490.879920pt;}
.x9c{left:491.841013pt;}
.xfa{left:493.119893pt;}
.xce{left:494.081413pt;}
.x45{left:495.840307pt;}
.x6d{left:496.799840pt;}
.x91{left:498.400333pt;}
.x134{left:499.359853pt;}
.x46{left:500.960093pt;}
.x146{left:502.561885pt;}
.x92{left:503.520120pt;}
.x9d{left:504.480587pt;}
.x110{left:505.437267pt;}
.xcb{left:506.399707pt;}
.xe5{left:507.519893pt;}
.xc2{left:508.959453pt;}
.xda{left:510.240160pt;}
.xc1{left:511.999560pt;}
.x147{left:512.959720pt;}
.x17{left:513.919493pt;}
.x93{left:515.680013pt;}
.x9e{left:516.640480pt;}
.x12b{left:518.241747pt;}
.x78{left:519.201853pt;}
.xdb{left:520.480267pt;}
.x111{left:521.597160pt;}
.xfb{left:522.560000pt;}
.xe6{left:523.520413pt;}
.x138{left:524.480640pt;}
.x26{left:525.597520pt;}
.x13a{left:526.560349pt;}
.x9f{left:528.000373pt;}
.x1c{left:529.757760pt;}
.x125{left:530.721400pt;}
.x113{left:531.677184pt;}
.xf7{left:533.279656pt;}
.xfd{left:534.560680pt;}
.x12d{left:535.521373pt;}
.x27{left:536.637627pt;}
.x10c{left:537.758453pt;}
.x126{left:539.360467pt;}
.x114{left:540.316771pt;}
.xa0{left:541.920107pt;}
.x118{left:543.037709pt;}
.x1d{left:544.157760pt;}
.x151{left:545.439245pt;}
.x7d{left:546.561080pt;}
.x14e{left:547.518907pt;}
.xa2{left:548.481253pt;}
.x4e{left:549.918880pt;}
.xc9{left:551.200827pt;}
.xa3{left:552.161467pt;}
.x7e{left:553.920973pt;}
.x7f{left:555.521880pt;}
.x4f{left:556.958987pt;}
.x157{left:558.719893pt;}
.x1e{left:559.677493pt;}
.x156{left:561.120653pt;}
.x50{left:562.078773pt;}
.x101{left:563.039427pt;}
.xa4{left:564.321360pt;}
.xdc{left:565.600053pt;}
.xae{left:566.722027pt;}
.xfe{left:567.681307pt;}
.x51{left:568.639707pt;}
.xe1{left:570.719840pt;}
.xaa{left:572.641760pt;}
.x52{left:574.399600pt;}
.x12e{left:575.520840pt;}
.xa5{left:576.960933pt;}
.x1f{left:578.077493pt;}
.x8c{left:579.522173pt;}
.x53{left:581.599600pt;}
.xff{left:583.041173pt;}
.xc4{left:583.998920pt;}
.x148{left:585.760413pt;}
.xd3{left:587.841867pt;}
.xf{left:589.438587pt;}
.x54{left:591.039707pt;}
.xec{left:593.118960pt;}
.x119{left:594.079549pt;}
.x55{left:595.199600pt;}
.x74{left:596.800733pt;}
.x8d{left:598.561747pt;}
.x2a{left:599.838720pt;}
.x56{left:601.279813pt;}
.xcf{left:602.882053pt;}
.xed{left:605.599173pt;}
.xa6{left:606.560347pt;}
.xfc{left:608.480320pt;}
.x57{left:609.759507pt;}
.x132{left:611.201400pt;}
.xee{left:613.119733pt;}
.x8e{left:614.242013pt;}
.x106{left:616.960933pt;}
.x12f{left:618.720840pt;}
.xab{left:620.162133pt;}
.x11e{left:621.921960pt;}
.xa1{left:623.841440pt;}
.x143{left:624.961336pt;}
.x107{left:625.919267pt;}
.x12c{left:626.881187pt;}
.x28{left:629.437467pt;}
.xb6{left:630.880013pt;}
.x10{left:631.997920pt;}
.x11f{left:633.121960pt;}
.xa7{left:634.080107pt;}
.x108{left:635.839053pt;}
.x29{left:636.957253pt;}
}




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