
    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_4c743ff3d6296afb76ffe2ab.woff')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_e44374947f672d271597474e.woff')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_0d27b93c694e1c7e1ed83d97.woff')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_b1db2efc08d0e24545b5d123.woff')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_0246a7e53bbb9da1c990caa8.woff')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_7dabe9e30c738b89e834676d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_dc170e5d89ceb00cb87bf591.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_58128aa5c4d9f4914d0771fb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.927246;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_2d5e6dd2ac156461aecadc5f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_354c6c4eddd45aa6f61f1fd0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d03e253ddf2c3ec8a647c2c1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4447e2e47d7a07a224594f0d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_1684a246776e9831fec16a10.woff')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_fd5354e0135e8bc87df430e0.woff')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_e06dc8ff95e8ff080f5858ae.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_05b8f7d3619212185d21d6d8.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_932a4f787201781bd3e53eec.woff')format("woff");}.ff11{font-family:ff11;line-height:1.063000;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_82dcbe561c55f21481477b99.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_797176aee3d5572379d841dc.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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:ff14;src:url('chunks/assets/font_a005c9a8086c585fab8cd8d7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.959961;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);}
.v7{vertical-align:-14.964000px;}
.v8{vertical-align:-10.545468px;}
.v2{vertical-align:-7.821600px;}
.v3{vertical-align:-6.126000px;}
.v4{vertical-align:-3.060000px;}
.v1{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:25.842000px;}
.v5{vertical-align:40.806000px;}
.ls9{letter-spacing:-1.263600px;}
.lse{letter-spacing:-1.200600px;}
.ls12{letter-spacing:-1.199985px;}
.ls13{letter-spacing:-0.359996px;}
.lsf{letter-spacing:-0.241496px;}
.ls11{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.239997px;}
.ls10{letter-spacing:-0.239400px;}
.lsb{letter-spacing:-0.238497px;}
.lsa{letter-spacing:-0.237600px;}
.ls15{letter-spacing:-0.237598px;}
.ls2a{letter-spacing:-0.214367px;}
.lsc{letter-spacing:-0.212372px;}
.ls1a{letter-spacing:-0.211976px;}
.lsd{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.786000px;}
.ls33{letter-spacing:1.128000px;}
.ls1d{letter-spacing:1.134000px;}
.ls7{letter-spacing:1.363183px;}
.ls5{letter-spacing:1.703979px;}
.ls14{letter-spacing:2.726366px;}
.ls16{letter-spacing:3.174000px;}
.ls24{letter-spacing:3.672762px;}
.ls3{letter-spacing:4.766340px;}
.ls35{letter-spacing:5.102336px;}
.ls2{letter-spacing:5.107136px;}
.ls0{letter-spacing:5.491800px;}
.ls36{letter-spacing:7.823902px;}
.ls6{letter-spacing:9.446282px;}
.ls37{letter-spacing:9.801477px;}
.ls25{letter-spacing:9.894000px;}
.ls34{letter-spacing:10.243072px;}
.ls4{letter-spacing:10.387070px;}
.ls2f{letter-spacing:10.665467px;}
.ls2e{letter-spacing:12.792000px;}
.ls27{letter-spacing:12.822000px;}
.ls32{letter-spacing:12.876000px;}
.ls1c{letter-spacing:12.888000px;}
.ls2b{letter-spacing:12.984000px;}
.ls29{letter-spacing:13.026000px;}
.ls26{letter-spacing:13.056000px;}
.ls17{letter-spacing:13.062000px;}
.ls2c{letter-spacing:13.098000px;}
.ls31{letter-spacing:13.104000px;}
.ls1e{letter-spacing:13.122000px;}
.ls2d{letter-spacing:13.128000px;}
.ls1b{letter-spacing:13.146000px;}
.ls28{letter-spacing:13.164000px;}
.ls19{letter-spacing:13.218000px;}
.ls21{letter-spacing:13.260000px;}
.ls23{letter-spacing:13.326000px;}
.ls18{letter-spacing:13.488000px;}
.ls1f{letter-spacing:17.874402px;}
.ls1{letter-spacing:20.783740px;}
.ls20{letter-spacing:44.862000px;}
.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;}
}
.wsd1{word-spacing:-60.000000px;}
.wsce{word-spacing:-43.272000px;}
.ws2b{word-spacing:-37.151856px;}
.wscd{word-spacing:-30.000000px;}
.ws2f{word-spacing:-25.247684px;}
.wsfb{word-spacing:-16.812000px;}
.ws100{word-spacing:-16.806000px;}
.wsfa{word-spacing:-16.740000px;}
.wsdc{word-spacing:-16.710000px;}
.ws96{word-spacing:-16.704000px;}
.ws94{word-spacing:-16.698000px;}
.ws85{word-spacing:-16.692000px;}
.wsdb{word-spacing:-16.686000px;}
.wse3{word-spacing:-16.680000px;}
.ws106{word-spacing:-16.668000px;}
.wsd9{word-spacing:-16.638000px;}
.wsda{word-spacing:-16.614000px;}
.wse7{word-spacing:-16.536000px;}
.wsdd{word-spacing:-16.530000px;}
.wsa7{word-spacing:-16.470000px;}
.ws99{word-spacing:-16.368000px;}
.wsf8{word-spacing:-16.362000px;}
.ws8a{word-spacing:-16.356000px;}
.wsf7{word-spacing:-16.344000px;}
.ws110{word-spacing:-16.332000px;}
.wse5{word-spacing:-16.314000px;}
.ws7{word-spacing:-15.174000px;}
.ws5{word-spacing:-14.936400px;}
.ws102{word-spacing:-13.740000px;}
.ws10{word-spacing:-13.487831px;}
.ws17{word-spacing:-13.247834px;}
.ws32{word-spacing:-11.999850px;}
.ws49{word-spacing:-11.639855px;}
.ws3a{word-spacing:-10.799865px;}
.ws9e{word-spacing:-4.456763px;}
.ws118{word-spacing:-4.233565px;}
.ws1e{word-spacing:-4.160628px;}
.ws113{word-spacing:-4.082366px;}
.ws137{word-spacing:-3.537556px;}
.ws17e{word-spacing:-3.532756px;}
.ws17d{word-spacing:-3.518356px;}
.ws17c{word-spacing:-3.479957px;}
.ws1c{word-spacing:-3.459900px;}
.ws178{word-spacing:-3.431957px;}
.ws13f{word-spacing:-3.403157px;}
.ws15d{word-spacing:-3.393558px;}
.ws24{word-spacing:-3.391500px;}
.ws179{word-spacing:-3.383958px;}
.ws15f{word-spacing:-3.379158px;}
.ws167{word-spacing:-3.340758px;}
.wsb{word-spacing:-3.337200px;}
.ws15{word-spacing:-3.335958px;}
.ws149{word-spacing:-3.326358px;}
.ws1d{word-spacing:-3.323100px;}
.ws165{word-spacing:-3.321558px;}
.ws150{word-spacing:-3.316759px;}
.ws16c{word-spacing:-3.307159px;}
.ws16b{word-spacing:-3.302359px;}
.ws136{word-spacing:-3.297559px;}
.ws13c{word-spacing:-3.292759px;}
.ws26{word-spacing:-3.288900px;}
.ws164{word-spacing:-3.287959px;}
.ws151{word-spacing:-3.283159px;}
.ws144{word-spacing:-3.278359px;}
.ws27{word-spacing:-3.277500px;}
.ws17b{word-spacing:-3.273559px;}
.ws17f{word-spacing:-3.268759px;}
.wsf{word-spacing:-3.263959px;}
.ws175{word-spacing:-3.259159px;}
.ws1b{word-spacing:-3.254700px;}
.ws12{word-spacing:-3.254359px;}
.ws132{word-spacing:-3.249559px;}
.wse{word-spacing:-3.244759px;}
.ws127{word-spacing:-3.239960px;}
.ws14{word-spacing:-3.230360px;}
.ws16e{word-spacing:-3.225560px;}
.ws135{word-spacing:-3.220760px;}
.ws163{word-spacing:-3.215960px;}
.ws14c{word-spacing:-3.211160px;}
.ws25{word-spacing:-3.203400px;}
.wsc{word-spacing:-3.202200px;}
.ws140{word-spacing:-3.201560px;}
.ws12e{word-spacing:-3.196760px;}
.ws153{word-spacing:-3.191960px;}
.ws15a{word-spacing:-3.182360px;}
.ws28{word-spacing:-3.180600px;}
.ws141{word-spacing:-3.177560px;}
.ws4{word-spacing:-3.175200px;}
.ws160{word-spacing:-3.172760px;}
.ws8{word-spacing:-3.169800px;}
.wsf6{word-spacing:-3.167960px;}
.ws1a{word-spacing:-3.163500px;}
.ws15e{word-spacing:-3.163160px;}
.ws2e{word-spacing:-3.158361px;}
.ws13d{word-spacing:-3.153561px;}
.ws19{word-spacing:-3.152100px;}
.ws159{word-spacing:-3.148761px;}
.ws56{word-spacing:-3.146400px;}
.ws171{word-spacing:-3.143961px;}
.ws156{word-spacing:-3.134361px;}
.wscf{word-spacing:-3.132000px;}
.ws11{word-spacing:-3.129561px;}
.ws2c{word-spacing:-3.124761px;}
.ws12d{word-spacing:-3.119961px;}
.wsd{word-spacing:-3.115800px;}
.ws173{word-spacing:-3.115161px;}
.ws176{word-spacing:-3.105561px;}
.ws20{word-spacing:-3.100800px;}
.ws177{word-spacing:-3.091161px;}
.ws2{word-spacing:-3.088800px;}
.ws152{word-spacing:-3.086361px;}
.ws16d{word-spacing:-3.071962px;}
.ws134{word-spacing:-3.067162px;}
.ws15c{word-spacing:-3.062362px;}
.ws145{word-spacing:-3.057562px;}
.ws6{word-spacing:-3.056400px;}
.ws13{word-spacing:-3.052762px;}
.ws133{word-spacing:-3.047962px;}
.ws1{word-spacing:-3.045600px;}
.ws16{word-spacing:-3.038362px;}
.ws14e{word-spacing:-3.019162px;}
.ws148{word-spacing:-3.014362px;}
.ws14b{word-spacing:-3.009562px;}
.wsa{word-spacing:-3.007800px;}
.ws157{word-spacing:-3.004762px;}
.ws9{word-spacing:-3.002400px;}
.ws13b{word-spacing:-2.999962px;}
.ws15b{word-spacing:-2.990363px;}
.ws143{word-spacing:-2.985563px;}
.ws16f{word-spacing:-2.975963px;}
.ws12f{word-spacing:-2.971163px;}
.ws154{word-spacing:-2.961563px;}
.ws12b{word-spacing:-2.956763px;}
.ws168{word-spacing:-2.942363px;}
.ws139{word-spacing:-2.937563px;}
.ws21{word-spacing:-2.935500px;}
.ws13a{word-spacing:-2.927963px;}
.ws12c{word-spacing:-2.913564px;}
.ws18{word-spacing:-2.912700px;}
.ws129{word-spacing:-2.908764px;}
.ws23{word-spacing:-2.901300px;}
.ws128{word-spacing:-2.894364px;}
.ws13e{word-spacing:-2.889564px;}
.ws155{word-spacing:-2.875164px;}
.ws147{word-spacing:-2.870364px;}
.ws29{word-spacing:-2.850000px;}
.ws174{word-spacing:-2.846364px;}
.ws2a{word-spacing:-2.844300px;}
.ws16a{word-spacing:-2.831965px;}
.ws138{word-spacing:-2.812765px;}
.ws130{word-spacing:-2.793565px;}
.ws161{word-spacing:-2.788765px;}
.ws22{word-spacing:-2.787300px;}
.ws12a{word-spacing:-2.779165px;}
.ws126{word-spacing:-2.769565px;}
.ws146{word-spacing:-2.764765px;}
.ws166{word-spacing:-2.750366px;}
.ws14d{word-spacing:-2.745566px;}
.ws17a{word-spacing:-2.726366px;}
.ws169{word-spacing:-2.721566px;}
.ws158{word-spacing:-2.716766px;}
.ws131{word-spacing:-2.683166px;}
.ws170{word-spacing:-2.654367px;}
.ws0{word-spacing:-2.649567px;}
.ws162{word-spacing:-2.644767px;}
.ws172{word-spacing:-2.635167px;}
.ws3{word-spacing:-2.624400px;}
.ws1f{word-spacing:-2.576400px;}
.ws142{word-spacing:-2.524768px;}
.ws180{word-spacing:-2.519968px;}
.ws48{word-spacing:-1.526381px;}
.ws45{word-spacing:-1.511981px;}
.ws44{word-spacing:-1.473582px;}
.ws47{word-spacing:-1.411182px;}
.ws43{word-spacing:-1.348783px;}
.ws46{word-spacing:-1.132786px;}
.ws7d{word-spacing:-0.983988px;}
.ws81{word-spacing:-0.926388px;}
.ws50{word-spacing:-0.916789px;}
.ws4a{word-spacing:-0.892789px;}
.ws3e{word-spacing:-0.878389px;}
.ws39{word-spacing:-0.859189px;}
.wse0{word-spacing:-0.846000px;}
.wsbb{word-spacing:-0.840000px;}
.ws7a{word-spacing:-0.839989px;}
.wsa4{word-spacing:-0.822000px;}
.ws10c{word-spacing:-0.820790px;}
.ws52{word-spacing:-0.815990px;}
.ws109{word-spacing:-0.811190px;}
.ws4f{word-spacing:-0.806390px;}
.ws37{word-spacing:-0.791990px;}
.wsf5{word-spacing:-0.787190px;}
.wsec{word-spacing:-0.786000px;}
.wsa2{word-spacing:-0.774000px;}
.ws41{word-spacing:-0.758391px;}
.ws38{word-spacing:-0.753591px;}
.ws3c{word-spacing:-0.748791px;}
.ws40{word-spacing:-0.743991px;}
.ws77{word-spacing:-0.739191px;}
.ws36{word-spacing:-0.734391px;}
.ws10b{word-spacing:-0.729591px;}
.ws4e{word-spacing:-0.715191px;}
.ws3d{word-spacing:-0.710391px;}
.ws5a{word-spacing:-0.702000px;}
.wsfe{word-spacing:-0.700791px;}
.ws42{word-spacing:-0.691191px;}
.ws10e{word-spacing:-0.686391px;}
.wsa1{word-spacing:-0.684000px;}
.ws82{word-spacing:-0.676792px;}
.ws51{word-spacing:-0.671992px;}
.ws10a{word-spacing:-0.662392px;}
.ws80{word-spacing:-0.652792px;}
.ws7b{word-spacing:-0.647992px;}
.ws34{word-spacing:-0.638392px;}
.ws103{word-spacing:-0.636000px;}
.ws4b{word-spacing:-0.633592px;}
.wsee{word-spacing:-0.630000px;}
.wse1{word-spacing:-0.624000px;}
.ws30{word-spacing:-0.623992px;}
.wsb5{word-spacing:-0.618000px;}
.wsef{word-spacing:-0.612000px;}
.ws53{word-spacing:-0.609592px;}
.wsbd{word-spacing:-0.588000px;}
.wse8{word-spacing:-0.585593px;}
.ws3b{word-spacing:-0.571193px;}
.wsf4{word-spacing:-0.561593px;}
.wsf3{word-spacing:-0.556793px;}
.wsfd{word-spacing:-0.542393px;}
.ws78{word-spacing:-0.537593px;}
.ws3f{word-spacing:-0.527993px;}
.wsc5{word-spacing:-0.522000px;}
.ws7e{word-spacing:-0.518394px;}
.ws83{word-spacing:-0.516000px;}
.ws8d{word-spacing:-0.510000px;}
.wsaf{word-spacing:-0.504000px;}
.ws4d{word-spacing:-0.499194px;}
.ws101{word-spacing:-0.498000px;}
.ws79{word-spacing:-0.494394px;}
.ws59{word-spacing:-0.474000px;}
.ws75{word-spacing:-0.468000px;}
.ws4c{word-spacing:-0.460794px;}
.ws104{word-spacing:-0.456000px;}
.ws7c{word-spacing:-0.451194px;}
.wsff{word-spacing:-0.450000px;}
.wseb{word-spacing:-0.444000px;}
.wsb7{word-spacing:-0.441594px;}
.wsc0{word-spacing:-0.438000px;}
.wsb9{word-spacing:-0.436795px;}
.ws6b{word-spacing:-0.432000px;}
.ws90{word-spacing:-0.426000px;}
.wsa6{word-spacing:-0.420000px;}
.wsb8{word-spacing:-0.417595px;}
.wsd5{word-spacing:-0.414000px;}
.wsa3{word-spacing:-0.408000px;}
.wsc6{word-spacing:-0.402000px;}
.ws35{word-spacing:-0.398395px;}
.ws95{word-spacing:-0.396000px;}
.ws92{word-spacing:-0.390000px;}
.ws87{word-spacing:-0.384000px;}
.ws5c{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.372000px;}
.ws67{word-spacing:-0.366000px;}
.ws60{word-spacing:-0.360000px;}
.ws54{word-spacing:-0.355196px;}
.wsad{word-spacing:-0.354000px;}
.ws31{word-spacing:-0.350396px;}
.ws73{word-spacing:-0.348000px;}
.ws7f{word-spacing:-0.345596px;}
.ws5d{word-spacing:-0.342000px;}
.ws88{word-spacing:-0.336000px;}
.ws64{word-spacing:-0.330000px;}
.ws93{word-spacing:-0.324000px;}
.ws62{word-spacing:-0.318000px;}
.wsc1{word-spacing:-0.312000px;}
.ws9b{word-spacing:-0.306000px;}
.ws117{word-spacing:-0.300000px;}
.ws84{word-spacing:-0.294000px;}
.ws91{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.287996px;}
.ws5f{word-spacing:-0.282000px;}
.ws61{word-spacing:-0.276000px;}
.wsd3{word-spacing:-0.270000px;}
.ws89{word-spacing:-0.264000px;}
.wsea{word-spacing:-0.258000px;}
.ws68{word-spacing:-0.252000px;}
.ws71{word-spacing:-0.246000px;}
.wse4{word-spacing:-0.240000px;}
.ws108{word-spacing:-0.235197px;}
.ws58{word-spacing:-0.234000px;}
.ws65{word-spacing:-0.228000px;}
.wse9{word-spacing:-0.225597px;}
.ws63{word-spacing:-0.222000px;}
.ws111{word-spacing:-0.216000px;}
.ws9a{word-spacing:-0.210000px;}
.ws98{word-spacing:-0.204000px;}
.ws86{word-spacing:-0.198000px;}
.ws6d{word-spacing:-0.192000px;}
.ws8e{word-spacing:-0.186000px;}
.ws105{word-spacing:-0.180000px;}
.ws5b{word-spacing:-0.174000px;}
.wsbc{word-spacing:-0.168000px;}
.ws9d{word-spacing:-0.162000px;}
.ws6c{word-spacing:-0.156000px;}
.wsae{word-spacing:-0.150000px;}
.wsac{word-spacing:-0.144000px;}
.wsaa{word-spacing:-0.138000px;}
.wsa5{word-spacing:-0.132000px;}
.wsb0{word-spacing:-0.120000px;}
.ws10f{word-spacing:-0.108000px;}
.wsc2{word-spacing:-0.102000px;}
.wsbf{word-spacing:-0.096000px;}
.ws74{word-spacing:-0.090000px;}
.wsde{word-spacing:-0.084000px;}
.wsf2{word-spacing:-0.081599px;}
.wsab{word-spacing:-0.078000px;}
.ws9c{word-spacing:-0.072000px;}
.wsf9{word-spacing:-0.066000px;}
.ws70{word-spacing:-0.060000px;}
.wsd4{word-spacing:-0.057599px;}
.wsc4{word-spacing:-0.054000px;}
.ws10d{word-spacing:-0.052799px;}
.ws6a{word-spacing:-0.048000px;}
.ws6f{word-spacing:-0.042000px;}
.wsc7{word-spacing:-0.036000px;}
.wscc{word-spacing:-0.024000px;}
.wsd8{word-spacing:-0.018000px;}
.wsa0{word-spacing:-0.012000px;}
.wsc9{word-spacing:-0.006000px;}
.ws55{word-spacing:0.000000px;}
.wsb1{word-spacing:0.006000px;}
.ws72{word-spacing:0.012000px;}
.wse2{word-spacing:0.024000px;}
.wsca{word-spacing:0.030000px;}
.wsb6{word-spacing:0.033600px;}
.wsa8{word-spacing:0.042000px;}
.ws8f{word-spacing:0.048000px;}
.ws107{word-spacing:0.054000px;}
.ws66{word-spacing:0.060000px;}
.ws76{word-spacing:0.066000px;}
.ws97{word-spacing:0.084000px;}
.wsd7{word-spacing:0.090000px;}
.ws11a{word-spacing:0.096000px;}
.wscb{word-spacing:0.102000px;}
.ws8b{word-spacing:0.108000px;}
.wsb4{word-spacing:0.114000px;}
.wsb2{word-spacing:0.120000px;}
.ws5e{word-spacing:0.126000px;}
.wse6{word-spacing:0.132000px;}
.ws57{word-spacing:0.138000px;}
.ws9f{word-spacing:0.143999px;}
.ws8c{word-spacing:0.144000px;}
.ws112{word-spacing:0.150000px;}
.wsdf{word-spacing:0.156000px;}
.wsf1{word-spacing:0.167998px;}
.wsba{word-spacing:0.172799px;}
.wsf0{word-spacing:0.180000px;}
.wsbe{word-spacing:0.198000px;}
.wsb3{word-spacing:0.204000px;}
.ws11d{word-spacing:0.210000px;}
.wsed{word-spacing:0.237598px;}
.wsa9{word-spacing:0.244798px;}
.wsc3{word-spacing:0.266398px;}
.wsd6{word-spacing:0.287998px;}
.wsc8{word-spacing:0.288000px;}
.ws6e{word-spacing:0.300000px;}
.ws124{word-spacing:0.342000px;}
.wsfc{word-spacing:0.374395px;}
.ws116{word-spacing:0.378000px;}
.ws115{word-spacing:0.408000px;}
.ws114{word-spacing:0.432000px;}
.ws11b{word-spacing:0.480000px;}
.ws11c{word-spacing:0.666000px;}
.ws121{word-spacing:0.708000px;}
.ws11e{word-spacing:0.762000px;}
.ws120{word-spacing:0.900000px;}
.ws11f{word-spacing:0.978000px;}
.ws123{word-spacing:1.020000px;}
.ws122{word-spacing:1.026000px;}
.ws119{word-spacing:1.158000px;}
.wsd0{word-spacing:32.646000px;}
.ws2d{word-spacing:34.588368px;}
.ws14a{word-spacing:46.842614px;}
.ws14f{word-spacing:46.847414px;}
.ws125{word-spacing:46.909814px;}
.wsd2{word-spacing:537.780000px;}
._10{margin-left:-21.110136px;}
._7{margin-left:-8.421087px;}
._a{margin-left:-4.826414px;}
._6{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._2{width:3.777600px;}
._b{width:9.431882px;}
._3{width:11.059062px;}
._5{width:12.101100px;}
._4{width:13.959300px;}
._9{width:15.108000px;}
._d{width:16.883859px;}
._e{width:20.889339px;}
._f{width:21.983725px;}
._1{width:25.131600px;}
._c{width:1431.385307px;}
._8{width:1457.218585px;}
.fc5{color:transparent;}
.fc4{color:rgb(188,27,149);}
.fc6{color:rgb(16,15,13);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.995000px;}
.fs4{font-size:35.995200px;}
.fsd{font-size:35.998800px;}
.fsc{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs6{font-size:68.998800px;}
.fsa{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs8{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.y85{bottom:4.537500px;}
.y31{bottom:8.513967px;}
.y32{bottom:54.000000px;}
.y1ed{bottom:122.626650px;}
.y2f{bottom:124.498500px;}
.y14a{bottom:124.500000px;}
.y57{bottom:124.500157px;}
.y83{bottom:124.501500px;}
.y17c{bottom:124.503000px;}
.y1ee{bottom:125.092800px;}
.y250{bottom:125.095735px;}
.y1ec{bottom:125.100000px;}
.y1e5{bottom:131.643000px;}
.y210{bottom:131.981100px;}
.y211{bottom:132.746100px;}
.y2ac{bottom:133.091025px;}
.y198{bottom:134.532000px;}
.y24f{bottom:139.382756px;}
.y113{bottom:139.635000px;}
.y56{bottom:140.997550px;}
.y28b{bottom:142.105312px;}
.y169{bottom:143.971500px;}
.yfa{bottom:143.973000px;}
.y82{bottom:143.976000px;}
.ycc{bottom:144.573000px;}
.y2e{bottom:145.503000px;}
.y2ab{bottom:147.292847px;}
.y1e4{bottom:151.201500px;}
.y197{bottom:154.006500px;}
.y28a{bottom:156.307135px;}
.y20f{bottom:157.492500px;}
.y55{bottom:157.494944px;}
.y24e{bottom:158.856113px;}
.y112{bottom:159.109500px;}
.y167{bottom:160.980000px;}
.y2aa{bottom:161.579869px;}
.y168{bottom:163.530000px;}
.yf9{bottom:163.531500px;}
.y149{bottom:163.533000px;}
.y81{bottom:163.534500px;}
.ycb{bottom:164.131500px;}
.y2d{bottom:166.507500px;}
.y289{bottom:170.592956px;}
.y1e3{bottom:170.676000px;}
.y195{bottom:171.013500px;}
.y24d{bottom:173.143134px;}
.y196{bottom:173.479500px;}
.y194{bottom:173.481000px;}
.y111{bottom:178.582500px;}
.y2a9{bottom:181.053225px;}
.yf8{bottom:183.006000px;}
.y54{bottom:183.006625px;}
.y80{bottom:183.009000px;}
.yca{bottom:183.606000px;}
.y24c{bottom:187.344957px;}
.y2c{bottom:187.512000px;}
.y288{bottom:190.067513px;}
.y1e2{bottom:190.149000px;}
.y193{bottom:190.488000px;}
.y192{bottom:193.039500px;}
.y2a8{bottom:195.340247px;}
.y110{bottom:198.141000px;}
.y10e{bottom:198.145500px;}
.y53{bottom:199.505219px;}
.y1a9{bottom:200.013000px;}
.yf7{bottom:202.479000px;}
.y148{bottom:202.480500px;}
.y7f{bottom:202.483500px;}
.yc9{bottom:203.080500px;}
.y287{bottom:204.354534px;}
.y10f{bottom:204.775500px;}
.y24b{bottom:206.818313px;}
.y1e1{bottom:207.156000px;}
.y166{bottom:207.325500px;}
.y20e{bottom:208.177500px;}
.y2b{bottom:208.516500px;}
.y2a7{bottom:209.540869px;}
.y1e0{bottom:209.707500px;}
.y191{bottom:212.514000px;}
.y52{bottom:216.002613px;}
.y10d{bottom:217.618500px;}
.y286{bottom:218.555157px;}
.y24a{bottom:221.105335px;}
.y1a8{bottom:222.037500px;}
.yf6{bottom:222.039000px;}
.y7e{bottom:222.042000px;}
.yc8{bottom:222.639000px;}
.y1de{bottom:226.714500px;}
.y20d{bottom:227.736000px;}
.y1c0{bottom:227.991000px;}
.y2a6{bottom:229.100625px;}
.y1df{bottom:229.180500px;}
.y1dd{bottom:229.183500px;}
.y2a{bottom:229.521000px;}
.y190{bottom:231.987000px;}
.y18f{bottom:231.988500px;}
.y51{bottom:232.500007px;}
.y10c{bottom:237.093000px;}
.y285{bottom:238.114912px;}
.y249{bottom:240.578691px;}
.yf5{bottom:241.512000px;}
.y147{bottom:241.513500px;}
.y7d{bottom:241.515000px;}
.y17b{bottom:241.516500px;}
.yc7{bottom:242.112000px;}
.y2a5{bottom:243.302447px;}
.y20b{bottom:244.743000px;}
.y20c{bottom:247.209000px;}
.y20a{bottom:247.210500px;}
.y1dc{bottom:248.658000px;}
.y18d{bottom:248.995500px;}
.y50{bottom:248.997400px;}
.y29{bottom:250.525500px;}
.y18e{bottom:251.547000px;}
.y18c{bottom:251.548500px;}
.y284{bottom:252.315535px;}
.y248{bottom:254.865713px;}
.y10b{bottom:256.567500px;}
.y2a4{bottom:257.588269px;}
.y1a7{bottom:260.985000px;}
.yf4{bottom:260.986500px;}
.y7c{bottom:260.989500px;}
.yc6{bottom:261.586500px;}
.y4e{bottom:265.494794px;}
.y165{bottom:265.495500px;}
.y4f{bottom:265.835590px;}
.y209{bottom:266.683500px;}
.y1db{bottom:268.216500px;}
.y247{bottom:269.067535px;}
.y18b{bottom:271.021500px;}
.y283{bottom:271.875290px;}
.y1bf{bottom:274.252500px;}
.y28{bottom:276.037500px;}
.y10a{bottom:276.126000px;}
.yf3{bottom:280.459500px;}
.y146{bottom:280.461000px;}
.y7b{bottom:280.464000px;}
.yc5{bottom:281.145000px;}
.y164{bottom:285.054000px;}
.y282{bottom:286.075913px;}
.y1a6{bottom:286.497000px;}
.y1da{bottom:287.689500px;}
.y246{bottom:288.626091px;}
.y18a{bottom:290.496000px;}
.y4d{bottom:291.006475px;}
.y1bd{bottom:291.259500px;}
.y2a3{bottom:291.348647px;}
.y1be{bottom:293.725500px;}
.y1bc{bottom:293.727000px;}
.y208{bottom:295.171500px;}
.y109{bottom:295.599000px;}
.y145{bottom:300.019500px;}
.y7a{bottom:300.022500px;}
.y281{bottom:300.362934px;}
.yc4{bottom:300.619500px;}
.y245{bottom:302.827913px;}
.y163{bottom:304.528500px;}
.y2a2{bottom:305.550469px;}
.yf2{bottom:305.971500px;}
.y1d8{bottom:307.164000px;}
.y189{bottom:307.501500px;}
.y4c{bottom:307.503869px;}
.y1d9{bottom:307.929000px;}
.y188{bottom:309.969000px;}
.y206{bottom:312.180000px;}
.y1bb{bottom:313.285500px;}
.y207{bottom:314.730000px;}
.y205{bottom:314.733000px;}
.y108{bottom:315.073500px;}
.y27{bottom:316.263000px;}
.y243{bottom:317.113735px;}
.y244{bottom:317.369331px;}
.y144{bottom:319.494000px;}
.y79{bottom:319.495500px;}
.y17a{bottom:319.497000px;}
.y280{bottom:319.837491px;}
.yc3{bottom:320.094000px;}
.y4b{bottom:324.001263px;}
.y162{bottom:324.001500px;}
.y1d7{bottom:326.722500px;}
.y187{bottom:326.976000px;}
.y186{bottom:329.527500px;}
.y1ba{bottom:332.760000px;}
.y27f{bottom:334.123312px;}
.y204{bottom:334.207500px;}
.y107{bottom:334.632000px;}
.y1a5{bottom:336.162000px;}
.y242{bottom:336.588291px;}
.y26{bottom:337.182000px;}
.y142{bottom:338.967000px;}
.y78{bottom:338.970000px;}
.y2a1{bottom:339.310847px;}
.yc2{bottom:339.567000px;}
.y4a{bottom:340.499857px;}
.y161{bottom:343.476000px;}
.y143{bottom:345.685500px;}
.y1d6{bottom:346.197000px;}
.y185{bottom:349.002000px;}
.y241{bottom:350.874113px;}
.y1b9{bottom:352.234500px;}
.y27e{bottom:353.597869px;}
.y106{bottom:354.106500px;}
.y1a4{bottom:355.636500px;}
.y49{bottom:356.997250px;}
.y25{bottom:358.186500px;}
.y141{bottom:358.525500px;}
.y77{bottom:358.528500px;}
.y179{bottom:358.530000px;}
.yc1{bottom:359.125500px;}
.y203{bottom:362.695500px;}
.y160{bottom:363.034500px;}
.yf1{bottom:363.123000px;}
.y1d4{bottom:363.202500px;}
.y240{bottom:365.075935px;}
.y1d5{bottom:365.670000px;}
.y1d3{bottom:365.671500px;}
.y27d{bottom:367.798491px;}
.y184{bottom:368.476500px;}
.y1b8{bottom:371.707500px;}
.y48{bottom:373.494644px;}
.y105{bottom:373.579500px;}
.y1a3{bottom:375.109500px;}
.y76{bottom:378.003000px;}
.yc0{bottom:378.600000px;}
.y24{bottom:379.191000px;}
.y27c{bottom:382.085513px;}
.y202{bottom:382.168500px;}
.y15f{bottom:382.509000px;}
.yf0{bottom:382.597500px;}
.y140{bottom:384.037500px;}
.y23f{bottom:384.634491px;}
.y1d2{bottom:385.146000px;}
.y183{bottom:388.035000px;}
.y47{bottom:389.992038px;}
.y1b7{bottom:391.266000px;}
.y104{bottom:393.139500px;}
.y1a2{bottom:394.668000px;}
.y75{bottom:397.477500px;}
.ybf{bottom:398.074500px;}
.y23e{bottom:398.836313px;}
.y23{bottom:400.195500px;}
.y27b{bottom:401.558869px;}
.y201{bottom:401.727000px;}
.y15e{bottom:401.982000px;}
.yef{bottom:402.156000px;}
.y1d1{bottom:404.704500px;}
.y181{bottom:405.042000px;}
.y182{bottom:407.508000px;}
.y180{bottom:407.509500px;}
.y1b6{bottom:410.740500px;}
.y103{bottom:412.612500px;}
.y23d{bottom:413.123334px;}
.y1a1{bottom:414.142500px;}
.y46{bottom:415.503719px;}
.y27a{bottom:415.845890px;}
.y74{bottom:417.036000px;}
.ybe{bottom:417.633000px;}
.y1eb{bottom:418.398000px;}
.y15d{bottom:418.989000px;}
.y22{bottom:421.200000px;}
.y15c{bottom:421.540500px;}
.yee{bottom:421.629000px;}
.y1d0{bottom:424.177500px;}
.y17f{bottom:426.984000px;}
.y23c{bottom:427.323957px;}
.y13f{bottom:429.109500px;}
.y2a0{bottom:430.047713px;}
.y1b5{bottom:430.215000px;}
.y102{bottom:432.087000px;}
.y1a0{bottom:433.617000px;}
.y279{bottom:435.320447px;}
.y73{bottom:436.509000px;}
.y178{bottom:436.510500px;}
.ybd{bottom:437.107500px;}
.y15a{bottom:438.547500px;}
.y15b{bottom:441.013500px;}
.y159{bottom:441.015000px;}
.y45{bottom:441.015400px;}
.yed{bottom:441.103500px;}
.y23b{bottom:441.610978px;}
.y1cf{bottom:443.652000px;}
.y2b8{bottom:444.333534px;}
.y17e{bottom:446.542500px;}
.y21{bottom:446.712000px;}
.y13e{bottom:448.582500px;}
.y278{bottom:449.606268px;}
.y200{bottom:449.689500px;}
.y1b4{bottom:449.773500px;}
.y101{bottom:451.645500px;}
.y19f{bottom:453.175500px;}
.y72{bottom:455.983500px;}
.ybc{bottom:456.580500px;}
.y157{bottom:458.022000px;}
.y2b7{bottom:458.620556px;}
.y158{bottom:460.488000px;}
.y156{bottom:460.489500px;}
.yec{bottom:460.662000px;}
.y23a{bottom:461.085535px;}
.y1ce{bottom:463.210500px;}
.y277{bottom:463.808091px;}
.y17d{bottom:466.015500px;}
.y44{bottom:466.527081px;}
.y13d{bottom:468.141000px;}
.y13b{bottom:468.145500px;}
.y1ff{bottom:469.164000px;}
.y1b3{bottom:469.246500px;}
.y100{bottom:471.120000px;}
.y19e{bottom:472.648500px;}
.y13c{bottom:474.775500px;}
.y239{bottom:475.371356px;}
.y71{bottom:475.542000px;}
.ybb{bottom:476.139000px;}
.y29f{bottom:478.093912px;}
.y155{bottom:480.048000px;}
.yeb{bottom:480.136500px;}
.y1cd{bottom:482.685000px;}
.y276{bottom:483.366646px;}
.y20{bottom:486.936000px;}
.y13a{bottom:487.620000px;}
.y1fe{bottom:488.722500px;}
.y238{bottom:489.573179px;}
.yff{bottom:490.593000px;}
.y43{bottom:492.038762px;}
.y2b6{bottom:492.295735px;}
.y1b2{bottom:494.758500px;}
.y70{bottom:495.016500px;}
.yba{bottom:495.613500px;}
.y275{bottom:497.568469px;}
.y19d{bottom:497.991226px;}
.y154{bottom:499.522500px;}
.yea{bottom:499.609500px;}
.y1cc{bottom:502.159500px;}
.y235{bottom:503.859000px;}
.y237{bottom:504.114597px;}
.y236{bottom:504.199796px;}
.y1b1{bottom:504.623569px;}
.y2b5{bottom:506.582756px;}
.y139{bottom:507.094500px;}
.y1f{bottom:507.940500px;}
.yfe{bottom:510.067500px;}
.y274{bottom:511.855490px;}
.y6f{bottom:514.491000px;}
.yb9{bottom:515.088000px;}
.y1fd{bottom:517.210500px;}
.y42{bottom:517.465245px;}
.y153{bottom:518.997000px;}
.ye9{bottom:519.084000px;}
.y19c{bottom:521.292535px;}
.y1cb{bottom:521.718000px;}
.y234{bottom:523.333557px;}
.y273{bottom:526.056113px;}
.y138{bottom:526.653000px;}
.y1b0{bottom:527.924878px;}
.y1c5{bottom:528.775425px;}
.y1e{bottom:528.945000px;}
.yfd{bottom:529.626000px;}
.y41{bottom:533.962638px;}
.y6e{bottom:533.964000px;}
.yb8{bottom:534.646500px;}
.y19b{bottom:535.493157px;}
.y1fc{bottom:536.683500px;}
.y233{bottom:537.620578px;}
.y152{bottom:538.555500px;}
.ye8{bottom:538.642500px;}
.y1ae{bottom:540.169500px;}
.y2b4{bottom:540.343134px;}
.y1ca{bottom:541.191000px;}
.y1af{bottom:542.125500px;}
.y1ad{bottom:542.127535px;}
.y272{bottom:545.615868px;}
.y137{bottom:546.127500px;}
.yfc{bottom:549.100500px;}
.y19a{bottom:549.780179px;}
.y1d{bottom:549.949500px;}
.y40{bottom:550.545231px;}
.y230{bottom:551.821201px;}
.y1c4{bottom:551.991535px;}
.y231{bottom:552.076798px;}
.y232{bottom:552.247195px;}
.y6d{bottom:553.522500px;}
.y177{bottom:553.524000px;}
.yb7{bottom:554.119500px;}
.y2b3{bottom:554.544957px;}
.y1ac{bottom:556.413356px;}
.y151{bottom:558.030000px;}
.ye7{bottom:558.117000px;}
.y271{bottom:559.816491px;}
.y1c9{bottom:560.665500px;}
.y1fb{bottom:562.195500px;}
.y199{bottom:564.066000px;}
.y136{bottom:565.600500px;}
.y1c3{bottom:566.277356px;}
.y3f{bottom:567.042625px;}
.yfb{bottom:568.573500px;}
.y2b2{bottom:568.830778px;}
.y1ab{bottom:570.700378px;}
.y1c{bottom:570.954000px;}
.y22f{bottom:571.380956px;}
.y6c{bottom:572.997000px;}
.yb6{bottom:573.594000px;}
.y270{bottom:574.103512px;}
.y150{bottom:577.503000px;}
.ye6{bottom:577.591500px;}
.y1c8{bottom:580.140000px;}
.y1c2{bottom:580.479179px;}
.y3e{bottom:583.541219px;}
.y1aa{bottom:584.901000px;}
.y135{bottom:585.159000px;}
.y22e{bottom:585.581579px;}
.y26f{bottom:588.305335px;}
.y1b{bottom:591.958500px;}
.y6b{bottom:592.471500px;}
.yb5{bottom:593.068500px;}
.y1c1{bottom:594.765000px;}
.y14f{bottom:596.977500px;}
.ye5{bottom:597.150000px;}
.y1c7{bottom:599.698500px;}
.y22a{bottom:599.868600px;}
.y3c{bottom:600.038612px;}
.y22c{bottom:600.124197px;}
.y22b{bottom:600.208196px;}
.y3d{bottom:600.293009px;}
.y118{bottom:600.634425px;}
.y22d{bottom:602.504967px;}
.y2b1{bottom:602.591156px;}
.y1fa{bottom:603.867000px;}
.y134{bottom:604.633500px;}
.y26e{bottom:607.863890px;}
.y6a{bottom:612.030000px;}
.yb4{bottom:612.627000px;}
.y14e{bottom:616.536000px;}
.y39{bottom:616.536006px;}
.ye4{bottom:616.623000px;}
.y3b{bottom:616.790403px;}
.y2b0{bottom:616.792979px;}
.y3a{bottom:616.875602px;}
.y1a{bottom:617.470500px;}
.y1c6{bottom:619.171500px;}
.y229{bottom:619.341957px;}
.y26d{bottom:622.065713px;}
.y1f9{bottom:623.425500px;}
.y117{bottom:623.850535px;}
.y133{bottom:624.108000px;}
.y69{bottom:631.503000px;}
.y176{bottom:631.504500px;}
.yb3{bottom:632.101500px;}
.y228{bottom:633.628978px;}
.y14d{bottom:636.010500px;}
.ye3{bottom:636.097500px;}
.y26c{bottom:636.351534px;}
.y116{bottom:638.136356px;}
.y38{bottom:641.026500px;}
.y1f8{bottom:642.900000px;}
.y132{bottom:643.666500px;}
.y227{bottom:647.830801px;}
.y26b{bottom:650.553357px;}
.y68{bottom:650.977500px;}
.y1e9{bottom:651.233446px;}
.yb2{bottom:651.574500px;}
.y115{bottom:652.423378px;}
.y14c{bottom:655.483500px;}
.ye2{bottom:655.656000px;}
.y29e{bottom:655.826091px;}
.y1f7{bottom:662.374500px;}
.y131{bottom:663.141000px;}
.y2af{bottom:664.840378px;}
.y114{bottom:666.624000px;}
.y226{bottom:667.389356px;}
.y19{bottom:669.685500px;}
.y26a{bottom:670.111912px;}
.y67{bottom:670.536000px;}
.yb1{bottom:671.133000px;}
.y1e8{bottom:674.448356px;}
.y14b{bottom:675.042000px;}
.ye1{bottom:675.130500px;}
.y225{bottom:681.591179px;}
.y1f6{bottom:681.933000px;}
.y130{bottom:682.614000px;}
.y269{bottom:684.313735px;}
.y29d{bottom:684.569331px;}
.y1e7{bottom:688.735378px;}
.y66{bottom:690.010500px;}
.yb0{bottom:690.607500px;}
.ye0{bottom:694.605000px;}
.y224{bottom:695.877000px;}
.y175{bottom:695.963325px;}
.y268{bottom:698.600756px;}
.y1f5{bottom:701.406000px;}
.y12f{bottom:702.088500px;}
.y1e6{bottom:702.936000px;}
.y29c{bottom:703.873490px;}
.y16d{bottom:707.018747px;}
.y65{bottom:709.485000px;}
.yaf{bottom:710.082000px;}
.y267{bottom:712.802578px;}
.ydf{bottom:714.163500px;}
.y223{bottom:716.116500px;}
.y29b{bottom:718.074113px;}
.y1f4{bottom:720.880500px;}
.y12e{bottom:721.647000px;}
.y174{bottom:723.004500px;}
.y37{bottom:728.023500px;}
.y64{bottom:728.958000px;}
.yae{bottom:729.640500px;}
.y18{bottom:729.979425px;}
.y16c{bottom:730.318856px;}
.y266{bottom:732.361134px;}
.yde{bottom:733.636500px;}
.y1f3{bottom:740.439000px;}
.y12c{bottom:741.121500px;}
.y12d{bottom:741.886500px;}
.y16b{bottom:744.520679px;}
.y36{bottom:745.285500px;}
.y265{bottom:746.562956px;}
.y29a{bottom:746.817353px;}
.y299{bottom:746.987751px;}
.y63{bottom:748.516500px;}
.yad{bottom:749.115000px;}
.ydd{bottom:753.111000px;}
.y9c{bottom:757.107225px;}
.y16a{bottom:758.806500px;}
.y1f2{bottom:759.913500px;}
.y16{bottom:759.997049px;}
.y17{bottom:760.337845px;}
.y12b{bottom:760.594500px;}
.y264{bottom:760.848778px;}
.y173{bottom:762.294000px;}
.y35{bottom:762.463500px;}
.y298{bottom:766.121512px;}
.y62{bottom:767.991000px;}
.yac{bottom:768.588000px;}
.ydc{bottom:772.585500px;}
.y9b{bottom:773.604618px;}
.y14{bottom:774.964462px;}
.y263{bottom:775.050600px;}
.y15{bottom:775.220059px;}
.y1f1{bottom:779.386500px;}
.y34{bottom:779.727000px;}
.y12a{bottom:780.153000px;}
.y297{bottom:780.323334px;}
.y172{bottom:781.768500px;}
.y61{bottom:787.465500px;}
.yab{bottom:788.062500px;}
.y12{bottom:789.931875px;}
.y13{bottom:790.356670px;}
.ydb{bottom:792.144000px;}
.y262{bottom:794.609156px;}
.y33{bottom:796.989000px;}
.y222{bottom:798.607500px;}
.y9a{bottom:799.116300px;}
.y129{bottom:799.627500px;}
.y171{bottom:801.327000px;}
.y1f0{bottom:804.897000px;}
.y11{bottom:804.983287px;}
.y60{bottom:807.024000px;}
.yaa{bottom:807.621000px;}
.y261{bottom:808.810978px;}
.yda{bottom:811.617000px;}
.y296{bottom:814.083712px;}
.y99{bottom:815.613693px;}
.y220{bottom:818.080500px;}
.y221{bottom:818.845500px;}
.y128{bottom:819.102000px;}
.ye{bottom:819.949500px;}
.y10{bottom:820.203897px;}
.yf{bottom:820.374295px;}
.y170{bottom:820.800000px;}
.y260{bottom:823.098000px;}
.y5f{bottom:826.497000px;}
.ya9{bottom:827.095500px;}
.y295{bottom:828.369534px;}
.yd9{bottom:831.091500px;}
.y98{bottom:832.112287px;}
.y127{bottom:838.660500px;}
.y25f{bottom:842.571356px;}
.y21e{bottom:845.122500px;}
.y21f{bottom:845.889000px;}
.y16f{bottom:846.312000px;}
.ya8{bottom:846.568500px;}
.yc{bottom:846.991500px;}
.ya{bottom:846.993000px;}
.yd{bottom:847.245300px;}
.y97{bottom:848.609681px;}
.yd8{bottom:850.650000px;}
.y5e{bottom:852.009000px;}
.yb{bottom:852.945000px;}
.y25e{bottom:856.858378px;}
.y126{bottom:858.135000px;}
.y294{bottom:862.045913px;}
.y6{bottom:863.490000px;}
.y9{bottom:863.743800px;}
.y7{bottom:863.913900px;}
.y96{bottom:865.107075px;}
.ya7{bottom:866.127000px;}
.y8{bottom:869.442000px;}
.yd7{bottom:870.124500px;}
.y25d{bottom:871.059000px;}
.y21c{bottom:872.080500px;}
.y21d{bottom:872.845500px;}
.y293{bottom:876.331734px;}
.y125{bottom:877.608000px;}
.y95{bottom:881.604468px;}
.y25a{bottom:885.346022px;}
.ya6{bottom:885.601500px;}
.y25c{bottom:885.601618px;}
.y25b{bottom:885.686817px;}
.yd6{bottom:889.599000px;}
.y292{bottom:890.618756px;}
.y124{bottom:897.082500px;}
.y94{bottom:898.101862px;}
.y21a{bottom:899.122500px;}
.y21b{bottom:899.887500px;}
.y5{bottom:900.993000px;}
.y259{bottom:904.820578px;}
.ya5{bottom:905.076000px;}
.yd4{bottom:909.157500px;}
.yd5{bottom:909.922500px;}
.y93{bottom:914.599256px;}
.y123{bottom:916.641000px;}
.y258{bottom:919.106400px;}
.y291{bottom:924.293935px;}
.ya4{bottom:924.634500px;}
.y219{bottom:926.080500px;}
.yd3{bottom:928.630500px;}
.y91{bottom:931.096650px;}
.y92{bottom:931.352247px;}
.y257{bottom:933.308222px;}
.y4{bottom:934.670100px;}
.y122{bottom:936.115500px;}
.y290{bottom:938.580956px;}
.ya3{bottom:944.109000px;}
.y8f{bottom:947.595244px;}
.y90{bottom:947.849640px;}
.yd2{bottom:948.105000px;}
.y5d{bottom:950.146500px;}
.y28e{bottom:952.866778px;}
.y28f{bottom:953.122374px;}
.y217{bottom:953.122500px;}
.y218{bottom:953.887500px;}
.y121{bottom:955.588500px;}
.ya2{bottom:963.582000px;}
.y8e{bottom:964.092637px;}
.y256{bottom:967.068600px;}
.y2ae{bottom:967.324197px;}
.y2ad{bottom:967.493395px;}
.yd1{bottom:967.579500px;}
.y3{bottom:968.430900px;}
.y5c{bottom:971.151000px;}
.y28d{bottom:972.341334px;}
.y11f{bottom:975.147000px;}
.y215{bottom:980.079000px;}
.y8d{bottom:980.590031px;}
.y216{bottom:980.845500px;}
.y120{bottom:981.780000px;}
.ya1{bottom:983.140500px;}
.y255{bottom:986.541957px;}
.yd0{bottom:987.138000px;}
.y5b{bottom:992.155500px;}
.y11e{bottom:994.620000px;}
.y11c{bottom:994.621500px;}
.y8c{bottom:997.087425px;}
.y254{bottom:1000.828978px;}
.y11d{bottom:1001.253000px;}
.y2{bottom:1002.189000px;}
.ya0{bottom:1002.615000px;}
.ycf{bottom:1006.611000px;}
.y213{bottom:1007.122500px;}
.y214{bottom:1007.887500px;}
.y5a{bottom:1013.074500px;}
.y8b{bottom:1013.584819px;}
.y11b{bottom:1014.094500px;}
.y253{bottom:1015.116000px;}
.y28c{bottom:1020.303535px;}
.y9f{bottom:1022.089500px;}
.y8a{bottom:1030.082212px;}
.yce{bottom:1032.122925px;}
.y119{bottom:1033.653000px;}
.y59{bottom:1034.079000px;}
.y252{bottom:1034.589356px;}
.y212{bottom:1034.845500px;}
.y1{bottom:1035.949500px;}
.y11a{bottom:1040.286000px;}
.y9e{bottom:1041.562500px;}
.y88{bottom:1046.579606px;}
.y89{bottom:1046.920402px;}
.y251{bottom:1048.791179px;}
.y1ef{bottom:1058.569500px;}
.ycd{bottom:1059.079500px;}
.y58{bottom:1059.591000px;}
.y9d{bottom:1061.121000px;}
.y1ea{bottom:1061.886000px;}
.y87{bottom:1063.077000px;}
.y16e{bottom:1067.754000px;}
.y30{bottom:1107.042000px;}
.y84{bottom:1114.101000px;}
.y86{bottom:1118.692500px;}
.h10{height:18.538650px;}
.h1a{height:23.996250px;}
.h4{height:27.932275px;}
.h16{height:28.476725px;}
.h15{height:28.716697px;}
.h13{height:29.996550px;}
.h9{height:34.781100px;}
.hc{height:34.968313px;}
.h14{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.he{height:39.119511px;}
.hd{height:40.559493px;}
.h1b{height:41.272922px;}
.h3{height:41.904000px;}
.h8{height:44.175000px;}
.hb{height:45.000000px;}
.h19{height:46.500000px;}
.h11{height:52.800000px;}
.h7{height:53.543069px;}
.h12{height:53.999550px;}
.hf{height:55.871534px;}
.h6{height:70.905000px;}
.h17{height:87.306000px;}
.h18{height:87.654000px;}
.h2{height:88.020000px;}
.ha{height:99.071616px;}
.h0{height:1188.000000px;}
.w2{width:84.784200px;}
.w1{width:160.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:52.044150px;}
.x17{left:54.000000px;}
.x18{left:71.433000px;}
.x20{left:102.472194px;}
.x19{left:104.598185px;}
.x21{left:135.637380px;}
.x1c{left:147.882844px;}
.x5c{left:158.428500px;}
.x1f{left:194.993438px;}
.x1b{left:196.269840px;}
.x3c{left:199.077000px;}
.x25{left:236.919000px;}
.x1a{left:238.108517px;}
.x4b{left:259.200000px;}
.x53{left:276.463500px;}
.x4e{left:277.908000px;}
.x1{left:300.018000px;}
.x70{left:307.332000px;}
.x1d{left:317.961000px;}
.x71{left:332.247289px;}
.x72{left:340.071191px;}
.x79{left:344.068341px;}
.x38{left:349.341000px;}
.x2{left:354.356850px;}
.x39{left:356.314500px;}
.x3f{left:364.224000px;}
.x76{left:385.142627px;}
.x40{left:388.035000px;}
.xb{left:389.140500px;}
.x14{left:390.328871px;}
.x3a{left:391.861500px;}
.xc{left:394.668000px;}
.x3b{left:402.235500px;}
.x13{left:405.040687px;}
.x4c{left:421.369500px;}
.x4d{left:425.622000px;}
.x60{left:427.407000px;}
.x6b{left:439.225500px;}
.x41{left:440.929500px;}
.x69{left:443.647500px;}
.x54{left:447.732000px;}
.x36{left:449.436000px;}
.x6a{left:455.128500px;}
.x42{left:468.822000px;}
.x3{left:471.798000px;}
.x6c{left:475.452000px;}
.x73{left:480.216239px;}
.x61{left:481.578000px;}
.x4{left:485.659500px;}
.x23{left:491.697000px;}
.x2a{left:502.413000px;}
.x24{left:504.283500px;}
.x77{left:506.067516px;}
.x62{left:509.470500px;}
.xd{left:514.402500px;}
.x2b{left:516.868500px;}
.x7b{left:523.074903px;}
.x55{left:526.479000px;}
.xe{left:528.264000px;}
.x58{left:531.070500px;}
.x4f{left:532.516500px;}
.x2c{left:533.875500px;}
.x50{left:536.257500px;}
.x56{left:537.703500px;}
.x45{left:541.020000px;}
.x63{left:549.609000px;}
.x59{left:551.565000px;}
.x67{left:559.134000px;}
.x6d{left:566.443500px;}
.x6e{left:567.975000px;}
.x64{left:570.189000px;}
.x46{left:574.015500px;}
.x7e{left:576.991047px;}
.x30{left:580.903500px;}
.x68{left:583.710000px;}
.x1e{left:587.026500px;}
.x44{left:589.492500px;}
.x5{left:596.975100px;}
.x7f{left:598.505578px;}
.x37{left:599.613000px;}
.x26{left:602.163000px;}
.x65{left:603.780000px;}
.x31{left:605.481000px;}
.x4a{left:607.351500px;}
.x47{left:610.752000px;}
.x2d{left:611.943000px;}
.x6{left:615.855000px;}
.x2e{left:617.215500px;}
.x74{left:619.084503px;}
.x66{left:628.356000px;}
.x7{left:629.716500px;}
.x15{left:634.135823px;}
.x80{left:639.749063px;}
.x78{left:642.299413px;}
.x75{left:655.651646px;}
.xf{left:658.204500px;}
.x48{left:663.646500px;}
.x10{left:672.403345px;}
.x7c{left:685.245294px;}
.x49{left:688.308000px;}
.x81{left:690.942823px;}
.x43{left:696.813000px;}
.x5a{left:710.758500px;}
.x3d{left:718.837500px;}
.x51{left:720.708000px;}
.x52{left:728.277000px;}
.x8{left:729.552000px;}
.x3e{left:733.380000px;}
.x9{left:735.079500px;}
.x5b{left:738.652500px;}
.x6f{left:742.729500px;}
.x2f{left:744.349500px;}
.x7d{left:748.344105px;}
.x5e{left:749.962500px;}
.x5f{left:754.213500px;}
.xa{left:765.098100px;}
.x22{left:768.070500px;}
.x28{left:774.198000px;}
.x5d{left:780.742500px;}
.x29{left:788.655000px;}
.x34{left:797.329500px;}
.x12{left:799.961751px;}
.x35{left:804.897000px;}
.x7a{left:807.956142px;}
.x11{left:812.887989px;}
.x32{left:826.242000px;}
.x57{left:827.346000px;}
.x33{left:830.494500px;}
.x27{left:839.169000px;}
@media print{
.v7{vertical-align:-13.301333pt;}
.v8{vertical-align:-9.373749pt;}
.v2{vertical-align:-6.952533pt;}
.v3{vertical-align:-5.445333pt;}
.v4{vertical-align:-2.720000pt;}
.v1{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:22.970667pt;}
.v5{vertical-align:36.272000pt;}
.ls9{letter-spacing:-1.123200pt;}
.lse{letter-spacing:-1.067200pt;}
.ls12{letter-spacing:-1.066653pt;}
.ls13{letter-spacing:-0.319996pt;}
.lsf{letter-spacing:-0.214663pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.213331pt;}
.ls10{letter-spacing:-0.212800pt;}
.lsb{letter-spacing:-0.211997pt;}
.lsa{letter-spacing:-0.211200pt;}
.ls15{letter-spacing:-0.211198pt;}
.ls2a{letter-spacing:-0.190548pt;}
.lsc{letter-spacing:-0.188775pt;}
.ls1a{letter-spacing:-0.188423pt;}
.lsd{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.698667pt;}
.ls33{letter-spacing:1.002667pt;}
.ls1d{letter-spacing:1.008000pt;}
.ls7{letter-spacing:1.211718pt;}
.ls5{letter-spacing:1.514648pt;}
.ls14{letter-spacing:2.423436pt;}
.ls16{letter-spacing:2.821333pt;}
.ls24{letter-spacing:3.264677pt;}
.ls3{letter-spacing:4.236747pt;}
.ls35{letter-spacing:4.535410pt;}
.ls2{letter-spacing:4.539677pt;}
.ls0{letter-spacing:4.881600pt;}
.ls36{letter-spacing:6.954580pt;}
.ls6{letter-spacing:8.396695pt;}
.ls37{letter-spacing:8.712424pt;}
.ls25{letter-spacing:8.794667pt;}
.ls34{letter-spacing:9.104953pt;}
.ls4{letter-spacing:9.232951pt;}
.ls2f{letter-spacing:9.480415pt;}
.ls2e{letter-spacing:11.370667pt;}
.ls27{letter-spacing:11.397333pt;}
.ls32{letter-spacing:11.445333pt;}
.ls1c{letter-spacing:11.456000pt;}
.ls2b{letter-spacing:11.541333pt;}
.ls29{letter-spacing:11.578667pt;}
.ls26{letter-spacing:11.605333pt;}
.ls17{letter-spacing:11.610667pt;}
.ls2c{letter-spacing:11.642667pt;}
.ls31{letter-spacing:11.648000pt;}
.ls1e{letter-spacing:11.664000pt;}
.ls2d{letter-spacing:11.669333pt;}
.ls1b{letter-spacing:11.685333pt;}
.ls28{letter-spacing:11.701333pt;}
.ls19{letter-spacing:11.749333pt;}
.ls21{letter-spacing:11.786667pt;}
.ls23{letter-spacing:11.845333pt;}
.ls18{letter-spacing:11.989333pt;}
.ls1f{letter-spacing:15.888357pt;}
.ls1{letter-spacing:18.474436pt;}
.ls20{letter-spacing:39.877333pt;}
.wsd1{word-spacing:-53.333333pt;}
.wsce{word-spacing:-38.464000pt;}
.ws2b{word-spacing:-33.023872pt;}
.wscd{word-spacing:-26.666667pt;}
.ws2f{word-spacing:-22.442386pt;}
.wsfb{word-spacing:-14.944000pt;}
.ws100{word-spacing:-14.938667pt;}
.wsfa{word-spacing:-14.880000pt;}
.wsdc{word-spacing:-14.853333pt;}
.ws96{word-spacing:-14.848000pt;}
.ws94{word-spacing:-14.842667pt;}
.ws85{word-spacing:-14.837333pt;}
.wsdb{word-spacing:-14.832000pt;}
.wse3{word-spacing:-14.826667pt;}
.ws106{word-spacing:-14.816000pt;}
.wsd9{word-spacing:-14.789333pt;}
.wsda{word-spacing:-14.768000pt;}
.wse7{word-spacing:-14.698667pt;}
.wsdd{word-spacing:-14.693333pt;}
.wsa7{word-spacing:-14.640000pt;}
.ws99{word-spacing:-14.549333pt;}
.wsf8{word-spacing:-14.544000pt;}
.ws8a{word-spacing:-14.538667pt;}
.wsf7{word-spacing:-14.528000pt;}
.ws110{word-spacing:-14.517333pt;}
.wse5{word-spacing:-14.501333pt;}
.ws7{word-spacing:-13.488000pt;}
.ws5{word-spacing:-13.276800pt;}
.ws102{word-spacing:-12.213333pt;}
.ws10{word-spacing:-11.989183pt;}
.ws17{word-spacing:-11.775853pt;}
.ws32{word-spacing:-10.666533pt;}
.ws49{word-spacing:-10.346537pt;}
.ws3a{word-spacing:-9.599880pt;}
.ws9e{word-spacing:-3.961567pt;}
.ws118{word-spacing:-3.763169pt;}
.ws1e{word-spacing:-3.698336pt;}
.ws113{word-spacing:-3.628770pt;}
.ws137{word-spacing:-3.144494pt;}
.ws17e{word-spacing:-3.140227pt;}
.ws17d{word-spacing:-3.127428pt;}
.ws17c{word-spacing:-3.093295pt;}
.ws1c{word-spacing:-3.075467pt;}
.ws178{word-spacing:-3.050629pt;}
.ws13f{word-spacing:-3.025029pt;}
.ws15d{word-spacing:-3.016496pt;}
.ws24{word-spacing:-3.014667pt;}
.ws179{word-spacing:-3.007962pt;}
.ws15f{word-spacing:-3.003696pt;}
.ws167{word-spacing:-2.969563pt;}
.wsb{word-spacing:-2.966400pt;}
.ws15{word-spacing:-2.965296pt;}
.ws149{word-spacing:-2.956763pt;}
.ws1d{word-spacing:-2.953867pt;}
.ws165{word-spacing:-2.952496pt;}
.ws150{word-spacing:-2.948230pt;}
.ws16c{word-spacing:-2.939697pt;}
.ws16b{word-spacing:-2.935430pt;}
.ws136{word-spacing:-2.931163pt;}
.ws13c{word-spacing:-2.926897pt;}
.ws26{word-spacing:-2.923467pt;}
.ws164{word-spacing:-2.922630pt;}
.ws151{word-spacing:-2.918364pt;}
.ws144{word-spacing:-2.914097pt;}
.ws27{word-spacing:-2.913333pt;}
.ws17b{word-spacing:-2.909830pt;}
.ws17f{word-spacing:-2.905564pt;}
.wsf{word-spacing:-2.901297pt;}
.ws175{word-spacing:-2.897030pt;}
.ws1b{word-spacing:-2.893067pt;}
.ws12{word-spacing:-2.892764pt;}
.ws132{word-spacing:-2.888497pt;}
.wse{word-spacing:-2.884231pt;}
.ws127{word-spacing:-2.879964pt;}
.ws14{word-spacing:-2.871431pt;}
.ws16e{word-spacing:-2.867164pt;}
.ws135{word-spacing:-2.862898pt;}
.ws163{word-spacing:-2.858631pt;}
.ws14c{word-spacing:-2.854364pt;}
.ws25{word-spacing:-2.847467pt;}
.wsc{word-spacing:-2.846400pt;}
.ws140{word-spacing:-2.845831pt;}
.ws12e{word-spacing:-2.841564pt;}
.ws153{word-spacing:-2.837298pt;}
.ws15a{word-spacing:-2.828765pt;}
.ws28{word-spacing:-2.827200pt;}
.ws141{word-spacing:-2.824498pt;}
.ws4{word-spacing:-2.822400pt;}
.ws160{word-spacing:-2.820231pt;}
.ws8{word-spacing:-2.817600pt;}
.wsf6{word-spacing:-2.815965pt;}
.ws1a{word-spacing:-2.812000pt;}
.ws15e{word-spacing:-2.811698pt;}
.ws2e{word-spacing:-2.807432pt;}
.ws13d{word-spacing:-2.803165pt;}
.ws19{word-spacing:-2.801867pt;}
.ws159{word-spacing:-2.798898pt;}
.ws56{word-spacing:-2.796800pt;}
.ws171{word-spacing:-2.794632pt;}
.ws156{word-spacing:-2.786099pt;}
.wscf{word-spacing:-2.784000pt;}
.ws11{word-spacing:-2.781832pt;}
.ws2c{word-spacing:-2.777565pt;}
.ws12d{word-spacing:-2.773299pt;}
.wsd{word-spacing:-2.769600pt;}
.ws173{word-spacing:-2.769032pt;}
.ws176{word-spacing:-2.760499pt;}
.ws20{word-spacing:-2.756267pt;}
.ws177{word-spacing:-2.747699pt;}
.ws2{word-spacing:-2.745600pt;}
.ws152{word-spacing:-2.743432pt;}
.ws16d{word-spacing:-2.730633pt;}
.ws134{word-spacing:-2.726366pt;}
.ws15c{word-spacing:-2.722099pt;}
.ws145{word-spacing:-2.717833pt;}
.ws6{word-spacing:-2.716800pt;}
.ws13{word-spacing:-2.713566pt;}
.ws133{word-spacing:-2.709299pt;}
.ws1{word-spacing:-2.707200pt;}
.ws16{word-spacing:-2.700766pt;}
.ws14e{word-spacing:-2.683700pt;}
.ws148{word-spacing:-2.679433pt;}
.ws14b{word-spacing:-2.675167pt;}
.wsa{word-spacing:-2.673600pt;}
.ws157{word-spacing:-2.670900pt;}
.ws9{word-spacing:-2.668800pt;}
.ws13b{word-spacing:-2.666633pt;}
.ws15b{word-spacing:-2.658100pt;}
.ws143{word-spacing:-2.653833pt;}
.ws16f{word-spacing:-2.645300pt;}
.ws12f{word-spacing:-2.641034pt;}
.ws154{word-spacing:-2.632500pt;}
.ws12b{word-spacing:-2.628234pt;}
.ws168{word-spacing:-2.615434pt;}
.ws139{word-spacing:-2.611167pt;}
.ws21{word-spacing:-2.609333pt;}
.ws13a{word-spacing:-2.602634pt;}
.ws12c{word-spacing:-2.589834pt;}
.ws18{word-spacing:-2.589067pt;}
.ws129{word-spacing:-2.585568pt;}
.ws23{word-spacing:-2.578933pt;}
.ws128{word-spacing:-2.572768pt;}
.ws13e{word-spacing:-2.568501pt;}
.ws155{word-spacing:-2.555701pt;}
.ws147{word-spacing:-2.551435pt;}
.ws29{word-spacing:-2.533333pt;}
.ws174{word-spacing:-2.530102pt;}
.ws2a{word-spacing:-2.528267pt;}
.ws16a{word-spacing:-2.517302pt;}
.ws138{word-spacing:-2.500235pt;}
.ws130{word-spacing:-2.483169pt;}
.ws161{word-spacing:-2.478902pt;}
.ws22{word-spacing:-2.477600pt;}
.ws12a{word-spacing:-2.470369pt;}
.ws126{word-spacing:-2.461836pt;}
.ws146{word-spacing:-2.457569pt;}
.ws166{word-spacing:-2.444769pt;}
.ws14d{word-spacing:-2.440503pt;}
.ws17a{word-spacing:-2.423436pt;}
.ws169{word-spacing:-2.419170pt;}
.ws158{word-spacing:-2.414903pt;}
.ws131{word-spacing:-2.385037pt;}
.ws170{word-spacing:-2.359437pt;}
.ws0{word-spacing:-2.355171pt;}
.ws162{word-spacing:-2.350904pt;}
.ws172{word-spacing:-2.342371pt;}
.ws3{word-spacing:-2.332800pt;}
.ws1f{word-spacing:-2.290133pt;}
.ws142{word-spacing:-2.244239pt;}
.ws180{word-spacing:-2.239972pt;}
.ws48{word-spacing:-1.356783pt;}
.ws45{word-spacing:-1.343983pt;}
.ws44{word-spacing:-1.309850pt;}
.ws47{word-spacing:-1.254384pt;}
.ws43{word-spacing:-1.198918pt;}
.ws46{word-spacing:-1.006921pt;}
.ws7d{word-spacing:-0.874656pt;}
.ws81{word-spacing:-0.823456pt;}
.ws50{word-spacing:-0.814923pt;}
.ws4a{word-spacing:-0.793590pt;}
.ws3e{word-spacing:-0.780790pt;}
.ws39{word-spacing:-0.763724pt;}
.wse0{word-spacing:-0.752000pt;}
.wsbb{word-spacing:-0.746667pt;}
.ws7a{word-spacing:-0.746657pt;}
.wsa4{word-spacing:-0.730667pt;}
.ws10c{word-spacing:-0.729591pt;}
.ws52{word-spacing:-0.725324pt;}
.ws109{word-spacing:-0.721058pt;}
.ws4f{word-spacing:-0.716791pt;}
.ws37{word-spacing:-0.703991pt;}
.wsf5{word-spacing:-0.699725pt;}
.wsec{word-spacing:-0.698667pt;}
.wsa2{word-spacing:-0.688000pt;}
.ws41{word-spacing:-0.674125pt;}
.ws38{word-spacing:-0.669858pt;}
.ws3c{word-spacing:-0.665592pt;}
.ws40{word-spacing:-0.661325pt;}
.ws77{word-spacing:-0.657058pt;}
.ws36{word-spacing:-0.652792pt;}
.ws10b{word-spacing:-0.648525pt;}
.ws4e{word-spacing:-0.635725pt;}
.ws3d{word-spacing:-0.631459pt;}
.ws5a{word-spacing:-0.624000pt;}
.wsfe{word-spacing:-0.622926pt;}
.ws42{word-spacing:-0.614392pt;}
.ws10e{word-spacing:-0.610126pt;}
.wsa1{word-spacing:-0.608000pt;}
.ws82{word-spacing:-0.601592pt;}
.ws51{word-spacing:-0.597326pt;}
.ws10a{word-spacing:-0.588793pt;}
.ws80{word-spacing:-0.580259pt;}
.ws7b{word-spacing:-0.575993pt;}
.ws34{word-spacing:-0.567460pt;}
.ws103{word-spacing:-0.565333pt;}
.ws4b{word-spacing:-0.563193pt;}
.wsee{word-spacing:-0.560000pt;}
.wse1{word-spacing:-0.554667pt;}
.ws30{word-spacing:-0.554660pt;}
.wsb5{word-spacing:-0.549333pt;}
.wsef{word-spacing:-0.544000pt;}
.ws53{word-spacing:-0.541860pt;}
.wsbd{word-spacing:-0.522667pt;}
.wse8{word-spacing:-0.520527pt;}
.ws3b{word-spacing:-0.507727pt;}
.wsf4{word-spacing:-0.499194pt;}
.wsf3{word-spacing:-0.494927pt;}
.wsfd{word-spacing:-0.482127pt;}
.ws78{word-spacing:-0.477861pt;}
.ws3f{word-spacing:-0.469327pt;}
.wsc5{word-spacing:-0.464000pt;}
.ws7e{word-spacing:-0.460794pt;}
.ws83{word-spacing:-0.458667pt;}
.ws8d{word-spacing:-0.453333pt;}
.wsaf{word-spacing:-0.448000pt;}
.ws4d{word-spacing:-0.443728pt;}
.ws101{word-spacing:-0.442667pt;}
.ws79{word-spacing:-0.439461pt;}
.ws59{word-spacing:-0.421333pt;}
.ws75{word-spacing:-0.416000pt;}
.ws4c{word-spacing:-0.409595pt;}
.ws104{word-spacing:-0.405333pt;}
.ws7c{word-spacing:-0.401062pt;}
.wsff{word-spacing:-0.400000pt;}
.wseb{word-spacing:-0.394667pt;}
.wsb7{word-spacing:-0.392528pt;}
.wsc0{word-spacing:-0.389333pt;}
.wsb9{word-spacing:-0.388262pt;}
.ws6b{word-spacing:-0.384000pt;}
.ws90{word-spacing:-0.378667pt;}
.wsa6{word-spacing:-0.373333pt;}
.wsb8{word-spacing:-0.371195pt;}
.wsd5{word-spacing:-0.368000pt;}
.wsa3{word-spacing:-0.362667pt;}
.wsc6{word-spacing:-0.357333pt;}
.ws35{word-spacing:-0.354129pt;}
.ws95{word-spacing:-0.352000pt;}
.ws92{word-spacing:-0.346667pt;}
.ws87{word-spacing:-0.341333pt;}
.ws5c{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.330667pt;}
.ws67{word-spacing:-0.325333pt;}
.ws60{word-spacing:-0.320000pt;}
.ws54{word-spacing:-0.315729pt;}
.wsad{word-spacing:-0.314667pt;}
.ws31{word-spacing:-0.311463pt;}
.ws73{word-spacing:-0.309333pt;}
.ws7f{word-spacing:-0.307196pt;}
.ws5d{word-spacing:-0.304000pt;}
.ws88{word-spacing:-0.298667pt;}
.ws64{word-spacing:-0.293333pt;}
.ws93{word-spacing:-0.288000pt;}
.ws62{word-spacing:-0.282667pt;}
.wsc1{word-spacing:-0.277333pt;}
.ws9b{word-spacing:-0.272000pt;}
.ws117{word-spacing:-0.266667pt;}
.ws84{word-spacing:-0.261333pt;}
.ws91{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.255997pt;}
.ws5f{word-spacing:-0.250667pt;}
.ws61{word-spacing:-0.245333pt;}
.wsd3{word-spacing:-0.240000pt;}
.ws89{word-spacing:-0.234667pt;}
.wsea{word-spacing:-0.229333pt;}
.ws68{word-spacing:-0.224000pt;}
.ws71{word-spacing:-0.218667pt;}
.wse4{word-spacing:-0.213333pt;}
.ws108{word-spacing:-0.209064pt;}
.ws58{word-spacing:-0.208000pt;}
.ws65{word-spacing:-0.202667pt;}
.wse9{word-spacing:-0.200531pt;}
.ws63{word-spacing:-0.197333pt;}
.ws111{word-spacing:-0.192000pt;}
.ws9a{word-spacing:-0.186667pt;}
.ws98{word-spacing:-0.181333pt;}
.ws86{word-spacing:-0.176000pt;}
.ws6d{word-spacing:-0.170667pt;}
.ws8e{word-spacing:-0.165333pt;}
.ws105{word-spacing:-0.160000pt;}
.ws5b{word-spacing:-0.154667pt;}
.wsbc{word-spacing:-0.149333pt;}
.ws9d{word-spacing:-0.144000pt;}
.ws6c{word-spacing:-0.138667pt;}
.wsae{word-spacing:-0.133333pt;}
.wsac{word-spacing:-0.128000pt;}
.wsaa{word-spacing:-0.122667pt;}
.wsa5{word-spacing:-0.117333pt;}
.wsb0{word-spacing:-0.106667pt;}
.ws10f{word-spacing:-0.096000pt;}
.wsc2{word-spacing:-0.090667pt;}
.wsbf{word-spacing:-0.085333pt;}
.ws74{word-spacing:-0.080000pt;}
.wsde{word-spacing:-0.074667pt;}
.wsf2{word-spacing:-0.072532pt;}
.wsab{word-spacing:-0.069333pt;}
.ws9c{word-spacing:-0.064000pt;}
.wsf9{word-spacing:-0.058667pt;}
.ws70{word-spacing:-0.053333pt;}
.wsd4{word-spacing:-0.051199pt;}
.wsc4{word-spacing:-0.048000pt;}
.ws10d{word-spacing:-0.046933pt;}
.ws6a{word-spacing:-0.042667pt;}
.ws6f{word-spacing:-0.037333pt;}
.wsc7{word-spacing:-0.032000pt;}
.wscc{word-spacing:-0.021333pt;}
.wsd8{word-spacing:-0.016000pt;}
.wsa0{word-spacing:-0.010667pt;}
.wsc9{word-spacing:-0.005333pt;}
.ws55{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.005333pt;}
.ws72{word-spacing:0.010667pt;}
.wse2{word-spacing:0.021333pt;}
.wsca{word-spacing:0.026667pt;}
.wsb6{word-spacing:0.029866pt;}
.wsa8{word-spacing:0.037333pt;}
.ws8f{word-spacing:0.042667pt;}
.ws107{word-spacing:0.048000pt;}
.ws66{word-spacing:0.053333pt;}
.ws76{word-spacing:0.058667pt;}
.ws97{word-spacing:0.074667pt;}
.wsd7{word-spacing:0.080000pt;}
.ws11a{word-spacing:0.085333pt;}
.wscb{word-spacing:0.090667pt;}
.ws8b{word-spacing:0.096000pt;}
.wsb4{word-spacing:0.101333pt;}
.wsb2{word-spacing:0.106667pt;}
.ws5e{word-spacing:0.112000pt;}
.wse6{word-spacing:0.117333pt;}
.ws57{word-spacing:0.122667pt;}
.ws9f{word-spacing:0.127999pt;}
.ws8c{word-spacing:0.128000pt;}
.ws112{word-spacing:0.133333pt;}
.wsdf{word-spacing:0.138667pt;}
.wsf1{word-spacing:0.149331pt;}
.wsba{word-spacing:0.153599pt;}
.wsf0{word-spacing:0.160000pt;}
.wsbe{word-spacing:0.176000pt;}
.wsb3{word-spacing:0.181333pt;}
.ws11d{word-spacing:0.186667pt;}
.wsed{word-spacing:0.211198pt;}
.wsa9{word-spacing:0.217598pt;}
.wsc3{word-spacing:0.236798pt;}
.wsd6{word-spacing:0.255998pt;}
.wsc8{word-spacing:0.256000pt;}
.ws6e{word-spacing:0.266667pt;}
.ws124{word-spacing:0.304000pt;}
.wsfc{word-spacing:0.332796pt;}
.ws116{word-spacing:0.336000pt;}
.ws115{word-spacing:0.362667pt;}
.ws114{word-spacing:0.384000pt;}
.ws11b{word-spacing:0.426667pt;}
.ws11c{word-spacing:0.592000pt;}
.ws121{word-spacing:0.629333pt;}
.ws11e{word-spacing:0.677333pt;}
.ws120{word-spacing:0.800000pt;}
.ws11f{word-spacing:0.869333pt;}
.ws123{word-spacing:0.906667pt;}
.ws122{word-spacing:0.912000pt;}
.ws119{word-spacing:1.029333pt;}
.wsd0{word-spacing:29.018667pt;}
.ws2d{word-spacing:30.745216pt;}
.ws14a{word-spacing:41.637880pt;}
.ws14f{word-spacing:41.642146pt;}
.ws125{word-spacing:41.697612pt;}
.wsd2{word-spacing:478.026667pt;}
._10{margin-left:-18.764565pt;}
._7{margin-left:-7.485411pt;}
._a{margin-left:-4.290146pt;}
._6{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._2{width:3.357867pt;}
._b{width:8.383895pt;}
._3{width:9.830277pt;}
._5{width:10.756533pt;}
._4{width:12.408267pt;}
._9{width:13.429333pt;}
._d{width:15.007875pt;}
._e{width:18.568301pt;}
._f{width:19.541089pt;}
._1{width:22.339200pt;}
._c{width:1272.342496pt;}
._8{width:1295.305408pt;}
.fse{font-size:28.440000pt;}
.fs4{font-size:31.995733pt;}
.fsd{font-size:31.998933pt;}
.fsc{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs6{font-size:61.332267pt;}
.fsa{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs8{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:4.033333pt;}
.y31{bottom:7.567971pt;}
.y32{bottom:48.000000pt;}
.y1ed{bottom:109.001467pt;}
.y2f{bottom:110.665333pt;}
.y14a{bottom:110.666667pt;}
.y57{bottom:110.666806pt;}
.y83{bottom:110.668000pt;}
.y17c{bottom:110.669333pt;}
.y1ee{bottom:111.193600pt;}
.y250{bottom:111.196209pt;}
.y1ec{bottom:111.200000pt;}
.y1e5{bottom:117.016000pt;}
.y210{bottom:117.316533pt;}
.y211{bottom:117.996533pt;}
.y2ac{bottom:118.303133pt;}
.y198{bottom:119.584000pt;}
.y24f{bottom:123.895783pt;}
.y113{bottom:124.120000pt;}
.y56{bottom:125.331156pt;}
.y28b{bottom:126.315833pt;}
.y169{bottom:127.974667pt;}
.yfa{bottom:127.976000pt;}
.y82{bottom:127.978667pt;}
.ycc{bottom:128.509333pt;}
.y2e{bottom:129.336000pt;}
.y2ab{bottom:130.926976pt;}
.y1e4{bottom:134.401333pt;}
.y197{bottom:136.894667pt;}
.y28a{bottom:138.939675pt;}
.y20f{bottom:139.993333pt;}
.y55{bottom:139.995506pt;}
.y24e{bottom:141.205434pt;}
.y112{bottom:141.430667pt;}
.y167{bottom:143.093333pt;}
.y2aa{bottom:143.626550pt;}
.y168{bottom:145.360000pt;}
.yf9{bottom:145.361333pt;}
.y149{bottom:145.362667pt;}
.y81{bottom:145.364000pt;}
.ycb{bottom:145.894667pt;}
.y2d{bottom:148.006667pt;}
.y289{bottom:151.638183pt;}
.y1e3{bottom:151.712000pt;}
.y195{bottom:152.012000pt;}
.y24d{bottom:153.905008pt;}
.y196{bottom:154.204000pt;}
.y194{bottom:154.205333pt;}
.y111{bottom:158.740000pt;}
.y2a9{bottom:160.936200pt;}
.yf8{bottom:162.672000pt;}
.y54{bottom:162.672556pt;}
.y80{bottom:162.674667pt;}
.yca{bottom:163.205333pt;}
.y24c{bottom:166.528850pt;}
.y2c{bottom:166.677333pt;}
.y288{bottom:168.948900pt;}
.y1e2{bottom:169.021333pt;}
.y193{bottom:169.322667pt;}
.y192{bottom:171.590667pt;}
.y2a8{bottom:173.635775pt;}
.y110{bottom:176.125333pt;}
.y10e{bottom:176.129333pt;}
.y53{bottom:177.337973pt;}
.y1a9{bottom:177.789333pt;}
.yf7{bottom:179.981333pt;}
.y148{bottom:179.982667pt;}
.y7f{bottom:179.985333pt;}
.yc9{bottom:180.516000pt;}
.y287{bottom:181.648475pt;}
.y10f{bottom:182.022667pt;}
.y24b{bottom:183.838501pt;}
.y1e1{bottom:184.138667pt;}
.y166{bottom:184.289333pt;}
.y20e{bottom:185.046667pt;}
.y2b{bottom:185.348000pt;}
.y2a7{bottom:186.258551pt;}
.y1e0{bottom:186.406667pt;}
.y191{bottom:188.901333pt;}
.y52{bottom:192.002323pt;}
.y10d{bottom:193.438667pt;}
.y286{bottom:194.271250pt;}
.y24a{bottom:196.538075pt;}
.y1a8{bottom:197.366667pt;}
.yf6{bottom:197.368000pt;}
.y7e{bottom:197.370667pt;}
.yc8{bottom:197.901333pt;}
.y1de{bottom:201.524000pt;}
.y20d{bottom:202.432000pt;}
.y1c0{bottom:202.658667pt;}
.y2a6{bottom:203.645000pt;}
.y1df{bottom:203.716000pt;}
.y1dd{bottom:203.718667pt;}
.y2a{bottom:204.018667pt;}
.y190{bottom:206.210667pt;}
.y18f{bottom:206.212000pt;}
.y51{bottom:206.666673pt;}
.y10c{bottom:210.749333pt;}
.y285{bottom:211.657700pt;}
.y249{bottom:213.847726pt;}
.yf5{bottom:214.677333pt;}
.y147{bottom:214.678667pt;}
.y7d{bottom:214.680000pt;}
.y17b{bottom:214.681333pt;}
.yc7{bottom:215.210667pt;}
.y2a5{bottom:216.268842pt;}
.y20b{bottom:217.549333pt;}
.y20c{bottom:219.741333pt;}
.y20a{bottom:219.742667pt;}
.y1dc{bottom:221.029333pt;}
.y18d{bottom:221.329333pt;}
.y50{bottom:221.331023pt;}
.y29{bottom:222.689333pt;}
.y18e{bottom:223.597333pt;}
.y18c{bottom:223.598667pt;}
.y284{bottom:224.280475pt;}
.y248{bottom:226.547300pt;}
.y10b{bottom:228.060000pt;}
.y2a4{bottom:228.967350pt;}
.y1a7{bottom:231.986667pt;}
.yf4{bottom:231.988000pt;}
.y7c{bottom:231.990667pt;}
.yc6{bottom:232.521333pt;}
.y4e{bottom:235.995373pt;}
.y165{bottom:235.996000pt;}
.y4f{bottom:236.298302pt;}
.y209{bottom:237.052000pt;}
.y1db{bottom:238.414667pt;}
.y247{bottom:239.171142pt;}
.y18b{bottom:240.908000pt;}
.y283{bottom:241.666925pt;}
.y1bf{bottom:243.780000pt;}
.y28{bottom:245.366667pt;}
.y10a{bottom:245.445333pt;}
.yf3{bottom:249.297333pt;}
.y146{bottom:249.298667pt;}
.y7b{bottom:249.301333pt;}
.yc5{bottom:249.906667pt;}
.y164{bottom:253.381333pt;}
.y282{bottom:254.289700pt;}
.y1a6{bottom:254.664000pt;}
.y1da{bottom:255.724000pt;}
.y246{bottom:256.556525pt;}
.y18a{bottom:258.218667pt;}
.y4d{bottom:258.672422pt;}
.y1bd{bottom:258.897333pt;}
.y2a3{bottom:258.976575pt;}
.y1be{bottom:261.089333pt;}
.y1bc{bottom:261.090667pt;}
.y208{bottom:262.374667pt;}
.y109{bottom:262.754667pt;}
.y145{bottom:266.684000pt;}
.y7a{bottom:266.686667pt;}
.y281{bottom:266.989275pt;}
.yc4{bottom:267.217333pt;}
.y245{bottom:269.180367pt;}
.y163{bottom:270.692000pt;}
.y2a2{bottom:271.600417pt;}
.yf2{bottom:271.974667pt;}
.y1d8{bottom:273.034667pt;}
.y189{bottom:273.334667pt;}
.y4c{bottom:273.336773pt;}
.y1d9{bottom:273.714667pt;}
.y188{bottom:275.528000pt;}
.y206{bottom:277.493333pt;}
.y1bb{bottom:278.476000pt;}
.y207{bottom:279.760000pt;}
.y205{bottom:279.762667pt;}
.y108{bottom:280.065333pt;}
.y27{bottom:281.122667pt;}
.y243{bottom:281.878875pt;}
.y244{bottom:282.106072pt;}
.y144{bottom:283.994667pt;}
.y79{bottom:283.996000pt;}
.y17a{bottom:283.997333pt;}
.y280{bottom:284.299992pt;}
.yc3{bottom:284.528000pt;}
.y4b{bottom:288.001123pt;}
.y162{bottom:288.001333pt;}
.y1d7{bottom:290.420000pt;}
.y187{bottom:290.645333pt;}
.y186{bottom:292.913333pt;}
.y1ba{bottom:295.786667pt;}
.y27f{bottom:296.998500pt;}
.y204{bottom:297.073333pt;}
.y107{bottom:297.450667pt;}
.y1a5{bottom:298.810667pt;}
.y242{bottom:299.189592pt;}
.y26{bottom:299.717333pt;}
.y142{bottom:301.304000pt;}
.y78{bottom:301.306667pt;}
.y2a1{bottom:301.609642pt;}
.yc2{bottom:301.837333pt;}
.y4a{bottom:302.666539pt;}
.y161{bottom:305.312000pt;}
.y143{bottom:307.276000pt;}
.y1d6{bottom:307.730667pt;}
.y185{bottom:310.224000pt;}
.y241{bottom:311.888100pt;}
.y1b9{bottom:313.097333pt;}
.y27e{bottom:314.309217pt;}
.y106{bottom:314.761333pt;}
.y1a4{bottom:316.121333pt;}
.y49{bottom:317.330889pt;}
.y25{bottom:318.388000pt;}
.y141{bottom:318.689333pt;}
.y77{bottom:318.692000pt;}
.y179{bottom:318.693333pt;}
.yc1{bottom:319.222667pt;}
.y203{bottom:322.396000pt;}
.y160{bottom:322.697333pt;}
.yf1{bottom:322.776000pt;}
.y1d4{bottom:322.846667pt;}
.y240{bottom:324.511942pt;}
.y1d5{bottom:325.040000pt;}
.y1d3{bottom:325.041333pt;}
.y27d{bottom:326.931992pt;}
.y184{bottom:327.534667pt;}
.y1b8{bottom:330.406667pt;}
.y48{bottom:331.995239pt;}
.y105{bottom:332.070667pt;}
.y1a3{bottom:333.430667pt;}
.y76{bottom:336.002667pt;}
.yc0{bottom:336.533333pt;}
.y24{bottom:337.058667pt;}
.y27c{bottom:339.631567pt;}
.y202{bottom:339.705333pt;}
.y15f{bottom:340.008000pt;}
.yf0{bottom:340.086667pt;}
.y140{bottom:341.366667pt;}
.y23f{bottom:341.897325pt;}
.y1d2{bottom:342.352000pt;}
.y183{bottom:344.920000pt;}
.y47{bottom:346.659589pt;}
.y1b7{bottom:347.792000pt;}
.y104{bottom:349.457333pt;}
.y1a2{bottom:350.816000pt;}
.y75{bottom:353.313333pt;}
.ybf{bottom:353.844000pt;}
.y23e{bottom:354.521167pt;}
.y23{bottom:355.729333pt;}
.y27b{bottom:356.941217pt;}
.y201{bottom:357.090667pt;}
.y15e{bottom:357.317333pt;}
.yef{bottom:357.472000pt;}
.y1d1{bottom:359.737333pt;}
.y181{bottom:360.037333pt;}
.y182{bottom:362.229333pt;}
.y180{bottom:362.230667pt;}
.y1b6{bottom:365.102667pt;}
.y103{bottom:366.766667pt;}
.y23d{bottom:367.220742pt;}
.y1a1{bottom:368.126667pt;}
.y46{bottom:369.336639pt;}
.y27a{bottom:369.640792pt;}
.y74{bottom:370.698667pt;}
.ybe{bottom:371.229333pt;}
.y1eb{bottom:371.909333pt;}
.y15d{bottom:372.434667pt;}
.y22{bottom:374.400000pt;}
.y15c{bottom:374.702667pt;}
.yee{bottom:374.781333pt;}
.y1d0{bottom:377.046667pt;}
.y17f{bottom:379.541333pt;}
.y23c{bottom:379.843517pt;}
.y13f{bottom:381.430667pt;}
.y2a0{bottom:382.264634pt;}
.y1b5{bottom:382.413333pt;}
.y102{bottom:384.077333pt;}
.y1a0{bottom:385.437333pt;}
.y279{bottom:386.951508pt;}
.y73{bottom:388.008000pt;}
.y178{bottom:388.009333pt;}
.ybd{bottom:388.540000pt;}
.y15a{bottom:389.820000pt;}
.y15b{bottom:392.012000pt;}
.y159{bottom:392.013333pt;}
.y45{bottom:392.013689pt;}
.yed{bottom:392.092000pt;}
.y23b{bottom:392.543092pt;}
.y1cf{bottom:394.357333pt;}
.y2b8{bottom:394.963142pt;}
.y17e{bottom:396.926667pt;}
.y21{bottom:397.077333pt;}
.y13e{bottom:398.740000pt;}
.y278{bottom:399.650016pt;}
.y200{bottom:399.724000pt;}
.y1b4{bottom:399.798667pt;}
.y101{bottom:401.462667pt;}
.y19f{bottom:402.822667pt;}
.y72{bottom:405.318667pt;}
.ybc{bottom:405.849333pt;}
.y157{bottom:407.130667pt;}
.y2b7{bottom:407.662716pt;}
.y158{bottom:409.322667pt;}
.y156{bottom:409.324000pt;}
.yec{bottom:409.477333pt;}
.y23a{bottom:409.853809pt;}
.y1ce{bottom:411.742667pt;}
.y277{bottom:412.273859pt;}
.y17d{bottom:414.236000pt;}
.y44{bottom:414.690739pt;}
.y13d{bottom:416.125333pt;}
.y13b{bottom:416.129333pt;}
.y1ff{bottom:417.034667pt;}
.y1b3{bottom:417.108000pt;}
.y100{bottom:418.773333pt;}
.y19e{bottom:420.132000pt;}
.y13c{bottom:422.022667pt;}
.y239{bottom:422.552317pt;}
.y71{bottom:422.704000pt;}
.ybb{bottom:423.234667pt;}
.y29f{bottom:424.972367pt;}
.y155{bottom:426.709333pt;}
.yeb{bottom:426.788000pt;}
.y1cd{bottom:429.053333pt;}
.y276{bottom:429.659241pt;}
.y20{bottom:432.832000pt;}
.y13a{bottom:433.440000pt;}
.y1fe{bottom:434.420000pt;}
.y238{bottom:435.176159pt;}
.yff{bottom:436.082667pt;}
.y43{bottom:437.367789pt;}
.y2b6{bottom:437.596209pt;}
.y1b2{bottom:439.785333pt;}
.y70{bottom:440.014667pt;}
.yba{bottom:440.545333pt;}
.y275{bottom:442.283084pt;}
.y19d{bottom:442.658868pt;}
.y154{bottom:444.020000pt;}
.yea{bottom:444.097333pt;}
.y1cc{bottom:446.364000pt;}
.y235{bottom:447.874667pt;}
.y237{bottom:448.101864pt;}
.y236{bottom:448.177596pt;}
.y1b1{bottom:448.554283pt;}
.y2b5{bottom:450.295783pt;}
.y139{bottom:450.750667pt;}
.y1f{bottom:451.502667pt;}
.yfe{bottom:453.393333pt;}
.y274{bottom:454.982658pt;}
.y6f{bottom:457.325333pt;}
.yb9{bottom:457.856000pt;}
.y1fd{bottom:459.742667pt;}
.y42{bottom:459.969106pt;}
.y153{bottom:461.330667pt;}
.ye9{bottom:461.408000pt;}
.y19c{bottom:463.371142pt;}
.y1cb{bottom:463.749333pt;}
.y234{bottom:465.185384pt;}
.y273{bottom:467.605434pt;}
.y138{bottom:468.136000pt;}
.y1b0{bottom:469.266558pt;}
.y1c5{bottom:470.022600pt;}
.y1e{bottom:470.173333pt;}
.yfd{bottom:470.778667pt;}
.y41{bottom:474.633456pt;}
.y6e{bottom:474.634667pt;}
.yb8{bottom:475.241333pt;}
.y19b{bottom:475.993917pt;}
.y1fc{bottom:477.052000pt;}
.y233{bottom:477.884958pt;}
.y152{bottom:478.716000pt;}
.ye8{bottom:478.793333pt;}
.y1ae{bottom:480.150667pt;}
.y2b4{bottom:480.305008pt;}
.y1ca{bottom:481.058667pt;}
.y1af{bottom:481.889333pt;}
.y1ad{bottom:481.891142pt;}
.y272{bottom:484.991883pt;}
.y137{bottom:485.446667pt;}
.yfc{bottom:488.089333pt;}
.y19a{bottom:488.693492pt;}
.y1d{bottom:488.844000pt;}
.y40{bottom:489.373539pt;}
.y230{bottom:490.507734pt;}
.y1c4{bottom:490.659142pt;}
.y231{bottom:490.734931pt;}
.y232{bottom:490.886396pt;}
.y6d{bottom:492.020000pt;}
.y177{bottom:492.021333pt;}
.yb7{bottom:492.550667pt;}
.y2b3{bottom:492.928850pt;}
.y1ac{bottom:494.589650pt;}
.y151{bottom:496.026667pt;}
.ye7{bottom:496.104000pt;}
.y271{bottom:497.614659pt;}
.y1c9{bottom:498.369333pt;}
.y1fb{bottom:499.729333pt;}
.y199{bottom:501.392000pt;}
.y136{bottom:502.756000pt;}
.y1c3{bottom:503.357650pt;}
.y3f{bottom:504.037889pt;}
.yfb{bottom:505.398667pt;}
.y2b2{bottom:505.627358pt;}
.y1ab{bottom:507.289224pt;}
.y1c{bottom:507.514667pt;}
.y22f{bottom:507.894183pt;}
.y6c{bottom:509.330667pt;}
.yb6{bottom:509.861333pt;}
.y270{bottom:510.314233pt;}
.y150{bottom:513.336000pt;}
.ye6{bottom:513.414667pt;}
.y1c8{bottom:515.680000pt;}
.y1c2{bottom:515.981492pt;}
.y3e{bottom:518.703305pt;}
.y1aa{bottom:519.912000pt;}
.y135{bottom:520.141333pt;}
.y22e{bottom:520.516959pt;}
.y26f{bottom:522.938075pt;}
.y1b{bottom:526.185333pt;}
.y6b{bottom:526.641333pt;}
.yb5{bottom:527.172000pt;}
.y1c1{bottom:528.680000pt;}
.y14f{bottom:530.646667pt;}
.ye5{bottom:530.800000pt;}
.y1c7{bottom:533.065333pt;}
.y22a{bottom:533.216533pt;}
.y3c{bottom:533.367655pt;}
.y22c{bottom:533.443731pt;}
.y22b{bottom:533.518396pt;}
.y3d{bottom:533.593786pt;}
.y118{bottom:533.897267pt;}
.y22d{bottom:535.559971pt;}
.y2b1{bottom:535.636583pt;}
.y1fa{bottom:536.770667pt;}
.y134{bottom:537.452000pt;}
.y26e{bottom:540.323458pt;}
.y6a{bottom:544.026667pt;}
.yb4{bottom:544.557333pt;}
.y14e{bottom:548.032000pt;}
.y39{bottom:548.032005pt;}
.ye4{bottom:548.109333pt;}
.y3b{bottom:548.258136pt;}
.y2b0{bottom:548.260425pt;}
.y3a{bottom:548.333868pt;}
.y1a{bottom:548.862667pt;}
.y1c6{bottom:550.374667pt;}
.y229{bottom:550.526184pt;}
.y26d{bottom:552.947300pt;}
.y1f9{bottom:554.156000pt;}
.y117{bottom:554.533809pt;}
.y133{bottom:554.762667pt;}
.y69{bottom:561.336000pt;}
.y176{bottom:561.337333pt;}
.yb3{bottom:561.868000pt;}
.y228{bottom:563.225758pt;}
.y14d{bottom:565.342667pt;}
.ye3{bottom:565.420000pt;}
.y26c{bottom:565.645808pt;}
.y116{bottom:567.232317pt;}
.y38{bottom:569.801333pt;}
.y1f8{bottom:571.466667pt;}
.y132{bottom:572.148000pt;}
.y227{bottom:575.849601pt;}
.y26b{bottom:578.269650pt;}
.y68{bottom:578.646667pt;}
.y1e9{bottom:578.874174pt;}
.yb2{bottom:579.177333pt;}
.y115{bottom:579.931891pt;}
.y14c{bottom:582.652000pt;}
.ye2{bottom:582.805333pt;}
.y29e{bottom:582.956525pt;}
.y1f7{bottom:588.777333pt;}
.y131{bottom:589.458667pt;}
.y2af{bottom:590.969225pt;}
.y114{bottom:592.554667pt;}
.y226{bottom:593.234983pt;}
.y19{bottom:595.276000pt;}
.y26a{bottom:595.655033pt;}
.y67{bottom:596.032000pt;}
.yb1{bottom:596.562667pt;}
.y1e8{bottom:599.509650pt;}
.y14b{bottom:600.037333pt;}
.ye1{bottom:600.116000pt;}
.y225{bottom:605.858825pt;}
.y1f6{bottom:606.162667pt;}
.y130{bottom:606.768000pt;}
.y269{bottom:608.278875pt;}
.y29d{bottom:608.506072pt;}
.y1e7{bottom:612.209224pt;}
.y66{bottom:613.342667pt;}
.yb0{bottom:613.873333pt;}
.ye0{bottom:617.426667pt;}
.y224{bottom:618.557333pt;}
.y175{bottom:618.634067pt;}
.y268{bottom:620.978450pt;}
.y1f5{bottom:623.472000pt;}
.y12f{bottom:624.078667pt;}
.y1e6{bottom:624.832000pt;}
.y29c{bottom:625.665325pt;}
.y16d{bottom:628.461109pt;}
.y65{bottom:630.653333pt;}
.yaf{bottom:631.184000pt;}
.y267{bottom:633.602292pt;}
.ydf{bottom:634.812000pt;}
.y223{bottom:636.548000pt;}
.y29b{bottom:638.288100pt;}
.y1f4{bottom:640.782667pt;}
.y12e{bottom:641.464000pt;}
.y174{bottom:642.670667pt;}
.y37{bottom:647.132000pt;}
.y64{bottom:647.962667pt;}
.yae{bottom:648.569333pt;}
.y18{bottom:648.870600pt;}
.y16c{bottom:649.172317pt;}
.y266{bottom:650.987675pt;}
.yde{bottom:652.121333pt;}
.y1f3{bottom:658.168000pt;}
.y12c{bottom:658.774667pt;}
.y12d{bottom:659.454667pt;}
.y16b{bottom:661.796159pt;}
.y36{bottom:662.476000pt;}
.y265{bottom:663.611517pt;}
.y29a{bottom:663.837647pt;}
.y299{bottom:663.989112pt;}
.y63{bottom:665.348000pt;}
.yad{bottom:665.880000pt;}
.ydd{bottom:669.432000pt;}
.y9c{bottom:672.984200pt;}
.y16a{bottom:674.494667pt;}
.y1f2{bottom:675.478667pt;}
.y16{bottom:675.552933pt;}
.y17{bottom:675.855862pt;}
.y12b{bottom:676.084000pt;}
.y264{bottom:676.310025pt;}
.y173{bottom:677.594667pt;}
.y35{bottom:677.745333pt;}
.y298{bottom:680.996900pt;}
.y62{bottom:682.658667pt;}
.yac{bottom:683.189333pt;}
.ydc{bottom:686.742667pt;}
.y9b{bottom:687.648550pt;}
.y14{bottom:688.857300pt;}
.y263{bottom:688.933867pt;}
.y15{bottom:689.084497pt;}
.y1f1{bottom:692.788000pt;}
.y34{bottom:693.090667pt;}
.y12a{bottom:693.469333pt;}
.y297{bottom:693.620742pt;}
.y172{bottom:694.905333pt;}
.y61{bottom:699.969333pt;}
.yab{bottom:700.500000pt;}
.y12{bottom:702.161667pt;}
.y13{bottom:702.539262pt;}
.ydb{bottom:704.128000pt;}
.y262{bottom:706.319250pt;}
.y33{bottom:708.434667pt;}
.y222{bottom:709.873333pt;}
.y9a{bottom:710.325600pt;}
.y129{bottom:710.780000pt;}
.y171{bottom:712.290667pt;}
.y1f0{bottom:715.464000pt;}
.y11{bottom:715.540700pt;}
.y60{bottom:717.354667pt;}
.yaa{bottom:717.885333pt;}
.y261{bottom:718.943092pt;}
.yda{bottom:721.437333pt;}
.y296{bottom:723.629967pt;}
.y99{bottom:724.989950pt;}
.y220{bottom:727.182667pt;}
.y221{bottom:727.862667pt;}
.y128{bottom:728.090667pt;}
.ye{bottom:728.844000pt;}
.y10{bottom:729.070131pt;}
.yf{bottom:729.221595pt;}
.y170{bottom:729.600000pt;}
.y260{bottom:731.642666pt;}
.y5f{bottom:734.664000pt;}
.ya9{bottom:735.196000pt;}
.y295{bottom:736.328475pt;}
.yd9{bottom:738.748000pt;}
.y98{bottom:739.655366pt;}
.y127{bottom:745.476000pt;}
.y25f{bottom:748.952317pt;}
.y21e{bottom:751.220000pt;}
.y21f{bottom:751.901333pt;}
.y16f{bottom:752.277333pt;}
.ya8{bottom:752.505333pt;}
.yc{bottom:752.881333pt;}
.ya{bottom:752.882667pt;}
.yd{bottom:753.106933pt;}
.y97{bottom:754.319716pt;}
.yd8{bottom:756.133333pt;}
.y5e{bottom:757.341333pt;}
.yb{bottom:758.173333pt;}
.y25e{bottom:761.651891pt;}
.y126{bottom:762.786667pt;}
.y294{bottom:766.263034pt;}
.y6{bottom:767.546667pt;}
.y9{bottom:767.772267pt;}
.y7{bottom:767.923467pt;}
.y96{bottom:768.984066pt;}
.ya7{bottom:769.890667pt;}
.y8{bottom:772.837333pt;}
.yd7{bottom:773.444000pt;}
.y25d{bottom:774.274667pt;}
.y21c{bottom:775.182667pt;}
.y21d{bottom:775.862667pt;}
.y293{bottom:778.961542pt;}
.y125{bottom:780.096000pt;}
.y95{bottom:783.648416pt;}
.y25a{bottom:786.974241pt;}
.ya6{bottom:787.201333pt;}
.y25c{bottom:787.201439pt;}
.y25b{bottom:787.277171pt;}
.yd6{bottom:790.754667pt;}
.y292{bottom:791.661116pt;}
.y124{bottom:797.406667pt;}
.y94{bottom:798.312766pt;}
.y21a{bottom:799.220000pt;}
.y21b{bottom:799.900000pt;}
.y5{bottom:800.882667pt;}
.y259{bottom:804.284958pt;}
.ya5{bottom:804.512000pt;}
.yd4{bottom:808.140000pt;}
.yd5{bottom:808.820000pt;}
.y93{bottom:812.977116pt;}
.y123{bottom:814.792000pt;}
.y258{bottom:816.983466pt;}
.y291{bottom:821.594609pt;}
.ya4{bottom:821.897333pt;}
.y219{bottom:823.182667pt;}
.yd3{bottom:825.449333pt;}
.y91{bottom:827.641466pt;}
.y92{bottom:827.868664pt;}
.y257{bottom:829.607309pt;}
.y4{bottom:830.817867pt;}
.y122{bottom:832.102667pt;}
.y290{bottom:834.294183pt;}
.ya3{bottom:839.208000pt;}
.y8f{bottom:842.306883pt;}
.y90{bottom:842.533014pt;}
.yd2{bottom:842.760000pt;}
.y5d{bottom:844.574667pt;}
.y28e{bottom:846.992691pt;}
.y28f{bottom:847.219888pt;}
.y217{bottom:847.220000pt;}
.y218{bottom:847.900000pt;}
.y121{bottom:849.412000pt;}
.ya2{bottom:856.517333pt;}
.y8e{bottom:856.971233pt;}
.y256{bottom:859.616533pt;}
.y2ae{bottom:859.843731pt;}
.y2ad{bottom:859.994129pt;}
.yd1{bottom:860.070667pt;}
.y3{bottom:860.827467pt;}
.y5c{bottom:863.245333pt;}
.y28d{bottom:864.303408pt;}
.y11f{bottom:866.797333pt;}
.y215{bottom:871.181333pt;}
.y8d{bottom:871.635583pt;}
.y216{bottom:871.862667pt;}
.y120{bottom:872.693333pt;}
.ya1{bottom:873.902667pt;}
.y255{bottom:876.926184pt;}
.yd0{bottom:877.456000pt;}
.y5b{bottom:881.916000pt;}
.y11e{bottom:884.106667pt;}
.y11c{bottom:884.108000pt;}
.y8c{bottom:886.299933pt;}
.y254{bottom:889.625758pt;}
.y11d{bottom:890.002667pt;}
.y2{bottom:890.834667pt;}
.ya0{bottom:891.213333pt;}
.ycf{bottom:894.765333pt;}
.y213{bottom:895.220000pt;}
.y214{bottom:895.900000pt;}
.y5a{bottom:900.510667pt;}
.y8b{bottom:900.964283pt;}
.y11b{bottom:901.417333pt;}
.y253{bottom:902.325333pt;}
.y28c{bottom:906.936475pt;}
.y9f{bottom:908.524000pt;}
.y8a{bottom:915.628633pt;}
.yce{bottom:917.442600pt;}
.y119{bottom:918.802667pt;}
.y59{bottom:919.181333pt;}
.y252{bottom:919.634983pt;}
.y212{bottom:919.862667pt;}
.y1{bottom:920.844000pt;}
.y11a{bottom:924.698667pt;}
.y9e{bottom:925.833333pt;}
.y88{bottom:930.292983pt;}
.y89{bottom:930.595913pt;}
.y251{bottom:932.258825pt;}
.y1ef{bottom:940.950667pt;}
.ycd{bottom:941.404000pt;}
.y58{bottom:941.858667pt;}
.y9d{bottom:943.218667pt;}
.y1ea{bottom:943.898667pt;}
.y87{bottom:944.957333pt;}
.y16e{bottom:949.114667pt;}
.y30{bottom:984.037333pt;}
.y84{bottom:990.312000pt;}
.y86{bottom:994.393333pt;}
.h10{height:16.478800pt;}
.h1a{height:21.330000pt;}
.h4{height:24.828689pt;}
.h16{height:25.312644pt;}
.h15{height:25.525953pt;}
.h13{height:26.663600pt;}
.h9{height:30.916533pt;}
.hc{height:31.082945pt;}
.h14{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.he{height:34.772899pt;}
.hd{height:36.052883pt;}
.h1b{height:36.687041pt;}
.h3{height:37.248000pt;}
.h8{height:39.266667pt;}
.hb{height:40.000000pt;}
.h19{height:41.333333pt;}
.h11{height:46.933333pt;}
.h7{height:47.593839pt;}
.h12{height:47.999600pt;}
.hf{height:49.663586pt;}
.h6{height:63.026667pt;}
.h17{height:77.605333pt;}
.h18{height:77.914667pt;}
.h2{height:78.240000pt;}
.ha{height:88.063659pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363733pt;}
.w1{width:143.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:46.261467pt;}
.x17{left:48.000000pt;}
.x18{left:63.496000pt;}
.x20{left:91.086395pt;}
.x19{left:92.976165pt;}
.x21{left:120.566560pt;}
.x1c{left:131.451417pt;}
.x5c{left:140.825333pt;}
.x1f{left:173.327500pt;}
.x1b{left:174.462080pt;}
.x3c{left:176.957333pt;}
.x25{left:210.594667pt;}
.x1a{left:211.652015pt;}
.x4b{left:230.400000pt;}
.x53{left:245.745333pt;}
.x4e{left:247.029333pt;}
.x1{left:266.682667pt;}
.x70{left:273.184000pt;}
.x1d{left:282.632000pt;}
.x71{left:295.330923pt;}
.x72{left:302.285503pt;}
.x79{left:305.838525pt;}
.x38{left:310.525333pt;}
.x2{left:314.983867pt;}
.x39{left:316.724000pt;}
.x3f{left:323.754667pt;}
.x76{left:342.349002pt;}
.x40{left:344.920000pt;}
.xb{left:345.902667pt;}
.x14{left:346.958997pt;}
.x3a{left:348.321333pt;}
.xc{left:350.816000pt;}
.x3b{left:357.542667pt;}
.x13{left:360.036166pt;}
.x4c{left:374.550667pt;}
.x4d{left:378.330667pt;}
.x60{left:379.917333pt;}
.x6b{left:390.422667pt;}
.x41{left:391.937333pt;}
.x69{left:394.353333pt;}
.x54{left:397.984000pt;}
.x36{left:399.498667pt;}
.x6a{left:404.558667pt;}
.x42{left:416.730667pt;}
.x3{left:419.376000pt;}
.x6c{left:422.624000pt;}
.x73{left:426.858879pt;}
.x61{left:428.069333pt;}
.x4{left:431.697333pt;}
.x23{left:437.064000pt;}
.x2a{left:446.589333pt;}
.x24{left:448.252000pt;}
.x77{left:449.837792pt;}
.x62{left:452.862667pt;}
.xd{left:457.246667pt;}
.x2b{left:459.438667pt;}
.x7b{left:464.955469pt;}
.x55{left:467.981333pt;}
.xe{left:469.568000pt;}
.x58{left:472.062667pt;}
.x4f{left:473.348000pt;}
.x2c{left:474.556000pt;}
.x50{left:476.673333pt;}
.x56{left:477.958667pt;}
.x45{left:480.906667pt;}
.x63{left:488.541333pt;}
.x59{left:490.280000pt;}
.x67{left:497.008000pt;}
.x6d{left:503.505333pt;}
.x6e{left:504.866667pt;}
.x64{left:506.834667pt;}
.x46{left:510.236000pt;}
.x7e{left:512.880931pt;}
.x30{left:516.358667pt;}
.x68{left:518.853333pt;}
.x1e{left:521.801333pt;}
.x44{left:523.993333pt;}
.x5{left:530.644533pt;}
.x7f{left:532.004959pt;}
.x37{left:532.989333pt;}
.x26{left:535.256000pt;}
.x65{left:536.693333pt;}
.x31{left:538.205333pt;}
.x4a{left:539.868000pt;}
.x47{left:542.890667pt;}
.x2d{left:543.949333pt;}
.x6{left:547.426667pt;}
.x2e{left:548.636000pt;}
.x74{left:550.297336pt;}
.x66{left:558.538667pt;}
.x7{left:559.748000pt;}
.x15{left:563.676288pt;}
.x80{left:568.665834pt;}
.x78{left:570.932811pt;}
.x75{left:582.801463pt;}
.xf{left:585.070667pt;}
.x48{left:589.908000pt;}
.x10{left:597.691862pt;}
.x7c{left:609.106928pt;}
.x49{left:611.829333pt;}
.x81{left:614.171398pt;}
.x43{left:619.389333pt;}
.x5a{left:631.785333pt;}
.x3d{left:638.966667pt;}
.x51{left:640.629333pt;}
.x52{left:647.357333pt;}
.x8{left:648.490667pt;}
.x3e{left:651.893333pt;}
.x9{left:653.404000pt;}
.x5b{left:656.580000pt;}
.x6f{left:660.204000pt;}
.x2f{left:661.644000pt;}
.x7d{left:665.194760pt;}
.x5e{left:666.633333pt;}
.x5f{left:670.412000pt;}
.xa{left:680.087200pt;}
.x22{left:682.729333pt;}
.x28{left:688.176000pt;}
.x5d{left:693.993333pt;}
.x29{left:701.026667pt;}
.x34{left:708.737333pt;}
.x12{left:711.077112pt;}
.x35{left:715.464000pt;}
.x7a{left:718.183237pt;}
.x11{left:722.567101pt;}
.x32{left:734.437333pt;}
.x57{left:735.418667pt;}
.x33{left:738.217333pt;}
.x27{left:745.928000pt;}
}




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