
    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_707b3063dd3fcacafb4ae328.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_98dc7755829c520712ebbdbd.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_ed921708578b1d08cda8ce02.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_5cb59c6cd629be989588b756.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_93bfd0a1d1c7fd62ddbd532b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b84c2ebf4cda14ea69a06f10.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c574536eaba9fb87a477481e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0d86f60755337b62f14c7da5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_546d5bddfbcbf78dfbd69b66.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_41fba0fc1ede52f426e443c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5291f3dfc0bd0707cdc49db1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.279000;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_fea732c0d1c222c8c16e65a4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8c88837943063a1b916a1661.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4fb88eec23a09de5a45bc166.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a795a1a5578c49568cb4bd39.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7009c7d7f33c5a352d834da2.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_dd56225ae464e1c8fffb3b03.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.869000;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:ff13;src:url('chunks/assets/font_d75abe31181ac2faba385068.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.926778;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);}
.v3{vertical-align:-10.204672px;}
.v2{vertical-align:-3.060000px;}
.v1{vertical-align:-1.355400px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.263600px;}
.ls1c{letter-spacing:-1.200600px;}
.ls20{letter-spacing:-1.199985px;}
.ls24{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.239997px;}
.ls1d{letter-spacing:-0.239400px;}
.ls19{letter-spacing:-0.237600px;}
.ls21{letter-spacing:-0.237598px;}
.ls34{letter-spacing:-0.214367px;}
.ls1e{letter-spacing:-0.212772px;}
.ls1b{letter-spacing:-0.212372px;}
.ls23{letter-spacing:-0.211976px;}
.ls1a{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.114000px;}
.ls27{letter-spacing:0.267969px;}
.ls25{letter-spacing:0.300000px;}
.ls41{letter-spacing:0.450000px;}
.ls40{letter-spacing:0.456000px;}
.ls2a{letter-spacing:0.639926px;}
.ls28{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.017587px;}
.ls12{letter-spacing:1.022387px;}
.ls15{letter-spacing:1.363183px;}
.ls11{letter-spacing:1.367983px;}
.ls43{letter-spacing:4.425545px;}
.ls3{letter-spacing:4.761540px;}
.ls8{letter-spacing:4.766340px;}
.ls1{letter-spacing:5.486400px;}
.ls0{letter-spacing:5.491800px;}
.ls13{letter-spacing:8.764690px;}
.ls9{letter-spacing:10.046274px;}
.ls35{letter-spacing:10.065474px;}
.ls44{letter-spacing:10.204672px;}
.ls3a{letter-spacing:10.228672px;}
.ls2e{letter-spacing:10.243072px;}
.ls14{letter-spacing:11.908651px;}
.ls10{letter-spacing:11.913451px;}
.lsa{letter-spacing:12.346200px;}
.ls22{letter-spacing:12.348000px;}
.ls2c{letter-spacing:12.456000px;}
.lsf{letter-spacing:12.483000px;}
.lse{letter-spacing:12.494400px;}
.lsc{letter-spacing:12.528600px;}
.ls37{letter-spacing:12.552000px;}
.ls38{letter-spacing:12.576000px;}
.lsb{letter-spacing:12.619800px;}
.ls2d{letter-spacing:12.678000px;}
.ls3d{letter-spacing:12.684000px;}
.ls3c{letter-spacing:12.780000px;}
.lsd{letter-spacing:12.813600px;}
.ls29{letter-spacing:13.128000px;}
.ls2b{letter-spacing:13.296000px;}
.ls26{letter-spacing:13.458000px;}
.ls36{letter-spacing:14.130000px;}
.ls39{letter-spacing:14.700000px;}
.ls6{letter-spacing:14.971013px;}
.ls3e{letter-spacing:15.084000px;}
.ls5{letter-spacing:15.307009px;}
.ls4{letter-spacing:15.311809px;}
.ls3f{letter-spacing:17.610000px;}
.ls2{letter-spacing:20.783740px;}
.ls7{letter-spacing:20.788540px;}
.ls2f{letter-spacing:296.991488px;}
.ls32{letter-spacing:312.720891px;}
.ls30{letter-spacing:314.338471px;}
.ls33{letter-spacing:328.963888px;}
.ls3b{letter-spacing:494.283421px;}
.ls31{letter-spacing:724.910938px;}
.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;}
}
.ws40{word-spacing:-26.265272px;}
.wsa2{word-spacing:-19.800000px;}
.ws1ba{word-spacing:-13.500000px;}
.ws115{word-spacing:-13.487831px;}
.ws1c{word-spacing:-13.247834px;}
.ws12b{word-spacing:-13.146488px;}
.ws48{word-spacing:-10.799865px;}
.ws13d{word-spacing:-8.286000px;}
.ws1a9{word-spacing:-7.860000px;}
.ws1ab{word-spacing:-7.536000px;}
.wsd0{word-spacing:-7.392000px;}
.ws6a{word-spacing:-7.200000px;}
.wsf5{word-spacing:-7.014000px;}
.ws13c{word-spacing:-6.912000px;}
.wsa7{word-spacing:-6.858000px;}
.ws1a1{word-spacing:-6.336000px;}
.ws18f{word-spacing:-6.198000px;}
.ws198{word-spacing:-5.970000px;}
.ws1a6{word-spacing:-5.958000px;}
.ws1a4{word-spacing:-5.832000px;}
.ws187{word-spacing:-5.700000px;}
.ws135{word-spacing:-5.688000px;}
.ws130{word-spacing:-5.292000px;}
.ws1a5{word-spacing:-5.220000px;}
.ws134{word-spacing:-5.196000px;}
.ws190{word-spacing:-5.130000px;}
.ws196{word-spacing:-4.854000px;}
.wsf7{word-spacing:-4.492763px;}
.ws13b{word-spacing:-4.476000px;}
.wsd9{word-spacing:-4.471163px;}
.ws9b{word-spacing:-4.456763px;}
.ws144{word-spacing:-4.442363px;}
.ws12d{word-spacing:-4.422000px;}
.wsb4{word-spacing:-4.413563px;}
.wse1{word-spacing:-4.406363px;}
.ws1a0{word-spacing:-4.380000px;}
.ws1af{word-spacing:-4.374000px;}
.ws19c{word-spacing:-4.356000px;}
.wsc3{word-spacing:-4.298364px;}
.ws1b6{word-spacing:-4.233565px;}
.wsf4{word-spacing:-4.175965px;}
.ws131{word-spacing:-4.164000px;}
.ws1b2{word-spacing:-4.082366px;}
.ws133{word-spacing:-4.044000px;}
.ws19d{word-spacing:-4.026000px;}
.wsb1{word-spacing:-3.852000px;}
.ws2a{word-spacing:-3.830400px;}
.ws1ec{word-spacing:-3.763153px;}
.wsa5{word-spacing:-3.720000px;}
.ws1f3{word-spacing:-3.599955px;}
.ws17{word-spacing:-3.575955px;}
.ws1e2{word-spacing:-3.566355px;}
.ws1a{word-spacing:-3.551956px;}
.ws1d9{word-spacing:-3.542356px;}
.ws140{word-spacing:-3.540000px;}
.ws1f2{word-spacing:-3.523156px;}
.ws1ef{word-spacing:-3.518356px;}
.ws24{word-spacing:-3.465600px;}
.ws14e{word-spacing:-3.460757px;}
.wsfe{word-spacing:-3.441557px;}
.wsc0{word-spacing:-3.436757px;}
.ws1d8{word-spacing:-3.431957px;}
.ws1cf{word-spacing:-3.403157px;}
.ws5{word-spacing:-3.396600px;}
.ws30{word-spacing:-3.391500px;}
.ws1dc{word-spacing:-3.383958px;}
.wse{word-spacing:-3.374358px;}
.ws128{word-spacing:-3.369558px;}
.ws152{word-spacing:-3.359958px;}
.wsf{word-spacing:-3.355158px;}
.ws1f0{word-spacing:-3.350358px;}
.ws27{word-spacing:-3.345900px;}
.ws121{word-spacing:-3.345558px;}
.ws6{word-spacing:-3.342600px;}
.ws141{word-spacing:-3.342000px;}
.ws1d3{word-spacing:-3.340758px;}
.ws123{word-spacing:-3.335958px;}
.ws8a{word-spacing:-3.331158px;}
.ws1aa{word-spacing:-3.330000px;}
.ws1ea{word-spacing:-3.326358px;}
.ws2c{word-spacing:-3.323100px;}
.ws151{word-spacing:-3.321558px;}
.ws20{word-spacing:-3.317400px;}
.ws1d2{word-spacing:-3.311959px;}
.ws8{word-spacing:-3.310200px;}
.ws1c9{word-spacing:-3.307159px;}
.wsc2{word-spacing:-3.297559px;}
.ws4{word-spacing:-3.294000px;}
.ws1e8{word-spacing:-3.292759px;}
.ws1eb{word-spacing:-3.287959px;}
.ws1c6{word-spacing:-3.283159px;}
.ws10{word-spacing:-3.278359px;}
.ws11f{word-spacing:-3.273559px;}
.ws1ce{word-spacing:-3.263959px;}
.ws21{word-spacing:-3.260400px;}
.ws16{word-spacing:-3.259159px;}
.ws37{word-spacing:-3.254700px;}
.ws104{word-spacing:-3.254359px;}
.ws1b{word-spacing:-3.249559px;}
.ws25{word-spacing:-3.249000px;}
.ws1e7{word-spacing:-3.244759px;}
.ws18{word-spacing:-3.239960px;}
.ws2b{word-spacing:-3.237600px;}
.ws19{word-spacing:-3.235160px;}
.ws13a{word-spacing:-3.234000px;}
.ws1cc{word-spacing:-3.230360px;}
.ws97{word-spacing:-3.228000px;}
.ws22{word-spacing:-3.226200px;}
.ws124{word-spacing:-3.225560px;}
.ws1de{word-spacing:-3.220760px;}
.ws1cb{word-spacing:-3.215960px;}
.ws101{word-spacing:-3.211160px;}
.ws1d1{word-spacing:-3.206360px;}
.ws18b{word-spacing:-3.201560px;}
.ws18c{word-spacing:-3.196760px;}
.ws109{word-spacing:-3.191960px;}
.ws129{word-spacing:-3.187160px;}
.wsbf{word-spacing:-3.182360px;}
.ws1f{word-spacing:-3.180600px;}
.wsff{word-spacing:-3.177560px;}
.ws1f5{word-spacing:-3.172760px;}
.ws122{word-spacing:-3.167960px;}
.ws15{word-spacing:-3.163160px;}
.ws105{word-spacing:-3.158361px;}
.ws29{word-spacing:-3.157800px;}
.ws150{word-spacing:-3.148761px;}
.ws1e9{word-spacing:-3.143961px;}
.ws7{word-spacing:-3.142800px;}
.ws26{word-spacing:-3.140700px;}
.ws3f{word-spacing:-3.139161px;}
.ws1ee{word-spacing:-3.134361px;}
.ws10a{word-spacing:-3.129561px;}
.ws3d{word-spacing:-3.124761px;}
.ws185{word-spacing:-3.119961px;}
.ws1d{word-spacing:-3.117900px;}
.ws1c7{word-spacing:-3.115161px;}
.ws28{word-spacing:-3.112200px;}
.ws108{word-spacing:-3.110361px;}
.ws1c3{word-spacing:-3.105561px;}
.ws147{word-spacing:-3.091161px;}
.wsd{word-spacing:-3.086361px;}
.ws2f{word-spacing:-3.083700px;}
.ws1c5{word-spacing:-3.081561px;}
.ws1e4{word-spacing:-3.076762px;}
.ws14d{word-spacing:-3.067162px;}
.ws1f4{word-spacing:-3.062362px;}
.ws9{word-spacing:-3.061800px;}
.ws1d6{word-spacing:-3.057562px;}
.ws10c{word-spacing:-3.052762px;}
.ws1da{word-spacing:-3.043162px;}
.ws11{word-spacing:-3.038362px;}
.ws11e{word-spacing:-3.033562px;}
.ws149{word-spacing:-3.028762px;}
.ws1df{word-spacing:-3.023962px;}
.ws1e3{word-spacing:-3.019162px;}
.ws12{word-spacing:-3.014362px;}
.ws1ed{word-spacing:-3.004762px;}
.wsa{word-spacing:-3.002400px;}
.ws1d7{word-spacing:-2.995163px;}
.ws14f{word-spacing:-2.990363px;}
.ws34{word-spacing:-2.986800px;}
.wsbd{word-spacing:-2.985563px;}
.ws2e{word-spacing:-2.981100px;}
.ws14{word-spacing:-2.980763px;}
.ws100{word-spacing:-2.975963px;}
.wsb{word-spacing:-2.953800px;}
.ws1e{word-spacing:-2.952600px;}
.ws148{word-spacing:-2.951963px;}
.ws1cd{word-spacing:-2.937563px;}
.ws3b{word-spacing:-2.929800px;}
.ws126{word-spacing:-2.927963px;}
.ws39{word-spacing:-2.924100px;}
.ws1d4{word-spacing:-2.923163px;}
.ws1e1{word-spacing:-2.913564px;}
.ws31{word-spacing:-2.912700px;}
.ws103{word-spacing:-2.908764px;}
.ws3c{word-spacing:-2.901300px;}
.ws102{word-spacing:-2.894364px;}
.ws1f1{word-spacing:-2.884764px;}
.ws153{word-spacing:-2.875164px;}
.ws23{word-spacing:-2.872800px;}
.ws14c{word-spacing:-2.865564px;}
.ws1c8{word-spacing:-2.860764px;}
.ws1e5{word-spacing:-2.855964px;}
.ws1dd{word-spacing:-2.846364px;}
.ws1a2{word-spacing:-2.844000px;}
.ws1db{word-spacing:-2.841564px;}
.wsbe{word-spacing:-2.831965px;}
.ws33{word-spacing:-2.827200px;}
.ws13{word-spacing:-2.827165px;}
.wsc{word-spacing:-2.812765px;}
.ws14a{word-spacing:-2.807965px;}
.ws146{word-spacing:-2.798365px;}
.ws125{word-spacing:-2.793565px;}
.ws1ca{word-spacing:-2.783965px;}
.ws127{word-spacing:-2.779165px;}
.ws1c4{word-spacing:-2.774365px;}
.ws19f{word-spacing:-2.772000px;}
.ws14b{word-spacing:-2.769565px;}
.wsc1{word-spacing:-2.764765px;}
.ws13e{word-spacing:-2.754000px;}
.ws1e6{word-spacing:-2.750366px;}
.ws3a{word-spacing:-2.741700px;}
.ws3{word-spacing:-2.721600px;}
.ws120{word-spacing:-2.711966px;}
.ws11c{word-spacing:-2.702366px;}
.ws2{word-spacing:-2.689200px;}
.ws2d{word-spacing:-2.679000px;}
.ws1{word-spacing:-2.667600px;}
.ws116{word-spacing:-2.663967px;}
.ws1e0{word-spacing:-2.654367px;}
.ws0{word-spacing:-2.649567px;}
.ws118{word-spacing:-2.639967px;}
.ws38{word-spacing:-2.599200px;}
.ws10e{word-spacing:-2.548768px;}
.ws32{word-spacing:-2.502300px;}
.ws35{word-spacing:-2.485200px;}
.ws13f{word-spacing:-2.442000px;}
.ws11b{word-spacing:-2.438370px;}
.ws36{word-spacing:-2.422500px;}
.ws11a{word-spacing:-2.327971px;}
.ws10b{word-spacing:-2.289571px;}
.wsd2{word-spacing:-1.368000px;}
.wsea{word-spacing:-1.350000px;}
.wse4{word-spacing:-1.338000px;}
.wse8{word-spacing:-1.314000px;}
.wse3{word-spacing:-1.260000px;}
.wse6{word-spacing:-1.194000px;}
.wse9{word-spacing:-1.188000px;}
.wse7{word-spacing:-1.158000px;}
.ws56{word-spacing:-1.055987px;}
.wsd4{word-spacing:-1.032000px;}
.wscc{word-spacing:-1.020000px;}
.wscd{word-spacing:-1.002000px;}
.wscb{word-spacing:-0.990000px;}
.ws7c{word-spacing:-0.924000px;}
.ws59{word-spacing:-0.916789px;}
.ws106{word-spacing:-0.912000px;}
.wsd8{word-spacing:-0.906000px;}
.ws52{word-spacing:-0.892789px;}
.ws4e{word-spacing:-0.878389px;}
.ws1b1{word-spacing:-0.870000px;}
.wscf{word-spacing:-0.864000px;}
.ws8d{word-spacing:-0.859189px;}
.ws47{word-spacing:-0.854389px;}
.ws87{word-spacing:-0.852000px;}
.wsd3{word-spacing:-0.834000px;}
.ws60{word-spacing:-0.830390px;}
.wsc7{word-spacing:-0.816000px;}
.ws5b{word-spacing:-0.815990px;}
.ws1ad{word-spacing:-0.810000px;}
.ws62{word-spacing:-0.806390px;}
.wsd1{word-spacing:-0.804000px;}
.wse5{word-spacing:-0.798000px;}
.wsc9{word-spacing:-0.792000px;}
.ws4c{word-spacing:-0.791990px;}
.ws18d{word-spacing:-0.780000px;}
.wsc4{word-spacing:-0.774000px;}
.ws197{word-spacing:-0.768000px;}
.ws4a{word-spacing:-0.753591px;}
.wsc5{word-spacing:-0.750000px;}
.wsd6{word-spacing:-0.744000px;}
.ws50{word-spacing:-0.743991px;}
.ws5e{word-spacing:-0.739191px;}
.wsce{word-spacing:-0.738000px;}
.wsf3{word-spacing:-0.732000px;}
.ws55{word-spacing:-0.724791px;}
.ws7d{word-spacing:-0.714000px;}
.ws4f{word-spacing:-0.710391px;}
.wsd5{word-spacing:-0.702000px;}
.ws4b{word-spacing:-0.700791px;}
.ws99{word-spacing:-0.696000px;}
.ws46{word-spacing:-0.681591px;}
.wsca{word-spacing:-0.678000px;}
.ws57{word-spacing:-0.676792px;}
.ws5a{word-spacing:-0.671992px;}
.ws5f{word-spacing:-0.662392px;}
.wsdb{word-spacing:-0.648000px;}
.ws44{word-spacing:-0.647992px;}
.ws64{word-spacing:-0.643192px;}
.wsba{word-spacing:-0.636000px;}
.ws5d{word-spacing:-0.633592px;}
.ws88{word-spacing:-0.630000px;}
.ws7e{word-spacing:-0.624000px;}
.ws41{word-spacing:-0.623992px;}
.ws86{word-spacing:-0.618000px;}
.ws65{word-spacing:-0.614392px;}
.wsd7{word-spacing:-0.612000px;}
.ws5c{word-spacing:-0.609592px;}
.ws1a7{word-spacing:-0.594000px;}
.ws1ac{word-spacing:-0.576000px;}
.ws49{word-spacing:-0.571193px;}
.ws188{word-spacing:-0.570000px;}
.wsef{word-spacing:-0.552000px;}
.ws199{word-spacing:-0.546000px;}
.ws8b{word-spacing:-0.542393px;}
.ws54{word-spacing:-0.537593px;}
.wsc8{word-spacing:-0.534000px;}
.ws51{word-spacing:-0.532793px;}
.ws143{word-spacing:-0.528000px;}
.ws42{word-spacing:-0.523193px;}
.ws7f{word-spacing:-0.522000px;}
.ws4d{word-spacing:-0.518394px;}
.ws18a{word-spacing:-0.516000px;}
.ws43{word-spacing:-0.513594px;}
.wsed{word-spacing:-0.510000px;}
.wsc6{word-spacing:-0.504000px;}
.ws142{word-spacing:-0.498000px;}
.ws8c{word-spacing:-0.494394px;}
.wsaf{word-spacing:-0.480000px;}
.ws93{word-spacing:-0.474000px;}
.ws58{word-spacing:-0.470394px;}
.wsb3{word-spacing:-0.468000px;}
.ws18e{word-spacing:-0.462000px;}
.ws45{word-spacing:-0.460794px;}
.ws90{word-spacing:-0.456000px;}
.ws193{word-spacing:-0.450000px;}
.ws1a8{word-spacing:-0.438000px;}
.ws70{word-spacing:-0.432000px;}
.ws67{word-spacing:-0.426000px;}
.wsac{word-spacing:-0.420000px;}
.ws12a{word-spacing:-0.414000px;}
.ws194{word-spacing:-0.408000px;}
.wsf1{word-spacing:-0.402000px;}
.ws8f{word-spacing:-0.396000px;}
.ws63{word-spacing:-0.393595px;}
.ws9c{word-spacing:-0.390000px;}
.ws7a{word-spacing:-0.384000px;}
.ws61{word-spacing:-0.383995px;}
.ws94{word-spacing:-0.378000px;}
.wsb0{word-spacing:-0.372000px;}
.ws7b{word-spacing:-0.366000px;}
.ws6c{word-spacing:-0.360000px;}
.ws98{word-spacing:-0.354000px;}
.ws76{word-spacing:-0.348000px;}
.wsda{word-spacing:-0.342000px;}
.ws9a{word-spacing:-0.336000px;}
.ws96{word-spacing:-0.330000px;}
.wsaa{word-spacing:-0.324000px;}
.ws6e{word-spacing:-0.318000px;}
.ws71{word-spacing:-0.312000px;}
.ws83{word-spacing:-0.306000px;}
.wsa3{word-spacing:-0.300000px;}
.ws69{word-spacing:-0.294000px;}
.ws53{word-spacing:-0.292796px;}
.ws9f{word-spacing:-0.288000px;}
.ws73{word-spacing:-0.282000px;}
.ws74{word-spacing:-0.276000px;}
.wsf8{word-spacing:-0.270000px;}
.ws72{word-spacing:-0.264000px;}
.ws6f{word-spacing:-0.258000px;}
.wsa4{word-spacing:-0.252000px;}
.wsfa{word-spacing:-0.246000px;}
.ws81{word-spacing:-0.240000px;}
.ws77{word-spacing:-0.234000px;}
.wsa6{word-spacing:-0.228000px;}
.wsab{word-spacing:-0.222000px;}
.wsdf{word-spacing:-0.216000px;}
.ws84{word-spacing:-0.210000px;}
.ws68{word-spacing:-0.204000px;}
.wsde{word-spacing:-0.198000px;}
.ws78{word-spacing:-0.192000px;}
.ws92{word-spacing:-0.186000px;}
.ws9e{word-spacing:-0.180000px;}
.ws89{word-spacing:-0.174000px;}
.wsa9{word-spacing:-0.168000px;}
.wsa1{word-spacing:-0.162000px;}
.wsdc{word-spacing:-0.156000px;}
.wsf2{word-spacing:-0.150000px;}
.ws6d{word-spacing:-0.144000px;}
.wsee{word-spacing:-0.138000px;}
.ws79{word-spacing:-0.132000px;}
.ws1b8{word-spacing:-0.126000px;}
.ws132{word-spacing:-0.120000px;}
.wsfc{word-spacing:-0.114000px;}
.wse0{word-spacing:-0.108000px;}
.wsa0{word-spacing:-0.102000px;}
.ws137{word-spacing:-0.096000px;}
.wsdd{word-spacing:-0.090000px;}
.wsae{word-spacing:-0.084000px;}
.ws19a{word-spacing:-0.078000px;}
.ws8e{word-spacing:-0.072000px;}
.wsb2{word-spacing:-0.066000px;}
.wsec{word-spacing:-0.060000px;}
.wsa8{word-spacing:-0.054000px;}
.ws82{word-spacing:-0.048000px;}
.ws1b0{word-spacing:-0.042000px;}
.ws9d{word-spacing:-0.036000px;}
.ws191{word-spacing:-0.030000px;}
.ws19b{word-spacing:-0.024000px;}
.wsad{word-spacing:-0.018000px;}
.ws6b{word-spacing:-0.012000px;}
.ws139{word-spacing:-0.006000px;}
.ws66{word-spacing:0.000000px;}
.ws145{word-spacing:0.006000px;}
.wsbc{word-spacing:0.012000px;}
.ws80{word-spacing:0.018000px;}
.wsfd{word-spacing:0.024000px;}
.ws75{word-spacing:0.030000px;}
.ws138{word-spacing:0.042000px;}
.wsb9{word-spacing:0.048000px;}
.ws91{word-spacing:0.054000px;}
.ws95{word-spacing:0.060000px;}
.ws1a3{word-spacing:0.072000px;}
.ws107{word-spacing:0.078000px;}
.wsfb{word-spacing:0.096000px;}
.wsf0{word-spacing:0.120000px;}
.ws1bb{word-spacing:0.126000px;}
.wsf9{word-spacing:0.132000px;}
.ws85{word-spacing:0.138000px;}
.ws189{word-spacing:0.150000px;}
.ws195{word-spacing:0.156000px;}
.wsb7{word-spacing:0.168000px;}
.ws12e{word-spacing:0.180000px;}
.wsb6{word-spacing:0.198000px;}
.wsb8{word-spacing:0.228000px;}
.ws12f{word-spacing:0.234000px;}
.wsb5{word-spacing:0.240000px;}
.wsbb{word-spacing:0.288000px;}
.ws192{word-spacing:0.300000px;}
.ws1c1{word-spacing:0.342000px;}
.wsf6{word-spacing:0.360000px;}
.ws1ae{word-spacing:0.408000px;}
.ws1b3{word-spacing:0.438000px;}
.ws1b4{word-spacing:0.450000px;}
.ws1b5{word-spacing:0.642000px;}
.ws1be{word-spacing:0.648000px;}
.ws1b9{word-spacing:0.666000px;}
.ws1bc{word-spacing:0.762000px;}
.ws1bd{word-spacing:0.900000px;}
.wse2{word-spacing:1.002000px;}
.ws1c0{word-spacing:1.014000px;}
.ws1bf{word-spacing:1.026000px;}
.ws1b7{word-spacing:1.158000px;}
.wseb{word-spacing:1.218000px;}
.ws19e{word-spacing:1.866000px;}
.ws3e{word-spacing:34.588368px;}
.ws136{word-spacing:35.856000px;}
.ws12c{word-spacing:35.916000px;}
.ws1d0{word-spacing:46.842614px;}
.ws1d5{word-spacing:46.847414px;}
.ws1c2{word-spacing:46.909814px;}
.ws114{word-spacing:257.108786px;}
.ws10f{word-spacing:288.725991px;}
.ws111{word-spacing:310.364120px;}
.ws113{word-spacing:323.232760px;}
.ws112{word-spacing:332.602242px;}
.ws154{word-spacing:333.163835px;}
.ws117{word-spacing:387.897551px;}
.ws17d{word-spacing:409.785278px;}
.ws181{word-spacing:436.012150px;}
.ws15f{word-spacing:436.194547px;}
.ws164{word-spacing:441.493681px;}
.ws167{word-spacing:442.708066px;}
.ws174{word-spacing:443.226460px;}
.ws17e{word-spacing:456.493494px;}
.ws16d{word-spacing:464.624592px;}
.ws184{word-spacing:465.094986px;}
.ws173{word-spacing:467.566955px;}
.ws180{word-spacing:467.898151px;}
.ws156{word-spacing:469.726928px;}
.ws179{word-spacing:476.302846px;}
.ws16b{word-spacing:476.379645px;}
.ws176{word-spacing:476.710841px;}
.ws16e{word-spacing:477.546031px;}
.ws182{word-spacing:479.211610px;}
.ws155{word-spacing:479.365208px;}
.ws166{word-spacing:480.046799px;}
.ws16f{word-spacing:481.030787px;}
.ws16c{word-spacing:483.829152px;}
.ws186{word-spacing:483.925151px;}
.ws161{word-spacing:484.822740px;}
.ws163{word-spacing:489.795477px;}
.ws15a{word-spacing:489.977875px;}
.ws16a{word-spacing:490.477069px;}
.ws162{word-spacing:494.494619px;}
.ws15e{word-spacing:494.859414px;}
.ws17c{word-spacing:496.256197px;}
.ws17a{word-spacing:499.280159px;}
.ws159{word-spacing:499.995350px;}
.ws158{word-spacing:500.897739px;}
.ws172{word-spacing:501.545731px;}
.ws160{word-spacing:502.174523px;}
.ws178{word-spacing:503.604905px;}
.ws169{word-spacing:506.451269px;}
.ws165{word-spacing:507.723253px;}
.ws157{word-spacing:508.625642px;}
.ws175{word-spacing:508.673642px;}
.ws15d{word-spacing:510.286421px;}
.ws15c{word-spacing:513.084786px;}
.ws171{word-spacing:515.695954px;}
.ws183{word-spacing:518.542318px;}
.ws170{word-spacing:523.515056px;}
.ws168{word-spacing:523.563055px;}
.ws15b{word-spacing:526.174223px;}
.ws17b{word-spacing:531.722953px;}
.ws177{word-spacing:564.324146px;}
.ws17f{word-spacing:581.296734px;}
.ws119{word-spacing:720.456594px;}
.ws10d{word-spacing:735.389208px;}
.ws110{word-spacing:744.912288px;}
.ws11d{word-spacing:753.115386px;}
._1{margin-left:-23.598000px;}
._31{margin-left:-20.870139px;}
._7{margin-left:-17.735778px;}
._32{margin-left:-14.486219px;}
._1b{margin-left:-2.544000px;}
._0{margin-left:-1.113586px;}
._4{width:1.350900px;}
._a{width:9.441482px;}
._2{width:10.881464px;}
._5{width:11.975700px;}
._3{width:13.987800px;}
._9{width:15.104400px;}
._8{width:16.896544px;}
._1c{width:17.926472px;}
._30{width:19.718154px;}
._c{width:21.042937px;}
._b{width:48.678000px;}
._17{width:312.236097px;}
._19{width:344.818090px;}
._14{width:347.990850px;}
._2f{width:399.532606px;}
._21{width:478.112424px;}
._20{width:483.214760px;}
._1d{width:488.014700px;}
._2a{width:498.027375px;}
._2b{width:503.422507px;}
._1e{width:507.545656px;}
._27{width:519.267109px;}
._29{width:524.201447px;}
._2e{width:525.497431px;}
._22{width:526.611017px;}
._d{width:572.287246px;}
._2d{width:577.221585px;}
._26{width:581.440732px;}
._24{width:591.040612px;}
._1f{width:594.784565px;}
._25{width:597.923726px;}
._23{width:599.190910px;}
._2c{width:600.880489px;}
._28{width:614.699516px;}
._f{width:731.530056px;}
._16{width:733.944426px;}
._10{width:736.968388px;}
._18{width:749.933026px;}
._12{width:771.326358px;}
._11{width:780.508644px;}
._13{width:782.889414px;}
._15{width:822.728916px;}
._e{width:862.304421px;}
._1a{width:1418.137473px;}
._6{width:1443.932351px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs6{font-size:37.995000px;}
.fs9{font-size:39.995400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:71.999400px;}
.fs4{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:54.000000px;}
.y15e{bottom:122.031450px;}
.y18d{bottom:123.562940px;}
.y15f{bottom:124.497600px;}
.y137{bottom:124.498650px;}
.yff{bottom:124.499250px;}
.y5a{bottom:124.500364px;}
.ybf{bottom:124.500600px;}
.y2ab{bottom:124.500919px;}
.y23f{bottom:124.501200px;}
.y86{bottom:124.502700px;}
.y194{bottom:126.623550px;}
.y195{bottom:129.089700px;}
.y193{bottom:129.090750px;}
.y1df{bottom:130.025700px;}
.ycf{bottom:130.367100px;}
.y270{bottom:131.981550px;}
.y271{bottom:132.748050px;}
.y166{bottom:134.363681px;}
.y20d{bottom:135.895800px;}
.y33{bottom:136.403550px;}
.y2ef{bottom:136.832728px;}
.y2aa{bottom:138.787940px;}
.y59{bottom:140.997758px;}
.y135{bottom:141.505500px;}
.y136{bottom:143.971650px;}
.y134{bottom:143.972100px;}
.y1ce{bottom:143.973150px;}
.yfe{bottom:143.973750px;}
.ybe{bottom:143.975100px;}
.y23e{bottom:143.975700px;}
.y85{bottom:143.977200px;}
.y191{bottom:146.097600px;}
.y18c{bottom:146.777850px;}
.y18a{bottom:146.778207px;}
.y192{bottom:148.563750px;}
.y190{bottom:148.565250px;}
.y1de{bottom:149.500200px;}
.yce{bottom:149.841600px;}
.y2ee{bottom:151.119750px;}
.y18b{bottom:152.135400px;}
.y2a9{bottom:152.989763px;}
.y20c{bottom:155.370300px;}
.y32{bottom:157.408050px;}
.y58{bottom:157.495152px;}
.y165{bottom:157.578591px;}
.y1da{bottom:158.174222px;}
.y26f{bottom:159.025050px;}
.y132{bottom:160.979400px;}
.y189{bottom:161.065229px;}
.y133{bottom:163.530600px;}
.y1cd{bottom:163.531650px;}
.yfd{bottom:163.532250px;}
.y131{bottom:163.532850px;}
.y15d{bottom:163.533000px;}
.ybd{bottom:163.533600px;}
.y23d{bottom:163.534200px;}
.y84{bottom:163.535700px;}
.y31b{bottom:163.875590px;}
.y2ec{bottom:165.321572px;}
.y2ed{bottom:165.746367px;}
.y18f{bottom:168.123750px;}
.y1dd{bottom:168.974700px;}
.ycd{bottom:169.316100px;}
.y164{bottom:171.865612px;}
.y2a8{bottom:172.463119px;}
.y57{bottom:173.993745px;}
.y20b{bottom:174.928800px;}
.y188{bottom:175.351050px;}
.y30{bottom:176.031450px;}
.y31a{bottom:178.077413px;}
.y31{bottom:178.412550px;}
.y2f{bottom:178.414350px;}
.y26d{bottom:178.498050px;}
.y26e{bottom:179.264550px;}
.y1d9{bottom:181.390332px;}
.y250{bottom:183.004650px;}
.yfc{bottom:183.005250px;}
.y130{bottom:183.005850px;}
.y1cc{bottom:183.006150px;}
.y24e{bottom:183.006300px;}
.y23c{bottom:183.007200px;}
.y15c{bottom:183.007500px;}
.ybc{bottom:183.008100px;}
.y83{bottom:183.010200px;}
.y2eb{bottom:184.794929px;}
.y163{bottom:186.151434px;}
.y2a7{bottom:186.750141px;}
.y18e{bottom:187.596750px;}
.y1dc{bottom:188.533200px;}
.ycc{bottom:188.874600px;}
.y24f{bottom:189.637650px;}
.y55{bottom:190.491139px;}
.y56{bottom:190.915934px;}
.y20a{bottom:194.401800px;}
.y1d8{bottom:195.677353px;}
.y319{bottom:197.550769px;}
.y2ea{bottom:199.081950px;}
.y2e{bottom:199.418850px;}
.y162{bottom:200.353256px;}
.y1cb{bottom:202.479150px;}
.y24d{bottom:202.479300px;}
.yfb{bottom:202.479750px;}
.y12f{bottom:202.480350px;}
.y15b{bottom:202.480500px;}
.ybb{bottom:202.481100px;}
.y23b{bottom:202.481700px;}
.y82{bottom:202.483200px;}
.y16a{bottom:204.520996px;}
.y26b{bottom:205.540050px;}
.y2a6{bottom:206.223497px;}
.y26c{bottom:206.305050px;}
.y53{bottom:206.988533px;}
.y54{bottom:207.413328px;}
.y1db{bottom:208.006200px;}
.ycb{bottom:208.347600px;}
.y1d7{bottom:209.877975px;}
.y318{bottom:211.837791px;}
.y2e8{bottom:213.367771px;}
.y2e9{bottom:213.708567px;}
.y209{bottom:213.876300px;}
.y161{bottom:214.640278px;}
.y2d{bottom:220.423350px;}
.y2a4{bottom:220.510519px;}
.y2a5{bottom:220.850115px;}
.y1ca{bottom:222.037650px;}
.yfa{bottom:222.038250px;}
.y12e{bottom:222.038850px;}
.y15a{bottom:222.039000px;}
.y24c{bottom:222.039300px;}
.yba{bottom:222.039600px;}
.y23a{bottom:222.040200px;}
.y81{bottom:222.043200px;}
.y52{bottom:223.485927px;}
.y19c{bottom:223.995131px;}
.y1d6{bottom:224.164997px;}
.y317{bottom:226.123612px;}
.y169{bottom:227.735906px;}
.yca{bottom:227.822100px;}
.y160{bottom:228.840900px;}
.y26a{bottom:230.966850px;}
.y2e7{bottom:232.842328px;}
.y208{bottom:233.350800px;}
.y1d5{bottom:238.450818px;}
.y51{bottom:239.983320px;}
.y2a3{bottom:239.983875px;}
.y2c{bottom:241.427850px;}
.y24b{bottom:241.512300px;}
.yf9{bottom:241.512750px;}
.y12d{bottom:241.513350px;}
.y159{bottom:241.513500px;}
.yb9{bottom:241.514100px;}
.y239{bottom:241.514700px;}
.y80{bottom:241.516200px;}
.y168{bottom:242.022928px;}
.y316{bottom:245.598169px;}
.y2e5{bottom:247.044151px;}
.y19b{bottom:247.295240px;}
.yc9{bottom:247.380600px;}
.y1c9{bottom:247.465875px;}
.y2e6{bottom:247.468945px;}
.y1d4{bottom:252.652641px;}
.y207{bottom:252.909300px;}
.y1fb{bottom:254.102462px;}
.y2a2{bottom:254.270897px;}
.y167{bottom:256.223550px;}
.y315{bottom:259.799991px;}
.yf8{bottom:260.985750px;}
.y12c{bottom:260.986350px;}
.y24a{bottom:260.986800px;}
.yf6{bottom:260.987100px;}
.y158{bottom:260.988000px;}
.yb8{bottom:260.988600px;}
.y238{bottom:260.989200px;}
.y7f{bottom:260.990700px;}
.y19a{bottom:261.497062px;}
.y2b{bottom:262.432350px;}
.y50{bottom:265.495001px;}
.y2e4{bottom:266.602706px;}
.yc8{bottom:266.855100px;}
.y1d3{bottom:266.939662px;}
.yf7{bottom:267.703800px;}
.y206{bottom:272.382300px;}
.y2a1{bottom:273.744253px;}
.y1c8{bottom:274.507050px;}
.y199{bottom:275.782884px;}
.y1fa{bottom:276.551782px;}
.y248{bottom:277.993650px;}
.y269{bottom:279.185400px;}
.y313{bottom:279.358547px;}
.y314{bottom:279.698142px;}
.y249{bottom:280.459800px;}
.y12b{bottom:280.460850px;}
.y157{bottom:280.461000px;}
.y247{bottom:280.461300px;}
.yb7{bottom:280.461600px;}
.y237{bottom:280.462200px;}
.y7e{bottom:280.465200px;}
.y2e3{bottom:280.804529px;}
.y1d2{bottom:281.141485px;}
.y4f{bottom:281.992395px;}
.y2a{bottom:283.436850px;}
.yc7{bottom:286.329600px;}
.y2a0{bottom:288.031275px;}
.y198{bottom:289.984706px;}
.y205{bottom:291.856800px;}
.y312{bottom:293.560369px;}
.y2e1{bottom:295.090350px;}
.y1f9{bottom:295.345947px;}
.y1d1{bottom:295.427306px;}
.y2e2{bottom:295.431146px;}
.y4e{bottom:298.489789px;}
.y268{bottom:298.659900px;}
.y12a{bottom:300.019350px;}
.y246{bottom:300.019800px;}
.yb6{bottom:300.020100px;}
.y236{bottom:300.020700px;}
.y156{bottom:300.021000px;}
.y7d{bottom:300.023700px;}
.y29f{bottom:302.233097px;}
.y197{bottom:304.271728px;}
.y29{bottom:304.441350px;}
.yc6{bottom:305.802600px;}
.y1d0{bottom:309.629129px;}
.y204{bottom:311.415300px;}
.y311{bottom:313.118925px;}
.y1c7{bottom:313.796250px;}
.y1f8{bottom:314.054913px;}
.y2e0{bottom:314.564907px;}
.y244{bottom:317.026650px;}
.y267{bottom:318.218400px;}
.y196{bottom:318.472350px;}
.y245{bottom:319.492800px;}
.y129{bottom:319.493850px;}
.y155{bottom:319.494000px;}
.yb5{bottom:319.494600px;}
.y235{bottom:319.495200px;}
.y7c{bottom:319.496700px;}
.y29e{bottom:321.791653px;}
.y1cf{bottom:323.914950px;}
.y4d{bottom:324.001470px;}
.yc5{bottom:325.361100px;}
.y28{bottom:325.445850px;}
.y310{bottom:327.320747px;}
.y2df{bottom:328.850728px;}
.y203{bottom:330.889800px;}
.y1f7{bottom:332.847878px;}
.y1c6{bottom:333.269250px;}
.y1c4{bottom:333.270750px;}
.y29d{bottom:335.993475px;}
.y243{bottom:336.500700px;}
.y128{bottom:338.966850px;}
.y154{bottom:338.968500px;}
.yb4{bottom:338.969100px;}
.y234{bottom:338.969700px;}
.y7b{bottom:338.971200px;}
.y1c5{bottom:339.987300px;}
.y4c{bottom:340.500064px;}
.y2dd{bottom:343.052550px;}
.y2de{bottom:343.477345px;}
.y26{bottom:344.069250px;}
.yc4{bottom:344.835600px;}
.y27{bottom:346.450350px;}
.y25{bottom:346.452525px;}
.y266{bottom:346.706400px;}
.y30f{bottom:346.794104px;}
.y202{bottom:350.364300px;}
.y1f6{bottom:351.556844px;}
.y1c3{bottom:352.829250px;}
.y29c{bottom:355.466832px;}
.y4b{bottom:356.997458px;}
.y153{bottom:358.527000px;}
.yb3{bottom:358.527600px;}
.y233{bottom:358.528200px;}
.y7a{bottom:358.529700px;}
.y30e{bottom:361.081125px;}
.y2dc{bottom:362.611106px;}
.yc3{bottom:364.310100px;}
.y127{bottom:364.478700px;}
.y265{bottom:366.179400px;}
.y263{bottom:366.181050px;}
.y24{bottom:367.371525px;}
.y29b{bottom:369.753853px;}
.y201{bottom:369.922800px;}
.y1f5{bottom:370.349809px;}
.y1c2{bottom:372.302250px;}
.y1c0{bottom:372.307050px;}
.y264{bottom:372.897600px;}
.y4a{bottom:373.494851px;}
.y2db{bottom:376.812928px;}
.yf5{bottom:378.000600px;}
.y232{bottom:378.001200px;}
.y152{bottom:378.001500px;}
.yb2{bottom:378.002100px;}
.y79{bottom:378.004200px;}
.y1c1{bottom:378.935400px;}
.y30d{bottom:380.554482px;}
.yc2{bottom:383.868600px;}
.y29a{bottom:384.039675px;}
.y262{bottom:385.739550px;}
.y23{bottom:388.376025px;}
.y1f4{bottom:389.058775px;}
.y200{bottom:389.395800px;}
.y49{bottom:389.992245px;}
.y2da{bottom:391.099950px;}
.y1bf{bottom:391.780050px;}
.y30c{bottom:394.841503px;}
.y151{bottom:397.474500px;}
.yb1{bottom:397.475100px;}
.y231{bottom:397.475700px;}
.y78{bottom:397.477200px;}
.yc1{bottom:403.341600px;}
.y299{bottom:403.514231px;}
.y261{bottom:405.212550px;}
.y2d8{bottom:405.301772px;}
.y2d9{bottom:405.726567px;}
.y47{bottom:406.489639px;}
.y48{bottom:406.914434px;}
.y1f3{bottom:407.852940px;}
.y1ff{bottom:408.870300px;}
.y30a{bottom:409.043326px;}
.y22{bottom:409.380525px;}
.y30b{bottom:409.468120px;}
.y1be{bottom:411.338550px;}
.y150{bottom:417.033000px;}
.yb0{bottom:417.033600px;}
.y230{bottom:417.034200px;}
.y77{bottom:417.037200px;}
.y298{bottom:417.716054px;}
.y2d7{bottom:424.860328px;}
.y1f2{bottom:426.560707px;}
.y1fe{bottom:428.344800px;}
.y309{bottom:428.601881px;}
.yc0{bottom:428.853450px;}
.y126{bottom:429.110850px;}
.y21{bottom:430.385025px;}
.y260{bottom:430.724400px;}
.y1bd{bottom:430.813050px;}
.y46{bottom:432.001320px;}
.yaf{bottom:436.508100px;}
.y22f{bottom:436.508700px;}
.y76{bottom:436.510200px;}
.y297{bottom:437.274609px;}
.y2d6{bottom:439.062150px;}
.y14f{bottom:442.459800px;}
.y308{bottom:442.803704px;}
.y1f1{bottom:445.354872px;}
.y1fd{bottom:447.903300px;}
.y125{bottom:448.583850px;}
.y1bc{bottom:450.287550px;}
.y20{bottom:451.390950px;}
.y296{bottom:451.476432px;}
.y2d5{bottom:453.347972px;}
.yf4{bottom:455.981100px;}
.yae{bottom:455.982600px;}
.y22e{bottom:455.983200px;}
.y75{bottom:455.984700px;}
.y45{bottom:457.513001px;}
.y305{bottom:462.362259px;}
.y307{bottom:462.617856px;}
.y1f0{bottom:464.062638px;}
.y306{bottom:464.913427px;}
.y1fc{bottom:467.376300px;}
.y124{bottom:468.143850px;}
.y1bb{bottom:469.846050px;}
.y25f{bottom:469.929300px;}
.y295{bottom:471.034987px;}
.y1f{bottom:472.395450px;}
.y2d4{bottom:472.822528px;}
.yad{bottom:475.541100px;}
.y22d{bottom:475.541700px;}
.y74{bottom:475.543200px;}
.yf3{bottom:481.492800px;}
.y304{bottom:481.836816px;}
.y1ef{bottom:482.856803px;}
.y44{bottom:483.024682px;}
.yd3{bottom:484.215496px;}
.y294{bottom:485.236810px;}
.y2d3{bottom:487.108350px;}
.y14e{bottom:487.531200px;}
.y123{bottom:487.616850px;}
.y1ba{bottom:489.320550px;}
.y25e{bottom:489.403800px;}
.y1e{bottom:493.399950px;}
.yac{bottom:495.014100px;}
.y22c{bottom:495.014700px;}
.yaa{bottom:495.015150px;}
.y73{bottom:495.017700px;}
.y303{bottom:496.122637px;}
.y2d2{bottom:501.310172px;}
.y1ee{bottom:501.565769px;}
.yab{bottom:501.647100px;}
.y293{bottom:504.710166px;}
.y14d{bottom:507.089700px;}
.y122{bottom:507.091350px;}
.y14b{bottom:507.093300px;}
.yd2{bottom:507.430406px;}
.y43{bottom:508.536363px;}
.y1b9{bottom:508.793550px;}
.y25d{bottom:508.876800px;}
.y302{bottom:510.324459px;}
.y14c{bottom:513.722700px;}
.y1d{bottom:514.404450px;}
.y22b{bottom:514.489200px;}
.ya9{bottom:514.489650px;}
.y72{bottom:514.490700px;}
.y2d0{bottom:515.597194px;}
.y2d1{bottom:515.851590px;}
.y291{bottom:518.997188px;}
.y292{bottom:519.336783px;}
.y1ed{bottom:520.358734px;}
.y210{bottom:521.121619px;}
.yd1{bottom:521.717428px;}
.y42{bottom:525.033757px;}
.y14a{bottom:526.566300px;}
.y121{bottom:526.649850px;}
.y1b8{bottom:528.268050px;}
.y25c{bottom:528.436800px;}
.y301{bottom:529.797816px;}
.ya8{bottom:533.962650px;}
.y22a{bottom:533.963700px;}
.y71{bottom:533.965200px;}
.y2cf{bottom:535.070550px;}
.y1c{bottom:535.408950px;}
.yd0{bottom:535.918050px;}
.y290{bottom:538.470544px;}
.y1ec{bottom:539.067700px;}
.yf2{bottom:544.083450px;}
.y300{bottom:544.084837px;}
.y20f{bottom:544.422928px;}
.y175{bottom:545.698200px;}
.y149{bottom:546.040800px;}
.y120{bottom:546.124350px;}
.y1b7{bottom:547.826550px;}
.y25b{bottom:547.909800px;}
.y2ce{bottom:549.357572px;}
.y41{bottom:550.545438px;}
.y28f{bottom:552.757566px;}
.ya7{bottom:553.521150px;}
.ya5{bottom:553.521750px;}
.y229{bottom:553.522200px;}
.y70{bottom:553.523700px;}
.y1b{bottom:556.413450px;}
.y1eb{bottom:557.860665px;}
.y2ff{bottom:558.371859px;}
.y20e{bottom:558.623550px;}
.ya6{bottom:560.154300px;}
.yf1{bottom:563.556450px;}
.y2cd{bottom:563.559394px;}
.y174{bottom:565.172700px;}
.y11f{bottom:565.597350px;}
.y148{bottom:565.599300px;}
.y40{bottom:567.042832px;}
.y1b6{bottom:567.301050px;}
.y25a{bottom:567.384300px;}
.y227{bottom:570.529050px;}
.y28e{bottom:572.230922px;}
.y228{bottom:572.995200px;}
.ya4{bottom:572.996250px;}
.y6f{bottom:572.998200px;}
.y1ea{bottom:576.569631px;}
.y1a{bottom:577.417950px;}
.y2fe{bottom:577.845215px;}
.y242{bottom:579.628200px;}
.yf0{bottom:583.030950px;}
.y2cc{bottom:583.117950px;}
.y3f{bottom:583.541426px;}
.y173{bottom:584.647200px;}
.y147{bottom:585.073800px;}
.y11e{bottom:585.155850px;}
.y11c{bottom:585.156900px;}
.y28b{bottom:586.517944px;}
.y28c{bottom:586.773540px;}
.y1b5{bottom:586.774050px;}
.y28d{bottom:586.857539px;}
.y259{bottom:586.942800px;}
.y226{bottom:590.003100px;}
.y11d{bottom:591.788850px;}
.y2fd{bottom:592.047038px;}
.ya3{bottom:592.469250px;}
.y225{bottom:592.471350px;}
.y6e{bottom:592.472700px;}
.y1e9{bottom:595.363796px;}
.y2cb{bottom:597.319772px;}
.y19{bottom:598.422450px;}
.y241{bottom:598.507050px;}
.y3e{bottom:600.038820px;}
.yef{bottom:602.589450px;}
.y172{bottom:604.205700px;}
.y146{bottom:604.548300px;}
.y11b{bottom:604.629900px;}
.y119{bottom:604.632300px;}
.y28a{bottom:605.991300px;}
.y2fc{bottom:606.332859px;}
.y1b4{bottom:606.334050px;}
.y258{bottom:606.417300px;}
.y11a{bottom:611.262900px;}
.y2ca{bottom:611.605593px;}
.y224{bottom:612.029850px;}
.y6d{bottom:612.031200px;}
.y1e8{bottom:614.071563px;}
.y3d{bottom:616.536213px;}
.ya2{bottom:617.981100px;}
.y18{bottom:619.426950px;}
.y289{bottom:620.278322px;}
.y170{bottom:621.127500px;}
.yee{bottom:622.063950px;}
.y171{bottom:623.678700px;}
.y16f{bottom:623.679300px;}
.y145{bottom:624.021300px;}
.y118{bottom:624.106800px;}
.y1b3{bottom:625.807050px;}
.y2c8{bottom:625.807416px;}
.y257{bottom:625.890300px;}
.y2c9{bottom:626.232211px;}
.y223{bottom:631.502850px;}
.y6c{bottom:631.504200px;}
.y1e7{bottom:632.865728px;}
.y3b{bottom:633.033607px;}
.y3c{bottom:633.373203px;}
.yec{bottom:639.070800px;}
.y288{bottom:639.752878px;}
.y2fb{bottom:640.094437px;}
.y17{bottom:640.431450px;}
.yed{bottom:641.536950px;}
.yeb{bottom:641.538000px;}
.y16e{bottom:643.153800px;}
.y144{bottom:643.579800px;}
.y117{bottom:643.665300px;}
.y1b2{bottom:645.281550px;}
.y256{bottom:645.364800px;}
.y2c7{bottom:645.365971px;}
.y222{bottom:650.977350px;}
.y6b{bottom:650.978700px;}
.y240{bottom:651.574650px;}
.y1e6{bottom:651.574694px;}
.y287{bottom:654.038700px;}
.y2fa{bottom:654.295060px;}
.y3a{bottom:657.609300px;}
.ye9{bottom:658.544850px;}
.y2c6{bottom:659.567794px;}
.yea{bottom:661.011000px;}
.ye8{bottom:661.012650px;}
.y16d{bottom:662.628300px;}
.y143{bottom:663.054300px;}
.y116{bottom:663.139800px;}
.y1b1{bottom:664.840050px;}
.y255{bottom:664.923300px;}
.y1e5{bottom:670.367659px;}
.y221{bottom:670.535850px;}
.y6a{bottom:670.537200px;}
.ya1{bottom:671.133150px;}
.y16{bottom:673.426650px;}
.y286{bottom:673.513256px;}
.y2c4{bottom:673.854815px;}
.y2c5{bottom:674.194411px;}
.ye7{bottom:680.571150px;}
.y16c{bottom:682.186800px;}
.y142{bottom:682.528800px;}
.y115{bottom:682.612800px;}
.y1b0{bottom:684.314550px;}
.y254{bottom:684.397800px;}
.y285{bottom:687.713879px;}
.y2f9{bottom:688.055438px;}
.y1e4{bottom:689.076625px;}
.y220{bottom:690.010350px;}
.y69{bottom:690.011700px;}
.ya0{bottom:690.607650px;}
.y2c3{bottom:693.328172px;}
.ye6{bottom:700.045650px;}
.y16b{bottom:701.659800px;}
.y284{bottom:702.000900px;}
.y114{bottom:702.087300px;}
.y2f8{bottom:702.342459px;}
.y1af{bottom:703.787550px;}
.y253{bottom:703.870800px;}
.y2c2{bottom:707.615193px;}
.y1e3{bottom:707.869590px;}
.y21f{bottom:709.483350px;}
.y68{bottom:709.484700px;}
.y9f{bottom:710.082150px;}
.ye5{bottom:719.520150px;}
.y283{bottom:721.474257px;}
.y141{bottom:721.560300px;}
.y113{bottom:721.645800px;}
.y2c1{bottom:721.815816px;}
.y1ae{bottom:723.262050px;}
.y1e2{bottom:726.578556px;}
.y67{bottom:728.959200px;}
.y252{bottom:729.382650px;}
.y9e{bottom:729.640650px;}
.y15{bottom:733.721250px;}
.y21e{bottom:734.995200px;}
.y282{bottom:735.761278px;}
.y2f7{bottom:736.102837px;}
.ye4{bottom:739.078650px;}
.y140{bottom:741.034800px;}
.y112{bottom:741.120300px;}
.y2c0{bottom:741.290372px;}
.y187{bottom:741.545969px;}
.y1ad{bottom:742.820550px;}
.y39{bottom:744.521100px;}
.y1e1{bottom:745.372721px;}
.y66{bottom:748.517700px;}
.y9d{bottom:749.115150px;}
.y280{bottom:749.963101px;}
.y2f6{bottom:750.304660px;}
.y281{bottom:750.387895px;}
.y2bf{bottom:755.577394px;}
.ye3{bottom:758.551650px;}
.y111{bottom:760.593300px;}
.y38{bottom:761.783100px;}
.y1ac{bottom:762.295050px;}
.y14{bottom:763.740075px;}
.y186{bottom:764.080488px;}
.y65{bottom:767.992200px;}
.y9c{bottom:768.588150px;}
.y27f{bottom:769.521656px;}
.y2be{bottom:769.863215px;}
.ye2{bottom:778.026150px;}
.y13{bottom:778.706288px;}
.y37{bottom:778.961100px;}
.y13f{bottom:780.067800px;}
.y110{bottom:780.153300px;}
.y1ab{bottom:781.768050px;}
.y185{bottom:782.874653px;}
.y27e{bottom:783.723479px;}
.y2f5{bottom:784.065038px;}
.y64{bottom:787.466700px;}
.y21d{bottom:788.061900px;}
.y9b{bottom:788.062650px;}
.y2bd{bottom:789.337772px;}
.y12{bottom:793.673700px;}
.y36{bottom:796.224600px;}
.ye1{bottom:797.584650px;}
.y27d{bottom:798.009300px;}
.y13e{bottom:799.542300px;}
.y10f{bottom:799.626300px;}
.y1aa{bottom:801.328050px;}
.y184{bottom:801.582419px;}
.y2bc{bottom:803.623593px;}
.y63{bottom:807.025200px;}
.y21c{bottom:807.620400px;}
.y9a{bottom:807.621150px;}
.y10{bottom:808.725112px;}
.y11{bottom:809.064708px;}
.y35{bottom:813.486600px;}
.ye0{bottom:817.059150px;}
.y2f4{bottom:817.825416px;}
.y27c{bottom:818.248800px;}
.y10e{bottom:819.100800px;}
.y183{bottom:820.376584px;}
.y1a9{bottom:820.801050px;}
.y2bb{bottom:823.098150px;}
.ye{bottom:823.692525px;}
.yf{bottom:824.117320px;}
.y62{bottom:826.498200px;}
.y21b{bottom:827.093400px;}
.y99{bottom:827.095650px;}
.yde{bottom:834.066000px;}
.ydf{bottom:836.532150px;}
.ydd{bottom:836.532750px;}
.y2ba{bottom:837.298772px;}
.y13d{bottom:838.573800px;}
.y10d{bottom:838.659300px;}
.yd{bottom:838.743937px;}
.y182{bottom:839.085550px;}
.y1a8{bottom:840.275550px;}
.y61{bottom:845.972700px;}
.y21a{bottom:846.567900px;}
.y98{bottom:846.568650px;}
.y2b9{bottom:851.585794px;}
.ydb{bottom:853.540050px;}
.yb{bottom:853.710150px;}
.yc{bottom:854.049746px;}
.ydc{bottom:856.091250px;}
.yda{bottom:856.092900px;}
.y181{bottom:857.793316px;}
.y13c{bottom:858.048300px;}
.y10c{bottom:858.133800px;}
.y1a7{bottom:859.834050px;}
.y60{bottom:865.531200px;}
.y219{bottom:866.126400px;}
.y97{bottom:866.127150px;}
.y2b8{bottom:871.059150px;}
.yd9{bottom:875.565900px;}
.y180{bottom:876.587481px;}
.y13b{bottom:877.522800px;}
.y10b{bottom:877.606800px;}
.y1a6{bottom:879.308550px;}
.ya{bottom:880.667700px;}
.y8{bottom:880.668300px;}
.y5f{bottom:885.005700px;}
.y2b7{bottom:885.346172px;}
.y218{bottom:885.600900px;}
.y96{bottom:885.601650px;}
.y31e{bottom:885.686967px;}
.y251{bottom:886.366650px;}
.y9{bottom:886.705500px;}
.y27b{bottom:887.133150px;}
.yd8{bottom:895.040400px;}
.y17f{bottom:895.296447px;}
.y10a{bottom:897.081300px;}
.y5{bottom:897.250350px;}
.y6{bottom:897.589200px;}
.y1a5{bottom:898.781550px;}
.y2b6{bottom:899.547994px;}
.y2f3{bottom:899.972789px;}
.y7{bottom:903.203100px;}
.y5e{bottom:904.478700px;}
.y31d{bottom:904.820728px;}
.y217{bottom:905.073900px;}
.y215{bottom:905.075550px;}
.y95{bottom:905.076150px;}
.y279{bottom:906.606150px;}
.y27a{bottom:907.371150px;}
.y216{bottom:911.792100px;}
.y17e{bottom:914.089412px;}
.yd7{bottom:914.514900px;}
.y13a{bottom:916.554300px;}
.y109{bottom:916.639800px;}
.y1a4{bottom:918.340050px;}
.y2b5{bottom:919.106550px;}
.y214{bottom:924.634050px;}
.y94{bottom:924.634650px;}
.y5d{bottom:929.990550px;}
.y17d{bottom:932.798379px;}
.y2b3{bottom:933.308372px;}
.y277{bottom:933.564150px;}
.y2b4{bottom:933.733167px;}
.yd6{bottom:934.073400px;}
.y278{bottom:934.414650px;}
.y4{bottom:934.669950px;}
.y108{bottom:936.114300px;}
.y31c{bottom:938.581106px;}
.y139{bottom:942.066975px;}
.y1a3{bottom:943.766850px;}
.y213{bottom:944.108550px;}
.y93{bottom:944.109150px;}
.y17c{bottom:951.591344px;}
.y2b2{bottom:952.866928px;}
.y106{bottom:953.121150px;}
.yd5{bottom:953.546400px;}
.y107{bottom:955.587300px;}
.y105{bottom:955.588950px;}
.y276{bottom:960.606150px;}
.y212{bottom:963.581550px;}
.y92{bottom:963.582150px;}
.y2b1{bottom:967.068750px;}
.y3{bottom:968.430750px;}
.y138{bottom:969.023550px;}
.y17b{bottom:970.300310px;}
.y104{bottom:975.147450px;}
.yd4{bottom:979.058250px;}
.y1a1{bottom:980.588850px;}
.y2b0{bottom:981.355772px;}
.y1a2{bottom:983.140050px;}
.y91{bottom:983.140650px;}
.y1a0{bottom:983.141100px;}
.y2f2{bottom:986.542107px;}
.y274{bottom:987.562650px;}
.y275{bottom:988.413150px;}
.y17a{bottom:989.093275px;}
.y211{bottom:989.773200px;}
.y103{bottom:994.621950px;}
.y19e{bottom:1000.062900px;}
.y2af{bottom:1000.829128px;}
.y2{bottom:1002.188850px;}
.y19f{bottom:1002.614100px;}
.y90{bottom:1002.615150px;}
.y8c{bottom:1004.564518px;}
.y179{bottom:1007.802241px;}
.y102{bottom:1014.094950px;}
.y273{bottom:1014.606150px;}
.y2ae{bottom:1015.116150px;}
.y2f1{bottom:1015.455745px;}
.y8b{bottom:1021.063112px;}
.y8f{bottom:1022.089650px;}
.y178{bottom:1026.596406px;}
.y2ad{bottom:1029.316772px;}
.y101{bottom:1033.653450px;}
.y2f0{bottom:1034.589506px;}
.y1{bottom:1035.949500px;}
.y5c{bottom:1040.626950px;}
.y1e0{bottom:1040.797029px;}
.y8e{bottom:1041.562650px;}
.y89{bottom:1046.574793px;}
.y8a{bottom:1046.914388px;}
.y177{bottom:1048.791329px;}
.y19d{bottom:1058.569950px;}
.y100{bottom:1059.080250px;}
.y8d{bottom:1061.121150px;}
.y5b{bottom:1061.631450px;}
.y272{bottom:1061.886150px;}
.y88{bottom:1063.072186px;}
.y176{bottom:1063.077150px;}
.y2ac{bottom:1063.416746px;}
.y87{bottom:1118.692800px;}
.h11{height:24.796125px;}
.h4{height:27.932275px;}
.h8{height:29.446125px;}
.hf{height:29.996550px;}
.ha{height:35.624555px;}
.h12{height:36.755773px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hc{height:39.119511px;}
.hb{height:40.559493px;}
.h13{height:41.100000px;}
.h3{height:41.904000px;}
.h7{height:44.175000px;}
.h9{height:45.000000px;}
.he{height:55.140000px;}
.h10{height:55.799535px;}
.hd{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:54.000000px;}
.x24{left:59.783546px;}
.x1e{left:71.433000px;}
.x87{left:92.436720px;}
.x83{left:99.070237px;}
.x84{left:100.345821px;}
.x88{left:106.978138px;}
.x7f{left:109.955301px;}
.x69{left:111.911276px;}
.x82{left:113.611655px;}
.x80{left:115.228035px;}
.x85{left:117.013612px;}
.x1f{left:118.033217px;}
.x89{left:119.564780px;}
.x81{left:121.520756px;}
.x86{left:122.881539px;}
.x7c{left:127.813477px;}
.x23{left:142.780508px;}
.x27{left:155.366333px;}
.x6c{left:159.277084px;}
.x22{left:161.148679px;}
.x6a{left:162.593843px;}
.x6b{left:167.610980px;}
.x6d{left:182.919600px;}
.x20{left:190.826708px;}
.x8a{left:192.954300px;}
.x21{left:198.225815px;}
.x73{left:207.751050px;}
.x30{left:288.028200px;}
.x1{left:300.018750px;}
.x9b{left:307.332150px;}
.x76{left:310.648800px;}
.x8e{left:313.965300px;}
.x25{left:317.961750px;}
.x1b{left:320.343300px;}
.x42{left:324.510150px;}
.x2c{left:330.718050px;}
.x9c{left:332.247439px;}
.x43{left:333.779400px;}
.x1c{left:341.007750px;}
.x2d{left:343.303800px;}
.x3e{left:346.025100px;}
.x77{left:348.831450px;}
.x8f{left:350.617200px;}
.x50{left:351.722700px;}
.xa0{left:355.293150px;}
.x51{left:357.080250px;}
.xa3{left:359.715463px;}
.x6e{left:364.223550px;}
.x3f{left:365.754300px;}
.x31{left:368.305500px;}
.x15{left:383.271309px;}
.x2{left:386.927700px;}
.x32{left:387.949500px;}
.xa7{left:390.075084px;}
.xa8{left:391.265469px;}
.x3{left:392.711700px;}
.x63{left:395.347950px;}
.x4{left:398.324400px;}
.xf{left:399.855000px;}
.x44{left:403.596750px;}
.x10{left:405.382650px;}
.x64{left:411.335400px;}
.x90{left:413.206200px;}
.xa6{left:414.906373px;}
.xa5{left:416.265956px;}
.x12{left:417.372483px;}
.x28{left:419.073900px;}
.x7d{left:421.112611px;}
.x29{left:427.662900px;}
.x33{left:429.023550px;}
.x65{left:432.000000px;}
.x74{left:446.116500px;}
.x66{left:447.987300px;}
.x34{left:452.069250px;}
.xa4{left:455.639864px;}
.x45{left:459.807750px;}
.x98{left:463.887750px;}
.x46{left:465.335400px;}
.x67{left:468.651900px;}
.x61{left:470.607750px;}
.x35{left:471.798300px;}
.x47{left:476.815650px;}
.x13{left:478.344921px;}
.x3a{left:480.982650px;}
.x48{left:482.428200px;}
.x68{left:484.639350px;}
.x6f{left:488.381100px;}
.x62{left:489.911700px;}
.x52{left:492.207750px;}
.x36{left:493.398300px;}
.x53{left:497.565300px;}
.x91{left:498.585750px;}
.x3b{left:500.711700px;}
.x94{left:502.752750px;}
.x2e{left:505.388850px;}
.x54{left:506.834550px;}
.xa9{left:508.363605px;}
.x37{left:509.811000px;}
.x5{left:515.168400px;}
.x2f{left:517.974750px;}
.x11{left:522.226650px;}
.x6{left:529.114950px;}
.x49{left:534.727500px;}
.x26{left:537.023550px;}
.x99{left:538.041750px;}
.x3c{left:541.275450px;}
.x55{left:543.486600px;}
.x96{left:544.674750px;}
.x4a{left:546.462900px;}
.xad{left:547.821512px;}
.x92{left:550.884900px;}
.x4b{left:552.075450px;}
.x4c{left:553.436100px;}
.x97{left:554.793750px;}
.x9a{left:556.325250px;}
.x4d{left:558.793650px;}
.x3d{left:561.004650px;}
.x78{left:570.529050px;}
.x38{left:571.719600px;}
.x5f{left:575.121150px;}
.x56{left:580.138500px;}
.xab{left:582.772275px;}
.x7{left:584.219250px;}
.x39{left:591.448800px;}
.x8{left:595.359450px;}
.x2a{left:597.061350px;}
.x5b{left:601.228200px;}
.x2b{left:602.333850px;}
.x5c{left:606.585750px;}
.x93{left:609.817200px;}
.x57{left:616.790550px;}
.x40{left:618.406200px;}
.x9{left:621.977850px;}
.x75{left:625.804650px;}
.xa{left:627.505500px;}
.x9f{left:629.459723px;}
.x58{left:632.777850px;}
.xaa{left:636.772800px;}
.x41{left:638.135400px;}
.x18{left:642.980463px;}
.x59{left:648.000000px;}
.x16{left:650.804365px;}
.x5a{left:667.388850px;}
.xac{left:678.357080px;}
.x4e{left:684.311700px;}
.x4f{left:689.669250px;}
.x9d{left:697.660871px;}
.x70{left:703.190550px;}
.x71{left:704.976300px;}
.x19{left:710.248800px;}
.x17{left:716.369146px;}
.x72{left:724.280250px;}
.x7e{left:726.487194px;}
.x1a{left:730.828200px;}
.x79{left:735.250350px;}
.xb{left:736.696050px;}
.x5d{left:739.842450px;}
.xc{left:742.223550px;}
.x5e{left:745.200000px;}
.x8b{left:779.470800px;}
.x95{left:786.864750px;}
.x8c{left:788.740050px;}
.x9e{left:812.207839px;}
.xd{left:821.055000px;}
.x60{left:822.500700px;}
.xe{left:826.582650px;}
.xa1{left:836.359105px;}
.x14{left:841.546781px;}
.x7a{left:842.740050px;}
.xa2{left:846.224182px;}
.x7b{left:848.097600px;}
.x8d{left:858.982650px;}
@media print{
.v3{vertical-align:-9.070820pt;}
.v2{vertical-align:-2.720000pt;}
.v1{vertical-align:-1.204800pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.123200pt;}
.ls1c{letter-spacing:-1.067200pt;}
.ls20{letter-spacing:-1.066653pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.213331pt;}
.ls1d{letter-spacing:-0.212800pt;}
.ls19{letter-spacing:-0.211200pt;}
.ls21{letter-spacing:-0.211198pt;}
.ls34{letter-spacing:-0.190548pt;}
.ls1e{letter-spacing:-0.189131pt;}
.ls1b{letter-spacing:-0.188775pt;}
.ls23{letter-spacing:-0.188423pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.101333pt;}
.ls27{letter-spacing:0.238195pt;}
.ls25{letter-spacing:0.266667pt;}
.ls41{letter-spacing:0.400000pt;}
.ls40{letter-spacing:0.405333pt;}
.ls2a{letter-spacing:0.568823pt;}
.ls28{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.904522pt;}
.ls12{letter-spacing:0.908789pt;}
.ls15{letter-spacing:1.211718pt;}
.ls11{letter-spacing:1.215985pt;}
.ls43{letter-spacing:3.933817pt;}
.ls3{letter-spacing:4.232480pt;}
.ls8{letter-spacing:4.236747pt;}
.ls1{letter-spacing:4.876800pt;}
.ls0{letter-spacing:4.881600pt;}
.ls13{letter-spacing:7.790836pt;}
.ls9{letter-spacing:8.930022pt;}
.ls35{letter-spacing:8.947088pt;}
.ls44{letter-spacing:9.070820pt;}
.ls3a{letter-spacing:9.092153pt;}
.ls2e{letter-spacing:9.104953pt;}
.ls14{letter-spacing:10.585468pt;}
.ls10{letter-spacing:10.589734pt;}
.lsa{letter-spacing:10.974400pt;}
.ls22{letter-spacing:10.976000pt;}
.ls2c{letter-spacing:11.072000pt;}
.lsf{letter-spacing:11.096000pt;}
.lse{letter-spacing:11.106133pt;}
.lsc{letter-spacing:11.136533pt;}
.ls37{letter-spacing:11.157333pt;}
.ls38{letter-spacing:11.178667pt;}
.lsb{letter-spacing:11.217600pt;}
.ls2d{letter-spacing:11.269333pt;}
.ls3d{letter-spacing:11.274667pt;}
.ls3c{letter-spacing:11.360000pt;}
.lsd{letter-spacing:11.389867pt;}
.ls29{letter-spacing:11.669333pt;}
.ls2b{letter-spacing:11.818667pt;}
.ls26{letter-spacing:11.962667pt;}
.ls36{letter-spacing:12.560000pt;}
.ls39{letter-spacing:13.066667pt;}
.ls6{letter-spacing:13.307567pt;}
.ls3e{letter-spacing:13.408000pt;}
.ls5{letter-spacing:13.606230pt;}
.ls4{letter-spacing:13.610497pt;}
.ls3f{letter-spacing:15.653333pt;}
.ls2{letter-spacing:18.474436pt;}
.ls7{letter-spacing:18.478702pt;}
.ls2f{letter-spacing:263.992433pt;}
.ls32{letter-spacing:277.974125pt;}
.ls30{letter-spacing:279.411974pt;}
.ls33{letter-spacing:292.412345pt;}
.ls3b{letter-spacing:439.363041pt;}
.ls31{letter-spacing:644.365279pt;}
.ws40{word-spacing:-23.346908pt;}
.wsa2{word-spacing:-17.600000pt;}
.ws1ba{word-spacing:-12.000000pt;}
.ws115{word-spacing:-11.989183pt;}
.ws1c{word-spacing:-11.775853pt;}
.ws12b{word-spacing:-11.685767pt;}
.ws48{word-spacing:-9.599880pt;}
.ws13d{word-spacing:-7.365333pt;}
.ws1a9{word-spacing:-6.986667pt;}
.ws1ab{word-spacing:-6.698667pt;}
.wsd0{word-spacing:-6.570667pt;}
.ws6a{word-spacing:-6.400000pt;}
.wsf5{word-spacing:-6.234667pt;}
.ws13c{word-spacing:-6.144000pt;}
.wsa7{word-spacing:-6.096000pt;}
.ws1a1{word-spacing:-5.632000pt;}
.ws18f{word-spacing:-5.509333pt;}
.ws198{word-spacing:-5.306667pt;}
.ws1a6{word-spacing:-5.296000pt;}
.ws1a4{word-spacing:-5.184000pt;}
.ws187{word-spacing:-5.066667pt;}
.ws135{word-spacing:-5.056000pt;}
.ws130{word-spacing:-4.704000pt;}
.ws1a5{word-spacing:-4.640000pt;}
.ws134{word-spacing:-4.618667pt;}
.ws190{word-spacing:-4.560000pt;}
.ws196{word-spacing:-4.314667pt;}
.wsf7{word-spacing:-3.993567pt;}
.ws13b{word-spacing:-3.978667pt;}
.wsd9{word-spacing:-3.974367pt;}
.ws9b{word-spacing:-3.961567pt;}
.ws144{word-spacing:-3.948767pt;}
.ws12d{word-spacing:-3.930667pt;}
.wsb4{word-spacing:-3.923167pt;}
.wse1{word-spacing:-3.916767pt;}
.ws1a0{word-spacing:-3.893333pt;}
.ws1af{word-spacing:-3.888000pt;}
.ws19c{word-spacing:-3.872000pt;}
.wsc3{word-spacing:-3.820768pt;}
.ws1b6{word-spacing:-3.763169pt;}
.wsf4{word-spacing:-3.711969pt;}
.ws131{word-spacing:-3.701333pt;}
.ws1b2{word-spacing:-3.628770pt;}
.ws133{word-spacing:-3.594667pt;}
.ws19d{word-spacing:-3.578667pt;}
.wsb1{word-spacing:-3.424000pt;}
.ws2a{word-spacing:-3.404800pt;}
.ws1ec{word-spacing:-3.345025pt;}
.wsa5{word-spacing:-3.306667pt;}
.ws1f3{word-spacing:-3.199960pt;}
.ws17{word-spacing:-3.178627pt;}
.ws1e2{word-spacing:-3.170094pt;}
.ws1a{word-spacing:-3.157294pt;}
.ws1d9{word-spacing:-3.148761pt;}
.ws140{word-spacing:-3.146667pt;}
.ws1f2{word-spacing:-3.131694pt;}
.ws1ef{word-spacing:-3.127428pt;}
.ws24{word-spacing:-3.080533pt;}
.ws14e{word-spacing:-3.076228pt;}
.wsfe{word-spacing:-3.059162pt;}
.wsc0{word-spacing:-3.054895pt;}
.ws1d8{word-spacing:-3.050629pt;}
.ws1cf{word-spacing:-3.025029pt;}
.ws5{word-spacing:-3.019200pt;}
.ws30{word-spacing:-3.014667pt;}
.ws1dc{word-spacing:-3.007962pt;}
.wse{word-spacing:-2.999429pt;}
.ws128{word-spacing:-2.995163pt;}
.ws152{word-spacing:-2.986629pt;}
.wsf{word-spacing:-2.982363pt;}
.ws1f0{word-spacing:-2.978096pt;}
.ws27{word-spacing:-2.974133pt;}
.ws121{word-spacing:-2.973829pt;}
.ws6{word-spacing:-2.971200pt;}
.ws141{word-spacing:-2.970667pt;}
.ws1d3{word-spacing:-2.969563pt;}
.ws123{word-spacing:-2.965296pt;}
.ws8a{word-spacing:-2.961030pt;}
.ws1aa{word-spacing:-2.960000pt;}
.ws1ea{word-spacing:-2.956763pt;}
.ws2c{word-spacing:-2.953867pt;}
.ws151{word-spacing:-2.952496pt;}
.ws20{word-spacing:-2.948800pt;}
.ws1d2{word-spacing:-2.943963pt;}
.ws8{word-spacing:-2.942400pt;}
.ws1c9{word-spacing:-2.939697pt;}
.wsc2{word-spacing:-2.931163pt;}
.ws4{word-spacing:-2.928000pt;}
.ws1e8{word-spacing:-2.926897pt;}
.ws1eb{word-spacing:-2.922630pt;}
.ws1c6{word-spacing:-2.918364pt;}
.ws10{word-spacing:-2.914097pt;}
.ws11f{word-spacing:-2.909830pt;}
.ws1ce{word-spacing:-2.901297pt;}
.ws21{word-spacing:-2.898133pt;}
.ws16{word-spacing:-2.897030pt;}
.ws37{word-spacing:-2.893067pt;}
.ws104{word-spacing:-2.892764pt;}
.ws1b{word-spacing:-2.888497pt;}
.ws25{word-spacing:-2.888000pt;}
.ws1e7{word-spacing:-2.884231pt;}
.ws18{word-spacing:-2.879964pt;}
.ws2b{word-spacing:-2.877867pt;}
.ws19{word-spacing:-2.875697pt;}
.ws13a{word-spacing:-2.874667pt;}
.ws1cc{word-spacing:-2.871431pt;}
.ws97{word-spacing:-2.869333pt;}
.ws22{word-spacing:-2.867733pt;}
.ws124{word-spacing:-2.867164pt;}
.ws1de{word-spacing:-2.862898pt;}
.ws1cb{word-spacing:-2.858631pt;}
.ws101{word-spacing:-2.854364pt;}
.ws1d1{word-spacing:-2.850098pt;}
.ws18b{word-spacing:-2.845831pt;}
.ws18c{word-spacing:-2.841564pt;}
.ws109{word-spacing:-2.837298pt;}
.ws129{word-spacing:-2.833031pt;}
.wsbf{word-spacing:-2.828765pt;}
.ws1f{word-spacing:-2.827200pt;}
.wsff{word-spacing:-2.824498pt;}
.ws1f5{word-spacing:-2.820231pt;}
.ws122{word-spacing:-2.815965pt;}
.ws15{word-spacing:-2.811698pt;}
.ws105{word-spacing:-2.807432pt;}
.ws29{word-spacing:-2.806933pt;}
.ws150{word-spacing:-2.798898pt;}
.ws1e9{word-spacing:-2.794632pt;}
.ws7{word-spacing:-2.793600pt;}
.ws26{word-spacing:-2.791733pt;}
.ws3f{word-spacing:-2.790365pt;}
.ws1ee{word-spacing:-2.786099pt;}
.ws10a{word-spacing:-2.781832pt;}
.ws3d{word-spacing:-2.777565pt;}
.ws185{word-spacing:-2.773299pt;}
.ws1d{word-spacing:-2.771467pt;}
.ws1c7{word-spacing:-2.769032pt;}
.ws28{word-spacing:-2.766400pt;}
.ws108{word-spacing:-2.764765pt;}
.ws1c3{word-spacing:-2.760499pt;}
.ws147{word-spacing:-2.747699pt;}
.wsd{word-spacing:-2.743432pt;}
.ws2f{word-spacing:-2.741067pt;}
.ws1c5{word-spacing:-2.739166pt;}
.ws1e4{word-spacing:-2.734899pt;}
.ws14d{word-spacing:-2.726366pt;}
.ws1f4{word-spacing:-2.722099pt;}
.ws9{word-spacing:-2.721600pt;}
.ws1d6{word-spacing:-2.717833pt;}
.ws10c{word-spacing:-2.713566pt;}
.ws1da{word-spacing:-2.705033pt;}
.ws11{word-spacing:-2.700766pt;}
.ws11e{word-spacing:-2.696500pt;}
.ws149{word-spacing:-2.692233pt;}
.ws1df{word-spacing:-2.687966pt;}
.ws1e3{word-spacing:-2.683700pt;}
.ws12{word-spacing:-2.679433pt;}
.ws1ed{word-spacing:-2.670900pt;}
.wsa{word-spacing:-2.668800pt;}
.ws1d7{word-spacing:-2.662367pt;}
.ws14f{word-spacing:-2.658100pt;}
.ws34{word-spacing:-2.654933pt;}
.wsbd{word-spacing:-2.653833pt;}
.ws2e{word-spacing:-2.649867pt;}
.ws14{word-spacing:-2.649567pt;}
.ws100{word-spacing:-2.645300pt;}
.wsb{word-spacing:-2.625600pt;}
.ws1e{word-spacing:-2.624533pt;}
.ws148{word-spacing:-2.623967pt;}
.ws1cd{word-spacing:-2.611167pt;}
.ws3b{word-spacing:-2.604267pt;}
.ws126{word-spacing:-2.602634pt;}
.ws39{word-spacing:-2.599200pt;}
.ws1d4{word-spacing:-2.598368pt;}
.ws1e1{word-spacing:-2.589834pt;}
.ws31{word-spacing:-2.589067pt;}
.ws103{word-spacing:-2.585568pt;}
.ws3c{word-spacing:-2.578933pt;}
.ws102{word-spacing:-2.572768pt;}
.ws1f1{word-spacing:-2.564235pt;}
.ws153{word-spacing:-2.555701pt;}
.ws23{word-spacing:-2.553600pt;}
.ws14c{word-spacing:-2.547168pt;}
.ws1c8{word-spacing:-2.542902pt;}
.ws1e5{word-spacing:-2.538635pt;}
.ws1dd{word-spacing:-2.530102pt;}
.ws1a2{word-spacing:-2.528000pt;}
.ws1db{word-spacing:-2.525835pt;}
.wsbe{word-spacing:-2.517302pt;}
.ws33{word-spacing:-2.513067pt;}
.ws13{word-spacing:-2.513035pt;}
.wsc{word-spacing:-2.500235pt;}
.ws14a{word-spacing:-2.495969pt;}
.ws146{word-spacing:-2.487436pt;}
.ws125{word-spacing:-2.483169pt;}
.ws1ca{word-spacing:-2.474636pt;}
.ws127{word-spacing:-2.470369pt;}
.ws1c4{word-spacing:-2.466103pt;}
.ws19f{word-spacing:-2.464000pt;}
.ws14b{word-spacing:-2.461836pt;}
.wsc1{word-spacing:-2.457569pt;}
.ws13e{word-spacing:-2.448000pt;}
.ws1e6{word-spacing:-2.444769pt;}
.ws3a{word-spacing:-2.437067pt;}
.ws3{word-spacing:-2.419200pt;}
.ws120{word-spacing:-2.410637pt;}
.ws11c{word-spacing:-2.402103pt;}
.ws2{word-spacing:-2.390400pt;}
.ws2d{word-spacing:-2.381333pt;}
.ws1{word-spacing:-2.371200pt;}
.ws116{word-spacing:-2.367970pt;}
.ws1e0{word-spacing:-2.359437pt;}
.ws0{word-spacing:-2.355171pt;}
.ws118{word-spacing:-2.346637pt;}
.ws38{word-spacing:-2.310400pt;}
.ws10e{word-spacing:-2.265572pt;}
.ws32{word-spacing:-2.224267pt;}
.ws35{word-spacing:-2.209067pt;}
.ws13f{word-spacing:-2.170667pt;}
.ws11b{word-spacing:-2.167440pt;}
.ws36{word-spacing:-2.153333pt;}
.ws11a{word-spacing:-2.069307pt;}
.ws10b{word-spacing:-2.035175pt;}
.wsd2{word-spacing:-1.216000pt;}
.wsea{word-spacing:-1.200000pt;}
.wse4{word-spacing:-1.189333pt;}
.wse8{word-spacing:-1.168000pt;}
.wse3{word-spacing:-1.120000pt;}
.wse6{word-spacing:-1.061333pt;}
.wse9{word-spacing:-1.056000pt;}
.wse7{word-spacing:-1.029333pt;}
.ws56{word-spacing:-0.938655pt;}
.wsd4{word-spacing:-0.917333pt;}
.wscc{word-spacing:-0.906667pt;}
.wscd{word-spacing:-0.890667pt;}
.wscb{word-spacing:-0.880000pt;}
.ws7c{word-spacing:-0.821333pt;}
.ws59{word-spacing:-0.814923pt;}
.ws106{word-spacing:-0.810667pt;}
.wsd8{word-spacing:-0.805333pt;}
.ws52{word-spacing:-0.793590pt;}
.ws4e{word-spacing:-0.780790pt;}
.ws1b1{word-spacing:-0.773333pt;}
.wscf{word-spacing:-0.768000pt;}
.ws8d{word-spacing:-0.763724pt;}
.ws47{word-spacing:-0.759457pt;}
.ws87{word-spacing:-0.757333pt;}
.wsd3{word-spacing:-0.741333pt;}
.ws60{word-spacing:-0.738124pt;}
.wsc7{word-spacing:-0.725333pt;}
.ws5b{word-spacing:-0.725324pt;}
.ws1ad{word-spacing:-0.720000pt;}
.ws62{word-spacing:-0.716791pt;}
.wsd1{word-spacing:-0.714667pt;}
.wse5{word-spacing:-0.709333pt;}
.wsc9{word-spacing:-0.704000pt;}
.ws4c{word-spacing:-0.703991pt;}
.ws18d{word-spacing:-0.693333pt;}
.wsc4{word-spacing:-0.688000pt;}
.ws197{word-spacing:-0.682667pt;}
.ws4a{word-spacing:-0.669858pt;}
.wsc5{word-spacing:-0.666667pt;}
.wsd6{word-spacing:-0.661333pt;}
.ws50{word-spacing:-0.661325pt;}
.ws5e{word-spacing:-0.657058pt;}
.wsce{word-spacing:-0.656000pt;}
.wsf3{word-spacing:-0.650667pt;}
.ws55{word-spacing:-0.644259pt;}
.ws7d{word-spacing:-0.634667pt;}
.ws4f{word-spacing:-0.631459pt;}
.wsd5{word-spacing:-0.624000pt;}
.ws4b{word-spacing:-0.622926pt;}
.ws99{word-spacing:-0.618667pt;}
.ws46{word-spacing:-0.605859pt;}
.wsca{word-spacing:-0.602667pt;}
.ws57{word-spacing:-0.601592pt;}
.ws5a{word-spacing:-0.597326pt;}
.ws5f{word-spacing:-0.588793pt;}
.wsdb{word-spacing:-0.576000pt;}
.ws44{word-spacing:-0.575993pt;}
.ws64{word-spacing:-0.571726pt;}
.wsba{word-spacing:-0.565333pt;}
.ws5d{word-spacing:-0.563193pt;}
.ws88{word-spacing:-0.560000pt;}
.ws7e{word-spacing:-0.554667pt;}
.ws41{word-spacing:-0.554660pt;}
.ws86{word-spacing:-0.549333pt;}
.ws65{word-spacing:-0.546127pt;}
.wsd7{word-spacing:-0.544000pt;}
.ws5c{word-spacing:-0.541860pt;}
.ws1a7{word-spacing:-0.528000pt;}
.ws1ac{word-spacing:-0.512000pt;}
.ws49{word-spacing:-0.507727pt;}
.ws188{word-spacing:-0.506667pt;}
.wsef{word-spacing:-0.490667pt;}
.ws199{word-spacing:-0.485333pt;}
.ws8b{word-spacing:-0.482127pt;}
.ws54{word-spacing:-0.477861pt;}
.wsc8{word-spacing:-0.474667pt;}
.ws51{word-spacing:-0.473594pt;}
.ws143{word-spacing:-0.469333pt;}
.ws42{word-spacing:-0.465061pt;}
.ws7f{word-spacing:-0.464000pt;}
.ws4d{word-spacing:-0.460794pt;}
.ws18a{word-spacing:-0.458667pt;}
.ws43{word-spacing:-0.456528pt;}
.wsed{word-spacing:-0.453333pt;}
.wsc6{word-spacing:-0.448000pt;}
.ws142{word-spacing:-0.442667pt;}
.ws8c{word-spacing:-0.439461pt;}
.wsaf{word-spacing:-0.426667pt;}
.ws93{word-spacing:-0.421333pt;}
.ws58{word-spacing:-0.418128pt;}
.wsb3{word-spacing:-0.416000pt;}
.ws18e{word-spacing:-0.410667pt;}
.ws45{word-spacing:-0.409595pt;}
.ws90{word-spacing:-0.405333pt;}
.ws193{word-spacing:-0.400000pt;}
.ws1a8{word-spacing:-0.389333pt;}
.ws70{word-spacing:-0.384000pt;}
.ws67{word-spacing:-0.378667pt;}
.wsac{word-spacing:-0.373333pt;}
.ws12a{word-spacing:-0.368000pt;}
.ws194{word-spacing:-0.362667pt;}
.wsf1{word-spacing:-0.357333pt;}
.ws8f{word-spacing:-0.352000pt;}
.ws63{word-spacing:-0.349862pt;}
.ws9c{word-spacing:-0.346667pt;}
.ws7a{word-spacing:-0.341333pt;}
.ws61{word-spacing:-0.341329pt;}
.ws94{word-spacing:-0.336000pt;}
.wsb0{word-spacing:-0.330667pt;}
.ws7b{word-spacing:-0.325333pt;}
.ws6c{word-spacing:-0.320000pt;}
.ws98{word-spacing:-0.314667pt;}
.ws76{word-spacing:-0.309333pt;}
.wsda{word-spacing:-0.304000pt;}
.ws9a{word-spacing:-0.298667pt;}
.ws96{word-spacing:-0.293333pt;}
.wsaa{word-spacing:-0.288000pt;}
.ws6e{word-spacing:-0.282667pt;}
.ws71{word-spacing:-0.277333pt;}
.ws83{word-spacing:-0.272000pt;}
.wsa3{word-spacing:-0.266667pt;}
.ws69{word-spacing:-0.261333pt;}
.ws53{word-spacing:-0.260263pt;}
.ws9f{word-spacing:-0.256000pt;}
.ws73{word-spacing:-0.250667pt;}
.ws74{word-spacing:-0.245333pt;}
.wsf8{word-spacing:-0.240000pt;}
.ws72{word-spacing:-0.234667pt;}
.ws6f{word-spacing:-0.229333pt;}
.wsa4{word-spacing:-0.224000pt;}
.wsfa{word-spacing:-0.218667pt;}
.ws81{word-spacing:-0.213333pt;}
.ws77{word-spacing:-0.208000pt;}
.wsa6{word-spacing:-0.202667pt;}
.wsab{word-spacing:-0.197333pt;}
.wsdf{word-spacing:-0.192000pt;}
.ws84{word-spacing:-0.186667pt;}
.ws68{word-spacing:-0.181333pt;}
.wsde{word-spacing:-0.176000pt;}
.ws78{word-spacing:-0.170667pt;}
.ws92{word-spacing:-0.165333pt;}
.ws9e{word-spacing:-0.160000pt;}
.ws89{word-spacing:-0.154667pt;}
.wsa9{word-spacing:-0.149333pt;}
.wsa1{word-spacing:-0.144000pt;}
.wsdc{word-spacing:-0.138667pt;}
.wsf2{word-spacing:-0.133333pt;}
.ws6d{word-spacing:-0.128000pt;}
.wsee{word-spacing:-0.122667pt;}
.ws79{word-spacing:-0.117333pt;}
.ws1b8{word-spacing:-0.112000pt;}
.ws132{word-spacing:-0.106667pt;}
.wsfc{word-spacing:-0.101333pt;}
.wse0{word-spacing:-0.096000pt;}
.wsa0{word-spacing:-0.090667pt;}
.ws137{word-spacing:-0.085333pt;}
.wsdd{word-spacing:-0.080000pt;}
.wsae{word-spacing:-0.074667pt;}
.ws19a{word-spacing:-0.069333pt;}
.ws8e{word-spacing:-0.064000pt;}
.wsb2{word-spacing:-0.058667pt;}
.wsec{word-spacing:-0.053333pt;}
.wsa8{word-spacing:-0.048000pt;}
.ws82{word-spacing:-0.042667pt;}
.ws1b0{word-spacing:-0.037333pt;}
.ws9d{word-spacing:-0.032000pt;}
.ws191{word-spacing:-0.026667pt;}
.ws19b{word-spacing:-0.021333pt;}
.wsad{word-spacing:-0.016000pt;}
.ws6b{word-spacing:-0.010667pt;}
.ws139{word-spacing:-0.005333pt;}
.ws66{word-spacing:0.000000pt;}
.ws145{word-spacing:0.005333pt;}
.wsbc{word-spacing:0.010667pt;}
.ws80{word-spacing:0.016000pt;}
.wsfd{word-spacing:0.021333pt;}
.ws75{word-spacing:0.026667pt;}
.ws138{word-spacing:0.037333pt;}
.wsb9{word-spacing:0.042667pt;}
.ws91{word-spacing:0.048000pt;}
.ws95{word-spacing:0.053333pt;}
.ws1a3{word-spacing:0.064000pt;}
.ws107{word-spacing:0.069333pt;}
.wsfb{word-spacing:0.085333pt;}
.wsf0{word-spacing:0.106667pt;}
.ws1bb{word-spacing:0.112000pt;}
.wsf9{word-spacing:0.117333pt;}
.ws85{word-spacing:0.122667pt;}
.ws189{word-spacing:0.133333pt;}
.ws195{word-spacing:0.138667pt;}
.wsb7{word-spacing:0.149333pt;}
.ws12e{word-spacing:0.160000pt;}
.wsb6{word-spacing:0.176000pt;}
.wsb8{word-spacing:0.202667pt;}
.ws12f{word-spacing:0.208000pt;}
.wsb5{word-spacing:0.213333pt;}
.wsbb{word-spacing:0.256000pt;}
.ws192{word-spacing:0.266667pt;}
.ws1c1{word-spacing:0.304000pt;}
.wsf6{word-spacing:0.320000pt;}
.ws1ae{word-spacing:0.362667pt;}
.ws1b3{word-spacing:0.389333pt;}
.ws1b4{word-spacing:0.400000pt;}
.ws1b5{word-spacing:0.570667pt;}
.ws1be{word-spacing:0.576000pt;}
.ws1b9{word-spacing:0.592000pt;}
.ws1bc{word-spacing:0.677333pt;}
.ws1bd{word-spacing:0.800000pt;}
.wse2{word-spacing:0.890667pt;}
.ws1c0{word-spacing:0.901333pt;}
.ws1bf{word-spacing:0.912000pt;}
.ws1b7{word-spacing:1.029333pt;}
.wseb{word-spacing:1.082667pt;}
.ws19e{word-spacing:1.658667pt;}
.ws3e{word-spacing:30.745216pt;}
.ws136{word-spacing:31.872000pt;}
.ws12c{word-spacing:31.925333pt;}
.ws1d0{word-spacing:41.637880pt;}
.ws1d5{word-spacing:41.642146pt;}
.ws1c2{word-spacing:41.697612pt;}
.ws114{word-spacing:228.541143pt;}
.ws10f{word-spacing:256.645325pt;}
.ws111{word-spacing:275.879218pt;}
.ws113{word-spacing:287.318008pt;}
.ws112{word-spacing:295.646438pt;}
.ws154{word-spacing:296.145631pt;}
.ws117{word-spacing:344.797823pt;}
.ws17d{word-spacing:364.253580pt;}
.ws181{word-spacing:387.566355pt;}
.ws15f{word-spacing:387.728487pt;}
.ws164{word-spacing:392.438828pt;}
.ws167{word-spacing:393.518281pt;}
.ws174{word-spacing:393.979075pt;}
.ws17e{word-spacing:405.771994pt;}
.ws16d{word-spacing:412.999637pt;}
.ws184{word-spacing:413.417766pt;}
.ws173{word-spacing:415.615071pt;}
.ws180{word-spacing:415.909468pt;}
.ws156{word-spacing:417.535047pt;}
.ws179{word-spacing:423.380308pt;}
.ws16b{word-spacing:423.448573pt;}
.ws176{word-spacing:423.742970pt;}
.ws16e{word-spacing:424.485361pt;}
.ws182{word-spacing:425.965875pt;}
.ws155{word-spacing:426.102407pt;}
.ws166{word-spacing:426.708266pt;}
.ws16f{word-spacing:427.582922pt;}
.ws16c{word-spacing:430.070357pt;}
.ws186{word-spacing:430.155690pt;}
.ws161{word-spacing:430.953546pt;}
.ws163{word-spacing:435.373758pt;}
.ws15a{word-spacing:435.535889pt;}
.ws16a{word-spacing:435.979617pt;}
.ws162{word-spacing:439.550772pt;}
.ws15e{word-spacing:439.875035pt;}
.ws17c{word-spacing:441.116619pt;}
.ws17a{word-spacing:443.804586pt;}
.ws159{word-spacing:444.440311pt;}
.ws158{word-spacing:445.242434pt;}
.ws172{word-spacing:445.818427pt;}
.ws160{word-spacing:446.377354pt;}
.ws178{word-spacing:447.648804pt;}
.ws169{word-spacing:450.178906pt;}
.ws165{word-spacing:451.309559pt;}
.ws157{word-spacing:452.111682pt;}
.ws175{word-spacing:452.154348pt;}
.ws15d{word-spacing:453.587930pt;}
.ws15c{word-spacing:456.075366pt;}
.ws171{word-spacing:458.396403pt;}
.ws183{word-spacing:460.926505pt;}
.ws170{word-spacing:465.346716pt;}
.ws168{word-spacing:465.389383pt;}
.ws15b{word-spacing:467.710420pt;}
.ws17b{word-spacing:472.642625pt;}
.ws177{word-spacing:501.621463pt;}
.ws17f{word-spacing:516.708208pt;}
.ws119{word-spacing:640.405861pt;}
.ws10d{word-spacing:653.679296pt;}
.ws110{word-spacing:662.144256pt;}
.ws11d{word-spacing:669.435899pt;}
._1{margin-left:-20.976000pt;}
._31{margin-left:-18.551235pt;}
._7{margin-left:-15.765136pt;}
._32{margin-left:-12.876639pt;}
._1b{margin-left:-2.261333pt;}
._0{margin-left:-0.989854pt;}
._4{width:1.200800pt;}
._a{width:8.392428pt;}
._2{width:9.672412pt;}
._5{width:10.645067pt;}
._3{width:12.433600pt;}
._9{width:13.426133pt;}
._8{width:15.019151pt;}
._1c{width:15.934642pt;}
._30{width:17.527248pt;}
._c{width:18.704833pt;}
._b{width:43.269333pt;}
._17{width:277.543197pt;}
._19{width:306.504969pt;}
._14{width:309.325200pt;}
._2f{width:355.140094pt;}
._21{width:424.988821pt;}
._20{width:429.524231pt;}
._1d{width:433.790844pt;}
._2a{width:442.691000pt;}
._2b{width:447.486673pt;}
._1e{width:451.151694pt;}
._27{width:461.570764pt;}
._29{width:465.956842pt;}
._2e{width:467.108828pt;}
._22{width:468.098682pt;}
._d{width:508.699775pt;}
._2d{width:513.085853pt;}
._26{width:516.836206pt;}
._24{width:525.369433pt;}
._1f{width:528.697391pt;}
._25{width:531.487756pt;}
._23{width:532.614142pt;}
._2c{width:534.115990pt;}
._28{width:546.399570pt;}
._f{width:650.248938pt;}
._16{width:652.395045pt;}
._10{width:655.083011pt;}
._18{width:666.607134pt;}
._12{width:685.623430pt;}
._11{width:693.785461pt;}
._13{width:695.901701pt;}
._15{width:731.314592pt;}
._e{width:766.492819pt;}
._1a{width:1260.566643pt;}
._6{width:1283.495423pt;}
.fsa{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs6{font-size:33.773333pt;}
.fs9{font-size:35.551467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:63.999467pt;}
.fs4{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:48.000000pt;}
.y15e{bottom:108.472400pt;}
.y18d{bottom:109.833725pt;}
.y15f{bottom:110.664533pt;}
.y137{bottom:110.665467pt;}
.yff{bottom:110.666000pt;}
.y5a{bottom:110.666990pt;}
.ybf{bottom:110.667200pt;}
.y2ab{bottom:110.667484pt;}
.y23f{bottom:110.667733pt;}
.y86{bottom:110.669067pt;}
.y194{bottom:112.554267pt;}
.y195{bottom:114.746400pt;}
.y193{bottom:114.747333pt;}
.y1df{bottom:115.578400pt;}
.ycf{bottom:115.881867pt;}
.y270{bottom:117.316933pt;}
.y271{bottom:117.998267pt;}
.y166{bottom:119.434383pt;}
.y20d{bottom:120.796267pt;}
.y33{bottom:121.247600pt;}
.y2ef{bottom:121.629092pt;}
.y2aa{bottom:123.367058pt;}
.y59{bottom:125.331340pt;}
.y135{bottom:125.782667pt;}
.y136{bottom:127.974800pt;}
.y134{bottom:127.975200pt;}
.y1ce{bottom:127.976133pt;}
.yfe{bottom:127.976667pt;}
.ybe{bottom:127.977867pt;}
.y23e{bottom:127.978400pt;}
.y85{bottom:127.979733pt;}
.y191{bottom:129.864533pt;}
.y18c{bottom:130.469200pt;}
.y18a{bottom:130.469517pt;}
.y192{bottom:132.056667pt;}
.y190{bottom:132.058000pt;}
.y1de{bottom:132.889067pt;}
.yce{bottom:133.192533pt;}
.y2ee{bottom:134.328666pt;}
.y18b{bottom:135.231467pt;}
.y2a9{bottom:135.990900pt;}
.y20c{bottom:138.106933pt;}
.y32{bottom:139.918267pt;}
.y58{bottom:139.995690pt;}
.y165{bottom:140.069858pt;}
.y1da{bottom:140.599308pt;}
.y26f{bottom:141.355600pt;}
.y132{bottom:143.092800pt;}
.y189{bottom:143.169092pt;}
.y133{bottom:145.360533pt;}
.y1cd{bottom:145.361467pt;}
.yfd{bottom:145.362000pt;}
.y131{bottom:145.362533pt;}
.y15d{bottom:145.362667pt;}
.ybd{bottom:145.363200pt;}
.y23d{bottom:145.363733pt;}
.y84{bottom:145.365067pt;}
.y31b{bottom:145.667191pt;}
.y2ec{bottom:146.952509pt;}
.y2ed{bottom:147.330104pt;}
.y18f{bottom:149.443333pt;}
.y1dd{bottom:150.199733pt;}
.ycd{bottom:150.503200pt;}
.y164{bottom:152.769433pt;}
.y2a8{bottom:153.300551pt;}
.y57{bottom:154.661107pt;}
.y20b{bottom:155.492267pt;}
.y188{bottom:155.867600pt;}
.y30{bottom:156.472400pt;}
.y31a{bottom:158.291033pt;}
.y31{bottom:158.588933pt;}
.y2f{bottom:158.590533pt;}
.y26d{bottom:158.664933pt;}
.y26e{bottom:159.346267pt;}
.y1d9{bottom:161.235850pt;}
.y250{bottom:162.670800pt;}
.yfc{bottom:162.671333pt;}
.y130{bottom:162.671867pt;}
.y1cc{bottom:162.672133pt;}
.y24e{bottom:162.672267pt;}
.y23c{bottom:162.673067pt;}
.y15c{bottom:162.673333pt;}
.ybc{bottom:162.673867pt;}
.y83{bottom:162.675733pt;}
.y2eb{bottom:164.262159pt;}
.y163{bottom:165.467941pt;}
.y2a7{bottom:166.000125pt;}
.y18e{bottom:166.752667pt;}
.y1dc{bottom:167.585067pt;}
.ycc{bottom:167.888533pt;}
.y24f{bottom:168.566800pt;}
.y55{bottom:169.325457pt;}
.y56{bottom:169.703052pt;}
.y20a{bottom:172.801600pt;}
.y1d8{bottom:173.935425pt;}
.y319{bottom:175.600684pt;}
.y2ea{bottom:176.961733pt;}
.y2e{bottom:177.261200pt;}
.y162{bottom:178.091783pt;}
.y1cb{bottom:179.981467pt;}
.y24d{bottom:179.981600pt;}
.yfb{bottom:179.982000pt;}
.y12f{bottom:179.982533pt;}
.y15b{bottom:179.982667pt;}
.ybb{bottom:179.983200pt;}
.y23b{bottom:179.983733pt;}
.y82{bottom:179.985067pt;}
.y16a{bottom:181.796441pt;}
.y26b{bottom:182.702267pt;}
.y2a6{bottom:183.309775pt;}
.y26c{bottom:183.382267pt;}
.y53{bottom:183.989807pt;}
.y54{bottom:184.367402pt;}
.y1db{bottom:184.894400pt;}
.ycb{bottom:185.197867pt;}
.y1d7{bottom:186.558200pt;}
.y318{bottom:188.300258pt;}
.y2e8{bottom:189.660241pt;}
.y2e9{bottom:189.963171pt;}
.y209{bottom:190.112267pt;}
.y161{bottom:190.791358pt;}
.y2d{bottom:195.931867pt;}
.y2a4{bottom:196.009350pt;}
.y2a5{bottom:196.311213pt;}
.y1ca{bottom:197.366800pt;}
.yfa{bottom:197.367333pt;}
.y12e{bottom:197.367867pt;}
.y15a{bottom:197.368000pt;}
.y24c{bottom:197.368267pt;}
.yba{bottom:197.368533pt;}
.y23a{bottom:197.369067pt;}
.y81{bottom:197.371733pt;}
.y52{bottom:198.654157pt;}
.y19c{bottom:199.106783pt;}
.y1d6{bottom:199.257775pt;}
.y317{bottom:200.998766pt;}
.y169{bottom:202.431917pt;}
.yca{bottom:202.508533pt;}
.y160{bottom:203.414133pt;}
.y26a{bottom:205.303867pt;}
.y2e7{bottom:206.970958pt;}
.y208{bottom:207.422933pt;}
.y1d5{bottom:211.956283pt;}
.y51{bottom:213.318507pt;}
.y2a3{bottom:213.319000pt;}
.y2c{bottom:214.602533pt;}
.y24b{bottom:214.677600pt;}
.yf9{bottom:214.678000pt;}
.y12d{bottom:214.678533pt;}
.y159{bottom:214.678667pt;}
.yb9{bottom:214.679200pt;}
.y239{bottom:214.679733pt;}
.y80{bottom:214.681067pt;}
.y168{bottom:215.131491pt;}
.y316{bottom:218.309483pt;}
.y2e5{bottom:219.594800pt;}
.y19b{bottom:219.817991pt;}
.yc9{bottom:219.893867pt;}
.y1c9{bottom:219.969667pt;}
.y2e6{bottom:219.972396pt;}
.y1d4{bottom:224.580125pt;}
.y207{bottom:224.808267pt;}
.y1fb{bottom:225.868855pt;}
.y2a2{bottom:226.018575pt;}
.y167{bottom:227.754267pt;}
.y315{bottom:230.933325pt;}
.yf8{bottom:231.987333pt;}
.y12c{bottom:231.987867pt;}
.y24a{bottom:231.988267pt;}
.yf6{bottom:231.988533pt;}
.y158{bottom:231.989333pt;}
.yb8{bottom:231.989867pt;}
.y238{bottom:231.990400pt;}
.y7f{bottom:231.991733pt;}
.y19a{bottom:232.441833pt;}
.y2b{bottom:233.273200pt;}
.y50{bottom:235.995557pt;}
.y2e4{bottom:236.980183pt;}
.yc8{bottom:237.204533pt;}
.y1d3{bottom:237.279700pt;}
.yf7{bottom:237.958933pt;}
.y206{bottom:242.117600pt;}
.y2a1{bottom:243.328225pt;}
.y1c8{bottom:244.006267pt;}
.y199{bottom:245.140341pt;}
.y1fa{bottom:245.823806pt;}
.y248{bottom:247.105467pt;}
.y269{bottom:248.164800pt;}
.y313{bottom:248.318708pt;}
.y314{bottom:248.620571pt;}
.y249{bottom:249.297600pt;}
.y12b{bottom:249.298533pt;}
.y157{bottom:249.298667pt;}
.y247{bottom:249.298933pt;}
.yb7{bottom:249.299200pt;}
.y237{bottom:249.299733pt;}
.y7e{bottom:249.302400pt;}
.y2e3{bottom:249.604025pt;}
.y1d2{bottom:249.903542pt;}
.y4f{bottom:250.659907pt;}
.y2a{bottom:251.943867pt;}
.yc7{bottom:254.515200pt;}
.y2a0{bottom:256.027800pt;}
.y198{bottom:257.764183pt;}
.y205{bottom:259.428267pt;}
.y312{bottom:260.942550pt;}
.y2e1{bottom:262.302533pt;}
.y1f9{bottom:262.529730pt;}
.y1d1{bottom:262.602050pt;}
.y2e2{bottom:262.605463pt;}
.y4e{bottom:265.324257pt;}
.y268{bottom:265.475467pt;}
.y12a{bottom:266.683867pt;}
.y246{bottom:266.684267pt;}
.yb6{bottom:266.684533pt;}
.y236{bottom:266.685067pt;}
.y156{bottom:266.685333pt;}
.y7d{bottom:266.687733pt;}
.y29f{bottom:268.651642pt;}
.y197{bottom:270.463758pt;}
.y29{bottom:270.614533pt;}
.yc6{bottom:271.824533pt;}
.y1d0{bottom:275.225892pt;}
.y204{bottom:276.813600pt;}
.y311{bottom:278.327933pt;}
.y1c7{bottom:278.930000pt;}
.y1f8{bottom:279.159923pt;}
.y2e0{bottom:279.613250pt;}
.y244{bottom:281.801467pt;}
.y267{bottom:282.860800pt;}
.y196{bottom:283.086533pt;}
.y245{bottom:283.993600pt;}
.y129{bottom:283.994533pt;}
.y155{bottom:283.994667pt;}
.yb5{bottom:283.995200pt;}
.y235{bottom:283.995733pt;}
.y7c{bottom:283.997067pt;}
.y29e{bottom:286.037025pt;}
.y1cf{bottom:287.924400pt;}
.y4d{bottom:288.001307pt;}
.yc5{bottom:289.209867pt;}
.y28{bottom:289.285200pt;}
.y310{bottom:290.951775pt;}
.y2df{bottom:292.311758pt;}
.y203{bottom:294.124267pt;}
.y1f7{bottom:295.864780pt;}
.y1c6{bottom:296.239333pt;}
.y1c4{bottom:296.240667pt;}
.y29d{bottom:298.660867pt;}
.y243{bottom:299.111733pt;}
.y128{bottom:301.303867pt;}
.y154{bottom:301.305333pt;}
.yb4{bottom:301.305867pt;}
.y234{bottom:301.306400pt;}
.y7b{bottom:301.307733pt;}
.y1c5{bottom:302.210933pt;}
.y4c{bottom:302.666723pt;}
.y2dd{bottom:304.935600pt;}
.y2de{bottom:305.313196pt;}
.y26{bottom:305.839333pt;}
.yc4{bottom:306.520533pt;}
.y27{bottom:307.955867pt;}
.y25{bottom:307.957800pt;}
.y266{bottom:308.183467pt;}
.y30f{bottom:308.261425pt;}
.y202{bottom:311.434933pt;}
.y1f6{bottom:312.494973pt;}
.y1c3{bottom:313.626000pt;}
.y29c{bottom:315.970517pt;}
.y4b{bottom:317.331074pt;}
.y153{bottom:318.690667pt;}
.yb3{bottom:318.691200pt;}
.y233{bottom:318.691733pt;}
.y7a{bottom:318.693067pt;}
.y30e{bottom:320.961000pt;}
.y2dc{bottom:322.320983pt;}
.yc3{bottom:323.831200pt;}
.y127{bottom:323.981067pt;}
.y265{bottom:325.492800pt;}
.y263{bottom:325.494267pt;}
.y24{bottom:326.552467pt;}
.y29b{bottom:328.670092pt;}
.y201{bottom:328.820267pt;}
.y1f5{bottom:329.199830pt;}
.y1c2{bottom:330.935333pt;}
.y1c0{bottom:330.939600pt;}
.y264{bottom:331.464533pt;}
.y4a{bottom:331.995424pt;}
.y2db{bottom:334.944825pt;}
.yf5{bottom:336.000533pt;}
.y232{bottom:336.001067pt;}
.y152{bottom:336.001333pt;}
.yb2{bottom:336.001867pt;}
.y79{bottom:336.003733pt;}
.y1c1{bottom:336.831467pt;}
.y30d{bottom:338.270650pt;}
.yc2{bottom:341.216533pt;}
.y29a{bottom:341.368600pt;}
.y262{bottom:342.879600pt;}
.y23{bottom:345.223133pt;}
.y1f4{bottom:345.830023pt;}
.y200{bottom:346.129600pt;}
.y49{bottom:346.659774pt;}
.y2da{bottom:347.644400pt;}
.y1bf{bottom:348.248933pt;}
.y30c{bottom:350.970225pt;}
.y151{bottom:353.310667pt;}
.yb1{bottom:353.311200pt;}
.y231{bottom:353.311733pt;}
.y78{bottom:353.313067pt;}
.yc1{bottom:358.525867pt;}
.y299{bottom:358.679317pt;}
.y261{bottom:360.188933pt;}
.y2d8{bottom:360.268242pt;}
.y2d9{bottom:360.645837pt;}
.y47{bottom:361.324124pt;}
.y48{bottom:361.701719pt;}
.y1f3{bottom:362.535947pt;}
.y1ff{bottom:363.440267pt;}
.y30a{bottom:363.594067pt;}
.y22{bottom:363.893800pt;}
.y30b{bottom:363.971662pt;}
.y1be{bottom:365.634267pt;}
.y150{bottom:370.696000pt;}
.yb0{bottom:370.696533pt;}
.y230{bottom:370.697067pt;}
.y77{bottom:370.699733pt;}
.y298{bottom:371.303159pt;}
.y2d7{bottom:377.653625pt;}
.y1f2{bottom:379.165072pt;}
.y1fe{bottom:380.750933pt;}
.y309{bottom:380.979450pt;}
.yc0{bottom:381.203067pt;}
.y126{bottom:381.431867pt;}
.y21{bottom:382.564467pt;}
.y260{bottom:382.866133pt;}
.y1bd{bottom:382.944933pt;}
.y46{bottom:384.001173pt;}
.yaf{bottom:388.007200pt;}
.y22f{bottom:388.007733pt;}
.y76{bottom:388.009067pt;}
.y297{bottom:388.688542pt;}
.y2d6{bottom:390.277467pt;}
.y14f{bottom:393.297600pt;}
.y308{bottom:393.603292pt;}
.y1f1{bottom:395.870997pt;}
.y1fd{bottom:398.136267pt;}
.y125{bottom:398.741200pt;}
.y1bc{bottom:400.255600pt;}
.y20{bottom:401.236400pt;}
.y296{bottom:401.312384pt;}
.y2d5{bottom:402.975975pt;}
.yf4{bottom:405.316533pt;}
.yae{bottom:405.317867pt;}
.y22e{bottom:405.318400pt;}
.y75{bottom:405.319733pt;}
.y45{bottom:406.678223pt;}
.y305{bottom:410.988675pt;}
.y307{bottom:411.215872pt;}
.y1f0{bottom:412.500122pt;}
.y306{bottom:413.256380pt;}
.y1fc{bottom:415.445600pt;}
.y124{bottom:416.127867pt;}
.y1bb{bottom:417.640933pt;}
.y25f{bottom:417.714933pt;}
.y295{bottom:418.697766pt;}
.y1f{bottom:419.907067pt;}
.y2d4{bottom:420.286692pt;}
.yad{bottom:422.703200pt;}
.y22d{bottom:422.703733pt;}
.y74{bottom:422.705067pt;}
.yf3{bottom:427.993600pt;}
.y304{bottom:428.299392pt;}
.y1ef{bottom:429.206047pt;}
.y44{bottom:429.355273pt;}
.yd3{bottom:430.413774pt;}
.y294{bottom:431.321609pt;}
.y2d3{bottom:432.985200pt;}
.y14e{bottom:433.361067pt;}
.y123{bottom:433.437200pt;}
.y1ba{bottom:434.951600pt;}
.y25e{bottom:435.025600pt;}
.y1e{bottom:438.577733pt;}
.yac{bottom:440.012533pt;}
.y22c{bottom:440.013067pt;}
.yaa{bottom:440.013467pt;}
.y73{bottom:440.015733pt;}
.y303{bottom:440.997900pt;}
.y2d2{bottom:445.609042pt;}
.y1ee{bottom:445.836239pt;}
.yab{bottom:445.908533pt;}
.y293{bottom:448.631259pt;}
.y14d{bottom:450.746400pt;}
.y122{bottom:450.747867pt;}
.y14b{bottom:450.749600pt;}
.yd2{bottom:451.049250pt;}
.y43{bottom:452.032323pt;}
.y1b9{bottom:452.260933pt;}
.y25d{bottom:452.334933pt;}
.y302{bottom:453.621742pt;}
.y14c{bottom:456.642400pt;}
.y1d{bottom:457.248400pt;}
.y22b{bottom:457.323733pt;}
.ya9{bottom:457.324133pt;}
.y72{bottom:457.325067pt;}
.y2d0{bottom:458.308617pt;}
.y2d1{bottom:458.534747pt;}
.y291{bottom:461.330834pt;}
.y292{bottom:461.632696pt;}
.y1ed{bottom:462.541097pt;}
.y210{bottom:463.219217pt;}
.yd1{bottom:463.748824pt;}
.y42{bottom:466.696673pt;}
.y14a{bottom:468.058933pt;}
.y121{bottom:468.133200pt;}
.y1b8{bottom:469.571600pt;}
.y25c{bottom:469.721600pt;}
.y301{bottom:470.931392pt;}
.ya8{bottom:474.633467pt;}
.y22a{bottom:474.634400pt;}
.y71{bottom:474.635733pt;}
.y2cf{bottom:475.618267pt;}
.y1c{bottom:475.919067pt;}
.yd0{bottom:476.371600pt;}
.y290{bottom:478.640484pt;}
.y1ec{bottom:479.171289pt;}
.yf2{bottom:483.629733pt;}
.y300{bottom:483.630967pt;}
.y20f{bottom:483.931491pt;}
.y175{bottom:485.065067pt;}
.y149{bottom:485.369600pt;}
.y120{bottom:485.443867pt;}
.y1b7{bottom:486.956933pt;}
.y25b{bottom:487.030933pt;}
.y2ce{bottom:488.317841pt;}
.y41{bottom:489.373723pt;}
.y28f{bottom:491.340058pt;}
.ya7{bottom:492.018800pt;}
.ya5{bottom:492.019333pt;}
.y229{bottom:492.019733pt;}
.y70{bottom:492.021067pt;}
.y1b{bottom:494.589733pt;}
.y1eb{bottom:495.876147pt;}
.y2ff{bottom:496.330541pt;}
.y20e{bottom:496.554267pt;}
.ya6{bottom:497.914933pt;}
.yf1{bottom:500.939067pt;}
.y2cd{bottom:500.941684pt;}
.y174{bottom:502.375733pt;}
.y11f{bottom:502.753200pt;}
.y148{bottom:502.754933pt;}
.y40{bottom:504.038073pt;}
.y1b6{bottom:504.267600pt;}
.y25a{bottom:504.341600pt;}
.y227{bottom:507.136933pt;}
.y28e{bottom:508.649709pt;}
.y228{bottom:509.329067pt;}
.ya4{bottom:509.330000pt;}
.y6f{bottom:509.331733pt;}
.y1ea{bottom:512.506339pt;}
.y1a{bottom:513.260400pt;}
.y2fe{bottom:513.640192pt;}
.y242{bottom:515.225067pt;}
.yf0{bottom:518.249733pt;}
.y2cc{bottom:518.327066pt;}
.y3f{bottom:518.703490pt;}
.y173{bottom:519.686400pt;}
.y147{bottom:520.065600pt;}
.y11e{bottom:520.138533pt;}
.y11c{bottom:520.139467pt;}
.y28b{bottom:521.349283pt;}
.y28c{bottom:521.576480pt;}
.y1b5{bottom:521.576933pt;}
.y28d{bottom:521.651146pt;}
.y259{bottom:521.726933pt;}
.y226{bottom:524.447200pt;}
.y11d{bottom:526.034533pt;}
.y2fd{bottom:526.264034pt;}
.ya3{bottom:526.639333pt;}
.y225{bottom:526.641200pt;}
.y6e{bottom:526.642400pt;}
.y1e9{bottom:529.212264pt;}
.y2cb{bottom:530.950908pt;}
.y19{bottom:531.931067pt;}
.y241{bottom:532.006267pt;}
.y3e{bottom:533.367840pt;}
.yef{bottom:535.635067pt;}
.y172{bottom:537.071733pt;}
.y146{bottom:537.376267pt;}
.y11b{bottom:537.448800pt;}
.y119{bottom:537.450933pt;}
.y28a{bottom:538.658934pt;}
.y2fc{bottom:538.962542pt;}
.y1b4{bottom:538.963600pt;}
.y258{bottom:539.037600pt;}
.y11a{bottom:543.344800pt;}
.y2ca{bottom:543.649416pt;}
.y224{bottom:544.026533pt;}
.y6d{bottom:544.027733pt;}
.y1e8{bottom:545.841389pt;}
.y3d{bottom:548.032190pt;}
.ya2{bottom:549.316533pt;}
.y18{bottom:550.601733pt;}
.y289{bottom:551.358508pt;}
.y170{bottom:552.113333pt;}
.yee{bottom:552.945733pt;}
.y171{bottom:554.381067pt;}
.y16f{bottom:554.381600pt;}
.y145{bottom:554.685600pt;}
.y118{bottom:554.761600pt;}
.y1b3{bottom:556.272933pt;}
.y2c8{bottom:556.273259pt;}
.y257{bottom:556.346933pt;}
.y2c9{bottom:556.650854pt;}
.y223{bottom:561.335867pt;}
.y6c{bottom:561.337067pt;}
.y1e7{bottom:562.547314pt;}
.y3b{bottom:562.696540pt;}
.y3c{bottom:562.998403pt;}
.yec{bottom:568.062933pt;}
.y288{bottom:568.669225pt;}
.y2fb{bottom:568.972833pt;}
.y17{bottom:569.272400pt;}
.yed{bottom:570.255067pt;}
.yeb{bottom:570.256000pt;}
.y16e{bottom:571.692267pt;}
.y144{bottom:572.070933pt;}
.y117{bottom:572.146933pt;}
.y1b2{bottom:573.583600pt;}
.y256{bottom:573.657600pt;}
.y2c7{bottom:573.658641pt;}
.y222{bottom:578.646533pt;}
.y6b{bottom:578.647733pt;}
.y240{bottom:579.177467pt;}
.y1e6{bottom:579.177506pt;}
.y287{bottom:581.367733pt;}
.y2fa{bottom:581.595609pt;}
.y3a{bottom:584.541600pt;}
.ye9{bottom:585.373200pt;}
.y2c6{bottom:586.282483pt;}
.yea{bottom:587.565333pt;}
.ye8{bottom:587.566800pt;}
.y16d{bottom:589.002933pt;}
.y143{bottom:589.381600pt;}
.y116{bottom:589.457600pt;}
.y1b1{bottom:590.968933pt;}
.y255{bottom:591.042933pt;}
.y1e5{bottom:595.882363pt;}
.y221{bottom:596.031867pt;}
.y6a{bottom:596.033067pt;}
.ya1{bottom:596.562800pt;}
.y16{bottom:598.601467pt;}
.y286{bottom:598.678450pt;}
.y2c4{bottom:598.982058pt;}
.y2c5{bottom:599.283921pt;}
.ye7{bottom:604.952133pt;}
.y16c{bottom:606.388267pt;}
.y142{bottom:606.692267pt;}
.y115{bottom:606.766933pt;}
.y1b0{bottom:608.279600pt;}
.y254{bottom:608.353600pt;}
.y285{bottom:611.301226pt;}
.y2f9{bottom:611.604834pt;}
.y1e4{bottom:612.512556pt;}
.y220{bottom:613.342533pt;}
.y69{bottom:613.343733pt;}
.ya0{bottom:613.873467pt;}
.y2c3{bottom:616.291708pt;}
.ye6{bottom:622.262800pt;}
.y16b{bottom:623.697600pt;}
.y284{bottom:624.000800pt;}
.y114{bottom:624.077600pt;}
.y2f8{bottom:624.304408pt;}
.y1af{bottom:625.588933pt;}
.y253{bottom:625.662933pt;}
.y2c2{bottom:628.991283pt;}
.y1e3{bottom:629.217413pt;}
.y21f{bottom:630.651867pt;}
.y68{bottom:630.653067pt;}
.y9f{bottom:631.184133pt;}
.ye5{bottom:639.573467pt;}
.y283{bottom:641.310450pt;}
.y141{bottom:641.386933pt;}
.y113{bottom:641.462933pt;}
.y2c1{bottom:641.614059pt;}
.y1ae{bottom:642.899600pt;}
.y1e2{bottom:645.847606pt;}
.y67{bottom:647.963733pt;}
.y252{bottom:648.340133pt;}
.y9e{bottom:648.569467pt;}
.y15{bottom:652.196667pt;}
.y21e{bottom:653.329067pt;}
.y282{bottom:654.010025pt;}
.y2f7{bottom:654.313633pt;}
.ye4{bottom:656.958800pt;}
.y140{bottom:658.697600pt;}
.y112{bottom:658.773600pt;}
.y2c0{bottom:658.924775pt;}
.y187{bottom:659.151973pt;}
.y1ad{bottom:660.284933pt;}
.y39{bottom:661.796533pt;}
.y1e1{bottom:662.553530pt;}
.y66{bottom:665.349067pt;}
.y9d{bottom:665.880133pt;}
.y280{bottom:666.633867pt;}
.y2f6{bottom:666.937475pt;}
.y281{bottom:667.011462pt;}
.y2bf{bottom:671.624350pt;}
.ye3{bottom:674.268133pt;}
.y111{bottom:676.082933pt;}
.y38{bottom:677.140533pt;}
.y1ac{bottom:677.595600pt;}
.y14{bottom:678.880066pt;}
.y186{bottom:679.182656pt;}
.y65{bottom:682.659733pt;}
.y9c{bottom:683.189467pt;}
.y27f{bottom:684.019250pt;}
.y2be{bottom:684.322858pt;}
.ye2{bottom:691.578800pt;}
.y13{bottom:692.183367pt;}
.y37{bottom:692.409867pt;}
.y13f{bottom:693.393600pt;}
.y110{bottom:693.469600pt;}
.y1ab{bottom:694.904933pt;}
.y185{bottom:695.888580pt;}
.y27e{bottom:696.643092pt;}
.y2f5{bottom:696.946700pt;}
.y64{bottom:699.970400pt;}
.y21d{bottom:700.499467pt;}
.y9b{bottom:700.500133pt;}
.y2bd{bottom:701.633575pt;}
.y12{bottom:705.487734pt;}
.y36{bottom:707.755200pt;}
.ye1{bottom:708.964133pt;}
.y27d{bottom:709.341600pt;}
.y13e{bottom:710.704267pt;}
.y10f{bottom:710.778933pt;}
.y1aa{bottom:712.291600pt;}
.y184{bottom:712.517706pt;}
.y2bc{bottom:714.332083pt;}
.y63{bottom:717.355733pt;}
.y21c{bottom:717.884800pt;}
.y9a{bottom:717.885467pt;}
.y10{bottom:718.866767pt;}
.y11{bottom:719.168629pt;}
.y35{bottom:723.099200pt;}
.ye0{bottom:726.274800pt;}
.y2f4{bottom:726.955925pt;}
.y27c{bottom:727.332267pt;}
.y10e{bottom:728.089600pt;}
.y183{bottom:729.223630pt;}
.y1a9{bottom:729.600933pt;}
.y2bb{bottom:731.642800pt;}
.ye{bottom:732.171134pt;}
.yf{bottom:732.548729pt;}
.y62{bottom:734.665067pt;}
.y21b{bottom:735.194133pt;}
.y99{bottom:735.196133pt;}
.yde{bottom:741.392000pt;}
.ydf{bottom:743.584133pt;}
.ydd{bottom:743.584667pt;}
.y2ba{bottom:744.265575pt;}
.y13d{bottom:745.398933pt;}
.y10d{bottom:745.474933pt;}
.yd{bottom:745.550166pt;}
.y182{bottom:745.853822pt;}
.y1a8{bottom:746.911600pt;}
.y61{bottom:751.975733pt;}
.y21a{bottom:752.504800pt;}
.y98{bottom:752.505467pt;}
.y2b9{bottom:756.965150pt;}
.ydb{bottom:758.702267pt;}
.yb{bottom:758.853467pt;}
.yc{bottom:759.155330pt;}
.ydc{bottom:760.970000pt;}
.yda{bottom:760.971467pt;}
.y181{bottom:762.482948pt;}
.y13c{bottom:762.709600pt;}
.y10c{bottom:762.785600pt;}
.y1a7{bottom:764.296933pt;}
.y60{bottom:769.361067pt;}
.y219{bottom:769.890133pt;}
.y97{bottom:769.890800pt;}
.y2b8{bottom:774.274800pt;}
.yd9{bottom:778.280800pt;}
.y180{bottom:779.188872pt;}
.y13b{bottom:780.020267pt;}
.y10b{bottom:780.094933pt;}
.y1a6{bottom:781.607600pt;}
.ya{bottom:782.815733pt;}
.y8{bottom:782.816267pt;}
.y5f{bottom:786.671733pt;}
.y2b7{bottom:786.974375pt;}
.y218{bottom:787.200800pt;}
.y96{bottom:787.201467pt;}
.y31e{bottom:787.277304pt;}
.y251{bottom:787.881467pt;}
.y9{bottom:788.182667pt;}
.y27b{bottom:788.562800pt;}
.yd8{bottom:795.591467pt;}
.y17f{bottom:795.819064pt;}
.y10a{bottom:797.405600pt;}
.y5{bottom:797.555867pt;}
.y6{bottom:797.857067pt;}
.y1a5{bottom:798.916933pt;}
.y2b6{bottom:799.598217pt;}
.y2f3{bottom:799.975812pt;}
.y7{bottom:802.847200pt;}
.y5e{bottom:803.981067pt;}
.y31d{bottom:804.285092pt;}
.y217{bottom:804.510133pt;}
.y215{bottom:804.511600pt;}
.y95{bottom:804.512133pt;}
.y279{bottom:805.872133pt;}
.y27a{bottom:806.552133pt;}
.y216{bottom:810.481867pt;}
.y17e{bottom:812.523922pt;}
.yd7{bottom:812.902133pt;}
.y13a{bottom:814.714933pt;}
.y109{bottom:814.790933pt;}
.y1a4{bottom:816.302267pt;}
.y2b5{bottom:816.983600pt;}
.y214{bottom:821.896933pt;}
.y94{bottom:821.897467pt;}
.y5d{bottom:826.658267pt;}
.y17d{bottom:829.154114pt;}
.y2b3{bottom:829.607442pt;}
.y277{bottom:829.834800pt;}
.y2b4{bottom:829.985037pt;}
.yd6{bottom:830.287467pt;}
.y278{bottom:830.590800pt;}
.y4{bottom:830.817733pt;}
.y108{bottom:832.101600pt;}
.y31c{bottom:834.294317pt;}
.y139{bottom:837.392866pt;}
.y1a3{bottom:838.903867pt;}
.y213{bottom:839.207600pt;}
.y93{bottom:839.208133pt;}
.y17c{bottom:845.858972pt;}
.y2b2{bottom:846.992825pt;}
.y106{bottom:847.218800pt;}
.yd5{bottom:847.596800pt;}
.y107{bottom:849.410933pt;}
.y105{bottom:849.412400pt;}
.y276{bottom:853.872133pt;}
.y212{bottom:856.516933pt;}
.y92{bottom:856.517467pt;}
.y2b1{bottom:859.616667pt;}
.y3{bottom:860.827333pt;}
.y138{bottom:861.354267pt;}
.y17b{bottom:862.489164pt;}
.y104{bottom:866.797733pt;}
.yd4{bottom:870.274000pt;}
.y1a1{bottom:871.634533pt;}
.y2b0{bottom:872.316241pt;}
.y1a2{bottom:873.902267pt;}
.y91{bottom:873.902800pt;}
.y1a0{bottom:873.903200pt;}
.y2f2{bottom:876.926317pt;}
.y274{bottom:877.833467pt;}
.y275{bottom:878.589467pt;}
.y17a{bottom:879.194022pt;}
.y211{bottom:879.798400pt;}
.y103{bottom:884.108400pt;}
.y19e{bottom:888.944800pt;}
.y2af{bottom:889.625892pt;}
.y2{bottom:890.834533pt;}
.y19f{bottom:891.212533pt;}
.y90{bottom:891.213467pt;}
.y8c{bottom:892.946238pt;}
.y179{bottom:895.824214pt;}
.y102{bottom:901.417733pt;}
.y273{bottom:901.872133pt;}
.y2ae{bottom:902.325466pt;}
.y2f1{bottom:902.627329pt;}
.y8b{bottom:907.611655pt;}
.y8f{bottom:908.524133pt;}
.y178{bottom:912.530139pt;}
.y2ad{bottom:914.948242pt;}
.y101{bottom:918.803067pt;}
.y2f0{bottom:919.635117pt;}
.y1{bottom:920.844000pt;}
.y5c{bottom:925.001733pt;}
.y1e0{bottom:925.152914pt;}
.y8e{bottom:925.833467pt;}
.y89{bottom:930.288705pt;}
.y8a{bottom:930.590567pt;}
.y177{bottom:932.258959pt;}
.y19d{bottom:940.951067pt;}
.y100{bottom:941.404667pt;}
.y8d{bottom:943.218800pt;}
.y5b{bottom:943.672400pt;}
.y272{bottom:943.898800pt;}
.y88{bottom:944.953055pt;}
.y176{bottom:944.957467pt;}
.y2ac{bottom:945.259330pt;}
.y87{bottom:994.393600pt;}
.h11{height:22.041000pt;}
.h4{height:24.828689pt;}
.h8{height:26.174333pt;}
.hf{height:26.663600pt;}
.ha{height:31.666271pt;}
.h12{height:32.671798pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hc{height:34.772899pt;}
.hb{height:36.052883pt;}
.h13{height:36.533333pt;}
.h3{height:37.248000pt;}
.h7{height:39.266667pt;}
.h9{height:40.000000pt;}
.he{height:49.013333pt;}
.h10{height:49.599587pt;}
.hd{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:48.000000pt;}
.x24{left:53.140929pt;}
.x1e{left:63.496000pt;}
.x87{left:82.165973pt;}
.x83{left:88.062433pt;}
.x84{left:89.196285pt;}
.x88{left:95.091678pt;}
.x7f{left:97.738045pt;}
.x69{left:99.476690pt;}
.x82{left:100.988138pt;}
.x80{left:102.424920pt;}
.x85{left:104.012100pt;}
.x1f{left:104.918416pt;}
.x89{left:106.279805pt;}
.x81{left:108.018450pt;}
.x86{left:109.228035pt;}
.x7c{left:113.611980pt;}
.x23{left:126.916007pt;}
.x27{left:138.103407pt;}
.x6c{left:141.579630pt;}
.x22{left:143.243270pt;}
.x6a{left:144.527860pt;}
.x6b{left:148.987538pt;}
.x6d{left:162.595200pt;}
.x20{left:169.623740pt;}
.x8a{left:171.514933pt;}
.x21{left:176.200725pt;}
.x73{left:184.667600pt;}
.x30{left:256.025067pt;}
.x1{left:266.683333pt;}
.x9b{left:273.184133pt;}
.x76{left:276.132267pt;}
.x8e{left:279.080267pt;}
.x25{left:282.632667pt;}
.x1b{left:284.749600pt;}
.x42{left:288.453467pt;}
.x2c{left:293.971600pt;}
.x9c{left:295.331056pt;}
.x43{left:296.692800pt;}
.x1c{left:303.118000pt;}
.x2d{left:305.158933pt;}
.x3e{left:307.577867pt;}
.x77{left:310.072400pt;}
.x8f{left:311.659733pt;}
.x50{left:312.642400pt;}
.xa0{left:315.816134pt;}
.x51{left:317.404667pt;}
.xa3{left:319.747079pt;}
.x6e{left:323.754267pt;}
.x3f{left:325.114933pt;}
.x31{left:327.382667pt;}
.x15{left:340.685608pt;}
.x2{left:343.935733pt;}
.x32{left:344.844000pt;}
.xa7{left:346.733408pt;}
.xa8{left:347.791528pt;}
.x3{left:349.077067pt;}
.x63{left:351.420400pt;}
.x4{left:354.066133pt;}
.xf{left:355.426667pt;}
.x44{left:358.752667pt;}
.x10{left:360.340133pt;}
.x64{left:365.631467pt;}
.x90{left:367.294400pt;}
.xa6{left:368.805665pt;}
.xa5{left:370.014184pt;}
.x12{left:370.997763pt;}
.x28{left:372.510133pt;}
.x7d{left:374.322321pt;}
.x29{left:380.144800pt;}
.x33{left:381.354267pt;}
.x65{left:384.000000pt;}
.x74{left:396.548000pt;}
.x66{left:398.210933pt;}
.x34{left:401.839333pt;}
.xa4{left:405.013213pt;}
.x45{left:408.718000pt;}
.x98{left:412.344667pt;}
.x46{left:413.631467pt;}
.x67{left:416.579467pt;}
.x61{left:418.318000pt;}
.x35{left:419.376267pt;}
.x47{left:423.836133pt;}
.x13{left:425.195485pt;}
.x3a{left:427.540133pt;}
.x48{left:428.825067pt;}
.x68{left:430.790533pt;}
.x6f{left:434.116533pt;}
.x62{left:435.477067pt;}
.x52{left:437.518000pt;}
.x36{left:438.576267pt;}
.x53{left:442.280267pt;}
.x91{left:443.187333pt;}
.x3b{left:445.077067pt;}
.x94{left:446.891333pt;}
.x2e{left:449.234533pt;}
.x54{left:450.519600pt;}
.xa9{left:451.878760pt;}
.x37{left:453.165333pt;}
.x5{left:457.927467pt;}
.x2f{left:460.422000pt;}
.x11{left:464.201467pt;}
.x6{left:470.324400pt;}
.x49{left:475.313333pt;}
.x26{left:477.354267pt;}
.x99{left:478.259333pt;}
.x3c{left:481.133733pt;}
.x55{left:483.099200pt;}
.x96{left:484.155333pt;}
.x4a{left:485.744800pt;}
.xad{left:486.952455pt;}
.x92{left:489.675467pt;}
.x4b{left:490.733733pt;}
.x4c{left:491.943200pt;}
.x97{left:493.150000pt;}
.x9a{left:494.511333pt;}
.x4d{left:496.705467pt;}
.x3d{left:498.670800pt;}
.x78{left:507.136933pt;}
.x38{left:508.195200pt;}
.x5f{left:511.218800pt;}
.x56{left:515.678667pt;}
.xab{left:518.019800pt;}
.x7{left:519.306000pt;}
.x39{left:525.732267pt;}
.x8{left:529.208400pt;}
.x2a{left:530.721200pt;}
.x5b{left:534.425067pt;}
.x2b{left:535.407867pt;}
.x5c{left:539.187333pt;}
.x93{left:542.059733pt;}
.x57{left:548.258267pt;}
.x40{left:549.694400pt;}
.x9{left:552.869200pt;}
.x75{left:556.270800pt;}
.xa{left:557.782667pt;}
.x9f{left:559.519754pt;}
.x58{left:562.469200pt;}
.xaa{left:566.020267pt;}
.x41{left:567.231467pt;}
.x18{left:571.538189pt;}
.x59{left:576.000000pt;}
.x16{left:578.492769pt;}
.x5a{left:593.234533pt;}
.xac{left:602.984071pt;}
.x4e{left:608.277067pt;}
.x4f{left:613.039333pt;}
.x9d{left:620.142996pt;}
.x70{left:625.058267pt;}
.x71{left:626.645600pt;}
.x19{left:631.332267pt;}
.x17{left:636.772574pt;}
.x72{left:643.804667pt;}
.x7e{left:645.766394pt;}
.x1a{left:649.625067pt;}
.x79{left:653.555867pt;}
.xb{left:654.840933pt;}
.x5d{left:657.637733pt;}
.xc{left:659.754267pt;}
.x5e{left:662.400000pt;}
.x8b{left:692.862933pt;}
.x95{left:699.435333pt;}
.x8c{left:701.102267pt;}
.x9e{left:721.962524pt;}
.xd{left:729.826667pt;}
.x60{left:731.111733pt;}
.xe{left:734.740133pt;}
.xa1{left:743.430316pt;}
.x14{left:748.041583pt;}
.x7a{left:749.102267pt;}
.xa2{left:752.199273pt;}
.x7b{left:753.864533pt;}
.x8d{left:763.540133pt;}
}




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