
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_8165acb813643dcaeedb5f85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e8919513bd681ee352e594b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cd4d19e8b033b5127dc57daf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_731f6cf881244977ef08641f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_855667ac33428da4f05062c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21ff53e1be0c035c9625f5ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0b586e2e533f9d973da3dd31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cbc7c65e28dd22d495f0c57f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8fe03a21ecba8b5be2080bcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01b3603b74f9233ca31d70d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a0cca2ad2b30dbe930633d7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_94f4a4b0ed9debeab83453db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.695000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ad0f325b01f6b6317522abcb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_717fd3388688ed3bb3a5bd06.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_175fcc5581076069f02aea80.woff2')format("woff");}.fff{font-family:fff;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9972edf70b16672964cf055a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a9456399258be77db811e7c6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b04342078969291d1393524b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-10.540668px;}
.v2{vertical-align:-3.060000px;}
.v1{vertical-align:-1.015200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.348400px;}
.lse{letter-spacing:-1.263600px;}
.ls12{letter-spacing:-1.200600px;}
.ls15{letter-spacing:-1.199985px;}
.ls30{letter-spacing:-0.900000px;}
.ls26{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.239997px;}
.ls13{letter-spacing:-0.239400px;}
.lsf{letter-spacing:-0.237600px;}
.ls1b{letter-spacing:-0.237598px;}
.ls27{letter-spacing:-0.214367px;}
.ls11{letter-spacing:-0.212372px;}
.ls1c{letter-spacing:-0.211976px;}
.ls10{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.297596px;}
.ls24{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.767990px;}
.ls2b{letter-spacing:0.772790px;}
.ls23{letter-spacing:0.786000px;}
.ls17{letter-spacing:0.792000px;}
.lsb{letter-spacing:1.022387px;}
.ls2c{letter-spacing:1.108786px;}
.ls18{letter-spacing:1.128000px;}
.ls16{letter-spacing:1.134000px;}
.ls1e{letter-spacing:2.131173px;}
.ls1d{letter-spacing:2.467169px;}
.ls1a{letter-spacing:2.726366px;}
.ls20{letter-spacing:2.832000px;}
.ls25{letter-spacing:2.929200px;}
.ls28{letter-spacing:2.929800px;}
.ls1f{letter-spacing:3.510000px;}
.ls2e{letter-spacing:3.516000px;}
.ls32{letter-spacing:4.425545px;}
.ls3{letter-spacing:4.761540px;}
.ls5{letter-spacing:4.766340px;}
.ls35{letter-spacing:5.102336px;}
.ls34{letter-spacing:5.107136px;}
.ls36{letter-spacing:5.447932px;}
.ls0{letter-spacing:5.486400px;}
.ls9{letter-spacing:5.511900px;}
.ls8{letter-spacing:5.848200px;}
.lsa{letter-spacing:5.853900px;}
.ls1{letter-spacing:7.187400px;}
.ls38{letter-spacing:7.823902px;}
.ls37{letter-spacing:7.828702px;}
.lsc{letter-spacing:8.764690px;}
.ls7{letter-spacing:10.046274px;}
.ls29{letter-spacing:12.480000px;}
.ls21{letter-spacing:13.140000px;}
.ls2d{letter-spacing:13.206000px;}
.ls19{letter-spacing:13.272000px;}
.ls2f{letter-spacing:13.374000px;}
.ls22{letter-spacing:13.716000px;}
.ls31{letter-spacing:15.311809px;}
.ls2{letter-spacing:20.783740px;}
.ls4{letter-spacing:20.788540px;}
.ls6{letter-spacing:21.124536px;}
.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;}
}
.ws36{word-spacing:-26.265272px;}
.ws11f{word-spacing:-19.994233px;}
.wsc1{word-spacing:-17.190000px;}
.ws5{word-spacing:-15.174000px;}
.ws173{word-spacing:-13.785428px;}
.ws75{word-spacing:-13.740000px;}
.ws13d{word-spacing:-13.487831px;}
.ws14{word-spacing:-13.247834px;}
.ws38{word-spacing:-11.999850px;}
.ws9e{word-spacing:-10.991863px;}
.ws40{word-spacing:-10.799865px;}
.wsc0{word-spacing:-4.233565px;}
.ws172{word-spacing:-4.132748px;}
.ws110{word-spacing:-4.082366px;}
.ws16f{word-spacing:-4.017550px;}
.ws174{word-spacing:-3.753553px;}
.ws17e{word-spacing:-3.739153px;}
.ws16e{word-spacing:-3.715154px;}
.ws155{word-spacing:-3.657554px;}
.ws181{word-spacing:-3.628755px;}
.ws182{word-spacing:-3.585555px;}
.ws17{word-spacing:-3.575955px;}
.ws175{word-spacing:-3.566355px;}
.ws17a{word-spacing:-3.556756px;}
.ws1b{word-spacing:-3.513556px;}
.ws171{word-spacing:-3.503956px;}
.ws187{word-spacing:-3.499156px;}
.ws17d{word-spacing:-3.489556px;}
.ws135{word-spacing:-3.470357px;}
.ws26{word-spacing:-3.459900px;}
.ws154{word-spacing:-3.451157px;}
.ws166{word-spacing:-3.446357px;}
.ws170{word-spacing:-3.422357px;}
.ws25{word-spacing:-3.402900px;}
.ws6{word-spacing:-3.396600px;}
.ws17b{word-spacing:-3.393558px;}
.ws2f{word-spacing:-3.391500px;}
.ws168{word-spacing:-3.383958px;}
.ws16d{word-spacing:-3.369558px;}
.ws146{word-spacing:-3.355158px;}
.ws136{word-spacing:-3.350358px;}
.ws7{word-spacing:-3.342600px;}
.ws131{word-spacing:-3.340758px;}
.ws177{word-spacing:-3.335958px;}
.ws24{word-spacing:-3.328800px;}
.ws27{word-spacing:-3.323100px;}
.ws165{word-spacing:-3.321558px;}
.ws148{word-spacing:-3.316759px;}
.ws8{word-spacing:-3.315600px;}
.ws14d{word-spacing:-3.311959px;}
.ws10{word-spacing:-3.307159px;}
.ws16c{word-spacing:-3.302359px;}
.ws21{word-spacing:-3.297559px;}
.ws16b{word-spacing:-3.287959px;}
.ws2c{word-spacing:-3.283200px;}
.ws130{word-spacing:-3.278359px;}
.ws149{word-spacing:-3.268759px;}
.ws1a{word-spacing:-3.263959px;}
.ws14c{word-spacing:-3.259159px;}
.ws23{word-spacing:-3.254700px;}
.ws137{word-spacing:-3.254359px;}
.ws19b{word-spacing:-3.244759px;}
.ws14e{word-spacing:-3.239960px;}
.ws20{word-spacing:-3.235160px;}
.ws18a{word-spacing:-3.230360px;}
.ws150{word-spacing:-3.225560px;}
.ws145{word-spacing:-3.215960px;}
.ws1c{word-spacing:-3.211160px;}
.wsa{word-spacing:-3.207600px;}
.ws15f{word-spacing:-3.206360px;}
.ws142{word-spacing:-3.201560px;}
.ws138{word-spacing:-3.196760px;}
.ws186{word-spacing:-3.187160px;}
.ws2e{word-spacing:-3.186300px;}
.ws13{word-spacing:-3.182360px;}
.ws28{word-spacing:-3.180600px;}
.ws11{word-spacing:-3.177560px;}
.ws15d{word-spacing:-3.172760px;}
.wsf4{word-spacing:-3.167960px;}
.ws161{word-spacing:-3.163160px;}
.ws180{word-spacing:-3.158361px;}
.ws31{word-spacing:-3.157800px;}
.ws167{word-spacing:-3.153561px;}
.ws139{word-spacing:-3.148761px;}
.ws188{word-spacing:-3.143961px;}
.ws163{word-spacing:-3.134361px;}
.wse{word-spacing:-3.129561px;}
.ws33{word-spacing:-3.124761px;}
.wsd{word-spacing:-3.121200px;}
.ws18e{word-spacing:-3.119961px;}
.ws179{word-spacing:-3.115161px;}
.ws16a{word-spacing:-3.110361px;}
.ws178{word-spacing:-3.105561px;}
.ws191{word-spacing:-3.100761px;}
.ws4{word-spacing:-3.099600px;}
.ws176{word-spacing:-3.095961px;}
.ws9{word-spacing:-3.094200px;}
.ws13f{word-spacing:-3.091161px;}
.ws1e{word-spacing:-3.086361px;}
.ws15e{word-spacing:-3.081561px;}
.ws18b{word-spacing:-3.076762px;}
.ws196{word-spacing:-3.071962px;}
.ws198{word-spacing:-3.067162px;}
.ws32{word-spacing:-3.060900px;}
.ws159{word-spacing:-3.057562px;}
.ws134{word-spacing:-3.052762px;}
.ws14a{word-spacing:-3.047962px;}
.ws153{word-spacing:-3.043162px;}
.ws199{word-spacing:-3.028762px;}
.ws190{word-spacing:-3.023962px;}
.ws162{word-spacing:-3.019162px;}
.ws16{word-spacing:-3.014362px;}
.ws2{word-spacing:-3.013200px;}
.ws14f{word-spacing:-3.009562px;}
.wsb{word-spacing:-3.007800px;}
.ws194{word-spacing:-3.004762px;}
.wsc{word-spacing:-3.002400px;}
.ws13a{word-spacing:-2.999963px;}
.ws2d{word-spacing:-2.992500px;}
.ws197{word-spacing:-2.990363px;}
.ws1f{word-spacing:-2.985563px;}
.ws140{word-spacing:-2.980763px;}
.ws160{word-spacing:-2.975963px;}
.ws158{word-spacing:-2.971163px;}
.ws184{word-spacing:-2.966363px;}
.ws183{word-spacing:-2.961563px;}
.ws141{word-spacing:-2.956763px;}
.ws14b{word-spacing:-2.951963px;}
.ws185{word-spacing:-2.947163px;}
.ws143{word-spacing:-2.942363px;}
.ws30{word-spacing:-2.941200px;}
.ws15a{word-spacing:-2.937563px;}
.ws156{word-spacing:-2.927963px;}
.ws152{word-spacing:-2.923163px;}
.ws13e{word-spacing:-2.918364px;}
.ws13b{word-spacing:-2.913564px;}
.ws22{word-spacing:-2.912700px;}
.ws144{word-spacing:-2.908764px;}
.ws29{word-spacing:-2.907000px;}
.ws12e{word-spacing:-2.903964px;}
.ws133{word-spacing:-2.894364px;}
.ws2a{word-spacing:-2.889900px;}
.ws195{word-spacing:-2.884764px;}
.ws19{word-spacing:-2.875164px;}
.ws1{word-spacing:-2.872800px;}
.ws18c{word-spacing:-2.865564px;}
.ws169{word-spacing:-2.860764px;}
.ws18d{word-spacing:-2.851164px;}
.ws192{word-spacing:-2.846364px;}
.ws15{word-spacing:-2.831965px;}
.wsf{word-spacing:-2.827165px;}
.ws3{word-spacing:-2.818800px;}
.ws35{word-spacing:-2.812765px;}
.ws164{word-spacing:-2.807965px;}
.ws2b{word-spacing:-2.798700px;}
.ws157{word-spacing:-2.788765px;}
.ws151{word-spacing:-2.783965px;}
.ws12f{word-spacing:-2.779165px;}
.ws18f{word-spacing:-2.774365px;}
.ws15c{word-spacing:-2.769565px;}
.ws1d{word-spacing:-2.764765px;}
.ws13c{word-spacing:-2.755166px;}
.ws12{word-spacing:-2.750366px;}
.ws18{word-spacing:-2.745566px;}
.ws17f{word-spacing:-2.716766px;}
.ws17c{word-spacing:-2.702366px;}
.ws193{word-spacing:-2.697566px;}
.ws132{word-spacing:-2.687966px;}
.ws0{word-spacing:-2.649567px;}
.ws19a{word-spacing:-2.635167px;}
.ws189{word-spacing:-2.587168px;}
.wsd1{word-spacing:-1.026000px;}
.ws10f{word-spacing:-0.960000px;}
.ws94{word-spacing:-0.918000px;}
.ws4f{word-spacing:-0.916789px;}
.ws8b{word-spacing:-0.897589px;}
.wsf9{word-spacing:-0.894000px;}
.ws4a{word-spacing:-0.892789px;}
.ws46{word-spacing:-0.878389px;}
.wsc9{word-spacing:-0.876000px;}
.ws65{word-spacing:-0.864000px;}
.ws88{word-spacing:-0.859189px;}
.ws82{word-spacing:-0.858000px;}
.ws3f{word-spacing:-0.854389px;}
.ws56{word-spacing:-0.835190px;}
.ws51{word-spacing:-0.815990px;}
.wsde{word-spacing:-0.801590px;}
.ws95{word-spacing:-0.798000px;}
.wseb{word-spacing:-0.796790px;}
.ws44{word-spacing:-0.791990px;}
.wse7{word-spacing:-0.782390px;}
.ws93{word-spacing:-0.780000px;}
.ws43{word-spacing:-0.777590px;}
.ws3e{word-spacing:-0.772790px;}
.wsef{word-spacing:-0.763190px;}
.ws58{word-spacing:-0.758391px;}
.ws120{word-spacing:-0.750000px;}
.ws48{word-spacing:-0.743991px;}
.ws54{word-spacing:-0.739191px;}
.ws4b{word-spacing:-0.729591px;}
.wscc{word-spacing:-0.726000px;}
.ws39{word-spacing:-0.724791px;}
.ws3d{word-spacing:-0.715191px;}
.ws96{word-spacing:-0.708000px;}
.ws89{word-spacing:-0.705591px;}
.ws8a{word-spacing:-0.686391px;}
.wse0{word-spacing:-0.681591px;}
.ws84{word-spacing:-0.676792px;}
.ws50{word-spacing:-0.671992px;}
.wsf2{word-spacing:-0.662392px;}
.ws85{word-spacing:-0.647992px;}
.ws66{word-spacing:-0.642000px;}
.ws45{word-spacing:-0.638392px;}
.ws81{word-spacing:-0.636000px;}
.ws53{word-spacing:-0.633592px;}
.ws37{word-spacing:-0.623992px;}
.wsd2{word-spacing:-0.618000px;}
.ws52{word-spacing:-0.609592px;}
.ws3c{word-spacing:-0.604792px;}
.ws109{word-spacing:-0.588000px;}
.ws87{word-spacing:-0.585593px;}
.ws108{word-spacing:-0.576000px;}
.ws41{word-spacing:-0.571193px;}
.ws74{word-spacing:-0.570000px;}
.ws3a{word-spacing:-0.561593px;}
.wsd0{word-spacing:-0.558000px;}
.ws91{word-spacing:-0.546000px;}
.ws55{word-spacing:-0.542393px;}
.wsbc{word-spacing:-0.534000px;}
.wsbd{word-spacing:-0.528000px;}
.ws49{word-spacing:-0.527993px;}
.wsea{word-spacing:-0.523193px;}
.ws47{word-spacing:-0.518394px;}
.ws5f{word-spacing:-0.510000px;}
.wse1{word-spacing:-0.508794px;}
.wse9{word-spacing:-0.504067px;}
.ws9a{word-spacing:-0.504000px;}
.wse2{word-spacing:-0.503467px;}
.ws4c{word-spacing:-0.494394px;}
.ws106{word-spacing:-0.474000px;}
.ws4e{word-spacing:-0.470394px;}
.ws80{word-spacing:-0.468000px;}
.wsf0{word-spacing:-0.465594px;}
.wsd3{word-spacing:-0.462000px;}
.ws86{word-spacing:-0.460794px;}
.wsf1{word-spacing:-0.460579px;}
.wsc6{word-spacing:-0.456000px;}
.wse8{word-spacing:-0.451194px;}
.ws10c{word-spacing:-0.444000px;}
.wse3{word-spacing:-0.441594px;}
.ws6b{word-spacing:-0.432000px;}
.ws64{word-spacing:-0.426000px;}
.wsb9{word-spacing:-0.414000px;}
.ws98{word-spacing:-0.408000px;}
.wsb8{word-spacing:-0.396000px;}
.ws90{word-spacing:-0.390000px;}
.ws68{word-spacing:-0.384000px;}
.ws5a{word-spacing:-0.378000px;}
.ws9d{word-spacing:-0.374395px;}
.ws73{word-spacing:-0.372000px;}
.ws9b{word-spacing:-0.366000px;}
.ws7c{word-spacing:-0.360000px;}
.wsfb{word-spacing:-0.359995px;}
.ws67{word-spacing:-0.354000px;}
.wsa1{word-spacing:-0.348000px;}
.ws63{word-spacing:-0.342000px;}
.wscf{word-spacing:-0.336000px;}
.ws4d{word-spacing:-0.335996px;}
.wsc7{word-spacing:-0.330000px;}
.wsb0{word-spacing:-0.324000px;}
.ws99{word-spacing:-0.318000px;}
.ws6d{word-spacing:-0.312000px;}
.wsf3{word-spacing:-0.311996px;}
.ws57{word-spacing:-0.307196px;}
.wsad{word-spacing:-0.306000px;}
.wsbf{word-spacing:-0.300000px;}
.ws7a{word-spacing:-0.294000px;}
.ws42{word-spacing:-0.292796px;}
.ws8e{word-spacing:-0.288000px;}
.ws69{word-spacing:-0.282000px;}
.ws5c{word-spacing:-0.276000px;}
.ws7f{word-spacing:-0.270000px;}
.ws97{word-spacing:-0.264000px;}
.wsb7{word-spacing:-0.258000px;}
.wsaf{word-spacing:-0.252000px;}
.ws6f{word-spacing:-0.246000px;}
.wsfe{word-spacing:-0.244797px;}
.ws70{word-spacing:-0.240000px;}
.ws5d{word-spacing:-0.234000px;}
.ws6c{word-spacing:-0.228000px;}
.ws76{word-spacing:-0.222000px;}
.ws10a{word-spacing:-0.216000px;}
.ws77{word-spacing:-0.210000px;}
.wsa4{word-spacing:-0.204000px;}
.wsb6{word-spacing:-0.198000px;}
.ws71{word-spacing:-0.192000px;}
.ws6e{word-spacing:-0.186000px;}
.ws60{word-spacing:-0.180000px;}
.ws78{word-spacing:-0.174000px;}
.wsae{word-spacing:-0.168000px;}
.wsed{word-spacing:-0.167998px;}
.wsd5{word-spacing:-0.162000px;}
.wsdc{word-spacing:-0.158398px;}
.ws8c{word-spacing:-0.156000px;}
.wse5{word-spacing:-0.153598px;}
.ws9f{word-spacing:-0.150000px;}
.wsbe{word-spacing:-0.144000px;}
.wsa2{word-spacing:-0.138000px;}
.wsdf{word-spacing:-0.129598px;}
.wsc2{word-spacing:-0.126000px;}
.wsd9{word-spacing:-0.124798px;}
.wsa0{word-spacing:-0.120000px;}
.wsdb{word-spacing:-0.119998px;}
.ws3b{word-spacing:-0.115199px;}
.wsac{word-spacing:-0.114000px;}
.ws62{word-spacing:-0.102000px;}
.wsfa{word-spacing:-0.100799px;}
.wsb3{word-spacing:-0.096000px;}
.ws10e{word-spacing:-0.095999px;}
.wsa7{word-spacing:-0.090000px;}
.wsa6{word-spacing:-0.084000px;}
.wsda{word-spacing:-0.081599px;}
.ws107{word-spacing:-0.078000px;}
.ws8f{word-spacing:-0.072000px;}
.wsb4{word-spacing:-0.066000px;}
.wsa9{word-spacing:-0.060000px;}
.ws7b{word-spacing:-0.054000px;}
.ws72{word-spacing:-0.048000px;}
.ws83{word-spacing:-0.042000px;}
.ws104{word-spacing:-0.038400px;}
.ws7e{word-spacing:-0.036000px;}
.ws79{word-spacing:-0.030000px;}
.wscd{word-spacing:-0.024000px;}
.wsb1{word-spacing:-0.018000px;}
.wsc4{word-spacing:-0.012000px;}
.wsec{word-spacing:-0.004800px;}
.ws59{word-spacing:0.000000px;}
.wsb5{word-spacing:0.024000px;}
.ws9c{word-spacing:0.033600px;}
.wsb2{word-spacing:0.036000px;}
.wsf5{word-spacing:0.042000px;}
.wsd7{word-spacing:0.048000px;}
.wsba{word-spacing:0.054000px;}
.ws6a{word-spacing:0.060000px;}
.wsdd{word-spacing:0.062399px;}
.wsf7{word-spacing:0.066000px;}
.ws105{word-spacing:0.072000px;}
.wsd4{word-spacing:0.084000px;}
.wsf6{word-spacing:0.096000px;}
.wsc3{word-spacing:0.102000px;}
.ws128{word-spacing:0.108000px;}
.ws5e{word-spacing:0.114000px;}
.wsce{word-spacing:0.120000px;}
.ws8d{word-spacing:0.126000px;}
.wsa5{word-spacing:0.132000px;}
.ws5b{word-spacing:0.138000px;}
.wsc8{word-spacing:0.144000px;}
.wsca{word-spacing:0.156000px;}
.ws10d{word-spacing:0.163198px;}
.wsd8{word-spacing:0.180000px;}
.wse6{word-spacing:0.182398px;}
.ws92{word-spacing:0.186000px;}
.wsd6{word-spacing:0.192000px;}
.wsf8{word-spacing:0.204000px;}
.wsa8{word-spacing:0.210000px;}
.wsff{word-spacing:0.211197px;}
.ws102{word-spacing:0.225597px;}
.wsbb{word-spacing:0.228000px;}
.wscb{word-spacing:0.240000px;}
.ws10b{word-spacing:0.246000px;}
.ws115{word-spacing:0.252000px;}
.ws61{word-spacing:0.258000px;}
.wsc5{word-spacing:0.270000px;}
.ws114{word-spacing:0.276000px;}
.ws7d{word-spacing:0.300000px;}
.wsee{word-spacing:0.311996px;}
.ws11c{word-spacing:0.318000px;}
.ws12c{word-spacing:0.342000px;}
.wsab{word-spacing:0.345597px;}
.ws117{word-spacing:0.348000px;}
.ws11e{word-spacing:0.372000px;}
.wse4{word-spacing:0.374395px;}
.wsaa{word-spacing:0.384000px;}
.wsa3{word-spacing:0.390000px;}
.ws111{word-spacing:0.408000px;}
.ws112{word-spacing:0.414000px;}
.ws119{word-spacing:0.426000px;}
.ws113{word-spacing:0.480000px;}
.ws116{word-spacing:0.486000px;}
.ws118{word-spacing:0.528000px;}
.ws129{word-spacing:0.648000px;}
.ws122{word-spacing:0.666000px;}
.ws126{word-spacing:0.708000px;}
.ws123{word-spacing:0.762000px;}
.ws11d{word-spacing:0.828000px;}
.ws127{word-spacing:0.846000px;}
.ws125{word-spacing:0.900000px;}
.ws124{word-spacing:0.978000px;}
.ws12a{word-spacing:1.014000px;}
.ws12b{word-spacing:1.020000px;}
.ws11a{word-spacing:1.026000px;}
.ws121{word-spacing:1.158000px;}
.ws11b{word-spacing:1.344000px;}
.ws34{word-spacing:34.588368px;}
.ws147{word-spacing:46.842614px;}
.ws15b{word-spacing:46.847414px;}
.ws12d{word-spacing:46.909814px;}
.wsfd{word-spacing:157.970825px;}
.ws103{word-spacing:160.908389px;}
.wsfc{word-spacing:167.316309px;}
.ws101{word-spacing:169.399482px;}
.ws100{word-spacing:209.565380px;}
._c{margin-left:-26.695200px;}
._a{margin-left:-20.739528px;}
._2c{margin-left:-14.515019px;}
._7{margin-left:-4.415945px;}
._b{margin-left:-3.311959px;}
._0{margin-left:-1.113586px;}
._5{width:1.231200px;}
._2{width:9.110286px;}
._3{width:11.164660px;}
._8{width:12.606000px;}
._4{width:13.885200px;}
._9{width:14.946000px;}
._2d{width:20.063749px;}
._e{width:21.100536px;}
._1{width:25.023600px;}
._25{width:171.900251px;}
._20{width:188.877639px;}
._12{width:428.845839px;}
._28{width:437.908126px;}
._1f{width:448.856789px;}
._21{width:454.899914px;}
._1b{width:463.400607px;}
._1e{width:477.349233px;}
._23{width:482.965163px;}
._29{width:485.835527px;}
._24{width:488.883489px;}
._1d{width:490.352271px;}
._22{width:494.014625px;}
._26{width:497.076986px;}
._2a{width:501.920126px;}
._10{width:510.027225px;}
._19{width:537.185285px;}
._2b{width:557.829827px;}
._27{width:578.973563px;}
._f{width:586.792665px;}
._13{width:819.392957px;}
._14{width:830.956013px;}
._15{width:896.777590px;}
._16{width:908.297446px;}
._11{width:924.761240px;}
._17{width:931.721153px;}
._18{width:972.463044px;}
._1a{width:1010.464169px;}
._d{width:1555.703753px;}
._6{width:1580.845839px;}
._1c{width:2314.300671px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fsa{font-size:33.598800px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.995400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:71.999400px;}
.fs4{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:54.000000px;}
.yc9{bottom:119.650819px;}
.y1dc{bottom:124.499700px;}
.yf0{bottom:124.500000px;}
.y5c{bottom:124.500364px;}
.y28e{bottom:124.502438px;}
.y14e{bottom:124.502700px;}
.y120{bottom:124.503750px;}
.y166{bottom:125.100150px;}
.y1dd{bottom:125.264700px;}
.y17b{bottom:125.945100px;}
.y17c{bottom:126.711600px;}
.y1b5{bottom:126.967350px;}
.y246{bottom:131.984100px;}
.y211{bottom:133.517400px;}
.y97{bottom:136.658850px;}
.y33e{bottom:136.832728px;}
.y98{bottom:137.425350px;}
.y28b{bottom:138.788259px;}
.y28c{bottom:139.043856px;}
.y28d{bottom:139.129055px;}
.y2f1{bottom:140.575481px;}
.y5b{bottom:140.997758px;}
.yc7{bottom:142.866929px;}
.yc8{bottom:143.462121px;}
.y1db{bottom:143.972700px;}
.yef{bottom:143.974500px;}
.y11f{bottom:143.976750px;}
.y14d{bottom:143.977200px;}
.y165{bottom:144.573150px;}
.y17a{bottom:145.419600px;}
.y1b4{bottom:146.525850px;}
.y33d{bottom:151.119750px;}
.y244{bottom:151.542600px;}
.y245{bottom:152.307600px;}
.y288{bottom:152.990082px;}
.y210{bottom:152.991900px;}
.y289{bottom:153.244479px;}
.y28a{bottom:153.414876px;}
.y2f0{bottom:154.861303px;}
.y96{bottom:156.133350px;}
.yc5{bottom:157.152750px;}
.y5a{bottom:157.495152px;}
.yc6{bottom:157.747943px;}
.y1e9{bottom:162.935719px;}
.y1da{bottom:163.531200px;}
.yee{bottom:163.533000px;}
.y14c{bottom:163.535700px;}
.y11e{bottom:163.536750px;}
.y18c{bottom:163.701169px;}
.y164{bottom:164.131650px;}
.y179{bottom:164.894100px;}
.y33c{bottom:165.321572px;}
.y1b3{bottom:166.000350px;}
.y193{bottom:166.082269px;}
.y286{bottom:172.463438px;}
.y20f{bottom:172.464900px;}
.y287{bottom:172.889433px;}
.y36{bottom:173.907600px;}
.y59{bottom:173.993745px;}
.y2ef{bottom:174.335859px;}
.y95{bottom:175.607850px;}
.y242{bottom:178.500600px;}
.y243{bottom:179.265600px;}
.y1d9{bottom:183.005700px;}
.yed{bottom:183.006000px;}
.y11d{bottom:183.009750px;}
.y14b{bottom:183.010200px;}
.y163{bottom:183.606150px;}
.y1e5{bottom:184.371150px;}
.y177{bottom:184.452600px;}
.y33b{bottom:184.794929px;}
.y178{bottom:185.217600px;}
.y1b2{bottom:185.474850px;}
.y1e8{bottom:186.151829px;}
.y284{bottom:186.750460px;}
.y18b{bottom:187.002478px;}
.y285{bottom:187.006057px;}
.y2ee{bottom:188.621681px;}
.y192{bottom:189.383578px;}
.y58{bottom:190.491139px;}
.y34{bottom:194.912100px;}
.y94{bottom:195.080850px;}
.y35{bottom:195.336750px;}
.y33a{bottom:199.081950px;}
.y189{bottom:199.247100px;}
.y1e6{bottom:200.437650px;}
.y1e7{bottom:201.032843px;}
.y20e{bottom:201.038400px;}
.y18a{bottom:201.203100px;}
.y188{bottom:201.204385px;}
.y190{bottom:201.628200px;}
.y1d8{bottom:202.480200px;}
.yec{bottom:202.480500px;}
.y11c{bottom:202.484250px;}
.y14a{bottom:202.484700px;}
.y162{bottom:203.080650px;}
.y191{bottom:203.584200px;}
.y18f{bottom:203.584706px;}
.y175{bottom:203.925600px;}
.y176{bottom:204.692100px;}
.y1b1{bottom:205.033350px;}
.y240{bottom:205.542600px;}
.y282{bottom:206.223816px;}
.y241{bottom:206.307600px;}
.y283{bottom:206.649811px;}
.y57{bottom:206.988533px;}
.y2ed{bottom:208.096237px;}
.y339{bottom:213.367771px;}
.y93{bottom:214.639350px;}
.y91{bottom:214.641450px;}
.y187{bottom:215.490206px;}
.y33{bottom:215.916600px;}
.y18e{bottom:217.871728px;}
.y280{bottom:220.510838px;}
.y20d{bottom:220.512900px;}
.y281{bottom:220.766435px;}
.y92{bottom:221.272350px;}
.y1d7{bottom:222.038700px;}
.yeb{bottom:222.039000px;}
.y11b{bottom:222.042750px;}
.y149{bottom:222.043200px;}
.y2ec{bottom:222.296860px;}
.y160{bottom:222.639150px;}
.y174{bottom:223.400100px;}
.y161{bottom:223.404150px;}
.y56{bottom:223.485927px;}
.y1b0{bottom:224.506350px;}
.y186{bottom:229.777228px;}
.y18d{bottom:232.072350px;}
.y23e{bottom:232.500600px;}
.y338{bottom:232.842328px;}
.y23f{bottom:233.265600px;}
.y90{bottom:234.114450px;}
.y2eb{bottom:236.583881px;}
.y32{bottom:236.921100px;}
.y27f{bottom:239.984194px;}
.y1d6{bottom:241.511700px;}
.yea{bottom:241.513500px;}
.y148{bottom:241.516200px;}
.y11a{bottom:241.517250px;}
.y15f{bottom:242.112150px;}
.y1e4{bottom:242.878650px;}
.y173{bottom:242.958600px;}
.y185{bottom:243.977850px;}
.y1af{bottom:243.980850px;}
.y337{bottom:247.044151px;}
.y55{bottom:248.997608px;}
.y20c{bottom:249.000900px;}
.y8f{bottom:253.588950px;}
.y27d{bottom:254.271216px;}
.y27e{bottom:254.612011px;}
.y2ea{bottom:256.058438px;}
.y30{bottom:257.925600px;}
.y31{bottom:258.351675px;}
.y23c{bottom:259.542600px;}
.y23d{bottom:260.307600px;}
.ye9{bottom:260.988000px;}
.y119{bottom:260.990250px;}
.y147{bottom:260.990700px;}
.y15e{bottom:261.586650px;}
.y172{bottom:262.433100px;}
.y1ae{bottom:263.539350px;}
.y54{bottom:265.495001px;}
.y336{bottom:266.602706px;}
.y1d5{bottom:267.023550px;}
.y27b{bottom:268.473038px;}
.y20b{bottom:268.473900px;}
.y27c{bottom:268.727435px;}
.y2e9{bottom:270.344259px;}
.y8e{bottom:273.147450px;}
.y2f{bottom:278.931525px;}
.ye8{bottom:280.461000px;}
.y118{bottom:280.464750px;}
.y146{bottom:280.465200px;}
.y335{bottom:280.804529px;}
.y15d{bottom:281.145150px;}
.y171{bottom:281.907600px;}
.y53{bottom:281.992395px;}
.y1ad{bottom:283.013850px;}
.y2e7{bottom:284.546082px;}
.y2e8{bottom:284.970876px;}
.y23a{bottom:286.499100px;}
.y23b{bottom:287.094600px;}
.y279{bottom:288.031594px;}
.y20a{bottom:288.033900px;}
.y27a{bottom:288.372389px;}
.y8d{bottom:292.621950px;}
.y333{bottom:295.090350px;}
.y334{bottom:295.345947px;}
.y2e{bottom:299.936025px;}
.ye7{bottom:300.019500px;}
.y117{bottom:300.023250px;}
.y145{bottom:300.023700px;}
.y15b{bottom:300.619650px;}
.y15c{bottom:301.384650px;}
.y170{bottom:301.466100px;}
.y277{bottom:302.233416px;}
.y1ac{bottom:302.488350px;}
.y278{bottom:302.658211px;}
.y2e6{bottom:304.104637px;}
.y238{bottom:305.973600px;}
.y239{bottom:306.824100px;}
.y52{bottom:307.504076px;}
.y8c{bottom:312.094950px;}
.y332{bottom:314.564907px;}
.y209{bottom:316.521900px;}
.y2e4{bottom:318.306460px;}
.y2e5{bottom:318.562057px;}
.ye6{bottom:319.494000px;}
.y116{bottom:319.497750px;}
.y144{bottom:319.498200px;}
.y15a{bottom:320.094150px;}
.y1d4{bottom:320.859150px;}
.y16f{bottom:320.939100px;}
.y2c{bottom:320.940525px;}
.y2d{bottom:321.365175px;}
.y275{bottom:321.791972px;}
.y1ab{bottom:322.046850px;}
.y276{bottom:322.132767px;}
.y51{bottom:324.001470px;}
.y330{bottom:328.850728px;}
.y331{bottom:329.191524px;}
.y8b{bottom:331.653450px;}
.y89{bottom:331.654500px;}
.y236{bottom:333.015600px;}
.y237{bottom:333.780600px;}
.y272{bottom:335.993794px;}
.y208{bottom:335.994900px;}
.y274{bottom:336.249391px;}
.y273{bottom:336.418589px;}
.y2e2{bottom:337.865015px;}
.y2e3{bottom:338.205811px;}
.y8a{bottom:338.286600px;}
.ye5{bottom:338.968500px;}
.y143{bottom:338.971200px;}
.y115{bottom:338.972250px;}
.y159{bottom:339.567150px;}
.y16d{bottom:340.413600px;}
.y50{bottom:340.500064px;}
.y16e{bottom:341.178600px;}
.y1aa{bottom:341.519850px;}
.y2b{bottom:341.945025px;}
.y32d{bottom:343.052550px;}
.y32f{bottom:343.477345px;}
.y32e{bottom:345.688917px;}
.y88{bottom:351.127500px;}
.y86{bottom:351.132450px;}
.y2e0{bottom:352.066838px;}
.y2e1{bottom:352.491632px;}
.y271{bottom:355.467151px;}
.y207{bottom:355.469400px;}
.y4f{bottom:356.997458px;}
.y87{bottom:357.760500px;}
.ye4{bottom:358.527000px;}
.y142{bottom:358.529700px;}
.y114{bottom:358.530750px;}
.y158{bottom:359.125650px;}
.y16b{bottom:359.888100px;}
.y234{bottom:359.973600px;}
.y16c{bottom:360.738600px;}
.y235{bottom:360.824100px;}
.y1a9{bottom:360.994350px;}
.y32c{bottom:362.611106px;}
.y2a{bottom:362.949525px;}
.y270{bottom:369.754172px;}
.y85{bottom:370.606950px;}
.y2de{bottom:371.540194px;}
.y2df{bottom:371.966189px;}
.y4e{bottom:373.494851px;}
.y32a{bottom:376.812928px;}
.y32b{bottom:377.068525px;}
.ye3{bottom:378.000000px;}
.ye1{bottom:378.000900px;}
.y113{bottom:378.003750px;}
.y141{bottom:378.004200px;}
.y157{bottom:378.600150px;}
.y169{bottom:379.446600px;}
.y16a{bottom:380.211600px;}
.y1a7{bottom:380.468850px;}
.y1a8{bottom:381.319350px;}
.y29{bottom:383.868525px;}
.y26f{bottom:384.041194px;}
.y206{bottom:384.041400px;}
.ye2{bottom:384.633000px;}
.y2dc{bottom:385.827216px;}
.y2dd{bottom:386.168011px;}
.y232{bottom:387.015600px;}
.y233{bottom:387.780600px;}
.y4c{bottom:389.992245px;}
.y84{bottom:390.165450px;}
.y4d{bottom:390.247842px;}
.y329{bottom:391.099950px;}
.ydf{bottom:397.473900px;}
.y112{bottom:397.478250px;}
.y13f{bottom:397.478700px;}
.y156{bottom:398.074650px;}
.y140{bottom:398.243700px;}
.y167{bottom:398.919600px;}
.y168{bottom:399.684600px;}
.y1a6{bottom:400.027350px;}
.y2da{bottom:400.114237px;}
.y2db{bottom:400.453833px;}
.y26e{bottom:403.514550px;}
.y205{bottom:403.515900px;}
.ye0{bottom:404.192100px;}
.y28{bottom:404.874450px;}
.y326{bottom:405.301772px;}
.y327{bottom:405.556169px;}
.y328{bottom:405.726567px;}
.y83{bottom:409.639950px;}
.y230{bottom:413.972100px;}
.y231{bottom:414.822600px;}
.y4b{bottom:415.503926px;}
.y110{bottom:417.036750px;}
.y13e{bottom:417.037200px;}
.y155{bottom:417.633150px;}
.y26d{bottom:417.716373px;}
.y111{bottom:417.803250px;}
.y1a4{bottom:419.500350px;}
.y2d8{bottom:419.587594px;}
.y2d9{bottom:419.928389px;}
.y1a5{bottom:420.266850px;}
.yde{bottom:422.987025px;}
.y204{bottom:422.990400px;}
.y325{bottom:424.860328px;}
.y27{bottom:425.878950px;}
.y82{bottom:429.112950px;}
.y26c{bottom:432.003394px;}
.y2d6{bottom:433.874615px;}
.y2d7{bottom:434.214211px;}
.y13d{bottom:436.510200px;}
.y10f{bottom:436.511250px;}
.y154{bottom:437.107650px;}
.y1d3{bottom:437.872650px;}
.y1a2{bottom:438.974850px;}
.y323{bottom:439.062150px;}
.y324{bottom:439.486945px;}
.y1a3{bottom:439.825350px;}
.y22e{bottom:441.015600px;}
.y4a{bottom:441.015607px;}
.y184{bottom:441.694819px;}
.y22f{bottom:441.780600px;}
.y26a{bottom:446.289215px;}
.y26b{bottom:446.630011px;}
.y26{bottom:446.883450px;}
.y80{bottom:448.587450px;}
.y81{bottom:449.437950px;}
.ydd{bottom:450.028200px;}
.y203{bottom:451.478400px;}
.y2d5{bottom:453.347972px;}
.y10e{bottom:455.984250px;}
.y13b{bottom:455.984700px;}
.y153{bottom:456.580650px;}
.y13c{bottom:456.749700px;}
.y1a1{bottom:458.533350px;}
.y322{bottom:458.620706px;}
.y183{bottom:464.910929px;}
.y269{bottom:465.763772px;}
.y49{bottom:466.527289px;}
.y2d3{bottom:467.549794px;}
.y25{bottom:467.887950px;}
.y22c{bottom:467.972100px;}
.y2d4{bottom:467.974589px;}
.y7f{bottom:468.145950px;}
.y22d{bottom:468.822600px;}
.y202{bottom:471.036900px;}
.y31f{bottom:472.822528px;}
.y320{bottom:473.076925px;}
.y321{bottom:473.247323px;}
.y13a{bottom:475.543200px;}
.y10c{bottom:475.544250px;}
.y152{bottom:476.139150px;}
.y10d{bottom:476.309250px;}
.y181{bottom:477.155850px;}
.y19f{bottom:478.007850px;}
.y1a0{bottom:478.772850px;}
.y182{bottom:479.196750px;}
.y180{bottom:479.197134px;}
.y268{bottom:479.964395px;}
.y2d2{bottom:487.108350px;}
.y31e{bottom:487.363947px;}
.y31d{bottom:487.449145px;}
.y7d{bottom:487.620450px;}
.y7e{bottom:488.385450px;}
.y24{bottom:488.892450px;}
.y48{bottom:492.038970px;}
.y17f{bottom:493.398956px;}
.y267{bottom:494.251416px;}
.y22a{bottom:495.014100px;}
.y10b{bottom:495.017250px;}
.y139{bottom:495.017700px;}
.ydc{bottom:495.613650px;}
.y22b{bottom:495.779100px;}
.y1e3{bottom:496.378650px;}
.y19e{bottom:497.482350px;}
.y201{bottom:499.524900px;}
.y2d0{bottom:501.310172px;}
.y2d1{bottom:501.734967px;}
.y7c{bottom:507.093450px;}
.y17e{bottom:507.685978px;}
.y47{bottom:508.536363px;}
.y23{bottom:509.896950px;}
.y266{bottom:513.724773px;}
.y10a{bottom:514.491750px;}
.y138{bottom:514.492200px;}
.ydb{bottom:515.088150px;}
.y31b{bottom:515.597194px;}
.y151{bottom:515.853150px;}
.y31c{bottom:515.936789px;}
.y19c{bottom:517.040850px;}
.y19d{bottom:517.805850px;}
.y200{bottom:518.997900px;}
.y229{bottom:520.525950px;}
.y2cf{bottom:520.868728px;}
.y17d{bottom:521.886600px;}
.y7b{bottom:526.651950px;}
.y265{bottom:528.011794px;}
.y22{bottom:530.901450px;}
.y46{bottom:533.962846px;}
.y137{bottom:533.965200px;}
.y109{bottom:533.966250px;}
.yda{bottom:534.646650px;}
.y2ce{bottom:535.070550px;}
.y150{bottom:535.411650px;}
.y19a{bottom:536.513850px;}
.y19b{bottom:537.280350px;}
.y264{bottom:542.213616px;}
.y7a{bottom:546.126450px;}
.y1ff{bottom:547.485900px;}
.y2cd{bottom:549.357572px;}
.y31a{bottom:549.611968px;}
.y319{bottom:549.697167px;}
.y45{bottom:550.545438px;}
.y21{bottom:551.905950px;}
.y136{bottom:553.523700px;}
.y108{bottom:553.524750px;}
.yd9{bottom:554.119650px;}
.y14f{bottom:554.886150px;}
.y199{bottom:555.988350px;}
.y263{bottom:561.772172px;}
.y2cb{bottom:563.559394px;}
.y2cc{bottom:563.813791px;}
.y318{bottom:563.984189px;}
.y79{bottom:565.600950px;}
.yc4{bottom:566.448450px;}
.y1fe{bottom:566.960400px;}
.y44{bottom:567.042832px;}
.y20{bottom:572.910450px;}
.y107{bottom:572.997750px;}
.y135{bottom:572.998200px;}
.yd8{bottom:573.594150px;}
.y1e2{bottom:574.359150px;}
.y198{bottom:575.462850px;}
.y262{bottom:575.973994px;}
.y227{bottom:579.290550px;}
.y228{bottom:580.055550px;}
.y2c9{bottom:583.117950px;}
.y2ca{bottom:583.457545px;}
.y43{bottom:583.541426px;}
.y78{bottom:585.159450px;}
.yc3{bottom:585.922950px;}
.y1fd{bottom:586.518900px;}
.y261{bottom:590.259816px;}
.y106{bottom:592.472250px;}
.y134{bottom:592.472700px;}
.yd7{bottom:593.068650px;}
.y1f{bottom:593.914950px;}
.y1e1{bottom:593.919150px;}
.y196{bottom:595.021350px;}
.y197{bottom:595.786350px;}
.y2c7{bottom:597.319772px;}
.y2c8{bottom:597.574169px;}
.y317{bottom:597.744567px;}
.y226{bottom:598.765050px;}
.y42{bottom:600.038820px;}
.y77{bottom:604.633950px;}
.yc2{bottom:605.481450px;}
.y1fc{bottom:605.993400px;}
.y260{bottom:609.734372px;}
.y2c5{bottom:611.605593px;}
.y2c6{bottom:611.861190px;}
.y105{bottom:612.030750px;}
.y133{bottom:612.031200px;}
.yd6{bottom:612.627150px;}
.y194{bottom:614.494350px;}
.y195{bottom:615.259350px;}
.y40{bottom:616.536213px;}
.y316{bottom:616.793129px;}
.y41{bottom:616.875809px;}
.y225{bottom:618.323550px;}
.y25e{bottom:624.021394px;}
.y76{bottom:624.106950px;}
.y25f{bottom:624.360990px;}
.yc0{bottom:624.955950px;}
.y1fb{bottom:625.467900px;}
.yc1{bottom:625.720950px;}
.y2c2{bottom:625.807416px;}
.y2c4{bottom:626.063013px;}
.y2c3{bottom:626.232211px;}
.y1e{bottom:626.910150px;}
.y313{bottom:631.080150px;}
.y315{bottom:631.334547px;}
.y314{bottom:631.419746px;}
.y104{bottom:631.505250px;}
.y132{bottom:631.505700px;}
.yd5{bottom:632.101650px;}
.y3e{bottom:633.033607px;}
.y3f{bottom:633.289204px;}
.y224{bottom:637.796550px;}
.y25d{bottom:643.494750px;}
.y75{bottom:643.665450px;}
.ybf{bottom:644.430450px;}
.y1fa{bottom:645.026400px;}
.y2c1{bottom:645.365971px;}
.y312{bottom:650.553507px;}
.y131{bottom:650.978700px;}
.y103{bottom:650.979750px;}
.yd4{bottom:651.574650px;}
.y223{bottom:657.271050px;}
.y3d{bottom:657.609300px;}
.y25c{bottom:657.781772px;}
.y2bf{bottom:659.567794px;}
.y2c0{bottom:659.992589px;}
.y1d2{bottom:662.118962px;}
.y74{bottom:663.139950px;}
.ybe{bottom:663.903450px;}
.y30f{bottom:664.840528px;}
.y311{bottom:665.094925px;}
.y310{bottom:665.180124px;}
.y130{bottom:670.537200px;}
.y102{bottom:670.538250px;}
.yd3{bottom:671.133150px;}
.y1e0{bottom:671.899650px;}
.y25b{bottom:671.982394px;}
.y1f9{bottom:673.514400px;}
.y2bc{bottom:673.854815px;}
.y2bd{bottom:674.109212px;}
.y2be{bottom:674.194411px;}
.y222{bottom:676.829550px;}
.y72{bottom:682.614450px;}
.y73{bottom:683.379450px;}
.ybc{bottom:683.461950px;}
.ybd{bottom:684.228450px;}
.y30d{bottom:684.313885px;}
.y1d1{bottom:684.569481px;}
.y30e{bottom:684.739879px;}
.y1d{bottom:687.204825px;}
.y2ba{bottom:688.055438px;}
.y2bb{bottom:688.481433px;}
.y101{bottom:690.011250px;}
.y12f{bottom:690.011700px;}
.yd2{bottom:690.607650px;}
.y1df{bottom:691.372650px;}
.y25a{bottom:691.542150px;}
.y1f8{bottom:692.987400px;}
.y221{bottom:696.304050px;}
.y30b{bottom:698.600906px;}
.y30c{bottom:698.855303px;}
.y71{bottom:702.087450px;}
.y2b7{bottom:702.342459px;}
.y2b9{bottom:702.598056px;}
.y2b8{bottom:702.682055px;}
.ybb{bottom:702.936450px;}
.y1cf{bottom:703.362446px;}
.y1d0{bottom:703.957639px;}
.y259{bottom:705.742772px;}
.y100{bottom:709.485750px;}
.y12e{bottom:709.486200px;}
.yd1{bottom:710.082150px;}
.y1f7{bottom:712.461900px;}
.y308{bottom:712.802728px;}
.y30a{bottom:713.227523px;}
.y309{bottom:715.437896px;}
.y21f{bottom:715.778550px;}
.y220{bottom:716.543550px;}
.y2b5{bottom:716.544282px;}
.y2b6{bottom:716.969076px;}
.y1c{bottom:717.223650px;}
.y70{bottom:721.647450px;}
.y1ce{bottom:722.071413px;}
.yba{bottom:722.410950px;}
.y258{bottom:725.217329px;}
.y306{bottom:727.088550px;}
.y307{bottom:727.429346px;}
.y12d{bottom:728.959200px;}
.yff{bottom:728.960250px;}
.yd0{bottom:729.640650px;}
.y1f6{bottom:732.020400px;}
.y1a{bottom:732.189863px;}
.y1b{bottom:732.614657px;}
.y21d{bottom:735.337050px;}
.y21e{bottom:736.102050px;}
.y2b4{bottom:736.102837px;}
.y257{bottom:739.503150px;}
.y1cc{bottom:740.865578px;}
.y6f{bottom:741.120450px;}
.y304{bottom:741.290372px;}
.y1cd{bottom:741.460770px;}
.y305{bottom:741.715167px;}
.yb9{bottom:741.969450px;}
.y3c{bottom:744.521100px;}
.y18{bottom:747.242475px;}
.y19{bottom:747.582070px;}
.y12c{bottom:748.517700px;}
.yfe{bottom:748.518750px;}
.ycf{bottom:749.115150px;}
.y2b1{bottom:750.304660px;}
.y2b3{bottom:750.559057px;}
.y2b2{bottom:750.729454px;}
.y255{bottom:753.790172px;}
.y256{bottom:754.130967px;}
.y21c{bottom:754.810050px;}
.y1ca{bottom:759.573344px;}
.y1cb{bottom:760.168536px;}
.y1f5{bottom:760.508400px;}
.y6e{bottom:760.594950px;}
.y302{bottom:760.848928px;}
.y303{bottom:761.189724px;}
.yb8{bottom:761.442450px;}
.y3b{bottom:761.783100px;}
.y17{bottom:762.208688px;}
.yfd{bottom:767.991750px;}
.y12b{bottom:767.992200px;}
.yce{bottom:768.588150px;}
.y1de{bottom:769.353150px;}
.y2b0{bottom:769.863215px;}
.y254{bottom:773.264728px;}
.y21a{bottom:774.284550px;}
.y21b{bottom:775.049550px;}
.y2ff{bottom:775.050750px;}
.y300{bottom:775.306347px;}
.y301{bottom:775.475545px;}
.y16{bottom:777.176100px;}
.y1c8{bottom:778.367509px;}
.y3a{bottom:778.961100px;}
.y1c9{bottom:778.962701px;}
.y1f4{bottom:779.982900px;}
.y6c{bottom:780.153450px;}
.y6d{bottom:780.918450px;}
.y2ad{bottom:784.065038px;}
.y2af{bottom:784.319435px;}
.y2ae{bottom:784.489832px;}
.yb7{bottom:786.954300px;}
.y253{bottom:787.465351px;}
.yfc{bottom:787.466250px;}
.y12a{bottom:787.466700px;}
.ycd{bottom:788.062650px;}
.y2fc{bottom:789.337772px;}
.y2fe{bottom:789.677368px;}
.y2fd{bottom:791.972939px;}
.y14{bottom:792.227512px;}
.y15{bottom:792.567108px;}
.y219{bottom:793.759050px;}
.y39{bottom:796.224600px;}
.y1c7{bottom:797.075275px;}
.y2aa{bottom:798.350859px;}
.y2ac{bottom:798.606456px;}
.y2ab{bottom:798.691655px;}
.y1f3{bottom:799.541400px;}
.y6a{bottom:799.627950px;}
.y6b{bottom:800.392950px;}
.y252{bottom:801.752372px;}
.y2fb{bottom:803.623593px;}
.yfb{bottom:807.024750px;}
.y129{bottom:807.025200px;}
.y13{bottom:807.194925px;}
.ycc{bottom:807.621150px;}
.y218{bottom:813.317550px;}
.y38{bottom:813.486600px;}
.y1c6{bottom:815.869440px;}
.y2a8{bottom:817.825416px;}
.y2a9{bottom:818.165011px;}
.y1f2{bottom:819.015900px;}
.y69{bottom:819.100950px;}
.y251{bottom:821.225729px;}
.y12{bottom:822.246337px;}
.yfa{bottom:826.499250px;}
.y128{bottom:826.499700px;}
.yb6{bottom:827.095650px;}
.y2a6{bottom:832.112437px;}
.y2a7{bottom:832.366834px;}
.y217{bottom:832.790550px;}
.y1c4{bottom:834.578406px;}
.y1c5{bottom:835.173599px;}
.y250{bottom:835.512750px;}
.y10{bottom:837.212550px;}
.y2fa{bottom:837.298772px;}
.y11{bottom:837.552146px;}
.y1f1{bottom:838.488900px;}
.y68{bottom:838.659450px;}
.ya8{bottom:839.589380px;}
.y127{bottom:845.972700px;}
.yf9{bottom:845.973750px;}
.yb5{bottom:846.568650px;}
.y24f{bottom:849.714573px;}
.y2a5{bottom:851.585794px;}
.y2f9{bottom:851.841390px;}
.y1c3{bottom:853.371371px;}
.ya7{bottom:856.086774px;}
.y1f0{bottom:857.963400px;}
.y67{bottom:858.133950px;}
.y216{bottom:858.302250px;}
.yf{bottom:864.169950px;}
.yd{bottom:864.170700px;}
.y126{bottom:865.531200px;}
.yf8{bottom:865.532250px;}
.y2a3{bottom:865.872815px;}
.yb4{bottom:866.127150px;}
.y2a4{bottom:866.212411px;}
.y24e{bottom:869.273128px;}
.ye{bottom:870.207750px;}
.y2f8{bottom:871.059150px;}
.y1c2{bottom:872.080337px;}
.y1ef{bottom:877.521900px;}
.y66{bottom:877.608450px;}
.y2a1{bottom:880.073438px;}
.y2a2{bottom:880.414233px;}
.ya{bottom:880.667700px;}
.y8{bottom:880.668300px;}
.yc{bottom:881.006550px;}
.yb{bottom:881.091600px;}
.ya6{bottom:881.598455px;}
.y24d{bottom:883.474951px;}
.yf7{bottom:885.005250px;}
.y125{bottom:885.005700px;}
.y2f7{bottom:885.346172px;}
.yb3{bottom:885.601650px;}
.y9{bottom:886.705500px;}
.y1c1{bottom:890.873303px;}
.y65{bottom:897.081450px;}
.y5{bottom:897.250350px;}
.y6{bottom:897.504150px;}
.y24b{bottom:897.760772px;}
.ya5{bottom:898.095849px;}
.y24c{bottom:898.101568px;}
.y29f{bottom:899.547994px;}
.y2a0{bottom:899.802391px;}
.y7{bottom:903.203100px;}
.yf6{bottom:904.479750px;}
.y124{bottom:904.480200px;}
.y2f6{bottom:904.820728px;}
.yb2{bottom:905.076150px;}
.y1ee{bottom:906.009900px;}
.y1c0{bottom:909.582269px;}
.y29d{bottom:913.833816px;}
.y29e{bottom:914.174611px;}
.ya4{bottom:914.594442px;}
.y64{bottom:916.641450px;}
.y24a{bottom:917.235329px;}
.y2f5{bottom:919.106550px;}
.yf5{bottom:924.038250px;}
.y123{bottom:924.038700px;}
.yb1{bottom:924.634650px;}
.y1ed{bottom:925.484400px;}
.y215{bottom:926.080650px;}
.y1be{bottom:928.376434px;}
.y1bf{bottom:928.971626px;}
.ya3{bottom:931.091836px;}
.y249{bottom:931.521150px;}
.y29b{bottom:933.308372px;}
.y29c{bottom:933.563969px;}
.y4{bottom:934.669950px;}
.y63{bottom:936.114450px;}
.y342{bottom:938.581106px;}
.y122{bottom:943.511700px;}
.yf4{bottom:943.512750px;}
.yb0{bottom:944.109150px;}
.y1ec{bottom:944.957400px;}
.y214{bottom:945.639150px;}
.y1bc{bottom:947.084200px;}
.ya2{bottom:947.589230px;}
.y299{bottom:947.595394px;}
.y1bd{bottom:947.679392px;}
.y29a{bottom:947.849790px;}
.y248{bottom:951.760500px;}
.y2f4{bottom:952.866928px;}
.y62{bottom:955.588950px;}
.yf3{bottom:962.985750px;}
.yaf{bottom:963.582150px;}
.ya1{bottom:964.086624px;}
.ycb{bottom:964.347150px;}
.y1bb{bottom:965.793166px;}
.y298{bottom:967.068750px;}
.y3{bottom:968.430750px;}
.y121{bottom:969.023550px;}
.y1eb{bottom:970.469250px;}
.y213{bottom:974.127150px;}
.y61{bottom:975.147450px;}
.ya0{bottom:980.584018px;}
.y296{bottom:981.355772px;}
.y297{bottom:981.610168px;}
.yae{bottom:983.140650px;}
.y1ba{bottom:984.587331px;}
.y341{bottom:986.542107px;}
.yf2{bottom:988.497600px;}
.y212{bottom:993.601650px;}
.y60{bottom:994.621950px;}
.y295{bottom:995.556394px;}
.y9f{bottom:997.081411px;}
.y2f3{bottom:1000.829128px;}
.y2{bottom:1002.188850px;}
.yad{bottom:1002.615150px;}
.y1b9{bottom:1003.295097px;}
.y9e{bottom:1013.578805px;}
.y5f{bottom:1014.094950px;}
.y294{bottom:1015.116150px;}
.y33f{bottom:1015.370546px;}
.y340{bottom:1015.455745px;}
.y1b8{bottom:1022.089262px;}
.yac{bottom:1022.089650px;}
.y247{bottom:1022.683650px;}
.y292{bottom:1029.316772px;}
.y293{bottom:1029.742767px;}
.y9d{bottom:1030.076199px;}
.y5e{bottom:1033.653450px;}
.y2f2{bottom:1034.589506px;}
.y1{bottom:1035.949500px;}
.y1b7{bottom:1040.797029px;}
.yab{bottom:1041.562650px;}
.yca{bottom:1042.413150px;}
.y9c{bottom:1046.574793px;}
.y290{bottom:1048.791329px;}
.y291{bottom:1049.216123px;}
.yf1{bottom:1058.569950px;}
.y5d{bottom:1059.080250px;}
.ya9{bottom:1061.121150px;}
.y1ea{bottom:1061.886150px;}
.y9a{bottom:1063.072186px;}
.y1b6{bottom:1063.077150px;}
.y28f{bottom:1063.331547px;}
.y9b{bottom:1063.411782px;}
.yaa{bottom:1067.754300px;}
.y99{bottom:1118.692800px;}
.h11{height:23.996250px;}
.h4{height:27.932275px;}
.hd{height:29.996550px;}
.h9{height:34.968313px;}
.hf{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hb{height:39.119511px;}
.ha{height:40.559493px;}
.he{height:41.100000px;}
.h3{height:41.904000px;}
.h12{height:43.387470px;}
.h13{height:43.727070px;}
.h7{height:44.175000px;}
.h8{height:45.000000px;}
.h10{height:53.999550px;}
.hc{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:54.000000px;}
.x60{left:68.541418px;}
.x22{left:71.433000px;}
.x36{left:86.143998px;}
.x5f{left:91.161135px;}
.x5e{left:94.053099px;}
.x3b{left:98.560500px;}
.x23{left:112.506087px;}
.x3c{left:118.969845px;}
.x25{left:155.536349px;}
.x53{left:158.003100px;}
.x63{left:173.564105px;}
.x61{left:176.370870px;}
.x62{left:188.871114px;}
.x4f{left:192.273900px;}
.x24{left:211.747246px;}
.x50{left:286.922700px;}
.x3d{left:293.808859px;}
.x1{left:300.018750px;}
.x2f{left:306.992100px;}
.x51{left:312.179400px;}
.x29{left:317.961750px;}
.x1d{left:319.662375px;}
.x2a{left:325.614750px;}
.x7f{left:332.247439px;}
.xb1{left:334.203782px;}
.x7e{left:335.819250px;}
.xaf{left:342.708076px;}
.xa1{left:346.364430px;}
.xac{left:349.256394px;}
.x1b{left:350.445720px;}
.x6b{left:355.463250px;}
.x17{left:356.994038px;}
.x48{left:359.799750px;}
.x6a{left:361.331250px;}
.x30{left:365.073900px;}
.x5d{left:366.092099px;}
.x2{left:367.964250px;}
.x32{left:372.642450px;}
.xaa{left:374.171683px;}
.x31{left:375.788850px;}
.x33{left:383.357400px;}
.x9f{left:384.631952px;}
.x6d{left:386.672250px;}
.x35{left:388.544850px;}
.x5b{left:393.135750px;}
.x65{left:394.326750px;}
.x78{left:395.516250px;}
.x5c{left:399.768478px;}
.xbf{left:401.299744px;}
.x91{left:402.745357px;}
.x96{left:404.021310px;}
.x86{left:411.674446px;}
.x9c{left:414.311181px;}
.x34{left:416.351400px;}
.xb{left:417.968400px;}
.x81{left:419.667546px;}
.xad{left:421.113896px;}
.xc{left:423.496050px;}
.x13{left:424.601550px;}
.x3{left:428.428200px;}
.x14{left:430.129050px;}
.x9e{left:432.253357px;}
.x18{left:438.206623px;}
.x4{left:442.289700px;}
.xab{left:443.649614px;}
.xb5{left:446.965173px;}
.x79{left:449.175750px;}
.x75{left:457.595250px;}
.x7a{left:458.700750px;}
.x72{left:462.102750px;}
.x49{left:463.632750px;}
.x2b{left:466.353750px;}
.x45{left:469.500750px;}
.x73{left:473.582250px;}
.x99{left:475.623214px;}
.x28{left:477.579750px;}
.x55{left:484.127250px;}
.xae{left:485.317893px;}
.x8a{left:487.358700px;}
.x71{left:490.590750px;}
.x44{left:495.096750px;}
.x64{left:497.138250px;}
.x74{left:500.964750px;}
.x89{left:503.516498px;}
.x15{left:505.984200px;}
.x26{left:507.512250px;}
.x66{left:509.553750px;}
.xbb{left:510.999972px;}
.x97{left:512.870749px;}
.x82{left:515.591947px;}
.x76{left:517.887750px;}
.x8d{left:519.759495px;}
.x56{left:522.224250px;}
.x7b{left:523.329750px;}
.xd{left:530.815650px;}
.x4e{left:537.446250px;}
.xb4{left:539.487616px;}
.x7c{left:541.613250px;}
.x94{left:542.889574px;}
.xa8{left:551.648264px;}
.xbc{left:554.030234px;}
.xb2{left:555.560215px;}
.xb9{left:557.940986px;}
.xba{left:559.301768px;}
.x42{left:560.661750px;}
.xb6{left:562.193732px;}
.x16{left:563.469457px;}
.x84{left:565.424924px;}
.x67{left:568.910250px;}
.x1f{left:570.101850px;}
.x1c{left:571.377358px;}
.x8e{left:579.456348px;}
.xc3{left:581.581890px;}
.x9b{left:584.218257px;}
.x4b{left:587.193750px;}
.x52{left:588.302250px;}
.x39{left:590.936250px;}
.x5{left:593.064450px;}
.x43{left:596.804250px;}
.x6{left:598.677150px;}
.x4d{left:600.204750px;}
.xe{left:607.861350px;}
.x70{left:611.855250px;}
.xf{left:613.388850px;}
.xbd{left:614.661876px;}
.x6e{left:616.532794px;}
.x85{left:618.063466px;}
.x8b{left:620.530635px;}
.x6c{left:623.760750px;}
.x5a{left:625.121250px;}
.x83{left:627.418549px;}
.x8f{left:631.160102px;}
.x92{left:632.606084px;}
.xa7{left:636.432004px;}
.x7d{left:642.639750px;}
.x19{left:644.766041px;}
.x88{left:646.211514px;}
.xa0{left:648.763050px;}
.xb8{left:653.950585px;}
.x8c{left:659.137752px;}
.xb7{left:667.896811px;}
.x6f{left:670.956750px;}
.xa2{left:675.294719px;}
.x80{left:678.781507px;}
.xa9{left:683.374218px;}
.xa6{left:688.816150px;}
.x3e{left:693.833250px;}
.x40{left:695.707050px;}
.x59{left:696.894750px;}
.xc1{left:699.956810px;}
.x54{left:702.510150px;}
.x41{left:704.381100px;}
.x20{left:707.355000px;}
.x47{left:709.055250px;}
.x58{left:713.732250px;}
.xb0{left:720.620552px;}
.x77{left:724.532250px;}
.x7{left:728.617200px;}
.x8{left:734.144850px;}
.x93{left:736.267988px;}
.x98{left:740.945898px;}
.x87{left:744.091890px;}
.x57{left:745.706250px;}
.x37{left:749.196750px;}
.x95{left:752.000160px;}
.x3f{left:753.104250px;}
.x4a{left:754.466250px;}
.xa3{left:756.677701px;}
.x38{left:759.911700px;}
.x27{left:761.948250px;}
.x10{left:765.609150px;}
.x90{left:771.133552px;}
.x9d{left:783.719363px;}
.x2c{left:789.845550px;}
.x1a{left:791.458207px;}
.xa4{left:794.520428px;}
.x69{left:796.475250px;}
.x2d{left:800.475450px;}
.xb3{left:802.343130px;}
.x1e{left:803.619450px;}
.xc2{left:806.595877px;}
.xc0{left:808.296256px;}
.x4c{left:811.611750px;}
.xa5{left:815.610165px;}
.x11{left:823.946400px;}
.xbe{left:828.280806px;}
.x12{left:829.473900px;}
.x2e{left:834.746400px;}
.x3a{left:837.974250px;}
.x68{left:843.075750px;}
.x9a{left:844.607802px;}
.x46{left:846.137250px;}
.x9{left:850.733850px;}
.xa{left:856.261350px;}
@media print{
.v4{vertical-align:-9.369483pt;}
.v2{vertical-align:-2.720000pt;}
.v1{vertical-align:-0.902400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.420800pt;}
.lse{letter-spacing:-1.123200pt;}
.ls12{letter-spacing:-1.067200pt;}
.ls15{letter-spacing:-1.066653pt;}
.ls30{letter-spacing:-0.800000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.213331pt;}
.ls13{letter-spacing:-0.212800pt;}
.lsf{letter-spacing:-0.211200pt;}
.ls1b{letter-spacing:-0.211198pt;}
.ls27{letter-spacing:-0.190548pt;}
.ls11{letter-spacing:-0.188775pt;}
.ls1c{letter-spacing:-0.188423pt;}
.ls10{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.264530pt;}
.ls24{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.682658pt;}
.ls2b{letter-spacing:0.686925pt;}
.ls23{letter-spacing:0.698667pt;}
.ls17{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.908789pt;}
.ls2c{letter-spacing:0.985588pt;}
.ls18{letter-spacing:1.002667pt;}
.ls16{letter-spacing:1.008000pt;}
.ls1e{letter-spacing:1.894376pt;}
.ls1d{letter-spacing:2.193039pt;}
.ls1a{letter-spacing:2.423436pt;}
.ls20{letter-spacing:2.517333pt;}
.ls25{letter-spacing:2.603733pt;}
.ls28{letter-spacing:2.604267pt;}
.ls1f{letter-spacing:3.120000pt;}
.ls2e{letter-spacing:3.125333pt;}
.ls32{letter-spacing:3.933817pt;}
.ls3{letter-spacing:4.232480pt;}
.ls5{letter-spacing:4.236747pt;}
.ls35{letter-spacing:4.535410pt;}
.ls34{letter-spacing:4.539677pt;}
.ls36{letter-spacing:4.842606pt;}
.ls0{letter-spacing:4.876800pt;}
.ls9{letter-spacing:4.899467pt;}
.ls8{letter-spacing:5.198400pt;}
.lsa{letter-spacing:5.203467pt;}
.ls1{letter-spacing:6.388800pt;}
.ls38{letter-spacing:6.954580pt;}
.ls37{letter-spacing:6.958846pt;}
.lsc{letter-spacing:7.790836pt;}
.ls7{letter-spacing:8.930022pt;}
.ls29{letter-spacing:11.093333pt;}
.ls21{letter-spacing:11.680000pt;}
.ls2d{letter-spacing:11.738667pt;}
.ls19{letter-spacing:11.797333pt;}
.ls2f{letter-spacing:11.888000pt;}
.ls22{letter-spacing:12.192000pt;}
.ls31{letter-spacing:13.610497pt;}
.ls2{letter-spacing:18.474436pt;}
.ls4{letter-spacing:18.478702pt;}
.ls6{letter-spacing:18.777365pt;}
.ws36{word-spacing:-23.346908pt;}
.ws11f{word-spacing:-17.772652pt;}
.wsc1{word-spacing:-15.280000pt;}
.ws5{word-spacing:-13.488000pt;}
.ws173{word-spacing:-12.253713pt;}
.ws75{word-spacing:-12.213333pt;}
.ws13d{word-spacing:-11.989183pt;}
.ws14{word-spacing:-11.775853pt;}
.ws38{word-spacing:-10.666533pt;}
.ws9e{word-spacing:-9.770545pt;}
.ws40{word-spacing:-9.599880pt;}
.wsc0{word-spacing:-3.763169pt;}
.ws172{word-spacing:-3.673554pt;}
.ws110{word-spacing:-3.628770pt;}
.ws16f{word-spacing:-3.571155pt;}
.ws174{word-spacing:-3.336492pt;}
.ws17e{word-spacing:-3.323692pt;}
.ws16e{word-spacing:-3.302359pt;}
.ws155{word-spacing:-3.251159pt;}
.ws181{word-spacing:-3.225560pt;}
.ws182{word-spacing:-3.187160pt;}
.ws17{word-spacing:-3.178627pt;}
.ws175{word-spacing:-3.170094pt;}
.ws17a{word-spacing:-3.161560pt;}
.ws1b{word-spacing:-3.123161pt;}
.ws171{word-spacing:-3.114628pt;}
.ws187{word-spacing:-3.110361pt;}
.ws17d{word-spacing:-3.101828pt;}
.ws135{word-spacing:-3.084761pt;}
.ws26{word-spacing:-3.075467pt;}
.ws154{word-spacing:-3.067695pt;}
.ws166{word-spacing:-3.063428pt;}
.ws170{word-spacing:-3.042095pt;}
.ws25{word-spacing:-3.024800pt;}
.ws6{word-spacing:-3.019200pt;}
.ws17b{word-spacing:-3.016496pt;}
.ws2f{word-spacing:-3.014667pt;}
.ws168{word-spacing:-3.007962pt;}
.ws16d{word-spacing:-2.995163pt;}
.ws146{word-spacing:-2.982363pt;}
.ws136{word-spacing:-2.978096pt;}
.ws7{word-spacing:-2.971200pt;}
.ws131{word-spacing:-2.969563pt;}
.ws177{word-spacing:-2.965296pt;}
.ws24{word-spacing:-2.958933pt;}
.ws27{word-spacing:-2.953867pt;}
.ws165{word-spacing:-2.952496pt;}
.ws148{word-spacing:-2.948230pt;}
.ws8{word-spacing:-2.947200pt;}
.ws14d{word-spacing:-2.943963pt;}
.ws10{word-spacing:-2.939697pt;}
.ws16c{word-spacing:-2.935430pt;}
.ws21{word-spacing:-2.931163pt;}
.ws16b{word-spacing:-2.922630pt;}
.ws2c{word-spacing:-2.918400pt;}
.ws130{word-spacing:-2.914097pt;}
.ws149{word-spacing:-2.905564pt;}
.ws1a{word-spacing:-2.901297pt;}
.ws14c{word-spacing:-2.897030pt;}
.ws23{word-spacing:-2.893067pt;}
.ws137{word-spacing:-2.892764pt;}
.ws19b{word-spacing:-2.884231pt;}
.ws14e{word-spacing:-2.879964pt;}
.ws20{word-spacing:-2.875697pt;}
.ws18a{word-spacing:-2.871431pt;}
.ws150{word-spacing:-2.867164pt;}
.ws145{word-spacing:-2.858631pt;}
.ws1c{word-spacing:-2.854364pt;}
.wsa{word-spacing:-2.851200pt;}
.ws15f{word-spacing:-2.850098pt;}
.ws142{word-spacing:-2.845831pt;}
.ws138{word-spacing:-2.841564pt;}
.ws186{word-spacing:-2.833031pt;}
.ws2e{word-spacing:-2.832267pt;}
.ws13{word-spacing:-2.828765pt;}
.ws28{word-spacing:-2.827200pt;}
.ws11{word-spacing:-2.824498pt;}
.ws15d{word-spacing:-2.820231pt;}
.wsf4{word-spacing:-2.815965pt;}
.ws161{word-spacing:-2.811698pt;}
.ws180{word-spacing:-2.807432pt;}
.ws31{word-spacing:-2.806933pt;}
.ws167{word-spacing:-2.803165pt;}
.ws139{word-spacing:-2.798898pt;}
.ws188{word-spacing:-2.794632pt;}
.ws163{word-spacing:-2.786099pt;}
.wse{word-spacing:-2.781832pt;}
.ws33{word-spacing:-2.777565pt;}
.wsd{word-spacing:-2.774400pt;}
.ws18e{word-spacing:-2.773299pt;}
.ws179{word-spacing:-2.769032pt;}
.ws16a{word-spacing:-2.764765pt;}
.ws178{word-spacing:-2.760499pt;}
.ws191{word-spacing:-2.756232pt;}
.ws4{word-spacing:-2.755200pt;}
.ws176{word-spacing:-2.751966pt;}
.ws9{word-spacing:-2.750400pt;}
.ws13f{word-spacing:-2.747699pt;}
.ws1e{word-spacing:-2.743432pt;}
.ws15e{word-spacing:-2.739166pt;}
.ws18b{word-spacing:-2.734899pt;}
.ws196{word-spacing:-2.730633pt;}
.ws198{word-spacing:-2.726366pt;}
.ws32{word-spacing:-2.720800pt;}
.ws159{word-spacing:-2.717833pt;}
.ws134{word-spacing:-2.713566pt;}
.ws14a{word-spacing:-2.709299pt;}
.ws153{word-spacing:-2.705033pt;}
.ws199{word-spacing:-2.692233pt;}
.ws190{word-spacing:-2.687966pt;}
.ws162{word-spacing:-2.683700pt;}
.ws16{word-spacing:-2.679433pt;}
.ws2{word-spacing:-2.678400pt;}
.ws14f{word-spacing:-2.675167pt;}
.wsb{word-spacing:-2.673600pt;}
.ws194{word-spacing:-2.670900pt;}
.wsc{word-spacing:-2.668800pt;}
.ws13a{word-spacing:-2.666633pt;}
.ws2d{word-spacing:-2.660000pt;}
.ws197{word-spacing:-2.658100pt;}
.ws1f{word-spacing:-2.653833pt;}
.ws140{word-spacing:-2.649567pt;}
.ws160{word-spacing:-2.645300pt;}
.ws158{word-spacing:-2.641034pt;}
.ws184{word-spacing:-2.636767pt;}
.ws183{word-spacing:-2.632500pt;}
.ws141{word-spacing:-2.628234pt;}
.ws14b{word-spacing:-2.623967pt;}
.ws185{word-spacing:-2.619701pt;}
.ws143{word-spacing:-2.615434pt;}
.ws30{word-spacing:-2.614400pt;}
.ws15a{word-spacing:-2.611167pt;}
.ws156{word-spacing:-2.602634pt;}
.ws152{word-spacing:-2.598368pt;}
.ws13e{word-spacing:-2.594101pt;}
.ws13b{word-spacing:-2.589834pt;}
.ws22{word-spacing:-2.589067pt;}
.ws144{word-spacing:-2.585568pt;}
.ws29{word-spacing:-2.584000pt;}
.ws12e{word-spacing:-2.581301pt;}
.ws133{word-spacing:-2.572768pt;}
.ws2a{word-spacing:-2.568800pt;}
.ws195{word-spacing:-2.564235pt;}
.ws19{word-spacing:-2.555701pt;}
.ws1{word-spacing:-2.553600pt;}
.ws18c{word-spacing:-2.547168pt;}
.ws169{word-spacing:-2.542902pt;}
.ws18d{word-spacing:-2.534368pt;}
.ws192{word-spacing:-2.530102pt;}
.ws15{word-spacing:-2.517302pt;}
.wsf{word-spacing:-2.513035pt;}
.ws3{word-spacing:-2.505600pt;}
.ws35{word-spacing:-2.500235pt;}
.ws164{word-spacing:-2.495969pt;}
.ws2b{word-spacing:-2.487733pt;}
.ws157{word-spacing:-2.478902pt;}
.ws151{word-spacing:-2.474636pt;}
.ws12f{word-spacing:-2.470369pt;}
.ws18f{word-spacing:-2.466103pt;}
.ws15c{word-spacing:-2.461836pt;}
.ws1d{word-spacing:-2.457569pt;}
.ws13c{word-spacing:-2.449036pt;}
.ws12{word-spacing:-2.444769pt;}
.ws18{word-spacing:-2.440503pt;}
.ws17f{word-spacing:-2.414903pt;}
.ws17c{word-spacing:-2.402103pt;}
.ws193{word-spacing:-2.397837pt;}
.ws132{word-spacing:-2.389303pt;}
.ws0{word-spacing:-2.355171pt;}
.ws19a{word-spacing:-2.342371pt;}
.ws189{word-spacing:-2.299705pt;}
.wsd1{word-spacing:-0.912000pt;}
.ws10f{word-spacing:-0.853333pt;}
.ws94{word-spacing:-0.816000pt;}
.ws4f{word-spacing:-0.814923pt;}
.ws8b{word-spacing:-0.797857pt;}
.wsf9{word-spacing:-0.794667pt;}
.ws4a{word-spacing:-0.793590pt;}
.ws46{word-spacing:-0.780790pt;}
.wsc9{word-spacing:-0.778667pt;}
.ws65{word-spacing:-0.768000pt;}
.ws88{word-spacing:-0.763724pt;}
.ws82{word-spacing:-0.762667pt;}
.ws3f{word-spacing:-0.759457pt;}
.ws56{word-spacing:-0.742391pt;}
.ws51{word-spacing:-0.725324pt;}
.wsde{word-spacing:-0.712524pt;}
.ws95{word-spacing:-0.709333pt;}
.wseb{word-spacing:-0.708258pt;}
.ws44{word-spacing:-0.703991pt;}
.wse7{word-spacing:-0.695458pt;}
.ws93{word-spacing:-0.693333pt;}
.ws43{word-spacing:-0.691191pt;}
.ws3e{word-spacing:-0.686925pt;}
.wsef{word-spacing:-0.678392pt;}
.ws58{word-spacing:-0.674125pt;}
.ws120{word-spacing:-0.666667pt;}
.ws48{word-spacing:-0.661325pt;}
.ws54{word-spacing:-0.657058pt;}
.ws4b{word-spacing:-0.648525pt;}
.wscc{word-spacing:-0.645333pt;}
.ws39{word-spacing:-0.644259pt;}
.ws3d{word-spacing:-0.635725pt;}
.ws96{word-spacing:-0.629333pt;}
.ws89{word-spacing:-0.627192pt;}
.ws8a{word-spacing:-0.610126pt;}
.wse0{word-spacing:-0.605859pt;}
.ws84{word-spacing:-0.601592pt;}
.ws50{word-spacing:-0.597326pt;}
.wsf2{word-spacing:-0.588793pt;}
.ws85{word-spacing:-0.575993pt;}
.ws66{word-spacing:-0.570667pt;}
.ws45{word-spacing:-0.567460pt;}
.ws81{word-spacing:-0.565333pt;}
.ws53{word-spacing:-0.563193pt;}
.ws37{word-spacing:-0.554660pt;}
.wsd2{word-spacing:-0.549333pt;}
.ws52{word-spacing:-0.541860pt;}
.ws3c{word-spacing:-0.537593pt;}
.ws109{word-spacing:-0.522667pt;}
.ws87{word-spacing:-0.520527pt;}
.ws108{word-spacing:-0.512000pt;}
.ws41{word-spacing:-0.507727pt;}
.ws74{word-spacing:-0.506667pt;}
.ws3a{word-spacing:-0.499194pt;}
.wsd0{word-spacing:-0.496000pt;}
.ws91{word-spacing:-0.485333pt;}
.ws55{word-spacing:-0.482127pt;}
.wsbc{word-spacing:-0.474667pt;}
.wsbd{word-spacing:-0.469333pt;}
.ws49{word-spacing:-0.469327pt;}
.wsea{word-spacing:-0.465061pt;}
.ws47{word-spacing:-0.460794pt;}
.ws5f{word-spacing:-0.453333pt;}
.wse1{word-spacing:-0.452261pt;}
.wse9{word-spacing:-0.448060pt;}
.ws9a{word-spacing:-0.448000pt;}
.wse2{word-spacing:-0.447527pt;}
.ws4c{word-spacing:-0.439461pt;}
.ws106{word-spacing:-0.421333pt;}
.ws4e{word-spacing:-0.418128pt;}
.ws80{word-spacing:-0.416000pt;}
.wsf0{word-spacing:-0.413861pt;}
.wsd3{word-spacing:-0.410667pt;}
.ws86{word-spacing:-0.409595pt;}
.wsf1{word-spacing:-0.409403pt;}
.wsc6{word-spacing:-0.405333pt;}
.wse8{word-spacing:-0.401062pt;}
.ws10c{word-spacing:-0.394667pt;}
.wse3{word-spacing:-0.392528pt;}
.ws6b{word-spacing:-0.384000pt;}
.ws64{word-spacing:-0.378667pt;}
.wsb9{word-spacing:-0.368000pt;}
.ws98{word-spacing:-0.362667pt;}
.wsb8{word-spacing:-0.352000pt;}
.ws90{word-spacing:-0.346667pt;}
.ws68{word-spacing:-0.341333pt;}
.ws5a{word-spacing:-0.336000pt;}
.ws9d{word-spacing:-0.332796pt;}
.ws73{word-spacing:-0.330667pt;}
.ws9b{word-spacing:-0.325333pt;}
.ws7c{word-spacing:-0.320000pt;}
.wsfb{word-spacing:-0.319996pt;}
.ws67{word-spacing:-0.314667pt;}
.wsa1{word-spacing:-0.309333pt;}
.ws63{word-spacing:-0.304000pt;}
.wscf{word-spacing:-0.298667pt;}
.ws4d{word-spacing:-0.298663pt;}
.wsc7{word-spacing:-0.293333pt;}
.wsb0{word-spacing:-0.288000pt;}
.ws99{word-spacing:-0.282667pt;}
.ws6d{word-spacing:-0.277333pt;}
.wsf3{word-spacing:-0.277330pt;}
.ws57{word-spacing:-0.273063pt;}
.wsad{word-spacing:-0.272000pt;}
.wsbf{word-spacing:-0.266667pt;}
.ws7a{word-spacing:-0.261333pt;}
.ws42{word-spacing:-0.260263pt;}
.ws8e{word-spacing:-0.256000pt;}
.ws69{word-spacing:-0.250667pt;}
.ws5c{word-spacing:-0.245333pt;}
.ws7f{word-spacing:-0.240000pt;}
.ws97{word-spacing:-0.234667pt;}
.wsb7{word-spacing:-0.229333pt;}
.wsaf{word-spacing:-0.224000pt;}
.ws6f{word-spacing:-0.218667pt;}
.wsfe{word-spacing:-0.217597pt;}
.ws70{word-spacing:-0.213333pt;}
.ws5d{word-spacing:-0.208000pt;}
.ws6c{word-spacing:-0.202667pt;}
.ws76{word-spacing:-0.197333pt;}
.ws10a{word-spacing:-0.192000pt;}
.ws77{word-spacing:-0.186667pt;}
.wsa4{word-spacing:-0.181333pt;}
.wsb6{word-spacing:-0.176000pt;}
.ws71{word-spacing:-0.170667pt;}
.ws6e{word-spacing:-0.165333pt;}
.ws60{word-spacing:-0.160000pt;}
.ws78{word-spacing:-0.154667pt;}
.wsae{word-spacing:-0.149333pt;}
.wsed{word-spacing:-0.149331pt;}
.wsd5{word-spacing:-0.144000pt;}
.wsdc{word-spacing:-0.140798pt;}
.ws8c{word-spacing:-0.138667pt;}
.wse5{word-spacing:-0.136532pt;}
.ws9f{word-spacing:-0.133333pt;}
.wsbe{word-spacing:-0.128000pt;}
.wsa2{word-spacing:-0.122667pt;}
.wsdf{word-spacing:-0.115199pt;}
.wsc2{word-spacing:-0.112000pt;}
.wsd9{word-spacing:-0.110932pt;}
.wsa0{word-spacing:-0.106667pt;}
.wsdb{word-spacing:-0.106665pt;}
.ws3b{word-spacing:-0.102399pt;}
.wsac{word-spacing:-0.101333pt;}
.ws62{word-spacing:-0.090667pt;}
.wsfa{word-spacing:-0.089599pt;}
.wsb3{word-spacing:-0.085333pt;}
.ws10e{word-spacing:-0.085332pt;}
.wsa7{word-spacing:-0.080000pt;}
.wsa6{word-spacing:-0.074667pt;}
.wsda{word-spacing:-0.072532pt;}
.ws107{word-spacing:-0.069333pt;}
.ws8f{word-spacing:-0.064000pt;}
.wsb4{word-spacing:-0.058667pt;}
.wsa9{word-spacing:-0.053333pt;}
.ws7b{word-spacing:-0.048000pt;}
.ws72{word-spacing:-0.042667pt;}
.ws83{word-spacing:-0.037333pt;}
.ws104{word-spacing:-0.034133pt;}
.ws7e{word-spacing:-0.032000pt;}
.ws79{word-spacing:-0.026667pt;}
.wscd{word-spacing:-0.021333pt;}
.wsb1{word-spacing:-0.016000pt;}
.wsc4{word-spacing:-0.010667pt;}
.wsec{word-spacing:-0.004267pt;}
.ws59{word-spacing:0.000000pt;}
.wsb5{word-spacing:0.021333pt;}
.ws9c{word-spacing:0.029866pt;}
.wsb2{word-spacing:0.032000pt;}
.wsf5{word-spacing:0.037333pt;}
.wsd7{word-spacing:0.042667pt;}
.wsba{word-spacing:0.048000pt;}
.ws6a{word-spacing:0.053333pt;}
.wsdd{word-spacing:0.055466pt;}
.wsf7{word-spacing:0.058667pt;}
.ws105{word-spacing:0.064000pt;}
.wsd4{word-spacing:0.074667pt;}
.wsf6{word-spacing:0.085333pt;}
.wsc3{word-spacing:0.090667pt;}
.ws128{word-spacing:0.096000pt;}
.ws5e{word-spacing:0.101333pt;}
.wsce{word-spacing:0.106667pt;}
.ws8d{word-spacing:0.112000pt;}
.wsa5{word-spacing:0.117333pt;}
.ws5b{word-spacing:0.122667pt;}
.wsc8{word-spacing:0.128000pt;}
.wsca{word-spacing:0.138667pt;}
.ws10d{word-spacing:0.145065pt;}
.wsd8{word-spacing:0.160000pt;}
.wse6{word-spacing:0.162131pt;}
.ws92{word-spacing:0.165333pt;}
.wsd6{word-spacing:0.170667pt;}
.wsf8{word-spacing:0.181333pt;}
.wsa8{word-spacing:0.186667pt;}
.wsff{word-spacing:0.187731pt;}
.ws102{word-spacing:0.200531pt;}
.wsbb{word-spacing:0.202667pt;}
.wscb{word-spacing:0.213333pt;}
.ws10b{word-spacing:0.218667pt;}
.ws115{word-spacing:0.224000pt;}
.ws61{word-spacing:0.229333pt;}
.wsc5{word-spacing:0.240000pt;}
.ws114{word-spacing:0.245333pt;}
.ws7d{word-spacing:0.266667pt;}
.wsee{word-spacing:0.277330pt;}
.ws11c{word-spacing:0.282667pt;}
.ws12c{word-spacing:0.304000pt;}
.wsab{word-spacing:0.307197pt;}
.ws117{word-spacing:0.309333pt;}
.ws11e{word-spacing:0.330667pt;}
.wse4{word-spacing:0.332796pt;}
.wsaa{word-spacing:0.341333pt;}
.wsa3{word-spacing:0.346667pt;}
.ws111{word-spacing:0.362667pt;}
.ws112{word-spacing:0.368000pt;}
.ws119{word-spacing:0.378667pt;}
.ws113{word-spacing:0.426667pt;}
.ws116{word-spacing:0.432000pt;}
.ws118{word-spacing:0.469333pt;}
.ws129{word-spacing:0.576000pt;}
.ws122{word-spacing:0.592000pt;}
.ws126{word-spacing:0.629333pt;}
.ws123{word-spacing:0.677333pt;}
.ws11d{word-spacing:0.736000pt;}
.ws127{word-spacing:0.752000pt;}
.ws125{word-spacing:0.800000pt;}
.ws124{word-spacing:0.869333pt;}
.ws12a{word-spacing:0.901333pt;}
.ws12b{word-spacing:0.906667pt;}
.ws11a{word-spacing:0.912000pt;}
.ws121{word-spacing:1.029333pt;}
.ws11b{word-spacing:1.194667pt;}
.ws34{word-spacing:30.745216pt;}
.ws147{word-spacing:41.637880pt;}
.ws15b{word-spacing:41.642146pt;}
.ws12d{word-spacing:41.697612pt;}
.wsfd{word-spacing:140.418511pt;}
.ws103{word-spacing:143.029679pt;}
.wsfc{word-spacing:148.725608pt;}
.ws101{word-spacing:150.577318pt;}
.ws100{word-spacing:186.280338pt;}
._c{margin-left:-23.729067pt;}
._a{margin-left:-18.435136pt;}
._2c{margin-left:-12.902239pt;}
._7{margin-left:-3.925284pt;}
._b{margin-left:-2.943963pt;}
._0{margin-left:-0.989854pt;}
._5{width:1.094400pt;}
._2{width:8.098032pt;}
._3{width:9.924143pt;}
._8{width:11.205333pt;}
._4{width:12.342400pt;}
._9{width:13.285333pt;}
._2d{width:17.834444pt;}
._e{width:18.756032pt;}
._1{width:22.243200pt;}
._25{width:152.800223pt;}
._20{width:167.891235pt;}
._12{width:381.196302pt;}
._28{width:389.251668pt;}
._1f{width:398.983813pt;}
._21{width:404.355479pt;}
._1b{width:411.911651pt;}
._1e{width:424.310429pt;}
._23{width:429.302367pt;}
._29{width:431.853802pt;}
._24{width:434.563101pt;}
._1d{width:435.868685pt;}
._22{width:439.124111pt;}
._26{width:441.846210pt;}
._2a{width:446.151223pt;}
._10{width:453.357533pt;}
._19{width:477.498031pt;}
._2b{width:495.848735pt;}
._27{width:514.643167pt;}
._f{width:521.593480pt;}
._13{width:728.349296pt;}
._14{width:738.627567pt;}
._15{width:797.135636pt;}
._16{width:807.375508pt;}
._11{width:822.009991pt;}
._17{width:828.196581pt;}
._18{width:864.411595pt;}
._1a{width:898.190372pt;}
._d{width:1382.847781pt;}
._6{width:1405.196301pt;}
._1c{width:2057.156152pt;}
.fs9{font-size:28.440000pt;}
.fsa{font-size:29.865600pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.551467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:63.999467pt;}
.fs4{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:48.000000pt;}
.yc9{bottom:106.356283pt;}
.y1dc{bottom:110.666400pt;}
.yf0{bottom:110.666667pt;}
.y5c{bottom:110.666990pt;}
.y28e{bottom:110.668834pt;}
.y14e{bottom:110.669067pt;}
.y120{bottom:110.670000pt;}
.y166{bottom:111.200133pt;}
.y1dd{bottom:111.346400pt;}
.y17b{bottom:111.951200pt;}
.y17c{bottom:112.632533pt;}
.y1b5{bottom:112.859867pt;}
.y246{bottom:117.319200pt;}
.y211{bottom:118.682133pt;}
.y97{bottom:121.474533pt;}
.y33e{bottom:121.629092pt;}
.y98{bottom:122.155867pt;}
.y28b{bottom:123.367342pt;}
.y28c{bottom:123.594539pt;}
.y28d{bottom:123.670271pt;}
.y2f1{bottom:124.955983pt;}
.y5b{bottom:125.331340pt;}
.yc7{bottom:126.992825pt;}
.yc8{bottom:127.521885pt;}
.y1db{bottom:127.975733pt;}
.yef{bottom:127.977333pt;}
.y11f{bottom:127.979333pt;}
.y14d{bottom:127.979733pt;}
.y165{bottom:128.509467pt;}
.y17a{bottom:129.261867pt;}
.y1b4{bottom:130.245200pt;}
.y33d{bottom:134.328666pt;}
.y244{bottom:134.704533pt;}
.y245{bottom:135.384533pt;}
.y288{bottom:135.991184pt;}
.y210{bottom:135.992800pt;}
.y289{bottom:136.217314pt;}
.y28a{bottom:136.368779pt;}
.y2f0{bottom:137.654491pt;}
.y96{bottom:138.785200pt;}
.yc5{bottom:139.691333pt;}
.y5a{bottom:139.995690pt;}
.yc6{bottom:140.220393pt;}
.y1e9{bottom:144.831750pt;}
.y1da{bottom:145.361067pt;}
.yee{bottom:145.362667pt;}
.y14c{bottom:145.365067pt;}
.y11e{bottom:145.366000pt;}
.y18c{bottom:145.512150pt;}
.y164{bottom:145.894800pt;}
.y179{bottom:146.572533pt;}
.y33c{bottom:146.952509pt;}
.y1b3{bottom:147.555867pt;}
.y193{bottom:147.628683pt;}
.y286{bottom:153.300834pt;}
.y20f{bottom:153.302133pt;}
.y287{bottom:153.679496pt;}
.y36{bottom:154.584533pt;}
.y59{bottom:154.661107pt;}
.y2ef{bottom:154.965208pt;}
.y95{bottom:156.095867pt;}
.y242{bottom:158.667200pt;}
.y243{bottom:159.347200pt;}
.y1d9{bottom:162.671733pt;}
.yed{bottom:162.672000pt;}
.y11d{bottom:162.675333pt;}
.y14b{bottom:162.675733pt;}
.y163{bottom:163.205467pt;}
.y1e5{bottom:163.885467pt;}
.y177{bottom:163.957867pt;}
.y33b{bottom:164.262159pt;}
.y178{bottom:164.637867pt;}
.y1b2{bottom:164.866533pt;}
.y1e8{bottom:165.468292pt;}
.y284{bottom:166.000409pt;}
.y18b{bottom:166.224424pt;}
.y285{bottom:166.227606pt;}
.y2ee{bottom:167.663716pt;}
.y192{bottom:168.340958pt;}
.y58{bottom:169.325457pt;}
.y34{bottom:173.255200pt;}
.y94{bottom:173.405200pt;}
.y35{bottom:173.632667pt;}
.y33a{bottom:176.961733pt;}
.y189{bottom:177.108533pt;}
.y1e6{bottom:178.166800pt;}
.y1e7{bottom:178.695860pt;}
.y20e{bottom:178.700800pt;}
.y18a{bottom:178.847200pt;}
.y188{bottom:178.848342pt;}
.y190{bottom:179.225067pt;}
.y1d8{bottom:179.982400pt;}
.yec{bottom:179.982667pt;}
.y11c{bottom:179.986000pt;}
.y14a{bottom:179.986400pt;}
.y162{bottom:180.516133pt;}
.y191{bottom:180.963733pt;}
.y18f{bottom:180.964183pt;}
.y175{bottom:181.267200pt;}
.y176{bottom:181.948533pt;}
.y1b1{bottom:182.251867pt;}
.y240{bottom:182.704533pt;}
.y282{bottom:183.310059pt;}
.y241{bottom:183.384533pt;}
.y283{bottom:183.688721pt;}
.y57{bottom:183.989807pt;}
.y2ed{bottom:184.974433pt;}
.y339{bottom:189.660241pt;}
.y93{bottom:190.790533pt;}
.y91{bottom:190.792400pt;}
.y187{bottom:191.546850pt;}
.y33{bottom:191.925867pt;}
.y18e{bottom:193.663758pt;}
.y280{bottom:196.009634pt;}
.y20d{bottom:196.011467pt;}
.y281{bottom:196.236831pt;}
.y92{bottom:196.686533pt;}
.y1d7{bottom:197.367733pt;}
.yeb{bottom:197.368000pt;}
.y11b{bottom:197.371333pt;}
.y149{bottom:197.371733pt;}
.y2ec{bottom:197.597209pt;}
.y160{bottom:197.901467pt;}
.y174{bottom:198.577867pt;}
.y161{bottom:198.581467pt;}
.y56{bottom:198.654157pt;}
.y1b0{bottom:199.561200pt;}
.y186{bottom:204.246424pt;}
.y18d{bottom:206.286533pt;}
.y23e{bottom:206.667200pt;}
.y338{bottom:206.970958pt;}
.y23f{bottom:207.347200pt;}
.y90{bottom:208.101733pt;}
.y2eb{bottom:210.296783pt;}
.y32{bottom:210.596533pt;}
.y27f{bottom:213.319284pt;}
.y1d6{bottom:214.677067pt;}
.yea{bottom:214.678667pt;}
.y148{bottom:214.681067pt;}
.y11a{bottom:214.682000pt;}
.y15f{bottom:215.210800pt;}
.y1e4{bottom:215.892133pt;}
.y173{bottom:215.963200pt;}
.y185{bottom:216.869200pt;}
.y1af{bottom:216.871867pt;}
.y337{bottom:219.594800pt;}
.y55{bottom:221.331207pt;}
.y20c{bottom:221.334133pt;}
.y8f{bottom:225.412400pt;}
.y27d{bottom:226.018858pt;}
.y27e{bottom:226.321788pt;}
.y2ea{bottom:227.607500pt;}
.y30{bottom:229.267200pt;}
.y31{bottom:229.645933pt;}
.y23c{bottom:230.704533pt;}
.y23d{bottom:231.384533pt;}
.ye9{bottom:231.989333pt;}
.y119{bottom:231.991333pt;}
.y147{bottom:231.991733pt;}
.y15e{bottom:232.521467pt;}
.y172{bottom:233.273867pt;}
.y1ae{bottom:234.257200pt;}
.y54{bottom:235.995557pt;}
.y336{bottom:236.980183pt;}
.y1d5{bottom:237.354267pt;}
.y27b{bottom:238.642701pt;}
.y20b{bottom:238.643467pt;}
.y27c{bottom:238.868831pt;}
.y2e9{bottom:240.306008pt;}
.y8e{bottom:242.797733pt;}
.y2f{bottom:247.939133pt;}
.ye8{bottom:249.298667pt;}
.y118{bottom:249.302000pt;}
.y146{bottom:249.302400pt;}
.y335{bottom:249.604025pt;}
.y15d{bottom:249.906800pt;}
.y171{bottom:250.584533pt;}
.y53{bottom:250.659907pt;}
.y1ad{bottom:251.567867pt;}
.y2e7{bottom:252.929850pt;}
.y2e8{bottom:253.307446pt;}
.y23a{bottom:254.665867pt;}
.y23b{bottom:255.195200pt;}
.y279{bottom:256.028083pt;}
.y20a{bottom:256.030133pt;}
.y27a{bottom:256.331013pt;}
.y8d{bottom:260.108400pt;}
.y333{bottom:262.302533pt;}
.y334{bottom:262.529730pt;}
.y2e{bottom:266.609800pt;}
.ye7{bottom:266.684000pt;}
.y117{bottom:266.687333pt;}
.y145{bottom:266.687733pt;}
.y15b{bottom:267.217467pt;}
.y15c{bottom:267.897467pt;}
.y170{bottom:267.969867pt;}
.y277{bottom:268.651926pt;}
.y1ac{bottom:268.878533pt;}
.y278{bottom:269.029521pt;}
.y2e6{bottom:270.315233pt;}
.y238{bottom:271.976533pt;}
.y239{bottom:272.732533pt;}
.y52{bottom:273.336957pt;}
.y8c{bottom:277.417733pt;}
.y332{bottom:279.613250pt;}
.y209{bottom:281.352800pt;}
.y2e4{bottom:282.939075pt;}
.y2e5{bottom:283.166272pt;}
.ye6{bottom:283.994667pt;}
.y116{bottom:283.998000pt;}
.y144{bottom:283.998400pt;}
.y15a{bottom:284.528133pt;}
.y1d4{bottom:285.208133pt;}
.y16f{bottom:285.279200pt;}
.y2c{bottom:285.280467pt;}
.y2d{bottom:285.657933pt;}
.y275{bottom:286.037308pt;}
.y1ab{bottom:286.263867pt;}
.y276{bottom:286.340238pt;}
.y51{bottom:288.001307pt;}
.y330{bottom:292.311758pt;}
.y331{bottom:292.614688pt;}
.y8b{bottom:294.803067pt;}
.y89{bottom:294.804000pt;}
.y236{bottom:296.013867pt;}
.y237{bottom:296.693867pt;}
.y272{bottom:298.661150pt;}
.y208{bottom:298.662133pt;}
.y274{bottom:298.888348pt;}
.y273{bottom:299.038746pt;}
.y2e2{bottom:300.324458pt;}
.y2e3{bottom:300.627388pt;}
.y8a{bottom:300.699200pt;}
.ye5{bottom:301.305333pt;}
.y143{bottom:301.307733pt;}
.y115{bottom:301.308667pt;}
.y159{bottom:301.837467pt;}
.y16d{bottom:302.589867pt;}
.y50{bottom:302.666723pt;}
.y16e{bottom:303.269867pt;}
.y1aa{bottom:303.573200pt;}
.y2b{bottom:303.951133pt;}
.y32d{bottom:304.935600pt;}
.y32f{bottom:305.313196pt;}
.y32e{bottom:307.279038pt;}
.y88{bottom:312.113333pt;}
.y86{bottom:312.117733pt;}
.y2e0{bottom:312.948300pt;}
.y2e1{bottom:313.325895pt;}
.y271{bottom:315.970801pt;}
.y207{bottom:315.972800pt;}
.y4f{bottom:317.331074pt;}
.y87{bottom:318.009333pt;}
.ye4{bottom:318.690667pt;}
.y142{bottom:318.693067pt;}
.y114{bottom:318.694000pt;}
.y158{bottom:319.222800pt;}
.y16b{bottom:319.900533pt;}
.y234{bottom:319.976533pt;}
.y16c{bottom:320.656533pt;}
.y235{bottom:320.732533pt;}
.y1a9{bottom:320.883867pt;}
.y32c{bottom:322.320983pt;}
.y2a{bottom:322.621800pt;}
.y270{bottom:328.670375pt;}
.y85{bottom:329.428400pt;}
.y2de{bottom:330.257951pt;}
.y2df{bottom:330.636612pt;}
.y4e{bottom:331.995424pt;}
.y32a{bottom:334.944825pt;}
.y32b{bottom:335.172022pt;}
.ye3{bottom:336.000000pt;}
.ye1{bottom:336.000800pt;}
.y113{bottom:336.003333pt;}
.y141{bottom:336.003733pt;}
.y157{bottom:336.533467pt;}
.y169{bottom:337.285867pt;}
.y16a{bottom:337.965867pt;}
.y1a7{bottom:338.194533pt;}
.y1a8{bottom:338.950533pt;}
.y29{bottom:341.216467pt;}
.y26f{bottom:341.369950pt;}
.y206{bottom:341.370133pt;}
.ye2{bottom:341.896000pt;}
.y2dc{bottom:342.957525pt;}
.y2dd{bottom:343.260455pt;}
.y232{bottom:344.013867pt;}
.y233{bottom:344.693867pt;}
.y4c{bottom:346.659774pt;}
.y84{bottom:346.813733pt;}
.y4d{bottom:346.886971pt;}
.y329{bottom:347.644400pt;}
.ydf{bottom:353.310133pt;}
.y112{bottom:353.314000pt;}
.y13f{bottom:353.314400pt;}
.y156{bottom:353.844133pt;}
.y140{bottom:353.994400pt;}
.y167{bottom:354.595200pt;}
.y168{bottom:355.275200pt;}
.y1a6{bottom:355.579867pt;}
.y2da{bottom:355.657100pt;}
.y2db{bottom:355.958963pt;}
.y26e{bottom:358.679600pt;}
.y205{bottom:358.680800pt;}
.ye0{bottom:359.281867pt;}
.y28{bottom:359.888400pt;}
.y326{bottom:360.268242pt;}
.y327{bottom:360.494373pt;}
.y328{bottom:360.645837pt;}
.y83{bottom:364.124400pt;}
.y230{bottom:367.975200pt;}
.y231{bottom:368.731200pt;}
.y4b{bottom:369.336823pt;}
.y110{bottom:370.699333pt;}
.y13e{bottom:370.699733pt;}
.y155{bottom:371.229467pt;}
.y26d{bottom:371.303442pt;}
.y111{bottom:371.380667pt;}
.y1a4{bottom:372.889200pt;}
.y2d8{bottom:372.966750pt;}
.y2d9{bottom:373.269680pt;}
.y1a5{bottom:373.570533pt;}
.yde{bottom:375.988467pt;}
.y204{bottom:375.991467pt;}
.y325{bottom:377.653625pt;}
.y27{bottom:378.559067pt;}
.y82{bottom:381.433733pt;}
.y26c{bottom:384.003017pt;}
.y2d6{bottom:385.666325pt;}
.y2d7{bottom:385.968187pt;}
.y13d{bottom:388.009067pt;}
.y10f{bottom:388.010000pt;}
.y154{bottom:388.540133pt;}
.y1d3{bottom:389.220133pt;}
.y1a2{bottom:390.199867pt;}
.y323{bottom:390.277467pt;}
.y324{bottom:390.655062pt;}
.y1a3{bottom:390.955867pt;}
.y22e{bottom:392.013867pt;}
.y4a{bottom:392.013873pt;}
.y184{bottom:392.617617pt;}
.y22f{bottom:392.693867pt;}
.y26a{bottom:396.701525pt;}
.y26b{bottom:397.004454pt;}
.y26{bottom:397.229733pt;}
.y80{bottom:398.744400pt;}
.y81{bottom:399.500400pt;}
.ydd{bottom:400.025067pt;}
.y203{bottom:401.314133pt;}
.y2d5{bottom:402.975975pt;}
.y10e{bottom:405.319333pt;}
.y13b{bottom:405.319733pt;}
.y153{bottom:405.849467pt;}
.y13c{bottom:405.999733pt;}
.y1a1{bottom:407.585200pt;}
.y322{bottom:407.662850pt;}
.y183{bottom:413.254159pt;}
.y269{bottom:414.012242pt;}
.y49{bottom:414.690923pt;}
.y2d3{bottom:415.599817pt;}
.y25{bottom:415.900400pt;}
.y22c{bottom:415.975200pt;}
.y2d4{bottom:415.977412pt;}
.y7f{bottom:416.129733pt;}
.y22d{bottom:416.731200pt;}
.y202{bottom:418.699467pt;}
.y31f{bottom:420.286692pt;}
.y320{bottom:420.512822pt;}
.y321{bottom:420.664287pt;}
.y13a{bottom:422.705067pt;}
.y10c{bottom:422.706000pt;}
.y152{bottom:423.234800pt;}
.y10d{bottom:423.386000pt;}
.y181{bottom:424.138533pt;}
.y19f{bottom:424.895867pt;}
.y1a0{bottom:425.575867pt;}
.y182{bottom:425.952667pt;}
.y180{bottom:425.953008pt;}
.y268{bottom:426.635017pt;}
.y2d2{bottom:432.985200pt;}
.y31e{bottom:433.212397pt;}
.y31d{bottom:433.288129pt;}
.y7d{bottom:433.440400pt;}
.y7e{bottom:434.120400pt;}
.y24{bottom:434.571067pt;}
.y48{bottom:437.367973pt;}
.y17f{bottom:438.576850pt;}
.y267{bottom:439.334592pt;}
.y22a{bottom:440.012533pt;}
.y10b{bottom:440.015333pt;}
.y139{bottom:440.015733pt;}
.ydc{bottom:440.545467pt;}
.y22b{bottom:440.692533pt;}
.y1e3{bottom:441.225467pt;}
.y19e{bottom:442.206533pt;}
.y201{bottom:444.022133pt;}
.y2d0{bottom:445.609042pt;}
.y2d1{bottom:445.986637pt;}
.y7c{bottom:450.749733pt;}
.y17e{bottom:451.276424pt;}
.y47{bottom:452.032323pt;}
.y23{bottom:453.241733pt;}
.y266{bottom:456.644242pt;}
.y10a{bottom:457.326000pt;}
.y138{bottom:457.326400pt;}
.ydb{bottom:457.856133pt;}
.y31b{bottom:458.308617pt;}
.y151{bottom:458.536133pt;}
.y31c{bottom:458.610479pt;}
.y19c{bottom:459.591867pt;}
.y19d{bottom:460.271867pt;}
.y200{bottom:461.331467pt;}
.y229{bottom:462.689733pt;}
.y2cf{bottom:462.994425pt;}
.y17d{bottom:463.899200pt;}
.y7b{bottom:468.135067pt;}
.y265{bottom:469.343817pt;}
.y22{bottom:471.912400pt;}
.y46{bottom:474.633641pt;}
.y137{bottom:474.635733pt;}
.y109{bottom:474.636667pt;}
.yda{bottom:475.241467pt;}
.y2ce{bottom:475.618267pt;}
.y150{bottom:475.921467pt;}
.y19a{bottom:476.901200pt;}
.y19b{bottom:477.582533pt;}
.y264{bottom:481.967659pt;}
.y7a{bottom:485.445733pt;}
.y1ff{bottom:486.654133pt;}
.y2cd{bottom:488.317841pt;}
.y31a{bottom:488.543972pt;}
.y319{bottom:488.619704pt;}
.y45{bottom:489.373723pt;}
.y21{bottom:490.583067pt;}
.y136{bottom:492.021067pt;}
.y108{bottom:492.022000pt;}
.yd9{bottom:492.550800pt;}
.y14f{bottom:493.232133pt;}
.y199{bottom:494.211867pt;}
.y263{bottom:499.353042pt;}
.y2cb{bottom:500.941684pt;}
.y2cc{bottom:501.167814pt;}
.y318{bottom:501.319279pt;}
.y79{bottom:502.756400pt;}
.yc4{bottom:503.509733pt;}
.y1fe{bottom:503.964800pt;}
.y44{bottom:504.038073pt;}
.y20{bottom:509.253733pt;}
.y107{bottom:509.331333pt;}
.y135{bottom:509.331733pt;}
.yd8{bottom:509.861467pt;}
.y1e2{bottom:510.541467pt;}
.y198{bottom:511.522533pt;}
.y262{bottom:511.976884pt;}
.y227{bottom:514.924933pt;}
.y228{bottom:515.604933pt;}
.y2c9{bottom:518.327066pt;}
.y2ca{bottom:518.628929pt;}
.y43{bottom:518.703490pt;}
.y78{bottom:520.141733pt;}
.yc3{bottom:520.820400pt;}
.y1fd{bottom:521.350133pt;}
.y261{bottom:524.675392pt;}
.y106{bottom:526.642000pt;}
.y134{bottom:526.642400pt;}
.yd7{bottom:527.172133pt;}
.y1f{bottom:527.924400pt;}
.y1e1{bottom:527.928133pt;}
.y196{bottom:528.907867pt;}
.y197{bottom:529.587867pt;}
.y2c7{bottom:530.950908pt;}
.y2c8{bottom:531.177039pt;}
.y317{bottom:531.328504pt;}
.y226{bottom:532.235600pt;}
.y42{bottom:533.367840pt;}
.y77{bottom:537.452400pt;}
.yc2{bottom:538.205733pt;}
.y1fc{bottom:538.660800pt;}
.y260{bottom:541.986109pt;}
.y2c5{bottom:543.649416pt;}
.y2c6{bottom:543.876614pt;}
.y105{bottom:544.027333pt;}
.y133{bottom:544.027733pt;}
.yd6{bottom:544.557467pt;}
.y194{bottom:546.217200pt;}
.y195{bottom:546.897200pt;}
.y40{bottom:548.032190pt;}
.y316{bottom:548.260559pt;}
.y41{bottom:548.334053pt;}
.y225{bottom:549.620933pt;}
.y25e{bottom:554.685683pt;}
.y76{bottom:554.761733pt;}
.y25f{bottom:554.987546pt;}
.yc0{bottom:555.516400pt;}
.y1fb{bottom:555.971467pt;}
.yc1{bottom:556.196400pt;}
.y2c2{bottom:556.273259pt;}
.y2c4{bottom:556.500456pt;}
.y2c3{bottom:556.650854pt;}
.y1e{bottom:557.253467pt;}
.y313{bottom:560.960133pt;}
.y315{bottom:561.186264pt;}
.y314{bottom:561.261996pt;}
.y104{bottom:561.338000pt;}
.y132{bottom:561.338400pt;}
.yd5{bottom:561.868133pt;}
.y3e{bottom:562.696540pt;}
.y3f{bottom:562.923737pt;}
.y224{bottom:566.930267pt;}
.y25d{bottom:571.995334pt;}
.y75{bottom:572.147067pt;}
.ybf{bottom:572.827067pt;}
.y1fa{bottom:573.356800pt;}
.y2c1{bottom:573.658641pt;}
.y312{bottom:578.269784pt;}
.y131{bottom:578.647733pt;}
.y103{bottom:578.648667pt;}
.yd4{bottom:579.177467pt;}
.y223{bottom:584.240933pt;}
.y3d{bottom:584.541600pt;}
.y25c{bottom:584.694908pt;}
.y2bf{bottom:586.282483pt;}
.y2c0{bottom:586.660079pt;}
.y1d2{bottom:588.550188pt;}
.y74{bottom:589.457733pt;}
.ybe{bottom:590.136400pt;}
.y30f{bottom:590.969358pt;}
.y311{bottom:591.195489pt;}
.y310{bottom:591.271221pt;}
.y130{bottom:596.033067pt;}
.y102{bottom:596.034000pt;}
.yd3{bottom:596.562800pt;}
.y1e0{bottom:597.244133pt;}
.y25b{bottom:597.317684pt;}
.y1f9{bottom:598.679467pt;}
.y2bc{bottom:598.982058pt;}
.y2bd{bottom:599.208189pt;}
.y2be{bottom:599.283921pt;}
.y222{bottom:601.626267pt;}
.y72{bottom:606.768400pt;}
.y73{bottom:607.448400pt;}
.ybc{bottom:607.521733pt;}
.ybd{bottom:608.203067pt;}
.y30d{bottom:608.279009pt;}
.y1d1{bottom:608.506206pt;}
.y30e{bottom:608.657670pt;}
.y1d{bottom:610.848733pt;}
.y2ba{bottom:611.604834pt;}
.y2bb{bottom:611.983496pt;}
.y101{bottom:613.343333pt;}
.y12f{bottom:613.343733pt;}
.yd2{bottom:613.873467pt;}
.y1df{bottom:614.553467pt;}
.y25a{bottom:614.704133pt;}
.y1f8{bottom:615.988800pt;}
.y221{bottom:618.936933pt;}
.y30b{bottom:620.978583pt;}
.y30c{bottom:621.204714pt;}
.y71{bottom:624.077733pt;}
.y2b7{bottom:624.304408pt;}
.y2b9{bottom:624.531605pt;}
.y2b8{bottom:624.606271pt;}
.ybb{bottom:624.832400pt;}
.y1cf{bottom:625.211064pt;}
.y1d0{bottom:625.740124pt;}
.y259{bottom:627.326909pt;}
.y100{bottom:630.654000pt;}
.y12e{bottom:630.654400pt;}
.yd1{bottom:631.184133pt;}
.y1f7{bottom:633.299467pt;}
.y308{bottom:633.602425pt;}
.y30a{bottom:633.980021pt;}
.y309{bottom:635.944796pt;}
.y21f{bottom:636.247600pt;}
.y220{bottom:636.927600pt;}
.y2b5{bottom:636.928250pt;}
.y2b6{bottom:637.305846pt;}
.y1c{bottom:637.532133pt;}
.y70{bottom:641.464400pt;}
.y1ce{bottom:641.841256pt;}
.yba{bottom:642.143067pt;}
.y258{bottom:644.637626pt;}
.y306{bottom:646.300933pt;}
.y307{bottom:646.603863pt;}
.y12d{bottom:647.963733pt;}
.yff{bottom:647.964667pt;}
.yd0{bottom:648.569467pt;}
.y1f6{bottom:650.684800pt;}
.y1a{bottom:650.835434pt;}
.y1b{bottom:651.213029pt;}
.y21d{bottom:653.632933pt;}
.y21e{bottom:654.312933pt;}
.y2b4{bottom:654.313633pt;}
.y257{bottom:657.336134pt;}
.y1cc{bottom:658.547180pt;}
.y6f{bottom:658.773733pt;}
.y304{bottom:658.924775pt;}
.y1cd{bottom:659.076240pt;}
.y305{bottom:659.302371pt;}
.yb9{bottom:659.528400pt;}
.y3c{bottom:661.796533pt;}
.y18{bottom:664.215533pt;}
.y19{bottom:664.517396pt;}
.y12c{bottom:665.349067pt;}
.yfe{bottom:665.350000pt;}
.ycf{bottom:665.880133pt;}
.y2b1{bottom:666.937475pt;}
.y2b3{bottom:667.163606pt;}
.y2b2{bottom:667.315071pt;}
.y255{bottom:670.035708pt;}
.y256{bottom:670.338638pt;}
.y21c{bottom:670.942267pt;}
.y1ca{bottom:675.176306pt;}
.y1cb{bottom:675.705366pt;}
.y1f5{bottom:676.007467pt;}
.y6e{bottom:676.084400pt;}
.y302{bottom:676.310158pt;}
.y303{bottom:676.613088pt;}
.yb8{bottom:676.837733pt;}
.y3b{bottom:677.140533pt;}
.y17{bottom:677.518833pt;}
.yfd{bottom:682.659333pt;}
.y12b{bottom:682.659733pt;}
.yce{bottom:683.189467pt;}
.y1de{bottom:683.869467pt;}
.y2b0{bottom:684.322858pt;}
.y254{bottom:687.346425pt;}
.y21a{bottom:688.252933pt;}
.y21b{bottom:688.932933pt;}
.y2ff{bottom:688.934000pt;}
.y300{bottom:689.161197pt;}
.y301{bottom:689.311596pt;}
.y16{bottom:690.823200pt;}
.y1c8{bottom:691.882230pt;}
.y3a{bottom:692.409867pt;}
.y1c9{bottom:692.411290pt;}
.y1f4{bottom:693.318133pt;}
.y6c{bottom:693.469733pt;}
.y6d{bottom:694.149733pt;}
.y2ad{bottom:696.946700pt;}
.y2af{bottom:697.172831pt;}
.y2ae{bottom:697.324295pt;}
.yb7{bottom:699.514933pt;}
.y253{bottom:699.969201pt;}
.yfc{bottom:699.970000pt;}
.y12a{bottom:699.970400pt;}
.ycd{bottom:700.500133pt;}
.y2fc{bottom:701.633575pt;}
.y2fe{bottom:701.935438pt;}
.y2fd{bottom:703.975946pt;}
.y14{bottom:704.202233pt;}
.y15{bottom:704.504096pt;}
.y219{bottom:705.563600pt;}
.y39{bottom:707.755200pt;}
.y1c7{bottom:708.511356pt;}
.y2aa{bottom:709.645208pt;}
.y2ac{bottom:709.872405pt;}
.y2ab{bottom:709.948138pt;}
.y1f3{bottom:710.703467pt;}
.y6a{bottom:710.780400pt;}
.y6b{bottom:711.460400pt;}
.y252{bottom:712.668775pt;}
.y2fb{bottom:714.332083pt;}
.yfb{bottom:717.355333pt;}
.y129{bottom:717.355733pt;}
.y13{bottom:717.506600pt;}
.ycc{bottom:717.885467pt;}
.y218{bottom:722.948933pt;}
.y38{bottom:723.099200pt;}
.y1c6{bottom:725.217280pt;}
.y2a8{bottom:726.955925pt;}
.y2a9{bottom:727.257788pt;}
.y1f2{bottom:728.014133pt;}
.y69{bottom:728.089733pt;}
.y251{bottom:729.978426pt;}
.y12{bottom:730.885633pt;}
.yfa{bottom:734.666000pt;}
.y128{bottom:734.666400pt;}
.yb6{bottom:735.196133pt;}
.y2a6{bottom:739.655500pt;}
.y2a7{bottom:739.881630pt;}
.y217{bottom:740.258267pt;}
.y1c4{bottom:741.847472pt;}
.y1c5{bottom:742.376532pt;}
.y250{bottom:742.678000pt;}
.y10{bottom:744.188933pt;}
.y2fa{bottom:744.265575pt;}
.y11{bottom:744.490796pt;}
.y1f1{bottom:745.323467pt;}
.y68{bottom:745.475067pt;}
.ya8{bottom:746.301671pt;}
.y127{bottom:751.975733pt;}
.yf9{bottom:751.976667pt;}
.yb5{bottom:752.505467pt;}
.y24f{bottom:755.301842pt;}
.y2a5{bottom:756.965150pt;}
.y2f9{bottom:757.192347pt;}
.y1c3{bottom:758.552330pt;}
.ya7{bottom:760.966021pt;}
.y1f0{bottom:762.634133pt;}
.y67{bottom:762.785733pt;}
.y216{bottom:762.935333pt;}
.yf{bottom:768.151067pt;}
.yd{bottom:768.151733pt;}
.y126{bottom:769.361067pt;}
.yf8{bottom:769.362000pt;}
.y2a3{bottom:769.664725pt;}
.yb4{bottom:769.890800pt;}
.y2a4{bottom:769.966587pt;}
.y24e{bottom:772.687225pt;}
.ye{bottom:773.518000pt;}
.y2f8{bottom:774.274800pt;}
.y1c2{bottom:775.182522pt;}
.y1ef{bottom:780.019467pt;}
.y66{bottom:780.096400pt;}
.y2a1{bottom:782.287500pt;}
.y2a2{bottom:782.590430pt;}
.ya{bottom:782.815733pt;}
.y8{bottom:782.816267pt;}
.yc{bottom:783.116933pt;}
.yb{bottom:783.192533pt;}
.ya6{bottom:783.643071pt;}
.y24d{bottom:785.311067pt;}
.yf7{bottom:786.671333pt;}
.y125{bottom:786.671733pt;}
.y2f7{bottom:786.974375pt;}
.yb3{bottom:787.201467pt;}
.y9{bottom:788.182667pt;}
.y1c1{bottom:791.887380pt;}
.y65{bottom:797.405733pt;}
.y5{bottom:797.555867pt;}
.y6{bottom:797.781467pt;}
.y24b{bottom:798.009575pt;}
.ya5{bottom:798.307421pt;}
.y24c{bottom:798.312505pt;}
.y29f{bottom:799.598217pt;}
.y2a0{bottom:799.824348pt;}
.y7{bottom:802.847200pt;}
.yf6{bottom:803.982000pt;}
.y124{bottom:803.982400pt;}
.y2f6{bottom:804.285092pt;}
.yb2{bottom:804.512133pt;}
.y1ee{bottom:805.342133pt;}
.y1c0{bottom:808.517572pt;}
.y29d{bottom:812.296725pt;}
.y29e{bottom:812.599654pt;}
.ya4{bottom:812.972838pt;}
.y64{bottom:814.792400pt;}
.y24a{bottom:815.320292pt;}
.y2f5{bottom:816.983600pt;}
.yf5{bottom:821.367333pt;}
.y123{bottom:821.367733pt;}
.yb1{bottom:821.897467pt;}
.y1ed{bottom:822.652800pt;}
.y215{bottom:823.182800pt;}
.y1be{bottom:825.223497pt;}
.y1bf{bottom:825.752557pt;}
.ya3{bottom:827.637188pt;}
.y249{bottom:828.018800pt;}
.y29b{bottom:829.607442pt;}
.y29c{bottom:829.834639pt;}
.y4{bottom:830.817733pt;}
.y63{bottom:832.101733pt;}
.y342{bottom:834.294317pt;}
.y122{bottom:838.677067pt;}
.yf4{bottom:838.678000pt;}
.yb0{bottom:839.208133pt;}
.y1ec{bottom:839.962133pt;}
.y214{bottom:840.568133pt;}
.y1bc{bottom:841.852622pt;}
.ya2{bottom:842.301538pt;}
.y299{bottom:842.307016pt;}
.y1bd{bottom:842.381682pt;}
.y29a{bottom:842.533147pt;}
.y248{bottom:846.009333pt;}
.y2f4{bottom:846.992825pt;}
.y62{bottom:849.412400pt;}
.yf3{bottom:855.987333pt;}
.yaf{bottom:856.517467pt;}
.ya1{bottom:856.965888pt;}
.ycb{bottom:857.197467pt;}
.y1bb{bottom:858.482814pt;}
.y298{bottom:859.616667pt;}
.y3{bottom:860.827333pt;}
.y121{bottom:861.354267pt;}
.y1eb{bottom:862.639333pt;}
.y213{bottom:865.890800pt;}
.y61{bottom:866.797733pt;}
.ya0{bottom:871.630238pt;}
.y296{bottom:872.316241pt;}
.y297{bottom:872.542372pt;}
.yae{bottom:873.902800pt;}
.y1ba{bottom:875.188739pt;}
.y341{bottom:876.926317pt;}
.yf2{bottom:878.664533pt;}
.y212{bottom:883.201467pt;}
.y60{bottom:884.108400pt;}
.y295{bottom:884.939017pt;}
.y9f{bottom:886.294588pt;}
.y2f3{bottom:889.625892pt;}
.y2{bottom:890.834533pt;}
.yad{bottom:891.213467pt;}
.y1b9{bottom:891.817864pt;}
.y9e{bottom:900.958938pt;}
.y5f{bottom:901.417733pt;}
.y294{bottom:902.325466pt;}
.y33f{bottom:902.551597pt;}
.y340{bottom:902.627329pt;}
.y1b8{bottom:908.523789pt;}
.yac{bottom:908.524133pt;}
.y247{bottom:909.052133pt;}
.y292{bottom:914.948242pt;}
.y293{bottom:915.326904pt;}
.y9d{bottom:915.623288pt;}
.y5e{bottom:918.803067pt;}
.y2f2{bottom:919.635117pt;}
.y1{bottom:920.844000pt;}
.y1b7{bottom:925.152914pt;}
.yab{bottom:925.833467pt;}
.yca{bottom:926.589467pt;}
.y9c{bottom:930.288705pt;}
.y290{bottom:932.258959pt;}
.y291{bottom:932.636554pt;}
.yf1{bottom:940.951067pt;}
.y5d{bottom:941.404667pt;}
.ya9{bottom:943.218800pt;}
.y1ea{bottom:943.898800pt;}
.y9a{bottom:944.953055pt;}
.y1b6{bottom:944.957467pt;}
.y28f{bottom:945.183597pt;}
.y9b{bottom:945.254918pt;}
.yaa{bottom:949.114933pt;}
.y99{bottom:994.393600pt;}
.h11{height:21.330000pt;}
.h4{height:24.828689pt;}
.hd{height:26.663600pt;}
.h9{height:31.082945pt;}
.hf{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hb{height:34.772899pt;}
.ha{height:36.052883pt;}
.he{height:36.533333pt;}
.h3{height:37.248000pt;}
.h12{height:38.566640pt;}
.h13{height:38.868507pt;}
.h7{height:39.266667pt;}
.h8{height:40.000000pt;}
.h10{height:47.999600pt;}
.hc{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:48.000000pt;}
.x60{left:60.925705pt;}
.x22{left:63.496000pt;}
.x36{left:76.572443pt;}
.x5f{left:81.032120pt;}
.x5e{left:83.602755pt;}
.x3b{left:87.609333pt;}
.x23{left:100.005410pt;}
.x3c{left:105.750973pt;}
.x25{left:138.254532pt;}
.x53{left:140.447200pt;}
.x63{left:154.279205pt;}
.x61{left:156.774107pt;}
.x62{left:167.885435pt;}
.x4f{left:170.910133pt;}
.x24{left:188.219774pt;}
.x50{left:255.042400pt;}
.x3d{left:261.163431pt;}
.x1{left:266.683333pt;}
.x2f{left:272.881867pt;}
.x51{left:277.492800pt;}
.x29{left:282.632667pt;}
.x1d{left:284.144333pt;}
.x2a{left:289.435333pt;}
.x7f{left:295.331056pt;}
.xb1{left:297.070029pt;}
.x7e{left:298.506000pt;}
.xaf{left:304.629401pt;}
.xa1{left:307.879494pt;}
.xac{left:310.450128pt;}
.x1b{left:311.507306pt;}
.x6b{left:315.967333pt;}
.x17{left:317.328034pt;}
.x48{left:319.822000pt;}
.x6a{left:321.183333pt;}
.x30{left:324.510133pt;}
.x5d{left:325.415199pt;}
.x2{left:327.079333pt;}
.x32{left:331.237733pt;}
.xaa{left:332.597051pt;}
.x31{left:334.034533pt;}
.x33{left:340.762133pt;}
.x9f{left:341.895068pt;}
.x6d{left:343.708667pt;}
.x35{left:345.373200pt;}
.x5b{left:349.454000pt;}
.x65{left:350.512667pt;}
.x78{left:351.570000pt;}
.x5c{left:355.349758pt;}
.xbf{left:356.710883pt;}
.x91{left:357.995873pt;}
.x96{left:359.130053pt;}
.x86{left:365.932841pt;}
.x9c{left:368.276605pt;}
.x34{left:370.090133pt;}
.xb{left:371.527467pt;}
.x81{left:373.037818pt;}
.xad{left:374.323463pt;}
.xc{left:376.440933pt;}
.x13{left:377.423600pt;}
.x3{left:380.825067pt;}
.x14{left:382.336933pt;}
.x9e{left:384.225206pt;}
.x18{left:389.516998pt;}
.x4{left:393.146400pt;}
.xab{left:394.355213pt;}
.xb5{left:397.302376pt;}
.x79{left:399.267333pt;}
.x75{left:406.751333pt;}
.x7a{left:407.734000pt;}
.x72{left:410.758000pt;}
.x49{left:412.118000pt;}
.x2b{left:414.536667pt;}
.x45{left:417.334000pt;}
.x73{left:420.962000pt;}
.x99{left:422.776191pt;}
.x28{left:424.515333pt;}
.x55{left:430.335333pt;}
.xae{left:431.393683pt;}
.x8a{left:433.207733pt;}
.x71{left:436.080667pt;}
.x44{left:440.086000pt;}
.x64{left:441.900667pt;}
.x74{left:445.302000pt;}
.x89{left:447.570220pt;}
.x15{left:449.763733pt;}
.x26{left:451.122000pt;}
.x66{left:452.936667pt;}
.xbb{left:454.222198pt;}
.x97{left:455.885110pt;}
.x82{left:458.303953pt;}
.x76{left:460.344667pt;}
.x8d{left:462.008440pt;}
.x56{left:464.199333pt;}
.x7b{left:465.182000pt;}
.xd{left:471.836133pt;}
.x4e{left:477.730000pt;}
.xb4{left:479.544548pt;}
.x7c{left:481.434000pt;}
.x94{left:482.568510pt;}
.xa8{left:490.354013pt;}
.xbc{left:492.471319pt;}
.xb2{left:493.831302pt;}
.xb9{left:495.947543pt;}
.xba{left:497.157128pt;}
.x42{left:498.366000pt;}
.xb6{left:499.727762pt;}
.x16{left:500.861739pt;}
.x84{left:502.599932pt;}
.x67{left:505.698000pt;}
.x1f{left:506.757200pt;}
.x1c{left:507.890985pt;}
.x8e{left:515.072310pt;}
.xc3{left:516.961680pt;}
.x9b{left:519.305117pt;}
.x4b{left:521.950000pt;}
.x52{left:522.935333pt;}
.x39{left:525.276667pt;}
.x5{left:527.168400pt;}
.x43{left:530.492667pt;}
.x6{left:532.157467pt;}
.x4d{left:533.515333pt;}
.xe{left:540.321200pt;}
.x70{left:543.871333pt;}
.xf{left:545.234533pt;}
.xbd{left:546.366112pt;}
.x6e{left:548.029150pt;}
.x85{left:549.389747pt;}
.x8b{left:551.582787pt;}
.x6c{left:554.454000pt;}
.x5a{left:555.663333pt;}
.x83{left:557.705377pt;}
.x8f{left:561.031202pt;}
.x92{left:562.316519pt;}
.xa7{left:565.717337pt;}
.x7d{left:571.235333pt;}
.x19{left:573.125369pt;}
.x88{left:574.410235pt;}
.xa0{left:576.678267pt;}
.xb8{left:581.289409pt;}
.x8c{left:585.900224pt;}
.xb7{left:593.686054pt;}
.x6f{left:596.406000pt;}
.xa2{left:600.261972pt;}
.x80{left:603.361339pt;}
.xa9{left:607.443749pt;}
.xa6{left:612.281022pt;}
.x3e{left:616.740667pt;}
.x40{left:618.406267pt;}
.x59{left:619.462000pt;}
.xc1{left:622.183831pt;}
.x54{left:624.453467pt;}
.x41{left:626.116533pt;}
.x20{left:628.760000pt;}
.x47{left:630.271333pt;}
.x58{left:634.428667pt;}
.xb0{left:640.551602pt;}
.x77{left:644.028667pt;}
.x7{left:647.659733pt;}
.x8{left:652.573200pt;}
.x93{left:654.460434pt;}
.x98{left:658.618576pt;}
.x87{left:661.415014pt;}
.x57{left:662.850000pt;}
.x37{left:665.952667pt;}
.x95{left:668.444586pt;}
.x3f{left:669.426000pt;}
.x4a{left:670.636667pt;}
.xa3{left:672.602401pt;}
.x38{left:675.477067pt;}
.x27{left:677.287333pt;}
.x10{left:680.541467pt;}
.x90{left:685.452047pt;}
.x9d{left:696.639434pt;}
.x2c{left:702.084933pt;}
.x1a{left:703.518406pt;}
.xa4{left:706.240381pt;}
.x69{left:707.978000pt;}
.x2d{left:711.533733pt;}
.xb3{left:713.193894pt;}
.x1e{left:714.328400pt;}
.xc2{left:716.974113pt;}
.xc0{left:718.485561pt;}
.x4c{left:721.432667pt;}
.xa5{left:724.986813pt;}
.x11{left:732.396800pt;}
.xbe{left:736.249606pt;}
.x12{left:737.310133pt;}
.x2e{left:741.996800pt;}
.x3a{left:744.866000pt;}
.x68{left:749.400667pt;}
.x9a{left:750.762491pt;}
.x46{left:752.122000pt;}
.x9{left:756.207867pt;}
.xa{left:761.121200pt;}
}




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