
    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_24cce7675f4b829d6fad502e.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_5bf730d620104cd8cbb0bfaf.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_2ce30663fd90db940a6d26c9.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_37e450ae93eed8e4818e900c.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_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_76eca15e381754c3197decac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dad6f08fc803d2bd582ea7d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5fe727014e0f3fd60b957d7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_12fdb312d261fbd61de0a6a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5dda8d8b3bf274b3dad80efd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930664;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_fb100b8cf59d3386dad6806c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ebe19f5996fe526121c8a420.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5946e122f8d24431d8816221.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3d8ab3de613846b71a6c9391.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_e788598ff33126ad4f4eb408.woff2')format("woff");}.fff{font-family:fff;line-height:0.724000;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_ca93b0a6e9637ef5597c67dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.894000;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_e4d03f16f9fe6e3ad44c59d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_025b7541314d8793fac0f362.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d6b37a306464756d5b0368d7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.858000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.346000px;}
.v1{vertical-align:-6.126000px;}
.v5{vertical-align:-3.060000px;}
.v2{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.336975px;}
.ls6{letter-spacing:-1.263600px;}
.lsa{letter-spacing:-1.200600px;}
.lse{letter-spacing:-1.199985px;}
.lsb{letter-spacing:-0.241496px;}
.lsd{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.239997px;}
.lsc{letter-spacing:-0.239400px;}
.ls8{letter-spacing:-0.238497px;}
.ls7{letter-spacing:-0.237600px;}
.ls12{letter-spacing:-0.237598px;}
.ls9{letter-spacing:-0.212372px;}
.ls14{letter-spacing:-0.211976px;}
.ls13{letter-spacing:0.000000px;}
.ls2f{letter-spacing:2.929200px;}
.ls27{letter-spacing:2.934600px;}
.ls3a{letter-spacing:4.761540px;}
.ls4{letter-spacing:9.446282px;}
.ls39{letter-spacing:10.243072px;}
.ls3{letter-spacing:10.387070px;}
.ls35{letter-spacing:10.727866px;}
.ls28{letter-spacing:10.742266px;}
.ls2b{letter-spacing:10.823865px;}
.ls30{letter-spacing:10.828665px;}
.ls36{letter-spacing:10.857464px;}
.ls26{letter-spacing:10.862264px;}
.ls29{letter-spacing:10.948663px;}
.ls24{letter-spacing:10.996663px;}
.ls25{letter-spacing:11.001462px;}
.ls34{letter-spacing:11.063862px;}
.ls33{letter-spacing:11.068662px;}
.ls22{letter-spacing:11.083061px;}
.ls31{letter-spacing:11.164660px;}
.ls2a{letter-spacing:11.203060px;}
.ls10{letter-spacing:12.346200px;}
.ls11{letter-spacing:12.351900px;}
.lsf{letter-spacing:12.380400px;}
.ls20{letter-spacing:12.678000px;}
.ls1d{letter-spacing:12.750000px;}
.ls16{letter-spacing:12.822000px;}
.ls18{letter-spacing:12.876000px;}
.ls1c{letter-spacing:12.990000px;}
.ls21{letter-spacing:13.020000px;}
.ls1a{letter-spacing:13.026000px;}
.ls1b{letter-spacing:13.086000px;}
.ls1e{letter-spacing:13.092000px;}
.ls17{letter-spacing:13.104000px;}
.ls1f{letter-spacing:13.164000px;}
.ls19{letter-spacing:13.206000px;}
.ls15{letter-spacing:13.326000px;}
.ls23{letter-spacing:13.812600px;}
.ls38{letter-spacing:14.058000px;}
.ls3b{letter-spacing:15.647804px;}
.ls0{letter-spacing:17.733600px;}
.ls1{letter-spacing:20.783740px;}
.ls2{letter-spacing:20.788540px;}
.ls2e{letter-spacing:136.870175px;}
.ls2c{letter-spacing:137.207671px;}
.ls2d{letter-spacing:165.458294px;}
.ls32{letter-spacing:211.638954px;}
.ls37{letter-spacing:256.883189px;}
.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;}
}
.ws3c{word-spacing:-25.247684px;}
.ws18a{word-spacing:-19.994233px;}
.ws16b{word-spacing:-16.890000px;}
.ws12{word-spacing:-14.936400px;}
.ws1c2{word-spacing:-13.487831px;}
.ws19e{word-spacing:-13.247834px;}
.ws45{word-spacing:-10.799865px;}
.ws7{word-spacing:-9.902280px;}
.ws18d{word-spacing:-4.233565px;}
.ws37{word-spacing:-4.160628px;}
.ws184{word-spacing:-4.082366px;}
.ws73{word-spacing:-3.863933px;}
.ws1d8{word-spacing:-3.580755px;}
.ws2c{word-spacing:-3.575955px;}
.ws1c7{word-spacing:-3.513556px;}
.ws1be{word-spacing:-3.503956px;}
.ws34{word-spacing:-3.459900px;}
.ws1a7{word-spacing:-3.441557px;}
.ws1da{word-spacing:-3.427157px;}
.ws1aa{word-spacing:-3.407957px;}
.ws1db{word-spacing:-3.388758px;}
.ws1de{word-spacing:-3.379158px;}
.ws1cb{word-spacing:-3.374358px;}
.ws1d2{word-spacing:-3.364758px;}
.ws39{word-spacing:-3.357300px;}
.ws9{word-spacing:-3.353400px;}
.wse{word-spacing:-3.342600px;}
.ws1c{word-spacing:-3.340758px;}
.ws1d4{word-spacing:-3.326358px;}
.ws62{word-spacing:-3.323100px;}
.ws1a4{word-spacing:-3.316759px;}
.wsc{word-spacing:-3.315600px;}
.ws6c{word-spacing:-3.311700px;}
.ws1b7{word-spacing:-3.307159px;}
.ws1bf{word-spacing:-3.297559px;}
.ws1af{word-spacing:-3.292759px;}
.ws1a1{word-spacing:-3.287959px;}
.ws16{word-spacing:-3.283200px;}
.ws1d3{word-spacing:-3.283159px;}
.ws1ab{word-spacing:-3.278359px;}
.ws19d{word-spacing:-3.273559px;}
.ws71{word-spacing:-3.266100px;}
.ws1d6{word-spacing:-3.263959px;}
.ws13{word-spacing:-3.261600px;}
.ws1ba{word-spacing:-3.259159px;}
.ws32{word-spacing:-3.254700px;}
.ws29{word-spacing:-3.254359px;}
.ws15{word-spacing:-3.250800px;}
.ws1a9{word-spacing:-3.249559px;}
.ws72{word-spacing:-3.249000px;}
.ws11{word-spacing:-3.245400px;}
.ws2b{word-spacing:-3.244759px;}
.ws1c9{word-spacing:-3.239959px;}
.ws2a{word-spacing:-3.235160px;}
.ws8{word-spacing:-3.234600px;}
.ws19{word-spacing:-3.230360px;}
.ws19c{word-spacing:-3.225560px;}
.ws22{word-spacing:-3.220760px;}
.ws1a8{word-spacing:-3.215960px;}
.ws61{word-spacing:-3.214800px;}
.ws17{word-spacing:-3.213000px;}
.ws1b{word-spacing:-3.211160px;}
.ws27{word-spacing:-3.206360px;}
.ws21{word-spacing:-3.201560px;}
.ws6b{word-spacing:-3.192000px;}
.ws24{word-spacing:-3.191960px;}
.wsf{word-spacing:-3.191400px;}
.ws6a{word-spacing:-3.186300px;}
.ws36{word-spacing:-3.180600px;}
.ws1f{word-spacing:-3.177560px;}
.wsa{word-spacing:-3.175200px;}
.ws67{word-spacing:-3.169200px;}
.ws12c{word-spacing:-3.167960px;}
.ws10{word-spacing:-3.164400px;}
.ws86{word-spacing:-3.163160px;}
.ws69{word-spacing:-3.157800px;}
.ws6{word-spacing:-3.153600px;}
.ws1c1{word-spacing:-3.153561px;}
.ws6e{word-spacing:-3.152100px;}
.ws14{word-spacing:-3.148200px;}
.ws6d{word-spacing:-3.146400px;}
.ws1cc{word-spacing:-3.143961px;}
.ws1d5{word-spacing:-3.139161px;}
.ws2d{word-spacing:-3.129561px;}
.ws65{word-spacing:-3.123600px;}
.ws1dd{word-spacing:-3.119961px;}
.ws70{word-spacing:-3.112200px;}
.wsd{word-spacing:-3.110400px;}
.ws1ce{word-spacing:-3.110361px;}
.ws2f{word-spacing:-3.105561px;}
.ws1a{word-spacing:-3.100761px;}
.ws1d1{word-spacing:-3.095961px;}
.ws1cd{word-spacing:-3.086361px;}
.ws3b{word-spacing:-3.076762px;}
.wsb{word-spacing:-3.067200px;}
.ws1cf{word-spacing:-3.067162px;}
.ws1b0{word-spacing:-3.062362px;}
.ws6f{word-spacing:-3.060900px;}
.ws1a5{word-spacing:-3.057562px;}
.ws1c4{word-spacing:-3.038362px;}
.ws68{word-spacing:-3.038100px;}
.ws1b8{word-spacing:-3.033562px;}
.ws1ae{word-spacing:-3.028762px;}
.ws1d9{word-spacing:-3.023962px;}
.ws1b9{word-spacing:-3.019162px;}
.ws20{word-spacing:-3.004762px;}
.ws33{word-spacing:-3.003900px;}
.ws1{word-spacing:-3.002400px;}
.ws23{word-spacing:-2.999962px;}
.ws30{word-spacing:-2.995163px;}
.ws1b6{word-spacing:-2.990363px;}
.ws1b4{word-spacing:-2.985563px;}
.ws64{word-spacing:-2.981100px;}
.ws25{word-spacing:-2.971163px;}
.ws4{word-spacing:-2.970000px;}
.ws1c5{word-spacing:-2.966363px;}
.ws38{word-spacing:-2.952600px;}
.ws1bb{word-spacing:-2.951963px;}
.ws3{word-spacing:-2.937600px;}
.ws1c0{word-spacing:-2.937563px;}
.ws1ac{word-spacing:-2.932763px;}
.ws1bc{word-spacing:-2.923163px;}
.ws31{word-spacing:-2.918364px;}
.ws1a3{word-spacing:-2.913564px;}
.ws19f{word-spacing:-2.908764px;}
.ws1a0{word-spacing:-2.894364px;}
.ws1dc{word-spacing:-2.889564px;}
.ws1c6{word-spacing:-2.879964px;}
.ws1b5{word-spacing:-2.875164px;}
.ws1bd{word-spacing:-2.846364px;}
.ws35{word-spacing:-2.844300px;}
.ws18{word-spacing:-2.841564px;}
.ws1b2{word-spacing:-2.831965px;}
.ws1e{word-spacing:-2.812765px;}
.ws2{word-spacing:-2.808000px;}
.ws63{word-spacing:-2.804400px;}
.ws66{word-spacing:-2.798700px;}
.ws1c3{word-spacing:-2.788765px;}
.ws1b1{word-spacing:-2.783965px;}
.ws1ad{word-spacing:-2.779165px;}
.ws1d7{word-spacing:-2.769565px;}
.ws1a6{word-spacing:-2.764765px;}
.ws1ca{word-spacing:-2.759965px;}
.ws1d{word-spacing:-2.750366px;}
.ws1a2{word-spacing:-2.745566px;}
.ws1d0{word-spacing:-2.711966px;}
.ws28{word-spacing:-2.687966px;}
.ws2e{word-spacing:-2.683166px;}
.ws1c8{word-spacing:-2.663967px;}
.ws0{word-spacing:-2.649567px;}
.ws5{word-spacing:-2.624400px;}
.ws74{word-spacing:-2.325600px;}
.ws52{word-spacing:-1.055987px;}
.ws55{word-spacing:-0.916789px;}
.ws50{word-spacing:-0.892789px;}
.ws4c{word-spacing:-0.878389px;}
.ws89{word-spacing:-0.859189px;}
.wsdb{word-spacing:-0.852000px;}
.ws3e{word-spacing:-0.849589px;}
.ws8d{word-spacing:-0.820790px;}
.ws57{word-spacing:-0.815990px;}
.ws5c{word-spacing:-0.806390px;}
.ws49{word-spacing:-0.801590px;}
.ws4a{word-spacing:-0.791990px;}
.ws8b{word-spacing:-0.777590px;}
.ws40{word-spacing:-0.772790px;}
.ws44{word-spacing:-0.767990px;}
.ws100{word-spacing:-0.763190px;}
.ws4e{word-spacing:-0.743991px;}
.ws5a{word-spacing:-0.739191px;}
.ws180{word-spacing:-0.738000px;}
.ws43{word-spacing:-0.729591px;}
.ws51{word-spacing:-0.724791px;}
.ws130{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.719991px;}
.ws8c{word-spacing:-0.715191px;}
.ws90{word-spacing:-0.705591px;}
.wscf{word-spacing:-0.702000px;}
.ws41{word-spacing:-0.700791px;}
.ws101{word-spacing:-0.695991px;}
.ws48{word-spacing:-0.691191px;}
.wse9{word-spacing:-0.690000px;}
.wsbb{word-spacing:-0.684000px;}
.ws5d{word-spacing:-0.681591px;}
.ws53{word-spacing:-0.676792px;}
.ws56{word-spacing:-0.671992px;}
.ws87{word-spacing:-0.662392px;}
.ws4f{word-spacing:-0.652792px;}
.ws8e{word-spacing:-0.643192px;}
.ws4b{word-spacing:-0.638392px;}
.ws3f{word-spacing:-0.633592px;}
.ws8f{word-spacing:-0.628792px;}
.ws3d{word-spacing:-0.623992px;}
.ws169{word-spacing:-0.614392px;}
.ws88{word-spacing:-0.609592px;}
.ws17f{word-spacing:-0.571193px;}
.ws91{word-spacing:-0.566393px;}
.ws5e{word-spacing:-0.561593px;}
.wse6{word-spacing:-0.558000px;}
.ws167{word-spacing:-0.547193px;}
.wsd9{word-spacing:-0.546000px;}
.ws135{word-spacing:-0.542393px;}
.ws84{word-spacing:-0.534000px;}
.ws138{word-spacing:-0.532793px;}
.wsa0{word-spacing:-0.528000px;}
.ws139{word-spacing:-0.527993px;}
.ws42{word-spacing:-0.523193px;}
.ws5b{word-spacing:-0.518394px;}
.wsda{word-spacing:-0.516000px;}
.ws13d{word-spacing:-0.513594px;}
.ws76{word-spacing:-0.510000px;}
.wsd1{word-spacing:-0.504000px;}
.ws8a{word-spacing:-0.503994px;}
.ws4d{word-spacing:-0.499194px;}
.wsb2{word-spacing:-0.498000px;}
.ws58{word-spacing:-0.489594px;}
.ws59{word-spacing:-0.484794px;}
.ws198{word-spacing:-0.480000px;}
.ws10f{word-spacing:-0.479994px;}
.wsb4{word-spacing:-0.474000px;}
.ws54{word-spacing:-0.470394px;}
.ws97{word-spacing:-0.468000px;}
.ws5f{word-spacing:-0.460794px;}
.wseb{word-spacing:-0.456000px;}
.ws47{word-spacing:-0.451194px;}
.ws194{word-spacing:-0.450000px;}
.ws7b{word-spacing:-0.432000px;}
.wse8{word-spacing:-0.426000px;}
.wsbe{word-spacing:-0.420000px;}
.wsac{word-spacing:-0.414000px;}
.ws12f{word-spacing:-0.412795px;}
.ws77{word-spacing:-0.408000px;}
.wsfd{word-spacing:-0.402000px;}
.ws172{word-spacing:-0.398395px;}
.wsdc{word-spacing:-0.396000px;}
.ws82{word-spacing:-0.390000px;}
.ws12b{word-spacing:-0.388795px;}
.ws9d{word-spacing:-0.384000px;}
.ws136{word-spacing:-0.379195px;}
.wsa1{word-spacing:-0.378000px;}
.ws10a{word-spacing:-0.374395px;}
.wsa3{word-spacing:-0.372000px;}
.ws115{word-spacing:-0.369595px;}
.wsde{word-spacing:-0.366000px;}
.ws94{word-spacing:-0.360000px;}
.wsae{word-spacing:-0.354000px;}
.wsb7{word-spacing:-0.348000px;}
.ws83{word-spacing:-0.342000px;}
.ws165{word-spacing:-0.340796px;}
.wsd6{word-spacing:-0.336000px;}
.wsb6{word-spacing:-0.330000px;}
.ws13e{word-spacing:-0.324000px;}
.wsd0{word-spacing:-0.318000px;}
.ws16f{word-spacing:-0.316796px;}
.wscd{word-spacing:-0.312000px;}
.ws132{word-spacing:-0.307196px;}
.ws9c{word-spacing:-0.306000px;}
.ws17c{word-spacing:-0.302396px;}
.ws81{word-spacing:-0.300000px;}
.wsa9{word-spacing:-0.294000px;}
.wse0{word-spacing:-0.288000px;}
.ws177{word-spacing:-0.287996px;}
.ws99{word-spacing:-0.282000px;}
.ws176{word-spacing:-0.278397px;}
.ws75{word-spacing:-0.276000px;}
.ws129{word-spacing:-0.273597px;}
.wsb3{word-spacing:-0.270000px;}
.ws173{word-spacing:-0.268797px;}
.wsbc{word-spacing:-0.264000px;}
.wsf4{word-spacing:-0.258000px;}
.ws12a{word-spacing:-0.254397px;}
.ws16a{word-spacing:-0.252000px;}
.wscb{word-spacing:-0.249597px;}
.wsa4{word-spacing:-0.246000px;}
.wsb9{word-spacing:-0.240000px;}
.ws93{word-spacing:-0.234000px;}
.ws166{word-spacing:-0.230397px;}
.wsce{word-spacing:-0.228000px;}
.ws13f{word-spacing:-0.225597px;}
.ws9f{word-spacing:-0.222000px;}
.wsd4{word-spacing:-0.216000px;}
.wsf5{word-spacing:-0.210000px;}
.wsaa{word-spacing:-0.204000px;}
.wsd2{word-spacing:-0.198000px;}
.ws175{word-spacing:-0.196798px;}
.ws7e{word-spacing:-0.192000px;}
.wsd7{word-spacing:-0.186000px;}
.ws98{word-spacing:-0.180000px;}
.wsdd{word-spacing:-0.174000px;}
.ws119{word-spacing:-0.172798px;}
.ws7c{word-spacing:-0.168000px;}
.ws120{word-spacing:-0.167998px;}
.ws78{word-spacing:-0.162000px;}
.ws174{word-spacing:-0.158398px;}
.wsdf{word-spacing:-0.156000px;}
.ws16c{word-spacing:-0.150000px;}
.ws168{word-spacing:-0.148798px;}
.ws148{word-spacing:-0.148498px;}
.wsfb{word-spacing:-0.144000px;}
.ws178{word-spacing:-0.143998px;}
.wsfa{word-spacing:-0.138000px;}
.ws15c{word-spacing:-0.134998px;}
.wsab{word-spacing:-0.132000px;}
.ws13a{word-spacing:-0.129598px;}
.ws7a{word-spacing:-0.126000px;}
.wse4{word-spacing:-0.120000px;}
.ws17e{word-spacing:-0.119998px;}
.ws181{word-spacing:-0.114000px;}
.wsbf{word-spacing:-0.108000px;}
.wsfe{word-spacing:-0.102000px;}
.wsd3{word-spacing:-0.096000px;}
.ws96{word-spacing:-0.090000px;}
.wsb5{word-spacing:-0.084000px;}
.wse2{word-spacing:-0.078000px;}
.wsa8{word-spacing:-0.072000px;}
.wsf8{word-spacing:-0.066000px;}
.wsc0{word-spacing:-0.062399px;}
.ws80{word-spacing:-0.060000px;}
.ws154{word-spacing:-0.058499px;}
.ws85{word-spacing:-0.054000px;}
.ws13b{word-spacing:-0.052799px;}
.ws145{word-spacing:-0.049499px;}
.wsf1{word-spacing:-0.048000px;}
.ws146{word-spacing:-0.044999px;}
.ws9b{word-spacing:-0.042000px;}
.ws13c{word-spacing:-0.038400px;}
.ws79{word-spacing:-0.036000px;}
.wsba{word-spacing:-0.030000px;}
.wse1{word-spacing:-0.024000px;}
.ws16d{word-spacing:-0.019200px;}
.ws9a{word-spacing:-0.012000px;}
.wsff{word-spacing:-0.009600px;}
.ws144{word-spacing:-0.009000px;}
.ws131{word-spacing:-0.006000px;}
.ws60{word-spacing:0.000000px;}
.ws10c{word-spacing:0.004800px;}
.wsed{word-spacing:0.006000px;}
.ws113{word-spacing:0.014400px;}
.wsa6{word-spacing:0.018000px;}
.wsef{word-spacing:0.024000px;}
.ws125{word-spacing:0.028800px;}
.wsb0{word-spacing:0.030000px;}
.ws17d{word-spacing:0.033600px;}
.wsa7{word-spacing:0.036000px;}
.ws12e{word-spacing:0.038400px;}
.ws18c{word-spacing:0.042000px;}
.wse5{word-spacing:0.048000px;}
.wsec{word-spacing:0.054000px;}
.ws103{word-spacing:0.057599px;}
.wscc{word-spacing:0.060000px;}
.ws117{word-spacing:0.062399px;}
.ws95{word-spacing:0.066000px;}
.ws126{word-spacing:0.067199px;}
.ws15d{word-spacing:0.067499px;}
.ws7d{word-spacing:0.072000px;}
.ws92{word-spacing:0.078000px;}
.ws10d{word-spacing:0.086399px;}
.ws18b{word-spacing:0.090000px;}
.ws14e{word-spacing:0.094499px;}
.ws12d{word-spacing:0.096000px;}
.ws159{word-spacing:0.098999px;}
.ws11e{word-spacing:0.100799px;}
.wsf0{word-spacing:0.102000px;}
.ws152{word-spacing:0.103499px;}
.ws151{word-spacing:0.107999px;}
.wsa5{word-spacing:0.108000px;}
.ws10b{word-spacing:0.110399px;}
.ws161{word-spacing:0.112499px;}
.ws111{word-spacing:0.119998px;}
.ws170{word-spacing:0.124798px;}
.wsa2{word-spacing:0.132000px;}
.wsb1{word-spacing:0.144000px;}
.ws11d{word-spacing:0.158398px;}
.wsd8{word-spacing:0.162000px;}
.ws102{word-spacing:0.165599px;}
.ws171{word-spacing:0.167998px;}
.wsf2{word-spacing:0.168000px;}
.ws108{word-spacing:0.172798px;}
.wsea{word-spacing:0.174000px;}
.ws11a{word-spacing:0.177598px;}
.wsee{word-spacing:0.180000px;}
.ws122{word-spacing:0.182398px;}
.wsaf{word-spacing:0.186000px;}
.wsd5{word-spacing:0.187198px;}
.wsf9{word-spacing:0.194398px;}
.wsc1{word-spacing:0.196798px;}
.wsf3{word-spacing:0.201598px;}
.ws15a{word-spacing:0.202497px;}
.ws15b{word-spacing:0.206997px;}
.ws107{word-spacing:0.225597px;}
.ws14b{word-spacing:0.229497px;}
.ws179{word-spacing:0.235197px;}
.ws14c{word-spacing:0.247497px;}
.ws183{word-spacing:0.252000px;}
.ws196{word-spacing:0.276000px;}
.ws112{word-spacing:0.287996px;}
.wsad{word-spacing:0.295198px;}
.ws9e{word-spacing:0.306000px;}
.ws14f{word-spacing:0.310496px;}
.ws16e{word-spacing:0.311996px;}
.ws134{word-spacing:0.316796px;}
.wsbd{word-spacing:0.316797px;}
.ws182{word-spacing:0.318000px;}
.ws118{word-spacing:0.335996px;}
.ws19a{word-spacing:0.342000px;}
.ws124{word-spacing:0.345596px;}
.ws189{word-spacing:0.348000px;}
.ws110{word-spacing:0.350396px;}
.ws7f{word-spacing:0.354000px;}
.ws10e{word-spacing:0.355196px;}
.wsf6{word-spacing:0.367197px;}
.ws155{word-spacing:0.377995px;}
.wsb8{word-spacing:0.381597px;}
.ws141{word-spacing:0.391495px;}
.ws116{word-spacing:0.398395px;}
.ws17a{word-spacing:0.407995px;}
.ws186{word-spacing:0.408000px;}
.wsfc{word-spacing:0.410397px;}
.ws121{word-spacing:0.417595px;}
.ws188{word-spacing:0.426000px;}
.ws133{word-spacing:0.431995px;}
.wsf7{word-spacing:0.431996px;}
.ws185{word-spacing:0.432000px;}
.ws150{word-spacing:0.445494px;}
.ws142{word-spacing:0.449994px;}
.ws11b{word-spacing:0.460794px;}
.ws18f{word-spacing:0.480000px;}
.ws187{word-spacing:0.486000px;}
.ws15e{word-spacing:0.503993px;}
.ws17b{word-spacing:0.513594px;}
.ws106{word-spacing:0.518394px;}
.wse7{word-spacing:0.518396px;}
.wsc7{word-spacing:0.537593px;}
.ws162{word-spacing:0.571492px;}
.ws140{word-spacing:0.625492px;}
.ws190{word-spacing:0.666000px;}
.ws195{word-spacing:0.708000px;}
.ws191{word-spacing:0.762000px;}
.ws143{word-spacing:0.796489px;}
.ws193{word-spacing:0.900000px;}
.ws192{word-spacing:0.978000px;}
.ws199{word-spacing:1.020000px;}
.ws197{word-spacing:1.026000px;}
.ws18e{word-spacing:1.158000px;}
.ws26{word-spacing:7.713504px;}
.wse3{word-spacing:16.614000px;}
.ws160{word-spacing:28.772616px;}
.ws149{word-spacing:28.777116px;}
.ws156{word-spacing:28.781616px;}
.ws14a{word-spacing:28.817616px;}
.ws157{word-spacing:28.984114px;}
.ws153{word-spacing:28.988613px;}
.ws3a{word-spacing:33.993175px;}
.ws1b3{word-spacing:46.847414px;}
.ws19b{word-spacing:46.909814px;}
.ws14d{word-spacing:50.327329px;}
.ws158{word-spacing:50.538826px;}
.ws147{word-spacing:50.543326px;}
.ws163{word-spacing:72.093539px;}
.ws15f{word-spacing:72.098039px;}
.ws164{word-spacing:82.276903px;}
.wsc5{word-spacing:235.326658px;}
.wsc4{word-spacing:235.331458px;}
.wsc6{word-spacing:240.668992px;}
.wsc9{word-spacing:246.409720px;}
.wsc3{word-spacing:246.486519px;}
.wsc8{word-spacing:246.688116px;}
.wsca{word-spacing:252.318446px;}
.ws104{word-spacing:397.723028px;}
.ws137{word-spacing:446.538418px;}
.wsc2{word-spacing:457.247084px;}
.ws11f{word-spacing:906.473469px;}
.ws105{word-spacing:1107.806952px;}
.ws123{word-spacing:1111.469306px;}
.ws11c{word-spacing:1183.641204px;}
.ws128{word-spacing:1189.420332px;}
.ws127{word-spacing:1216.415195px;}
.ws114{word-spacing:1227.080661px;}
.ws109{word-spacing:1268.225747px;}
._0{margin-left:-1.113586px;}
._1{width:1.555200px;}
._3{width:3.838800px;}
._4{width:9.388683px;}
._5{width:11.193460px;}
._9{width:12.456000px;}
._6{width:13.708500px;}
._8{width:14.730000px;}
._1b{width:16.223797px;}
._b2{width:19.996550px;}
._a{width:21.062137px;}
._2{width:25.023600px;}
._1a{width:30.108000px;}
._65{width:39.392475px;}
._7d{width:44.423408px;}
._7c{width:47.834362px;}
._84{width:52.136305px;}
._6f{width:60.753690px;}
._69{width:63.921648px;}
._85{width:65.271632px;}
._64{width:66.342615px;}
._7e{width:67.517100px;}
._71{width:73.776516px;}
._72{width:82.186904px;}
._81{width:83.248890px;}
._77{width:86.943341px;}
._86{width:91.942772px;}
._7f{width:93.679751px;}
._6d{width:97.959194px;}
._7a{width:99.372175px;}
._67{width:102.792129px;}
._8c{width:106.711577px;}
._73{width:108.498053px;}
._76{width:109.951534px;}
._a4{width:111.253443px;}
._78{width:113.497485px;}
._66{width:115.144465px;}
._6c{width:117.011940px;}
._90{width:119.293407px;}
._91{width:123.802347px;}
._6e{width:124.837335px;}
._7b{width:126.250317px;}
._88{width:131.506247px;}
._87{width:134.143211px;}
._82{width:135.556193px;}
._92{width:137.239884px;}
._80{width:139.156145px;}
._8e{width:140.974120px;}
._8d{width:144.988067px;}
._9d{width:149.143736px;}
._9c{width:150.392412px;}
._8a{width:151.706477px;}
._74{width:155.895921px;}
._79{width:159.842369px;}
._a0{width:161.041220px;}
._a1{width:164.613942px;}
._70{width:167.028773px;}
._83{width:171.569212px;}
._a7{width:176.608992px;}
._a5{width:182.589718px;}
._b1{width:183.742395px;}
._96{width:184.816890px;}
._9a{width:187.111261px;}
._ad{width:194.383170px;}
._8f{width:195.625892px;}
._9e{width:198.803915px;}
._a3{width:200.339896px;}
._98{width:203.339858px;}
._9b{width:210.448542px;}
._94{width:217.374883px;}
._6a{width:219.003080px;}
._89{width:224.083512px;}
._a9{width:231.270709px;}
._75{width:237.344835px;}
._68{width:239.972800px;}
._3d{width:245.857727px;}
._ab{width:247.254509px;}
._99{width:250.273672px;}
._b0{width:255.035212px;}
._93{width:258.174373px;}
._a2{width:261.870327px;}
._39{width:263.612705px;}
._38{width:266.127873px;}
._3c{width:267.299059px;}
._47{width:268.422245px;}
._9f{width:272.545393px;}
._a6{width:280.628492px;}
._1e{width:296.089099px;}
._95{width:297.409082px;}
._af{width:299.527543px;}
._ae{width:301.297773px;}
._6b{width:305.248930px;}
._ac{width:311.160910px;}
._28{width:317.261634px;}
._5f{width:319.570405px;}
._1c{width:320.712791px;}
._26{width:323.050362px;}
._a8{width:324.283946px;}
._3f{width:327.000712px;}
._3b{width:331.191060px;}
._41{width:332.549443px;}
._1f{width:344.582893px;}
._54{width:348.427645px;}
._2e{width:356.385945px;}
._8b{width:362.281171px;}
._44{width:365.405032px;}
._22{width:367.032212px;}
._4a{width:377.169685px;}
._35{width:379.176060px;}
._51{width:388.598342px;}
._5d{width:393.422282px;}
._3e{width:406.386920px;}
._63{width:411.569012px;}
._3a{width:415.550006px;}
._40{width:417.973975px;}
._5e{width:423.393108px;}
._97{width:424.967488px;}
._29{width:435.257124px;}
._5c{width:436.372145px;}
._5a{width:441.584880px;}
._53{width:450.474369px;}
._12{width:453.656729px;}
._16{width:458.629467px;}
._17{width:459.661454px;}
._13{width:465.219785px;}
._e{width:468.752541px;}
._15{width:470.346121px;}
._d{width:475.194060px;}
._f{width:476.648442px;}
._14{width:482.307571px;}
._43{width:484.798740px;}
._10{width:487.870702px;}
._18{width:493.654629px;}
._4d{width:496.025800px;}
._11{width:505.644879px;}
._49{width:507.449657px;}
._19{width:510.852814px;}
._aa{width:516.660742px;}
._50{width:519.012712px;}
._24{width:527.052612px;}
._60{width:534.794915px;}
._27{width:639.050007px;}
._36{width:649.302284px;}
._23{width:758.179323px;}
._21{width:788.922938px;}
._1d{width:800.135598px;}
._b{width:830.269621px;}
._57{width:843.143061px;}
._61{width:847.021412px;}
._2a{width:857.388434px;}
._20{width:859.419657px;}
._55{width:863.686804px;}
._62{width:878.715416px;}
._56{width:890.283271px;}
._2b{width:894.526418px;}
._2d{width:902.499119px;}
._30{width:906.084674px;}
._c{width:908.047849px;}
._4f{width:909.535831px;}
._31{width:911.868601px;}
._58{width:947.028162px;}
._32{width:976.317396px;}
._25{width:981.774928px;}
._4e{width:983.454907px;}
._2f{width:1006.350620px;}
._52{width:1015.172910px;}
._59{width:1029.774328px;}
._34{width:1043.962950px;}
._46{width:1059.303559px;}
._33{width:1084.268046px;}
._48{width:1094.184723px;}
._2c{width:1097.362283px;}
._4c{width:1126.157123px;}
._5b{width:1155.148760px;}
._4b{width:1170.647767px;}
._45{width:1246.304421px;}
._42{width:1260.704241px;}
._37{width:1362.026174px;}
._7{width:1387.696254px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.995000px;}
.fsb{font-size:33.598800px;}
.fs4{font-size:35.995200px;}
.fsa{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:68.998800px;}
.fs9{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:54.000000px;}
.y34{bottom:124.498500px;}
.y23a{bottom:124.498821px;}
.ye5{bottom:124.499476px;}
.y7f{bottom:124.500000px;}
.y57{bottom:124.500064px;}
.y2b4{bottom:124.500890px;}
.y10f{bottom:124.501500px;}
.y1fe{bottom:130.453500px;}
.y284{bottom:131.982000px;}
.y1c4{bottom:135.808500px;}
.y183{bottom:136.999500px;}
.y2b3{bottom:138.787912px;}
.y56{bottom:140.997458px;}
.y179{bottom:141.081000px;}
.y157{bottom:143.971500px;}
.ybf{bottom:143.973000px;}
.y7e{bottom:143.974500px;}
.y10e{bottom:143.976000px;}
.y259{bottom:144.573000px;}
.y33{bottom:145.503000px;}
.y1fd{bottom:150.012000px;}
.y239{bottom:151.541683px;}
.ye4{bottom:151.542338px;}
.y2b2{bottom:152.988534px;}
.y1c3{bottom:155.283000px;}
.y2ee{bottom:156.307135px;}
.y182{bottom:156.474000px;}
.y55{bottom:157.494852px;}
.y283{bottom:159.024000px;}
.y178{bottom:160.555500px;}
.y156{bottom:163.530000px;}
.ybe{bottom:163.531500px;}
.y7d{bottom:163.533000px;}
.y10d{bottom:163.534500px;}
.y258{bottom:164.131500px;}
.y32{bottom:166.507500px;}
.y2b1{bottom:167.275556px;}
.y238{bottom:169.485058px;}
.y1fc{bottom:169.486500px;}
.y2ed{bottom:170.592956px;}
.y54{bottom:173.993445px;}
.y1c2{bottom:174.757500px;}
.y181{bottom:175.948500px;}
.y282{bottom:178.498500px;}
.ye3{bottom:179.605187px;}
.y177{bottom:180.030000px;}
.y7c{bottom:183.006000px;}
.y10c{bottom:183.009000px;}
.y257{bottom:183.606000px;}
.y2ec{bottom:184.794779px;}
.y2b0{bottom:186.748912px;}
.y237{bottom:187.513633px;}
.y155{bottom:188.958000px;}
.y1fb{bottom:188.961000px;}
.y53{bottom:190.490839px;}
.y31{bottom:192.018000px;}
.y1c1{bottom:194.316000px;}
.y180{bottom:195.507000px;}
.ye2{bottom:198.398153px;}
.y2eb{bottom:199.081800px;}
.y176{bottom:199.588500px;}
.y2af{bottom:201.035934px;}
.ybd{bottom:202.479000px;}
.y7b{bottom:202.480500px;}
.y10b{bottom:202.482000px;}
.y256{bottom:203.080500px;}
.y281{bottom:205.540500px;}
.y52{bottom:206.988233px;}
.y1fa{bottom:208.519500px;}
.y1c0{bottom:213.789000px;}
.y17f{bottom:214.980000px;}
.y2ae{bottom:215.237756px;}
.y236{bottom:215.661681px;}
.ye1{bottom:217.107119px;}
.y2ea{bottom:218.555157px;}
.y175{bottom:219.061500px;}
.y7a{bottom:222.039000px;}
.y10a{bottom:222.042000px;}
.y255{bottom:222.639000px;}
.y280{bottom:225.015000px;}
.ybc{bottom:227.991825px;}
.y1f9{bottom:227.992500px;}
.y154{bottom:232.074000px;}
.y51{bottom:232.499914px;}
.y2e9{bottom:232.842178px;}
.y1bf{bottom:233.263500px;}
.y235{bottom:234.369447px;}
.y2ad{bottom:234.711113px;}
.y30{bottom:235.474500px;}
.ye0{bottom:235.901284px;}
.y17e{bottom:240.490500px;}
.y174{bottom:241.512000px;}
.y79{bottom:241.513500px;}
.y109{bottom:241.515000px;}
.y254{bottom:242.112000px;}
.y1f8{bottom:247.467000px;}
.y50{bottom:248.997308px;}
.y2ac{bottom:248.998134px;}
.y153{bottom:251.548500px;}
.y27f{bottom:251.971500px;}
.y2e8{bottom:252.315535px;}
.y1be{bottom:252.738000px;}
.y234{bottom:253.163612px;}
.ydf{bottom:254.609050px;}
.ybb{bottom:255.033000px;}
.y2f{bottom:256.479000px;}
.y12a{bottom:260.986500px;}
.y78{bottom:260.988000px;}
.y108{bottom:260.989500px;}
.y253{bottom:261.586500px;}
.y2ab{bottom:263.285155px;}
.y2e7{bottom:266.602556px;}
.y1f7{bottom:266.941500px;}
.y1b8{bottom:267.024000px;}
.y152{bottom:271.023000px;}
.y27d{bottom:271.530000px;}
.y233{bottom:271.871379px;}
.y27e{bottom:272.295000px;}
.y1bd{bottom:272.296500px;}
.yde{bottom:273.403215px;}
.y17d{bottom:273.572747px;}
.y4f{bottom:274.508989px;}
.y2e{bottom:277.483500px;}
.y77{bottom:280.461000px;}
.y107{bottom:280.462500px;}
.y2e6{bottom:280.804379px;}
.y252{bottom:281.145000px;}
.y2aa{bottom:282.758512px;}
.y1f6{bottom:286.500000px;}
.y151{bottom:290.581500px;}
.y4e{bottom:291.006383px;}
.y1bc{bottom:291.769500px;}
.ydd{bottom:292.112181px;}
.y232{bottom:294.151500px;}
.y1ae{bottom:294.236962px;}
.y17c{bottom:296.872856px;}
.y27c{bottom:296.958000px;}
.y2a9{bottom:296.960334px;}
.y2d{bottom:298.488000px;}
.y76{bottom:300.019500px;}
.y106{bottom:300.022500px;}
.y2e5{bottom:300.362934px;}
.yba{bottom:300.618000px;}
.y251{bottom:300.619500px;}
.y1f5{bottom:305.973000px;}
.y4d{bottom:307.503776px;}
.y150{bottom:310.054500px;}
.ydc{bottom:310.905146px;}
.y17b{bottom:311.074679px;}
.y2a8{bottom:311.246156px;}
.y2e4{bottom:314.564757px;}
.y2c{bottom:319.492500px;}
.y75{bottom:319.494000px;}
.y105{bottom:319.495500px;}
.yb9{bottom:320.092500px;}
.y250{bottom:320.094000px;}
.y1ad{bottom:321.194625px;}
.y1b7{bottom:323.320500px;}
.y4c{bottom:324.001170px;}
.y17a{bottom:325.360500px;}
.y1f4{bottom:325.447500px;}
.y2a6{bottom:325.533177px;}
.y2a7{bottom:325.872773px;}
.y2e3{bottom:328.850578px;}
.y14f{bottom:329.529000px;}
.ydb{bottom:329.614112px;}
.y22b{bottom:332.337000px;}
.y27b{bottom:333.102000px;}
.y129{bottom:338.967000px;}
.y74{bottom:338.968500px;}
.y104{bottom:338.970000px;}
.yb8{bottom:339.565500px;}
.y24f{bottom:339.567000px;}
.y4b{bottom:340.499764px;}
.y1b6{bottom:342.795000px;}
.y2e2{bottom:343.052400px;}
.y1ac{bottom:343.558500px;}
.y2b{bottom:344.919000px;}
.y173{bottom:345.004500px;}
.y1f3{bottom:345.006000px;}
.y2a5{bottom:345.006534px;}
.yda{bottom:348.407077px;}
.y14e{bottom:349.087500px;}
.y1ea{bottom:351.212962px;}
.y22a{bottom:351.811500px;}
.y27a{bottom:352.575000px;}
.y4a{bottom:356.997158px;}
.y1ab{bottom:357.251920px;}
.y73{bottom:358.527000px;}
.y103{bottom:358.528500px;}
.yb7{bottom:359.124000px;}
.y24e{bottom:359.125500px;}
.y2a4{bottom:359.293555px;}
.y1b5{bottom:362.269500px;}
.y2e1{bottom:362.610956px;}
.y128{bottom:364.479000px;}
.y1f2{bottom:364.480500px;}
.y14d{bottom:368.562000px;}
.yd9{bottom:370.602000px;}
.y229{bottom:371.370000px;}
.y279{bottom:372.049500px;}
.y2a3{bottom:373.495378px;}
.y1aa{bottom:375.195296px;}
.y2e0{bottom:376.812778px;}
.y72{bottom:378.000000px;}
.y1e9{bottom:378.170625px;}
.yb6{bottom:378.598500px;}
.y24d{bottom:378.600000px;}
.y1b4{bottom:381.828000px;}
.y49{bottom:382.508839px;}
.y1f1{bottom:383.955000px;}
.y172{bottom:385.996500px;}
.y102{bottom:387.016500px;}
.y14c{bottom:388.035000px;}
.y14a{bottom:388.038000px;}
.y2a{bottom:388.374000px;}
.y228{bottom:390.843000px;}
.y2df{bottom:391.099800px;}
.y278{bottom:391.524000px;}
.y2a2{bottom:392.968734px;}
.y14b{bottom:394.752000px;}
.y1e8{bottom:396.198000px;}
.yb5{bottom:398.073000px;}
.y24c{bottom:398.074500px;}
.y1b3{bottom:401.301000px;}
.y1e7{bottom:401.556000px;}
.y1a9{bottom:403.342144px;}
.y71{bottom:403.512000px;}
.y1f0{bottom:403.513500px;}
.yd8{bottom:405.553500px;}
.y171{bottom:405.555000px;}
.y101{bottom:406.491000px;}
.y2a1{bottom:407.255756px;}
.y149{bottom:407.512500px;}
.y48{bottom:408.020520px;}
.y227{bottom:410.317500px;}
.y2de{bottom:410.573156px;}
.y277{bottom:411.082500px;}
.y1e6{bottom:414.229598px;}
.yb4{bottom:417.631500px;}
.y24b{bottom:417.633000px;}
.y1b2{bottom:420.775500px;}
.y2a0{bottom:421.541577px;}
.y1a8{bottom:422.051110px;}
.y1ef{bottom:422.986500px;}
.y2dd{bottom:424.860178px;}
.yd7{bottom:425.028000px;}
.y148{bottom:427.071000px;}
.y226{bottom:429.792000px;}
.y276{bottom:430.557000px;}
.y1e5{bottom:432.172974px;}
.y47{bottom:433.532201px;}
.y100{bottom:434.979000px;}
.yb3{bottom:437.106000px;}
.y24a{bottom:437.107500px;}
.y2dc{bottom:439.062000px;}
.y1b1{bottom:440.250000px;}
.y1a7{bottom:440.845275px;}
.y29f{bottom:441.016134px;}
.y127{bottom:441.613500px;}
.y1ee{bottom:442.461000px;}
.y170{bottom:444.502500px;}
.yd6{bottom:444.586500px;}
.y147{bottom:446.545500px;}
.y29{bottom:448.669388px;}
.y225{bottom:449.350500px;}
.y275{bottom:450.030000px;}
.y1e4{bottom:450.201549px;}
.yff{bottom:454.537500px;}
.y29e{bottom:455.217956px;}
.yb2{bottom:456.579000px;}
.y249{bottom:456.580500px;}
.y2db{bottom:458.620556px;}
.y46{bottom:459.043882px;}
.y1a6{bottom:459.553041px;}
.y1b0{bottom:459.808500px;}
.y1ed{bottom:461.935500px;}
.yd5{bottom:464.061000px;}
.y146{bottom:466.018500px;}
.y224{bottom:468.823500px;}
.y29d{bottom:469.503778px;}
.y274{bottom:469.588500px;}
.y126{bottom:470.101500px;}
.y2da{bottom:472.822378px;}
.yfe{bottom:474.012000px;}
.y45{bottom:475.541276px;}
.yb1{bottom:476.137500px;}
.y248{bottom:476.139000px;}
.y1a5{bottom:478.347206px;}
.y1e3{bottom:478.349597px;}
.y28{bottom:478.688213px;}
.y1af{bottom:479.281500px;}
.y1ec{bottom:481.494000px;}
.yd4{bottom:483.534000px;}
.y16f{bottom:483.535500px;}
.y145{bottom:485.578500px;}
.y2d9{bottom:487.108200px;}
.y223{bottom:488.298000px;}
.y29c{bottom:488.978334px;}
.y273{bottom:489.063000px;}
.y125{bottom:489.574500px;}
.y44{bottom:492.038670px;}
.yfd{bottom:493.485000px;}
.y27{bottom:493.740825px;}
.yb0{bottom:495.612000px;}
.y247{bottom:495.613500px;}
.y1a4{bottom:497.056172px;}
.y1e2{bottom:497.057363px;}
.y1eb{bottom:500.967000px;}
.y16e{bottom:503.008500px;}
.y29b{bottom:503.264156px;}
.y70{bottom:504.369000px;}
.y144{bottom:505.051500px;}
.y2d8{bottom:506.582756px;}
.y222{bottom:507.856500px;}
.y272{bottom:508.537500px;}
.y26{bottom:508.707037px;}
.yd3{bottom:509.046000px;}
.yaf{bottom:515.086500px;}
.y246{bottom:515.088000px;}
.y1a3{bottom:515.849138px;}
.y1e1{bottom:515.851528px;}
.y43{bottom:517.465152px;}
.y29a{bottom:517.465978px;}
.y124{bottom:518.062500px;}
.y2d7{bottom:520.868578px;}
.yfc{bottom:521.973000px;}
.y25{bottom:523.674450px;}
.y143{bottom:524.526000px;}
.y1bb{bottom:525.968569px;}
.y221{bottom:527.331000px;}
.y271{bottom:528.096000px;}
.y16d{bottom:528.519000px;}
.y6f{bottom:529.879500px;}
.y299{bottom:531.753000px;}
.y42{bottom:533.962546px;}
.y1a2{bottom:534.558104px;}
.y1e0{bottom:534.560494px;}
.yae{bottom:534.645000px;}
.y245{bottom:534.646500px;}
.y24{bottom:538.725862px;}
.y2d6{bottom:540.343134px;}
.yfb{bottom:541.533000px;}
.y142{bottom:544.084500px;}
.y123{bottom:546.636000px;}
.y220{bottom:546.805500px;}
.y270{bottom:547.569000px;}
.y1ba{bottom:549.269878px;}
.y41{bottom:550.545138px;}
.yd2{bottom:551.058000px;}
.y298{bottom:551.226356px;}
.y1a1{bottom:553.351069px;}
.y1df{bottom:553.353459px;}
.y23{bottom:553.693275px;}
.yad{bottom:554.118000px;}
.y244{bottom:554.119500px;}
.y2d5{bottom:554.544957px;}
.y219{bottom:555.222403px;}
.yfa{bottom:561.006000px;}
.y1b9{bottom:563.470500px;}
.y141{bottom:563.559000px;}
.y297{bottom:565.513378px;}
.y122{bottom:566.109000px;}
.y21f{bottom:566.364000px;}
.y40{bottom:567.042532px;}
.y22{bottom:568.744687px;}
.y2d4{bottom:568.830778px;}
.y16c{bottom:569.511000px;}
.yd1{bottom:570.616500px;}
.y1a0{bottom:572.060035px;}
.y1de{bottom:572.062425px;}
.y6e{bottom:572.995500px;}
.y26f{bottom:573.079500px;}
.yac{bottom:573.592500px;}
.y243{bottom:573.594000px;}
.y296{bottom:579.714000px;}
.yf9{bottom:580.480500px;}
.y218{bottom:581.499675px;}
.y140{bottom:583.032000px;}
.y303{bottom:583.117800px;}
.y3f{bottom:583.541126px;}
.y21{bottom:583.712100px;}
.y21e{bottom:585.837000px;}
.y2d3{bottom:588.305335px;}
.y19e{bottom:588.813000px;}
.y16b{bottom:589.069500px;}
.yd0{bottom:590.089500px;}
.y19f{bottom:590.853000px;}
.y1dd{bottom:590.855390px;}
.y19d{bottom:590.855878px;}
.yab{bottom:593.067000px;}
.y242{bottom:593.068500px;}
.y6d{bottom:594.000000px;}
.y121{bottom:594.597000px;}
.y302{bottom:597.319622px;}
.y20{bottom:598.678313px;}
.y217{bottom:599.443051px;}
.y295{bottom:600.037500px;}
.y3e{bottom:600.038520px;}
.y2d2{bottom:602.591156px;}
.y13f{bottom:602.592000px;}
.y21d{bottom:605.311500px;}
.y16a{bottom:608.542500px;}
.yf8{bottom:608.968500px;}
.y19c{bottom:609.563644px;}
.ycf{bottom:609.564000px;}
.y1dc{bottom:609.564357px;}
.yaa{bottom:612.625500px;}
.y241{bottom:612.627000px;}
.y1f{bottom:613.730925px;}
.y6c{bottom:615.004500px;}
.y3d{bottom:616.535913px;}
.y2d1{bottom:616.792979px;}
.y216{bottom:617.471625px;}
.y26e{bottom:618.154500px;}
.y13e{bottom:622.065000px;}
.y120{bottom:623.085000px;}
.y21c{bottom:624.786000px;}
.y169{bottom:628.017000px;}
.y19b{bottom:628.357809px;}
.y1db{bottom:628.358522px;}
.yf7{bottom:628.527000px;}
.y1e{bottom:628.697138px;}
.yce{bottom:629.038500px;}
.y301{bottom:631.080000px;}
.ya9{bottom:632.100000px;}
.y240{bottom:632.101500px;}
.y3c{bottom:633.033307px;}
.y6b{bottom:636.009000px;}
.y2d0{bottom:636.351534px;}
.y26d{bottom:637.627500px;}
.y215{bottom:639.835500px;}
.y13d{bottom:641.539500px;}
.y1d{bottom:643.748549px;}
.y21b{bottom:644.344500px;}
.y300{bottom:645.365821px;}
.y1da{bottom:647.066288px;}
.y19a{bottom:647.066775px;}
.y168{bottom:647.575500px;}
.yf6{bottom:648.001500px;}
.ycd{bottom:648.597000px;}
.y2cf{bottom:650.553357px;}
.ya8{bottom:651.573000px;}
.y23f{bottom:651.574500px;}
.y214{bottom:653.443051px;}
.y6a{bottom:657.013500px;}
.y26c{bottom:657.102000px;}
.y3b{bottom:657.609000px;}
.y1c{bottom:658.715962px;}
.y13c{bottom:661.014000px;}
.y21a{bottom:663.817500px;}
.y2ce{bottom:664.840378px;}
.y294{bottom:665.095500px;}
.y199{bottom:665.859740px;}
.y1d9{bottom:665.860453px;}
.y167{bottom:667.050000px;}
.yf5{bottom:667.474500px;}
.ycc{bottom:668.070000px;}
.ya7{bottom:671.131500px;}
.y23e{bottom:671.133000px;}
.y213{bottom:671.471625px;}
.y1b{bottom:673.683375px;}
.y26b{bottom:676.660500px;}
.y2ff{bottom:679.041001px;}
.y11f{bottom:680.061000px;}
.y13b{bottom:680.572500px;}
.y69{bottom:682.441500px;}
.y2cd{bottom:684.313735px;}
.y198{bottom:684.568706px;}
.y1d8{bottom:684.569419px;}
.y293{bottom:684.570000px;}
.y166{bottom:686.524500px;}
.yf4{bottom:687.033000px;}
.y1a{bottom:688.734787px;}
.y212{bottom:689.499000px;}
.ya6{bottom:690.606000px;}
.y23d{bottom:690.607500px;}
.y2fe{bottom:693.328022px;}
.ycb{bottom:693.580500px;}
.y26a{bottom:696.135000px;}
.y2cc{bottom:698.600756px;}
.y13a{bottom:700.045500px;}
.y197{bottom:703.361671px;}
.y1d7{bottom:703.362384px;}
.y19{bottom:703.701000px;}
.y292{bottom:704.128500px;}
.y165{bottom:706.083000px;}
.y231{bottom:707.444645px;}
.y11e{bottom:708.634500px;}
.ya5{bottom:710.080500px;}
.y23c{bottom:710.082000px;}
.yf3{bottom:712.459500px;}
.y2ca{bottom:712.802578px;}
.y2cb{bottom:713.056975px;}
.y269{bottom:715.608000px;}
.y211{bottom:717.563445px;}
.y139{bottom:719.520000px;}
.y196{bottom:722.070638px;}
.y1d6{bottom:722.071350px;}
.y291{bottom:723.603000px;}
.y164{bottom:725.556000px;}
.y68{bottom:725.557575px;}
.y2fd{bottom:727.088400px;}
.ya4{bottom:729.639000px;}
.y23b{bottom:729.640500px;}
.y18{bottom:730.743000px;}
.y16{bottom:730.744500px;}
.y210{bottom:731.084640px;}
.y2c9{bottom:732.361134px;}
.y230{bottom:734.487507px;}
.y268{bottom:735.082500px;}
.y17{bottom:736.696500px;}
.y11d{bottom:737.122500px;}
.y138{bottom:739.078500px;}
.y1d5{bottom:740.864315px;}
.y195{bottom:740.864803px;}
.y2fc{bottom:741.290222px;}
.y28f{bottom:743.076000px;}
.y290{bottom:743.842500px;}
.y3a{bottom:744.520500px;}
.yca{bottom:744.607500px;}
.y163{bottom:745.030500px;}
.y67{bottom:746.562075px;}
.y2c8{bottom:746.562956px;}
.y14{bottom:747.241500px;}
.ya3{bottom:749.112000px;}
.y20f{bottom:749.112524px;}
.ya1{bottom:749.115000px;}
.y22f{bottom:752.429683px;}
.y15{bottom:753.193500px;}
.y267{bottom:754.641000px;}
.ya2{bottom:755.745000px;}
.yf2{bottom:757.021500px;}
.y137{bottom:758.553000px;}
.y194{bottom:759.572569px;}
.y1d4{bottom:759.573281px;}
.y2fb{bottom:760.848778px;}
.y39{bottom:761.782500px;}
.y28e{bottom:762.636000px;}
.y12{bottom:763.738500px;}
.y162{bottom:764.589000px;}
.y11c{bottom:765.610500px;}
.y2c7{bottom:766.121512px;}
.y20e{bottom:767.056035px;}
.y66{bottom:767.566575px;}
.ya0{bottom:768.588000px;}
.y13{bottom:769.692000px;}
.y22e{bottom:770.458258px;}
.yc9{bottom:773.095500px;}
.y2fa{bottom:775.050600px;}
.yf1{bottom:776.580000px;}
.y136{bottom:778.026000px;}
.y193{bottom:778.366734px;}
.y1d3{bottom:778.367447px;}
.y38{bottom:778.960500px;}
.y11{bottom:780.235500px;}
.yf{bottom:780.237000px;}
.y2c6{bottom:780.323334px;}
.y266{bottom:783.129000px;}
.y161{bottom:784.063500px;}
.y20d{bottom:785.085045px;}
.y10{bottom:786.189000px;}
.y9f{bottom:788.062500px;}
.y22d{bottom:788.486832px;}
.y65{bottom:788.571075px;}
.y2f9{bottom:789.337622px;}
.y28d{bottom:789.592500px;}
.y11b{bottom:794.098500px;}
.y2c5{bottom:794.609156px;}
.yf0{bottom:796.054500px;}
.y37{bottom:796.224000px;}
.yd{bottom:796.734000px;}
.y192{bottom:797.075035px;}
.y1d2{bottom:797.075213px;}
.y90{bottom:797.580305px;}
.y135{bottom:797.586000px;}
.yc8{bottom:801.583500px;}
.y265{bottom:802.603500px;}
.ye{bottom:802.686000px;}
.y20c{bottom:803.112929px;}
.y160{bottom:803.536500px;}
.y2f8{bottom:803.623443px;}
.y22c{bottom:806.430208px;}
.y9e{bottom:807.621000px;}
.y64{bottom:809.575575px;}
.yb{bottom:813.231000px;}
.y9{bottom:813.232500px;}
.y36{bottom:813.486000px;}
.yc{bottom:813.654900px;}
.y8f{bottom:814.077699px;}
.y2c4{bottom:814.083712px;}
.yef{bottom:815.529000px;}
.y191{bottom:815.868234px;}
.y1d1{bottom:815.869378px;}
.y28c{bottom:816.634500px;}
.y134{bottom:817.059000px;}
.ya{bottom:819.184500px;}
.y20b{bottom:821.056440px;}
.y11a{bottom:822.586500px;}
.y2f7{bottom:823.098000px;}
.y9d{bottom:827.095500px;}
.y2c3{bottom:828.369534px;}
.y15f{bottom:829.049325px;}
.y7{bottom:829.729500px;}
.yc7{bottom:830.071500px;}
.y8e{bottom:830.575093px;}
.y63{bottom:830.580075px;}
.y264{bottom:831.091500px;}
.y1d0{bottom:834.577144px;}
.y190{bottom:834.578256px;}
.yee{bottom:835.087500px;}
.y8{bottom:835.681500px;}
.y133{bottom:836.533500px;}
.y2f6{bottom:837.298622px;}
.y20a{bottom:839.084325px;}
.y2c2{bottom:842.571356px;}
.y28b{bottom:843.592500px;}
.y9c{bottom:846.568500px;}
.y8d{bottom:847.072486px;}
.yc6{bottom:849.630000px;}
.y263{bottom:850.650000px;}
.y119{bottom:851.074500px;}
.y62{bottom:851.584575px;}
.y2f5{bottom:851.585644px;}
.y18f{bottom:853.371221px;}
.y1cf{bottom:853.371309px;}
.yed{bottom:854.562000px;}
.y15e{bottom:856.090500px;}
.y132{bottom:856.092000px;}
.y209{bottom:857.113334px;}
.y2c1{bottom:862.045913px;}
.y28a{bottom:863.067000px;}
.y8c{bottom:863.569880px;}
.y9b{bottom:866.127000px;}
.y6{bottom:867.232200px;}
.y208{bottom:870.549030px;}
.y118{bottom:870.633000px;}
.y2f4{bottom:871.059000px;}
.y18e{bottom:872.080187px;}
.y1ce{bottom:872.080275px;}
.y61{bottom:872.590500px;}
.yec{bottom:874.035000px;}
.y131{bottom:875.566500px;}
.y2c0{bottom:876.331734px;}
.yc5{bottom:878.118000px;}
.y262{bottom:879.138000px;}
.y8b{bottom:880.068474px;}
.y2f3{bottom:885.346022px;}
.y9a{bottom:885.601500px;}
.y207{bottom:888.576915px;}
.y289{bottom:890.109000px;}
.y2bf{bottom:890.618756px;}
.y18d{bottom:890.873153px;}
.y1cd{bottom:890.873240px;}
.yeb{bottom:893.509500px;}
.y60{bottom:893.595000px;}
.y130{bottom:895.039500px;}
.y8a{bottom:896.565868px;}
.y15d{bottom:897.081000px;}
.yc4{bottom:897.592500px;}
.y261{bottom:898.612500px;}
.y117{bottom:899.121000px;}
.y5{bottom:900.993000px;}
.y2f2{bottom:904.820578px;}
.y99{bottom:905.076000px;}
.y206{bottom:906.605924px;}
.y18c{bottom:909.582119px;}
.y1cc{bottom:909.582206px;}
.y2be{bottom:910.092112px;}
.y89{bottom:913.063262px;}
.yea{bottom:913.068000px;}
.y12f{bottom:914.514000px;}
.y5f{bottom:914.599500px;}
.y15c{bottom:916.555500px;}
.y288{bottom:917.065500px;}
.y260{bottom:918.085500px;}
.y2f1{bottom:919.106400px;}
.y2bd{bottom:924.293935px;}
.y205{bottom:924.549435px;}
.y98{bottom:924.634500px;}
.y115{bottom:925.059000px;}
.yc3{bottom:926.080500px;}
.y116{bottom:927.609000px;}
.y114{bottom:927.610500px;}
.y1cb{bottom:928.375171px;}
.y18b{bottom:928.376284px;}
.y88{bottom:929.560655px;}
.ye9{bottom:932.542500px;}
.y2f0{bottom:933.308222px;}
.y12e{bottom:934.072500px;}
.y4{bottom:934.670100px;}
.y5e{bottom:935.604000px;}
.y15b{bottom:936.114000px;}
.y287{bottom:936.625500px;}
.y204{bottom:938.070630px;}
.y2bc{bottom:938.580956px;}
.y97{bottom:944.109000px;}
.yc2{bottom:945.639000px;}
.y87{bottom:946.058049px;}
.y25f{bottom:946.659000px;}
.y18a{bottom:947.084050px;}
.y1ca{bottom:947.084138px;}
.ye8{bottom:952.015500px;}
.y2bb{bottom:952.866778px;}
.y12d{bottom:953.547000px;}
.y15a{bottom:955.588500px;}
.y113{bottom:956.098500px;}
.y203{bottom:956.098515px;}
.y5d{bottom:956.608500px;}
.y286{bottom:956.863500px;}
.y86{bottom:962.555443px;}
.y96{bottom:963.582000px;}
.yc1{bottom:965.113500px;}
.y189{bottom:965.793016px;}
.y1c9{bottom:965.793104px;}
.y25e{bottom:966.133500px;}
.y2ef{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y202{bottom:969.619709px;}
.ye7{bottom:971.574000px;}
.y2ba{bottom:972.341334px;}
.y12c{bottom:973.020000px;}
.y159{bottom:975.061500px;}
.y285{bottom:975.573000px;}
.y5c{bottom:977.613000px;}
.y85{bottom:979.052837px;}
.y95{bottom:983.140500px;}
.y1c8{bottom:984.586069px;}
.y112{bottom:984.586500px;}
.y188{bottom:984.587181px;}
.y25d{bottom:985.606500px;}
.y2b9{bottom:986.541957px;}
.y201{bottom:987.563220px;}
.yc0{bottom:993.601500px;}
.ye6{bottom:997.086000px;}
.y12b{bottom:998.532000px;}
.y5b{bottom:998.617500px;}
.y158{bottom:1000.573500px;}
.y2b8{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y94{bottom:1002.615000px;}
.y187{bottom:1003.294947px;}
.y1c7{bottom:1003.295035px;}
.y111{bottom:1004.061000px;}
.y84{bottom:1004.564518px;}
.y200{bottom:1005.591105px;}
.y25c{bottom:1014.094500px;}
.y2b7{bottom:1015.116000px;}
.y5a{bottom:1019.622000px;}
.y83{bottom:1021.063112px;}
.y1c6{bottom:1022.088000px;}
.y186{bottom:1022.089112px;}
.y93{bottom:1022.089500px;}
.y1ff{bottom:1023.620114px;}
.y1c5{bottom:1027.446000px;}
.y110{bottom:1032.633000px;}
.y25b{bottom:1033.653000px;}
.y2b6{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y59{bottom:1040.626500px;}
.y185{bottom:1040.796879px;}
.y92{bottom:1041.562500px;}
.y82{bottom:1046.574793px;}
.y2b5{bottom:1048.791179px;}
.y25a{bottom:1059.079500px;}
.y91{bottom:1061.121000px;}
.y58{bottom:1061.631000px;}
.y81{bottom:1063.072186px;}
.y184{bottom:1063.077000px;}
.y80{bottom:1118.692500px;}
.h17{height:23.996250px;}
.h18{height:26.039070px;}
.h4{height:27.932275px;}
.h10{height:29.996550px;}
.h19{height:33.749550px;}
.hb{height:34.968313px;}
.h12{height:35.999550px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hd{height:39.119511px;}
.hc{height:40.559493px;}
.h3{height:41.904000px;}
.h14{height:43.376045px;}
.h16{height:43.382930px;}
.h15{height:43.384135px;}
.h9{height:44.175000px;}
.he{height:44.249447px;}
.ha{height:45.000000px;}
.h13{height:46.500000px;}
.h8{height:53.543069px;}
.h11{height:53.999550px;}
.hf{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:54.000000px;}
.x47{left:58.336950px;}
.x30{left:71.433000px;}
.x43{left:109.785750px;}
.x3f{left:129.940050px;}
.x51{left:164.805415px;}
.x4a{left:174.331529px;}
.x50{left:214.892789px;}
.x44{left:219.657000px;}
.x38{left:226.628642px;}
.x3a{left:229.519406px;}
.x4b{left:252.057867px;}
.x39{left:255.967075px;}
.x36{left:257.327858px;}
.x37{left:267.617730px;}
.x1{left:300.018000px;}
.x55{left:307.332000px;}
.x35{left:311.752500px;}
.x31{left:317.961000px;}
.x4c{left:325.021019px;}
.x56{left:332.247289px;}
.x53{left:350.190000px;}
.x20{left:358.356000px;}
.x21{left:369.411000px;}
.x18{left:382.591500px;}
.x8{left:385.738500px;}
.x41{left:387.780000px;}
.x19{left:393.646500px;}
.x42{left:395.008500px;}
.x9{left:396.793500px;}
.x4d{left:397.985297px;}
.x45{left:403.681500px;}
.x46{left:408.953034px;}
.x26{left:415.246500px;}
.x11{left:416.778000px;}
.x27{left:420.859500px;}
.x54{left:425.790000px;}
.x12{left:427.833000px;}
.xa{left:436.166250px;}
.x57{left:440.502735px;}
.x2{left:448.582500px;}
.x2e{left:454.110000px;}
.x4e{left:471.118321px;}
.x4f{left:484.469643px;}
.xb{left:487.446000px;}
.x1a{left:491.782500px;}
.x3b{left:496.290000px;}
.x22{left:500.031000px;}
.x1b{left:502.837500px;}
.x3{left:504.198000px;}
.x23{left:505.558500px;}
.xc{left:512.362500px;}
.x48{left:513.978000px;}
.x13{left:539.404500px;}
.x32{left:541.701000px;}
.x14{left:550.545000px;}
.x28{left:584.305500px;}
.x29{left:589.833000px;}
.x1c{left:603.354000px;}
.x49{left:605.990523px;}
.x1d{left:608.967000px;}
.x4{left:630.312000px;}
.xd{left:639.070500px;}
.x15{left:641.196000px;}
.xe{left:650.125500px;}
.x5{left:652.507500px;}
.x24{left:658.290000px;}
.x40{left:666.450220px;}
.x2a{left:675.807000px;}
.x2b{left:686.863500px;}
.x52{left:694.683000px;}
.x33{left:720.453000px;}
.x34{left:726.916500px;}
.x1e{left:728.022000px;}
.x1f{left:733.549500px;}
.xf{left:735.505500px;}
.x10{left:746.646000px;}
.x16{left:757.191000px;}
.x17{left:768.330000px;}
.x25{left:773.007000px;}
.x3c{left:777.430500px;}
.x3d{left:778.536000px;}
.x3e{left:787.209000px;}
.x6{left:803.622000px;}
.x2c{left:804.642000px;}
.x7{left:809.149500px;}
.x2d{left:818.503500px;}
@media print{
.v4{vertical-align:-15.418667pt;}
.v1{vertical-align:-5.445333pt;}
.v5{vertical-align:-2.720000pt;}
.v2{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.410644pt;}
.ls6{letter-spacing:-1.123200pt;}
.lsa{letter-spacing:-1.067200pt;}
.lse{letter-spacing:-1.066653pt;}
.lsb{letter-spacing:-0.214663pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.213331pt;}
.lsc{letter-spacing:-0.212800pt;}
.ls8{letter-spacing:-0.211997pt;}
.ls7{letter-spacing:-0.211200pt;}
.ls12{letter-spacing:-0.211198pt;}
.ls9{letter-spacing:-0.188775pt;}
.ls14{letter-spacing:-0.188423pt;}
.ls13{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:2.603733pt;}
.ls27{letter-spacing:2.608533pt;}
.ls3a{letter-spacing:4.232480pt;}
.ls4{letter-spacing:8.396695pt;}
.ls39{letter-spacing:9.104953pt;}
.ls3{letter-spacing:9.232951pt;}
.ls35{letter-spacing:9.535881pt;}
.ls28{letter-spacing:9.548681pt;}
.ls2b{letter-spacing:9.621213pt;}
.ls30{letter-spacing:9.625480pt;}
.ls36{letter-spacing:9.651079pt;}
.ls26{letter-spacing:9.655346pt;}
.ls29{letter-spacing:9.732145pt;}
.ls24{letter-spacing:9.774811pt;}
.ls25{letter-spacing:9.779078pt;}
.ls34{letter-spacing:9.834544pt;}
.ls33{letter-spacing:9.838810pt;}
.ls22{letter-spacing:9.851610pt;}
.ls31{letter-spacing:9.924143pt;}
.ls2a{letter-spacing:9.958276pt;}
.ls10{letter-spacing:10.974400pt;}
.ls11{letter-spacing:10.979467pt;}
.lsf{letter-spacing:11.004800pt;}
.ls20{letter-spacing:11.269333pt;}
.ls1d{letter-spacing:11.333333pt;}
.ls16{letter-spacing:11.397333pt;}
.ls18{letter-spacing:11.445333pt;}
.ls1c{letter-spacing:11.546667pt;}
.ls21{letter-spacing:11.573333pt;}
.ls1a{letter-spacing:11.578667pt;}
.ls1b{letter-spacing:11.632000pt;}
.ls1e{letter-spacing:11.637333pt;}
.ls17{letter-spacing:11.648000pt;}
.ls1f{letter-spacing:11.701333pt;}
.ls19{letter-spacing:11.738667pt;}
.ls15{letter-spacing:11.845333pt;}
.ls23{letter-spacing:12.277867pt;}
.ls38{letter-spacing:12.496000pt;}
.ls3b{letter-spacing:13.909159pt;}
.ls0{letter-spacing:15.763200pt;}
.ls1{letter-spacing:18.474436pt;}
.ls2{letter-spacing:18.478702pt;}
.ls2e{letter-spacing:121.662378pt;}
.ls2c{letter-spacing:121.962374pt;}
.ls2d{letter-spacing:147.074039pt;}
.ls32{letter-spacing:188.123515pt;}
.ls37{letter-spacing:228.340612pt;}
.ws3c{word-spacing:-22.442386pt;}
.ws18a{word-spacing:-17.772652pt;}
.ws16b{word-spacing:-15.013333pt;}
.ws12{word-spacing:-13.276800pt;}
.ws1c2{word-spacing:-11.989183pt;}
.ws19e{word-spacing:-11.775853pt;}
.ws45{word-spacing:-9.599880pt;}
.ws7{word-spacing:-8.802026pt;}
.ws18d{word-spacing:-3.763169pt;}
.ws37{word-spacing:-3.698336pt;}
.ws184{word-spacing:-3.628770pt;}
.ws73{word-spacing:-3.434607pt;}
.ws1d8{word-spacing:-3.182894pt;}
.ws2c{word-spacing:-3.178627pt;}
.ws1c7{word-spacing:-3.123161pt;}
.ws1be{word-spacing:-3.114628pt;}
.ws34{word-spacing:-3.075467pt;}
.ws1a7{word-spacing:-3.059162pt;}
.ws1da{word-spacing:-3.046362pt;}
.ws1aa{word-spacing:-3.029295pt;}
.ws1db{word-spacing:-3.012229pt;}
.ws1de{word-spacing:-3.003696pt;}
.ws1cb{word-spacing:-2.999429pt;}
.ws1d2{word-spacing:-2.990896pt;}
.ws39{word-spacing:-2.984267pt;}
.ws9{word-spacing:-2.980800pt;}
.wse{word-spacing:-2.971200pt;}
.ws1c{word-spacing:-2.969563pt;}
.ws1d4{word-spacing:-2.956763pt;}
.ws62{word-spacing:-2.953867pt;}
.ws1a4{word-spacing:-2.948230pt;}
.wsc{word-spacing:-2.947200pt;}
.ws6c{word-spacing:-2.943733pt;}
.ws1b7{word-spacing:-2.939697pt;}
.ws1bf{word-spacing:-2.931163pt;}
.ws1af{word-spacing:-2.926897pt;}
.ws1a1{word-spacing:-2.922630pt;}
.ws16{word-spacing:-2.918400pt;}
.ws1d3{word-spacing:-2.918364pt;}
.ws1ab{word-spacing:-2.914097pt;}
.ws19d{word-spacing:-2.909830pt;}
.ws71{word-spacing:-2.903200pt;}
.ws1d6{word-spacing:-2.901297pt;}
.ws13{word-spacing:-2.899200pt;}
.ws1ba{word-spacing:-2.897030pt;}
.ws32{word-spacing:-2.893067pt;}
.ws29{word-spacing:-2.892764pt;}
.ws15{word-spacing:-2.889600pt;}
.ws1a9{word-spacing:-2.888497pt;}
.ws72{word-spacing:-2.888000pt;}
.ws11{word-spacing:-2.884800pt;}
.ws2b{word-spacing:-2.884231pt;}
.ws1c9{word-spacing:-2.879964pt;}
.ws2a{word-spacing:-2.875697pt;}
.ws8{word-spacing:-2.875200pt;}
.ws19{word-spacing:-2.871431pt;}
.ws19c{word-spacing:-2.867164pt;}
.ws22{word-spacing:-2.862898pt;}
.ws1a8{word-spacing:-2.858631pt;}
.ws61{word-spacing:-2.857600pt;}
.ws17{word-spacing:-2.856000pt;}
.ws1b{word-spacing:-2.854364pt;}
.ws27{word-spacing:-2.850098pt;}
.ws21{word-spacing:-2.845831pt;}
.ws6b{word-spacing:-2.837333pt;}
.ws24{word-spacing:-2.837298pt;}
.wsf{word-spacing:-2.836800pt;}
.ws6a{word-spacing:-2.832267pt;}
.ws36{word-spacing:-2.827200pt;}
.ws1f{word-spacing:-2.824498pt;}
.wsa{word-spacing:-2.822400pt;}
.ws67{word-spacing:-2.817067pt;}
.ws12c{word-spacing:-2.815965pt;}
.ws10{word-spacing:-2.812800pt;}
.ws86{word-spacing:-2.811698pt;}
.ws69{word-spacing:-2.806933pt;}
.ws6{word-spacing:-2.803200pt;}
.ws1c1{word-spacing:-2.803165pt;}
.ws6e{word-spacing:-2.801867pt;}
.ws14{word-spacing:-2.798400pt;}
.ws6d{word-spacing:-2.796800pt;}
.ws1cc{word-spacing:-2.794632pt;}
.ws1d5{word-spacing:-2.790365pt;}
.ws2d{word-spacing:-2.781832pt;}
.ws65{word-spacing:-2.776533pt;}
.ws1dd{word-spacing:-2.773299pt;}
.ws70{word-spacing:-2.766400pt;}
.wsd{word-spacing:-2.764800pt;}
.ws1ce{word-spacing:-2.764765pt;}
.ws2f{word-spacing:-2.760499pt;}
.ws1a{word-spacing:-2.756232pt;}
.ws1d1{word-spacing:-2.751966pt;}
.ws1cd{word-spacing:-2.743432pt;}
.ws3b{word-spacing:-2.734899pt;}
.wsb{word-spacing:-2.726400pt;}
.ws1cf{word-spacing:-2.726366pt;}
.ws1b0{word-spacing:-2.722099pt;}
.ws6f{word-spacing:-2.720800pt;}
.ws1a5{word-spacing:-2.717833pt;}
.ws1c4{word-spacing:-2.700766pt;}
.ws68{word-spacing:-2.700533pt;}
.ws1b8{word-spacing:-2.696500pt;}
.ws1ae{word-spacing:-2.692233pt;}
.ws1d9{word-spacing:-2.687966pt;}
.ws1b9{word-spacing:-2.683700pt;}
.ws20{word-spacing:-2.670900pt;}
.ws33{word-spacing:-2.670133pt;}
.ws1{word-spacing:-2.668800pt;}
.ws23{word-spacing:-2.666633pt;}
.ws30{word-spacing:-2.662367pt;}
.ws1b6{word-spacing:-2.658100pt;}
.ws1b4{word-spacing:-2.653833pt;}
.ws64{word-spacing:-2.649867pt;}
.ws25{word-spacing:-2.641034pt;}
.ws4{word-spacing:-2.640000pt;}
.ws1c5{word-spacing:-2.636767pt;}
.ws38{word-spacing:-2.624533pt;}
.ws1bb{word-spacing:-2.623967pt;}
.ws3{word-spacing:-2.611200pt;}
.ws1c0{word-spacing:-2.611167pt;}
.ws1ac{word-spacing:-2.606901pt;}
.ws1bc{word-spacing:-2.598368pt;}
.ws31{word-spacing:-2.594101pt;}
.ws1a3{word-spacing:-2.589834pt;}
.ws19f{word-spacing:-2.585568pt;}
.ws1a0{word-spacing:-2.572768pt;}
.ws1dc{word-spacing:-2.568501pt;}
.ws1c6{word-spacing:-2.559968pt;}
.ws1b5{word-spacing:-2.555701pt;}
.ws1bd{word-spacing:-2.530102pt;}
.ws35{word-spacing:-2.528267pt;}
.ws18{word-spacing:-2.525835pt;}
.ws1b2{word-spacing:-2.517302pt;}
.ws1e{word-spacing:-2.500235pt;}
.ws2{word-spacing:-2.496000pt;}
.ws63{word-spacing:-2.492800pt;}
.ws66{word-spacing:-2.487733pt;}
.ws1c3{word-spacing:-2.478902pt;}
.ws1b1{word-spacing:-2.474636pt;}
.ws1ad{word-spacing:-2.470369pt;}
.ws1d7{word-spacing:-2.461836pt;}
.ws1a6{word-spacing:-2.457569pt;}
.ws1ca{word-spacing:-2.453303pt;}
.ws1d{word-spacing:-2.444769pt;}
.ws1a2{word-spacing:-2.440503pt;}
.ws1d0{word-spacing:-2.410637pt;}
.ws28{word-spacing:-2.389303pt;}
.ws2e{word-spacing:-2.385037pt;}
.ws1c8{word-spacing:-2.367970pt;}
.ws0{word-spacing:-2.355171pt;}
.ws5{word-spacing:-2.332800pt;}
.ws74{word-spacing:-2.067200pt;}
.ws52{word-spacing:-0.938655pt;}
.ws55{word-spacing:-0.814923pt;}
.ws50{word-spacing:-0.793590pt;}
.ws4c{word-spacing:-0.780790pt;}
.ws89{word-spacing:-0.763724pt;}
.wsdb{word-spacing:-0.757333pt;}
.ws3e{word-spacing:-0.755191pt;}
.ws8d{word-spacing:-0.729591pt;}
.ws57{word-spacing:-0.725324pt;}
.ws5c{word-spacing:-0.716791pt;}
.ws49{word-spacing:-0.712524pt;}
.ws4a{word-spacing:-0.703991pt;}
.ws8b{word-spacing:-0.691191pt;}
.ws40{word-spacing:-0.686925pt;}
.ws44{word-spacing:-0.682658pt;}
.ws100{word-spacing:-0.678392pt;}
.ws4e{word-spacing:-0.661325pt;}
.ws5a{word-spacing:-0.657058pt;}
.ws180{word-spacing:-0.656000pt;}
.ws43{word-spacing:-0.648525pt;}
.ws51{word-spacing:-0.644259pt;}
.ws130{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.639992pt;}
.ws8c{word-spacing:-0.635725pt;}
.ws90{word-spacing:-0.627192pt;}
.wscf{word-spacing:-0.624000pt;}
.ws41{word-spacing:-0.622926pt;}
.ws101{word-spacing:-0.618659pt;}
.ws48{word-spacing:-0.614392pt;}
.wse9{word-spacing:-0.613333pt;}
.wsbb{word-spacing:-0.608000pt;}
.ws5d{word-spacing:-0.605859pt;}
.ws53{word-spacing:-0.601592pt;}
.ws56{word-spacing:-0.597326pt;}
.ws87{word-spacing:-0.588793pt;}
.ws4f{word-spacing:-0.580259pt;}
.ws8e{word-spacing:-0.571726pt;}
.ws4b{word-spacing:-0.567460pt;}
.ws3f{word-spacing:-0.563193pt;}
.ws8f{word-spacing:-0.558926pt;}
.ws3d{word-spacing:-0.554660pt;}
.ws169{word-spacing:-0.546127pt;}
.ws88{word-spacing:-0.541860pt;}
.ws17f{word-spacing:-0.507727pt;}
.ws91{word-spacing:-0.503460pt;}
.ws5e{word-spacing:-0.499194pt;}
.wse6{word-spacing:-0.496000pt;}
.ws167{word-spacing:-0.486394pt;}
.wsd9{word-spacing:-0.485333pt;}
.ws135{word-spacing:-0.482127pt;}
.ws84{word-spacing:-0.474667pt;}
.ws138{word-spacing:-0.473594pt;}
.wsa0{word-spacing:-0.469333pt;}
.ws139{word-spacing:-0.469327pt;}
.ws42{word-spacing:-0.465061pt;}
.ws5b{word-spacing:-0.460794pt;}
.wsda{word-spacing:-0.458667pt;}
.ws13d{word-spacing:-0.456528pt;}
.ws76{word-spacing:-0.453333pt;}
.wsd1{word-spacing:-0.448000pt;}
.ws8a{word-spacing:-0.447994pt;}
.ws4d{word-spacing:-0.443728pt;}
.wsb2{word-spacing:-0.442667pt;}
.ws58{word-spacing:-0.435195pt;}
.ws59{word-spacing:-0.430928pt;}
.ws198{word-spacing:-0.426667pt;}
.ws10f{word-spacing:-0.426661pt;}
.wsb4{word-spacing:-0.421333pt;}
.ws54{word-spacing:-0.418128pt;}
.ws97{word-spacing:-0.416000pt;}
.ws5f{word-spacing:-0.409595pt;}
.wseb{word-spacing:-0.405333pt;}
.ws47{word-spacing:-0.401062pt;}
.ws194{word-spacing:-0.400000pt;}
.ws7b{word-spacing:-0.384000pt;}
.wse8{word-spacing:-0.378667pt;}
.wsbe{word-spacing:-0.373333pt;}
.wsac{word-spacing:-0.368000pt;}
.ws12f{word-spacing:-0.366929pt;}
.ws77{word-spacing:-0.362667pt;}
.wsfd{word-spacing:-0.357333pt;}
.ws172{word-spacing:-0.354129pt;}
.wsdc{word-spacing:-0.352000pt;}
.ws82{word-spacing:-0.346667pt;}
.ws12b{word-spacing:-0.345596pt;}
.ws9d{word-spacing:-0.341333pt;}
.ws136{word-spacing:-0.337062pt;}
.wsa1{word-spacing:-0.336000pt;}
.ws10a{word-spacing:-0.332796pt;}
.wsa3{word-spacing:-0.330667pt;}
.ws115{word-spacing:-0.328529pt;}
.wsde{word-spacing:-0.325333pt;}
.ws94{word-spacing:-0.320000pt;}
.wsae{word-spacing:-0.314667pt;}
.wsb7{word-spacing:-0.309333pt;}
.ws83{word-spacing:-0.304000pt;}
.ws165{word-spacing:-0.302930pt;}
.wsd6{word-spacing:-0.298667pt;}
.wsb6{word-spacing:-0.293333pt;}
.ws13e{word-spacing:-0.288000pt;}
.wsd0{word-spacing:-0.282667pt;}
.ws16f{word-spacing:-0.281596pt;}
.wscd{word-spacing:-0.277333pt;}
.ws132{word-spacing:-0.273063pt;}
.ws9c{word-spacing:-0.272000pt;}
.ws17c{word-spacing:-0.268797pt;}
.ws81{word-spacing:-0.266667pt;}
.wsa9{word-spacing:-0.261333pt;}
.wse0{word-spacing:-0.256000pt;}
.ws177{word-spacing:-0.255997pt;}
.ws99{word-spacing:-0.250667pt;}
.ws176{word-spacing:-0.247464pt;}
.ws75{word-spacing:-0.245333pt;}
.ws129{word-spacing:-0.243197pt;}
.wsb3{word-spacing:-0.240000pt;}
.ws173{word-spacing:-0.238930pt;}
.wsbc{word-spacing:-0.234667pt;}
.wsf4{word-spacing:-0.229333pt;}
.ws12a{word-spacing:-0.226131pt;}
.ws16a{word-spacing:-0.224000pt;}
.wscb{word-spacing:-0.221864pt;}
.wsa4{word-spacing:-0.218667pt;}
.wsb9{word-spacing:-0.213333pt;}
.ws93{word-spacing:-0.208000pt;}
.ws166{word-spacing:-0.204797pt;}
.wsce{word-spacing:-0.202667pt;}
.ws13f{word-spacing:-0.200531pt;}
.ws9f{word-spacing:-0.197333pt;}
.wsd4{word-spacing:-0.192000pt;}
.wsf5{word-spacing:-0.186667pt;}
.wsaa{word-spacing:-0.181333pt;}
.wsd2{word-spacing:-0.176000pt;}
.ws175{word-spacing:-0.174931pt;}
.ws7e{word-spacing:-0.170667pt;}
.wsd7{word-spacing:-0.165333pt;}
.ws98{word-spacing:-0.160000pt;}
.wsdd{word-spacing:-0.154667pt;}
.ws119{word-spacing:-0.153598pt;}
.ws7c{word-spacing:-0.149333pt;}
.ws120{word-spacing:-0.149331pt;}
.ws78{word-spacing:-0.144000pt;}
.ws174{word-spacing:-0.140798pt;}
.wsdf{word-spacing:-0.138667pt;}
.ws16c{word-spacing:-0.133333pt;}
.ws168{word-spacing:-0.132265pt;}
.ws148{word-spacing:-0.131998pt;}
.wsfb{word-spacing:-0.128000pt;}
.ws178{word-spacing:-0.127998pt;}
.wsfa{word-spacing:-0.122667pt;}
.ws15c{word-spacing:-0.119998pt;}
.wsab{word-spacing:-0.117333pt;}
.ws13a{word-spacing:-0.115199pt;}
.ws7a{word-spacing:-0.112000pt;}
.wse4{word-spacing:-0.106667pt;}
.ws17e{word-spacing:-0.106665pt;}
.ws181{word-spacing:-0.101333pt;}
.wsbf{word-spacing:-0.096000pt;}
.wsfe{word-spacing:-0.090667pt;}
.wsd3{word-spacing:-0.085333pt;}
.ws96{word-spacing:-0.080000pt;}
.wsb5{word-spacing:-0.074667pt;}
.wse2{word-spacing:-0.069333pt;}
.wsa8{word-spacing:-0.064000pt;}
.wsf8{word-spacing:-0.058667pt;}
.wsc0{word-spacing:-0.055466pt;}
.ws80{word-spacing:-0.053333pt;}
.ws154{word-spacing:-0.051999pt;}
.ws85{word-spacing:-0.048000pt;}
.ws13b{word-spacing:-0.046933pt;}
.ws145{word-spacing:-0.043999pt;}
.wsf1{word-spacing:-0.042667pt;}
.ws146{word-spacing:-0.039999pt;}
.ws9b{word-spacing:-0.037333pt;}
.ws13c{word-spacing:-0.034133pt;}
.ws79{word-spacing:-0.032000pt;}
.wsba{word-spacing:-0.026667pt;}
.wse1{word-spacing:-0.021333pt;}
.ws16d{word-spacing:-0.017066pt;}
.ws9a{word-spacing:-0.010667pt;}
.wsff{word-spacing:-0.008533pt;}
.ws144{word-spacing:-0.008000pt;}
.ws131{word-spacing:-0.005333pt;}
.ws60{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.004267pt;}
.wsed{word-spacing:0.005333pt;}
.ws113{word-spacing:0.012800pt;}
.wsa6{word-spacing:0.016000pt;}
.wsef{word-spacing:0.021333pt;}
.ws125{word-spacing:0.025600pt;}
.wsb0{word-spacing:0.026667pt;}
.ws17d{word-spacing:0.029866pt;}
.wsa7{word-spacing:0.032000pt;}
.ws12e{word-spacing:0.034133pt;}
.ws18c{word-spacing:0.037333pt;}
.wse5{word-spacing:0.042667pt;}
.wsec{word-spacing:0.048000pt;}
.ws103{word-spacing:0.051199pt;}
.wscc{word-spacing:0.053333pt;}
.ws117{word-spacing:0.055466pt;}
.ws95{word-spacing:0.058667pt;}
.ws126{word-spacing:0.059733pt;}
.ws15d{word-spacing:0.059999pt;}
.ws7d{word-spacing:0.064000pt;}
.ws92{word-spacing:0.069333pt;}
.ws10d{word-spacing:0.076799pt;}
.ws18b{word-spacing:0.080000pt;}
.ws14e{word-spacing:0.083999pt;}
.ws12d{word-spacing:0.085333pt;}
.ws159{word-spacing:0.087999pt;}
.ws11e{word-spacing:0.089599pt;}
.wsf0{word-spacing:0.090667pt;}
.ws152{word-spacing:0.091999pt;}
.ws151{word-spacing:0.095999pt;}
.wsa5{word-spacing:0.096000pt;}
.ws10b{word-spacing:0.098132pt;}
.ws161{word-spacing:0.099999pt;}
.ws111{word-spacing:0.106665pt;}
.ws170{word-spacing:0.110932pt;}
.wsa2{word-spacing:0.117333pt;}
.wsb1{word-spacing:0.128000pt;}
.ws11d{word-spacing:0.140798pt;}
.wsd8{word-spacing:0.144000pt;}
.ws102{word-spacing:0.147199pt;}
.ws171{word-spacing:0.149331pt;}
.wsf2{word-spacing:0.149333pt;}
.ws108{word-spacing:0.153598pt;}
.wsea{word-spacing:0.154667pt;}
.ws11a{word-spacing:0.157865pt;}
.wsee{word-spacing:0.160000pt;}
.ws122{word-spacing:0.162131pt;}
.wsaf{word-spacing:0.165333pt;}
.wsd5{word-spacing:0.166399pt;}
.wsf9{word-spacing:0.172799pt;}
.wsc1{word-spacing:0.174931pt;}
.wsf3{word-spacing:0.179199pt;}
.ws15a{word-spacing:0.179998pt;}
.ws15b{word-spacing:0.183998pt;}
.ws107{word-spacing:0.200531pt;}
.ws14b{word-spacing:0.203997pt;}
.ws179{word-spacing:0.209064pt;}
.ws14c{word-spacing:0.219997pt;}
.ws183{word-spacing:0.224000pt;}
.ws196{word-spacing:0.245333pt;}
.ws112{word-spacing:0.255997pt;}
.wsad{word-spacing:0.262398pt;}
.ws9e{word-spacing:0.272000pt;}
.ws14f{word-spacing:0.275996pt;}
.ws16e{word-spacing:0.277330pt;}
.ws134{word-spacing:0.281596pt;}
.wsbd{word-spacing:0.281598pt;}
.ws182{word-spacing:0.282667pt;}
.ws118{word-spacing:0.298663pt;}
.ws19a{word-spacing:0.304000pt;}
.ws124{word-spacing:0.307196pt;}
.ws189{word-spacing:0.309333pt;}
.ws110{word-spacing:0.311463pt;}
.ws7f{word-spacing:0.314667pt;}
.ws10e{word-spacing:0.315729pt;}
.wsf6{word-spacing:0.326397pt;}
.ws155{word-spacing:0.335996pt;}
.wsb8{word-spacing:0.339197pt;}
.ws141{word-spacing:0.347995pt;}
.ws116{word-spacing:0.354129pt;}
.ws17a{word-spacing:0.362662pt;}
.ws186{word-spacing:0.362667pt;}
.wsfc{word-spacing:0.364797pt;}
.ws121{word-spacing:0.371195pt;}
.ws188{word-spacing:0.378667pt;}
.ws133{word-spacing:0.383995pt;}
.wsf7{word-spacing:0.383997pt;}
.ws185{word-spacing:0.384000pt;}
.ws150{word-spacing:0.395995pt;}
.ws142{word-spacing:0.399995pt;}
.ws11b{word-spacing:0.409595pt;}
.ws18f{word-spacing:0.426667pt;}
.ws187{word-spacing:0.432000pt;}
.ws15e{word-spacing:0.447994pt;}
.ws17b{word-spacing:0.456528pt;}
.ws106{word-spacing:0.460794pt;}
.wse7{word-spacing:0.460796pt;}
.wsc7{word-spacing:0.477861pt;}
.ws162{word-spacing:0.507993pt;}
.ws140{word-spacing:0.555993pt;}
.ws190{word-spacing:0.592000pt;}
.ws195{word-spacing:0.629333pt;}
.ws191{word-spacing:0.677333pt;}
.ws143{word-spacing:0.707991pt;}
.ws193{word-spacing:0.800000pt;}
.ws192{word-spacing:0.869333pt;}
.ws199{word-spacing:0.906667pt;}
.ws197{word-spacing:0.912000pt;}
.ws18e{word-spacing:1.029333pt;}
.ws26{word-spacing:6.856448pt;}
.wse3{word-spacing:14.768000pt;}
.ws160{word-spacing:25.575659pt;}
.ws149{word-spacing:25.579659pt;}
.ws156{word-spacing:25.583659pt;}
.ws14a{word-spacing:25.615658pt;}
.ws157{word-spacing:25.763656pt;}
.ws153{word-spacing:25.767656pt;}
.ws3a{word-spacing:30.216156pt;}
.ws1b3{word-spacing:41.642146pt;}
.ws19b{word-spacing:41.697612pt;}
.ws14d{word-spacing:44.735404pt;}
.ws158{word-spacing:44.923401pt;}
.ws147{word-spacing:44.927401pt;}
.ws163{word-spacing:64.083146pt;}
.ws15f{word-spacing:64.087145pt;}
.ws164{word-spacing:73.135025pt;}
.wsc5{word-spacing:209.179252pt;}
.wsc4{word-spacing:209.183519pt;}
.wsc6{word-spacing:213.927993pt;}
.wsc9{word-spacing:219.030862pt;}
.wsc3{word-spacing:219.099128pt;}
.wsc8{word-spacing:219.278326pt;}
.wsca{word-spacing:224.283063pt;}
.ws104{word-spacing:353.531581pt;}
.ws137{word-spacing:396.923038pt;}
.wsc2{word-spacing:406.441853pt;}
.ws11f{word-spacing:805.754195pt;}
.ws105{word-spacing:984.717291pt;}
.ws123{word-spacing:987.972717pt;}
.ws11c{word-spacing:1052.125515pt;}
.ws128{word-spacing:1057.262517pt;}
.ws127{word-spacing:1081.257951pt;}
.ws114{word-spacing:1090.738366pt;}
.ws109{word-spacing:1127.311775pt;}
._0{margin-left:-0.989854pt;}
._1{width:1.382400pt;}
._3{width:3.412267pt;}
._4{width:8.345496pt;}
._5{width:9.949742pt;}
._9{width:11.072000pt;}
._6{width:12.185333pt;}
._8{width:13.093333pt;}
._1b{width:14.421153pt;}
._b2{width:17.774711pt;}
._a{width:18.721899pt;}
._2{width:22.243200pt;}
._1a{width:26.762667pt;}
._65{width:35.015533pt;}
._7d{width:39.487473pt;}
._7c{width:42.519433pt;}
._84{width:46.343382pt;}
._6f{width:54.003280pt;}
._69{width:56.819242pt;}
._85{width:58.019228pt;}
._64{width:58.971214pt;}
._7e{width:60.015200pt;}
._71{width:65.579126pt;}
._72{width:73.055026pt;}
._81{width:73.999013pt;}
._77{width:77.282970pt;}
._86{width:81.726909pt;}
._7f{width:83.270890pt;}
._6d{width:87.074839pt;}
._7a{width:88.330822pt;}
._67{width:91.370782pt;}
._8c{width:94.854735pt;}
._73{width:96.442714pt;}
._76{width:97.734697pt;}
._a4{width:98.891949pt;}
._78{width:100.886653pt;}
._66{width:102.350635pt;}
._6c{width:104.010613pt;}
._90{width:106.038584pt;}
._91{width:110.046531pt;}
._6e{width:110.966520pt;}
._7b{width:112.222504pt;}
._88{width:116.894441pt;}
._87{width:119.238410pt;}
._82{width:120.494393pt;}
._92{width:121.991008pt;}
._80{width:123.694351pt;}
._8e{width:125.310329pt;}
._8d{width:128.878282pt;}
._9d{width:132.572209pt;}
._9c{width:133.682144pt;}
._8a{width:134.850202pt;}
._74{width:138.574152pt;}
._79{width:142.082106pt;}
._a0{width:143.147751pt;}
._a1{width:146.323504pt;}
._70{width:148.470020pt;}
._83{width:152.505967pt;}
._a7{width:156.985771pt;}
._a5{width:162.301971pt;}
._b1{width:163.326573pt;}
._96{width:164.281680pt;}
._9a{width:166.321121pt;}
._ad{width:172.785040pt;}
._8f{width:173.889681pt;}
._9e{width:176.714591pt;}
._a3{width:178.079907pt;}
._98{width:180.746541pt;}
._9b{width:187.065370pt;}
._94{width:193.222118pt;}
._6a{width:194.669404pt;}
._89{width:199.185344pt;}
._a9{width:205.573964pt;}
._75{width:210.973187pt;}
._68{width:213.309156pt;}
._3d{width:218.540202pt;}
._ab{width:219.781786pt;}
._99{width:222.465486pt;}
._b0{width:226.697966pt;}
._93{width:229.488331pt;}
._a2{width:232.773624pt;}
._39{width:234.322404pt;}
._38{width:236.558110pt;}
._3c{width:237.599163pt;}
._47{width:238.597551pt;}
._9f{width:242.262572pt;}
._a6{width:249.447549pt;}
._1e{width:263.190310pt;}
._95{width:264.363629pt;}
._af{width:266.246705pt;}
._ae{width:267.820243pt;}
._6b{width:271.332382pt;}
._ac{width:276.587476pt;}
._28{width:282.010341pt;}
._5f{width:284.062583pt;}
._1c{width:285.078036pt;}
._26{width:287.155877pt;}
._a8{width:288.252397pt;}
._3f{width:290.667300pt;}
._3b{width:294.392053pt;}
._41{width:295.599505pt;}
._1f{width:306.295905pt;}
._54{width:309.713462pt;}
._2e{width:316.787507pt;}
._8b{width:322.027708pt;}
._44{width:324.804473pt;}
._22{width:326.250855pt;}
._4a{width:335.261943pt;}
._35{width:337.045387pt;}
._51{width:345.420749pt;}
._5d{width:349.708695pt;}
._3e{width:361.232818pt;}
._63{width:365.839122pt;}
._3a{width:369.377783pt;}
._40{width:371.532422pt;}
._5e{width:376.349429pt;}
._97{width:377.748878pt;}
._29{width:386.895221pt;}
._5c{width:387.886351pt;}
._5a{width:392.519893pt;}
._53{width:400.421661pt;}
._12{width:403.250426pt;}
._16{width:407.670637pt;}
._17{width:408.587959pt;}
._13{width:413.528697pt;}
._e{width:416.668925pt;}
._15{width:418.085441pt;}
._d{width:422.394720pt;}
._f{width:423.687504pt;}
._14{width:428.717841pt;}
._43{width:430.932213pt;}
._10{width:433.662846pt;}
._18{width:438.804115pt;}
._4d{width:440.911822pt;}
._11{width:449.462115pt;}
._49{width:451.066362pt;}
._19{width:454.091390pt;}
._aa{width:459.253993pt;}
._50{width:461.344633pt;}
._24{width:468.491210pt;}
._60{width:475.373258pt;}
._27{width:568.044451pt;}
._36{width:577.157585pt;}
._23{width:673.937176pt;}
._21{width:701.264834pt;}
._1d{width:711.231643pt;}
._b{width:738.017441pt;}
._57{width:749.460498pt;}
._61{width:752.907922pt;}
._2a{width:762.123053pt;}
._20{width:763.928584pt;}
._55{width:767.721603pt;}
._62{width:781.080370pt;}
._56{width:791.362908pt;}
._2b{width:795.134594pt;}
._2d{width:802.221439pt;}
._30{width:805.408599pt;}
._c{width:807.153644pt;}
._4f{width:808.476294pt;}
._31{width:810.549868pt;}
._58{width:841.802811pt;}
._32{width:867.837685pt;}
._25{width:872.688825pt;}
._4e{width:874.182139pt;}
._2f{width:894.533885pt;}
._52{width:902.375920pt;}
._59{width:915.354958pt;}
._34{width:927.967067pt;}
._46{width:941.603163pt;}
._33{width:963.793819pt;}
._48{width:972.608642pt;}
._2c{width:975.433140pt;}
._4c{width:1001.028554pt;}
._5b{width:1026.798898pt;}
._4b{width:1040.575793pt;}
._45{width:1107.826152pt;}
._42{width:1120.625992pt;}
._37{width:1210.689933pt;}
._7{width:1233.507781pt;}
.fsc{font-size:28.440000pt;}
.fsb{font-size:29.865600pt;}
.fs4{font-size:31.995733pt;}
.fsa{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:61.332267pt;}
.fs9{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:48.000000pt;}
.y34{bottom:110.665333pt;}
.y23a{bottom:110.665618pt;}
.ye5{bottom:110.666201pt;}
.y7f{bottom:110.666667pt;}
.y57{bottom:110.666724pt;}
.y2b4{bottom:110.667458pt;}
.y10f{bottom:110.668000pt;}
.y1fe{bottom:115.958667pt;}
.y284{bottom:117.317333pt;}
.y1c4{bottom:120.718667pt;}
.y183{bottom:121.777333pt;}
.y2b3{bottom:123.367033pt;}
.y56{bottom:125.331074pt;}
.y179{bottom:125.405333pt;}
.y157{bottom:127.974667pt;}
.ybf{bottom:127.976000pt;}
.y7e{bottom:127.977333pt;}
.y10e{bottom:127.978667pt;}
.y259{bottom:128.509333pt;}
.y33{bottom:129.336000pt;}
.y1fd{bottom:133.344000pt;}
.y239{bottom:134.703718pt;}
.ye4{bottom:134.704301pt;}
.y2b2{bottom:135.989808pt;}
.y1c3{bottom:138.029333pt;}
.y2ee{bottom:138.939675pt;}
.y182{bottom:139.088000pt;}
.y55{bottom:139.995424pt;}
.y283{bottom:141.354667pt;}
.y178{bottom:142.716000pt;}
.y156{bottom:145.360000pt;}
.ybe{bottom:145.361333pt;}
.y7d{bottom:145.362667pt;}
.y10d{bottom:145.364000pt;}
.y258{bottom:145.894667pt;}
.y32{bottom:148.006667pt;}
.y2b1{bottom:148.689383pt;}
.y238{bottom:150.653385pt;}
.y1fc{bottom:150.654667pt;}
.y2ed{bottom:151.638183pt;}
.y54{bottom:154.660840pt;}
.y1c2{bottom:155.340000pt;}
.y181{bottom:156.398667pt;}
.y282{bottom:158.665333pt;}
.ye3{bottom:159.649056pt;}
.y177{bottom:160.026667pt;}
.y7c{bottom:162.672000pt;}
.y10c{bottom:162.674667pt;}
.y257{bottom:163.205333pt;}
.y2ec{bottom:164.262025pt;}
.y2b0{bottom:165.999033pt;}
.y237{bottom:166.678785pt;}
.y155{bottom:167.962667pt;}
.y1fb{bottom:167.965333pt;}
.y53{bottom:169.325190pt;}
.y31{bottom:170.682667pt;}
.y1c1{bottom:172.725333pt;}
.y180{bottom:173.784000pt;}
.ye2{bottom:176.353913pt;}
.y2eb{bottom:176.961600pt;}
.y176{bottom:177.412000pt;}
.y2af{bottom:178.698608pt;}
.ybd{bottom:179.981333pt;}
.y7b{bottom:179.982667pt;}
.y10b{bottom:179.984000pt;}
.y256{bottom:180.516000pt;}
.y281{bottom:182.702667pt;}
.y52{bottom:183.989540pt;}
.y1fa{bottom:185.350667pt;}
.y1c0{bottom:190.034667pt;}
.y17f{bottom:191.093333pt;}
.y2ae{bottom:191.322450pt;}
.y236{bottom:191.699272pt;}
.ye1{bottom:192.984106pt;}
.y2ea{bottom:194.271250pt;}
.y175{bottom:194.721333pt;}
.y7a{bottom:197.368000pt;}
.y10a{bottom:197.370667pt;}
.y255{bottom:197.901333pt;}
.y280{bottom:200.013333pt;}
.ybc{bottom:202.659400pt;}
.y1f9{bottom:202.660000pt;}
.y154{bottom:206.288000pt;}
.y51{bottom:206.666590pt;}
.y2e9{bottom:206.970825pt;}
.y1bf{bottom:207.345333pt;}
.y235{bottom:208.328398pt;}
.y2ad{bottom:208.632100pt;}
.y30{bottom:209.310667pt;}
.ye0{bottom:209.690030pt;}
.y17e{bottom:213.769333pt;}
.y174{bottom:214.677333pt;}
.y79{bottom:214.678667pt;}
.y109{bottom:214.680000pt;}
.y254{bottom:215.210667pt;}
.y1f8{bottom:219.970667pt;}
.y50{bottom:221.330940pt;}
.y2ac{bottom:221.331675pt;}
.y153{bottom:223.598667pt;}
.y27f{bottom:223.974667pt;}
.y2e8{bottom:224.280475pt;}
.y1be{bottom:224.656000pt;}
.y234{bottom:225.034322pt;}
.ydf{bottom:226.319155pt;}
.ybb{bottom:226.696000pt;}
.y2f{bottom:227.981333pt;}
.y12a{bottom:231.988000pt;}
.y78{bottom:231.989333pt;}
.y108{bottom:231.990667pt;}
.y253{bottom:232.521333pt;}
.y2ab{bottom:234.031249pt;}
.y2e7{bottom:236.980050pt;}
.y1f7{bottom:237.281333pt;}
.y1b8{bottom:237.354667pt;}
.y152{bottom:240.909333pt;}
.y27d{bottom:241.360000pt;}
.y233{bottom:241.663448pt;}
.y27e{bottom:242.040000pt;}
.y1bd{bottom:242.041333pt;}
.yde{bottom:243.025080pt;}
.y17d{bottom:243.175775pt;}
.y4f{bottom:244.007990pt;}
.y2e{bottom:246.652000pt;}
.y77{bottom:249.298667pt;}
.y107{bottom:249.300000pt;}
.y2e6{bottom:249.603892pt;}
.y252{bottom:249.906667pt;}
.y2aa{bottom:251.340900pt;}
.y1f6{bottom:254.666667pt;}
.y151{bottom:258.294667pt;}
.y4e{bottom:258.672340pt;}
.y1bc{bottom:259.350667pt;}
.ydd{bottom:259.655272pt;}
.y232{bottom:261.468000pt;}
.y1ae{bottom:261.543967pt;}
.y17c{bottom:263.886983pt;}
.y27c{bottom:263.962667pt;}
.y2a9{bottom:263.964742pt;}
.y2d{bottom:265.322667pt;}
.y76{bottom:266.684000pt;}
.y106{bottom:266.686667pt;}
.y2e5{bottom:266.989275pt;}
.yba{bottom:267.216000pt;}
.y251{bottom:267.217333pt;}
.y1f5{bottom:271.976000pt;}
.y4d{bottom:273.336690pt;}
.y150{bottom:275.604000pt;}
.ydc{bottom:276.360130pt;}
.y17b{bottom:276.510825pt;}
.y2a8{bottom:276.663250pt;}
.y2e4{bottom:279.613117pt;}
.y2c{bottom:283.993333pt;}
.y75{bottom:283.994667pt;}
.y105{bottom:283.996000pt;}
.yb9{bottom:284.526667pt;}
.y250{bottom:284.528000pt;}
.y1ad{bottom:285.506334pt;}
.y1b7{bottom:287.396000pt;}
.y4c{bottom:288.001040pt;}
.y17a{bottom:289.209333pt;}
.y1f4{bottom:289.286667pt;}
.y2a6{bottom:289.362824pt;}
.y2a7{bottom:289.664687pt;}
.y2e3{bottom:292.311625pt;}
.y14f{bottom:292.914667pt;}
.ydb{bottom:292.990322pt;}
.y22b{bottom:295.410667pt;}
.y27b{bottom:296.090667pt;}
.y129{bottom:301.304000pt;}
.y74{bottom:301.305333pt;}
.y104{bottom:301.306667pt;}
.yb8{bottom:301.836000pt;}
.y24f{bottom:301.837333pt;}
.y4b{bottom:302.666457pt;}
.y1b6{bottom:304.706667pt;}
.y2e2{bottom:304.935467pt;}
.y1ac{bottom:305.385333pt;}
.y2b{bottom:306.594667pt;}
.y173{bottom:306.670667pt;}
.y1f3{bottom:306.672000pt;}
.y2a5{bottom:306.672475pt;}
.yda{bottom:309.695180pt;}
.y14e{bottom:310.300000pt;}
.y1ea{bottom:312.189300pt;}
.y22a{bottom:312.721333pt;}
.y27a{bottom:313.400000pt;}
.y4a{bottom:317.330807pt;}
.y1ab{bottom:317.557262pt;}
.y73{bottom:318.690667pt;}
.y103{bottom:318.692000pt;}
.yb7{bottom:319.221333pt;}
.y24e{bottom:319.222667pt;}
.y2a4{bottom:319.372049pt;}
.y1b5{bottom:322.017333pt;}
.y2e1{bottom:322.320850pt;}
.y128{bottom:323.981333pt;}
.y1f2{bottom:323.982667pt;}
.y14d{bottom:327.610667pt;}
.yd9{bottom:329.424000pt;}
.y229{bottom:330.106667pt;}
.y279{bottom:330.710667pt;}
.y2a3{bottom:331.995891pt;}
.y1aa{bottom:333.506930pt;}
.y2e0{bottom:334.944692pt;}
.y72{bottom:336.000000pt;}
.y1e9{bottom:336.151667pt;}
.yb6{bottom:336.532000pt;}
.y24d{bottom:336.533333pt;}
.y1b4{bottom:339.402667pt;}
.y49{bottom:340.007857pt;}
.y1f1{bottom:341.293333pt;}
.y172{bottom:343.108000pt;}
.y102{bottom:344.014667pt;}
.y14c{bottom:344.920000pt;}
.y14a{bottom:344.922667pt;}
.y2a{bottom:345.221333pt;}
.y228{bottom:347.416000pt;}
.y2df{bottom:347.644267pt;}
.y278{bottom:348.021333pt;}
.y2a2{bottom:349.305542pt;}
.y14b{bottom:350.890667pt;}
.y1e8{bottom:352.176000pt;}
.yb5{bottom:353.842667pt;}
.y24c{bottom:353.844000pt;}
.y1b3{bottom:356.712000pt;}
.y1e7{bottom:356.938667pt;}
.y1a9{bottom:358.526350pt;}
.y71{bottom:358.677333pt;}
.y1f0{bottom:358.678667pt;}
.yd8{bottom:360.492000pt;}
.y171{bottom:360.493333pt;}
.y101{bottom:361.325333pt;}
.y2a1{bottom:362.005116pt;}
.y149{bottom:362.233333pt;}
.y48{bottom:362.684907pt;}
.y227{bottom:364.726667pt;}
.y2de{bottom:364.953917pt;}
.y277{bottom:365.406667pt;}
.y1e6{bottom:368.204087pt;}
.yb4{bottom:371.228000pt;}
.y24b{bottom:371.229333pt;}
.y1b2{bottom:374.022667pt;}
.y2a0{bottom:374.703624pt;}
.y1a8{bottom:375.156542pt;}
.y1ef{bottom:375.988000pt;}
.y2dd{bottom:377.653491pt;}
.yd7{bottom:377.802667pt;}
.y148{bottom:379.618667pt;}
.y226{bottom:382.037333pt;}
.y276{bottom:382.717333pt;}
.y1e5{bottom:384.153755pt;}
.y47{bottom:385.361956pt;}
.y100{bottom:386.648000pt;}
.yb3{bottom:388.538667pt;}
.y24a{bottom:388.540000pt;}
.y2dc{bottom:390.277334pt;}
.y1b1{bottom:391.333333pt;}
.y1a7{bottom:391.862467pt;}
.y29f{bottom:392.014341pt;}
.y127{bottom:392.545333pt;}
.y1ee{bottom:393.298667pt;}
.y170{bottom:395.113333pt;}
.yd6{bottom:395.188000pt;}
.y147{bottom:396.929333pt;}
.y29{bottom:398.817234pt;}
.y225{bottom:399.422667pt;}
.y275{bottom:400.026667pt;}
.y1e4{bottom:400.179154pt;}
.yff{bottom:404.033333pt;}
.y29e{bottom:404.638183pt;}
.yb2{bottom:405.848000pt;}
.y249{bottom:405.849333pt;}
.y2db{bottom:407.662716pt;}
.y46{bottom:408.039006pt;}
.y1a6{bottom:408.491592pt;}
.y1b0{bottom:408.718667pt;}
.y1ed{bottom:410.609333pt;}
.yd5{bottom:412.498667pt;}
.y146{bottom:414.238667pt;}
.y224{bottom:416.732000pt;}
.y29d{bottom:417.336691pt;}
.y274{bottom:417.412000pt;}
.y126{bottom:417.868000pt;}
.y2da{bottom:420.286558pt;}
.yfe{bottom:421.344000pt;}
.y45{bottom:422.703356pt;}
.yb1{bottom:423.233333pt;}
.y248{bottom:423.234667pt;}
.y1a5{bottom:425.197517pt;}
.y1e3{bottom:425.199642pt;}
.y28{bottom:425.500634pt;}
.y1af{bottom:426.028000pt;}
.y1ec{bottom:427.994667pt;}
.yd4{bottom:429.808000pt;}
.y16f{bottom:429.809333pt;}
.y145{bottom:431.625333pt;}
.y2d9{bottom:432.985066pt;}
.y223{bottom:434.042667pt;}
.y29c{bottom:434.647408pt;}
.y273{bottom:434.722667pt;}
.y125{bottom:435.177333pt;}
.y44{bottom:437.367706pt;}
.yfd{bottom:438.653333pt;}
.y27{bottom:438.880733pt;}
.yb0{bottom:440.544000pt;}
.y247{bottom:440.545333pt;}
.y1a4{bottom:441.827709pt;}
.y1e2{bottom:441.828767pt;}
.y1eb{bottom:445.304000pt;}
.y16e{bottom:447.118667pt;}
.y29b{bottom:447.345916pt;}
.y70{bottom:448.328000pt;}
.y144{bottom:448.934667pt;}
.y2d8{bottom:450.295783pt;}
.y222{bottom:451.428000pt;}
.y272{bottom:452.033333pt;}
.y26{bottom:452.184033pt;}
.yd3{bottom:452.485333pt;}
.yaf{bottom:457.854667pt;}
.y246{bottom:457.856000pt;}
.y1a3{bottom:458.532567pt;}
.y1e1{bottom:458.534692pt;}
.y43{bottom:459.969024pt;}
.y29a{bottom:459.969758pt;}
.y124{bottom:460.500000pt;}
.y2d7{bottom:462.994291pt;}
.yfc{bottom:463.976000pt;}
.y25{bottom:465.488400pt;}
.y143{bottom:466.245333pt;}
.y1bb{bottom:467.527617pt;}
.y221{bottom:468.738667pt;}
.y271{bottom:469.418667pt;}
.y16d{bottom:469.794667pt;}
.y6f{bottom:471.004000pt;}
.y299{bottom:472.669333pt;}
.y42{bottom:474.633374pt;}
.y1a2{bottom:475.162759pt;}
.y1e0{bottom:475.164884pt;}
.yae{bottom:475.240000pt;}
.y245{bottom:475.241333pt;}
.y24{bottom:478.867433pt;}
.y2d6{bottom:480.305008pt;}
.yfb{bottom:481.362667pt;}
.y142{bottom:483.630667pt;}
.y123{bottom:485.898667pt;}
.y220{bottom:486.049333pt;}
.y270{bottom:486.728000pt;}
.y1ba{bottom:488.239891pt;}
.y41{bottom:489.373456pt;}
.yd2{bottom:489.829333pt;}
.y298{bottom:489.978983pt;}
.y1a1{bottom:491.867617pt;}
.y1df{bottom:491.869742pt;}
.y23{bottom:492.171800pt;}
.yad{bottom:492.549333pt;}
.y244{bottom:492.550667pt;}
.y2d5{bottom:492.928850pt;}
.y219{bottom:493.531025pt;}
.yfa{bottom:498.672000pt;}
.y1b9{bottom:500.862667pt;}
.y141{bottom:500.941333pt;}
.y297{bottom:502.678558pt;}
.y122{bottom:503.208000pt;}
.y21f{bottom:503.434667pt;}
.y40{bottom:504.037806pt;}
.y22{bottom:505.550833pt;}
.y2d4{bottom:505.627358pt;}
.y16c{bottom:506.232000pt;}
.yd1{bottom:507.214667pt;}
.y1a0{bottom:508.497809pt;}
.y1de{bottom:508.499934pt;}
.y6e{bottom:509.329333pt;}
.y26f{bottom:509.404000pt;}
.yac{bottom:509.860000pt;}
.y243{bottom:509.861333pt;}
.y296{bottom:515.301333pt;}
.yf9{bottom:515.982667pt;}
.y218{bottom:516.888600pt;}
.y140{bottom:518.250667pt;}
.y303{bottom:518.326933pt;}
.y3f{bottom:518.703223pt;}
.y21{bottom:518.855200pt;}
.y21e{bottom:520.744000pt;}
.y2d3{bottom:522.938075pt;}
.y19e{bottom:523.389333pt;}
.y16b{bottom:523.617333pt;}
.yd0{bottom:524.524000pt;}
.y19f{bottom:525.202667pt;}
.y1dd{bottom:525.204792pt;}
.y19d{bottom:525.205225pt;}
.yab{bottom:527.170667pt;}
.y242{bottom:527.172000pt;}
.y6d{bottom:528.000000pt;}
.y121{bottom:528.530667pt;}
.y302{bottom:530.950775pt;}
.y20{bottom:532.158500pt;}
.y217{bottom:532.838267pt;}
.y295{bottom:533.366667pt;}
.y3e{bottom:533.367573pt;}
.y2d2{bottom:535.636583pt;}
.y13f{bottom:535.637333pt;}
.y21d{bottom:538.054667pt;}
.y16a{bottom:540.926667pt;}
.yf8{bottom:541.305333pt;}
.y19c{bottom:541.834350pt;}
.ycf{bottom:541.834667pt;}
.y1dc{bottom:541.834984pt;}
.yaa{bottom:544.556000pt;}
.y241{bottom:544.557333pt;}
.y1f{bottom:545.538600pt;}
.y6c{bottom:546.670667pt;}
.y3d{bottom:548.031923pt;}
.y2d1{bottom:548.260425pt;}
.y216{bottom:548.863667pt;}
.y26e{bottom:549.470667pt;}
.y13e{bottom:552.946667pt;}
.y120{bottom:553.853333pt;}
.y21c{bottom:555.365333pt;}
.y169{bottom:558.237333pt;}
.y19b{bottom:558.540275pt;}
.y1db{bottom:558.540908pt;}
.yf7{bottom:558.690667pt;}
.y1e{bottom:558.841900pt;}
.yce{bottom:559.145333pt;}
.y301{bottom:560.960000pt;}
.ya9{bottom:561.866667pt;}
.y240{bottom:561.868000pt;}
.y3c{bottom:562.696273pt;}
.y6b{bottom:565.341333pt;}
.y2d0{bottom:565.645808pt;}
.y26d{bottom:566.780000pt;}
.y215{bottom:568.742667pt;}
.y13d{bottom:570.257333pt;}
.y1d{bottom:572.220933pt;}
.y21b{bottom:572.750667pt;}
.y300{bottom:573.658508pt;}
.y1da{bottom:575.170034pt;}
.y19a{bottom:575.170467pt;}
.y168{bottom:575.622667pt;}
.yf6{bottom:576.001333pt;}
.ycd{bottom:576.530667pt;}
.y2cf{bottom:578.269650pt;}
.ya8{bottom:579.176000pt;}
.y23f{bottom:579.177333pt;}
.y214{bottom:580.838267pt;}
.y6a{bottom:584.012000pt;}
.y26c{bottom:584.090667pt;}
.y3b{bottom:584.541333pt;}
.y1c{bottom:585.525300pt;}
.y13c{bottom:587.568000pt;}
.y21a{bottom:590.060000pt;}
.y2ce{bottom:590.969225pt;}
.y294{bottom:591.196000pt;}
.y199{bottom:591.875325pt;}
.y1d9{bottom:591.875958pt;}
.y167{bottom:592.933333pt;}
.yf5{bottom:593.310667pt;}
.ycc{bottom:593.840000pt;}
.ya7{bottom:596.561333pt;}
.y23e{bottom:596.562667pt;}
.y213{bottom:596.863667pt;}
.y1b{bottom:598.829667pt;}
.y26b{bottom:601.476000pt;}
.y2ff{bottom:603.592000pt;}
.y11f{bottom:604.498667pt;}
.y13b{bottom:604.953333pt;}
.y69{bottom:606.614667pt;}
.y2cd{bottom:608.278875pt;}
.y198{bottom:608.505517pt;}
.y1d8{bottom:608.506150pt;}
.y293{bottom:608.506667pt;}
.y166{bottom:610.244000pt;}
.yf4{bottom:610.696000pt;}
.y1a{bottom:612.208700pt;}
.y212{bottom:612.888000pt;}
.ya6{bottom:613.872000pt;}
.y23d{bottom:613.873333pt;}
.y2fe{bottom:616.291575pt;}
.ycb{bottom:616.516000pt;}
.y26a{bottom:618.786667pt;}
.y2cc{bottom:620.978450pt;}
.y13a{bottom:622.262667pt;}
.y197{bottom:625.210375pt;}
.y1d7{bottom:625.211008pt;}
.y19{bottom:625.512000pt;}
.y292{bottom:625.892000pt;}
.y165{bottom:627.629333pt;}
.y231{bottom:628.839685pt;}
.y11e{bottom:629.897333pt;}
.ya5{bottom:631.182667pt;}
.y23c{bottom:631.184000pt;}
.yf3{bottom:633.297333pt;}
.y2ca{bottom:633.602292pt;}
.y2cb{bottom:633.828422pt;}
.y269{bottom:636.096000pt;}
.y211{bottom:637.834173pt;}
.y139{bottom:639.573333pt;}
.y196{bottom:641.840567pt;}
.y1d6{bottom:641.841200pt;}
.y291{bottom:643.202667pt;}
.y164{bottom:644.938667pt;}
.y68{bottom:644.940067pt;}
.y2fd{bottom:646.300800pt;}
.ya4{bottom:648.568000pt;}
.y23b{bottom:648.569333pt;}
.y18{bottom:649.549333pt;}
.y16{bottom:649.550667pt;}
.y210{bottom:649.853013pt;}
.y2c9{bottom:650.987675pt;}
.y230{bottom:652.877784pt;}
.y268{bottom:653.406667pt;}
.y17{bottom:654.841333pt;}
.y11d{bottom:655.220000pt;}
.y138{bottom:656.958667pt;}
.y1d5{bottom:658.546058pt;}
.y195{bottom:658.546491pt;}
.y2fc{bottom:658.924642pt;}
.y28f{bottom:660.512000pt;}
.y290{bottom:661.193333pt;}
.y3a{bottom:661.796000pt;}
.yca{bottom:661.873333pt;}
.y163{bottom:662.249333pt;}
.y67{bottom:663.610733pt;}
.y2c8{bottom:663.611517pt;}
.y14{bottom:664.214667pt;}
.ya3{bottom:665.877333pt;}
.y20f{bottom:665.877799pt;}
.ya1{bottom:665.880000pt;}
.y22f{bottom:668.826385pt;}
.y15{bottom:669.505333pt;}
.y267{bottom:670.792000pt;}
.ya2{bottom:671.773333pt;}
.yf2{bottom:672.908000pt;}
.y137{bottom:674.269333pt;}
.y194{bottom:675.175617pt;}
.y1d4{bottom:675.176250pt;}
.y2fb{bottom:676.310025pt;}
.y39{bottom:677.140000pt;}
.y28e{bottom:677.898667pt;}
.y12{bottom:678.878667pt;}
.y162{bottom:679.634667pt;}
.y11c{bottom:680.542667pt;}
.y2c7{bottom:680.996900pt;}
.y20e{bottom:681.827587pt;}
.y66{bottom:682.281400pt;}
.ya0{bottom:683.189333pt;}
.y13{bottom:684.170667pt;}
.y22e{bottom:684.851785pt;}
.yc9{bottom:687.196000pt;}
.y2fa{bottom:688.933867pt;}
.yf1{bottom:690.293333pt;}
.y136{bottom:691.578667pt;}
.y193{bottom:691.881541pt;}
.y1d3{bottom:691.882175pt;}
.y38{bottom:692.409333pt;}
.y11{bottom:693.542667pt;}
.yf{bottom:693.544000pt;}
.y2c6{bottom:693.620742pt;}
.y266{bottom:696.114667pt;}
.y161{bottom:696.945333pt;}
.y20d{bottom:697.853373pt;}
.y10{bottom:698.834667pt;}
.y9f{bottom:700.500000pt;}
.y22d{bottom:700.877184pt;}
.y65{bottom:700.952067pt;}
.y2f9{bottom:701.633442pt;}
.y28d{bottom:701.860000pt;}
.y11b{bottom:705.865333pt;}
.y2c5{bottom:706.319250pt;}
.yf0{bottom:707.604000pt;}
.y37{bottom:707.754667pt;}
.yd{bottom:708.208000pt;}
.y192{bottom:708.511142pt;}
.y1d2{bottom:708.511300pt;}
.y90{bottom:708.960271pt;}
.y135{bottom:708.965333pt;}
.yc8{bottom:712.518667pt;}
.y265{bottom:713.425333pt;}
.ye{bottom:713.498667pt;}
.y20c{bottom:713.878159pt;}
.y160{bottom:714.254667pt;}
.y2f8{bottom:714.331950pt;}
.y22c{bottom:716.826852pt;}
.y9e{bottom:717.885333pt;}
.y64{bottom:719.622733pt;}
.yb{bottom:722.872000pt;}
.y9{bottom:722.873333pt;}
.y36{bottom:723.098667pt;}
.yc{bottom:723.248800pt;}
.y8f{bottom:723.624621pt;}
.y2c4{bottom:723.629967pt;}
.yef{bottom:724.914667pt;}
.y191{bottom:725.216208pt;}
.y1d1{bottom:725.217225pt;}
.y28c{bottom:725.897333pt;}
.y134{bottom:726.274667pt;}
.ya{bottom:728.164000pt;}
.y20b{bottom:729.827947pt;}
.y11a{bottom:731.188000pt;}
.y2f7{bottom:731.642666pt;}
.y9d{bottom:735.196000pt;}
.y2c3{bottom:736.328475pt;}
.y15f{bottom:736.932734pt;}
.y7{bottom:737.537333pt;}
.yc7{bottom:737.841333pt;}
.y8e{bottom:738.288971pt;}
.y63{bottom:738.293400pt;}
.y264{bottom:738.748000pt;}
.y1d0{bottom:741.846350pt;}
.y190{bottom:741.847339pt;}
.yee{bottom:742.300000pt;}
.y8{bottom:742.828000pt;}
.y133{bottom:743.585333pt;}
.y2f6{bottom:744.265442pt;}
.y20a{bottom:745.852733pt;}
.y2c2{bottom:748.952317pt;}
.y28b{bottom:749.860000pt;}
.y9c{bottom:752.505333pt;}
.y8d{bottom:752.953321pt;}
.yc6{bottom:755.226667pt;}
.y263{bottom:756.133333pt;}
.y119{bottom:756.510667pt;}
.y62{bottom:756.964067pt;}
.y2f5{bottom:756.965017pt;}
.y18f{bottom:758.552197pt;}
.y1cf{bottom:758.552275pt;}
.yed{bottom:759.610667pt;}
.y15e{bottom:760.969333pt;}
.y132{bottom:760.970667pt;}
.y209{bottom:761.878519pt;}
.y2c1{bottom:766.263034pt;}
.y28a{bottom:767.170667pt;}
.y8c{bottom:767.617671pt;}
.y9b{bottom:769.890667pt;}
.y6{bottom:770.873067pt;}
.y208{bottom:773.821360pt;}
.y118{bottom:773.896000pt;}
.y2f4{bottom:774.274667pt;}
.y18e{bottom:775.182389pt;}
.y1ce{bottom:775.182467pt;}
.y61{bottom:775.636000pt;}
.yec{bottom:776.920000pt;}
.y131{bottom:778.281333pt;}
.y2c0{bottom:778.961542pt;}
.yc5{bottom:780.549333pt;}
.y262{bottom:781.456000pt;}
.y8b{bottom:782.283088pt;}
.y2f3{bottom:786.974241pt;}
.y9a{bottom:787.201333pt;}
.y207{bottom:789.846147pt;}
.y289{bottom:791.208000pt;}
.y2bf{bottom:791.661116pt;}
.y18d{bottom:791.887247pt;}
.y1cd{bottom:791.887325pt;}
.yeb{bottom:794.230667pt;}
.y60{bottom:794.306667pt;}
.y130{bottom:795.590667pt;}
.y8a{bottom:796.947438pt;}
.y15d{bottom:797.405333pt;}
.yc4{bottom:797.860000pt;}
.y261{bottom:798.766667pt;}
.y117{bottom:799.218667pt;}
.y5{bottom:800.882667pt;}
.y2f2{bottom:804.284958pt;}
.y99{bottom:804.512000pt;}
.y206{bottom:805.871933pt;}
.y18c{bottom:808.517439pt;}
.y1cc{bottom:808.517517pt;}
.y2be{bottom:808.970767pt;}
.y89{bottom:811.611788pt;}
.yea{bottom:811.616000pt;}
.y12f{bottom:812.901333pt;}
.y5f{bottom:812.977333pt;}
.y15c{bottom:814.716000pt;}
.y288{bottom:815.169333pt;}
.y260{bottom:816.076000pt;}
.y2f1{bottom:816.983466pt;}
.y2bd{bottom:821.594609pt;}
.y205{bottom:821.821720pt;}
.y98{bottom:821.897333pt;}
.y115{bottom:822.274667pt;}
.yc3{bottom:823.182667pt;}
.y116{bottom:824.541333pt;}
.y114{bottom:824.542667pt;}
.y1cb{bottom:825.222375pt;}
.y18b{bottom:825.223363pt;}
.y88{bottom:826.276138pt;}
.ye9{bottom:828.926667pt;}
.y2f0{bottom:829.607309pt;}
.y12e{bottom:830.286667pt;}
.y4{bottom:830.817867pt;}
.y5e{bottom:831.648000pt;}
.y15b{bottom:832.101333pt;}
.y287{bottom:832.556000pt;}
.y204{bottom:833.840560pt;}
.y2bc{bottom:834.294183pt;}
.y97{bottom:839.208000pt;}
.yc2{bottom:840.568000pt;}
.y87{bottom:840.940488pt;}
.y25f{bottom:841.474667pt;}
.y18a{bottom:841.852489pt;}
.y1ca{bottom:841.852567pt;}
.ye8{bottom:846.236000pt;}
.y2bb{bottom:846.992691pt;}
.y12d{bottom:847.597333pt;}
.y15a{bottom:849.412000pt;}
.y113{bottom:849.865333pt;}
.y203{bottom:849.865346pt;}
.y5d{bottom:850.318667pt;}
.y286{bottom:850.545333pt;}
.y86{bottom:855.604838pt;}
.y96{bottom:856.517333pt;}
.yc1{bottom:857.878667pt;}
.y189{bottom:858.482681pt;}
.y1c9{bottom:858.482759pt;}
.y25e{bottom:858.785333pt;}
.y2ef{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y202{bottom:861.884186pt;}
.ye7{bottom:863.621333pt;}
.y2ba{bottom:864.303408pt;}
.y12c{bottom:864.906667pt;}
.y159{bottom:866.721333pt;}
.y285{bottom:867.176000pt;}
.y5c{bottom:868.989333pt;}
.y85{bottom:870.269188pt;}
.y95{bottom:873.902667pt;}
.y1c8{bottom:875.187617pt;}
.y112{bottom:875.188000pt;}
.y188{bottom:875.188605pt;}
.y25d{bottom:876.094667pt;}
.y2b9{bottom:876.926184pt;}
.y201{bottom:877.833973pt;}
.yc0{bottom:883.201333pt;}
.ye6{bottom:886.298667pt;}
.y12b{bottom:887.584000pt;}
.y5b{bottom:887.660000pt;}
.y158{bottom:889.398667pt;}
.y2b8{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y94{bottom:891.213333pt;}
.y187{bottom:891.817731pt;}
.y1c7{bottom:891.817809pt;}
.y111{bottom:892.498667pt;}
.y84{bottom:892.946238pt;}
.y200{bottom:893.858760pt;}
.y25c{bottom:901.417333pt;}
.y2b7{bottom:902.325333pt;}
.y5a{bottom:906.330667pt;}
.y83{bottom:907.611655pt;}
.y1c6{bottom:908.522667pt;}
.y186{bottom:908.523655pt;}
.y93{bottom:908.524000pt;}
.y1ff{bottom:909.884546pt;}
.y1c5{bottom:913.285333pt;}
.y110{bottom:917.896000pt;}
.y25b{bottom:918.802667pt;}
.y2b6{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y59{bottom:925.001333pt;}
.y185{bottom:925.152781pt;}
.y92{bottom:925.833333pt;}
.y82{bottom:930.288705pt;}
.y2b5{bottom:932.258825pt;}
.y25a{bottom:941.404000pt;}
.y91{bottom:943.218667pt;}
.y58{bottom:943.672000pt;}
.y81{bottom:944.953055pt;}
.y184{bottom:944.957333pt;}
.y80{bottom:994.393333pt;}
.h17{height:21.330000pt;}
.h18{height:23.145840pt;}
.h4{height:24.828689pt;}
.h10{height:26.663600pt;}
.h19{height:29.999600pt;}
.hb{height:31.082945pt;}
.h12{height:31.999600pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hd{height:34.772899pt;}
.hc{height:36.052883pt;}
.h3{height:37.248000pt;}
.h14{height:38.556484pt;}
.h16{height:38.562605pt;}
.h15{height:38.563675pt;}
.h9{height:39.266667pt;}
.he{height:39.332842pt;}
.ha{height:40.000000pt;}
.h13{height:41.333333pt;}
.h8{height:47.593839pt;}
.h11{height:47.999600pt;}
.hf{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:48.000000pt;}
.x47{left:51.855067pt;}
.x30{left:63.496000pt;}
.x43{left:97.587333pt;}
.x3f{left:115.502267pt;}
.x51{left:146.493702pt;}
.x4a{left:154.961359pt;}
.x50{left:191.015812pt;}
.x44{left:195.250667pt;}
.x38{left:201.447682pt;}
.x3a{left:204.017250pt;}
.x4b{left:224.051438pt;}
.x39{left:227.526289pt;}
.x36{left:228.735874pt;}
.x37{left:237.882426pt;}
.x1{left:266.682667pt;}
.x55{left:273.184000pt;}
.x35{left:277.113333pt;}
.x31{left:282.632000pt;}
.x4c{left:288.907573pt;}
.x56{left:295.330923pt;}
.x53{left:311.280000pt;}
.x20{left:318.538667pt;}
.x21{left:328.365333pt;}
.x18{left:340.081333pt;}
.x8{left:342.878667pt;}
.x41{left:344.693333pt;}
.x19{left:349.908000pt;}
.x42{left:351.118667pt;}
.x9{left:352.705333pt;}
.x4d{left:353.764708pt;}
.x45{left:358.828000pt;}
.x46{left:363.513808pt;}
.x26{left:369.108000pt;}
.x11{left:370.469333pt;}
.x27{left:374.097333pt;}
.x54{left:378.480000pt;}
.x12{left:380.296000pt;}
.xa{left:387.703333pt;}
.x57{left:391.557987pt;}
.x2{left:398.740000pt;}
.x2e{left:403.653333pt;}
.x4e{left:418.771841pt;}
.x4f{left:430.639683pt;}
.xb{left:433.285333pt;}
.x1a{left:437.140000pt;}
.x3b{left:441.146667pt;}
.x22{left:444.472000pt;}
.x1b{left:446.966667pt;}
.x3{left:448.176000pt;}
.x23{left:449.385333pt;}
.xc{left:455.433333pt;}
.x48{left:456.869333pt;}
.x13{left:479.470667pt;}
.x32{left:481.512000pt;}
.x14{left:489.373333pt;}
.x28{left:519.382667pt;}
.x29{left:524.296000pt;}
.x1c{left:536.314667pt;}
.x49{left:538.658243pt;}
.x1d{left:541.304000pt;}
.x4{left:560.277333pt;}
.xd{left:568.062667pt;}
.x15{left:569.952000pt;}
.xe{left:577.889333pt;}
.x5{left:580.006667pt;}
.x24{left:585.146667pt;}
.x40{left:592.400195pt;}
.x2a{left:600.717333pt;}
.x2b{left:610.545333pt;}
.x52{left:617.496000pt;}
.x33{left:640.402667pt;}
.x34{left:646.148000pt;}
.x1e{left:647.130667pt;}
.x1f{left:652.044000pt;}
.xf{left:653.782667pt;}
.x10{left:663.685333pt;}
.x16{left:673.058667pt;}
.x17{left:682.960000pt;}
.x25{left:687.117333pt;}
.x3c{left:691.049333pt;}
.x3d{left:692.032000pt;}
.x3e{left:699.741333pt;}
.x6{left:714.330667pt;}
.x2c{left:715.237333pt;}
.x7{left:719.244000pt;}
.x2d{left:727.558667pt;}
}




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