
    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_c6e3c2ed0c12f46bcd3a5522.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_85450a3c46769373a5c49857.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e1f210a559dcfcb7a8948b19.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c467a3ff402d540e8c796c4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_a09677dc4db154525ec8eb13.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f83e3fd945a15676834a50bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767090;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_38c6bcee8e081a58ab19c164.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f496e6245e633ff0c3bec4a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_76b84ba11ff0331493352b54.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7b33f35802ed8cdd327a6bef.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_076f9d30cb77fcc21b2a93f4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_31d5f2858f07a80f06a4ce12.woff2')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_1f1748875bf585971be8815d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_49fae6c6c271beac27a17d6f.woff2')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_6f89d44046151a9c2c824610.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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_3e45ab19364ac856a3474917.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1694a88b1842078dfa631bac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.723633;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_860a779cc038fece065b407f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_0e9cac35983a95cada7eb334.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.873000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m4{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,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);}
.m5{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);}
.v2{vertical-align:-7.827000px;}
.v3{vertical-align:-3.060000px;}
.v1{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.263600px;}
.ls12{letter-spacing:-1.200600px;}
.ls16{letter-spacing:-1.199985px;}
.ls1f{letter-spacing:-0.900000px;}
.ls45{letter-spacing:-0.719991px;}
.ls13{letter-spacing:-0.241496px;}
.ls15{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.239997px;}
.ls14{letter-spacing:-0.239400px;}
.ls10{letter-spacing:-0.238497px;}
.lse{letter-spacing:-0.237600px;}
.ls1c{letter-spacing:-0.237598px;}
.ls4a{letter-spacing:-0.214367px;}
.lsf{letter-spacing:-0.212372px;}
.ls3b{letter-spacing:-0.211976px;}
.ls11{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.792000px;}
.ls41{letter-spacing:1.128000px;}
.ls44{letter-spacing:1.134000px;}
.lsa{letter-spacing:1.363183px;}
.ls8{letter-spacing:1.367983px;}
.ls9{letter-spacing:2.726366px;}
.ls43{letter-spacing:3.174000px;}
.ls3{letter-spacing:3.579600px;}
.ls49{letter-spacing:4.761540px;}
.ls46{letter-spacing:4.766340px;}
.ls48{letter-spacing:5.102336px;}
.ls47{letter-spacing:5.107136px;}
.ls4{letter-spacing:5.486400px;}
.ls1{letter-spacing:5.491800px;}
.ls0{letter-spacing:5.832000px;}
.ls2{letter-spacing:7.187400px;}
.lsb{letter-spacing:9.446282px;}
.ls31{letter-spacing:9.697523px;}
.ls6{letter-spacing:10.257472px;}
.ls2d{letter-spacing:10.343871px;}
.ls7{letter-spacing:10.387070px;}
.ls28{letter-spacing:10.660667px;}
.ls29{letter-spacing:10.867064px;}
.ls2a{letter-spacing:10.905464px;}
.ls2b{letter-spacing:10.967863px;}
.ls26{letter-spacing:11.001462px;}
.ls27{letter-spacing:11.006262px;}
.ls3f{letter-spacing:12.240000px;}
.ls3c{letter-spacing:12.252000px;}
.ls38{letter-spacing:12.594000px;}
.ls1b{letter-spacing:12.600000px;}
.ls23{letter-spacing:12.864000px;}
.ls2c{letter-spacing:12.870000px;}
.ls3d{letter-spacing:12.918000px;}
.ls3e{letter-spacing:12.924000px;}
.ls1a{letter-spacing:12.930000px;}
.ls17{letter-spacing:12.936000px;}
.ls25{letter-spacing:12.942000px;}
.ls40{letter-spacing:12.984000px;}
.ls21{letter-spacing:13.002000px;}
.ls1d{letter-spacing:13.008000px;}
.ls39{letter-spacing:13.014000px;}
.ls3a{letter-spacing:13.044000px;}
.ls20{letter-spacing:13.050000px;}
.ls32{letter-spacing:13.080000px;}
.ls34{letter-spacing:13.200000px;}
.ls24{letter-spacing:13.206000px;}
.ls18{letter-spacing:13.272000px;}
.ls22{letter-spacing:13.278000px;}
.ls33{letter-spacing:13.284000px;}
.ls35{letter-spacing:13.326000px;}
.ls36{letter-spacing:13.332000px;}
.ls19{letter-spacing:13.344000px;}
.ls1e{letter-spacing:13.350000px;}
.ls37{letter-spacing:13.416000px;}
.ls5{letter-spacing:20.783740px;}
.ls2f{letter-spacing:183.076969px;}
.ls30{letter-spacing:211.648753px;}
.ls2e{letter-spacing:730.384331px;}
.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;}
}
.ws22{word-spacing:-37.151856px;}
.ws26{word-spacing:-25.247684px;}
.wsfd{word-spacing:-23.999700px;}
.ws57{word-spacing:-16.824000px;}
.ws179{word-spacing:-16.632000px;}
.ws175{word-spacing:-16.332000px;}
.wsa{word-spacing:-15.174000px;}
.wsc{word-spacing:-14.936400px;}
.ws194{word-spacing:-13.740000px;}
.ws11{word-spacing:-13.487831px;}
.ws13{word-spacing:-13.247834px;}
.ws139{word-spacing:-12.830240px;}
.ws1bf{word-spacing:-12.767840px;}
.ws13a{word-spacing:-12.686241px;}
.wsd0{word-spacing:-10.991863px;}
.ws30{word-spacing:-10.799865px;}
.wsb4{word-spacing:-10.463869px;}
.ws192{word-spacing:-4.233565px;}
.ws191{word-spacing:-4.082366px;}
.ws1b2{word-spacing:-3.518356px;}
.ws1dd{word-spacing:-3.499156px;}
.ws1cc{word-spacing:-3.470357px;}
.ws1e9{word-spacing:-3.436757px;}
.ws1c5{word-spacing:-3.427157px;}
.ws1bd{word-spacing:-3.403157px;}
.ws1c1{word-spacing:-3.393558px;}
.wsf{word-spacing:-3.383958px;}
.ws1ec{word-spacing:-3.369558px;}
.ws1b8{word-spacing:-3.364758px;}
.ws1a8{word-spacing:-3.359958px;}
.ws1ae{word-spacing:-3.355158px;}
.ws21{word-spacing:-3.351600px;}
.ws1c8{word-spacing:-3.345558px;}
.ws9{word-spacing:-3.342600px;}
.ws1d7{word-spacing:-3.340758px;}
.ws1e4{word-spacing:-3.331158px;}
.ws1b6{word-spacing:-3.326358px;}
.ws16{word-spacing:-3.323100px;}
.ws1c6{word-spacing:-3.321558px;}
.ws1e3{word-spacing:-3.316759px;}
.ws6{word-spacing:-3.315600px;}
.ws1bb{word-spacing:-3.307159px;}
.ws1e5{word-spacing:-3.302359px;}
.ws48{word-spacing:-3.288900px;}
.ws1e{word-spacing:-3.283200px;}
.ws1d1{word-spacing:-3.283159px;}
.ws19f{word-spacing:-3.278359px;}
.ws1df{word-spacing:-3.273559px;}
.ws10{word-spacing:-3.263959px;}
.ws1a3{word-spacing:-3.259159px;}
.ws18{word-spacing:-3.254700px;}
.ws1af{word-spacing:-3.254359px;}
.ws8{word-spacing:-3.250800px;}
.ws1ca{word-spacing:-3.249559px;}
.ws14{word-spacing:-3.249000px;}
.ws1c7{word-spacing:-3.244759px;}
.ws19d{word-spacing:-3.239960px;}
.ws1c4{word-spacing:-3.235160px;}
.ws68{word-spacing:-3.230360px;}
.ws1d9{word-spacing:-3.225560px;}
.ws1ab{word-spacing:-3.220760px;}
.ws1cf{word-spacing:-3.215960px;}
.ws47{word-spacing:-3.214800px;}
.ws1ce{word-spacing:-3.211160px;}
.ws1e1{word-spacing:-3.206360px;}
.ws1ac{word-spacing:-3.196760px;}
.ws1b0{word-spacing:-3.191960px;}
.ws1ea{word-spacing:-3.187160px;}
.ws1c2{word-spacing:-3.182360px;}
.ws1ad{word-spacing:-3.177560px;}
.ws1b{word-spacing:-3.174900px;}
.ws7{word-spacing:-3.169800px;}
.ws13e{word-spacing:-3.167960px;}
.ws1d4{word-spacing:-3.163160px;}
.ws12{word-spacing:-3.158361px;}
.ws15{word-spacing:-3.157800px;}
.ws1d6{word-spacing:-3.153561px;}
.ws1b4{word-spacing:-3.148761px;}
.ws1bc{word-spacing:-3.129561px;}
.ws49{word-spacing:-3.129300px;}
.ws23{word-spacing:-3.124761px;}
.ws1aa{word-spacing:-3.119961px;}
.ws1cd{word-spacing:-3.115161px;}
.ws20{word-spacing:-3.112200px;}
.ws1eb{word-spacing:-3.100761px;}
.ws2{word-spacing:-3.099600px;}
.ws1b3{word-spacing:-3.091161px;}
.ws1b7{word-spacing:-3.086361px;}
.ws1d0{word-spacing:-3.081561px;}
.ws1e8{word-spacing:-3.071962px;}
.ws1dc{word-spacing:-3.067162px;}
.ws1a{word-spacing:-3.060900px;}
.ws1e6{word-spacing:-3.052762px;}
.ws1da{word-spacing:-3.047962px;}
.ws19{word-spacing:-3.043800px;}
.ws4a{word-spacing:-3.032400px;}
.ws4{word-spacing:-3.024000px;}
.ws1a5{word-spacing:-3.019162px;}
.ws5{word-spacing:-3.002400px;}
.wse{word-spacing:-2.985563px;}
.ws17{word-spacing:-2.981100px;}
.ws1e7{word-spacing:-2.975963px;}
.ws1e0{word-spacing:-2.971163px;}
.ws1{word-spacing:-2.970000px;}
.ws1d{word-spacing:-2.969700px;}
.ws1c9{word-spacing:-2.956763px;}
.wsb{word-spacing:-2.953800px;}
.ws25{word-spacing:-2.951963px;}
.ws1b9{word-spacing:-2.942363px;}
.ws4b{word-spacing:-2.941200px;}
.ws3{word-spacing:-2.937600px;}
.ws1db{word-spacing:-2.937563px;}
.ws1d8{word-spacing:-2.927963px;}
.ws1c3{word-spacing:-2.918364px;}
.ws1a1{word-spacing:-2.913564px;}
.ws1c0{word-spacing:-2.903964px;}
.ws1c{word-spacing:-2.895600px;}
.ws1a2{word-spacing:-2.894364px;}
.ws1d5{word-spacing:-2.889564px;}
.ws1d2{word-spacing:-2.875164px;}
.ws1d3{word-spacing:-2.860764px;}
.ws1a6{word-spacing:-2.841564px;}
.ws1e2{word-spacing:-2.836765px;}
.wsd{word-spacing:-2.831965px;}
.ws1b5{word-spacing:-2.827165px;}
.ws1a7{word-spacing:-2.812765px;}
.ws1be{word-spacing:-2.803165px;}
.ws1de{word-spacing:-2.779165px;}
.ws1cb{word-spacing:-2.774365px;}
.ws1a0{word-spacing:-2.764765px;}
.ws1a4{word-spacing:-2.750366px;}
.ws1a9{word-spacing:-2.745566px;}
.ws1f{word-spacing:-2.724600px;}
.ws19e{word-spacing:-2.687966px;}
.ws0{word-spacing:-2.649567px;}
.ws2f{word-spacing:-1.103986px;}
.ws3b{word-spacing:-1.055987px;}
.ws17e{word-spacing:-1.044000px;}
.ws157{word-spacing:-1.002000px;}
.ws181{word-spacing:-0.918000px;}
.ws3e{word-spacing:-0.916789px;}
.ws38{word-spacing:-0.892789px;}
.ws2c{word-spacing:-0.887989px;}
.ws35{word-spacing:-0.878389px;}
.ws6a{word-spacing:-0.859189px;}
.ws40{word-spacing:-0.815990px;}
.ws33{word-spacing:-0.791990px;}
.wsaa{word-spacing:-0.780000px;}
.ws2e{word-spacing:-0.777590px;}
.ws37{word-spacing:-0.743991px;}
.ws42{word-spacing:-0.739191px;}
.ws182{word-spacing:-0.732000px;}
.ws3a{word-spacing:-0.724791px;}
.ws45{word-spacing:-0.715191px;}
.ws135{word-spacing:-0.710391px;}
.ws66{word-spacing:-0.702000px;}
.ws141{word-spacing:-0.681591px;}
.ws3c{word-spacing:-0.676792px;}
.ws3f{word-spacing:-0.671992px;}
.wsab{word-spacing:-0.666000px;}
.ws32{word-spacing:-0.662392px;}
.ws12d{word-spacing:-0.647992px;}
.ws39{word-spacing:-0.633592px;}
.ws18d{word-spacing:-0.624000px;}
.ws27{word-spacing:-0.623992px;}
.ws2d{word-spacing:-0.614392px;}
.ws41{word-spacing:-0.609592px;}
.ws149{word-spacing:-0.595193px;}
.ws171{word-spacing:-0.594000px;}
.ws2a{word-spacing:-0.590393px;}
.ws6e{word-spacing:-0.588000px;}
.ws143{word-spacing:-0.575993px;}
.ws31{word-spacing:-0.571193px;}
.ws17c{word-spacing:-0.570000px;}
.ws145{word-spacing:-0.566393px;}
.ws10e{word-spacing:-0.561593px;}
.ws17d{word-spacing:-0.558000px;}
.ws44{word-spacing:-0.556793px;}
.ws28{word-spacing:-0.551993px;}
.ws108{word-spacing:-0.547193px;}
.wsa0{word-spacing:-0.542393px;}
.ws82{word-spacing:-0.534000px;}
.ws16d{word-spacing:-0.532793px;}
.ws150{word-spacing:-0.528000px;}
.ws34{word-spacing:-0.527993px;}
.ws113{word-spacing:-0.523193px;}
.ws83{word-spacing:-0.522000px;}
.wsec{word-spacing:-0.518394px;}
.ws7b{word-spacing:-0.516000px;}
.wsf2{word-spacing:-0.513594px;}
.ws176{word-spacing:-0.510000px;}
.wse3{word-spacing:-0.503994px;}
.ws36{word-spacing:-0.499194px;}
.wsa5{word-spacing:-0.498000px;}
.wseb{word-spacing:-0.494394px;}
.ws43{word-spacing:-0.489594px;}
.ws170{word-spacing:-0.486000px;}
.wse5{word-spacing:-0.484794px;}
.ws12c{word-spacing:-0.479994px;}
.ws128{word-spacing:-0.475194px;}
.ws56{word-spacing:-0.474000px;}
.ws3d{word-spacing:-0.470394px;}
.ws64{word-spacing:-0.468000px;}
.ws12b{word-spacing:-0.465594px;}
.ws195{word-spacing:-0.462000px;}
.ws69{word-spacing:-0.460794px;}
.ws180{word-spacing:-0.456000px;}
.ws13d{word-spacing:-0.455994px;}
.wsf0{word-spacing:-0.451194px;}
.ws65{word-spacing:-0.450000px;}
.ws144{word-spacing:-0.446394px;}
.ws13f{word-spacing:-0.441594px;}
.wse7{word-spacing:-0.436795px;}
.ws5c{word-spacing:-0.432000px;}
.wsbc{word-spacing:-0.431995px;}
.wsc0{word-spacing:-0.427195px;}
.ws52{word-spacing:-0.426000px;}
.ws127{word-spacing:-0.422395px;}
.ws153{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.417595px;}
.ws58{word-spacing:-0.414000px;}
.ws11c{word-spacing:-0.412795px;}
.ws16e{word-spacing:-0.408000px;}
.ws9f{word-spacing:-0.407995px;}
.ws100{word-spacing:-0.403195px;}
.ws5b{word-spacing:-0.402000px;}
.wsfc{word-spacing:-0.398395px;}
.ws63{word-spacing:-0.396000px;}
.wscb{word-spacing:-0.393595px;}
.ws70{word-spacing:-0.390000px;}
.wsff{word-spacing:-0.388795px;}
.ws5e{word-spacing:-0.384000px;}
.ws102{word-spacing:-0.383995px;}
.ws130{word-spacing:-0.379195px;}
.ws77{word-spacing:-0.378000px;}
.wse4{word-spacing:-0.374395px;}
.ws85{word-spacing:-0.372000px;}
.wsd4{word-spacing:-0.369595px;}
.ws71{word-spacing:-0.366000px;}
.wscf{word-spacing:-0.364795px;}
.ws4c{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.359996px;}
.wsdb{word-spacing:-0.355196px;}
.ws6c{word-spacing:-0.354000px;}
.ws11d{word-spacing:-0.350396px;}
.ws8e{word-spacing:-0.348000px;}
.ws11a{word-spacing:-0.345596px;}
.ws7a{word-spacing:-0.342000px;}
.wse9{word-spacing:-0.340796px;}
.ws154{word-spacing:-0.336000px;}
.wsdc{word-spacing:-0.335996px;}
.ws79{word-spacing:-0.330000px;}
.wsc4{word-spacing:-0.326396px;}
.ws87{word-spacing:-0.324000px;}
.wsa4{word-spacing:-0.318000px;}
.wsf9{word-spacing:-0.316796px;}
.ws60{word-spacing:-0.312000px;}
.wse6{word-spacing:-0.311996px;}
.wsbb{word-spacing:-0.307196px;}
.ws86{word-spacing:-0.306000px;}
.ws103{word-spacing:-0.302396px;}
.ws9d{word-spacing:-0.300000px;}
.ws9e{word-spacing:-0.297596px;}
.wsa9{word-spacing:-0.294000px;}
.ws101{word-spacing:-0.292796px;}
.ws72{word-spacing:-0.288000px;}
.ws147{word-spacing:-0.287996px;}
.wsea{word-spacing:-0.283196px;}
.ws4f{word-spacing:-0.282000px;}
.ws12e{word-spacing:-0.278397px;}
.ws61{word-spacing:-0.276000px;}
.wsc9{word-spacing:-0.273597px;}
.wsce{word-spacing:-0.268797px;}
.ws99{word-spacing:-0.264000px;}
.ws107{word-spacing:-0.259197px;}
.wsa7{word-spacing:-0.258000px;}
.wse1{word-spacing:-0.254397px;}
.ws54{word-spacing:-0.252000px;}
.wse8{word-spacing:-0.249597px;}
.ws80{word-spacing:-0.246000px;}
.wsb7{word-spacing:-0.244797px;}
.ws151{word-spacing:-0.240000px;}
.wsdd{word-spacing:-0.239997px;}
.wsed{word-spacing:-0.235197px;}
.ws5a{word-spacing:-0.234000px;}
.wsf6{word-spacing:-0.230397px;}
.ws55{word-spacing:-0.228000px;}
.ws12f{word-spacing:-0.225597px;}
.ws17f{word-spacing:-0.222000px;}
.wsdf{word-spacing:-0.220797px;}
.ws81{word-spacing:-0.216000px;}
.ws10c{word-spacing:-0.215997px;}
.wse2{word-spacing:-0.211197px;}
.ws16f{word-spacing:-0.210000px;}
.wsb8{word-spacing:-0.206397px;}
.ws5d{word-spacing:-0.204000px;}
.wsc7{word-spacing:-0.201597px;}
.wsa8{word-spacing:-0.198000px;}
.wsee{word-spacing:-0.196798px;}
.ws51{word-spacing:-0.192000px;}
.ws123{word-spacing:-0.191998px;}
.ws10a{word-spacing:-0.187198px;}
.ws9a{word-spacing:-0.186000px;}
.ws10f{word-spacing:-0.182398px;}
.ws6d{word-spacing:-0.180000px;}
.wsd1{word-spacing:-0.177598px;}
.ws84{word-spacing:-0.174000px;}
.wsc2{word-spacing:-0.172798px;}
.ws156{word-spacing:-0.168000px;}
.wsba{word-spacing:-0.167998px;}
.wsc6{word-spacing:-0.163198px;}
.ws92{word-spacing:-0.162000px;}
.ws11f{word-spacing:-0.158398px;}
.ws6f{word-spacing:-0.156000px;}
.wsd2{word-spacing:-0.153598px;}
.ws18a{word-spacing:-0.150000px;}
.wsc5{word-spacing:-0.148798px;}
.ws152{word-spacing:-0.144000px;}
.ws119{word-spacing:-0.143998px;}
.ws131{word-spacing:-0.139198px;}
.ws183{word-spacing:-0.138000px;}
.wsf5{word-spacing:-0.134398px;}
.ws4e{word-spacing:-0.132000px;}
.wsfb{word-spacing:-0.129598px;}
.ws155{word-spacing:-0.126000px;}
.ws14b{word-spacing:-0.124798px;}
.ws19a{word-spacing:-0.120000px;}
.wsc1{word-spacing:-0.119998px;}
.ws29{word-spacing:-0.115199px;}
.ws78{word-spacing:-0.114000px;}
.ws118{word-spacing:-0.110399px;}
.wsde{word-spacing:-0.105599px;}
.ws187{word-spacing:-0.102000px;}
.wscd{word-spacing:-0.100799px;}
.ws98{word-spacing:-0.096000px;}
.wse0{word-spacing:-0.095999px;}
.wsef{word-spacing:-0.091199px;}
.ws50{word-spacing:-0.090000px;}
.wsc3{word-spacing:-0.086399px;}
.ws88{word-spacing:-0.084000px;}
.ws109{word-spacing:-0.081599px;}
.wsfa{word-spacing:-0.076799px;}
.ws112{word-spacing:-0.071999px;}
.ws53{word-spacing:-0.066000px;}
.wsf3{word-spacing:-0.062399px;}
.ws7f{word-spacing:-0.060000px;}
.wsd3{word-spacing:-0.057599px;}
.ws5f{word-spacing:-0.054000px;}
.ws10b{word-spacing:-0.052799px;}
.ws6b{word-spacing:-0.048000px;}
.ws110{word-spacing:-0.043199px;}
.ws59{word-spacing:-0.042000px;}
.ws14a{word-spacing:-0.038400px;}
.ws75{word-spacing:-0.036000px;}
.ws185{word-spacing:-0.030000px;}
.ws140{word-spacing:-0.028800px;}
.ws178{word-spacing:-0.024000px;}
.ws125{word-spacing:-0.019200px;}
.wsa1{word-spacing:-0.018000px;}
.wsc8{word-spacing:-0.014400px;}
.ws67{word-spacing:-0.012000px;}
.ws115{word-spacing:-0.009600px;}
.ws18e{word-spacing:-0.006000px;}
.ws46{word-spacing:0.000000px;}
.ws11e{word-spacing:0.004800px;}
.ws9c{word-spacing:0.012000px;}
.ws174{word-spacing:0.018000px;}
.wsbd{word-spacing:0.019200px;}
.wsa2{word-spacing:0.024000px;}
.wsf8{word-spacing:0.028800px;}
.wsac{word-spacing:0.033600px;}
.ws76{word-spacing:0.036000px;}
.ws120{word-spacing:0.038400px;}
.ws177{word-spacing:0.042000px;}
.ws114{word-spacing:0.043199px;}
.ws172{word-spacing:0.048000px;}
.ws186{word-spacing:0.054000px;}
.ws132{word-spacing:0.057599px;}
.ws8b{word-spacing:0.060000px;}
.ws184{word-spacing:0.066000px;}
.wsca{word-spacing:0.067199px;}
.ws8a{word-spacing:0.072000px;}
.ws4d{word-spacing:0.084000px;}
.ws7e{word-spacing:0.090000px;}
.ws13c{word-spacing:0.095999px;}
.wsa6{word-spacing:0.096000px;}
.ws8d{word-spacing:0.102000px;}
.ws104{word-spacing:0.105599px;}
.ws62{word-spacing:0.108000px;}
.wscc{word-spacing:0.110399px;}
.ws73{word-spacing:0.114000px;}
.wsb6{word-spacing:0.115199px;}
.ws134{word-spacing:0.119998px;}
.ws126{word-spacing:0.124798px;}
.ws89{word-spacing:0.126000px;}
.ws138{word-spacing:0.129598px;}
.ws74{word-spacing:0.132000px;}
.ws121{word-spacing:0.134398px;}
.ws188{word-spacing:0.138000px;}
.wsbf{word-spacing:0.139198px;}
.ws14f{word-spacing:0.143998px;}
.wsf4{word-spacing:0.148798px;}
.ws18c{word-spacing:0.156000px;}
.ws18f{word-spacing:0.162000px;}
.wsfe{word-spacing:0.172798px;}
.ws10d{word-spacing:0.177598px;}
.wsb3{word-spacing:0.196798px;}
.ws190{word-spacing:0.198000px;}
.wsd8{word-spacing:0.211197px;}
.ws7d{word-spacing:0.216000px;}
.ws137{word-spacing:0.220797px;}
.wsd5{word-spacing:0.225597px;}
.wsf1{word-spacing:0.230397px;}
.ws17b{word-spacing:0.234000px;}
.wsaf{word-spacing:0.235197px;}
.ws97{word-spacing:0.237598px;}
.wsb9{word-spacing:0.239997px;}
.ws8f{word-spacing:0.244798px;}
.ws148{word-spacing:0.249597px;}
.ws9b{word-spacing:0.252000px;}
.wsd6{word-spacing:0.254397px;}
.wsa3{word-spacing:0.259198px;}
.ws133{word-spacing:0.263997px;}
.ws106{word-spacing:0.268797px;}
.ws18b{word-spacing:0.276000px;}
.ws8c{word-spacing:0.288000px;}
.wsda{word-spacing:0.292796px;}
.ws165{word-spacing:0.293992px;}
.ws7c{word-spacing:0.300000px;}
.wsb0{word-spacing:0.316796px;}
.ws94{word-spacing:0.318000px;}
.ws158{word-spacing:0.321596px;}
.ws122{word-spacing:0.331196px;}
.ws142{word-spacing:0.340796px;}
.ws19b{word-spacing:0.342000px;}
.ws13b{word-spacing:0.359996px;}
.ws129{word-spacing:0.383995px;}
.ws117{word-spacing:0.388795px;}
.ws146{word-spacing:0.393595px;}
.ws189{word-spacing:0.395997px;}
.ws116{word-spacing:0.403195px;}
.ws111{word-spacing:0.407995px;}
.ws173{word-spacing:0.408000px;}
.ws105{word-spacing:0.422395px;}
.ws91{word-spacing:0.426000px;}
.ws14c{word-spacing:0.427195px;}
.wsd9{word-spacing:0.431995px;}
.ws93{word-spacing:0.432000px;}
.ws96{word-spacing:0.444000px;}
.ws11b{word-spacing:0.451194px;}
.wsb5{word-spacing:0.455994px;}
.ws196{word-spacing:0.480000px;}
.ws14d{word-spacing:0.484794px;}
.wsf7{word-spacing:0.489594px;}
.ws15f{word-spacing:0.495586px;}
.ws136{word-spacing:0.508794px;}
.wsb1{word-spacing:0.523193px;}
.ws12a{word-spacing:0.527993px;}
.ws14e{word-spacing:0.537593px;}
.wsb2{word-spacing:0.556793px;}
.wsae{word-spacing:0.571193px;}
.ws90{word-spacing:0.618000px;}
.ws164{word-spacing:0.621582px;}
.wsd7{word-spacing:0.671992px;}
.ws15d{word-spacing:0.684580px;}
.ws15c{word-spacing:0.705580px;}
.ws169{word-spacing:0.755978px;}
.ws95{word-spacing:0.756000px;}
.ws197{word-spacing:0.762000px;}
.ws159{word-spacing:0.839976px;}
.ws15b{word-spacing:0.856776px;}
.ws15e{word-spacing:0.881975px;}
.ws198{word-spacing:0.900000px;}
.ws199{word-spacing:1.026000px;}
.ws15a{word-spacing:1.066770px;}
.ws193{word-spacing:1.158000px;}
.ws24{word-spacing:34.588368px;}
.ws17a{word-spacing:35.184000px;}
.ws1b1{word-spacing:46.842614px;}
.ws1ba{word-spacing:46.847414px;}
.ws19c{word-spacing:46.909814px;}
.ws124{word-spacing:90.958863px;}
.ws163{word-spacing:174.694009px;}
.ws161{word-spacing:174.698208px;}
.ws168{word-spacing:195.109625px;}
.ws162{word-spacing:210.069598px;}
.ws167{word-spacing:228.099683px;}
.ws16b{word-spacing:228.103883px;}
.ws16c{word-spacing:248.506900px;}
.ws16a{word-spacing:248.511099px;}
.ws166{word-spacing:263.135082px;}
.ws160{word-spacing:263.139282px;}
.wsad{word-spacing:1557.162935px;}
._8{margin-left:-8.421087px;}
._c{margin-left:-4.826414px;}
._7{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._6{width:1.641600px;}
._2{width:3.615600px;}
._3{width:9.302284px;}
._a{width:10.996663px;}
._5{width:12.021300px;}
._4{width:13.702800px;}
._b{width:14.946000px;}
._d{width:16.511794px;}
._20{width:19.919751px;}
._e{width:20.966138px;}
._12{width:23.865302px;}
._1{width:24.958800px;}
._16{width:49.238400px;}
._15{width:55.616905px;}
._11{width:101.950726px;}
._10{width:104.561893px;}
._f{width:144.545393px;}
._13{width:165.218735px;}
._19{width:182.913174px;}
._18{width:194.479643px;}
._1f{width:204.870146px;}
._17{width:226.335733px;}
._1d{width:256.952858px;}
._1e{width:272.757007px;}
._1a{width:321.878803px;}
._1c{width:413.268192px;}
._1b{width:586.521642px;}
._14{width:1481.592680px;}
._9{width:1507.013162px;}
.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);}
.fsd{font-size:27.996600px;}
.fse{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fsf{font-size:39.995400px;}
.fsc{font-size:41.998800px;}
.fs4{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;}
.y7d{bottom:4.537500px;}
.y2c{bottom:8.513967px;}
.y2d{bottom:54.000000px;}
.y2a{bottom:124.498500px;}
.yd4{bottom:124.498650px;}
.y17f{bottom:124.500000px;}
.y51{bottom:124.500064px;}
.y1d2{bottom:124.500609px;}
.y7b{bottom:124.501500px;}
.y20a{bottom:124.842328px;}
.y13a{bottom:124.926000px;}
.y174{bottom:125.095500px;}
.y175{bottom:125.100000px;}
.yff{bottom:125.688150px;}
.ydc{bottom:129.346500px;}
.y196{bottom:133.512000px;}
.y100{bottom:138.613188px;}
.y1d1{bottom:138.787630px;}
.y209{bottom:139.044151px;}
.y50{bottom:140.997458px;}
.y101{bottom:142.185544px;}
.yd3{bottom:143.971650px;}
.yfe{bottom:143.974500px;}
.y7a{bottom:143.976000px;}
.y139{bottom:144.400500px;}
.y173{bottom:144.568500px;}
.yb3{bottom:144.573000px;}
.y29{bottom:145.503000px;}
.y244{bottom:145.842450px;}
.y242{bottom:145.846866px;}
.ydb{bottom:148.821000px;}
.y243{bottom:151.200000px;}
.y195{bottom:152.985000px;}
.y1d0{bottom:152.988253px;}
.y208{bottom:153.331172px;}
.y4f{bottom:157.494852px;}
.y241{bottom:160.048688px;}
.yfd{bottom:163.533000px;}
.y79{bottom:163.534500px;}
.y138{bottom:163.959000px;}
.y172{bottom:164.127000px;}
.yb2{bottom:164.131500px;}
.y28{bottom:166.507500px;}
.yda{bottom:168.379500px;}
.yd2{bottom:169.483500px;}
.y1cf{bottom:172.462809px;}
.y207{bottom:172.804529px;}
.y4e{bottom:173.993445px;}
.y194{bottom:178.497000px;}
.y240{bottom:179.607244px;}
.y17e{bottom:183.006000px;}
.yfc{bottom:183.007500px;}
.y78{bottom:183.009000px;}
.y137{bottom:183.433500px;}
.y171{bottom:183.601500px;}
.yb1{bottom:183.606000px;}
.y1ce{bottom:186.749831px;}
.y206{bottom:187.091550px;}
.y27{bottom:187.512000px;}
.yd9{bottom:187.852500px;}
.y4d{bottom:190.490839px;}
.y23f{bottom:193.809066px;}
.y114{bottom:198.226043px;}
.y104{bottom:199.756024px;}
.y1cd{bottom:201.035652px;}
.y106{bottom:201.372404px;}
.y17d{bottom:202.480500px;}
.y77{bottom:202.482000px;}
.y136{bottom:202.908000px;}
.y170{bottom:203.076000px;}
.yb0{bottom:203.080500px;}
.y103{bottom:203.243181px;}
.y205{bottom:206.564907px;}
.y4c{bottom:206.988233px;}
.yd8{bottom:207.327000px;}
.y23e{bottom:208.096087px;}
.y26{bottom:208.516500px;}
.yd1{bottom:212.430000px;}
.y105{bottom:214.893835px;}
.y1cc{bottom:220.510209px;}
.y204{bottom:220.851928px;}
.y17c{bottom:222.039000px;}
.yfb{bottom:222.040500px;}
.y76{bottom:222.042000px;}
.y23b{bottom:222.296710px;}
.y135{bottom:222.466500px;}
.y23d{bottom:222.552307px;}
.y16f{bottom:222.634500px;}
.yaf{bottom:222.639000px;}
.y23c{bottom:222.722705px;}
.y4b{bottom:223.485627px;}
.yd7{bottom:226.801500px;}
.y193{bottom:226.803000px;}
.yd0{bottom:231.904500px;}
.y25{bottom:234.028500px;}
.y1cb{bottom:234.710831px;}
.y203{bottom:240.325285px;}
.y17b{bottom:241.513500px;}
.y75{bottom:241.515000px;}
.y23a{bottom:241.856465px;}
.y134{bottom:241.939500px;}
.y16e{bottom:242.107500px;}
.yae{bottom:242.112000px;}
.y192{bottom:246.276000px;}
.yd6{bottom:246.360000px;}
.y4a{bottom:248.997308px;}
.ycf{bottom:251.379000px;}
.y1ca{bottom:254.270587px;}
.y202{bottom:254.612306px;}
.y239{bottom:256.058288px;}
.yfa{bottom:260.988000px;}
.y74{bottom:260.989500px;}
.y133{bottom:261.414000px;}
.y16d{bottom:261.582000px;}
.yad{bottom:261.586500px;}
.y115{bottom:263.366029px;}
.y107{bottom:265.236806px;}
.y49{bottom:265.494701px;}
.yd5{bottom:265.833000px;}
.y191{bottom:265.834500px;}
.y1c9{bottom:268.471209px;}
.y237{bottom:270.344109px;}
.y238{bottom:270.684905px;}
.yce{bottom:270.937500px;}
.y201{bottom:274.085663px;}
.y24{bottom:275.782500px;}
.y17a{bottom:280.461000px;}
.yf9{bottom:280.462500px;}
.y73{bottom:280.464000px;}
.y132{bottom:280.972500px;}
.y16c{bottom:281.140500px;}
.yac{bottom:281.145000px;}
.y48{bottom:281.992095px;}
.y190{bottom:285.309000px;}
.y1c8{bottom:288.030965px;}
.y200{bottom:288.372684px;}
.y236{bottom:289.818666px;}
.ycd{bottom:290.412000px;}
.y23{bottom:296.787000px;}
.y179{bottom:300.019500px;}
.yf8{bottom:300.021000px;}
.y72{bottom:300.022500px;}
.y131{bottom:300.447000px;}
.y16b{bottom:300.615000px;}
.yab{bottom:300.619500px;}
.y1c7{bottom:302.232787px;}
.y1ff{bottom:302.574506px;}
.y235{bottom:304.104487px;}
.y108{bottom:304.524315px;}
.y18f{bottom:304.783500px;}
.y47{bottom:307.503776px;}
.ycc{bottom:309.885000px;}
.y22{bottom:317.791500px;}
.y234{bottom:318.306310px;}
.y178{bottom:319.494000px;}
.y71{bottom:319.495500px;}
.ydf{bottom:319.918069px;}
.y130{bottom:319.921500px;}
.y16a{bottom:320.089500px;}
.yaa{bottom:320.094000px;}
.y1c6{bottom:321.791343px;}
.y1fe{bottom:322.047863px;}
.y46{bottom:324.001170px;}
.y18e{bottom:324.342000px;}
.ycb{bottom:329.443500px;}
.y1c5{bottom:335.993165px;}
.y1fd{bottom:336.334884px;}
.y233{bottom:337.864865px;}
.y21{bottom:338.796000px;}
.yf7{bottom:338.968500px;}
.y70{bottom:338.970000px;}
.y12f{bottom:339.480000px;}
.y169{bottom:339.562500px;}
.ya9{bottom:339.567000px;}
.y45{bottom:340.499764px;}
.yde{bottom:343.134179px;}
.y18d{bottom:343.816500px;}
.yca{bottom:348.918000px;}
.y1fc{bottom:350.620706px;}
.y232{bottom:352.066688px;}
.y1c4{bottom:355.466522px;}
.y44{bottom:356.997158px;}
.ydd{bottom:357.420000px;}
.yf6{bottom:358.527000px;}
.y6f{bottom:358.528500px;}
.y12e{bottom:358.953000px;}
.y168{bottom:359.121000px;}
.ya8{bottom:359.125500px;}
.y18c{bottom:363.289500px;}
.y20{bottom:364.308000px;}
.y22f{bottom:366.353709px;}
.y231{bottom:366.608106px;}
.y230{bottom:366.693305px;}
.yc9{bottom:368.392500px;}
.y1c3{bottom:369.753543px;}
.y1fb{bottom:370.095262px;}
.y43{bottom:373.494551px;}
.y116{bottom:376.383016px;}
.y177{bottom:378.000000px;}
.yf5{bottom:378.001500px;}
.y6e{bottom:378.003000px;}
.y12d{bottom:378.427500px;}
.y167{bottom:378.595500px;}
.ya7{bottom:378.600000px;}
.y18b{bottom:382.764000px;}
.y1c2{bottom:384.039365px;}
.y1fa{bottom:384.297085px;}
.y22e{bottom:385.827066px;}
.yc8{bottom:387.865500px;}
.y42{bottom:389.991945px;}
.y185{bottom:397.474500px;}
.yf4{bottom:397.476000px;}
.y6d{bottom:397.477500px;}
.y12c{bottom:397.902000px;}
.y166{bottom:398.070000px;}
.ya6{bottom:398.074500px;}
.y1c1{bottom:398.241187px;}
.y10a{bottom:398.407541px;}
.y1f9{bottom:398.582906px;}
.y22d{bottom:400.114087px;}
.y109{bottom:400.278318px;}
.y18a{bottom:402.322500px;}
.y176{bottom:403.512000px;}
.y1f{bottom:406.063500px;}
.yc7{bottom:407.424000px;}
.y22c{bottom:414.314710px;}
.y41{bottom:415.503626px;}
.yf3{bottom:417.034500px;}
.y6c{bottom:417.036000px;}
.y12b{bottom:417.460500px;}
.y165{bottom:417.628500px;}
.ya5{bottom:417.633000px;}
.y1c0{bottom:417.715744px;}
.y1f8{bottom:418.057463px;}
.y189{bottom:421.797000px;}
.y1e{bottom:427.068000px;}
.y1bf{bottom:432.001565px;}
.y1f7{bottom:432.343284px;}
.yc6{bottom:432.936000px;}
.y22b{bottom:433.874465px;}
.y184{bottom:436.507500px;}
.y6b{bottom:436.509000px;}
.y12a{bottom:436.933500px;}
.y164{bottom:437.101500px;}
.ya4{bottom:437.107500px;}
.y40{bottom:441.015307px;}
.y188{bottom:441.270000px;}
.y163{bottom:443.736000px;}
.y1f6{bottom:446.545107px;}
.y1d{bottom:448.072500px;}
.y22a{bottom:448.076288px;}
.y1be{bottom:451.476122px;}
.y102{bottom:455.469228px;}
.yf2{bottom:455.982000px;}
.y6a{bottom:455.983500px;}
.y129{bottom:456.408000px;}
.ya3{bottom:456.580500px;}
.y187{bottom:460.828500px;}
.y1bd{bottom:465.761943px;}
.y1f5{bottom:466.103662px;}
.y3f{bottom:466.526989px;}
.y229{bottom:467.549644px;}
.y1c{bottom:469.077000px;}
.yf1{bottom:475.540500px;}
.y69{bottom:475.542000px;}
.yc5{bottom:475.797000px;}
.y128{bottom:475.966500px;}
.ya2{bottom:476.139000px;}
.y1f4{bottom:480.305485px;}
.y228{bottom:481.836666px;}
.y1bc{bottom:485.236500px;}
.y186{bottom:486.340500px;}
.y117{bottom:490.674388px;}
.y3e{bottom:492.038670px;}
.y1b{bottom:494.589000px;}
.y1f3{bottom:494.592506px;}
.yf0{bottom:495.015000px;}
.y68{bottom:495.016500px;}
.yc4{bottom:495.270000px;}
.y127{bottom:495.441000px;}
.ya1{bottom:495.613500px;}
.y1bb{bottom:499.522321px;}
.y227{bottom:501.310022px;}
.y3d{bottom:508.536063px;}
.y1f2{bottom:514.065863px;}
.y183{bottom:514.488000px;}
.y67{bottom:514.489500px;}
.yc3{bottom:514.828500px;}
.y126{bottom:514.915500px;}
.ya0{bottom:515.088000px;}
.y226{bottom:515.597044px;}
.y10b{bottom:515.846473px;}
.y1ba{bottom:518.996878px;}
.y1f1{bottom:528.352884px;}
.y1b9{bottom:533.282699px;}
.yef{bottom:533.962500px;}
.y3c{bottom:533.962546px;}
.y66{bottom:533.964000px;}
.yc2{bottom:534.303000px;}
.y125{bottom:534.474000px;}
.y9f{bottom:534.646500px;}
.y225{bottom:535.070400px;}
.y1a{bottom:536.344500px;}
.y1b8{bottom:547.484522px;}
.y1f0{bottom:547.826241px;}
.y224{bottom:549.357422px;}
.y3b{bottom:550.545138px;}
.yee{bottom:553.521000px;}
.y65{bottom:553.522500px;}
.yc1{bottom:553.777500px;}
.y124{bottom:553.947000px;}
.y9e{bottom:554.119500px;}
.y19{bottom:557.349000px;}
.y1b7{bottom:561.771543px;}
.y1ef{bottom:562.113262px;}
.y3a{bottom:567.042532px;}
.y223{bottom:568.830778px;}
.y182{bottom:572.995500px;}
.y64{bottom:572.997000px;}
.yc0{bottom:573.336000px;}
.y123{bottom:573.421500px;}
.y9d{bottom:573.594000px;}
.y18{bottom:578.353500px;}
.yed{bottom:579.034425px;}
.y1b6{bottom:581.244900px;}
.y1ee{bottom:581.586619px;}
.y222{bottom:583.117800px;}
.y39{bottom:583.541126px;}
.y181{bottom:592.468500px;}
.y63{bottom:592.471500px;}
.ybf{bottom:592.809000px;}
.y122{bottom:592.896000px;}
.y9c{bottom:593.068500px;}
.y1b5{bottom:595.531921px;}
.y221{bottom:597.319622px;}
.y17{bottom:599.358000px;}
.y38{bottom:600.038520px;}
.y1ed{bottom:601.061175px;}
.y118{bottom:603.266580px;}
.yec{bottom:605.991000px;}
.y1b4{bottom:609.733744px;}
.y62{bottom:612.030000px;}
.y121{bottom:612.454500px;}
.y9b{bottom:612.627000px;}
.y1ec{bottom:615.346997px;}
.y36{bottom:616.535913px;}
.y220{bottom:616.792979px;}
.y37{bottom:616.875509px;}
.y180{bottom:617.980500px;}
.ybe{bottom:618.321000px;}
.y16{bottom:620.362500px;}
.y10c{bottom:624.356317px;}
.y1b3{bottom:629.292299px;}
.y21f{bottom:631.080000px;}
.y61{bottom:631.503000px;}
.y120{bottom:631.927500px;}
.y9a{bottom:632.101500px;}
.y34{bottom:633.033307px;}
.y35{bottom:633.372903px;}
.y1eb{bottom:634.821553px;}
.y1b2{bottom:643.494122px;}
.yeb{bottom:645.280500px;}
.y21e{bottom:645.365821px;}
.y15{bottom:645.874500px;}
.y1ea{bottom:649.107375px;}
.y60{bottom:650.977500px;}
.y99{bottom:651.574500px;}
.y33{bottom:657.609000px;}
.y1b1{bottom:657.779943px;}
.ybd{bottom:661.183500px;}
.y21d{bottom:664.840378px;}
.yea{bottom:664.840500px;}
.y1e9{bottom:668.581931px;}
.y5f{bottom:670.536000px;}
.y98{bottom:671.133000px;}
.y1b0{bottom:677.254500px;}
.y162{bottom:678.954319px;}
.y21c{bottom:679.041001px;}
.ybc{bottom:680.742000px;}
.y1e8{bottom:682.867753px;}
.ye9{bottom:684.313500px;}
.y5e{bottom:690.010500px;}
.y97{bottom:690.607500px;}
.y1af{bottom:691.540321px;}
.y1e7{bottom:697.069575px;}
.y21b{bottom:698.600756px;}
.y14{bottom:699.619500px;}
.ybb{bottom:700.216500px;}
.ye8{bottom:703.788000px;}
.y161{bottom:704.466000px;}
.y1ae{bottom:705.742143px;}
.y5d{bottom:709.483500px;}
.y160{bottom:709.824000px;}
.y96{bottom:710.082000px;}
.y21a{bottom:712.802578px;}
.y11f{bottom:716.283567px;}
.y10e{bottom:716.537964px;}
.y1e6{bottom:716.544132px;}
.yba{bottom:719.689500px;}
.y15f{bottom:722.494500px;}
.ye7{bottom:723.262500px;}
.y10d{bottom:724.957059px;}
.y1ad{bottom:725.215500px;}
.y219{bottom:727.088400px;}
.y15e{bottom:727.767000px;}
.y95{bottom:729.640500px;}
.y1e5{bottom:730.829953px;}
.y11d{bottom:732.100570px;}
.y119{bottom:732.695762px;}
.y5c{bottom:734.995500px;}
.yb9{bottom:739.164000px;}
.y15d{bottom:740.437500px;}
.ye6{bottom:742.821000px;}
.y32{bottom:744.520500px;}
.y1ac{bottom:745.540500px;}
.y15c{bottom:745.795500px;}
.y218{bottom:746.562956px;}
.y94{bottom:749.115000px;}
.y1e4{bottom:750.304510px;}
.y15b{bottom:758.466000px;}
.yb8{bottom:758.722500px;}
.y13{bottom:759.997049px;}
.y217{bottom:760.848778px;}
.y31{bottom:761.782500px;}
.ye5{bottom:762.294000px;}
.y1e3{bottom:764.590331px;}
.y10f{bottom:765.010158px;}
.y11a{bottom:766.456140px;}
.y93{bottom:768.588000px;}
.y12{bottom:774.964462px;}
.y216{bottom:775.050600px;}
.yb7{bottom:778.197000px;}
.y1e2{bottom:778.792154px;}
.y30{bottom:778.960500px;}
.ye4{bottom:781.768500px;}
.y15a{bottom:786.613500px;}
.y158{bottom:786.614443px;}
.y92{bottom:788.062500px;}
.y159{bottom:791.292000px;}
.y215{bottom:794.609156px;}
.y2f{bottom:796.224000px;}
.yb6{bottom:797.670000px;}
.y1e1{bottom:798.350709px;}
.ye3{bottom:801.327000px;}
.y157{bottom:803.877000px;}
.y155{bottom:803.877491px;}
.y10{bottom:804.983287px;}
.y11{bottom:805.238884px;}
.y91{bottom:807.621000px;}
.y156{bottom:808.470000px;}
.y214{bottom:808.810978px;}
.y1aa{bottom:813.148500px;}
.y2e{bottom:813.486000px;}
.y1ab{bottom:813.913500px;}
.yb5{bottom:817.228500px;}
.y1e0{bottom:817.825266px;}
.yf{bottom:819.949500px;}
.ye2{bottom:820.801500px;}
.y154{bottom:821.055000px;}
.y213{bottom:823.098000px;}
.y90{bottom:827.095500px;}
.y1df{bottom:832.112287px;}
.y1a8{bottom:832.621500px;}
.y1a9{bottom:833.388000px;}
.y152{bottom:838.318500px;}
.ye1{bottom:840.274500px;}
.y5b{bottom:840.955500px;}
.y212{bottom:842.571356px;}
.yb4{bottom:842.740500px;}
.y153{bottom:842.995500px;}
.y1de{bottom:846.312910px;}
.y8f{bottom:846.568500px;}
.yc{bottom:846.991500px;}
.y9{bottom:846.993000px;}
.yd{bottom:847.245300px;}
.ye{bottom:847.415400px;}
.ya{bottom:847.418250px;}
.yb{bottom:852.945000px;}
.y151{bottom:855.580500px;}
.y14f{bottom:855.581443px;}
.y211{bottom:856.858378px;}
.y11b{bottom:858.127794px;}
.y1a6{bottom:859.579500px;}
.y150{bottom:860.257500px;}
.y1a7{bottom:860.430000px;}
.y5a{bottom:861.960000px;}
.y6{bottom:863.490000px;}
.y8{bottom:863.913900px;}
.ye0{bottom:865.786500px;}
.y1dd{bottom:865.872665px;}
.y8e{bottom:866.127000px;}
.y7{bottom:869.442000px;}
.y210{bottom:871.059000px;}
.y14d{bottom:872.844000px;}
.y110{bottom:874.965984px;}
.y14e{bottom:877.521000px;}
.y1dc{bottom:880.073288px;}
.y59{bottom:882.964500px;}
.y20f{bottom:885.346022px;}
.y8d{bottom:885.601500px;}
.y1a4{bottom:886.621500px;}
.y111{bottom:887.041433px;}
.y1a5{bottom:887.386500px;}
.y14b{bottom:890.107500px;}
.y14c{bottom:894.784500px;}
.y1db{bottom:899.547844px;}
.y5{bottom:900.993000px;}
.y20e{bottom:904.820578px;}
.y8c{bottom:905.076000px;}
.y14a{bottom:907.369500px;}
.y148{bottom:907.369991px;}
.y58{bottom:908.391000px;}
.y149{bottom:911.962500px;}
.y1a2{bottom:913.579500px;}
.y1da{bottom:913.833666px;}
.y1a3{bottom:914.430000px;}
.y20d{bottom:919.106400px;}
.y147{bottom:924.547500px;}
.y145{bottom:924.548443px;}
.y8b{bottom:924.634500px;}
.y146{bottom:929.224500px;}
.y1a0{bottom:933.138000px;}
.y1d9{bottom:933.308222px;}
.y1a1{bottom:933.903000px;}
.y4{bottom:934.670100px;}
.y144{bottom:941.811000px;}
.y8a{bottom:944.109000px;}
.y1d8{bottom:947.595244px;}
.y20c{bottom:952.866778px;}
.y57{bottom:956.608500px;}
.y143{bottom:959.074500px;}
.y141{bottom:959.075273px;}
.y19e{bottom:960.094500px;}
.y19f{bottom:960.861000px;}
.y11c{bottom:963.320879px;}
.y89{bottom:963.582000px;}
.y142{bottom:963.751500px;}
.y1d7{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y140{bottom:976.337830px;}
.y56{bottom:977.613000px;}
.y1d6{bottom:981.355622px;}
.y88{bottom:983.140500px;}
.y112{bottom:984.666213px;}
.y19c{bottom:987.138000px;}
.y19d{bottom:987.903000px;}
.y83{bottom:988.067124px;}
.y113{bottom:991.809723px;}
.y13f{bottom:993.600386px;}
.y55{bottom:998.617500px;}
.y1d5{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y87{bottom:1002.615000px;}
.y82{bottom:1004.564518px;}
.y13e{bottom:1010.862943px;}
.y11e{bottom:1012.473465px;}
.y19a{bottom:1014.094500px;}
.y19b{bottom:1014.859500px;}
.y1d4{bottom:1015.116000px;}
.y54{bottom:1019.622000px;}
.y86{bottom:1022.089500px;}
.y13d{bottom:1028.125500px;}
.y20b{bottom:1029.316622px;}
.y81{bottom:1030.076199px;}
.y198{bottom:1033.653000px;}
.y199{bottom:1034.418000px;}
.y1d3{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y53{bottom:1040.626500px;}
.y85{bottom:1041.562500px;}
.y80{bottom:1046.574793px;}
.y13c{bottom:1048.791179px;}
.y197{bottom:1059.079500px;}
.y84{bottom:1061.121000px;}
.y52{bottom:1061.631000px;}
.y7f{bottom:1063.072186px;}
.y13b{bottom:1063.077000px;}
.y2b{bottom:1107.042000px;}
.y7c{bottom:1114.101000px;}
.y7e{bottom:1118.692500px;}
.h11{height:18.538650px;}
.h17{height:20.997450px;}
.h1a{height:23.308857px;}
.h18{height:23.996250px;}
.h4{height:27.932275px;}
.h19{height:29.996550px;}
.h16{height:31.499100px;}
.h15{height:33.743578px;}
.ha{height:34.781100px;}
.hd{height:34.968313px;}
.h14{height:35.999550px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hf{height:39.119511px;}
.he{height:40.559493px;}
.h3{height:41.904000px;}
.h9{height:44.175000px;}
.hc{height:45.000000px;}
.h12{height:52.800000px;}
.h8{height:53.543069px;}
.h13{height:53.999550px;}
.h10{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.hb{height:99.071616px;}
.h0{height:1188.000000px;}
.w2{width:84.784200px;}
.w1{width:160.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:45.921150px;}
.x13{left:52.044150px;}
.x14{left:54.000000px;}
.x47{left:61.823550px;}
.x15{left:71.433000px;}
.x1d{left:73.472806px;}
.x1e{left:87.674628px;}
.x1f{left:92.181772px;}
.x48{left:102.301444px;}
.x20{left:106.468793px;}
.x21{left:120.669416px;}
.x22{left:134.956437px;}
.x49{left:149.583253px;}
.x23{left:153.665403px;}
.x24{left:167.951225px;}
.x25{left:182.238246px;}
.x17{left:195.504249px;}
.x4a{left:196.779863px;}
.x16{left:203.582548px;}
.x26{left:210.725890px;}
.x27{left:224.927712px;}
.x1b{left:228.330000px;}
.x28{left:239.214734px;}
.x18{left:242.361263px;}
.x29{left:253.415356px;}
.x2a{left:267.702378px;}
.x2b{left:281.904200px;}
.x2c{left:296.190022px;}
.x1{left:300.018000px;}
.x7c{left:304.270500px;}
.x8c{left:307.332000px;}
.x2d{left:310.477043px;}
.x19{left:317.961000px;}
.xb{left:324.086250px;}
.x4b{left:325.103859px;}
.x6a{left:328.846500px;}
.x8d{left:332.247289px;}
.x2e{left:338.964687px;}
.xc{left:350.617500px;}
.x2f{left:353.166509px;}
.xd{left:356.230500px;}
.x92{left:361.842137px;}
.x30{left:367.452331px;}
.x95{left:369.070500px;}
.x8a{left:376.212000px;}
.x96{left:378.255000px;}
.x2{left:381.741000px;}
.x1a{left:385.738500px;}
.x8e{left:390.500179px;}
.x3{left:394.837500px;}
.x31{left:395.941175px;}
.xe{left:401.980650px;}
.x32{left:410.226996px;}
.x67{left:413.969948px;}
.x5e{left:415.075134px;}
.x4{left:417.796950px;}
.x33{left:424.428819px;}
.x80{left:428.256000px;}
.x5c{left:429.276957px;}
.x7d{left:430.554000px;}
.x68{left:431.912124px;}
.x4c{left:439.055635px;}
.x8f{left:441.863136px;}
.x34{left:443.222984px;}
.xf{left:452.409900px;}
.x35{left:457.423606px;}
.x69{left:458.954986px;}
.x12{left:463.461957px;}
.x83{left:466.438500px;}
.x4d{left:467.544478px;}
.x36{left:471.710628px;}
.x8b{left:481.320000px;}
.x81{left:483.531000px;}
.x37{left:485.912450px;}
.x6b{left:495.690933px;}
.x38{left:500.198271px;}
.x6c{left:510.406500px;}
.x39{left:514.485293px;}
.x84{left:515.931000px;}
.x7e{left:520.015500px;}
.x7b{left:523.758000px;}
.x3a{left:528.687115px;}
.x7f{left:532.516500px;}
.x6d{left:537.108000px;}
.x10{left:542.892000px;}
.x90{left:546.291831px;}
.x11{left:548.419500px;}
.x5{left:557.346450px;}
.x87{left:560.661000px;}
.x3b{left:571.461781px;}
.x88{left:578.859000px;}
.x6{left:581.074500px;}
.x3c{left:585.662403px;}
.x6e{left:586.941000px;}
.x60{left:590.595740px;}
.x7{left:594.085500px;}
.x3d{left:599.949425px;}
.x61{left:604.796363px;}
.x91{left:612.707401px;}
.x3e{left:614.236446px;}
.x62{left:619.083384px;}
.x93{left:620.785700px;}
.x85{left:627.417000px;}
.x3f{left:628.437068px;}
.x82{left:631.329000px;}
.x63{left:633.285207px;}
.x40{left:642.724090px;}
.x64{left:647.571028px;}
.x41{left:656.925912px;}
.x76{left:660.670500px;}
.x65{left:661.772851px;}
.x6f{left:664.413000px;}
.x70{left:668.154000px;}
.x42{left:671.211734px;}
.x7a{left:674.107500px;}
.x66{left:676.059872px;}
.x79{left:682.441500px;}
.x71{left:683.716500px;}
.x43{left:685.413556px;}
.x77{left:687.457500px;}
.x4e{left:690.345693px;}
.x5d{left:693.322856px;}
.x44{left:699.700578px;}
.x4f{left:704.547516px;}
.x89{left:710.839500px;}
.x45{left:713.986399px;}
.x50{left:718.834537px;}
.x51{left:733.035160px;}
.x46{left:735.671328px;}
.x72{left:742.393500px;}
.x52{left:747.322181px;}
.x8{left:751.578000px;}
.x9{left:757.105500px;}
.x53{left:761.524004px;}
.xa{left:772.666950px;}
.x54{left:775.809825px;}
.x55{left:790.096846px;}
.x56{left:804.298669px;}
.x94{left:807.106171px;}
.x73{left:811.020000px;}
.x74{left:814.762500px;}
.x57{left:818.584490px;}
.x78{left:824.371500px;}
.x58{left:832.786313px;}
.x75{left:837.723000px;}
.x86{left:844.690500px;}
.x59{left:847.073334px;}
.x5f{left:854.556441px;}
.x5a{left:861.273957px;}
.x5b{left:883.044085px;}
@media print{
.v2{vertical-align:-6.957333pt;}
.v3{vertical-align:-2.720000pt;}
.v1{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.123200pt;}
.ls12{letter-spacing:-1.067200pt;}
.ls16{letter-spacing:-1.066653pt;}
.ls1f{letter-spacing:-0.800000pt;}
.ls45{letter-spacing:-0.639992pt;}
.ls13{letter-spacing:-0.214663pt;}
.ls15{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.213331pt;}
.ls14{letter-spacing:-0.212800pt;}
.ls10{letter-spacing:-0.211997pt;}
.lse{letter-spacing:-0.211200pt;}
.ls1c{letter-spacing:-0.211198pt;}
.ls4a{letter-spacing:-0.190548pt;}
.lsf{letter-spacing:-0.188775pt;}
.ls3b{letter-spacing:-0.188423pt;}
.ls11{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.704000pt;}
.ls41{letter-spacing:1.002667pt;}
.ls44{letter-spacing:1.008000pt;}
.lsa{letter-spacing:1.211718pt;}
.ls8{letter-spacing:1.215985pt;}
.ls9{letter-spacing:2.423436pt;}
.ls43{letter-spacing:2.821333pt;}
.ls3{letter-spacing:3.181867pt;}
.ls49{letter-spacing:4.232480pt;}
.ls46{letter-spacing:4.236747pt;}
.ls48{letter-spacing:4.535410pt;}
.ls47{letter-spacing:4.539677pt;}
.ls4{letter-spacing:4.876800pt;}
.ls1{letter-spacing:4.881600pt;}
.ls0{letter-spacing:5.184000pt;}
.ls2{letter-spacing:6.388800pt;}
.lsb{letter-spacing:8.396695pt;}
.ls31{letter-spacing:8.620020pt;}
.ls6{letter-spacing:9.117753pt;}
.ls2d{letter-spacing:9.194552pt;}
.ls7{letter-spacing:9.232951pt;}
.ls28{letter-spacing:9.476148pt;}
.ls29{letter-spacing:9.659613pt;}
.ls2a{letter-spacing:9.693745pt;}
.ls2b{letter-spacing:9.749211pt;}
.ls26{letter-spacing:9.779078pt;}
.ls27{letter-spacing:9.783344pt;}
.ls3f{letter-spacing:10.880000pt;}
.ls3c{letter-spacing:10.890667pt;}
.ls38{letter-spacing:11.194667pt;}
.ls1b{letter-spacing:11.200000pt;}
.ls23{letter-spacing:11.434667pt;}
.ls2c{letter-spacing:11.440000pt;}
.ls3d{letter-spacing:11.482667pt;}
.ls3e{letter-spacing:11.488000pt;}
.ls1a{letter-spacing:11.493333pt;}
.ls17{letter-spacing:11.498667pt;}
.ls25{letter-spacing:11.504000pt;}
.ls40{letter-spacing:11.541333pt;}
.ls21{letter-spacing:11.557333pt;}
.ls1d{letter-spacing:11.562667pt;}
.ls39{letter-spacing:11.568000pt;}
.ls3a{letter-spacing:11.594667pt;}
.ls20{letter-spacing:11.600000pt;}
.ls32{letter-spacing:11.626667pt;}
.ls34{letter-spacing:11.733333pt;}
.ls24{letter-spacing:11.738667pt;}
.ls18{letter-spacing:11.797333pt;}
.ls22{letter-spacing:11.802667pt;}
.ls33{letter-spacing:11.808000pt;}
.ls35{letter-spacing:11.845333pt;}
.ls36{letter-spacing:11.850667pt;}
.ls19{letter-spacing:11.861333pt;}
.ls1e{letter-spacing:11.866667pt;}
.ls37{letter-spacing:11.925333pt;}
.ls5{letter-spacing:18.474436pt;}
.ls2f{letter-spacing:162.735084pt;}
.ls30{letter-spacing:188.132225pt;}
.ls2e{letter-spacing:649.230517pt;}
.ws22{word-spacing:-33.023872pt;}
.ws26{word-spacing:-22.442386pt;}
.wsfd{word-spacing:-21.333067pt;}
.ws57{word-spacing:-14.954667pt;}
.ws179{word-spacing:-14.784000pt;}
.ws175{word-spacing:-14.517333pt;}
.wsa{word-spacing:-13.488000pt;}
.wsc{word-spacing:-13.276800pt;}
.ws194{word-spacing:-12.213333pt;}
.ws11{word-spacing:-11.989183pt;}
.ws13{word-spacing:-11.775853pt;}
.ws139{word-spacing:-11.404657pt;}
.ws1bf{word-spacing:-11.349191pt;}
.ws13a{word-spacing:-11.276659pt;}
.wsd0{word-spacing:-9.770545pt;}
.ws30{word-spacing:-9.599880pt;}
.wsb4{word-spacing:-9.301217pt;}
.ws192{word-spacing:-3.763169pt;}
.ws191{word-spacing:-3.628770pt;}
.ws1b2{word-spacing:-3.127428pt;}
.ws1dd{word-spacing:-3.110361pt;}
.ws1cc{word-spacing:-3.084761pt;}
.ws1e9{word-spacing:-3.054895pt;}
.ws1c5{word-spacing:-3.046362pt;}
.ws1bd{word-spacing:-3.025029pt;}
.ws1c1{word-spacing:-3.016496pt;}
.wsf{word-spacing:-3.007962pt;}
.ws1ec{word-spacing:-2.995163pt;}
.ws1b8{word-spacing:-2.990896pt;}
.ws1a8{word-spacing:-2.986629pt;}
.ws1ae{word-spacing:-2.982363pt;}
.ws21{word-spacing:-2.979200pt;}
.ws1c8{word-spacing:-2.973829pt;}
.ws9{word-spacing:-2.971200pt;}
.ws1d7{word-spacing:-2.969563pt;}
.ws1e4{word-spacing:-2.961030pt;}
.ws1b6{word-spacing:-2.956763pt;}
.ws16{word-spacing:-2.953867pt;}
.ws1c6{word-spacing:-2.952496pt;}
.ws1e3{word-spacing:-2.948230pt;}
.ws6{word-spacing:-2.947200pt;}
.ws1bb{word-spacing:-2.939697pt;}
.ws1e5{word-spacing:-2.935430pt;}
.ws48{word-spacing:-2.923467pt;}
.ws1e{word-spacing:-2.918400pt;}
.ws1d1{word-spacing:-2.918364pt;}
.ws19f{word-spacing:-2.914097pt;}
.ws1df{word-spacing:-2.909830pt;}
.ws10{word-spacing:-2.901297pt;}
.ws1a3{word-spacing:-2.897030pt;}
.ws18{word-spacing:-2.893067pt;}
.ws1af{word-spacing:-2.892764pt;}
.ws8{word-spacing:-2.889600pt;}
.ws1ca{word-spacing:-2.888497pt;}
.ws14{word-spacing:-2.888000pt;}
.ws1c7{word-spacing:-2.884231pt;}
.ws19d{word-spacing:-2.879964pt;}
.ws1c4{word-spacing:-2.875697pt;}
.ws68{word-spacing:-2.871431pt;}
.ws1d9{word-spacing:-2.867164pt;}
.ws1ab{word-spacing:-2.862898pt;}
.ws1cf{word-spacing:-2.858631pt;}
.ws47{word-spacing:-2.857600pt;}
.ws1ce{word-spacing:-2.854364pt;}
.ws1e1{word-spacing:-2.850098pt;}
.ws1ac{word-spacing:-2.841564pt;}
.ws1b0{word-spacing:-2.837298pt;}
.ws1ea{word-spacing:-2.833031pt;}
.ws1c2{word-spacing:-2.828765pt;}
.ws1ad{word-spacing:-2.824498pt;}
.ws1b{word-spacing:-2.822133pt;}
.ws7{word-spacing:-2.817600pt;}
.ws13e{word-spacing:-2.815965pt;}
.ws1d4{word-spacing:-2.811698pt;}
.ws12{word-spacing:-2.807432pt;}
.ws15{word-spacing:-2.806933pt;}
.ws1d6{word-spacing:-2.803165pt;}
.ws1b4{word-spacing:-2.798898pt;}
.ws1bc{word-spacing:-2.781832pt;}
.ws49{word-spacing:-2.781600pt;}
.ws23{word-spacing:-2.777565pt;}
.ws1aa{word-spacing:-2.773299pt;}
.ws1cd{word-spacing:-2.769032pt;}
.ws20{word-spacing:-2.766400pt;}
.ws1eb{word-spacing:-2.756232pt;}
.ws2{word-spacing:-2.755200pt;}
.ws1b3{word-spacing:-2.747699pt;}
.ws1b7{word-spacing:-2.743432pt;}
.ws1d0{word-spacing:-2.739166pt;}
.ws1e8{word-spacing:-2.730633pt;}
.ws1dc{word-spacing:-2.726366pt;}
.ws1a{word-spacing:-2.720800pt;}
.ws1e6{word-spacing:-2.713566pt;}
.ws1da{word-spacing:-2.709299pt;}
.ws19{word-spacing:-2.705600pt;}
.ws4a{word-spacing:-2.695467pt;}
.ws4{word-spacing:-2.688000pt;}
.ws1a5{word-spacing:-2.683700pt;}
.ws5{word-spacing:-2.668800pt;}
.wse{word-spacing:-2.653833pt;}
.ws17{word-spacing:-2.649867pt;}
.ws1e7{word-spacing:-2.645300pt;}
.ws1e0{word-spacing:-2.641034pt;}
.ws1{word-spacing:-2.640000pt;}
.ws1d{word-spacing:-2.639733pt;}
.ws1c9{word-spacing:-2.628234pt;}
.wsb{word-spacing:-2.625600pt;}
.ws25{word-spacing:-2.623967pt;}
.ws1b9{word-spacing:-2.615434pt;}
.ws4b{word-spacing:-2.614400pt;}
.ws3{word-spacing:-2.611200pt;}
.ws1db{word-spacing:-2.611167pt;}
.ws1d8{word-spacing:-2.602634pt;}
.ws1c3{word-spacing:-2.594101pt;}
.ws1a1{word-spacing:-2.589834pt;}
.ws1c0{word-spacing:-2.581301pt;}
.ws1c{word-spacing:-2.573867pt;}
.ws1a2{word-spacing:-2.572768pt;}
.ws1d5{word-spacing:-2.568501pt;}
.ws1d2{word-spacing:-2.555701pt;}
.ws1d3{word-spacing:-2.542902pt;}
.ws1a6{word-spacing:-2.525835pt;}
.ws1e2{word-spacing:-2.521568pt;}
.wsd{word-spacing:-2.517302pt;}
.ws1b5{word-spacing:-2.513035pt;}
.ws1a7{word-spacing:-2.500235pt;}
.ws1be{word-spacing:-2.491702pt;}
.ws1de{word-spacing:-2.470369pt;}
.ws1cb{word-spacing:-2.466103pt;}
.ws1a0{word-spacing:-2.457569pt;}
.ws1a4{word-spacing:-2.444769pt;}
.ws1a9{word-spacing:-2.440503pt;}
.ws1f{word-spacing:-2.421867pt;}
.ws19e{word-spacing:-2.389303pt;}
.ws0{word-spacing:-2.355171pt;}
.ws2f{word-spacing:-0.981321pt;}
.ws3b{word-spacing:-0.938655pt;}
.ws17e{word-spacing:-0.928000pt;}
.ws157{word-spacing:-0.890667pt;}
.ws181{word-spacing:-0.816000pt;}
.ws3e{word-spacing:-0.814923pt;}
.ws38{word-spacing:-0.793590pt;}
.ws2c{word-spacing:-0.789323pt;}
.ws35{word-spacing:-0.780790pt;}
.ws6a{word-spacing:-0.763724pt;}
.ws40{word-spacing:-0.725324pt;}
.ws33{word-spacing:-0.703991pt;}
.wsaa{word-spacing:-0.693333pt;}
.ws2e{word-spacing:-0.691191pt;}
.ws37{word-spacing:-0.661325pt;}
.ws42{word-spacing:-0.657058pt;}
.ws182{word-spacing:-0.650667pt;}
.ws3a{word-spacing:-0.644259pt;}
.ws45{word-spacing:-0.635725pt;}
.ws135{word-spacing:-0.631459pt;}
.ws66{word-spacing:-0.624000pt;}
.ws141{word-spacing:-0.605859pt;}
.ws3c{word-spacing:-0.601592pt;}
.ws3f{word-spacing:-0.597326pt;}
.wsab{word-spacing:-0.592000pt;}
.ws32{word-spacing:-0.588793pt;}
.ws12d{word-spacing:-0.575993pt;}
.ws39{word-spacing:-0.563193pt;}
.ws18d{word-spacing:-0.554667pt;}
.ws27{word-spacing:-0.554660pt;}
.ws2d{word-spacing:-0.546127pt;}
.ws41{word-spacing:-0.541860pt;}
.ws149{word-spacing:-0.529060pt;}
.ws171{word-spacing:-0.528000pt;}
.ws2a{word-spacing:-0.524793pt;}
.ws6e{word-spacing:-0.522667pt;}
.ws143{word-spacing:-0.511994pt;}
.ws31{word-spacing:-0.507727pt;}
.ws17c{word-spacing:-0.506667pt;}
.ws145{word-spacing:-0.503460pt;}
.ws10e{word-spacing:-0.499194pt;}
.ws17d{word-spacing:-0.496000pt;}
.ws44{word-spacing:-0.494927pt;}
.ws28{word-spacing:-0.490661pt;}
.ws108{word-spacing:-0.486394pt;}
.wsa0{word-spacing:-0.482127pt;}
.ws82{word-spacing:-0.474667pt;}
.ws16d{word-spacing:-0.473594pt;}
.ws150{word-spacing:-0.469333pt;}
.ws34{word-spacing:-0.469327pt;}
.ws113{word-spacing:-0.465061pt;}
.ws83{word-spacing:-0.464000pt;}
.wsec{word-spacing:-0.460794pt;}
.ws7b{word-spacing:-0.458667pt;}
.wsf2{word-spacing:-0.456528pt;}
.ws176{word-spacing:-0.453333pt;}
.wse3{word-spacing:-0.447994pt;}
.ws36{word-spacing:-0.443728pt;}
.wsa5{word-spacing:-0.442667pt;}
.wseb{word-spacing:-0.439461pt;}
.ws43{word-spacing:-0.435195pt;}
.ws170{word-spacing:-0.432000pt;}
.wse5{word-spacing:-0.430928pt;}
.ws12c{word-spacing:-0.426661pt;}
.ws128{word-spacing:-0.422395pt;}
.ws56{word-spacing:-0.421333pt;}
.ws3d{word-spacing:-0.418128pt;}
.ws64{word-spacing:-0.416000pt;}
.ws12b{word-spacing:-0.413861pt;}
.ws195{word-spacing:-0.410667pt;}
.ws69{word-spacing:-0.409595pt;}
.ws180{word-spacing:-0.405333pt;}
.ws13d{word-spacing:-0.405328pt;}
.wsf0{word-spacing:-0.401062pt;}
.ws65{word-spacing:-0.400000pt;}
.ws144{word-spacing:-0.396795pt;}
.ws13f{word-spacing:-0.392528pt;}
.wse7{word-spacing:-0.388262pt;}
.ws5c{word-spacing:-0.384000pt;}
.wsbc{word-spacing:-0.383995pt;}
.wsc0{word-spacing:-0.379729pt;}
.ws52{word-spacing:-0.378667pt;}
.ws127{word-spacing:-0.375462pt;}
.ws153{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.371195pt;}
.ws58{word-spacing:-0.368000pt;}
.ws11c{word-spacing:-0.366929pt;}
.ws16e{word-spacing:-0.362667pt;}
.ws9f{word-spacing:-0.362662pt;}
.ws100{word-spacing:-0.358396pt;}
.ws5b{word-spacing:-0.357333pt;}
.wsfc{word-spacing:-0.354129pt;}
.ws63{word-spacing:-0.352000pt;}
.wscb{word-spacing:-0.349862pt;}
.ws70{word-spacing:-0.346667pt;}
.wsff{word-spacing:-0.345596pt;}
.ws5e{word-spacing:-0.341333pt;}
.ws102{word-spacing:-0.341329pt;}
.ws130{word-spacing:-0.337062pt;}
.ws77{word-spacing:-0.336000pt;}
.wse4{word-spacing:-0.332796pt;}
.ws85{word-spacing:-0.330667pt;}
.wsd4{word-spacing:-0.328529pt;}
.ws71{word-spacing:-0.325333pt;}
.wscf{word-spacing:-0.324263pt;}
.ws4c{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.319996pt;}
.wsdb{word-spacing:-0.315729pt;}
.ws6c{word-spacing:-0.314667pt;}
.ws11d{word-spacing:-0.311463pt;}
.ws8e{word-spacing:-0.309333pt;}
.ws11a{word-spacing:-0.307196pt;}
.ws7a{word-spacing:-0.304000pt;}
.wse9{word-spacing:-0.302930pt;}
.ws154{word-spacing:-0.298667pt;}
.wsdc{word-spacing:-0.298663pt;}
.ws79{word-spacing:-0.293333pt;}
.wsc4{word-spacing:-0.290130pt;}
.ws87{word-spacing:-0.288000pt;}
.wsa4{word-spacing:-0.282667pt;}
.wsf9{word-spacing:-0.281596pt;}
.ws60{word-spacing:-0.277333pt;}
.wse6{word-spacing:-0.277330pt;}
.wsbb{word-spacing:-0.273063pt;}
.ws86{word-spacing:-0.272000pt;}
.ws103{word-spacing:-0.268797pt;}
.ws9d{word-spacing:-0.266667pt;}
.ws9e{word-spacing:-0.264530pt;}
.wsa9{word-spacing:-0.261333pt;}
.ws101{word-spacing:-0.260263pt;}
.ws72{word-spacing:-0.256000pt;}
.ws147{word-spacing:-0.255997pt;}
.wsea{word-spacing:-0.251730pt;}
.ws4f{word-spacing:-0.250667pt;}
.ws12e{word-spacing:-0.247464pt;}
.ws61{word-spacing:-0.245333pt;}
.wsc9{word-spacing:-0.243197pt;}
.wsce{word-spacing:-0.238930pt;}
.ws99{word-spacing:-0.234667pt;}
.ws107{word-spacing:-0.230397pt;}
.wsa7{word-spacing:-0.229333pt;}
.wse1{word-spacing:-0.226131pt;}
.ws54{word-spacing:-0.224000pt;}
.wse8{word-spacing:-0.221864pt;}
.ws80{word-spacing:-0.218667pt;}
.wsb7{word-spacing:-0.217597pt;}
.ws151{word-spacing:-0.213333pt;}
.wsdd{word-spacing:-0.213331pt;}
.wsed{word-spacing:-0.209064pt;}
.ws5a{word-spacing:-0.208000pt;}
.wsf6{word-spacing:-0.204797pt;}
.ws55{word-spacing:-0.202667pt;}
.ws12f{word-spacing:-0.200531pt;}
.ws17f{word-spacing:-0.197333pt;}
.wsdf{word-spacing:-0.196264pt;}
.ws81{word-spacing:-0.192000pt;}
.ws10c{word-spacing:-0.191998pt;}
.wse2{word-spacing:-0.187731pt;}
.ws16f{word-spacing:-0.186667pt;}
.wsb8{word-spacing:-0.183464pt;}
.ws5d{word-spacing:-0.181333pt;}
.wsc7{word-spacing:-0.179198pt;}
.wsa8{word-spacing:-0.176000pt;}
.wsee{word-spacing:-0.174931pt;}
.ws51{word-spacing:-0.170667pt;}
.ws123{word-spacing:-0.170665pt;}
.ws10a{word-spacing:-0.166398pt;}
.ws9a{word-spacing:-0.165333pt;}
.ws10f{word-spacing:-0.162131pt;}
.ws6d{word-spacing:-0.160000pt;}
.wsd1{word-spacing:-0.157865pt;}
.ws84{word-spacing:-0.154667pt;}
.wsc2{word-spacing:-0.153598pt;}
.ws156{word-spacing:-0.149333pt;}
.wsba{word-spacing:-0.149331pt;}
.wsc6{word-spacing:-0.145065pt;}
.ws92{word-spacing:-0.144000pt;}
.ws11f{word-spacing:-0.140798pt;}
.ws6f{word-spacing:-0.138667pt;}
.wsd2{word-spacing:-0.136532pt;}
.ws18a{word-spacing:-0.133333pt;}
.wsc5{word-spacing:-0.132265pt;}
.ws152{word-spacing:-0.128000pt;}
.ws119{word-spacing:-0.127998pt;}
.ws131{word-spacing:-0.123732pt;}
.ws183{word-spacing:-0.122667pt;}
.wsf5{word-spacing:-0.119465pt;}
.ws4e{word-spacing:-0.117333pt;}
.wsfb{word-spacing:-0.115199pt;}
.ws155{word-spacing:-0.112000pt;}
.ws14b{word-spacing:-0.110932pt;}
.ws19a{word-spacing:-0.106667pt;}
.wsc1{word-spacing:-0.106665pt;}
.ws29{word-spacing:-0.102399pt;}
.ws78{word-spacing:-0.101333pt;}
.ws118{word-spacing:-0.098132pt;}
.wsde{word-spacing:-0.093865pt;}
.ws187{word-spacing:-0.090667pt;}
.wscd{word-spacing:-0.089599pt;}
.ws98{word-spacing:-0.085333pt;}
.wse0{word-spacing:-0.085332pt;}
.wsef{word-spacing:-0.081066pt;}
.ws50{word-spacing:-0.080000pt;}
.wsc3{word-spacing:-0.076799pt;}
.ws88{word-spacing:-0.074667pt;}
.ws109{word-spacing:-0.072532pt;}
.wsfa{word-spacing:-0.068266pt;}
.ws112{word-spacing:-0.063999pt;}
.ws53{word-spacing:-0.058667pt;}
.wsf3{word-spacing:-0.055466pt;}
.ws7f{word-spacing:-0.053333pt;}
.wsd3{word-spacing:-0.051199pt;}
.ws5f{word-spacing:-0.048000pt;}
.ws10b{word-spacing:-0.046933pt;}
.ws6b{word-spacing:-0.042667pt;}
.ws110{word-spacing:-0.038400pt;}
.ws59{word-spacing:-0.037333pt;}
.ws14a{word-spacing:-0.034133pt;}
.ws75{word-spacing:-0.032000pt;}
.ws185{word-spacing:-0.026667pt;}
.ws140{word-spacing:-0.025600pt;}
.ws178{word-spacing:-0.021333pt;}
.ws125{word-spacing:-0.017066pt;}
.wsa1{word-spacing:-0.016000pt;}
.wsc8{word-spacing:-0.012800pt;}
.ws67{word-spacing:-0.010667pt;}
.ws115{word-spacing:-0.008533pt;}
.ws18e{word-spacing:-0.005333pt;}
.ws46{word-spacing:0.000000pt;}
.ws11e{word-spacing:0.004267pt;}
.ws9c{word-spacing:0.010667pt;}
.ws174{word-spacing:0.016000pt;}
.wsbd{word-spacing:0.017066pt;}
.wsa2{word-spacing:0.021333pt;}
.wsf8{word-spacing:0.025600pt;}
.wsac{word-spacing:0.029866pt;}
.ws76{word-spacing:0.032000pt;}
.ws120{word-spacing:0.034133pt;}
.ws177{word-spacing:0.037333pt;}
.ws114{word-spacing:0.038400pt;}
.ws172{word-spacing:0.042667pt;}
.ws186{word-spacing:0.048000pt;}
.ws132{word-spacing:0.051199pt;}
.ws8b{word-spacing:0.053333pt;}
.ws184{word-spacing:0.058667pt;}
.wsca{word-spacing:0.059733pt;}
.ws8a{word-spacing:0.064000pt;}
.ws4d{word-spacing:0.074667pt;}
.ws7e{word-spacing:0.080000pt;}
.ws13c{word-spacing:0.085332pt;}
.wsa6{word-spacing:0.085333pt;}
.ws8d{word-spacing:0.090667pt;}
.ws104{word-spacing:0.093865pt;}
.ws62{word-spacing:0.096000pt;}
.wscc{word-spacing:0.098132pt;}
.ws73{word-spacing:0.101333pt;}
.wsb6{word-spacing:0.102399pt;}
.ws134{word-spacing:0.106665pt;}
.ws126{word-spacing:0.110932pt;}
.ws89{word-spacing:0.112000pt;}
.ws138{word-spacing:0.115199pt;}
.ws74{word-spacing:0.117333pt;}
.ws121{word-spacing:0.119465pt;}
.ws188{word-spacing:0.122667pt;}
.wsbf{word-spacing:0.123732pt;}
.ws14f{word-spacing:0.127998pt;}
.wsf4{word-spacing:0.132265pt;}
.ws18c{word-spacing:0.138667pt;}
.ws18f{word-spacing:0.144000pt;}
.wsfe{word-spacing:0.153598pt;}
.ws10d{word-spacing:0.157865pt;}
.wsb3{word-spacing:0.174931pt;}
.ws190{word-spacing:0.176000pt;}
.wsd8{word-spacing:0.187731pt;}
.ws7d{word-spacing:0.192000pt;}
.ws137{word-spacing:0.196264pt;}
.wsd5{word-spacing:0.200531pt;}
.wsf1{word-spacing:0.204797pt;}
.ws17b{word-spacing:0.208000pt;}
.wsaf{word-spacing:0.209064pt;}
.ws97{word-spacing:0.211198pt;}
.wsb9{word-spacing:0.213331pt;}
.ws8f{word-spacing:0.217598pt;}
.ws148{word-spacing:0.221864pt;}
.ws9b{word-spacing:0.224000pt;}
.wsd6{word-spacing:0.226131pt;}
.wsa3{word-spacing:0.230398pt;}
.ws133{word-spacing:0.234664pt;}
.ws106{word-spacing:0.238930pt;}
.ws18b{word-spacing:0.245333pt;}
.ws8c{word-spacing:0.256000pt;}
.wsda{word-spacing:0.260263pt;}
.ws165{word-spacing:0.261326pt;}
.ws7c{word-spacing:0.266667pt;}
.wsb0{word-spacing:0.281596pt;}
.ws94{word-spacing:0.282667pt;}
.ws158{word-spacing:0.285863pt;}
.ws122{word-spacing:0.294396pt;}
.ws142{word-spacing:0.302930pt;}
.ws19b{word-spacing:0.304000pt;}
.ws13b{word-spacing:0.319996pt;}
.ws129{word-spacing:0.341329pt;}
.ws117{word-spacing:0.345596pt;}
.ws146{word-spacing:0.349862pt;}
.ws189{word-spacing:0.351997pt;}
.ws116{word-spacing:0.358396pt;}
.ws111{word-spacing:0.362662pt;}
.ws173{word-spacing:0.362667pt;}
.ws105{word-spacing:0.375462pt;}
.ws91{word-spacing:0.378667pt;}
.ws14c{word-spacing:0.379729pt;}
.wsd9{word-spacing:0.383995pt;}
.ws93{word-spacing:0.384000pt;}
.ws96{word-spacing:0.394667pt;}
.ws11b{word-spacing:0.401062pt;}
.wsb5{word-spacing:0.405328pt;}
.ws196{word-spacing:0.426667pt;}
.ws14d{word-spacing:0.430928pt;}
.wsf7{word-spacing:0.435195pt;}
.ws15f{word-spacing:0.440521pt;}
.ws136{word-spacing:0.452261pt;}
.wsb1{word-spacing:0.465061pt;}
.ws12a{word-spacing:0.469327pt;}
.ws14e{word-spacing:0.477861pt;}
.wsb2{word-spacing:0.494927pt;}
.wsae{word-spacing:0.507727pt;}
.ws90{word-spacing:0.549333pt;}
.ws164{word-spacing:0.552518pt;}
.wsd7{word-spacing:0.597326pt;}
.ws15d{word-spacing:0.608516pt;}
.ws15c{word-spacing:0.627182pt;}
.ws169{word-spacing:0.671981pt;}
.ws95{word-spacing:0.672000pt;}
.ws197{word-spacing:0.677333pt;}
.ws159{word-spacing:0.746645pt;}
.ws15b{word-spacing:0.761578pt;}
.ws15e{word-spacing:0.783978pt;}
.ws198{word-spacing:0.800000pt;}
.ws199{word-spacing:0.912000pt;}
.ws15a{word-spacing:0.948240pt;}
.ws193{word-spacing:1.029333pt;}
.ws24{word-spacing:30.745216pt;}
.ws17a{word-spacing:31.274667pt;}
.ws1b1{word-spacing:41.637880pt;}
.ws1ba{word-spacing:41.642146pt;}
.ws19c{word-spacing:41.697612pt;}
.ws124{word-spacing:80.852323pt;}
.ws163{word-spacing:155.283563pt;}
.ws161{word-spacing:155.287296pt;}
.ws168{word-spacing:173.430778pt;}
.ws162{word-spacing:186.728531pt;}
.ws167{word-spacing:202.755273pt;}
.ws16b{word-spacing:202.759007pt;}
.ws16c{word-spacing:220.895022pt;}
.ws16a{word-spacing:220.898755pt;}
.ws166{word-spacing:233.897850pt;}
.ws160{word-spacing:233.901584pt;}
.wsad{word-spacing:1384.144831pt;}
._8{margin-left:-7.485411pt;}
._c{margin-left:-4.290146pt;}
._7{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._6{width:1.459200pt;}
._2{width:3.213867pt;}
._3{width:8.268697pt;}
._a{width:9.774811pt;}
._5{width:10.685600pt;}
._4{width:12.180267pt;}
._b{width:13.285333pt;}
._d{width:14.677150pt;}
._20{width:17.706445pt;}
._e{width:18.636567pt;}
._12{width:21.213601pt;}
._1{width:22.185600pt;}
._16{width:43.767467pt;}
._15{width:49.437249pt;}
._11{width:90.622867pt;}
._10{width:92.943905pt;}
._f{width:128.484794pt;}
._13{width:146.861098pt;}
._19{width:162.589488pt;}
._18{width:172.870794pt;}
._1f{width:182.106797pt;}
._17{width:201.187318pt;}
._1d{width:228.402541pt;}
._1e{width:242.450673pt;}
._1a{width:286.114492pt;}
._1c{width:367.349504pt;}
._1b{width:521.352570pt;}
._14{width:1316.971271pt;}
._9{width:1339.567255pt;}
.fsd{font-size:24.885867pt;}
.fse{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fsf{font-size:35.551467pt;}
.fsc{font-size:37.332267pt;}
.fs4{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;}
.y7d{bottom:4.033333pt;}
.y2c{bottom:7.567971pt;}
.y2d{bottom:48.000000pt;}
.y2a{bottom:110.665333pt;}
.yd4{bottom:110.665467pt;}
.y17f{bottom:110.666667pt;}
.y51{bottom:110.666724pt;}
.y1d2{bottom:110.667208pt;}
.y7b{bottom:110.668000pt;}
.y20a{bottom:110.970958pt;}
.y13a{bottom:111.045333pt;}
.y174{bottom:111.196000pt;}
.y175{bottom:111.200000pt;}
.yff{bottom:111.722800pt;}
.ydc{bottom:114.974667pt;}
.y196{bottom:118.677333pt;}
.y100{bottom:123.211723pt;}
.y1d1{bottom:123.366783pt;}
.y209{bottom:123.594800pt;}
.y50{bottom:125.331074pt;}
.y101{bottom:126.387150pt;}
.yd3{bottom:127.974800pt;}
.yfe{bottom:127.977333pt;}
.y7a{bottom:127.978667pt;}
.y139{bottom:128.356000pt;}
.y173{bottom:128.505333pt;}
.yb3{bottom:128.509333pt;}
.y29{bottom:129.336000pt;}
.y244{bottom:129.637733pt;}
.y242{bottom:129.641658pt;}
.ydb{bottom:132.285333pt;}
.y243{bottom:134.400000pt;}
.y195{bottom:135.986667pt;}
.y1d0{bottom:135.989558pt;}
.y208{bottom:136.294375pt;}
.y4f{bottom:139.995424pt;}
.y241{bottom:142.265500pt;}
.yfd{bottom:145.362667pt;}
.y79{bottom:145.364000pt;}
.y138{bottom:145.741333pt;}
.y172{bottom:145.890667pt;}
.yb2{bottom:145.894667pt;}
.y28{bottom:148.006667pt;}
.yda{bottom:149.670667pt;}
.yd2{bottom:150.652000pt;}
.y1cf{bottom:153.300275pt;}
.y207{bottom:153.604025pt;}
.y4e{bottom:154.660840pt;}
.y194{bottom:158.664000pt;}
.y240{bottom:159.650883pt;}
.y17e{bottom:162.672000pt;}
.yfc{bottom:162.673333pt;}
.y78{bottom:162.674667pt;}
.y137{bottom:163.052000pt;}
.y171{bottom:163.201333pt;}
.yb1{bottom:163.205333pt;}
.y1ce{bottom:165.999850pt;}
.y206{bottom:166.303600pt;}
.y27{bottom:166.677333pt;}
.yd9{bottom:166.980000pt;}
.y4d{bottom:169.325190pt;}
.y23f{bottom:172.274725pt;}
.y114{bottom:176.200927pt;}
.y104{bottom:177.560910pt;}
.y1cd{bottom:178.698358pt;}
.y106{bottom:178.997692pt;}
.y17d{bottom:179.982667pt;}
.y77{bottom:179.984000pt;}
.y136{bottom:180.362667pt;}
.y170{bottom:180.512000pt;}
.yb0{bottom:180.516000pt;}
.y103{bottom:180.660605pt;}
.y205{bottom:183.613250pt;}
.y4c{bottom:183.989540pt;}
.yd8{bottom:184.290667pt;}
.y23e{bottom:184.974300pt;}
.y26{bottom:185.348000pt;}
.yd1{bottom:188.826667pt;}
.y105{bottom:191.016742pt;}
.y1cc{bottom:196.009075pt;}
.y204{bottom:196.312825pt;}
.y17c{bottom:197.368000pt;}
.yfb{bottom:197.369333pt;}
.y76{bottom:197.370667pt;}
.y23b{bottom:197.597075pt;}
.y135{bottom:197.748000pt;}
.y23d{bottom:197.824273pt;}
.y16f{bottom:197.897333pt;}
.yaf{bottom:197.901333pt;}
.y23c{bottom:197.975737pt;}
.y4b{bottom:198.653890pt;}
.yd7{bottom:201.601333pt;}
.y193{bottom:201.602667pt;}
.yd0{bottom:206.137333pt;}
.y25{bottom:208.025333pt;}
.y1cb{bottom:208.631850pt;}
.y203{bottom:213.622475pt;}
.y17b{bottom:214.678667pt;}
.y75{bottom:214.680000pt;}
.y23a{bottom:214.983525pt;}
.y134{bottom:215.057333pt;}
.y16e{bottom:215.206667pt;}
.yae{bottom:215.210667pt;}
.y192{bottom:218.912000pt;}
.yd6{bottom:218.986667pt;}
.y4a{bottom:221.330940pt;}
.ycf{bottom:223.448000pt;}
.y1ca{bottom:226.018299pt;}
.y202{bottom:226.322050pt;}
.y239{bottom:227.607367pt;}
.yfa{bottom:231.989333pt;}
.y74{bottom:231.990667pt;}
.y133{bottom:232.368000pt;}
.y16d{bottom:232.517333pt;}
.yad{bottom:232.521333pt;}
.y115{bottom:234.103137pt;}
.y107{bottom:235.766049pt;}
.y49{bottom:235.995290pt;}
.yd5{bottom:236.296000pt;}
.y191{bottom:236.297333pt;}
.y1c9{bottom:238.641075pt;}
.y237{bottom:240.305875pt;}
.y238{bottom:240.608804pt;}
.yce{bottom:240.833333pt;}
.y201{bottom:243.631700pt;}
.y24{bottom:245.140000pt;}
.y17a{bottom:249.298667pt;}
.yf9{bottom:249.300000pt;}
.y73{bottom:249.301333pt;}
.y132{bottom:249.753333pt;}
.y16c{bottom:249.902667pt;}
.yac{bottom:249.906667pt;}
.y48{bottom:250.659640pt;}
.y190{bottom:253.608000pt;}
.y1c8{bottom:256.027524pt;}
.y200{bottom:256.331275pt;}
.y236{bottom:257.616592pt;}
.ycd{bottom:258.144000pt;}
.y23{bottom:263.810667pt;}
.y179{bottom:266.684000pt;}
.yf8{bottom:266.685333pt;}
.y72{bottom:266.686667pt;}
.y131{bottom:267.064000pt;}
.y16b{bottom:267.213333pt;}
.yab{bottom:267.217333pt;}
.y1c7{bottom:268.651367pt;}
.y1ff{bottom:268.955117pt;}
.y235{bottom:270.315100pt;}
.y108{bottom:270.688280pt;}
.y18f{bottom:270.918667pt;}
.y47{bottom:273.336690pt;}
.ycc{bottom:275.453333pt;}
.y22{bottom:282.481333pt;}
.y234{bottom:282.938942pt;}
.y178{bottom:283.994667pt;}
.y71{bottom:283.996000pt;}
.ydf{bottom:284.371617pt;}
.y130{bottom:284.374667pt;}
.y16a{bottom:284.524000pt;}
.yaa{bottom:284.528000pt;}
.y1c6{bottom:286.036749pt;}
.y1fe{bottom:286.264767pt;}
.y46{bottom:288.001040pt;}
.y18e{bottom:288.304000pt;}
.ycb{bottom:292.838667pt;}
.y1c5{bottom:298.660591pt;}
.y1fd{bottom:298.964342pt;}
.y233{bottom:300.324325pt;}
.y21{bottom:301.152000pt;}
.yf7{bottom:301.305333pt;}
.y70{bottom:301.306667pt;}
.y12f{bottom:301.760000pt;}
.y169{bottom:301.833333pt;}
.ya9{bottom:301.837333pt;}
.y45{bottom:302.666457pt;}
.yde{bottom:305.008159pt;}
.y18d{bottom:305.614667pt;}
.yca{bottom:310.149333pt;}
.y1fc{bottom:311.662850pt;}
.y232{bottom:312.948167pt;}
.y1c4{bottom:315.970242pt;}
.y44{bottom:317.330807pt;}
.ydd{bottom:317.706667pt;}
.yf6{bottom:318.690667pt;}
.y6f{bottom:318.692000pt;}
.y12e{bottom:319.069333pt;}
.y168{bottom:319.218667pt;}
.ya8{bottom:319.222667pt;}
.y18c{bottom:322.924000pt;}
.y20{bottom:323.829333pt;}
.y22f{bottom:325.647741pt;}
.y231{bottom:325.873872pt;}
.y230{bottom:325.949604pt;}
.yc9{bottom:327.460000pt;}
.y1c3{bottom:328.669816pt;}
.y1fb{bottom:328.973567pt;}
.y43{bottom:331.995157pt;}
.y116{bottom:334.562681pt;}
.y177{bottom:336.000000pt;}
.yf5{bottom:336.001333pt;}
.y6e{bottom:336.002667pt;}
.y12d{bottom:336.380000pt;}
.y167{bottom:336.529333pt;}
.ya7{bottom:336.533333pt;}
.y18b{bottom:340.234667pt;}
.y1c2{bottom:341.368324pt;}
.y1fa{bottom:341.597409pt;}
.y22e{bottom:342.957392pt;}
.yc8{bottom:344.769333pt;}
.y42{bottom:346.659507pt;}
.y185{bottom:353.310667pt;}
.yf4{bottom:353.312000pt;}
.y6d{bottom:353.313333pt;}
.y12c{bottom:353.690667pt;}
.y166{bottom:353.840000pt;}
.ya6{bottom:353.844000pt;}
.y1c1{bottom:353.992166pt;}
.y10a{bottom:354.140036pt;}
.y1f9{bottom:354.295917pt;}
.y22d{bottom:355.656966pt;}
.y109{bottom:355.802949pt;}
.y18a{bottom:357.620000pt;}
.y176{bottom:358.677333pt;}
.y1f{bottom:360.945333pt;}
.yc7{bottom:362.154667pt;}
.y22c{bottom:368.279742pt;}
.y41{bottom:369.336557pt;}
.yf3{bottom:370.697333pt;}
.y6c{bottom:370.698667pt;}
.y12b{bottom:371.076000pt;}
.y165{bottom:371.225333pt;}
.ya5{bottom:371.229333pt;}
.y1c0{bottom:371.302883pt;}
.y1f8{bottom:371.606634pt;}
.y189{bottom:374.930667pt;}
.y1e{bottom:379.616000pt;}
.y1bf{bottom:384.001391pt;}
.y1f7{bottom:384.305142pt;}
.yc6{bottom:384.832000pt;}
.y22b{bottom:385.666191pt;}
.y184{bottom:388.006667pt;}
.y6b{bottom:388.008000pt;}
.y12a{bottom:388.385333pt;}
.y164{bottom:388.534667pt;}
.ya4{bottom:388.540000pt;}
.y40{bottom:392.013607pt;}
.y188{bottom:392.240000pt;}
.y163{bottom:394.432000pt;}
.y1f6{bottom:396.928984pt;}
.y1d{bottom:398.286667pt;}
.y22a{bottom:398.290033pt;}
.y1be{bottom:401.312108pt;}
.y102{bottom:404.861536pt;}
.yf2{bottom:405.317333pt;}
.y6a{bottom:405.318667pt;}
.y129{bottom:405.696000pt;}
.ya3{bottom:405.849333pt;}
.y187{bottom:409.625333pt;}
.y1bd{bottom:414.010616pt;}
.y1f5{bottom:414.314366pt;}
.y3f{bottom:414.690656pt;}
.y229{bottom:415.599684pt;}
.y1c{bottom:416.957333pt;}
.yf1{bottom:422.702667pt;}
.y69{bottom:422.704000pt;}
.yc5{bottom:422.930667pt;}
.y128{bottom:423.081333pt;}
.ya2{bottom:423.234667pt;}
.y1f4{bottom:426.938209pt;}
.y228{bottom:428.299258pt;}
.y1bc{bottom:431.321333pt;}
.y186{bottom:432.302667pt;}
.y117{bottom:436.155011pt;}
.y3e{bottom:437.367706pt;}
.y1b{bottom:439.634667pt;}
.y1f3{bottom:439.637783pt;}
.yf0{bottom:440.013333pt;}
.y68{bottom:440.014667pt;}
.yc4{bottom:440.240000pt;}
.y127{bottom:440.392000pt;}
.ya1{bottom:440.545333pt;}
.y1bb{bottom:444.019841pt;}
.y227{bottom:445.608909pt;}
.y3d{bottom:452.032056pt;}
.y1f2{bottom:456.947434pt;}
.y183{bottom:457.322667pt;}
.y67{bottom:457.324000pt;}
.yc3{bottom:457.625333pt;}
.y126{bottom:457.702667pt;}
.ya0{bottom:457.856000pt;}
.y226{bottom:458.308483pt;}
.y10b{bottom:458.530198pt;}
.y1ba{bottom:461.330558pt;}
.y1f1{bottom:469.647008pt;}
.y1b9{bottom:474.029066pt;}
.yef{bottom:474.633333pt;}
.y3c{bottom:474.633374pt;}
.y66{bottom:474.634667pt;}
.yc2{bottom:474.936000pt;}
.y125{bottom:475.088000pt;}
.y9f{bottom:475.241333pt;}
.y225{bottom:475.618133pt;}
.y1a{bottom:476.750667pt;}
.y1b8{bottom:486.652908pt;}
.y1f0{bottom:486.956658pt;}
.y224{bottom:488.317708pt;}
.y3b{bottom:489.373456pt;}
.yee{bottom:492.018667pt;}
.y65{bottom:492.020000pt;}
.yc1{bottom:492.246667pt;}
.y124{bottom:492.397333pt;}
.y9e{bottom:492.550667pt;}
.y19{bottom:495.421333pt;}
.y1b7{bottom:499.352483pt;}
.y1ef{bottom:499.656233pt;}
.y3a{bottom:504.037806pt;}
.y223{bottom:505.627358pt;}
.y182{bottom:509.329333pt;}
.y64{bottom:509.330667pt;}
.yc0{bottom:509.632000pt;}
.y123{bottom:509.708000pt;}
.y9d{bottom:509.861333pt;}
.y18{bottom:514.092000pt;}
.yed{bottom:514.697266pt;}
.y1b6{bottom:516.662133pt;}
.y1ee{bottom:516.965883pt;}
.y222{bottom:518.326933pt;}
.y39{bottom:518.703223pt;}
.y181{bottom:526.638667pt;}
.y63{bottom:526.641333pt;}
.ybf{bottom:526.941333pt;}
.y122{bottom:527.018667pt;}
.y9c{bottom:527.172000pt;}
.y1b5{bottom:529.361708pt;}
.y221{bottom:530.950775pt;}
.y17{bottom:532.762667pt;}
.y38{bottom:533.367573pt;}
.y1ed{bottom:534.276600pt;}
.y118{bottom:536.236960pt;}
.yec{bottom:538.658667pt;}
.y1b4{bottom:541.985550pt;}
.y62{bottom:544.026667pt;}
.y121{bottom:544.404000pt;}
.y9b{bottom:544.557333pt;}
.y1ec{bottom:546.975108pt;}
.y36{bottom:548.031923pt;}
.y220{bottom:548.260425pt;}
.y37{bottom:548.333786pt;}
.y180{bottom:549.316000pt;}
.ybe{bottom:549.618667pt;}
.y16{bottom:551.433333pt;}
.y10c{bottom:554.983393pt;}
.y1b3{bottom:559.370932pt;}
.y21f{bottom:560.960000pt;}
.y61{bottom:561.336000pt;}
.y120{bottom:561.713333pt;}
.y9a{bottom:561.868000pt;}
.y34{bottom:562.696273pt;}
.y35{bottom:562.998136pt;}
.y1eb{bottom:564.285825pt;}
.y1b2{bottom:571.994775pt;}
.yeb{bottom:573.582667pt;}
.y21e{bottom:573.658508pt;}
.y15{bottom:574.110667pt;}
.y1ea{bottom:576.984333pt;}
.y60{bottom:578.646667pt;}
.y99{bottom:579.177333pt;}
.y33{bottom:584.541333pt;}
.y1b1{bottom:584.693283pt;}
.ybd{bottom:587.718667pt;}
.y21d{bottom:590.969225pt;}
.yea{bottom:590.969333pt;}
.y1e9{bottom:594.295050pt;}
.y5f{bottom:596.032000pt;}
.y98{bottom:596.562667pt;}
.y1b0{bottom:602.004000pt;}
.y162{bottom:603.514950pt;}
.y21c{bottom:603.592000pt;}
.ybc{bottom:605.104000pt;}
.y1e8{bottom:606.993558pt;}
.ye9{bottom:608.278667pt;}
.y5e{bottom:613.342667pt;}
.y97{bottom:613.873333pt;}
.y1af{bottom:614.702508pt;}
.y1e7{bottom:619.617400pt;}
.y21b{bottom:620.978450pt;}
.y14{bottom:621.884000pt;}
.ybb{bottom:622.414667pt;}
.ye8{bottom:625.589333pt;}
.y161{bottom:626.192000pt;}
.y1ae{bottom:627.326350pt;}
.y5d{bottom:630.652000pt;}
.y160{bottom:630.954667pt;}
.y96{bottom:631.184000pt;}
.y21a{bottom:633.602292pt;}
.y11f{bottom:636.696504pt;}
.y10e{bottom:636.922635pt;}
.y1e6{bottom:636.928117pt;}
.yba{bottom:639.724000pt;}
.y15f{bottom:642.217333pt;}
.ye7{bottom:642.900000pt;}
.y10d{bottom:644.406275pt;}
.y1ad{bottom:644.636000pt;}
.y219{bottom:646.300800pt;}
.y15e{bottom:646.904000pt;}
.y95{bottom:648.569333pt;}
.y1e5{bottom:649.626625pt;}
.y11d{bottom:650.756062pt;}
.y119{bottom:651.285122pt;}
.y5c{bottom:653.329333pt;}
.yb9{bottom:657.034667pt;}
.y15d{bottom:658.166667pt;}
.ye6{bottom:660.285333pt;}
.y32{bottom:661.796000pt;}
.y1ac{bottom:662.702667pt;}
.y15c{bottom:662.929333pt;}
.y218{bottom:663.611517pt;}
.y94{bottom:665.880000pt;}
.y1e4{bottom:666.937342pt;}
.y15b{bottom:674.192000pt;}
.yb8{bottom:674.420000pt;}
.y13{bottom:675.552933pt;}
.y217{bottom:676.310025pt;}
.y31{bottom:677.140000pt;}
.ye5{bottom:677.594667pt;}
.y1e3{bottom:679.635850pt;}
.y10f{bottom:680.009030pt;}
.y11a{bottom:681.294347pt;}
.y93{bottom:683.189333pt;}
.y12{bottom:688.857300pt;}
.y216{bottom:688.933867pt;}
.yb7{bottom:691.730667pt;}
.y1e2{bottom:692.259692pt;}
.y30{bottom:692.409333pt;}
.ye4{bottom:694.905333pt;}
.y15a{bottom:699.212000pt;}
.y158{bottom:699.212838pt;}
.y92{bottom:700.500000pt;}
.y159{bottom:703.370667pt;}
.y215{bottom:706.319250pt;}
.y2f{bottom:707.754667pt;}
.yb6{bottom:709.040000pt;}
.y1e1{bottom:709.645075pt;}
.ye3{bottom:712.290667pt;}
.y157{bottom:714.557333pt;}
.y155{bottom:714.557770pt;}
.y10{bottom:715.540700pt;}
.y11{bottom:715.767897pt;}
.y91{bottom:717.885333pt;}
.y156{bottom:718.640000pt;}
.y214{bottom:718.943092pt;}
.y1aa{bottom:722.798667pt;}
.y2e{bottom:723.098667pt;}
.y1ab{bottom:723.478667pt;}
.yb5{bottom:726.425333pt;}
.y1e0{bottom:726.955792pt;}
.yf{bottom:728.844000pt;}
.ye2{bottom:729.601333pt;}
.y154{bottom:729.826667pt;}
.y213{bottom:731.642666pt;}
.y90{bottom:735.196000pt;}
.y1df{bottom:739.655366pt;}
.y1a8{bottom:740.108000pt;}
.y1a9{bottom:740.789333pt;}
.y152{bottom:745.172000pt;}
.ye1{bottom:746.910667pt;}
.y5b{bottom:747.516000pt;}
.y212{bottom:748.952317pt;}
.yb4{bottom:749.102667pt;}
.y153{bottom:749.329333pt;}
.y1de{bottom:752.278142pt;}
.y8f{bottom:752.505333pt;}
.yc{bottom:752.881333pt;}
.y9{bottom:752.882667pt;}
.yd{bottom:753.106933pt;}
.ye{bottom:753.258133pt;}
.ya{bottom:753.260667pt;}
.yb{bottom:758.173333pt;}
.y151{bottom:760.516000pt;}
.y14f{bottom:760.516838pt;}
.y211{bottom:761.651891pt;}
.y11b{bottom:762.780262pt;}
.y1a6{bottom:764.070667pt;}
.y150{bottom:764.673333pt;}
.y1a7{bottom:764.826667pt;}
.y5a{bottom:766.186667pt;}
.y6{bottom:767.546667pt;}
.y8{bottom:767.923467pt;}
.ye0{bottom:769.588000pt;}
.y1dd{bottom:769.664591pt;}
.y8e{bottom:769.890667pt;}
.y7{bottom:772.837333pt;}
.y210{bottom:774.274667pt;}
.y14d{bottom:775.861333pt;}
.y110{bottom:777.747541pt;}
.y14e{bottom:780.018667pt;}
.y1dc{bottom:782.287367pt;}
.y59{bottom:784.857333pt;}
.y20f{bottom:786.974241pt;}
.y8d{bottom:787.201333pt;}
.y1a4{bottom:788.108000pt;}
.y111{bottom:788.481274pt;}
.y1a5{bottom:788.788000pt;}
.y14b{bottom:791.206667pt;}
.y14c{bottom:795.364000pt;}
.y1db{bottom:799.598084pt;}
.y5{bottom:800.882667pt;}
.y20e{bottom:804.284958pt;}
.y8c{bottom:804.512000pt;}
.y14a{bottom:806.550667pt;}
.y148{bottom:806.551103pt;}
.y58{bottom:807.458667pt;}
.y149{bottom:810.633333pt;}
.y1a2{bottom:812.070667pt;}
.y1da{bottom:812.296592pt;}
.y1a3{bottom:812.826667pt;}
.y20d{bottom:816.983466pt;}
.y147{bottom:821.820000pt;}
.y145{bottom:821.820838pt;}
.y8b{bottom:821.897333pt;}
.y146{bottom:825.977333pt;}
.y1a0{bottom:829.456000pt;}
.y1d9{bottom:829.607309pt;}
.y1a1{bottom:830.136000pt;}
.y4{bottom:830.817867pt;}
.y144{bottom:837.165333pt;}
.y8a{bottom:839.208000pt;}
.y1d8{bottom:842.306883pt;}
.y20c{bottom:846.992691pt;}
.y57{bottom:850.318667pt;}
.y143{bottom:852.510667pt;}
.y141{bottom:852.511354pt;}
.y19e{bottom:853.417333pt;}
.y19f{bottom:854.098667pt;}
.y11c{bottom:856.285226pt;}
.y89{bottom:856.517333pt;}
.y142{bottom:856.668000pt;}
.y1d7{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y140{bottom:867.855849pt;}
.y56{bottom:868.989333pt;}
.y1d6{bottom:872.316108pt;}
.y88{bottom:873.902667pt;}
.y112{bottom:875.258856pt;}
.y19c{bottom:877.456000pt;}
.y19d{bottom:878.136000pt;}
.y83{bottom:878.281888pt;}
.y113{bottom:881.608643pt;}
.y13f{bottom:883.200344pt;}
.y55{bottom:887.660000pt;}
.y1d5{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y87{bottom:891.213333pt;}
.y82{bottom:892.946238pt;}
.y13e{bottom:898.544838pt;}
.y11e{bottom:899.976413pt;}
.y19a{bottom:901.417333pt;}
.y19b{bottom:902.097333pt;}
.y1d4{bottom:902.325333pt;}
.y54{bottom:906.330667pt;}
.y86{bottom:908.524000pt;}
.y13d{bottom:913.889333pt;}
.y20b{bottom:914.948108pt;}
.y81{bottom:915.623288pt;}
.y198{bottom:918.802667pt;}
.y199{bottom:919.482667pt;}
.y1d3{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y53{bottom:925.001333pt;}
.y85{bottom:925.833333pt;}
.y80{bottom:930.288705pt;}
.y13c{bottom:932.258825pt;}
.y197{bottom:941.404000pt;}
.y84{bottom:943.218667pt;}
.y52{bottom:943.672000pt;}
.y7f{bottom:944.953055pt;}
.y13b{bottom:944.957333pt;}
.y2b{bottom:984.037333pt;}
.y7c{bottom:990.312000pt;}
.y7e{bottom:994.393333pt;}
.h11{height:16.478800pt;}
.h17{height:18.664400pt;}
.h1a{height:20.718984pt;}
.h18{height:21.330000pt;}
.h4{height:24.828689pt;}
.h19{height:26.663600pt;}
.h16{height:27.999200pt;}
.h15{height:29.994292pt;}
.ha{height:30.916533pt;}
.hd{height:31.082945pt;}
.h14{height:31.999600pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hf{height:34.772899pt;}
.he{height:36.052883pt;}
.h3{height:37.248000pt;}
.h9{height:39.266667pt;}
.hc{height:40.000000pt;}
.h12{height:46.933333pt;}
.h8{height:47.593839pt;}
.h13{height:47.999600pt;}
.h10{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.hb{height:88.063659pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363733pt;}
.w1{width:143.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:40.818800pt;}
.x13{left:46.261467pt;}
.x14{left:48.000000pt;}
.x47{left:54.954267pt;}
.x15{left:63.496000pt;}
.x1d{left:65.309161pt;}
.x1e{left:77.933003pt;}
.x1f{left:81.939353pt;}
.x48{left:90.934617pt;}
.x20{left:94.638927pt;}
.x21{left:107.261703pt;}
.x22{left:119.961277pt;}
.x49{left:132.962892pt;}
.x23{left:136.591469pt;}
.x24{left:149.289977pt;}
.x25{left:161.989552pt;}
.x17{left:173.781555pt;}
.x4a{left:174.915434pt;}
.x16{left:180.962265pt;}
.x26{left:187.311902pt;}
.x27{left:199.935744pt;}
.x1b{left:202.960000pt;}
.x28{left:212.635319pt;}
.x18{left:215.432234pt;}
.x29{left:225.258094pt;}
.x2a{left:237.957669pt;}
.x2b{left:250.581511pt;}
.x2c{left:263.280019pt;}
.x1{left:266.682667pt;}
.x7c{left:270.462667pt;}
.x8c{left:273.184000pt;}
.x2d{left:275.979594pt;}
.x19{left:282.632000pt;}
.xb{left:288.076667pt;}
.x4b{left:288.981208pt;}
.x6a{left:292.308000pt;}
.x8d{left:295.330923pt;}
.x2e{left:301.301944pt;}
.xc{left:311.660000pt;}
.x2f{left:313.925786pt;}
.xd{left:316.649333pt;}
.x92{left:321.637455pt;}
.x30{left:326.624294pt;}
.x95{left:328.062667pt;}
.x8a{left:334.410667pt;}
.x96{left:336.226667pt;}
.x2{left:339.325333pt;}
.x1a{left:342.878667pt;}
.x8e{left:347.111270pt;}
.x3{left:350.966667pt;}
.x31{left:351.947711pt;}
.xe{left:357.316133pt;}
.x32{left:364.646219pt;}
.x67{left:367.973287pt;}
.x5e{left:368.955675pt;}
.x4{left:371.375067pt;}
.x33{left:377.270061pt;}
.x80{left:380.672000pt;}
.x5c{left:381.579517pt;}
.x7d{left:382.714667pt;}
.x68{left:383.921888pt;}
.x4c{left:390.271675pt;}
.x8f{left:392.767232pt;}
.x34{left:393.975985pt;}
.xf{left:402.142133pt;}
.x35{left:406.598761pt;}
.x69{left:407.959987pt;}
.x12{left:411.966184pt;}
.x83{left:414.612000pt;}
.x4d{left:415.595092pt;}
.x36{left:419.298336pt;}
.x8b{left:427.840000pt;}
.x81{left:429.805333pt;}
.x37{left:431.922178pt;}
.x6b{left:440.614163pt;}
.x38{left:444.620686pt;}
.x6c{left:453.694667pt;}
.x39{left:457.320260pt;}
.x84{left:458.605333pt;}
.x7e{left:462.236000pt;}
.x7b{left:465.562667pt;}
.x3a{left:469.944103pt;}
.x7f{left:473.348000pt;}
.x6d{left:477.429333pt;}
.x10{left:482.570667pt;}
.x90{left:485.592739pt;}
.x11{left:487.484000pt;}
.x5{left:495.419067pt;}
.x87{left:498.365333pt;}
.x3b{left:507.966027pt;}
.x88{left:514.541333pt;}
.x6{left:516.510667pt;}
.x3c{left:520.588803pt;}
.x6e{left:521.725333pt;}
.x60{left:524.973991pt;}
.x7{left:528.076000pt;}
.x3d{left:533.288377pt;}
.x61{left:537.596767pt;}
.x91{left:544.628801pt;}
.x3e{left:545.987952pt;}
.x62{left:550.296341pt;}
.x93{left:551.809511pt;}
.x85{left:557.704000pt;}
.x3f{left:558.610728pt;}
.x82{left:561.181333pt;}
.x63{left:562.920184pt;}
.x40{left:571.310302pt;}
.x64{left:575.618692pt;}
.x41{left:583.934144pt;}
.x76{left:587.262667pt;}
.x65{left:588.242534pt;}
.x6f{left:590.589333pt;}
.x70{left:593.914667pt;}
.x42{left:596.632652pt;}
.x7a{left:599.206667pt;}
.x66{left:600.942108pt;}
.x79{left:606.614667pt;}
.x71{left:607.748000pt;}
.x43{left:609.256494pt;}
.x77{left:611.073333pt;}
.x4e{left:613.640616pt;}
.x5d{left:616.286983pt;}
.x44{left:621.956069pt;}
.x4f{left:626.264459pt;}
.x89{left:631.857333pt;}
.x45{left:634.654577pt;}
.x50{left:638.964033pt;}
.x51{left:651.586809pt;}
.x46{left:653.930069pt;}
.x72{left:659.905333pt;}
.x52{left:664.286383pt;}
.x8{left:668.069333pt;}
.x9{left:672.982667pt;}
.x53{left:676.910225pt;}
.xa{left:686.815067pt;}
.x54{left:689.608733pt;}
.x55{left:702.308308pt;}
.x56{left:714.932150pt;}
.x94{left:717.427707pt;}
.x73{left:720.906667pt;}
.x74{left:724.233333pt;}
.x57{left:727.630658pt;}
.x78{left:732.774667pt;}
.x58{left:740.254500pt;}
.x75{left:744.642667pt;}
.x86{left:750.836000pt;}
.x59{left:752.954075pt;}
.x5f{left:759.605725pt;}
.x5a{left:765.576850pt;}
.x5b{left:784.928075pt;}
}




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