
    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_d20cf4dbcfa11ab55561b908.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fedb5d48272c6a23e2dd6404.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_878b2e981f5ffac538c51f04.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_1d4fdaccf3ae17e89808b0e9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_42da78f282dd89afdba6b72e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_c7d81240d7cdc4c7d015ef16.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_20cca5a25e358d76ea06bd88.woff')format("woff");}.ff7{font-family:ff7;line-height:0.905000;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_2bdd04ee96fbe5722d5abf0f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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_d6d89acb53394f79f0bcffb4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.870000;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_3a633c8997e938f14037d9d7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_66714858e3423f9ec2a5f578.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_870d6c97feaf2feed6b218da.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_cbdf86c6295717c4442e428e.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f696d34999b49fe3a27219e9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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_08d13a97986aadc49fbbcf9d.woff')format("woff");}.fff{font-family:fff;line-height:0.697000;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_021df1feaa0fc3c077f70062.woff')format("woff");}.ff10{font-family:ff10;line-height:0.936523;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_8bb7734095dada1b13a5c328.woff')format("woff");}.ff11{font-family:ff11;line-height:0.932129;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_6aeec4e0b28e25642d445836.woff')format("woff");}.ff12{font-family:ff12;line-height:0.932129;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_f5653e0005c327414a3d22ff.woff')format("woff");}.ff13{font-family:ff13;line-height:0.932129;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_8dcb28921e829d1d22e594e5.woff')format("woff");}.ff14{font-family:ff14;line-height:0.943848;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:ff15;src:url('chunks/assets/font_0a2c8e3bf7049f28e3627f88.woff')format("woff");}.ff15{font-family:ff15;line-height:0.936523;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:ff16;src:url('chunks/assets/font_f49656a7d34672bd762275af.woff')format("woff");}.ff16{font-family:ff16;line-height:0.932129;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:ff17;src:url('chunks/assets/font_0b1c5b208bf8dd04dd23fafe.woff')format("woff");}.ff17{font-family:ff17;line-height:0.870000;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:ff18;src:url('chunks/assets/font_e09aa778e27aa8b70bedb165.woff')format("woff");}.ff18{font-family:ff18;line-height:0.922000;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:ff19;src:url('chunks/assets/font_86d91d33cc9fae6be1204c90.woff')format("woff");}.ff19{font-family:ff19;line-height:0.936523;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:ff1a;src:url('chunks/assets/font_f37f79b7053fd4d366dcca67.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.932129;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:ff1b;src:url('chunks/assets/font_00b08561572d2acdacf1d7fb.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.932129;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:ff1c;src:url('chunks/assets/font_b36ba36f108a859eb2140e92.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.932129;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:ff1d;src:url('chunks/assets/font_62f3a8f645b3ab46fa6fbcd4.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.936523;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:ff1e;src:url('chunks/assets/font_a3499b54c2aaf3781e0d9154.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.936523;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;}
.m2{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);}
.m1{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:-26.028000px;}
.v4{vertical-align:-22.854000px;}
.v8{vertical-align:-14.646000px;}
.v5{vertical-align:-7.218592px;}
.v6{vertical-align:-3.609296px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:18.635033px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.001050px;}
.ls2a{letter-spacing:0.002145px;}
.ls29{letter-spacing:0.002915px;}
.ls2b{letter-spacing:0.005412px;}
.ls7{letter-spacing:0.132725px;}
.ls1{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.990915px;}
.ls6{letter-spacing:2.994532px;}
.lsa{letter-spacing:4.250074px;}
.ls1b{letter-spacing:4.626662px;}
.ls11{letter-spacing:4.734259px;}
.ls14{letter-spacing:4.841856px;}
.ls1a{letter-spacing:4.895654px;}
.ls22{letter-spacing:5.003251px;}
.ls10{letter-spacing:5.164646px;}
.ls18{letter-spacing:5.218445px;}
.ls25{letter-spacing:5.326042px;}
.lse{letter-spacing:5.379840px;}
.lsc{letter-spacing:5.433638px;}
.ls4{letter-spacing:22.304915px;}
.ls1f{letter-spacing:23.648712px;}
.ls1c{letter-spacing:24.908915px;}
.ls5{letter-spacing:28.454915px;}
.ls1d{letter-spacing:30.974915px;}
.ls3{letter-spacing:32.727300px;}
.ls9{letter-spacing:34.122532px;}
.ls20{letter-spacing:34.590532px;}
.ls19{letter-spacing:39.541824px;}
.lsf{letter-spacing:101.436532px;}
.ls21{letter-spacing:102.690532px;}
.lsd{letter-spacing:103.050532px;}
.lsb{letter-spacing:103.092532px;}
.ls12{letter-spacing:168.282532px;}
.ls16{letter-spacing:170.544532px;}
.ls13{letter-spacing:170.592532px;}
.ls26{letter-spacing:170.670532px;}
.ls15{letter-spacing:170.706532px;}
.ls1e{letter-spacing:178.250915px;}
.ls8{letter-spacing:199.535522px;}
.ls17{letter-spacing:223.988915px;}
.ls24{letter-spacing:238.560532px;}
.ls23{letter-spacing:238.674532px;}
.ls27{letter-spacing:238.686532px;}
.ls28{letter-spacing:238.692532px;}
.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;}
}
.ws16{word-spacing:-54.392773px;}
.ws19{word-spacing:-54.196409px;}
.ws0{word-spacing:-50.959200px;}
.ws13{word-spacing:-48.418425px;}
.wsbd{word-spacing:-39.595622px;}
.ws17{word-spacing:-37.636395px;}
.ws5b{word-spacing:-32.727300px;}
.ws15{word-spacing:-31.287299px;}
.ws37{word-spacing:-27.646998px;}
.ws14b{word-spacing:-26.442627px;}
.ws4{word-spacing:-19.367325px;}
.wse{word-spacing:-17.803651px;}
.wsad{word-spacing:-17.738197px;}
.ws76{word-spacing:-17.607287px;}
.wsdc{word-spacing:-17.541833px;}
.ws94{word-spacing:-17.476378px;}
.ws13b{word-spacing:-17.214560px;}
.ws27{word-spacing:-17.149105px;}
.ws108{word-spacing:-16.952741px;}
.ws75{word-spacing:-16.887287px;}
.ws111{word-spacing:-16.821832px;}
.wsf6{word-spacing:-16.756378px;}
.wse4{word-spacing:-16.625468px;}
.ws51{word-spacing:-16.560014px;}
.wsd8{word-spacing:-16.429105px;}
.ws92{word-spacing:-16.232741px;}
.ws5{word-spacing:-16.175590px;}
.ws140{word-spacing:-16.167286px;}
.ws1a{word-spacing:-16.139475px;}
.ws38{word-spacing:-16.101832px;}
.ws39{word-spacing:-15.840013px;}
.ws53{word-spacing:-15.709104px;}
.ws24{word-spacing:-15.578195px;}
.wsfc{word-spacing:-15.532227px;}
.ws13d{word-spacing:-15.512740px;}
.wsa7{word-spacing:-15.447286px;}
.ws11f{word-spacing:-15.381831px;}
.wse2{word-spacing:-15.316376px;}
.ws8a{word-spacing:-15.250922px;}
.ws13c{word-spacing:-15.185467px;}
.ws10f{word-spacing:-15.120013px;}
.wsa{word-spacing:-15.054558px;}
.ws60{word-spacing:-14.989103px;}
.wseb{word-spacing:-14.923649px;}
.wsf{word-spacing:-14.858194px;}
.ws143{word-spacing:-14.792740px;}
.ws6e{word-spacing:-14.727285px;}
.ws4a{word-spacing:-14.661830px;}
.ws3c{word-spacing:-14.596376px;}
.wsed{word-spacing:-14.530921px;}
.ws3e{word-spacing:-14.400012px;}
.wsb2{word-spacing:-14.203648px;}
.ws58{word-spacing:-14.038893px;}
.ws2d{word-spacing:-13.941830px;}
.ws8b{word-spacing:-13.876375px;}
.ws70{word-spacing:-13.810921px;}
.ws71{word-spacing:-13.745466px;}
.ws49{word-spacing:-13.680011px;}
.ws31{word-spacing:-13.614557px;}
.ws54{word-spacing:-13.549102px;}
.ws13e{word-spacing:-13.531194px;}
.ws32{word-spacing:-13.483648px;}
.ws1b{word-spacing:-13.449600px;}
.ws1d{word-spacing:-13.418193px;}
.wsef{word-spacing:-13.287284px;}
.ws50{word-spacing:-13.221829px;}
.ws42{word-spacing:-13.156375px;}
.ws87{word-spacing:-13.090920px;}
.ws5f{word-spacing:-12.960011px;}
.wsfd{word-spacing:-12.943523px;}
.wsb5{word-spacing:-12.894556px;}
.ws83{word-spacing:-12.763647px;}
.wsf7{word-spacing:-12.632738px;}
.ws14{word-spacing:-12.567283px;}
.ws34{word-spacing:-12.501829px;}
.wsd7{word-spacing:-12.436374px;}
.wsd4{word-spacing:-12.370919px;}
.ws145{word-spacing:-12.305465px;}
.ws1f{word-spacing:-12.240010px;}
.ws139{word-spacing:-12.174556px;}
.wsac{word-spacing:-12.109101px;}
.ws35{word-spacing:-12.043646px;}
.ws5d{word-spacing:-11.978192px;}
.wsf5{word-spacing:-11.912737px;}
.ws68{word-spacing:-11.847283px;}
.ws82{word-spacing:-11.781828px;}
.ws101{word-spacing:-11.716373px;}
.ws4f{word-spacing:-11.585464px;}
.wsf3{word-spacing:-11.520010px;}
.wse1{word-spacing:-11.454555px;}
.ws4b{word-spacing:-11.389100px;}
.ws28{word-spacing:-11.323646px;}
.ws72{word-spacing:-11.258191px;}
.wsec{word-spacing:-11.127282px;}
.ws4e{word-spacing:-11.061827px;}
.ws6c{word-spacing:-10.996373px;}
.ws12{word-spacing:-10.930918px;}
.ws43{word-spacing:-10.865464px;}
.wsa6{word-spacing:-10.800009px;}
.ws40{word-spacing:-10.734554px;}
.ws136{word-spacing:-10.615027px;}
.wsea{word-spacing:-10.603645px;}
.ws137{word-spacing:-10.596389px;}
.ws93{word-spacing:-10.538191px;}
.ws52{word-spacing:-10.472736px;}
.ws3f{word-spacing:-10.407281px;}
.ws115{word-spacing:-10.341827px;}
.ws4d{word-spacing:-10.276372px;}
.ws7a{word-spacing:-10.219839px;}
.ws10b{word-spacing:-10.210918px;}
.ws1{word-spacing:-10.179867px;}
.ws77{word-spacing:-10.145463px;}
.ws7c{word-spacing:-10.087114px;}
.ws11b{word-spacing:-10.080008px;}
.ws2a{word-spacing:-9.949099px;}
.ws29{word-spacing:-9.883645px;}
.ws5a{word-spacing:-9.818190px;}
.ws3b{word-spacing:-9.687281px;}
.ws89{word-spacing:-9.556372px;}
.wsf0{word-spacing:-9.490917px;}
.wsd6{word-spacing:-9.425462px;}
.ws41{word-spacing:-9.294553px;}
.ws18{word-spacing:-9.247945px;}
.ws66{word-spacing:-9.229099px;}
.ws2e{word-spacing:-9.032735px;}
.ws8c{word-spacing:-8.967280px;}
.wsae{word-spacing:-8.901826px;}
.ws9{word-spacing:-8.836371px;}
.ws69{word-spacing:-8.770916px;}
.ws33{word-spacing:-8.640007px;}
.ws78{word-spacing:-8.574553px;}
.wsdf{word-spacing:-8.509098px;}
.ws61{word-spacing:-8.443643px;}
.wsda{word-spacing:-8.378189px;}
.ws3d{word-spacing:-8.312734px;}
.wsd{word-spacing:-8.247280px;}
.ws8e{word-spacing:-8.181825px;}
.ws90{word-spacing:-8.116370px;}
.wsb{word-spacing:-8.050916px;}
.ws86{word-spacing:-7.920007px;}
.ws100{word-spacing:-7.854552px;}
.wsd9{word-spacing:-7.789097px;}
.ws10{word-spacing:-7.723643px;}
.wsd5{word-spacing:-7.658188px;}
.ws91{word-spacing:-7.592734px;}
.ws46{word-spacing:-7.527279px;}
.ws6f{word-spacing:-7.461824px;}
.ws62{word-spacing:-7.396370px;}
.ws36{word-spacing:-7.330915px;}
.ws20{word-spacing:-7.265461px;}
.ws22{word-spacing:-7.200006px;}
.ws6a{word-spacing:-7.134551px;}
.ws44{word-spacing:-7.069097px;}
.wsf9{word-spacing:-7.003642px;}
.wsf4{word-spacing:-6.872733px;}
.ws2c{word-spacing:-6.807278px;}
.ws6d{word-spacing:-6.741824px;}
.wsf8{word-spacing:-6.676369px;}
.wsb0{word-spacing:-6.610915px;}
.ws110{word-spacing:-6.545460px;}
.ws2b{word-spacing:-6.414551px;}
.ws88{word-spacing:-6.283642px;}
.ws4c{word-spacing:-6.218187px;}
.wsee{word-spacing:-6.152732px;}
.wsf1{word-spacing:-6.087278px;}
.ws64{word-spacing:-5.956369px;}
.ws81{word-spacing:-5.858107px;}
.wsfe{word-spacing:-5.825459px;}
.ws3a{word-spacing:-5.694550px;}
.ws116{word-spacing:-5.563641px;}
.ws1e{word-spacing:-5.498186px;}
.wsbb{word-spacing:-5.487437px;}
.wsca{word-spacing:-5.433638px;}
.ws67{word-spacing:-5.432732px;}
.ws125{word-spacing:-5.379840px;}
.wsff{word-spacing:-5.301823px;}
.wsc5{word-spacing:-5.272243px;}
.ws45{word-spacing:-5.105459px;}
.ws120{word-spacing:-5.057050px;}
.wsab{word-spacing:-5.040004px;}
.ws11d{word-spacing:-4.909095px;}
.wsbc{word-spacing:-4.895654px;}
.ws85{word-spacing:-4.843640px;}
.ws9b{word-spacing:-4.788058px;}
.wsdd{word-spacing:-4.778186px;}
.ws65{word-spacing:-4.712731px;}
.ws23{word-spacing:-4.647277px;}
.ws141{word-spacing:-4.581822px;}
.ws30{word-spacing:-4.516367px;}
.ws1c{word-spacing:-4.450913px;}
.ws8{word-spacing:-4.408087px;}
.ws132{word-spacing:-4.385458px;}
.ws131{word-spacing:-4.351194px;}
.ws134{word-spacing:-4.344661px;}
.wsf2{word-spacing:-4.320004px;}
.ws14a{word-spacing:-4.058185px;}
.ws117{word-spacing:-3.927276px;}
.ws13f{word-spacing:-3.861821px;}
.wse0{word-spacing:-3.796367px;}
.wse6{word-spacing:-3.600003px;}
.ws63{word-spacing:-3.338185px;}
.wsc{word-spacing:-3.272730px;}
.ws6b{word-spacing:-2.814548px;}
.ws73{word-spacing:-2.749093px;}
.wsaf{word-spacing:-2.487275px;}
.ws102{word-spacing:-2.356366px;}
.ws10a{word-spacing:-2.290911px;}
.ws25{word-spacing:-2.029093px;}
.ws26{word-spacing:-1.963638px;}
.ws47{word-spacing:-1.767274px;}
.ws147{word-spacing:-1.505456px;}
.ws48{word-spacing:-1.309092px;}
.ws8d{word-spacing:-1.047274px;}
.wsde{word-spacing:-0.916364px;}
.ws2f{word-spacing:-0.720001px;}
.wsdb{word-spacing:-0.589091px;}
.wsfa{word-spacing:-0.458182px;}
.ws8f{word-spacing:-0.392728px;}
.ws74{word-spacing:-0.327273px;}
.ws142{word-spacing:-0.196364px;}
.ws2{word-spacing:-0.185673px;}
.ws11{word-spacing:-0.065455px;}
.wsfb{word-spacing:-0.055905px;}
.ws57{word-spacing:-0.050530px;}
.ws7{word-spacing:-0.047821px;}
.ws3{word-spacing:0.000000px;}
.ws106{word-spacing:0.850910px;}
.wsa5{word-spacing:1.178183px;}
.ws146{word-spacing:1.243637px;}
.ws10d{word-spacing:1.440001px;}
.ws103{word-spacing:2.552729px;}
.wsc1{word-spacing:2.797517px;}
.ws104{word-spacing:3.207275px;}
.wsb3{word-spacing:5.301823px;}
.wsa9{word-spacing:6.807278px;}
.wsbf{word-spacing:7.477978px;}
.ws96{word-spacing:7.531776px;}
.wsa2{word-spacing:7.639373px;}
.wsb1{word-spacing:7.723643px;}
.ws128{word-spacing:7.746970px;}
.ws12c{word-spacing:7.854566px;}
.wse7{word-spacing:7.920007px;}
.wsc2{word-spacing:8.015962px;}
.wsc3{word-spacing:8.392550px;}
.ws148{word-spacing:8.705462px;}
.wsbe{word-spacing:8.715341px;}
.wsc0{word-spacing:8.822938px;}
.ws144{word-spacing:10.996373px;}
.wsd3{word-spacing:13.234406px;}
.ws149{word-spacing:13.287284px;}
.ws113{word-spacing:17.523560px;}
.ws13a{word-spacing:20.503895px;}
.ws138{word-spacing:22.081895px;}
.ws11c{word-spacing:22.547885px;}
.ws10e{word-spacing:23.217560px;}
.ws6{word-spacing:23.312640px;}
.ws14d{word-spacing:23.367292px;}
.ws114{word-spacing:23.869550px;}
.ws118{word-spacing:24.542240px;}
.ws119{word-spacing:24.542555px;}
.ws10c{word-spacing:25.149560px;}
.ws14c{word-spacing:25.534043px;}
.wsa8{word-spacing:25.723658px;}
.ws112{word-spacing:25.957895px;}
.ws21{word-spacing:26.705477px;}
.ws11e{word-spacing:27.757550px;}
.wse8{word-spacing:28.014569px;}
.ws133{word-spacing:28.309895px;}
.ws97{word-spacing:29.535322px;}
.ws98{word-spacing:29.642918px;}
.ws121{word-spacing:30.288499px;}
.ws123{word-spacing:30.503693px;}
.ws84{word-spacing:30.674555px;}
.ws122{word-spacing:30.718886px;}
.wsb7{word-spacing:30.934080px;}
.ws9a{word-spacing:31.041677px;}
.wsc4{word-spacing:31.149274px;}
.wsb9{word-spacing:31.310669px;}
.ws9e{word-spacing:31.794854px;}
.wsa4{word-spacing:33.905483px;}
.wsd2{word-spacing:34.215782px;}
.ws135{word-spacing:34.298210px;}
.wsd1{word-spacing:34.693198px;}
.ws95{word-spacing:34.861363px;}
.ws11a{word-spacing:37.636395px;}
.wscb{word-spacing:39.488026px;}
.ws12f{word-spacing:40.456397px;}
.wscf{word-spacing:40.886784px;}
.ws12e{word-spacing:41.101978px;}
.ws9c{word-spacing:41.209574px;}
.ws9f{word-spacing:41.370970px;}
.ws9d{word-spacing:41.478566px;}
.wsc8{word-spacing:41.747558px;}
.wsa1{word-spacing:41.801357px;}
.wsb8{word-spacing:42.339341px;}
.ws99{word-spacing:42.769728px;}
.wsa0{word-spacing:42.877325px;}
.ws79{word-spacing:62.982209px;}
.wse5{word-spacing:73.898243px;}
.ws5c{word-spacing:74.290971px;}
.ws7b{word-spacing:93.581533px;}
.wsaa{word-spacing:95.170988px;}
.wscc{word-spacing:101.401198px;}
.ws7d{word-spacing:101.575959px;}
.ws129{word-spacing:102.853198px;}
.wse3{word-spacing:119.454645px;}
.wse9{word-spacing:121.287374px;}
.ws105{word-spacing:127.636470px;}
.ws7e{word-spacing:130.538613px;}
.ws5e{word-spacing:141.578300px;}
.ws7f{word-spacing:166.011018px;}
.wsc6{word-spacing:168.247198px;}
.wsc7{word-spacing:170.443198px;}
.wsd0{word-spacing:170.509198px;}
.wscd{word-spacing:170.557198px;}
.wsb6{word-spacing:170.635198px;}
.wsce{word-spacing:170.671198px;}
.ws124{word-spacing:170.761198px;}
.wsc9{word-spacing:170.803198px;}
.wsba{word-spacing:170.845198px;}
.ws12a{word-spacing:170.857198px;}
.ws80{word-spacing:174.551741px;}
.ws107{word-spacing:197.214710px;}
.ws109{word-spacing:206.705627px;}
.wsa3{word-spacing:208.669265px;}
.ws127{word-spacing:238.153198px;}
.ws12b{word-spacing:238.291198px;}
.ws130{word-spacing:238.423198px;}
.ws126{word-spacing:238.525198px;}
.wsb4{word-spacing:291.600243px;}
.ws12d{word-spacing:304.759198px;}
.ws55{word-spacing:379.471881px;}
.ws56{word-spacing:457.062356px;}
.ws59{word-spacing:931.970282px;}
._1a{margin-left:-38.367640px;}
._17{margin-left:-34.494574px;}
._15{margin-left:-32.727300px;}
._1b{margin-left:-30.960026px;}
._16{margin-left:-10.930918px;}
._0{margin-left:-9.709486px;}
._3a{margin-left:-8.242694px;}
._3{margin-left:-5.881958px;}
._b{margin-left:-4.527612px;}
._37{margin-left:-3.469094px;}
._5{margin-left:-2.438848px;}
._2{margin-left:-1.381317px;}
._4{width:1.381317px;}
._1{width:2.582310px;}
._18{width:3.861821px;}
._58{width:5.379840px;}
._6e{width:6.735433px;}
._5b{width:7.835758px;}
._70{width:8.988851px;}
._5c{width:10.644938px;}
._6f{width:12.120822px;}
._59{width:13.210310px;}
._3f{width:16.503706px;}
._29{width:17.696819px;}
._34{width:19.503286px;}
._11{width:20.818880px;}
._10{width:22.016544px;}
._22{width:24.585869px;}
._8c{width:25.663940px;}
._c{width:26.749231px;}
._a{width:27.813724px;}
._26{width:28.989617px;}
._2c{width:30.132914px;}
._8{width:31.352753px;}
._28{width:32.989118px;}
._9{width:34.374910px;}
._2a{width:35.386309px;}
._5a{width:36.475315px;}
._6{width:37.570940px;}
._1f{width:38.620346px;}
._13{width:40.547797px;}
._21{width:42.152762px;}
._36{width:44.144673px;}
._71{width:45.556402px;}
._35{width:46.721311px;}
._72{width:47.769953px;}
._2b{width:48.911614px;}
._8a{width:49.941860px;}
._7{width:51.160868px;}
._3d{width:53.280044px;}
._3e{width:54.540709px;}
._27{width:56.284185px;}
._1c{width:58.148471px;}
._d{width:60.545505px;}
._20{width:62.243007px;}
._23{width:65.509798px;}
._f{width:66.894601px;}
._2d{width:71.738242px;}
._1d{width:74.880062px;}
._7d{width:76.252402px;}
._50{width:78.967505px;}
._25{width:80.697600px;}
._47{width:86.916533px;}
._4d{width:88.409849px;}
._12{width:93.207350px;}
._24{width:96.836850px;}
._4c{width:104.071960px;}
._53{width:108.637781px;}
._46{width:112.738210px;}
._45{width:115.369015px;}
._44{width:116.996134px;}
._4f{width:120.245880px;}
._4e{width:121.999049px;}
._48{width:124.376668px;}
._4b{width:130.396603px;}
._6d{width:132.480110px;}
._69{width:136.922388px;}
._52{width:141.734017px;}
._4a{width:142.931612px;}
._49{width:144.558731px;}
._51{width:145.748757px;}
._57{width:150.989107px;}
._3b{width:155.703940px;}
._6b{width:157.966736px;}
._79{width:163.701955px;}
._67{width:166.180594px;}
._76{width:169.265596px;}
._61{width:170.384561px;}
._3c{width:174.305600px;}
._7b{width:180.065605px;}
._7a{width:183.448932px;}
._7c{width:190.148551px;}
._2f{width:197.079483px;}
._38{width:198.183485px;}
._66{width:202.320169px;}
._75{width:205.789262px;}
._64{width:212.220841px;}
._77{width:214.625633px;}
._6a{width:217.898363px;}
._63{width:222.333550px;}
._30{width:228.784139px;}
._81{width:231.120193px;}
._40{width:234.782712px;}
._56{width:241.893437px;}
._89{width:245.478548px;}
._78{width:246.763842px;}
._68{width:250.625663px;}
._60{width:251.803846px;}
._32{width:258.294940px;}
._41{width:266.141935px;}
._5f{width:267.840223px;}
._85{width:271.767499px;}
._55{width:275.026981px;}
._73{width:279.230018px;}
._7f{width:282.846354px;}
._62{width:284.269328px;}
._74{width:310.058440px;}
._5d{width:315.900927px;}
._54{width:338.058649px;}
._8b{width:356.465752px;}
._2e{width:361.040803px;}
._8e{width:364.239123px;}
._8d{width:378.737343px;}
._6c{width:380.190721px;}
._33{width:382.647592px;}
._31{width:387.161774px;}
._80{width:443.978552px;}
._43{width:447.156321px;}
._88{width:470.063537px;}
._8f{width:473.424166px;}
._86{width:481.501065px;}
._65{width:488.356771px;}
._7e{width:574.691388px;}
._87{width:609.504280px;}
._42{width:775.446178px;}
._83{width:918.610758px;}
._39{width:956.851179px;}
._e{width:1004.924474px;}
._5e{width:1012.255389px;}
._84{width:1037.715043px;}
._82{width:1267.600846px;}
._1e{width:1355.867410px;}
._14{width:1522.801269px;}
._19{width:1668.692802px;}
.fcb{color:rgb(0,153,0);}
.fca{color:rgb(148,0,209);}
.fc9{color:rgb(236,0,140);}
.fc4{color:transparent;}
.fc3{color:rgb(46,59,132);}
.fc8{color:rgb(128,128,128);}
.fc7{color:rgb(250,250,250);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(59,59,59);}
.fc0{color:rgb(47,62,133);}
.fs12{font-size:25.693453px;}
.fsd{font-size:35.865600px;}
.fs15{font-size:44.063873px;}
.fs10{font-size:44.215200px;}
.fs11{font-size:44.241729px;}
.fs14{font-size:46.587583px;}
.fs9{font-size:47.820600px;}
.fs4{font-size:48.018239px;}
.fse{font-size:50.530144px;}
.fsc{font-size:53.798400px;}
.fs6{font-size:54.020354px;}
.fs13{font-size:55.905100px;}
.fsf{font-size:57.748736px;}
.fs3{font-size:60.007609px;}
.fsa{font-size:65.454600px;}
.fs8{font-size:71.731200px;}
.fs2{font-size:72.027138px;}
.fsb{font-size:86.077200px;}
.fs7{font-size:103.292400px;}
.fs1{font-size:150.041541px;}
.fs0{font-size:180.067845px;}
.fs5{font-size:185.672933px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y10b{bottom:2.210760px;}
.y133{bottom:3.415624px;}
.y11{bottom:4.147548px;}
.ya{bottom:4.214433px;}
.yf{bottom:4.293710px;}
.yc{bottom:4.297929px;}
.ya0{bottom:8.120916px;}
.y2d7{bottom:10.413533px;}
.y13{bottom:12.196416px;}
.y9f{bottom:12.632536px;}
.y214{bottom:15.140975px;}
.y2d8{bottom:17.482932px;}
.y9b{bottom:18.286160px;}
.y9c{bottom:24.221760px;}
.y2d6{bottom:26.949780px;}
.y98{bottom:37.404150px;}
.yd1{bottom:37.446446px;}
.ya1{bottom:39.363885px;}
.y92{bottom:39.871442px;}
.y9e{bottom:47.907765px;}
.y90{bottom:50.064883px;}
.y22e{bottom:54.740420px;}
.y91{bottom:54.971270px;}
.y17{bottom:57.983505px;}
.y38{bottom:59.431500px;}
.y226{bottom:64.057937px;}
.y9d{bottom:65.996542px;}
.y22d{bottom:72.210764px;}
.y16{bottom:75.990289px;}
.y15{bottom:93.997074px;}
.y222{bottom:98.998624px;}
.y21f{bottom:100.163314px;}
.y22c{bottom:103.657383px;}
.y1e1{bottom:104.263500px;}
.y19a{bottom:109.576500px;}
.y14{bottom:112.003858px;}
.y296{bottom:113.670000px;}
.yff{bottom:114.253500px;}
.y163{bottom:115.845000px;}
.y21e{bottom:117.633658px;}
.y1bf{bottom:117.976500px;}
.y221{bottom:118.798347px;}
.y8b{bottom:119.158500px;}
.y22b{bottom:121.127726px;}
.y280{bottom:121.357500px;}
.y37{bottom:121.696500px;}
.y238{bottom:127.126500px;}
.y11e{bottom:130.755400px;}
.y199{bottom:130.945500px;}
.y8f{bottom:131.161253px;}
.y8d{bottom:134.375782px;}
.y295{bottom:135.040500px;}
.y162{bottom:137.215500px;}
.y8e{bottom:138.196561px;}
.y136{bottom:140.131500px;}
.yfe{bottom:140.674500px;}
.y95{bottom:143.201639px;}
.y94{bottom:143.342627px;}
.y97{bottom:144.089864px;}
.y1be{bottom:144.397500px;}
.y2b8{bottom:145.329000px;}
.y8a{bottom:145.579500px;}
.y11d{bottom:145.701243px;}
.y1e0{bottom:146.955000px;}
.y27f{bottom:147.778500px;}
.y198{bottom:152.316000px;}
.y237{bottom:153.547500px;}
.y36{bottom:156.258000px;}
.y294{bottom:156.411000px;}
.y161{bottom:158.584500px;}
.y135{bottom:160.455000px;}
.y11c{bottom:160.616136px;}
.y20c{bottom:165.918000px;}
.yfd{bottom:167.095500px;}
.y1bd{bottom:170.818500px;}
.y2b7{bottom:171.750000px;}
.y89{bottom:172.000500px;}
.y1df{bottom:173.376000px;}
.y197{bottom:173.686500px;}
.y27e{bottom:174.199500px;}
.y11b{bottom:175.531028px;}
.y293{bottom:177.780000px;}
.y160{bottom:179.955000px;}
.y236{bottom:179.968500px;}
.y134{bottom:180.778500px;}
.y2da{bottom:184.603536px;}
.y20b{bottom:186.243000px;}
.y11a{bottom:190.445920px;}
.y35{bottom:190.821000px;}
.y2dc{bottom:191.636052px;}
.yfc{bottom:193.516500px;}
.y196{bottom:195.055500px;}
.y1bc{bottom:197.239500px;}
.y2b6{bottom:198.171000px;}
.y88{bottom:198.421500px;}
.y292{bottom:199.150500px;}
.y1de{bottom:199.797000px;}
.y27d{bottom:200.620500px;}
.y15f{bottom:201.324000px;}
.y2d9{bottom:201.729920px;}
.y2e3{bottom:202.258592px;}
.y119{bottom:205.391763px;}
.y20a{bottom:206.566500px;}
.y2dd{bottom:208.787025px;}
.y2e2{bottom:209.598469px;}
.y10d{bottom:209.949000px;}
.y213{bottom:213.138203px;}
.y235{bottom:213.723000px;}
.y195{bottom:216.426000px;}
.y2e0{bottom:216.655574px;}
.y2e4{bottom:217.577673px;}
.y2db{bottom:218.585831px;}
.yfb{bottom:219.937500px;}
.y96{bottom:219.983777px;}
.y118{bottom:220.181748px;}
.y291{bottom:220.521000px;}
.y15e{bottom:222.694500px;}
.y1bb{bottom:223.660500px;}
.y2b5{bottom:224.592000px;}
.y87{bottom:224.842500px;}
.y34{bottom:225.382500px;}
.y1dd{bottom:226.218000px;}
.y9a{bottom:226.300045px;}
.y27c{bottom:227.041500px;}
.y21d{bottom:227.114478px;}
.y93{bottom:229.472273px;}
.y99{bottom:231.220526px;}
.y2de{bottom:231.433692px;}
.y8c{bottom:233.862000px;}
.y10c{bottom:233.935746px;}
.y209{bottom:235.099500px;}
.y60{bottom:235.594500px;}
.y194{bottom:237.795000px;}
.y2df{bottom:239.093237px;}
.y290{bottom:241.890000px;}
.y2e1{bottom:242.670964px;}
.y15d{bottom:244.065000px;}
.y21c{bottom:244.584822px;}
.yfa{bottom:246.358500px;}
.y1ba{bottom:250.081500px;}
.y2b4{bottom:251.013000px;}
.y86{bottom:251.263500px;}
.y5f{bottom:252.033000px;}
.y131{bottom:252.235557px;}
.y1dc{bottom:252.639000px;}
.y27b{bottom:253.462500px;}
.y25e{bottom:257.397000px;}
.y193{bottom:259.165500px;}
.y2e5{bottom:262.268568px;}
.y28f{bottom:263.260500px;}
.y208{bottom:264.291000px;}
.y130{bottom:264.957375px;}
.y15c{bottom:265.434000px;}
.y5e{bottom:268.471500px;}
.y21a{bottom:271.372682px;}
.yf9{bottom:272.779500px;}
.y33{bottom:276.309000px;}
.y2b3{bottom:277.434000px;}
.y85{bottom:277.684500px;}
.y1db{bottom:279.060000px;}
.y234{bottom:279.097500px;}
.y27a{bottom:279.883500px;}
.y192{bottom:280.536000px;}
.y25d{bottom:283.818000px;}
.y207{bottom:284.614500px;}
.y28e{bottom:284.629500px;}
.y5d{bottom:284.910000px;}
.y15b{bottom:286.804500px;}
.yc7{bottom:289.392226px;}
.y117{bottom:294.818111px;}
.y2d5{bottom:298.665000px;}
.yf8{bottom:299.200500px;}
.y191{bottom:301.905000px;}
.y1b9{bottom:303.340500px;}
.y2b2{bottom:303.855000px;}
.y84{bottom:304.105500px;}
.y1da{bottom:305.481000px;}
.y233{bottom:305.518500px;}
.y28d{bottom:306.000000px;}
.y279{bottom:306.304500px;}
.y5c{bottom:308.829000px;}
.y25c{bottom:310.239000px;}
.y32{bottom:310.870500px;}
.y15a{bottom:317.140500px;}
.y206{bottom:320.865000px;}
.y190{bottom:323.275500px;}
.y28c{bottom:327.370500px;}
.y212{bottom:329.607161px;}
.y83{bottom:330.526500px;}
.y1d9{bottom:331.902000px;}
.y232{bottom:331.939500px;}
.y278{bottom:332.725500px;}
.y5b{bottom:335.250000px;}
.y25b{bottom:336.660000px;}
.y215{bottom:337.759988px;}
.yd2{bottom:339.703500px;}
.yf7{bottom:341.892000px;}
.y159{bottom:343.561500px;}
.y12f{bottom:344.105899px;}
.y18f{bottom:344.646000px;}
.y31{bottom:345.432000px;}
.y205{bottom:347.286000px;}
.y28b{bottom:348.739500px;}
.y132{bottom:352.234619px;}
.y12e{bottom:356.826612px;}
.y82{bottom:356.947500px;}
.y1d8{bottom:358.323000px;}
.y231{bottom:358.360500px;}
.y5a{bottom:361.671000px;}
.y25a{bottom:363.081000px;}
.y18e{bottom:366.015000px;}
.yf6{bottom:368.313000px;}
.y2b1{bottom:369.444000px;}
.y12d{bottom:369.517480px;}
.y158{bottom:369.982500px;}
.y28a{bottom:370.110000px;}
.y204{bottom:373.707000px;}
.y1b8{bottom:379.975500px;}
.y30{bottom:379.995000px;}
.y12c{bottom:382.238193px;}
.y1d7{bottom:384.744000px;}
.y277{bottom:385.984500px;}
.y18d{bottom:387.385500px;}
.y59{bottom:388.092000px;}
.y259{bottom:389.502000px;}
.y289{bottom:391.479000px;}
.y219{bottom:393.665088px;}
.yf5{bottom:394.734000px;}
.y12b{bottom:394.960012px;}
.y2b0{bottom:395.865000px;}
.y157{bottom:396.403500px;}
.y81{bottom:399.639000px;}
.y203{bottom:400.128000px;}
.yc5{bottom:404.241153px;}
.y21b{bottom:405.311984px;}
.y1b7{bottom:406.396500px;}
.y12a{bottom:407.649774px;}
.y2e6{bottom:407.673000px;}
.y18c{bottom:408.754500px;}
.y1d6{bottom:411.165000px;}
.y230{bottom:411.621000px;}
.y288{bottom:412.849500px;}
.y58{bottom:414.513000px;}
.y2f{bottom:414.556500px;}
.ya5{bottom:414.843460px;}
.ya3{bottom:414.857564px;}
.yac{bottom:415.322820px;}
.y258{bottom:415.923000px;}
.y129{bottom:420.371592px;}
.yf4{bottom:421.155000px;}
.y2af{bottom:422.286000px;}
.y156{bottom:422.824500px;}
.ya2{bottom:424.670337px;}
.ya6{bottom:424.712629px;}
.y80{bottom:426.060000px;}
.y202{bottom:426.549000px;}
.yc4{bottom:429.830502px;}
.y18b{bottom:430.125000px;}
.ya4{bottom:431.000699px;}
.y1b6{bottom:432.817500px;}
.y128{bottom:433.093411px;}
.y287{bottom:434.220000px;}
.y8{bottom:434.249653px;}
.yb{bottom:438.255002px;}
.y57{bottom:440.934000px;}
.y257{bottom:442.344000px;}
.yab{bottom:444.704745px;}
.ya7{bottom:444.775244px;}
.yaa{bottom:445.776255px;}
.yf3{bottom:447.576000px;}
.y2ae{bottom:448.707000px;}
.y2e{bottom:449.119500px;}
.y18a{bottom:451.495500px;}
.y276{bottom:451.573500px;}
.ya9{bottom:451.740057px;}
.y7f{bottom:452.481000px;}
.y201{bottom:452.970000px;}
.y286{bottom:455.589000px;}
.y211{bottom:457.723015px;}
.ya8{bottom:458.916348px;}
.y116{bottom:462.923196px;}
.y7{bottom:463.234152px;}
.y22f{bottom:464.044500px;}
.y1d5{bottom:464.425500px;}
.y9{bottom:464.895001px;}
.y56{bottom:467.355000px;}
.y1b5{bottom:467.406000px;}
.y189{bottom:472.864500px;}
.yf2{bottom:473.997000px;}
.y2ad{bottom:475.128000px;}
.y155{bottom:476.083500px;}
.y285{bottom:476.959500px;}
.y115{bottom:477.869039px;}
.y275{bottom:477.994500px;}
.y7e{bottom:478.902000px;}
.y200{bottom:479.391000px;}
.y2d{bottom:483.681000px;}
.y256{bottom:488.988000px;}
.y55{bottom:493.776000px;}
.y188{bottom:494.235000px;}
.y114{bottom:494.444212px;}
.y20d{bottom:496.465357px;}
.y284{bottom:498.328500px;}
.yf1{bottom:500.418000px;}
.y2ac{bottom:501.549000px;}
.y274{bottom:504.415500px;}
.y7d{bottom:505.323000px;}
.y1ff{bottom:505.812000px;}
.y255{bottom:509.311500px;}
.y113{bottom:511.019385px;}
.y187{bottom:515.604000px;}
.yd{bottom:516.325561px;}
.y10{bottom:517.454999px;}
.y283{bottom:519.699000px;}
.y54{bottom:520.197000px;}
.ye{bottom:520.334999px;}
.yf0{bottom:526.839000px;}
.y112{bottom:527.595663px;}
.y2ab{bottom:527.970000px;}
.y254{bottom:529.636500px;}
.y273{bottom:530.836500px;}
.y7c{bottom:531.744000px;}
.y1fe{bottom:532.233000px;}
.y1b4{bottom:532.780500px;}
.y2c{bottom:534.607500px;}
.y186{bottom:536.974500px;}
.y220{bottom:539.251285px;}
.y282{bottom:541.069500px;}
.y154{bottom:542.449500px;}
.y111{bottom:542.510556px;}
.y53{bottom:546.618000px;}
.y253{bottom:549.960000px;}
.yef{bottom:553.260000px;}
.y1d4{bottom:556.972500px;}
.y272{bottom:557.257500px;}
.y7b{bottom:558.165000px;}
.y185{bottom:558.345000px;}
.y1fd{bottom:558.654000px;}
.y1b3{bottom:559.201500px;}
.y218{bottom:568.368525px;}
.y153{bottom:568.870500px;}
.y2b{bottom:569.169000px;}
.y252{bottom:570.283500px;}
.y52{bottom:573.039000px;}
.y2d4{bottom:577.111500px;}
.y1d3{bottom:577.296000px;}
.y127{bottom:578.888611px;}
.yee{bottom:579.681000px;}
.y184{bottom:579.714000px;}
.y6{bottom:582.500471px;}
.y271{bottom:583.678500px;}
.y7a{bottom:584.586000px;}
.y1fc{bottom:585.075000px;}
.y1b2{bottom:585.622500px;}
.y251{bottom:590.607000px;}
.y126{bottom:591.609324px;}
.y281{bottom:593.493000px;}
.y2aa{bottom:593.559000px;}
.y152{bottom:595.291500px;}
.yc6{bottom:596.760443px;}
.y1d2{bottom:597.619500px;}
.y183{bottom:601.084500px;}
.yaf{bottom:601.977004px;}
.y2d3{bottom:603.532500px;}
.y2a{bottom:603.730500px;}
.y125{bottom:604.300192px;}
.yad{bottom:604.683976px;}
.yb0{bottom:609.336584px;}
.y270{bottom:610.099500px;}
.yae{bottom:610.534978px;}
.y250{bottom:610.930500px;}
.y79{bottom:611.007000px;}
.y1fb{bottom:611.496000px;}
.y1b1{bottom:612.043500px;}
.yb2{bottom:614.158378px;}
.y51{bottom:615.730500px;}
.yb1{bottom:616.357792px;}
.y124{bottom:617.146919px;}
.y1d1{bottom:617.943000px;}
.y2a9{bottom:619.980000px;}
.y210{bottom:620.779556px;}
.y151{bottom:621.712500px;}
.y225{bottom:621.944245px;}
.y2d2{bottom:629.953500px;}
.y24f{bottom:631.254000px;}
.yed{bottom:632.941500px;}
.yb3{bottom:636.265316px;}
.y26f{bottom:636.520500px;}
.y78{bottom:637.428000px;}
.y1fa{bottom:637.917000px;}
.y1d0{bottom:638.268000px;}
.y1b0{bottom:638.464500px;}
.y50{bottom:642.151500px;}
.y2a8{bottom:646.401000px;}
.y110{bottom:646.882746px;}
.y150{bottom:648.133500px;}
.y24e{bottom:651.579000px;}
.y5{bottom:652.720224px;}
.y29{bottom:654.657000px;}
.y182{bottom:657.627000px;}
.y1cf{bottom:658.591500px;}
.y26e{bottom:662.941500px;}
.yb4{bottom:663.490118px;}
.y77{bottom:663.849000px;}
.y1f9{bottom:664.338000px;}
.y1af{bottom:664.885500px;}
.y4f{bottom:668.572500px;}
.y24d{bottom:671.902500px;}
.y22a{bottom:672.025897px;}
.y2a7{bottom:672.822000px;}
.y217{bottom:673.190587px;}
.y14f{bottom:674.554500px;}
.y181{bottom:677.950500px;}
.y1ce{bottom:678.915000px;}
.y10f{bottom:679.249378px;}
.yd0{bottom:679.943437px;}
.y2d1{bottom:683.212500px;}
.y28{bottom:689.218500px;}
.y26d{bottom:689.362500px;}
.y229{bottom:689.496241px;}
.y1ae{bottom:691.306500px;}
.y4e{bottom:694.993500px;}
.y180{bottom:698.274000px;}
.y1cd{bottom:699.238500px;}
.y24c{bottom:700.435500px;}
.y14e{bottom:700.975500px;}
.y4{bottom:704.489730px;}
.y1f8{bottom:707.029500px;}
.yec{bottom:709.498500px;}
.yc8{bottom:711.679859px;}
.y76{bottom:717.109500px;}
.y1ad{bottom:717.727500px;}
.y17f{bottom:718.599000px;}
.y1cc{bottom:719.562000px;}
.y4d{bottom:721.414500px;}
.y123{bottom:721.925889px;}
.y224{bottom:722.107549px;}
.y27{bottom:723.781500px;}
.y20f{bottom:725.601618px;}
.y2a6{bottom:726.081000px;}
.y14d{bottom:727.396500px;}
.y24b{bottom:729.628500px;}
.yeb{bottom:729.822000px;}
.y1f7{bottom:733.450500px;}
.y122{bottom:734.647707px;}
.y17e{bottom:738.922500px;}
.y223{bottom:739.577893px;}
.y1cb{bottom:739.887000px;}
.y26c{bottom:742.623000px;}
.y121{bottom:747.337470px;}
.y4c{bottom:747.835500px;}
.yea{bottom:750.145500px;}
.y14c{bottom:753.817500px;}
.y2d0{bottom:758.275500px;}
.y17d{bottom:759.246000px;}
.y1f6{bottom:759.871500px;}
.y120{bottom:760.184196px;}
.y1ca{bottom:760.210500px;}
.y1ac{bottom:768.406500px;}
.yc9{bottom:768.681363px;}
.ye9{bottom:770.470500px;}
.yca{bottom:771.768998px;}
.y3{bottom:771.929656px;}
.y11f{bottom:772.875064px;}
.y4b{bottom:774.256500px;}
.y26{bottom:774.706500px;}
.y75{bottom:776.782500px;}
.y24a{bottom:777.699000px;}
.y216{bottom:778.012649px;}
.y2cf{bottom:778.599000px;}
.y17c{bottom:779.569500px;}
.y14b{bottom:780.238500px;}
.yc0{bottom:783.471013px;}
.yb8{bottom:785.148776px;}
.y1f5{bottom:786.292500px;}
.yb7{bottom:788.306910px;}
.y1c9{bottom:788.743500px;}
.yc2{bottom:789.589898px;}
.yb9{bottom:790.407629px;}
.y2a5{bottom:791.670000px;}
.yb6{bottom:792.874925px;}
.ycb{bottom:794.693668px;}
.y1ab{bottom:794.827500px;}
.yba{bottom:796.371431px;}
.yb5{bottom:797.076372px;}
.yc1{bottom:797.795406px;}
.y2ce{bottom:798.922500px;}
.y17b{bottom:799.893000px;}
.y4a{bottom:800.677500px;}
.y10e{bottom:802.735799px;}
.y249{bottom:804.120000px;}
.y14a{bottom:806.659500px;}
.y26b{bottom:808.989000px;}
.ye8{bottom:811.117500px;}
.y1f4{bottom:812.713500px;}
.ybf{bottom:812.867042px;}
.ybb{bottom:817.533744px;}
.y1c8{bottom:817.935000px;}
.y2a4{bottom:818.091000px;}
.y2cd{bottom:819.246000px;}
.ybd{bottom:819.888250px;}
.y17a{bottom:820.216500px;}
.ybc{bottom:821.692898px;}
.y49{bottom:827.098500px;}
.y20e{bottom:830.423680px;}
.y248{bottom:830.541000px;}
.y1aa{bottom:830.785500px;}
.ye7{bottom:831.441000px;}
.y149{bottom:833.080500px;}
.y2{bottom:834.953402px;}
.y26a{bottom:835.410000px;}
.y1f3{bottom:839.134500px;}
.y2cc{bottom:839.571000px;}
.y25{bottom:839.845500px;}
.y179{bottom:840.541500px;}
.y2a3{bottom:844.512000px;}
.ye6{bottom:851.764500px;}
.y74{bottom:852.681000px;}
.y48{bottom:853.519500px;}
.y148{bottom:859.501500px;}
.y2cb{bottom:859.894500px;}
.y178{bottom:860.865000px;}
.y269{bottom:861.831000px;}
.y1f2{bottom:865.555500px;}
.y24{bottom:866.266500px;}
.y228{bottom:868.858436px;}
.y2a2{bottom:870.933000px;}
.ycc{bottom:871.687287px;}
.y1c7{bottom:875.706000px;}
.y73{bottom:879.102000px;}
.y47{bottom:879.940500px;}
.y2ca{bottom:880.218000px;}
.y177{bottom:881.188500px;}
.ycd{bottom:882.571571px;}
.y247{bottom:883.383000px;}
.y147{bottom:885.922500px;}
.y227{bottom:886.328780px;}
.y268{bottom:888.252000px;}
.y1f1{bottom:891.976500px;}
.ye5{bottom:892.413000px;}
.y23{bottom:892.687500px;}
.y1a9{bottom:896.160000px;}
.y2a1{bottom:897.354000px;}
.y2c9{bottom:900.541500px;}
.y176{bottom:901.512000px;}
.y1c6{bottom:902.127000px;}
.y72{bottom:905.523000px;}
.y246{bottom:909.804000px;}
.y146{bottom:912.343500px;}
.ye4{bottom:912.736500px;}
.y267{bottom:914.673000px;}
.y1f0{bottom:918.397500px;}
.y22{bottom:919.108500px;}
.y2c8{bottom:920.866500px;}
.y175{bottom:921.835500px;}
.y1a8{bottom:922.581000px;}
.y46{bottom:922.632000px;}
.y2a0{bottom:923.775000px;}
.y1c5{bottom:928.548000px;}
.y71{bottom:931.944000px;}
.ye3{bottom:933.060000px;}
.y245{bottom:936.225000px;}
.y145{bottom:938.764500px;}
.y266{bottom:941.094000px;}
.y2c7{bottom:941.190000px;}
.y174{bottom:942.160500px;}
.y1ef{bottom:944.818500px;}
.y21{bottom:945.529500px;}
.yc3{bottom:948.624503px;}
.y1a7{bottom:949.002000px;}
.y45{bottom:949.053000px;}
.y29f{bottom:950.196000px;}
.y1c4{bottom:954.969000px;}
.y70{bottom:958.365000px;}
.y2c6{bottom:961.513500px;}
.y173{bottom:962.484000px;}
.yce{bottom:963.118082px;}
.ybe{bottom:963.357767px;}
.y144{bottom:965.185500px;}
.y265{bottom:967.515000px;}
.y1ee{bottom:971.239500px;}
.y20{bottom:971.950500px;}
.ycf{bottom:973.649900px;}
.ye2{bottom:973.707000px;}
.y1a6{bottom:975.423000px;}
.y44{bottom:975.474000px;}
.y29e{bottom:976.617000px;}
.y1c3{bottom:981.390000px;}
.y2c5{bottom:981.837000px;}
.y172{bottom:982.807500px;}
.y6f{bottom:984.786000px;}
.y244{bottom:989.067000px;}
.y143{bottom:991.606500px;}
.y264{bottom:993.936000px;}
.ye1{bottom:994.032000px;}
.y1f{bottom:998.371500px;}
.y1a5{bottom:1001.844000px;}
.y43{bottom:1001.895000px;}
.y2c4{bottom:1002.160500px;}
.y29d{bottom:1003.038000px;}
.y171{bottom:1003.131000px;}
.y1c2{bottom:1007.811000px;}
.y6e{bottom:1011.207000px;}
.y1ed{bottom:1013.931000px;}
.ye0{bottom:1014.355500px;}
.y243{bottom:1015.488000px;}
.y263{bottom:1020.357000px;}
.y2c3{bottom:1022.484000px;}
.y170{bottom:1023.454500px;}
.y1e{bottom:1024.792500px;}
.y1a4{bottom:1028.265000px;}
.y42{bottom:1028.316000px;}
.y29c{bottom:1029.459000px;}
.y1c1{bottom:1034.232000px;}
.y142{bottom:1034.298000px;}
.ydf{bottom:1034.679000px;}
.y6d{bottom:1037.628000px;}
.y1ec{bottom:1040.352000px;}
.y242{bottom:1041.909000px;}
.y2c2{bottom:1042.809000px;}
.y16f{bottom:1043.779500px;}
.y262{bottom:1046.778000px;}
.y10a{bottom:1048.932420px;}
.y1d{bottom:1051.213500px;}
.y1a3{bottom:1054.686000px;}
.y41{bottom:1054.737000px;}
.y29b{bottom:1055.880000px;}
.y141{bottom:1060.719000px;}
.y2c1{bottom:1063.132500px;}
.y6c{bottom:1064.049000px;}
.y16e{bottom:1064.103000px;}
.y1eb{bottom:1066.773000px;}
.y261{bottom:1073.199000px;}
.yde{bottom:1075.326000px;}
.y1c0{bottom:1076.923500px;}
.y1a2{bottom:1081.107000px;}
.y40{bottom:1081.158000px;}
.y29a{bottom:1082.301000px;}
.y2c0{bottom:1083.456000px;}
.y16d{bottom:1084.426500px;}
.y140{bottom:1087.140000px;}
.y6b{bottom:1090.470000px;}
.y1ea{bottom:1093.194000px;}
.y241{bottom:1094.751000px;}
.ydd{bottom:1095.651000px;}
.y260{bottom:1099.620000px;}
.y109{bottom:1103.344500px;}
.y2bf{bottom:1103.779500px;}
.y16c{bottom:1104.750000px;}
.y3f{bottom:1107.579000px;}
.y299{bottom:1108.722000px;}
.y13f{bottom:1113.561000px;}
.ydc{bottom:1115.974500px;}
.y6a{bottom:1116.891000px;}
.y1e9{bottom:1119.615000px;}
.y240{bottom:1121.172000px;}
.y2be{bottom:1124.103000px;}
.y16b{bottom:1125.073500px;}
.y108{bottom:1129.765500px;}
.y1a1{bottom:1134.366000px;}
.y298{bottom:1135.143000px;}
.ydb{bottom:1136.298000px;}
.y1c{bottom:1138.581000px;}
.y13e{bottom:1139.982000px;}
.y2bd{bottom:1144.428000px;}
.y16a{bottom:1145.398500px;}
.y1e8{bottom:1146.036000px;}
.y23f{bottom:1147.593000px;}
.y25f{bottom:1152.879000px;}
.y107{bottom:1156.186500px;}
.y12{bottom:1157.174972px;}
.y3e{bottom:1160.838000px;}
.y2bc{bottom:1164.751500px;}
.y169{bottom:1165.722000px;}
.y1b{bottom:1165.779000px;}
.y13d{bottom:1166.403000px;}
.y69{bottom:1170.150000px;}
.y1e7{bottom:1172.457000px;}
.yda{bottom:1176.945000px;}
.y106{bottom:1182.607500px;}
.y2bb{bottom:1185.075000px;}
.y168{bottom:1186.045500px;}
.y1a0{bottom:1187.626500px;}
.y297{bottom:1188.403500px;}
.y13c{bottom:1192.824000px;}
.yd9{bottom:1197.270000px;}
.y1e6{bottom:1198.878000px;}
.y23e{bottom:1200.435000px;}
.y1a{bottom:1202.740500px;}
.y167{bottom:1206.369000px;}
.y105{bottom:1209.028500px;}
.y2ba{bottom:1213.608000px;}
.yd8{bottom:1217.593500px;}
.y13b{bottom:1219.245000px;}
.y3d{bottom:1220.512500px;}
.y1e5{bottom:1225.299000px;}
.y68{bottom:1226.692500px;}
.y23d{bottom:1226.856000px;}
.y104{bottom:1235.449500px;}
.y2e8{bottom:1238.941500px;}
.y2b9{bottom:1242.801000px;}
.y13a{bottom:1245.666000px;}
.yd7{bottom:1246.126500px;}
.y67{bottom:1247.016000px;}
.y1e4{bottom:1251.720000px;}
.y23c{bottom:1253.277000px;}
.y103{bottom:1261.870500px;}
.y19{bottom:1264.143000px;}
.y2e7{bottom:1265.362500px;}
.y66{bottom:1267.341000px;}
.y19f{bottom:1267.441500px;}
.y139{bottom:1272.087000px;}
.yd6{bottom:1275.319500px;}
.y1e3{bottom:1278.141000px;}
.y65{bottom:1287.664500px;}
.y102{bottom:1288.291500px;}
.yd5{bottom:1295.643000px;}
.y19e{bottom:1298.346000px;}
.y138{bottom:1298.508000px;}
.y1e2{bottom:1304.562000px;}
.y23b{bottom:1306.119000px;}
.y18{bottom:1306.882500px;}
.y64{bottom:1307.988000px;}
.y3c{bottom:1314.702000px;}
.y101{bottom:1314.712500px;}
.y166{bottom:1316.197500px;}
.y19d{bottom:1319.716500px;}
.y137{bottom:1324.929000px;}
.y63{bottom:1328.311500px;}
.yd4{bottom:1330.983000px;}
.y23a{bottom:1332.540000px;}
.y19c{bottom:1341.085500px;}
.y100{bottom:1341.133500px;}
.y165{bottom:1345.390500px;}
.y3b{bottom:1349.263500px;}
.y62{bottom:1356.844500px;}
.yd3{bottom:1357.404000px;}
.y239{bottom:1358.961000px;}
.y19b{bottom:1362.456000px;}
.y164{bottom:1365.714000px;}
.y3a{bottom:1383.825000px;}
.y61{bottom:1386.037500px;}
.y39{bottom:1442.556000px;}
.h1b{height:12.601332px;}
.h20{height:14.882836px;}
.h7{height:15.479999px;}
.h17{height:24.245146px;}
.h28{height:31.929096px;}
.h1e{height:32.057972px;}
.h10{height:32.326726px;}
.h1c{height:32.556895px;}
.h1f{height:32.576429px;}
.h8{height:35.629533px;}
.h19{height:36.614616px;}
.h21{height:37.336090px;}
.h14{height:40.348800px;}
.hb{height:40.353204px;}
.h24{height:40.509359px;}
.h1a{height:41.845276px;}
.h6{height:44.825684px;}
.h13{height:45.818220px;}
.h11{height:49.090950px;}
.h15{height:50.211840px;}
.h5{height:53.804272px;}
.h9{height:54.719998px;}
.h22{height:56.074726px;}
.h16{height:56.080726px;}
.h25{height:57.051591px;}
.hf{height:58.360726px;}
.h26{height:59.144393px;}
.h12{height:60.254040px;}
.hd{height:72.304680px;}
.he{height:72.511265px;}
.h4{height:112.081031px;}
.h3{height:128.208306px;}
.ha{height:139.254700px;}
.h1d{height:875.460960px;}
.h23{height:903.799123px;}
.h27{height:907.243702px;}
.h18{height:1036.770266px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.hc{height:1512.000000px;}
.w2{width:5.400000px;}
.w3{width:7.200000px;}
.w4{width:14.399999px;}
.w5{width:19.439999px;}
.wb{width:152.750251px;}
.w6{width:285.839988px;}
.w9{width:565.014987px;}
.wd{width:647.581587px;}
.w8{width:671.329072px;}
.wc{width:676.489936px;}
.wa{width:676.492560px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.w7{width:918.000000px;}
.x0{left:0.000000px;}
.x47{left:1.097642px;}
.x39{left:16.241832px;}
.x27{left:18.948804px;}
.x61{left:22.857033px;}
.x6f{left:33.357437px;}
.x3a{left:41.506904px;}
.x69{left:49.954264px;}
.x25{left:52.334792px;}
.x42{left:56.807689px;}
.x3{left:60.479997px;}
.x3b{left:63.162680px;}
.x1{left:64.874499px;}
.x2{left:69.650468px;}
.x3c{left:78.502188px;}
.x7f{left:84.980327px;}
.x80{left:98.356860px;}
.x26{left:101.962612px;}
.x34{left:110.083528px;}
.x15{left:113.693819px;}
.x4f{left:115.081500px;}
.x3d{left:119.106768px;}
.x48{left:120.561000px;}
.x7{left:125.279995px;}
.xc{left:133.512000px;}
.x52{left:137.052000px;}
.x3f{left:142.477500px;}
.x13{left:143.499000px;}
.x49{left:146.614500px;}
.x7b{left:150.289283px;}
.x11{left:152.166000px;}
.x77{left:154.020000px;}
.x53{left:156.897000px;}
.xd{left:158.058000px;}
.x1c{left:160.613672px;}
.x6{left:163.439993px;}
.x51{left:164.610000px;}
.xb{left:167.059500px;}
.x6a{left:170.208463px;}
.x50{left:173.097000px;}
.x68{left:178.961833px;}
.x70{left:180.490488px;}
.x6b{left:183.948160px;}
.x6d{left:185.367626px;}
.x6e{left:186.532315px;}
.x38{left:188.585717px;}
.x41{left:194.238000px;}
.xe{left:195.694500px;}
.x16{left:199.413605px;}
.x63{left:204.930777px;}
.x66{left:209.989897px;}
.x46{left:217.768703px;}
.x5a{left:219.232500px;}
.x43{left:220.745491px;}
.x44{left:223.408352px;}
.x45{left:225.821396px;}
.x5e{left:227.096275px;}
.x5c{left:231.755034px;}
.x8{left:233.880000px;}
.x5d{left:237.178120px;}
.x9{left:238.696500px;}
.x29{left:240.018185px;}
.x1d{left:241.822833px;}
.x76{left:243.733500px;}
.x67{left:250.390067px;}
.x30{left:277.915793px;}
.x40{left:279.823500px;}
.x17{left:282.427413px;}
.xa{left:289.308000px;}
.x4a{left:299.842500px;}
.x81{left:307.660259px;}
.x79{left:313.955098px;}
.x78{left:315.952500px;}
.x10{left:319.542000px;}
.x1e{left:321.227345px;}
.x35{left:323.031993px;}
.x55{left:325.410000px;}
.x7a{left:326.544776px;}
.x22{left:334.762205px;}
.x57{left:336.910500px;}
.x5b{left:338.123943px;}
.x4{left:339.479986px;}
.x58{left:341.001000px;}
.x59{left:345.091500px;}
.x60{left:352.082026px;}
.x2d{left:354.613333px;}
.x7c{left:357.232117px;}
.x7d{left:370.608650px;}
.x7e{left:383.985183px;}
.x18{left:391.608617px;}
.x36{left:394.315589px;}
.x2a{left:397.022561px;}
.x1f{left:427.701577px;}
.x2e{left:434.017845px;}
.x62{left:453.027850px;}
.x65{left:460.015987px;}
.x5f{left:463.528260px;}
.x64{left:465.457277px;}
.xf{left:467.665500px;}
.x71{left:471.480900px;}
.x19{left:472.817777px;}
.x1b{left:477.329397px;}
.x72{left:478.614624px;}
.x2b{left:480.036369px;}
.x32{left:482.743341px;}
.x6c{left:484.692847px;}
.x28{left:513.422357px;}
.x2f{left:516.129329px;}
.x14{left:518.181000px;}
.x5{left:519.839978px;}
.x82{left:531.127046px;}
.x20{left:541.394402px;}
.x21{left:556.733910px;}
.x1a{left:558.538558px;}
.x83{left:567.322370px;}
.x2c{left:568.464122px;}
.x33{left:571.171094px;}
.x56{left:572.254500px;}
.x84{left:580.698903px;}
.x85{left:594.075436px;}
.x86{left:606.665114px;}
.x37{left:619.896590px;}
.x23{left:630.724478px;}
.x4e{left:636.234000px;}
.x31{left:637.943070px;}
.x4d{left:639.643500px;}
.x4c{left:643.962000px;}
.x24{left:646.063986px;}
.x4b{left:648.052500px;}
.x73{left:649.387500px;}
.x75{left:659.841000px;}
.x74{left:663.933000px;}
.x54{left:793.636500px;}
.x12{left:801.817500px;}
.x87{left:812.476500px;}
.x3e{left:815.535000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v4{vertical-align:-20.314667pt;}
.v8{vertical-align:-13.018667pt;}
.v5{vertical-align:-6.416526pt;}
.v6{vertical-align:-3.208263pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.564474pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000933pt;}
.ls2a{letter-spacing:0.001906pt;}
.ls29{letter-spacing:0.002591pt;}
.ls2b{letter-spacing:0.004811pt;}
.ls7{letter-spacing:0.117978pt;}
.ls1{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.658591pt;}
.ls6{letter-spacing:2.661806pt;}
.lsa{letter-spacing:3.777843pt;}
.ls1b{letter-spacing:4.112589pt;}
.ls11{letter-spacing:4.208230pt;}
.ls14{letter-spacing:4.303872pt;}
.ls1a{letter-spacing:4.351693pt;}
.ls22{letter-spacing:4.447334pt;}
.ls10{letter-spacing:4.590797pt;}
.ls18{letter-spacing:4.638618pt;}
.ls25{letter-spacing:4.734259pt;}
.lse{letter-spacing:4.782080pt;}
.lsc{letter-spacing:4.829901pt;}
.ls4{letter-spacing:19.826591pt;}
.ls1f{letter-spacing:21.021077pt;}
.ls1c{letter-spacing:22.141258pt;}
.ls5{letter-spacing:25.293258pt;}
.ls1d{letter-spacing:27.533258pt;}
.ls3{letter-spacing:29.090933pt;}
.ls9{letter-spacing:30.331139pt;}
.ls20{letter-spacing:30.747139pt;}
.ls19{letter-spacing:35.148288pt;}
.lsf{letter-spacing:90.165806pt;}
.ls21{letter-spacing:91.280473pt;}
.lsd{letter-spacing:91.600473pt;}
.lsb{letter-spacing:91.637806pt;}
.ls12{letter-spacing:149.584473pt;}
.ls16{letter-spacing:151.595139pt;}
.ls13{letter-spacing:151.637806pt;}
.ls26{letter-spacing:151.707139pt;}
.ls15{letter-spacing:151.739139pt;}
.ls1e{letter-spacing:158.445258pt;}
.ls8{letter-spacing:177.364908pt;}
.ls17{letter-spacing:199.101258pt;}
.ls24{letter-spacing:212.053806pt;}
.ls23{letter-spacing:212.155139pt;}
.ls27{letter-spacing:212.165806pt;}
.ls28{letter-spacing:212.171139pt;}
.ws16{word-spacing:-48.349131pt;}
.ws19{word-spacing:-48.174586pt;}
.ws0{word-spacing:-45.297067pt;}
.ws13{word-spacing:-43.038600pt;}
.wsbd{word-spacing:-35.196109pt;}
.ws17{word-spacing:-33.454573pt;}
.ws5b{word-spacing:-29.090933pt;}
.ws15{word-spacing:-27.810932pt;}
.ws37{word-spacing:-24.575109pt;}
.ws14b{word-spacing:-23.504558pt;}
.ws4{word-spacing:-17.215400pt;}
.wse{word-spacing:-15.825468pt;}
.wsad{word-spacing:-15.767286pt;}
.ws76{word-spacing:-15.650922pt;}
.wsdc{word-spacing:-15.592740pt;}
.ws94{word-spacing:-15.534558pt;}
.ws13b{word-spacing:-15.301831pt;}
.ws27{word-spacing:-15.243649pt;}
.ws108{word-spacing:-15.069103pt;}
.ws75{word-spacing:-15.010922pt;}
.ws111{word-spacing:-14.952740pt;}
.wsf6{word-spacing:-14.894558pt;}
.wse4{word-spacing:-14.778194pt;}
.ws51{word-spacing:-14.720012pt;}
.wsd8{word-spacing:-14.603649pt;}
.ws92{word-spacing:-14.429103pt;}
.ws5{word-spacing:-14.378302pt;}
.ws140{word-spacing:-14.370921pt;}
.ws1a{word-spacing:-14.346200pt;}
.ws38{word-spacing:-14.312739pt;}
.ws39{word-spacing:-14.080012pt;}
.ws53{word-spacing:-13.963648pt;}
.ws24{word-spacing:-13.847284pt;}
.wsfc{word-spacing:-13.806424pt;}
.ws13d{word-spacing:-13.789102pt;}
.wsa7{word-spacing:-13.730921pt;}
.ws11f{word-spacing:-13.672739pt;}
.wse2{word-spacing:-13.614557pt;}
.ws8a{word-spacing:-13.556375pt;}
.ws13c{word-spacing:-13.498193pt;}
.ws10f{word-spacing:-13.440011pt;}
.wsa{word-spacing:-13.381829pt;}
.ws60{word-spacing:-13.323647pt;}
.wseb{word-spacing:-13.265466pt;}
.wsf{word-spacing:-13.207284pt;}
.ws143{word-spacing:-13.149102pt;}
.ws6e{word-spacing:-13.090920pt;}
.ws4a{word-spacing:-13.032738pt;}
.ws3c{word-spacing:-12.974556pt;}
.wsed{word-spacing:-12.916374pt;}
.ws3e{word-spacing:-12.800011pt;}
.wsb2{word-spacing:-12.625465pt;}
.ws58{word-spacing:-12.479016pt;}
.ws2d{word-spacing:-12.392738pt;}
.ws8b{word-spacing:-12.334556pt;}
.ws70{word-spacing:-12.276374pt;}
.ws71{word-spacing:-12.218192pt;}
.ws49{word-spacing:-12.160010pt;}
.ws31{word-spacing:-12.101828pt;}
.ws54{word-spacing:-12.043646pt;}
.ws13e{word-spacing:-12.027728pt;}
.ws32{word-spacing:-11.985465pt;}
.ws1b{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-11.927283pt;}
.wsef{word-spacing:-11.810919pt;}
.ws50{word-spacing:-11.752737pt;}
.ws42{word-spacing:-11.694555pt;}
.ws87{word-spacing:-11.636373pt;}
.ws5f{word-spacing:-11.520010pt;}
.wsfd{word-spacing:-11.505354pt;}
.wsb5{word-spacing:-11.461828pt;}
.ws83{word-spacing:-11.345464pt;}
.wsf7{word-spacing:-11.229100pt;}
.ws14{word-spacing:-11.170918pt;}
.ws34{word-spacing:-11.112737pt;}
.wsd7{word-spacing:-11.054555pt;}
.wsd4{word-spacing:-10.996373pt;}
.ws145{word-spacing:-10.938191pt;}
.ws1f{word-spacing:-10.880009pt;}
.ws139{word-spacing:-10.821827pt;}
.wsac{word-spacing:-10.763645pt;}
.ws35{word-spacing:-10.705463pt;}
.ws5d{word-spacing:-10.647282pt;}
.wsf5{word-spacing:-10.589100pt;}
.ws68{word-spacing:-10.530918pt;}
.ws82{word-spacing:-10.472736pt;}
.ws101{word-spacing:-10.414554pt;}
.ws4f{word-spacing:-10.298190pt;}
.wsf3{word-spacing:-10.240009pt;}
.wse1{word-spacing:-10.181827pt;}
.ws4b{word-spacing:-10.123645pt;}
.ws28{word-spacing:-10.065463pt;}
.ws72{word-spacing:-10.007281pt;}
.wsec{word-spacing:-9.890917pt;}
.ws4e{word-spacing:-9.832735pt;}
.ws6c{word-spacing:-9.774554pt;}
.ws12{word-spacing:-9.716372pt;}
.ws43{word-spacing:-9.658190pt;}
.wsa6{word-spacing:-9.600008pt;}
.ws40{word-spacing:-9.541826pt;}
.ws136{word-spacing:-9.435579pt;}
.wsea{word-spacing:-9.425462pt;}
.ws137{word-spacing:-9.419013pt;}
.ws93{word-spacing:-9.367281pt;}
.ws52{word-spacing:-9.309099pt;}
.ws3f{word-spacing:-9.250917pt;}
.ws115{word-spacing:-9.192735pt;}
.ws4d{word-spacing:-9.134553pt;}
.ws7a{word-spacing:-9.084302pt;}
.ws10b{word-spacing:-9.076371pt;}
.ws1{word-spacing:-9.048770pt;}
.ws77{word-spacing:-9.018189pt;}
.ws7c{word-spacing:-8.966324pt;}
.ws11b{word-spacing:-8.960007pt;}
.ws2a{word-spacing:-8.843644pt;}
.ws29{word-spacing:-8.785462pt;}
.ws5a{word-spacing:-8.727280pt;}
.ws3b{word-spacing:-8.610916pt;}
.ws89{word-spacing:-8.494553pt;}
.wsf0{word-spacing:-8.436371pt;}
.wsd6{word-spacing:-8.378189pt;}
.ws41{word-spacing:-8.261825pt;}
.ws18{word-spacing:-8.220396pt;}
.ws66{word-spacing:-8.203643pt;}
.ws2e{word-spacing:-8.029098pt;}
.ws8c{word-spacing:-7.970916pt;}
.wsae{word-spacing:-7.912734pt;}
.ws9{word-spacing:-7.854552pt;}
.ws69{word-spacing:-7.796370pt;}
.ws33{word-spacing:-7.680006pt;}
.ws78{word-spacing:-7.621825pt;}
.wsdf{word-spacing:-7.563643pt;}
.ws61{word-spacing:-7.505461pt;}
.wsda{word-spacing:-7.447279pt;}
.ws3d{word-spacing:-7.389097pt;}
.wsd{word-spacing:-7.330915pt;}
.ws8e{word-spacing:-7.272733pt;}
.ws90{word-spacing:-7.214551pt;}
.wsb{word-spacing:-7.156370pt;}
.ws86{word-spacing:-7.040006pt;}
.ws100{word-spacing:-6.981824pt;}
.wsd9{word-spacing:-6.923642pt;}
.ws10{word-spacing:-6.865460pt;}
.wsd5{word-spacing:-6.807278pt;}
.ws91{word-spacing:-6.749097pt;}
.ws46{word-spacing:-6.690915pt;}
.ws6f{word-spacing:-6.632733pt;}
.ws62{word-spacing:-6.574551pt;}
.ws36{word-spacing:-6.516369pt;}
.ws20{word-spacing:-6.458187pt;}
.ws22{word-spacing:-6.400005pt;}
.ws6a{word-spacing:-6.341823pt;}
.ws44{word-spacing:-6.283642pt;}
.wsf9{word-spacing:-6.225460pt;}
.wsf4{word-spacing:-6.109096pt;}
.ws2c{word-spacing:-6.050914pt;}
.ws6d{word-spacing:-5.992732pt;}
.wsf8{word-spacing:-5.934550pt;}
.wsb0{word-spacing:-5.876369pt;}
.ws110{word-spacing:-5.818187pt;}
.ws2b{word-spacing:-5.701823pt;}
.ws88{word-spacing:-5.585459pt;}
.ws4c{word-spacing:-5.527277pt;}
.wsee{word-spacing:-5.469095pt;}
.wsf1{word-spacing:-5.410914pt;}
.ws64{word-spacing:-5.294550pt;}
.ws81{word-spacing:-5.207206pt;}
.wsfe{word-spacing:-5.178186pt;}
.ws3a{word-spacing:-5.061822pt;}
.ws116{word-spacing:-4.945459pt;}
.ws1e{word-spacing:-4.887277pt;}
.wsbb{word-spacing:-4.877722pt;}
.wsca{word-spacing:-4.829901pt;}
.ws67{word-spacing:-4.829095pt;}
.ws125{word-spacing:-4.782080pt;}
.wsff{word-spacing:-4.712731pt;}
.wsc5{word-spacing:-4.686438pt;}
.ws45{word-spacing:-4.538186pt;}
.ws120{word-spacing:-4.495155pt;}
.wsab{word-spacing:-4.480004pt;}
.ws11d{word-spacing:-4.363640pt;}
.wsbc{word-spacing:-4.351693pt;}
.ws85{word-spacing:-4.305458pt;}
.ws9b{word-spacing:-4.256051pt;}
.wsdd{word-spacing:-4.247276pt;}
.ws65{word-spacing:-4.189094pt;}
.ws23{word-spacing:-4.130913pt;}
.ws141{word-spacing:-4.072731pt;}
.ws30{word-spacing:-4.014549pt;}
.ws1c{word-spacing:-3.956367pt;}
.ws8{word-spacing:-3.918300pt;}
.ws132{word-spacing:-3.898185pt;}
.ws131{word-spacing:-3.867728pt;}
.ws134{word-spacing:-3.861921pt;}
.wsf2{word-spacing:-3.840003pt;}
.ws14a{word-spacing:-3.607276pt;}
.ws117{word-spacing:-3.490912pt;}
.ws13f{word-spacing:-3.432730pt;}
.wse0{word-spacing:-3.374548pt;}
.wse6{word-spacing:-3.200003pt;}
.ws63{word-spacing:-2.967275pt;}
.wsc{word-spacing:-2.909093pt;}
.ws6b{word-spacing:-2.501820pt;}
.ws73{word-spacing:-2.443638pt;}
.wsaf{word-spacing:-2.210911pt;}
.ws102{word-spacing:-2.094547pt;}
.ws10a{word-spacing:-2.036365pt;}
.ws25{word-spacing:-1.803638pt;}
.ws26{word-spacing:-1.745456pt;}
.ws47{word-spacing:-1.570910pt;}
.ws147{word-spacing:-1.338183pt;}
.ws48{word-spacing:-1.163637pt;}
.ws8d{word-spacing:-0.930910pt;}
.wsde{word-spacing:-0.814546pt;}
.ws2f{word-spacing:-0.640001pt;}
.wsdb{word-spacing:-0.523637pt;}
.wsfa{word-spacing:-0.407273pt;}
.ws8f{word-spacing:-0.349091pt;}
.ws74{word-spacing:-0.290909pt;}
.ws142{word-spacing:-0.174546pt;}
.ws2{word-spacing:-0.165043pt;}
.ws11{word-spacing:-0.058182pt;}
.wsfb{word-spacing:-0.049693pt;}
.ws57{word-spacing:-0.044916pt;}
.ws7{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws106{word-spacing:0.756364pt;}
.wsa5{word-spacing:1.047274pt;}
.ws146{word-spacing:1.105455pt;}
.ws10d{word-spacing:1.280001pt;}
.ws103{word-spacing:2.269093pt;}
.wsc1{word-spacing:2.486682pt;}
.ws104{word-spacing:2.850911pt;}
.wsb3{word-spacing:4.712731pt;}
.wsa9{word-spacing:6.050914pt;}
.wsbf{word-spacing:6.647091pt;}
.ws96{word-spacing:6.694912pt;}
.wsa2{word-spacing:6.790554pt;}
.wsb1{word-spacing:6.865460pt;}
.ws128{word-spacing:6.886195pt;}
.ws12c{word-spacing:6.981837pt;}
.wse7{word-spacing:7.040006pt;}
.wsc2{word-spacing:7.125299pt;}
.wsc3{word-spacing:7.460045pt;}
.ws148{word-spacing:7.738188pt;}
.wsbe{word-spacing:7.746970pt;}
.wsc0{word-spacing:7.842611pt;}
.ws144{word-spacing:9.774554pt;}
.wsd3{word-spacing:11.763917pt;}
.ws149{word-spacing:11.810919pt;}
.ws113{word-spacing:15.576498pt;}
.ws13a{word-spacing:18.225685pt;}
.ws138{word-spacing:19.628351pt;}
.ws11c{word-spacing:20.042565pt;}
.ws10e{word-spacing:20.637831pt;}
.ws6{word-spacing:20.722347pt;}
.ws14d{word-spacing:20.770926pt;}
.ws114{word-spacing:21.217378pt;}
.ws118{word-spacing:21.815325pt;}
.ws119{word-spacing:21.815605pt;}
.ws10c{word-spacing:22.355165pt;}
.ws14c{word-spacing:22.696927pt;}
.wsa8{word-spacing:22.865474pt;}
.ws112{word-spacing:23.073685pt;}
.ws21{word-spacing:23.738202pt;}
.ws11e{word-spacing:24.673378pt;}
.wse8{word-spacing:24.901839pt;}
.ws133{word-spacing:25.164351pt;}
.ws97{word-spacing:26.253619pt;}
.ws98{word-spacing:26.349261pt;}
.ws121{word-spacing:26.923110pt;}
.ws123{word-spacing:27.114394pt;}
.ws84{word-spacing:27.266271pt;}
.ws122{word-spacing:27.305677pt;}
.wsb7{word-spacing:27.496960pt;}
.ws9a{word-spacing:27.592602pt;}
.wsc4{word-spacing:27.688243pt;}
.wsb9{word-spacing:27.831706pt;}
.ws9e{word-spacing:28.262093pt;}
.wsa4{word-spacing:30.138207pt;}
.wsd2{word-spacing:30.414029pt;}
.ws135{word-spacing:30.487298pt;}
.wsd1{word-spacing:30.838398pt;}
.ws95{word-spacing:30.987878pt;}
.ws11a{word-spacing:33.454573pt;}
.wscb{word-spacing:35.100467pt;}
.ws12f{word-spacing:35.961242pt;}
.wscf{word-spacing:36.343808pt;}
.ws12e{word-spacing:36.535091pt;}
.ws9c{word-spacing:36.630733pt;}
.ws9f{word-spacing:36.774195pt;}
.ws9d{word-spacing:36.869837pt;}
.wsc8{word-spacing:37.108941pt;}
.wsa1{word-spacing:37.156762pt;}
.wsb8{word-spacing:37.634970pt;}
.ws99{word-spacing:38.017536pt;}
.wsa0{word-spacing:38.113178pt;}
.ws79{word-spacing:55.984186pt;}
.wse5{word-spacing:65.687327pt;}
.ws5c{word-spacing:66.036419pt;}
.ws7b{word-spacing:83.183585pt;}
.wsaa{word-spacing:84.596434pt;}
.wscc{word-spacing:90.134398pt;}
.ws7d{word-spacing:90.289742pt;}
.ws129{word-spacing:91.425065pt;}
.wse3{word-spacing:106.181907pt;}
.wse9{word-spacing:107.810999pt;}
.ws105{word-spacing:113.454640pt;}
.ws7e{word-spacing:116.034323pt;}
.ws5e{word-spacing:125.847378pt;}
.ws7f{word-spacing:147.565349pt;}
.wsc6{word-spacing:149.553065pt;}
.wsc7{word-spacing:151.505065pt;}
.wsd0{word-spacing:151.563732pt;}
.wscd{word-spacing:151.606398pt;}
.wsb6{word-spacing:151.675732pt;}
.wsce{word-spacing:151.707732pt;}
.ws124{word-spacing:151.787732pt;}
.wsc9{word-spacing:151.825065pt;}
.wsba{word-spacing:151.862398pt;}
.ws12a{word-spacing:151.873065pt;}
.ws80{word-spacing:155.157103pt;}
.ws107{word-spacing:175.301964pt;}
.ws109{word-spacing:183.738335pt;}
.wsa3{word-spacing:185.483791pt;}
.ws127{word-spacing:211.691732pt;}
.ws12b{word-spacing:211.814398pt;}
.ws130{word-spacing:211.931732pt;}
.ws126{word-spacing:212.022398pt;}
.wsb4{word-spacing:259.200216pt;}
.ws12d{word-spacing:270.897065pt;}
.ws55{word-spacing:337.308339pt;}
.ws56{word-spacing:406.277650pt;}
.ws59{word-spacing:828.418028pt;}
._1a{margin-left:-34.104569pt;}
._17{margin-left:-30.661844pt;}
._15{margin-left:-29.090933pt;}
._1b{margin-left:-27.520023pt;}
._16{margin-left:-9.716372pt;}
._0{margin-left:-8.630654pt;}
._3a{margin-left:-7.326839pt;}
._3{margin-left:-5.228407pt;}
._b{margin-left:-4.024544pt;}
._37{margin-left:-3.083639pt;}
._5{margin-left:-2.167865pt;}
._2{margin-left:-1.227837pt;}
._4{width:1.227837pt;}
._1{width:2.295387pt;}
._18{width:3.432730pt;}
._58{width:4.782080pt;}
._6e{width:5.987052pt;}
._5b{width:6.965118pt;}
._70{width:7.990090pt;}
._5c{width:9.462167pt;}
._6f{width:10.774064pt;}
._59{width:11.742498pt;}
._3f{width:14.669961pt;}
._29{width:15.730506pt;}
._34{width:17.336254pt;}
._11{width:18.505671pt;}
._10{width:19.570261pt;}
._22{width:21.854106pt;}
._8c{width:22.812391pt;}
._c{width:23.777094pt;}
._a{width:24.723310pt;}
._26{width:25.768549pt;}
._2c{width:26.784812pt;}
._8{width:27.869114pt;}
._28{width:29.323661pt;}
._9{width:30.555475pt;}
._2a{width:31.454497pt;}
._5a{width:32.422502pt;}
._6{width:33.396391pt;}
._1f{width:34.329197pt;}
._13{width:36.042486pt;}
._21{width:37.469122pt;}
._36{width:39.239709pt;}
._71{width:40.494579pt;}
._35{width:41.530055pt;}
._72{width:42.462180pt;}
._2b{width:43.476990pt;}
._8a{width:44.392764pt;}
._7{width:45.476327pt;}
._3d{width:47.360039pt;}
._3e{width:48.480630pt;}
._27{width:50.030387pt;}
._1c{width:51.687530pt;}
._d{width:53.818227pt;}
._20{width:55.327117pt;}
._23{width:58.230931pt;}
._f{width:59.461868pt;}
._2d{width:63.767326pt;}
._1d{width:66.560055pt;}
._7d{width:67.779913pt;}
._50{width:70.193338pt;}
._25{width:71.731200pt;}
._47{width:77.259141pt;}
._4d{width:78.586532pt;}
._12{width:82.850978pt;}
._24{width:86.077200pt;}
._4c{width:92.508409pt;}
._53{width:96.566916pt;}
._46{width:100.211742pt;}
._45{width:102.550235pt;}
._44{width:103.996564pt;}
._4f{width:106.885227pt;}
._4e{width:108.443599pt;}
._48{width:110.557038pt;}
._4b{width:115.908091pt;}
._6d{width:117.760098pt;}
._69{width:121.708790pt;}
._52{width:125.985793pt;}
._4a{width:127.050322pt;}
._49{width:128.496650pt;}
._51{width:129.554451pt;}
._57{width:134.212540pt;}
._3b{width:138.403502pt;}
._6b{width:140.414876pt;}
._79{width:145.512849pt;}
._67{width:147.716084pt;}
._76{width:150.458307pt;}
._61{width:151.452943pt;}
._3c{width:154.938311pt;}
._7b{width:160.058315pt;}
._7a{width:163.065717pt;}
._7c{width:169.020934pt;}
._2f{width:175.181763pt;}
._38{width:176.163098pt;}
._66{width:179.840150pt;}
._75{width:182.923789pt;}
._64{width:188.640747pt;}
._77{width:190.778341pt;}
._6a{width:193.687434pt;}
._63{width:197.629822pt;}
._30{width:203.363679pt;}
._81{width:205.440171pt;}
._40{width:208.695744pt;}
._56{width:215.016388pt;}
._89{width:218.203154pt;}
._78{width:219.345637pt;}
._68{width:222.778367pt;}
._60{width:223.825641pt;}
._32{width:229.595502pt;}
._41{width:236.570609pt;}
._5f{width:238.080198pt;}
._85{width:241.571110pt;}
._55{width:244.468428pt;}
._73{width:248.204461pt;}
._7f{width:251.418981pt;}
._62{width:252.683847pt;}
._74{width:275.607502pt;}
._5d{width:280.800824pt;}
._54{width:300.496577pt;}
._8b{width:316.858446pt;}
._2e{width:320.925158pt;}
._8e{width:323.768109pt;}
._8d{width:336.655416pt;}
._6c{width:337.947308pt;}
._33{width:340.131193pt;}
._31{width:344.143799pt;}
._80{width:394.647602pt;}
._43{width:397.472285pt;}
._88{width:417.834255pt;}
._8f{width:420.821481pt;}
._86{width:428.000947pt;}
._65{width:434.094907pt;}
._7e{width:510.836789pt;}
._87{width:541.781582pt;}
._42{width:689.285491pt;}
._83{width:816.542896pt;}
._39{width:850.534381pt;}
._e{width:893.266199pt;}
._5e{width:899.782568pt;}
._84{width:922.413372pt;}
._82{width:1126.756307pt;}
._1e{width:1205.215475pt;}
._14{width:1353.601128pt;}
._19{width:1483.282491pt;}
.fs12{font-size:22.838625pt;}
.fsd{font-size:31.880533pt;}
.fs15{font-size:39.167887pt;}
.fs10{font-size:39.302400pt;}
.fs11{font-size:39.325981pt;}
.fs14{font-size:41.411185pt;}
.fs9{font-size:42.507200pt;}
.fs4{font-size:42.682879pt;}
.fse{font-size:44.915684pt;}
.fsc{font-size:47.820800pt;}
.fs6{font-size:48.018092pt;}
.fs13{font-size:49.693422pt;}
.fsf{font-size:51.332210pt;}
.fs3{font-size:53.340097pt;}
.fsa{font-size:58.181867pt;}
.fs8{font-size:63.761067pt;}
.fs2{font-size:64.024123pt;}
.fsb{font-size:76.513067pt;}
.fs7{font-size:91.815467pt;}
.fs1{font-size:133.370259pt;}
.fs0{font-size:160.060307pt;}
.fs5{font-size:165.042607pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y10b{bottom:1.965120pt;}
.y133{bottom:3.036110pt;}
.y11{bottom:3.686709pt;}
.ya{bottom:3.746163pt;}
.yf{bottom:3.816631pt;}
.yc{bottom:3.820381pt;}
.ya0{bottom:7.218592pt;}
.y2d7{bottom:9.256473pt;}
.y13{bottom:10.841259pt;}
.y9f{bottom:11.228921pt;}
.y214{bottom:13.458644pt;}
.y2d8{bottom:15.540384pt;}
.y9b{bottom:16.254364pt;}
.y9c{bottom:21.530453pt;}
.y2d6{bottom:23.955360pt;}
.y98{bottom:33.248133pt;}
.yd1{bottom:33.285730pt;}
.ya1{bottom:34.990120pt;}
.y92{bottom:35.441282pt;}
.y9e{bottom:42.584680pt;}
.y90{bottom:44.502119pt;}
.y22e{bottom:48.658152pt;}
.y91{bottom:48.863351pt;}
.y17{bottom:51.540893pt;}
.y38{bottom:52.828000pt;}
.y226{bottom:56.940389pt;}
.y9d{bottom:58.663592pt;}
.y22d{bottom:64.187346pt;}
.y16{bottom:67.546924pt;}
.y15{bottom:83.552955pt;}
.y222{bottom:87.998777pt;}
.y21f{bottom:89.034057pt;}
.y22c{bottom:92.139896pt;}
.y1e1{bottom:92.678667pt;}
.y19a{bottom:97.401333pt;}
.y14{bottom:99.558985pt;}
.y296{bottom:101.040000pt;}
.yff{bottom:101.558667pt;}
.y163{bottom:102.973333pt;}
.y21e{bottom:104.563251pt;}
.y1bf{bottom:104.868000pt;}
.y221{bottom:105.598531pt;}
.y8b{bottom:105.918667pt;}
.y22b{bottom:107.669090pt;}
.y280{bottom:107.873333pt;}
.y37{bottom:108.174667pt;}
.y238{bottom:113.001333pt;}
.y11e{bottom:116.227022pt;}
.y199{bottom:116.396000pt;}
.y8f{bottom:116.587781pt;}
.y8d{bottom:119.445140pt;}
.y295{bottom:120.036000pt;}
.y162{bottom:121.969333pt;}
.y8e{bottom:122.841387pt;}
.y136{bottom:124.561333pt;}
.yfe{bottom:125.044000pt;}
.y95{bottom:127.290346pt;}
.y94{bottom:127.415669pt;}
.y97{bottom:128.079879pt;}
.y1be{bottom:128.353333pt;}
.y2b8{bottom:129.181333pt;}
.y8a{bottom:129.404000pt;}
.y11d{bottom:129.512216pt;}
.y1e0{bottom:130.626667pt;}
.y27f{bottom:131.358667pt;}
.y198{bottom:135.392000pt;}
.y237{bottom:136.486667pt;}
.y36{bottom:138.896000pt;}
.y294{bottom:139.032000pt;}
.y161{bottom:140.964000pt;}
.y135{bottom:142.626667pt;}
.y11c{bottom:142.769898pt;}
.y20c{bottom:147.482667pt;}
.yfd{bottom:148.529333pt;}
.y1bd{bottom:151.838667pt;}
.y2b7{bottom:152.666667pt;}
.y89{bottom:152.889333pt;}
.y1df{bottom:154.112000pt;}
.y197{bottom:154.388000pt;}
.y27e{bottom:154.844000pt;}
.y11b{bottom:156.027580pt;}
.y293{bottom:158.026667pt;}
.y160{bottom:159.960000pt;}
.y236{bottom:159.972000pt;}
.y134{bottom:160.692000pt;}
.y2da{bottom:164.092032pt;}
.y20b{bottom:165.549333pt;}
.y11a{bottom:169.285262pt;}
.y35{bottom:169.618667pt;}
.y2dc{bottom:170.343157pt;}
.yfc{bottom:172.014667pt;}
.y196{bottom:173.382667pt;}
.y1bc{bottom:175.324000pt;}
.y2b6{bottom:176.152000pt;}
.y88{bottom:176.374667pt;}
.y292{bottom:177.022667pt;}
.y1de{bottom:177.597333pt;}
.y27d{bottom:178.329333pt;}
.y15f{bottom:178.954667pt;}
.y2d9{bottom:179.315485pt;}
.y2e3{bottom:179.785416pt;}
.y119{bottom:182.570456pt;}
.y20a{bottom:183.614667pt;}
.y2dd{bottom:185.588467pt;}
.y2e2{bottom:186.309750pt;}
.y10d{bottom:186.621333pt;}
.y213{bottom:189.456181pt;}
.y235{bottom:189.976000pt;}
.y195{bottom:192.378667pt;}
.y2e0{bottom:192.582732pt;}
.y2e4{bottom:193.402376pt;}
.y2db{bottom:194.298517pt;}
.yfb{bottom:195.500000pt;}
.y96{bottom:195.541135pt;}
.y118{bottom:195.717109pt;}
.y291{bottom:196.018667pt;}
.y15e{bottom:197.950667pt;}
.y1bb{bottom:198.809333pt;}
.y2b5{bottom:199.637333pt;}
.y87{bottom:199.860000pt;}
.y34{bottom:200.340000pt;}
.y1dd{bottom:201.082667pt;}
.y9a{bottom:201.155595pt;}
.y27c{bottom:201.814667pt;}
.y21d{bottom:201.879536pt;}
.y93{bottom:203.975354pt;}
.y99{bottom:205.529356pt;}
.y2de{bottom:205.718838pt;}
.y8c{bottom:207.877333pt;}
.y10c{bottom:207.942885pt;}
.y209{bottom:208.977333pt;}
.y60{bottom:209.417333pt;}
.y194{bottom:211.373333pt;}
.y2df{bottom:212.527321pt;}
.y290{bottom:215.013333pt;}
.y2e1{bottom:215.707523pt;}
.y15d{bottom:216.946667pt;}
.y21c{bottom:217.408730pt;}
.yfa{bottom:218.985333pt;}
.y1ba{bottom:222.294667pt;}
.y2b4{bottom:223.122667pt;}
.y86{bottom:223.345333pt;}
.y5f{bottom:224.029333pt;}
.y131{bottom:224.209384pt;}
.y1dc{bottom:224.568000pt;}
.y27b{bottom:225.300000pt;}
.y25e{bottom:228.797333pt;}
.y193{bottom:230.369333pt;}
.y2e5{bottom:233.127616pt;}
.y28f{bottom:234.009333pt;}
.y208{bottom:234.925333pt;}
.y130{bottom:235.517667pt;}
.y15c{bottom:235.941333pt;}
.y5e{bottom:238.641333pt;}
.y21a{bottom:241.220162pt;}
.yf9{bottom:242.470667pt;}
.y33{bottom:245.608000pt;}
.y2b3{bottom:246.608000pt;}
.y85{bottom:246.830667pt;}
.y1db{bottom:248.053333pt;}
.y234{bottom:248.086667pt;}
.y27a{bottom:248.785333pt;}
.y192{bottom:249.365333pt;}
.y25d{bottom:252.282667pt;}
.y207{bottom:252.990667pt;}
.y28e{bottom:253.004000pt;}
.y5d{bottom:253.253333pt;}
.y15b{bottom:254.937333pt;}
.yc7{bottom:257.237534pt;}
.y117{bottom:262.060543pt;}
.y2d5{bottom:265.480000pt;}
.yf8{bottom:265.956000pt;}
.y191{bottom:268.360000pt;}
.y1b9{bottom:269.636000pt;}
.y2b2{bottom:270.093333pt;}
.y84{bottom:270.316000pt;}
.y1da{bottom:271.538667pt;}
.y233{bottom:271.572000pt;}
.y28d{bottom:272.000000pt;}
.y279{bottom:272.270667pt;}
.y5c{bottom:274.514667pt;}
.y25c{bottom:275.768000pt;}
.y32{bottom:276.329333pt;}
.y15a{bottom:281.902667pt;}
.y206{bottom:285.213333pt;}
.y190{bottom:287.356000pt;}
.y28c{bottom:290.996000pt;}
.y212{bottom:292.984143pt;}
.y83{bottom:293.801333pt;}
.y1d9{bottom:295.024000pt;}
.y232{bottom:295.057333pt;}
.y278{bottom:295.756000pt;}
.y5b{bottom:298.000000pt;}
.y25b{bottom:299.253333pt;}
.y215{bottom:300.231101pt;}
.yd2{bottom:301.958667pt;}
.yf7{bottom:303.904000pt;}
.y159{bottom:305.388000pt;}
.y12f{bottom:305.871911pt;}
.y18f{bottom:306.352000pt;}
.y31{bottom:307.050667pt;}
.y205{bottom:308.698667pt;}
.y28b{bottom:309.990667pt;}
.y132{bottom:313.097439pt;}
.y12e{bottom:317.179211pt;}
.y82{bottom:317.286667pt;}
.y1d8{bottom:318.509333pt;}
.y231{bottom:318.542667pt;}
.y5a{bottom:321.485333pt;}
.y25a{bottom:322.738667pt;}
.y18e{bottom:325.346667pt;}
.yf6{bottom:327.389333pt;}
.y2b1{bottom:328.394667pt;}
.y12d{bottom:328.459982pt;}
.y158{bottom:328.873333pt;}
.y28a{bottom:328.986667pt;}
.y204{bottom:332.184000pt;}
.y1b8{bottom:337.756000pt;}
.y30{bottom:337.773333pt;}
.y12c{bottom:339.767283pt;}
.y1d7{bottom:341.994667pt;}
.y277{bottom:343.097333pt;}
.y18d{bottom:344.342667pt;}
.y59{bottom:344.970667pt;}
.y259{bottom:346.224000pt;}
.y289{bottom:347.981333pt;}
.y219{bottom:349.924523pt;}
.yf5{bottom:350.874667pt;}
.y12b{bottom:351.075566pt;}
.y2b0{bottom:351.880000pt;}
.y157{bottom:352.358667pt;}
.y81{bottom:355.234667pt;}
.y203{bottom:355.669333pt;}
.yc5{bottom:359.325469pt;}
.y21b{bottom:360.277319pt;}
.y1b7{bottom:361.241333pt;}
.y12a{bottom:362.355355pt;}
.y2e6{bottom:362.376000pt;}
.y18c{bottom:363.337333pt;}
.y1d6{bottom:365.480000pt;}
.y230{bottom:365.885333pt;}
.y288{bottom:366.977333pt;}
.y58{bottom:368.456000pt;}
.y2f{bottom:368.494667pt;}
.ya5{bottom:368.749742pt;}
.ya3{bottom:368.762279pt;}
.yac{bottom:369.175840pt;}
.y258{bottom:369.709333pt;}
.y129{bottom:373.663638pt;}
.yf4{bottom:374.360000pt;}
.y2af{bottom:375.365333pt;}
.y156{bottom:375.844000pt;}
.ya2{bottom:377.484744pt;}
.ya6{bottom:377.522337pt;}
.y80{bottom:378.720000pt;}
.y202{bottom:379.154667pt;}
.yc4{bottom:382.071558pt;}
.y18b{bottom:382.333333pt;}
.ya4{bottom:383.111733pt;}
.y1b6{bottom:384.726667pt;}
.y128{bottom:384.971921pt;}
.y287{bottom:385.973333pt;}
.y8{bottom:385.999691pt;}
.yb{bottom:389.560002pt;}
.y57{bottom:391.941333pt;}
.y257{bottom:393.194667pt;}
.yab{bottom:395.293107pt;}
.ya7{bottom:395.355772pt;}
.yaa{bottom:396.245560pt;}
.yf3{bottom:397.845333pt;}
.y2ae{bottom:398.850667pt;}
.y2e{bottom:399.217333pt;}
.y18a{bottom:401.329333pt;}
.y276{bottom:401.398667pt;}
.ya9{bottom:401.546717pt;}
.y7f{bottom:402.205333pt;}
.y201{bottom:402.640000pt;}
.y286{bottom:404.968000pt;}
.y211{bottom:406.864902pt;}
.ya8{bottom:407.925643pt;}
.y116{bottom:411.487285pt;}
.y7{bottom:411.763690pt;}
.y22f{bottom:412.484000pt;}
.y1d5{bottom:412.822667pt;}
.y9{bottom:413.240001pt;}
.y56{bottom:415.426667pt;}
.y1b5{bottom:415.472000pt;}
.y189{bottom:420.324000pt;}
.yf2{bottom:421.330667pt;}
.y2ad{bottom:422.336000pt;}
.y155{bottom:423.185333pt;}
.y285{bottom:423.964000pt;}
.y115{bottom:424.772479pt;}
.y275{bottom:424.884000pt;}
.y7e{bottom:425.690667pt;}
.y200{bottom:426.125333pt;}
.y2d{bottom:429.938667pt;}
.y256{bottom:434.656000pt;}
.y55{bottom:438.912000pt;}
.y188{bottom:439.320000pt;}
.y114{bottom:439.505966pt;}
.y20d{bottom:441.302540pt;}
.y284{bottom:442.958667pt;}
.yf1{bottom:444.816000pt;}
.y2ac{bottom:445.821333pt;}
.y274{bottom:448.369333pt;}
.y7d{bottom:449.176000pt;}
.y1ff{bottom:449.610667pt;}
.y255{bottom:452.721333pt;}
.y113{bottom:454.239453pt;}
.y187{bottom:458.314667pt;}
.yd{bottom:458.956054pt;}
.y10{bottom:459.959999pt;}
.y283{bottom:461.954667pt;}
.y54{bottom:462.397333pt;}
.ye{bottom:462.519999pt;}
.yf0{bottom:468.301333pt;}
.y112{bottom:468.973923pt;}
.y2ab{bottom:469.306667pt;}
.y254{bottom:470.788000pt;}
.y273{bottom:471.854667pt;}
.y7c{bottom:472.661333pt;}
.y1fe{bottom:473.096000pt;}
.y1b4{bottom:473.582667pt;}
.y2c{bottom:475.206667pt;}
.y186{bottom:477.310667pt;}
.y220{bottom:479.334476pt;}
.y282{bottom:480.950667pt;}
.y154{bottom:482.177333pt;}
.y111{bottom:482.231605pt;}
.y53{bottom:485.882667pt;}
.y253{bottom:488.853333pt;}
.yef{bottom:491.786667pt;}
.y1d4{bottom:495.086667pt;}
.y272{bottom:495.340000pt;}
.y7b{bottom:496.146667pt;}
.y185{bottom:496.306667pt;}
.y1fd{bottom:496.581333pt;}
.y1b3{bottom:497.068000pt;}
.y218{bottom:505.216466pt;}
.y153{bottom:505.662667pt;}
.y2b{bottom:505.928000pt;}
.y252{bottom:506.918667pt;}
.y52{bottom:509.368000pt;}
.y2d4{bottom:512.988000pt;}
.y1d3{bottom:513.152000pt;}
.y127{bottom:514.567655pt;}
.yee{bottom:515.272000pt;}
.y184{bottom:515.301333pt;}
.y6{bottom:517.778196pt;}
.y271{bottom:518.825333pt;}
.y7a{bottom:519.632000pt;}
.y1fc{bottom:520.066667pt;}
.y1b2{bottom:520.553333pt;}
.y251{bottom:524.984000pt;}
.y126{bottom:525.874955pt;}
.y281{bottom:527.549333pt;}
.y2aa{bottom:527.608000pt;}
.y152{bottom:529.148000pt;}
.yc6{bottom:530.453727pt;}
.y1d2{bottom:531.217333pt;}
.y183{bottom:534.297333pt;}
.yaf{bottom:535.090670pt;}
.y2d3{bottom:536.473333pt;}
.y2a{bottom:536.649333pt;}
.y125{bottom:537.155726pt;}
.yad{bottom:537.496867pt;}
.yb0{bottom:541.632519pt;}
.y270{bottom:542.310667pt;}
.yae{bottom:542.697758pt;}
.y250{bottom:543.049333pt;}
.y79{bottom:543.117333pt;}
.y1fb{bottom:543.552000pt;}
.y1b1{bottom:544.038667pt;}
.yb2{bottom:545.918558pt;}
.y51{bottom:547.316000pt;}
.yb1{bottom:547.873593pt;}
.y124{bottom:548.575039pt;}
.y1d1{bottom:549.282667pt;}
.y2a9{bottom:551.093333pt;}
.y210{bottom:551.804050pt;}
.y151{bottom:552.633333pt;}
.y225{bottom:552.839329pt;}
.y2d2{bottom:559.958667pt;}
.y24f{bottom:561.114667pt;}
.yed{bottom:562.614667pt;}
.yb3{bottom:565.569169pt;}
.y26f{bottom:565.796000pt;}
.y78{bottom:566.602667pt;}
.y1fa{bottom:567.037333pt;}
.y1d0{bottom:567.349333pt;}
.y1b0{bottom:567.524000pt;}
.y50{bottom:570.801333pt;}
.y2a8{bottom:574.578667pt;}
.y110{bottom:575.006885pt;}
.y150{bottom:576.118667pt;}
.y24e{bottom:579.181333pt;}
.y5{bottom:580.195755pt;}
.y29{bottom:581.917333pt;}
.y182{bottom:584.557333pt;}
.y1cf{bottom:585.414667pt;}
.y26e{bottom:589.281333pt;}
.yb4{bottom:589.768994pt;}
.y77{bottom:590.088000pt;}
.y1f9{bottom:590.522667pt;}
.y1af{bottom:591.009333pt;}
.y4f{bottom:594.286667pt;}
.y24d{bottom:597.246667pt;}
.y22a{bottom:597.356353pt;}
.y2a7{bottom:598.064000pt;}
.y217{bottom:598.391633pt;}
.y14f{bottom:599.604000pt;}
.y181{bottom:602.622667pt;}
.y1ce{bottom:603.480000pt;}
.y10f{bottom:603.777225pt;}
.yd0{bottom:604.394166pt;}
.y2d1{bottom:607.300000pt;}
.y28{bottom:612.638667pt;}
.y26d{bottom:612.766667pt;}
.y229{bottom:612.885547pt;}
.y1ae{bottom:614.494667pt;}
.y4e{bottom:617.772000pt;}
.y180{bottom:620.688000pt;}
.y1cd{bottom:621.545333pt;}
.y24c{bottom:622.609333pt;}
.y14e{bottom:623.089333pt;}
.y4{bottom:626.213093pt;}
.y1f8{bottom:628.470667pt;}
.yec{bottom:630.665333pt;}
.yc8{bottom:632.604319pt;}
.y76{bottom:637.430667pt;}
.y1ad{bottom:637.980000pt;}
.y17f{bottom:638.754667pt;}
.y1cc{bottom:639.610667pt;}
.y4d{bottom:641.257333pt;}
.y123{bottom:641.711901pt;}
.y224{bottom:641.873377pt;}
.y27{bottom:643.361333pt;}
.y20f{bottom:644.979216pt;}
.y2a6{bottom:645.405333pt;}
.y14d{bottom:646.574667pt;}
.y24b{bottom:648.558667pt;}
.yeb{bottom:648.730667pt;}
.y1f7{bottom:651.956000pt;}
.y122{bottom:653.020184pt;}
.y17e{bottom:656.820000pt;}
.y223{bottom:657.402571pt;}
.y1cb{bottom:657.677333pt;}
.y26c{bottom:660.109333pt;}
.y121{bottom:664.299973pt;}
.y4c{bottom:664.742667pt;}
.yea{bottom:666.796000pt;}
.y14c{bottom:670.060000pt;}
.y2d0{bottom:674.022667pt;}
.y17d{bottom:674.885333pt;}
.y1f6{bottom:675.441333pt;}
.y120{bottom:675.719285pt;}
.y1ca{bottom:675.742667pt;}
.y1ac{bottom:683.028000pt;}
.yc9{bottom:683.272323pt;}
.ye9{bottom:684.862667pt;}
.yca{bottom:686.016888pt;}
.y3{bottom:686.159694pt;}
.y11f{bottom:687.000057pt;}
.y4b{bottom:688.228000pt;}
.y26{bottom:688.628000pt;}
.y75{bottom:690.473333pt;}
.y24a{bottom:691.288000pt;}
.y216{bottom:691.566799pt;}
.y2cf{bottom:692.088000pt;}
.y17c{bottom:692.950667pt;}
.y14b{bottom:693.545333pt;}
.yc0{bottom:696.418678pt;}
.yb8{bottom:697.910023pt;}
.y1f5{bottom:698.926667pt;}
.yb7{bottom:700.717253pt;}
.y1c9{bottom:701.105333pt;}
.yc2{bottom:701.857687pt;}
.yb9{bottom:702.584559pt;}
.y2a5{bottom:703.706667pt;}
.yb6{bottom:704.777711pt;}
.ycb{bottom:706.394371pt;}
.y1ab{bottom:706.513333pt;}
.yba{bottom:707.885716pt;}
.yb5{bottom:708.512330pt;}
.yc1{bottom:709.151472pt;}
.y2ce{bottom:710.153333pt;}
.y17b{bottom:711.016000pt;}
.y4a{bottom:711.713333pt;}
.y10e{bottom:713.542932pt;}
.y249{bottom:714.773333pt;}
.y14a{bottom:717.030667pt;}
.y26b{bottom:719.101333pt;}
.ye8{bottom:720.993333pt;}
.y1f4{bottom:722.412000pt;}
.ybf{bottom:722.548481pt;}
.ybb{bottom:726.696661pt;}
.y1c8{bottom:727.053333pt;}
.y2a4{bottom:727.192000pt;}
.y2cd{bottom:728.218667pt;}
.ybd{bottom:728.789556pt;}
.y17a{bottom:729.081333pt;}
.ybc{bottom:730.393687pt;}
.y49{bottom:735.198667pt;}
.y20e{bottom:738.154382pt;}
.y248{bottom:738.258667pt;}
.y1aa{bottom:738.476000pt;}
.ye7{bottom:739.058667pt;}
.y149{bottom:740.516000pt;}
.y2{bottom:742.180802pt;}
.y26a{bottom:742.586667pt;}
.y1f3{bottom:745.897333pt;}
.y2cc{bottom:746.285333pt;}
.y25{bottom:746.529333pt;}
.y179{bottom:747.148000pt;}
.y2a3{bottom:750.677333pt;}
.ye6{bottom:757.124000pt;}
.y74{bottom:757.938667pt;}
.y48{bottom:758.684000pt;}
.y148{bottom:764.001333pt;}
.y2cb{bottom:764.350667pt;}
.y178{bottom:765.213333pt;}
.y269{bottom:766.072000pt;}
.y1f2{bottom:769.382667pt;}
.y24{bottom:770.014667pt;}
.y228{bottom:772.318610pt;}
.y2a2{bottom:774.162667pt;}
.ycc{bottom:774.833144pt;}
.y1c7{bottom:778.405333pt;}
.y73{bottom:781.424000pt;}
.y47{bottom:782.169333pt;}
.y2ca{bottom:782.416000pt;}
.y177{bottom:783.278667pt;}
.ycd{bottom:784.508063pt;}
.y247{bottom:785.229333pt;}
.y147{bottom:787.486667pt;}
.y227{bottom:787.847804pt;}
.y268{bottom:789.557333pt;}
.y1f1{bottom:792.868000pt;}
.ye5{bottom:793.256000pt;}
.y23{bottom:793.500000pt;}
.y1a9{bottom:796.586667pt;}
.y2a1{bottom:797.648000pt;}
.y2c9{bottom:800.481333pt;}
.y176{bottom:801.344000pt;}
.y1c6{bottom:801.890667pt;}
.y72{bottom:804.909333pt;}
.y246{bottom:808.714667pt;}
.y146{bottom:810.972000pt;}
.ye4{bottom:811.321333pt;}
.y267{bottom:813.042667pt;}
.y1f0{bottom:816.353333pt;}
.y22{bottom:816.985333pt;}
.y2c8{bottom:818.548000pt;}
.y175{bottom:819.409333pt;}
.y1a8{bottom:820.072000pt;}
.y46{bottom:820.117333pt;}
.y2a0{bottom:821.133333pt;}
.y1c5{bottom:825.376000pt;}
.y71{bottom:828.394667pt;}
.ye3{bottom:829.386667pt;}
.y245{bottom:832.200000pt;}
.y145{bottom:834.457333pt;}
.y266{bottom:836.528000pt;}
.y2c7{bottom:836.613333pt;}
.y174{bottom:837.476000pt;}
.y1ef{bottom:839.838667pt;}
.y21{bottom:840.470667pt;}
.yc3{bottom:843.221780pt;}
.y1a7{bottom:843.557333pt;}
.y45{bottom:843.602667pt;}
.y29f{bottom:844.618667pt;}
.y1c4{bottom:848.861333pt;}
.y70{bottom:851.880000pt;}
.y2c6{bottom:854.678667pt;}
.y173{bottom:855.541333pt;}
.yce{bottom:856.104962pt;}
.ybe{bottom:856.318015pt;}
.y144{bottom:857.942667pt;}
.y265{bottom:860.013333pt;}
.y1ee{bottom:863.324000pt;}
.y20{bottom:863.956000pt;}
.ycf{bottom:865.466578pt;}
.ye2{bottom:865.517333pt;}
.y1a6{bottom:867.042667pt;}
.y44{bottom:867.088000pt;}
.y29e{bottom:868.104000pt;}
.y1c3{bottom:872.346667pt;}
.y2c5{bottom:872.744000pt;}
.y172{bottom:873.606667pt;}
.y6f{bottom:875.365333pt;}
.y244{bottom:879.170667pt;}
.y143{bottom:881.428000pt;}
.y264{bottom:883.498667pt;}
.ye1{bottom:883.584000pt;}
.y1f{bottom:887.441333pt;}
.y1a5{bottom:890.528000pt;}
.y43{bottom:890.573333pt;}
.y2c4{bottom:890.809333pt;}
.y29d{bottom:891.589333pt;}
.y171{bottom:891.672000pt;}
.y1c2{bottom:895.832000pt;}
.y6e{bottom:898.850667pt;}
.y1ed{bottom:901.272000pt;}
.ye0{bottom:901.649333pt;}
.y243{bottom:902.656000pt;}
.y263{bottom:906.984000pt;}
.y2c3{bottom:908.874667pt;}
.y170{bottom:909.737333pt;}
.y1e{bottom:910.926667pt;}
.y1a4{bottom:914.013333pt;}
.y42{bottom:914.058667pt;}
.y29c{bottom:915.074667pt;}
.y1c1{bottom:919.317333pt;}
.y142{bottom:919.376000pt;}
.ydf{bottom:919.714667pt;}
.y6d{bottom:922.336000pt;}
.y1ec{bottom:924.757333pt;}
.y242{bottom:926.141333pt;}
.y2c2{bottom:926.941333pt;}
.y16f{bottom:927.804000pt;}
.y262{bottom:930.469333pt;}
.y10a{bottom:932.384373pt;}
.y1d{bottom:934.412000pt;}
.y1a3{bottom:937.498667pt;}
.y41{bottom:937.544000pt;}
.y29b{bottom:938.560000pt;}
.y141{bottom:942.861333pt;}
.y2c1{bottom:945.006667pt;}
.y6c{bottom:945.821333pt;}
.y16e{bottom:945.869333pt;}
.y1eb{bottom:948.242667pt;}
.y261{bottom:953.954667pt;}
.yde{bottom:955.845333pt;}
.y1c0{bottom:957.265333pt;}
.y1a2{bottom:960.984000pt;}
.y40{bottom:961.029333pt;}
.y29a{bottom:962.045333pt;}
.y2c0{bottom:963.072000pt;}
.y16d{bottom:963.934667pt;}
.y140{bottom:966.346667pt;}
.y6b{bottom:969.306667pt;}
.y1ea{bottom:971.728000pt;}
.y241{bottom:973.112000pt;}
.ydd{bottom:973.912000pt;}
.y260{bottom:977.440000pt;}
.y109{bottom:980.750667pt;}
.y2bf{bottom:981.137333pt;}
.y16c{bottom:982.000000pt;}
.y3f{bottom:984.514667pt;}
.y299{bottom:985.530667pt;}
.y13f{bottom:989.832000pt;}
.ydc{bottom:991.977333pt;}
.y6a{bottom:992.792000pt;}
.y1e9{bottom:995.213333pt;}
.y240{bottom:996.597333pt;}
.y2be{bottom:999.202667pt;}
.y16b{bottom:1000.065333pt;}
.y108{bottom:1004.236000pt;}
.y1a1{bottom:1008.325333pt;}
.y298{bottom:1009.016000pt;}
.ydb{bottom:1010.042667pt;}
.y1c{bottom:1012.072000pt;}
.y13e{bottom:1013.317333pt;}
.y2bd{bottom:1017.269333pt;}
.y16a{bottom:1018.132000pt;}
.y1e8{bottom:1018.698667pt;}
.y23f{bottom:1020.082667pt;}
.y25f{bottom:1024.781333pt;}
.y107{bottom:1027.721333pt;}
.y12{bottom:1028.599976pt;}
.y3e{bottom:1031.856000pt;}
.y2bc{bottom:1035.334667pt;}
.y169{bottom:1036.197333pt;}
.y1b{bottom:1036.248000pt;}
.y13d{bottom:1036.802667pt;}
.y69{bottom:1040.133333pt;}
.y1e7{bottom:1042.184000pt;}
.yda{bottom:1046.173333pt;}
.y106{bottom:1051.206667pt;}
.y2bb{bottom:1053.400000pt;}
.y168{bottom:1054.262667pt;}
.y1a0{bottom:1055.668000pt;}
.y297{bottom:1056.358667pt;}
.y13c{bottom:1060.288000pt;}
.yd9{bottom:1064.240000pt;}
.y1e6{bottom:1065.669333pt;}
.y23e{bottom:1067.053333pt;}
.y1a{bottom:1069.102667pt;}
.y167{bottom:1072.328000pt;}
.y105{bottom:1074.692000pt;}
.y2ba{bottom:1078.762667pt;}
.yd8{bottom:1082.305333pt;}
.y13b{bottom:1083.773333pt;}
.y3d{bottom:1084.900000pt;}
.y1e5{bottom:1089.154667pt;}
.y68{bottom:1090.393333pt;}
.y23d{bottom:1090.538667pt;}
.y104{bottom:1098.177333pt;}
.y2e8{bottom:1101.281333pt;}
.y2b9{bottom:1104.712000pt;}
.y13a{bottom:1107.258667pt;}
.yd7{bottom:1107.668000pt;}
.y67{bottom:1108.458667pt;}
.y1e4{bottom:1112.640000pt;}
.y23c{bottom:1114.024000pt;}
.y103{bottom:1121.662667pt;}
.y19{bottom:1123.682667pt;}
.y2e7{bottom:1124.766667pt;}
.y66{bottom:1126.525333pt;}
.y19f{bottom:1126.614667pt;}
.y139{bottom:1130.744000pt;}
.yd6{bottom:1133.617333pt;}
.y1e3{bottom:1136.125333pt;}
.y65{bottom:1144.590667pt;}
.y102{bottom:1145.148000pt;}
.yd5{bottom:1151.682667pt;}
.y19e{bottom:1154.085333pt;}
.y138{bottom:1154.229333pt;}
.y1e2{bottom:1159.610667pt;}
.y23b{bottom:1160.994667pt;}
.y18{bottom:1161.673333pt;}
.y64{bottom:1162.656000pt;}
.y3c{bottom:1168.624000pt;}
.y101{bottom:1168.633333pt;}
.y166{bottom:1169.953333pt;}
.y19d{bottom:1173.081333pt;}
.y137{bottom:1177.714667pt;}
.y63{bottom:1180.721333pt;}
.yd4{bottom:1183.096000pt;}
.y23a{bottom:1184.480000pt;}
.y19c{bottom:1192.076000pt;}
.y100{bottom:1192.118667pt;}
.y165{bottom:1195.902667pt;}
.y3b{bottom:1199.345333pt;}
.y62{bottom:1206.084000pt;}
.yd3{bottom:1206.581333pt;}
.y239{bottom:1207.965333pt;}
.y19b{bottom:1211.072000pt;}
.y164{bottom:1213.968000pt;}
.y3a{bottom:1230.066667pt;}
.y61{bottom:1232.033333pt;}
.y39{bottom:1282.272000pt;}
.h1b{height:11.201184pt;}
.h20{height:13.229188pt;}
.h7{height:13.759999pt;}
.h17{height:21.551241pt;}
.h28{height:28.381418pt;}
.h1e{height:28.495975pt;}
.h10{height:28.734867pt;}
.h1c{height:28.939463pt;}
.h1f{height:28.956826pt;}
.h8{height:31.670696pt;}
.h19{height:32.546325pt;}
.h21{height:33.187635pt;}
.h14{height:35.865600pt;}
.hb{height:35.869515pt;}
.h24{height:36.008319pt;}
.h1a{height:37.195801pt;}
.h6{height:39.845052pt;}
.h13{height:40.727307pt;}
.h11{height:43.636400pt;}
.h15{height:44.632747pt;}
.h5{height:47.826020pt;}
.h9{height:48.639998pt;}
.h22{height:49.844201pt;}
.h16{height:49.849534pt;}
.h25{height:50.712525pt;}
.hf{height:51.876201pt;}
.h26{height:52.572793pt;}
.h12{height:53.559147pt;}
.hd{height:64.270827pt;}
.he{height:64.454458pt;}
.h4{height:99.627583pt;}
.h3{height:113.962939pt;}
.ha{height:123.781956pt;}
.h1d{height:778.187520pt;}
.h23{height:803.376999pt;}
.h27{height:806.438846pt;}
.h18{height:921.573570pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.hc{height:1344.000000pt;}
.w2{width:4.800000pt;}
.w3{width:6.400000pt;}
.w4{width:12.799999pt;}
.w5{width:17.279999pt;}
.wb{width:135.778001pt;}
.w6{width:254.079989pt;}
.w9{width:502.235544pt;}
.wd{width:575.628078pt;}
.w8{width:596.736953pt;}
.wc{width:601.324387pt;}
.wa{width:601.326720pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.w7{width:816.000000pt;}
.x0{left:0.000000pt;}
.x47{left:0.975682pt;}
.x39{left:14.437184pt;}
.x27{left:16.843381pt;}
.x61{left:20.317363pt;}
.x6f{left:29.651056pt;}
.x3a{left:36.895026pt;}
.x69{left:44.403790pt;}
.x25{left:46.519815pt;}
.x42{left:50.495724pt;}
.x3{left:53.759998pt;}
.x3b{left:56.144605pt;}
.x1{left:57.666222pt;}
.x2{left:61.911527pt;}
.x3c{left:69.779723pt;}
.x7f{left:75.538069pt;}
.x80{left:87.428320pt;}
.x26{left:90.633433pt;}
.x34{left:97.852025pt;}
.x15{left:101.061172pt;}
.x4f{left:102.294667pt;}
.x3d{left:105.872683pt;}
.x48{left:107.165333pt;}
.x7{left:111.359995pt;}
.xc{left:118.677333pt;}
.x52{left:121.824000pt;}
.x3f{left:126.646667pt;}
.x13{left:127.554667pt;}
.x49{left:130.324000pt;}
.x7b{left:133.590473pt;}
.x11{left:135.258667pt;}
.x77{left:136.906667pt;}
.x53{left:139.464000pt;}
.xd{left:140.496000pt;}
.x1c{left:142.767709pt;}
.x6{left:145.279994pt;}
.x51{left:146.320000pt;}
.xb{left:148.497333pt;}
.x6a{left:151.296412pt;}
.x50{left:153.864000pt;}
.x68{left:159.077185pt;}
.x70{left:160.435989pt;}
.x6b{left:163.509476pt;}
.x6d{left:164.771223pt;}
.x6e{left:165.806503pt;}
.x38{left:167.631748pt;}
.x41{left:172.656000pt;}
.xe{left:173.950667pt;}
.x16{left:177.256537pt;}
.x63{left:182.160691pt;}
.x66{left:186.657686pt;}
.x46{left:193.572180pt;}
.x5a{left:194.873333pt;}
.x43{left:196.218215pt;}
.x44{left:198.585202pt;}
.x45{left:200.730130pt;}
.x5e{left:201.863356pt;}
.x5c{left:206.004474pt;}
.x8{left:207.893333pt;}
.x5d{left:210.824995pt;}
.x9{left:212.174667pt;}
.x29{left:213.349498pt;}
.x1d{left:214.953629pt;}
.x76{left:216.652000pt;}
.x67{left:222.568948pt;}
.x30{left:247.036260pt;}
.x40{left:248.732000pt;}
.x17{left:251.046589pt;}
.xa{left:257.162667pt;}
.x4a{left:266.526667pt;}
.x81{left:273.475786pt;}
.x79{left:279.071198pt;}
.x78{left:280.846667pt;}
.x10{left:284.037333pt;}
.x1e{left:285.535418pt;}
.x35{left:287.139549pt;}
.x55{left:289.253333pt;}
.x7a{left:290.262023pt;}
.x22{left:297.566404pt;}
.x57{left:299.476000pt;}
.x5b{left:300.554616pt;}
.x4{left:301.759987pt;}
.x58{left:303.112000pt;}
.x59{left:306.748000pt;}
.x60{left:312.961801pt;}
.x2d{left:315.211852pt;}
.x7c{left:317.539659pt;}
.x7d{left:329.429911pt;}
.x7e{left:341.320162pt;}
.x18{left:348.096549pt;}
.x36{left:350.502746pt;}
.x2a{left:352.908943pt;}
.x1f{left:380.179180pt;}
.x2e{left:385.793640pt;}
.x62{left:402.691422pt;}
.x65{left:408.903100pt;}
.x5f{left:412.025120pt;}
.x64{left:413.739802pt;}
.xf{left:415.702667pt;}
.x71{left:419.094133pt;}
.x19{left:420.282469pt;}
.x1b{left:424.292798pt;}
.x72{left:425.435221pt;}
.x2b{left:426.698995pt;}
.x32{left:429.105192pt;}
.x6c{left:430.838087pt;}
.x28{left:456.375429pt;}
.x2f{left:458.781626pt;}
.x14{left:460.605333pt;}
.x5{left:462.079981pt;}
.x82{left:472.112929pt;}
.x20{left:481.239468pt;}
.x21{left:494.874586pt;}
.x1a{left:496.478718pt;}
.x83{left:504.286551pt;}
.x2c{left:505.301441pt;}
.x33{left:507.707639pt;}
.x56{left:508.670667pt;}
.x84{left:516.176803pt;}
.x85{left:528.067054pt;}
.x86{left:539.257879pt;}
.x37{left:551.019191pt;}
.x23{left:560.643980pt;}
.x4e{left:565.541333pt;}
.x31{left:567.060507pt;}
.x4d{left:568.572000pt;}
.x4c{left:572.410667pt;}
.x24{left:574.279099pt;}
.x4b{left:576.046667pt;}
.x73{left:577.233333pt;}
.x75{left:586.525333pt;}
.x74{left:590.162667pt;}
.x54{left:705.454667pt;}
.x12{left:712.726667pt;}
.x87{left:722.201333pt;}
.x3e{left:724.920000pt;}
}




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