
    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_1c823b1cc5b78db5a1b55f40.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b86858c2fd033775e122acba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_2327d4d3b0c3fa4388ec9447.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_70f96d220fb8b9fa5d3c474f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_c9f4d666385b938e068a3224.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.522000;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_72405591e9921c0f7214d9d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_56aacd0dcba769b9e4d3aaa6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740000;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_6d48f60b3a07b975d4ee06d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.673000;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_a903512b68d0b70f28db3825.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.174316;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_ba33e9dae243172743081190.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.174316;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_3e5ec78fc6c7cf4ce1503ea6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_0e843a16dd91f5d20e665d3c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_84fa248ff3a91187d18aa9a6.woff2')format("woff");}.fff{font-family:fff;line-height:0.726000;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,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);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.912000px;}
.v3{vertical-align:14.346000px;}
.v7{vertical-align:18.750000px;}
.v6{vertical-align:21.696000px;}
.v5{vertical-align:30.480000px;}
.v2{vertical-align:32.880000px;}
.v4{vertical-align:38.310000px;}
.ls1e{letter-spacing:-0.167400px;}
.ls1d{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000676px;}
.ls21{letter-spacing:0.000800px;}
.ls23{letter-spacing:0.001155px;}
.ls10{letter-spacing:0.003389px;}
.ls1f{letter-spacing:0.003968px;}
.lsd{letter-spacing:0.642088px;}
.lse{letter-spacing:0.648088px;}
.ls11{letter-spacing:2.988600px;}
.lsf{letter-spacing:11.951700px;}
.ls2{letter-spacing:11.954850px;}
.ls13{letter-spacing:11.957700px;}
.ls4{letter-spacing:13.808164px;}
.ls16{letter-spacing:13.869343px;}
.ls1b{letter-spacing:14.118000px;}
.ls1c{letter-spacing:14.124000px;}
.ls15{letter-spacing:14.704798px;}
.ls5{letter-spacing:14.764573px;}
.ls1a{letter-spacing:14.829181px;}
.ls6{letter-spacing:14.884124px;}
.ls3{letter-spacing:14.943900px;}
.lsc{letter-spacing:15.123227px;}
.ls9{letter-spacing:15.183002px;}
.lsb{letter-spacing:15.242778px;}
.ls7{letter-spacing:16.916495px;}
.ls20{letter-spacing:17.024684px;}
.ls19{letter-spacing:17.623965px;}
.ls17{letter-spacing:17.771024px;}
.ls18{letter-spacing:17.776906px;}
.lsa{letter-spacing:18.052231px;}
.ls8{letter-spacing:20.144377px;}
.ls1{letter-spacing:28.453654px;}
.ls14{letter-spacing:144.520090px;}
.ls12{letter-spacing:155.320090px;}
.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;}
}
.ws32{word-spacing:-14.943900px;}
.wsd5{word-spacing:-13.500000px;}
.ws57{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.wsb{word-spacing:-10.460700px;}
.ws39{word-spacing:-3.108331px;}
.ws94{word-spacing:-3.048556px;}
.ws6f{word-spacing:-2.869229px;}
.ws7e{word-spacing:-2.809453px;}
.ws82{word-spacing:-2.749678px;}
.wse5{word-spacing:-2.689902px;}
.ws93{word-spacing:-2.570351px;}
.ws3d{word-spacing:-2.391024px;}
.ws22{word-spacing:-2.331248px;}
.ws4e{word-spacing:-2.271473px;}
.ws31{word-spacing:-2.211697px;}
.wse1{word-spacing:-2.092146px;}
.ws3e{word-spacing:-2.032370px;}
.ws10b{word-spacing:-1.990541px;}
.wse3{word-spacing:-1.793268px;}
.ws79{word-spacing:-1.733492px;}
.ws66{word-spacing:-1.673717px;}
.wsf1{word-spacing:-1.667750px;}
.ws67{word-spacing:-1.613941px;}
.ws92{word-spacing:-1.554166px;}
.ws33{word-spacing:-1.494390px;}
.wsc8{word-spacing:-1.434614px;}
.ws110{word-spacing:-1.398758px;}
.wse6{word-spacing:-1.374839px;}
.ws127{word-spacing:-1.344960px;}
.ws24{word-spacing:-1.315063px;}
.ws36{word-spacing:-1.135736px;}
.ws35{word-spacing:-1.075961px;}
.ws106{word-spacing:-1.022170px;}
.ws49{word-spacing:-0.956410px;}
.ws111{word-spacing:-0.914573px;}
.ws72{word-spacing:-0.896634px;}
.ws48{word-spacing:-0.836858px;}
.ws7a{word-spacing:-0.777083px;}
.ws4f{word-spacing:-0.657532px;}
.wsef{word-spacing:-0.645581px;}
.ws65{word-spacing:-0.597756px;}
.ws123{word-spacing:-0.591782px;}
.ws41{word-spacing:-0.537980px;}
.ws7d{word-spacing:-0.478205px;}
.ws121{word-spacing:-0.430387px;}
.ws5b{word-spacing:-0.418429px;}
.ws27{word-spacing:-0.358654px;}
.ws126{word-spacing:-0.322790px;}
.ws2f{word-spacing:-0.298878px;}
.ws11c{word-spacing:-0.268992px;}
.ws38{word-spacing:-0.239102px;}
.wsed{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.wsc7{word-spacing:-0.095641px;}
.ws44{word-spacing:-0.059776px;}
.wsb3{word-spacing:-0.053798px;}
.ws104{word-spacing:-0.010886px;}
.wsf2{word-spacing:-0.010339px;}
.ws118{word-spacing:-0.010157px;}
.ws120{word-spacing:-0.009302px;}
.wsb4{word-spacing:-0.009139px;}
.wsf8{word-spacing:-0.007910px;}
.wsca{word-spacing:-0.007662px;}
.ws114{word-spacing:-0.007306px;}
.ws109{word-spacing:-0.006970px;}
.ws11b{word-spacing:-0.006806px;}
.ws117{word-spacing:-0.006221px;}
.wsd4{word-spacing:-0.005449px;}
.ws116{word-spacing:-0.005309px;}
.ws115{word-spacing:-0.004330px;}
.wsf5{word-spacing:-0.003888px;}
.wsbf{word-spacing:-0.003875px;}
.ws11f{word-spacing:-0.003571px;}
.ws12e{word-spacing:-0.002198px;}
.ws10d{word-spacing:-0.002131px;}
.ws128{word-spacing:-0.001229px;}
.ws3{word-spacing:-0.000779px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.003599px;}
.ws10{word-spacing:0.053798px;}
.ws1b{word-spacing:0.059776px;}
.ws2{word-spacing:0.083686px;}
.ws9d{word-spacing:0.107597px;}
.ws1c{word-spacing:0.119551px;}
.wsf{word-spacing:0.161395px;}
.wsde{word-spacing:0.178200px;}
.ws1e{word-spacing:0.179327px;}
.wsdc{word-spacing:0.183600px;}
.ws56{word-spacing:0.215194px;}
.ws3f{word-spacing:0.239102px;}
.ws9c{word-spacing:0.268992px;}
.ws30{word-spacing:0.298878px;}
.ws11{word-spacing:0.322790px;}
.wsdd{word-spacing:0.345600px;}
.ws26{word-spacing:0.358654px;}
.wse{word-spacing:0.376589px;}
.ws6e{word-spacing:0.418429px;}
.ws3a{word-spacing:0.537980px;}
.wsf6{word-spacing:0.537984px;}
.ws11e{word-spacing:0.591782px;}
.wse2{word-spacing:0.597756px;}
.wsf4{word-spacing:0.645581px;}
.ws90{word-spacing:0.657532px;}
.wsd7{word-spacing:0.663686px;}
.wsd9{word-spacing:0.669686px;}
.wsd3{word-spacing:0.693494px;}
.ws60{word-spacing:0.717307px;}
.ws8a{word-spacing:0.777083px;}
.wse0{word-spacing:0.836858px;}
.ws13{word-spacing:0.860774px;}
.wsdf{word-spacing:0.896634px;}
.wsf7{word-spacing:0.914573px;}
.ws23{word-spacing:0.956410px;}
.wseb{word-spacing:1.016185px;}
.ws125{word-spacing:1.022170px;}
.ws5e{word-spacing:1.075961px;}
.ws14{word-spacing:1.129766px;}
.ws88{word-spacing:1.135736px;}
.ws6b{word-spacing:1.195512px;}
.ws119{word-spacing:1.237363px;}
.ws40{word-spacing:1.255288px;}
.ws21{word-spacing:1.315063px;}
.ws47{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws46{word-spacing:1.434614px;}
.ws2d{word-spacing:1.494390px;}
.wse7{word-spacing:1.554166px;}
.ws108{word-spacing:1.560154px;}
.ws1d{word-spacing:1.613941px;}
.ws124{word-spacing:1.667750px;}
.ws6c{word-spacing:1.793268px;}
.ws105{word-spacing:1.829146px;}
.ws87{word-spacing:1.853044px;}
.ws5f{word-spacing:1.912819px;}
.ws9a{word-spacing:1.972595px;}
.ws17{word-spacing:1.990541px;}
.ws2e{word-spacing:2.032370px;}
.ws11a{word-spacing:2.044339px;}
.ws42{word-spacing:2.092146px;}
.ws63{word-spacing:2.151922px;}
.ws12b{word-spacing:2.205734px;}
.ws1f{word-spacing:2.211697px;}
.ws97{word-spacing:2.271473px;}
.ws9e{word-spacing:2.331248px;}
.ws16{word-spacing:2.367130px;}
.wsfb{word-spacing:2.420928px;}
.ws34{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsc6{word-spacing:2.534492px;}
.ws6a{word-spacing:2.570351px;}
.wsea{word-spacing:2.630126px;}
.ws69{word-spacing:2.689902px;}
.ws12a{word-spacing:2.797517px;}
.ws52{word-spacing:2.809453px;}
.ws10a{word-spacing:2.851315px;}
.ws5d{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.ws107{word-spacing:2.905114px;}
.ws68{word-spacing:2.929004px;}
.wse4{word-spacing:2.988780px;}
.ws70{word-spacing:3.048556px;}
.ws5a{word-spacing:3.108331px;}
.ws100{word-spacing:3.120307px;}
.ws4a{word-spacing:3.168107px;}
.ws11d{word-spacing:3.218074px;}
.ws19{word-spacing:3.219667px;}
.wsfc{word-spacing:3.220032px;}
.wsfe{word-spacing:3.220176px;}
.ws103{word-spacing:3.223219px;}
.wsee{word-spacing:3.224822px;}
.ws58{word-spacing:3.227882px;}
.wsf0{word-spacing:3.227904px;}
.ws129{word-spacing:3.228826px;}
.ws12d{word-spacing:3.281702px;}
.wsaf{word-spacing:3.287658px;}
.wsff{word-spacing:3.335501px;}
.ws8b{word-spacing:3.347434px;}
.ws45{word-spacing:3.407209px;}
.ws64{word-spacing:3.466985px;}
.ws12f{word-spacing:3.496896px;}
.ws9b{word-spacing:3.526760px;}
.ws122{word-spacing:3.550694px;}
.ws1a{word-spacing:3.586536px;}
.wsfa{word-spacing:3.658291px;}
.ws84{word-spacing:3.706087px;}
.wsd{word-spacing:3.761658px;}
.ws85{word-spacing:3.765863px;}
.ws12{word-spacing:3.819686px;}
.wsa0{word-spacing:3.945190px;}
.wsfd{word-spacing:3.981082px;}
.ws4b{word-spacing:4.004965px;}
.ws78{word-spacing:4.124516px;}
.ws71{word-spacing:4.244068px;}
.ws96{word-spacing:4.303843px;}
.wsec{word-spacing:4.357670px;}
.ws8e{word-spacing:4.363619px;}
.ws80{word-spacing:4.423394px;}
.wsb0{word-spacing:4.483170px;}
.ws53{word-spacing:4.602721px;}
.ws4c{word-spacing:4.722272px;}
.ws7b{word-spacing:4.782048px;}
.ws4d{word-spacing:4.841824px;}
.ws62{word-spacing:4.901599px;}
.ws12c{word-spacing:4.949453px;}
.ws99{word-spacing:4.961375px;}
.ws2c{word-spacing:5.080926px;}
.ws51{word-spacing:5.140702px;}
.ws50{word-spacing:5.200477px;}
.ws9f{word-spacing:5.260253px;}
.ws81{word-spacing:5.320028px;}
.wse9{word-spacing:5.379804px;}
.ws102{word-spacing:5.379840px;}
.ws10f{word-spacing:5.433638px;}
.ws8{word-spacing:5.481407px;}
.wse8{word-spacing:5.499355px;}
.ws10c{word-spacing:5.541235px;}
.ws98{word-spacing:5.618906px;}
.ws8d{word-spacing:5.678682px;}
.wsf3{word-spacing:5.702630px;}
.ws8c{word-spacing:5.738458px;}
.ws43{word-spacing:5.798233px;}
.wsf9{word-spacing:5.810227px;}
.wscb{word-spacing:5.858009px;}
.ws3c{word-spacing:5.977560px;}
.ws2b{word-spacing:6.097111px;}
.ws74{word-spacing:6.276438px;}
.wscc{word-spacing:6.336214px;}
.ws113{word-spacing:6.348211px;}
.ws95{word-spacing:6.395989px;}
.ws37{word-spacing:6.515540px;}
.ws10e{word-spacing:6.563405px;}
.ws3b{word-spacing:6.575316px;}
.ws101{word-spacing:6.778598px;}
.ws83{word-spacing:6.933970px;}
.ws5c{word-spacing:7.352399px;}
.ws75{word-spacing:7.412174px;}
.ws8f{word-spacing:7.770828px;}
.ws7c{word-spacing:7.830604px;}
.ws28{word-spacing:7.890379px;}
.ws59{word-spacing:7.950155px;}
.ws77{word-spacing:8.069706px;}
.ws76{word-spacing:8.129482px;}
.ws54{word-spacing:8.488135px;}
.ws55{word-spacing:8.787013px;}
.ws6d{word-spacing:9.444545px;}
.ws6{word-spacing:9.833058px;}
.ws7{word-spacing:11.841512px;}
.ws89{word-spacing:12.732203px;}
.ws4{word-spacing:15.481836px;}
.ws9{word-spacing:16.067635px;}
.ws86{word-spacing:18.341529px;}
.ws91{word-spacing:18.780976px;}
.ws61{word-spacing:18.889090px;}
.ws73{word-spacing:20.354855px;}
.ws5{word-spacing:22.339429px;}
.ws112{word-spacing:22.708058px;}
.ws7f{word-spacing:36.831325px;}
.wsc3{word-spacing:101.905939px;}
.wsa4{word-spacing:104.906880px;}
.wsbd{word-spacing:105.014477px;}
.wsd1{word-spacing:105.552461px;}
.wsba{word-spacing:105.660058px;}
.wsb6{word-spacing:106.359437px;}
.wsc1{word-spacing:106.658266px;}
.wscf{word-spacing:108.684422px;}
.wsd0{word-spacing:109.963930px;}
.wsce{word-spacing:117.458266px;}
.wsc2{word-spacing:119.484422px;}
.wsb2{word-spacing:123.274934px;}
.wsc5{word-spacing:127.125619px;}
.wsa6{word-spacing:130.299725px;}
.wsc4{word-spacing:131.590886px;}
.wsa5{word-spacing:133.982688px;}
.wsda{word-spacing:150.132000px;}
.wsc0{word-spacing:170.509200px;}
.wsc9{word-spacing:179.686656px;}
.wsad{word-spacing:192.114000px;}
.wsd6{word-spacing:194.373619px;}
.wsd2{word-spacing:213.848640px;}
.wsaa{word-spacing:213.902438px;}
.wsa8{word-spacing:214.553990px;}
.wsa9{word-spacing:216.000576px;}
.wsd8{word-spacing:221.057626px;}
.wscd{word-spacing:224.515200px;}
.wsac{word-spacing:236.153318px;}
.wsae{word-spacing:236.174160px;}
.wsdb{word-spacing:241.985203px;}
.wsbe{word-spacing:257.855731px;}
.wsb8{word-spacing:261.083635px;}
.wsbc{word-spacing:262.912781px;}
.wsbb{word-spacing:263.289370px;}
.wsb9{word-spacing:263.934950px;}
.wsb5{word-spacing:268.346419px;}
.wsb7{word-spacing:272.865485px;}
.wsab{word-spacing:280.714301px;}
.wsa7{word-spacing:296.126784px;}
.wsb1{word-spacing:333.930643px;}
.wsa1{word-spacing:562.569869px;}
.wsa3{word-spacing:576.019469px;}
.wsa2{word-spacing:730.305494px;}
._84{margin-left:-20.335795px;}
._6{margin-left:-11.943245px;}
._5{margin-left:-7.962163px;}
._9{margin-left:-6.336270px;}
._7{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._15{margin-left:-2.510676px;}
._4{margin-left:-1.464498px;}
._1e{width:1.016342px;}
._83{width:2.474726px;}
._1b{width:3.981082px;}
._21{width:10.855148px;}
._0{width:13.096796px;}
._11{width:14.824386px;}
._e{width:16.019917px;}
._8{width:17.119832px;}
._b{width:18.817499px;}
._c{width:20.676496px;}
._f{width:21.937645px;}
._d{width:23.240909px;}
._2{width:25.314894px;}
._16{width:27.288137px;}
._a{width:28.674547px;}
._22{width:29.678682px;}
._3{width:31.256572px;}
._18{width:33.235234px;}
._1f{width:34.950842px;}
._20{width:36.224014px;}
._14{width:37.299974px;}
._17{width:39.392221px;}
._10{width:42.799330px;}
._25{width:89.197747px;}
._26{width:90.865498px;}
._4d{width:104.733544px;}
._6c{width:114.967181px;}
._5c{width:119.002061px;}
._6d{width:126.473399px;}
._5b{width:129.869338px;}
._1d{width:138.139718px;}
._4b{width:139.429777px;}
._70{width:140.575219px;}
._4c{width:147.192422px;}
._59{width:150.366528px;}
._6f{width:152.626061px;}
._51{width:154.616602px;}
._6e{width:156.499546px;}
._6a{width:157.575514px;}
._58{width:159.075229px;}
._5a{width:162.632563px;}
._52{width:168.066202px;}
._6b{width:172.423872px;}
._3f{width:173.607437px;}
._68{width:178.234099px;}
._4e{width:184.582310px;}
._40{width:188.548243px;}
._65{width:193.969546px;}
._7e{width:198.838886px;}
._66{width:200.560435px;}
._50{width:206.209267px;}
._80{width:208.655357px;}
._48{width:210.297946px;}
._63{width:216.673642px;}
._78{width:217.722125px;}
._54{width:219.658867px;}
._3e{width:222.940570px;}
._49{width:228.023933px;}
._75{width:230.418547px;}
._82{width:234.507226px;}
._61{width:240.909235px;}
._4a{width:243.408787px;}
._46{width:249.623491px;}
._72{width:251.184730px;}
._71{width:256.284971px;}
._69{width:257.993179px;}
._44{width:263.289370px;}
._62{width:265.764096px;}
._45{width:271.412928px;}
._47{width:273.242074px;}
._55{width:274.533235px;}
._57{width:276.230837px;}
._56{width:277.384550px;}
._73{width:280.493328px;}
._4f{width:281.796019px;}
._60{width:283.463770px;}
._53{width:286.315085px;}
._7b{width:292.824691px;}
._74{width:296.576036px;}
._64{width:298.312128px;}
._5f{width:300.625459px;}
._43{width:310.309171px;}
._41{width:317.033971px;}
._67{width:321.445440px;}
._5e{width:329.730394px;}
._3d{width:332.085582px;}
._42{width:343.986970px;}
._7c{width:355.197984px;}
._35{width:363.515789px;}
._29{width:366.851290px;}
._76{width:435.175258px;}
._32{width:445.934938px;}
._34{width:455.188262px;}
._79{width:459.868723px;}
._38{width:463.718261px;}
._5d{width:466.850574px;}
._77{width:497.470656px;}
._7a{width:520.607117px;}
._39{width:525.332506px;}
._33{width:557.405222px;}
._7d{width:564.183821px;}
._30{width:570.801024px;}
._7f{width:580.164288px;}
._37{width:582.421478px;}
._2f{width:589.469069px;}
._1a{width:591.836198px;}
._2d{width:603.026266px;}
._2e{width:604.801613px;}
._81{width:613.254787px;}
._36{width:616.368269px;}
._24{width:618.143616px;}
._3a{width:621.963302px;}
._31{width:629.871667px;}
._3c{width:650.476454px;}
._19{width:662.957683px;}
._3b{width:677.375654px;}
._2c{width:702.015322px;}
._1c{width:706.157798px;}
._2b{width:728.161344px;}
._12{width:881.284037px;}
._23{width:926.396507px;}
._28{width:981.444211px;}
._2a{width:1121.840080px;}
._27{width:2512.803000px;}
._13{width:2536.713000px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:45.429600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y265{bottom:1.642928px;}
.y270{bottom:6.349950px;}
.y61{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y28f{bottom:103.621500px;}
.y34{bottom:104.646000px;}
.y60{bottom:106.728000px;}
.y247{bottom:112.308000px;}
.y17b{bottom:113.479500px;}
.yf2{bottom:116.416500px;}
.y323{bottom:116.458500px;}
.y2aa{bottom:117.802500px;}
.y2bd{bottom:119.148000px;}
.y98{bottom:119.596500px;}
.y28e{bottom:122.449500px;}
.y33{bottom:122.535000px;}
.y1d4{bottom:124.360500px;}
.y5f{bottom:125.557500px;}
.y2ed{bottom:126.366000px;}
.y246{bottom:131.137500px;}
.y17a{bottom:132.309000px;}
.y322{bottom:133.719000px;}
.yf1{bottom:135.246000px;}
.y12a{bottom:135.736500px;}
.y2a9{bottom:136.632000px;}
.y2bc{bottom:137.977500px;}
.y97{bottom:138.426000px;}
.y156{bottom:138.874500px;}
.y21{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.y1d3{bottom:140.799000px;}
.y28d{bottom:141.279000px;}
.y2ec{bottom:143.626500px;}
.y5e{bottom:144.387000px;}
.y326{bottom:146.421000px;}
.y1d0{bottom:149.616000px;}
.y245{bottom:149.967000px;}
.y321{bottom:150.978000px;}
.y179{bottom:151.138500px;}
.yf0{bottom:154.075500px;}
.y129{bottom:154.566000px;}
.y2a8{bottom:155.461500px;}
.y2bb{bottom:156.807000px;}
.y1a0{bottom:156.888000px;}
.y1d2{bottom:157.236000px;}
.y96{bottom:157.255500px;}
.y155{bottom:157.704000px;}
.y31{bottom:158.310000px;}
.y28c{bottom:160.108500px;}
.y2eb{bottom:160.887000px;}
.y25d{bottom:161.491500px;}
.y5d{bottom:163.216500px;}
.y325{bottom:163.681500px;}
.y320{bottom:168.238500px;}
.y244{bottom:168.796500px;}
.y178{bottom:169.968000px;}
.y26d{bottom:170.928000px;}
.yef{bottom:172.905000px;}
.y19f{bottom:173.326500px;}
.y128{bottom:173.395500px;}
.y1d1{bottom:173.674500px;}
.y2a7{bottom:174.291000px;}
.y2ba{bottom:175.636500px;}
.y95{bottom:176.085000px;}
.y30{bottom:176.199000px;}
.y154{bottom:176.533500px;}
.y2ea{bottom:178.147500px;}
.yf8{bottom:178.774500px;}
.y28b{bottom:178.938000px;}
.y324{bottom:180.942000px;}
.y5c{bottom:182.046000px;}
.y25c{bottom:183.322500px;}
.y31f{bottom:185.499000px;}
.y243{bottom:187.626000px;}
.yba{bottom:187.971000px;}
.y177{bottom:188.796000px;}
.y26c{bottom:189.757500px;}
.y19e{bottom:189.765000px;}
.yee{bottom:191.734500px;}
.y127{bottom:192.225000px;}
.y2a6{bottom:193.120500px;}
.y2f{bottom:194.086500px;}
.y2b9{bottom:194.466000px;}
.y94{bottom:194.914500px;}
.y153{bottom:195.363000px;}
.y2e9{bottom:195.408000px;}
.ybc{bottom:196.191000px;}
.y18{bottom:196.933500px;}
.y200{bottom:196.987500px;}
.y1cf{bottom:197.316000px;}
.yf7{bottom:197.604000px;}
.y25b{bottom:199.761000px;}
.y5b{bottom:200.875500px;}
.y28a{bottom:202.251000px;}
.y31e{bottom:202.759500px;}
.y1ce{bottom:204.177000px;}
.yb8{bottom:204.409500px;}
.y19d{bottom:206.203500px;}
.y242{bottom:206.455500px;}
.y176{bottom:207.625500px;}
.y26b{bottom:208.587000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yed{bottom:210.564000px;}
.y126{bottom:211.053000px;}
.y2a5{bottom:211.950000px;}
.y2e{bottom:211.974000px;}
.ybb{bottom:212.629500px;}
.y2e8{bottom:212.668500px;}
.y2b8{bottom:213.295500px;}
.y93{bottom:213.744000px;}
.y152{bottom:214.192500px;}
.y197{bottom:214.423500px;}
.y1ff{bottom:215.817000px;}
.y25a{bottom:216.199500px;}
.y5a{bottom:219.705000px;}
.y31d{bottom:220.020000px;}
.yb9{bottom:220.848000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y19c{bottom:222.642000px;}
.y241{bottom:225.285000px;}
.y175{bottom:226.455000px;}
.y26a{bottom:227.416500px;}
.yec{bottom:229.393500px;}
.y2d{bottom:229.863000px;}
.y125{bottom:229.882500px;}
.y2e7{bottom:229.929000px;}
.y2a4{bottom:230.779500px;}
.y196{bottom:230.860500px;}
.y2b7{bottom:232.125000px;}
.y92{bottom:232.573500px;}
.y259{bottom:232.638000px;}
.y151{bottom:233.022000px;}
.yf6{bottom:234.366000px;}
.y1fe{bottom:234.646500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y31c{bottom:237.280500px;}
.y1cd{bottom:237.394500px;}
.y289{bottom:238.513500px;}
.y59{bottom:238.534500px;}
.y19b{bottom:239.080500px;}
.y240{bottom:244.114500px;}
.yb7{bottom:244.489500px;}
.y174{bottom:245.284500px;}
.y269{bottom:246.246000px;}
.y2e6{bottom:247.188000px;}
.yeb{bottom:248.221500px;}
.y124{bottom:248.712000px;}
.y258{bottom:249.076500px;}
.y2a3{bottom:249.609000px;}
.y2b6{bottom:250.954500px;}
.y91{bottom:251.403000px;}
.y150{bottom:251.851500px;}
.yf5{bottom:253.195500px;}
.y1fd{bottom:253.476000px;}
.y31b{bottom:254.541000px;}
.y19a{bottom:255.519000px;}
.y58{bottom:257.364000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y288{bottom:260.346000px;}
.yb6{bottom:260.928000px;}
.y1cc{bottom:261.036000px;}
.y23f{bottom:262.944000px;}
.y173{bottom:264.114000px;}
.y2e5{bottom:264.448500px;}
.y268{bottom:265.075500px;}
.y257{bottom:265.515000px;}
.yea{bottom:267.051000px;}
.y123{bottom:267.541500px;}
.y2a2{bottom:268.438500px;}
.yb3{bottom:269.146500px;}
.y2b5{bottom:269.784000px;}
.y90{bottom:270.232500px;}
.y14f{bottom:270.681000px;}
.y31a{bottom:271.801500px;}
.y199{bottom:271.957500px;}
.y1fc{bottom:272.305500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y57{bottom:276.193500px;}
.y287{bottom:276.784500px;}
.yb5{bottom:277.365000px;}
.y2e4{bottom:281.709000px;}
.y23e{bottom:281.773500px;}
.y256{bottom:281.953500px;}
.y172{bottom:282.943500px;}
.y267{bottom:283.905000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ye9{bottom:285.880500px;}
.y122{bottom:286.371000px;}
.y2a1{bottom:287.268000px;}
.y198{bottom:288.396000px;}
.y2b4{bottom:288.613500px;}
.y8f{bottom:289.062000px;}
.y14e{bottom:289.509000px;}
.yf4{bottom:289.957500px;}
.y1fb{bottom:291.135000px;}
.y286{bottom:293.223000px;}
.yb4{bottom:293.803500px;}
.y56{bottom:295.023000px;}
.y1cb{bottom:295.644000px;}
.y2c{bottom:297.166500px;}
.y2e3{bottom:298.969500px;}
.y23d{bottom:300.603000px;}
.y171{bottom:301.773000px;}
.y121{bottom:305.200500px;}
.y255{bottom:305.593500px;}
.y2a0{bottom:306.097500px;}
.y319{bottom:306.321000px;}
.y2b3{bottom:307.443000px;}
.y8e{bottom:307.891500px;}
.y14d{bottom:308.338500px;}
.yf3{bottom:308.787000px;}
.ye8{bottom:309.193500px;}
.y285{bottom:309.660000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y55{bottom:313.852500px;}
.y2b{bottom:315.054000px;}
.y2e2{bottom:316.230000px;}
.yb2{bottom:317.445000px;}
.y266{bottom:317.470500px;}
.y23c{bottom:319.432500px;}
.y170{bottom:320.602500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y318{bottom:323.581500px;}
.y120{bottom:324.030000px;}
.y18c{bottom:324.300000px;}
.y29f{bottom:324.927000px;}
.y284{bottom:326.098500px;}
.y2b2{bottom:326.272500px;}
.y8d{bottom:326.719500px;}
.y195{bottom:326.980500px;}
.y14c{bottom:327.168000px;}
.y54{bottom:332.682000px;}
.y1ca{bottom:332.748000px;}
.y2a{bottom:332.941500px;}
.y2e1{bottom:333.490500px;}
.yb1{bottom:333.883500px;}
.y23b{bottom:338.262000px;}
.y16f{bottom:339.432000px;}
.y1fa{bottom:339.585000px;}
.y254{bottom:340.203000px;}
.y18b{bottom:340.738500px;}
.y317{bottom:340.842000px;}
.yad{bottom:342.102000px;}
.y283{bottom:342.537000px;}
.ye7{bottom:342.817500px;}
.y11f{bottom:342.859500px;}
.y264{bottom:342.888000px;}
.y194{bottom:343.419000px;}
.y29e{bottom:343.756500px;}
.y2b1{bottom:345.102000px;}
.y8c{bottom:345.549000px;}
.y14b{bottom:345.997500px;}
.yf{bottom:348.133500px;}
.y180{bottom:349.444500px;}
.yb0{bottom:350.322000px;}
.y2e0{bottom:350.751000px;}
.y29{bottom:350.830500px;}
.y53{bottom:351.511500px;}
.y1c9{bottom:351.577500px;}
.y1f9{bottom:356.023500px;}
.y23a{bottom:357.091500px;}
.y18a{bottom:357.177000px;}
.y316{bottom:358.102500px;}
.y16e{bottom:358.261500px;}
.yac{bottom:358.540500px;}
.y282{bottom:358.975500px;}
.y193{bottom:359.857500px;}
.ye6{bottom:361.647000px;}
.y11e{bottom:361.689000px;}
.y29d{bottom:362.586000px;}
.y2b0{bottom:363.931500px;}
.y8b{bottom:364.378500px;}
.y14a{bottom:364.827000px;}
.y17f{bottom:365.883000px;}
.yaf{bottom:366.760500px;}
.y2df{bottom:368.011500px;}
.y52{bottom:370.341000px;}
.y1c8{bottom:370.407000px;}
.y189{bottom:373.615500px;}
.y315{bottom:375.363000px;}
.y281{bottom:375.414000px;}
.y239{bottom:375.921000px;}
.y192{bottom:376.294500px;}
.y16d{bottom:377.091000px;}
.y253{bottom:377.307000px;}
.y28{bottom:377.685000px;}
.y1f8{bottom:379.665000px;}
.ye5{bottom:380.476500px;}
.y11d{bottom:380.518500px;}
.y29c{bottom:381.415500px;}
.y17e{bottom:382.321500px;}
.y2af{bottom:382.761000px;}
.yae{bottom:383.197500px;}
.y8a{bottom:383.208000px;}
.y149{bottom:383.656500px;}
.y18d{bottom:384.514500px;}
.y2de{bottom:385.270500px;}
.ye{bottom:386.785499px;}
.y51{bottom:389.170500px;}
.y1c7{bottom:389.236500px;}
.y188{bottom:390.054000px;}
.y280{bottom:391.852500px;}
.y314{bottom:392.623500px;}
.y191{bottom:392.733000px;}
.y238{bottom:394.750500px;}
.y27{bottom:395.572500px;}
.y16c{bottom:395.920500px;}
.y252{bottom:396.136500px;}
.ye4{bottom:399.306000px;}
.y11c{bottom:399.348000px;}
.y29b{bottom:400.245000px;}
.y2ae{bottom:401.589000px;}
.y89{bottom:402.037500px;}
.y148{bottom:402.486000px;}
.y2dd{bottom:402.531000px;}
.y1f7{bottom:403.305000px;}
.y187{bottom:406.492500px;}
.yab{bottom:406.839000px;}
.y50{bottom:408.000000px;}
.yd{bottom:408.044999px;}
.y1c6{bottom:408.066000px;}
.y27f{bottom:408.291000px;}
.y190{bottom:409.171500px;}
.y313{bottom:409.884000px;}
.y26{bottom:413.460000px;}
.y237{bottom:413.580000px;}
.y16b{bottom:414.750000px;}
.y251{bottom:414.966000px;}
.ye3{bottom:418.135500px;}
.y11b{bottom:418.177500px;}
.y29a{bottom:419.074500px;}
.y2dc{bottom:419.791500px;}
.y2ad{bottom:420.418500px;}
.y88{bottom:420.867000px;}
.y147{bottom:421.315500px;}
.y18f{bottom:425.610000px;}
.y4f{bottom:426.829500px;}
.y1c5{bottom:426.895500px;}
.y1f6{bottom:426.946500px;}
.y312{bottom:427.144500px;}
.y25{bottom:431.349000px;}
.y27d{bottom:431.931000px;}
.y16a{bottom:433.579500px;}
.y250{bottom:433.795500px;}
.ye2{bottom:436.965000px;}
.y11a{bottom:437.007000px;}
.y2db{bottom:437.052000px;}
.y299{bottom:437.904000px;}
.yaa{bottom:438.459000px;}
.y2ac{bottom:439.248000px;}
.y87{bottom:439.696500px;}
.y146{bottom:440.145000px;}
.y27c{bottom:440.151000px;}
.y18e{bottom:442.048500px;}
.y311{bottom:444.403500px;}
.y4e{bottom:445.659000px;}
.y1c4{bottom:445.725000px;}
.y27e{bottom:448.369500px;}
.y24{bottom:449.236500px;}
.y1f5{bottom:450.586500px;}
.y169{bottom:452.409000px;}
.y236{bottom:453.640500px;}
.y2da{bottom:454.312500px;}
.ye1{bottom:455.794500px;}
.y119{bottom:455.836500px;}
.y298{bottom:456.733500px;}
.y86{bottom:458.526000px;}
.y145{bottom:458.974500px;}
.y310{bottom:461.664000px;}
.y2ab{bottom:462.561000px;}
.y1c3{bottom:464.554500px;}
.y1f4{bottom:467.025000px;}
.y23{bottom:467.124000px;}
.y4d{bottom:468.970500px;}
.y168{bottom:471.238500px;}
.y2d9{bottom:471.573000px;}
.y24f{bottom:473.928000px;}
.ye0{bottom:474.624000px;}
.y235{bottom:475.108500px;}
.ya9{bottom:475.563000px;}
.y85{bottom:477.355500px;}
.y144{bottom:477.804000px;}
.y30f{bottom:478.924500px;}
.y186{bottom:480.633000px;}
.y27b{bottom:482.977500px;}
.y1c2{bottom:483.384000px;}
.y22{bottom:485.013000px;}
.y24e{bottom:488.125500px;}
.y2d8{bottom:488.833500px;}
.y167{bottom:490.068000px;}
.y1f3{bottom:490.666500px;}
.y234{bottom:491.547000px;}
.y118{bottom:492.598500px;}
.ydf{bottom:493.453500px;}
.ya8{bottom:494.392500px;}
.y84{bottom:496.185000px;}
.y143{bottom:496.633500px;}
.y185{bottom:497.071500px;}
.y22f{bottom:498.538500px;}
.y24d{bottom:502.321500px;}
.yc{bottom:502.864502px;}
.y2d7{bottom:506.094000px;}
.y1c1{bottom:506.695500px;}
.y231{bottom:506.832000px;}
.y233{bottom:507.985500px;}
.y117{bottom:511.428000px;}
.yde{bottom:512.283000px;}
.ya7{bottom:513.222000px;}
.y166{bottom:513.381000px;}
.y30e{bottom:513.445500px;}
.y182{bottom:513.510000px;}
.y1f2{bottom:514.306500px;}
.y22e{bottom:514.977000px;}
.y83{bottom:515.014500px;}
.y142{bottom:515.463000px;}
.y27a{bottom:519.349500px;}
.yb{bottom:520.864502px;}
.y2d6{bottom:523.354500px;}
.y24c{bottom:524.154000px;}
.y232{bottom:524.424000px;}
.y181{bottom:529.948500px;}
.y30d{bottom:530.706000px;}
.y1f1{bottom:530.745000px;}
.ydd{bottom:531.112500px;}
.ya6{bottom:532.051500px;}
.y82{bottom:533.844000px;}
.y141{bottom:534.292500px;}
.y279{bottom:538.179000px;}
.ya{bottom:538.864499px;}
.y2d5{bottom:540.613500px;}
.y230{bottom:540.862500px;}
.y165{bottom:543.808500px;}
.y4c{bottom:544.120500px;}
.y184{bottom:546.387000px;}
.y24b{bottom:547.795500px;}
.y30c{bottom:547.966500px;}
.y116{bottom:548.190000px;}
.ydc{bottom:549.942000px;}
.ya5{bottom:550.881000px;}
.y81{bottom:552.673500px;}
.y140{bottom:553.122000px;}
.y1f0{bottom:554.385000px;}
.y9{bottom:556.864499px;}
.y278{bottom:557.008500px;}
.y2d4{bottom:557.874000px;}
.y1c0{bottom:559.480500px;}
.y1ef{bottom:562.605000px;}
.y183{bottom:562.825500px;}
.y22d{bottom:564.502500px;}
.y30b{bottom:565.227000px;}
.y115{bottom:567.019500px;}
.ydb{bottom:568.771500px;}
.ya4{bottom:569.710500px;}
.y80{bottom:571.503000px;}
.y24a{bottom:571.630500px;}
.y13f{bottom:571.951500px;}
.y2d3{bottom:575.134500px;}
.y277{bottom:575.838000px;}
.y1bf{bottom:575.919000px;}
.y22c{bottom:580.941000px;}
.y4b{bottom:581.511000px;}
.y30a{bottom:582.487500px;}
.y114{bottom:585.849000px;}
.yda{bottom:587.601000px;}
.y22a{bottom:588.007500px;}
.ya3{bottom:588.538500px;}
.y228{bottom:589.554000px;}
.y7f{bottom:590.332500px;}
.y13e{bottom:590.781000px;}
.y1bc{bottom:592.357500px;}
.y2d2{bottom:592.395000px;}
.y17d{bottom:593.937000px;}
.y276{bottom:594.667500px;}
.y22b{bottom:597.379500px;}
.y309{bottom:599.746500px;}
.y4a{bottom:600.967500px;}
.y113{bottom:604.678500px;}
.y1ee{bottom:605.431500px;}
.yd9{bottom:606.430500px;}
.y249{bottom:606.433500px;}
.ya2{bottom:607.368000px;}
.y1bb{bottom:608.796000px;}
.y7e{bottom:609.162000px;}
.y13d{bottom:609.610500px;}
.y2d1{bottom:609.655500px;}
.y275{bottom:613.497000px;}
.y229{bottom:613.818000px;}
.y308{bottom:617.007000px;}
.y49{bottom:620.425500px;}
.y112{bottom:623.508000px;}
.y1be{bottom:625.234500px;}
.yd8{bottom:625.260000px;}
.ya1{bottom:626.197500px;}
.y2d0{bottom:626.916000px;}
.y7d{bottom:627.991500px;}
.y13c{bottom:628.440000px;}
.y17c{bottom:628.546500px;}
.y274{bottom:632.326500px;}
.y307{bottom:634.267500px;}
.y227{bottom:637.459500px;}
.y48{bottom:639.882000px;}
.y248{bottom:640.609500px;}
.y1bd{bottom:641.673000px;}
.y111{bottom:642.337500px;}
.y1ed{bottom:642.537000px;}
.yd7{bottom:644.089500px;}
.y2cf{bottom:644.176500px;}
.ya0{bottom:645.027000px;}
.y8{bottom:645.510000px;}
.y7c{bottom:646.821000px;}
.y13b{bottom:647.269500px;}
.y273{bottom:651.156000px;}
.y306{bottom:651.528000px;}
.y226{bottom:653.898000px;}
.y47{bottom:659.338500px;}
.y110{bottom:661.167000px;}
.y1ec{bottom:661.366500px;}
.y2ce{bottom:661.437000px;}
.yd6{bottom:662.917500px;}
.y9f{bottom:663.856500px;}
.y7b{bottom:665.650500px;}
.y13a{bottom:666.099000px;}
.y7{bottom:666.771000px;}
.y305{bottom:668.788500px;}
.y223{bottom:669.183000px;}
.y225{bottom:670.335000px;}
.y221{bottom:670.729500px;}
.y272{bottom:674.467500px;}
.y2cd{bottom:678.696000px;}
.y46{bottom:678.796500px;}
.y10f{bottom:679.996500px;}
.y1eb{bottom:680.196000px;}
.y1ba{bottom:680.257500px;}
.yd5{bottom:681.747000px;}
.y9e{bottom:682.686000px;}
.y7a{bottom:684.480000px;}
.y139{bottom:684.928500px;}
.y304{bottom:686.049000px;}
.y224{bottom:686.773500px;}
.y2cc{bottom:695.956500px;}
.y1b9{bottom:696.696000px;}
.y45{bottom:698.253000px;}
.y10e{bottom:698.826000px;}
.y1ea{bottom:699.024000px;}
.yd4{bottom:700.576500px;}
.y9d{bottom:701.515500px;}
.y222{bottom:703.212000px;}
.y79{bottom:703.309500px;}
.y138{bottom:703.758000px;}
.y271{bottom:704.161500px;}
.y1b8{bottom:713.134500px;}
.y2cb{bottom:713.217000px;}
.y10d{bottom:717.655500px;}
.y44{bottom:717.711000px;}
.y1e9{bottom:717.853500px;}
.yd3{bottom:719.406000px;}
.y9c{bottom:720.345000px;}
.y303{bottom:720.570000px;}
.y78{bottom:722.139000px;}
.y137{bottom:722.587500px;}
.y6{bottom:726.298500px;}
.y26f{bottom:726.591000px;}
.y220{bottom:726.853500px;}
.y1b7{bottom:729.571500px;}
.y2ca{bottom:734.961000px;}
.y10c{bottom:736.485000px;}
.y1e8{bottom:736.683000px;}
.y43{bottom:737.167500px;}
.y1b2{bottom:737.791500px;}
.y302{bottom:737.829000px;}
.yd2{bottom:738.235500px;}
.y9b{bottom:739.174500px;}
.y77{bottom:740.968500px;}
.y136{bottom:741.417000px;}
.y21f{bottom:743.292000px;}
.y1b6{bottom:746.010000px;}
.y21d{bottom:750.357000px;}
.y21b{bottom:751.903500px;}
.y3{bottom:752.599495px;}
.y301{bottom:755.089500px;}
.y10b{bottom:755.314500px;}
.y42{bottom:756.624000px;}
.yd1{bottom:757.065000px;}
.y297{bottom:758.004000px;}
.y21e{bottom:759.729000px;}
.y76{bottom:759.798000px;}
.y1e7{bottom:759.996000px;}
.y135{bottom:760.246500px;}
.y1b5{bottom:762.448500px;}
.y9a{bottom:762.487500px;}
.y2c9{bottom:768.585000px;}
.y300{bottom:772.350000px;}
.y10a{bottom:774.144000px;}
.yd0{bottom:775.894500px;}
.y41{bottom:776.082000px;}
.y21c{bottom:776.167500px;}
.y296{bottom:776.833500px;}
.y75{bottom:778.627500px;}
.y263{bottom:778.810500px;}
.y1b4{bottom:778.887000px;}
.y134{bottom:779.076000px;}
.y1e6{bottom:780.171000px;}
.y99{bottom:782.662500px;}
.y164{bottom:787.593000px;}
.y2ff{bottom:789.610500px;}
.y109{bottom:792.973500px;}
.y262{bottom:793.008000px;}
.ycf{bottom:794.724000px;}
.y2c8{bottom:795.126000px;}
.y1b3{bottom:795.325500px;}
.y40{bottom:795.538500px;}
.y295{bottom:795.663000px;}
.y74{bottom:797.457000px;}
.y133{bottom:797.904000px;}
.y21a{bottom:799.809000px;}
.y163{bottom:806.422500px;}
.y2fe{bottom:806.871000px;}
.y261{bottom:807.204000px;}
.y108{bottom:811.803000px;}
.yce{bottom:813.553500px;}
.y294{bottom:814.492500px;}
.y3f{bottom:814.995000px;}
.y219{bottom:816.247500px;}
.y73{bottom:816.286500px;}
.y132{bottom:816.733500px;}
.y2c7{bottom:821.665500px;}
.y2fd{bottom:824.131500px;}
.y214{bottom:824.989500px;}
.y162{bottom:825.252000px;}
.y1e5{bottom:825.483000px;}
.y260{bottom:829.036500px;}
.y107{bottom:830.632500px;}
.y216{bottom:831.532500px;}
.ycd{bottom:832.383000px;}
.y218{bottom:832.686000px;}
.y293{bottom:833.322000px;}
.y1b1{bottom:833.910000px;}
.y3e{bottom:834.453000px;}
.y72{bottom:835.114500px;}
.y131{bottom:835.563000px;}
.y2fc{bottom:841.392000px;}
.y213{bottom:841.428000px;}
.y1e4{bottom:841.921500px;}
.y161{bottom:844.081500px;}
.y2c6{bottom:848.206500px;}
.y217{bottom:849.124500px;}
.y106{bottom:849.462000px;}
.y1b0{bottom:850.348500px;}
.y1e1{bottom:850.534500px;}
.ycc{bottom:851.212500px;}
.y292{bottom:852.151500px;}
.y25f{bottom:852.871500px;}
.y3d{bottom:853.909500px;}
.y71{bottom:853.944000px;}
.y130{bottom:854.392500px;}
.y1e3{bottom:858.360000px;}
.y2fb{bottom:858.652500px;}
.y160{bottom:862.911000px;}
.y215{bottom:865.563000px;}
.y2c5{bottom:865.780500px;}
.y1af{bottom:866.787000px;}
.y105{bottom:868.291500px;}
.ycb{bottom:870.042000px;}
.y70{bottom:872.773500px;}
.y12f{bottom:873.222000px;}
.y3c{bottom:873.367500px;}
.y1e2{bottom:874.798500px;}
.y1ab{bottom:875.005500px;}
.y291{bottom:875.464500px;}
.y2fa{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y15f{bottom:881.740500px;}
.y1ae{bottom:883.225500px;}
.y2c4{bottom:883.354500px;}
.y104{bottom:887.121000px;}
.y25e{bottom:887.674500px;}
.yca{bottom:888.871500px;}
.y212{bottom:889.203000px;}
.y6f{bottom:891.603000px;}
.y12e{bottom:892.051500px;}
.y3b{bottom:892.824000px;}
.y2f9{bottom:893.172000px;}
.y290{bottom:895.638000px;}
.y208{bottom:896.724000px;}
.y1e0{bottom:898.438500px;}
.y1ad{bottom:899.664000px;}
.y15e{bottom:900.570000px;}
.y211{bottom:905.641500px;}
.y103{bottom:905.950500px;}
.y1df{bottom:907.257000px;}
.yc9{bottom:907.701000px;}
.y2c3{bottom:909.895500px;}
.y6e{bottom:910.432500px;}
.y207{bottom:913.162500px;}
.y12d{bottom:915.364500px;}
.y1ac{bottom:916.102500px;}
.y15d{bottom:919.399500px;}
.y20f{bottom:920.926500px;}
.y210{bottom:922.080000px;}
.y20e{bottom:922.678500px;}
.y102{bottom:924.778500px;}
.yc8{bottom:926.530500px;}
.y2f8{bottom:927.693000px;}
.y6d{bottom:929.262000px;}
.y206{bottom:929.601000px;}
.y3a{bottom:931.410000px;}
.y2c2{bottom:936.435000px;}
.y15c{bottom:938.229000px;}
.y1de{bottom:938.518500px;}
.y101{bottom:943.608000px;}
.y2f7{bottom:944.953500px;}
.yc7{bottom:945.360000px;}
.y205{bottom:946.039500px;}
.y39{bottom:947.548500px;}
.y6c{bottom:948.091500px;}
.y12c{bottom:948.988500px;}
.y2c1{bottom:954.010500px;}
.y1a8{bottom:954.687000px;}
.y1dd{bottom:954.957000px;}
.y15b{bottom:957.058500px;}
.y26e{bottom:957.129000px;}
.y2f6{bottom:962.214000px;}
.y100{bottom:962.437500px;}
.y1da{bottom:963.774000px;}
.y1{bottom:966.726000px;}
.y6b{bottom:966.921000px;}
.y12b{bottom:967.818000px;}
.y1a7{bottom:971.125500px;}
.y1dc{bottom:971.394000px;}
.y2c0{bottom:971.584500px;}
.y20d{bottom:978.597000px;}
.y2f5{bottom:979.474500px;}
.y15a{bottom:980.371500px;}
.yff{bottom:981.267000px;}
.y6a{bottom:985.750500px;}
.y1a6{bottom:987.564000px;}
.y1db{bottom:987.832500px;}
.y2bf{bottom:989.158500px;}
.yc5{bottom:990.822000px;}
.y20c{bottom:995.035500px;}
.y20a{bottom:995.559000px;}
.y1aa{bottom:995.782500px;}
.y38{bottom:996.565500px;}
.y2f4{bottom:996.735000px;}
.yc4{bottom:999.040500px;}
.yfe{bottom:1000.096500px;}
.y159{bottom:1000.545000px;}
.y20b{bottom:1002.102000px;}
.y1a2{bottom:1004.002500px;}
.y69{bottom:1004.580000px;}
.y2be{bottom:1006.732500px;}
.yc6{bottom:1007.260500px;}
.y1d9{bottom:1011.474000px;}
.y209{bottom:1011.997500px;}
.y1a9{bottom:1012.221000px;}
.y2f3{bottom:1013.995500px;}
.yfd{bottom:1018.926000px;}
.y1a5{bottom:1020.439500px;}
.y68{bottom:1023.409500px;}
.y1d8{bottom:1027.912500px;}
.yc3{bottom:1030.900500px;}
.y2f2{bottom:1031.254500px;}
.y1d5{bottom:1034.773500px;}
.y37{bottom:1036.485000px;}
.y1a4{bottom:1036.878000px;}
.yfc{bottom:1037.755500px;}
.yc0{bottom:1039.120500px;}
.y67{bottom:1042.239000px;}
.y158{bottom:1043.136000px;}
.y1d7{bottom:1044.351000px;}
.yc2{bottom:1047.339000px;}
.y2f1{bottom:1048.515000px;}
.y203{bottom:1051.552500px;}
.y1a3{bottom:1053.316500px;}
.ybf{bottom:1055.559000px;}
.yfb{bottom:1056.585000px;}
.y202{bottom:1059.772500px;}
.y1d6{bottom:1060.789500px;}
.y66{bottom:1061.068500px;}
.y157{bottom:1061.965500px;}
.yc1{bottom:1063.777500px;}
.y36{bottom:1064.728500px;}
.y2f0{bottom:1065.775500px;}
.y201{bottom:1067.991000px;}
.yfa{bottom:1075.414500px;}
.y204{bottom:1076.211000px;}
.y65{bottom:1079.898000px;}
.y2ef{bottom:1083.036000px;}
.y1a1{bottom:1084.429500px;}
.ybe{bottom:1087.419000px;}
.y35{bottom:1092.972000px;}
.yf9{bottom:1094.244000px;}
.y64{bottom:1098.727500px;}
.y2ee{bottom:1100.296500px;}
.y63{bottom:1117.557000px;}
.ybd{bottom:1119.037500px;}
.y62{bottom:1177.662000px;}
.h20{height:28.645638px;}
.h7{height:32.130000px;}
.h9{height:36.319550px;}
.h10{height:38.896243px;}
.h11{height:39.434227px;}
.hd{height:41.508281px;}
.hc{height:43.217759px;}
.ha{height:43.815515px;}
.h6{height:45.900000px;}
.he{height:46.697011px;}
.h3{height:48.195000px;}
.h1f{height:48.225586px;}
.h1a{height:49.002344px;}
.hf{height:51.885221px;}
.h1d{height:53.691152px;}
.h2{height:55.080000px;}
.h21{height:59.609011px;}
.h19{height:61.128893px;}
.h1b{height:61.134893px;}
.h13{height:66.231221px;}
.h16{height:71.770243px;}
.h17{height:71.776243px;}
.h15{height:77.177011px;}
.hb{height:77.792486px;}
.h5{height:78.030000px;}
.h18{height:79.571011px;}
.h12{height:79.577011px;}
.h14{height:85.007011px;}
.h4{height:119.055004px;}
.h1e{height:204.795000px;}
.h1c{height:408.642000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:570.672000px;}
.w2{width:637.794021px;}
.w4{width:724.626450px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x76{left:1.869000px;}
.x5{left:53.574000px;}
.x5b{left:62.541000px;}
.x2b{left:64.177500px;}
.x53{left:67.186500px;}
.x4f{left:71.974500px;}
.x2a{left:73.807500px;}
.x55{left:74.892000px;}
.x51{left:76.977000px;}
.x75{left:80.121000px;}
.x5c{left:81.889500px;}
.x52{left:83.164500px;}
.x81{left:85.404000px;}
.x54{left:86.734500px;}
.x50{left:88.147500px;}
.x4e{left:89.580000px;}
.x2c{left:91.816500px;}
.x4c{left:93.055500px;}
.x6c{left:95.013000px;}
.x71{left:98.505000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x47{left:108.588000px;}
.x67{left:115.882500px;}
.x43{left:117.451500px;}
.x3a{left:122.770500px;}
.x65{left:124.282500px;}
.x66{left:127.590000px;}
.x3c{left:130.477500px;}
.x37{left:132.561000px;}
.x39{left:138.748500px;}
.x3b{left:142.318500px;}
.x80{left:144.361500px;}
.x29{left:145.654500px;}
.x61{left:161.836500px;}
.x77{left:166.707000px;}
.x6a{left:171.150000px;}
.x63{left:178.272000px;}
.x5d{left:179.442000px;}
.x5e{left:181.863000px;}
.x36{left:187.872000px;}
.x72{left:192.751500px;}
.x4{left:203.484001px;}
.x2d{left:205.477500px;}
.x2e{left:207.898500px;}
.x82{left:228.523500px;}
.x6b{left:240.735000px;}
.x7d{left:243.331500px;}
.x7{left:248.526000px;}
.x6{left:249.591000px;}
.x74{left:255.772500px;}
.x7e{left:260.862000px;}
.x3d{left:262.329000px;}
.x22{left:265.318500px;}
.x12{left:267.087000px;}
.x48{left:269.067000px;}
.xa{left:270.643500px;}
.x1d{left:276.609000px;}
.x8{left:281.479500px;}
.x41{left:282.948000px;}
.xb{left:284.121000px;}
.x9{left:287.758500px;}
.x68{left:288.807000px;}
.x46{left:290.794500px;}
.x1c{left:291.834000px;}
.x56{left:300.324000px;}
.x62{left:305.542500px;}
.x64{left:306.672000px;}
.x5f{left:307.768500px;}
.x2f{left:309.694500px;}
.x42{left:310.815000px;}
.x40{left:314.170500px;}
.x44{left:318.655500px;}
.x45{left:323.793000px;}
.x26{left:325.486500px;}
.x3f{left:329.388000px;}
.x49{left:333.685500px;}
.x30{left:336.888000px;}
.x4b{left:340.806000px;}
.x4a{left:344.169000px;}
.x3e{left:353.691000px;}
.x6d{left:361.005000px;}
.x7f{left:366.657000px;}
.x6e{left:379.765500px;}
.x57{left:384.802500px;}
.x58{left:387.412500px;}
.x15{left:390.208500px;}
.x23{left:391.452000px;}
.x18{left:393.463500px;}
.x13{left:394.687500px;}
.xc{left:396.630000px;}
.xf{left:403.483500px;}
.x27{left:412.309500px;}
.x14{left:414.114000px;}
.x1f{left:415.627500px;}
.xd{left:416.851500px;}
.x1e{left:419.931000px;}
.xe{left:432.364500px;}
.x19{left:453.279000px;}
.x3{left:454.959000px;}
.x59{left:466.615500px;}
.x16{left:469.485000px;}
.x5a{left:478.935000px;}
.x10{left:491.239500px;}
.x4d{left:573.370500px;}
.x78{left:577.260000px;}
.x6f{left:589.981500px;}
.x70{left:605.023500px;}
.x60{left:637.725000px;}
.x79{left:672.196500px;}
.x7a{left:675.679500px;}
.x11{left:706.323000px;}
.x35{left:708.012000px;}
.x1a{left:710.512500px;}
.x31{left:713.385000px;}
.x32{left:721.287000px;}
.x73{left:723.220987px;}
.x28{left:725.968500px;}
.x38{left:729.861000px;}
.x21{left:731.014500px;}
.x25{left:734.356500px;}
.x24{left:735.534000px;}
.x17{left:736.617000px;}
.x34{left:737.668500px;}
.x20{left:738.984000px;}
.x1b{left:744.142500px;}
.x33{left:750.108000px;}
.x7c{left:777.085500px;}
.x7b{left:779.574000px;}
.x69{left:782.043000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:11.477333pt;}
.v3{vertical-align:12.752000pt;}
.v7{vertical-align:16.666667pt;}
.v6{vertical-align:19.285333pt;}
.v5{vertical-align:27.093333pt;}
.v2{vertical-align:29.226667pt;}
.v4{vertical-align:34.053333pt;}
.ls1e{letter-spacing:-0.148800pt;}
.ls1d{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000600pt;}
.ls21{letter-spacing:0.000711pt;}
.ls23{letter-spacing:0.001026pt;}
.ls10{letter-spacing:0.003012pt;}
.ls1f{letter-spacing:0.003527pt;}
.lsd{letter-spacing:0.570745pt;}
.lse{letter-spacing:0.576078pt;}
.ls11{letter-spacing:2.656533pt;}
.lsf{letter-spacing:10.623733pt;}
.ls2{letter-spacing:10.626533pt;}
.ls13{letter-spacing:10.629067pt;}
.ls4{letter-spacing:12.273923pt;}
.ls16{letter-spacing:12.328305pt;}
.ls1b{letter-spacing:12.549333pt;}
.ls1c{letter-spacing:12.554667pt;}
.ls15{letter-spacing:13.070931pt;}
.ls5{letter-spacing:13.124065pt;}
.ls1a{letter-spacing:13.181494pt;}
.ls6{letter-spacing:13.230333pt;}
.ls3{letter-spacing:13.283467pt;}
.lsc{letter-spacing:13.442868pt;}
.ls9{letter-spacing:13.496002pt;}
.lsb{letter-spacing:13.549136pt;}
.ls7{letter-spacing:15.036884pt;}
.ls20{letter-spacing:15.133052pt;}
.ls19{letter-spacing:15.665746pt;}
.ls17{letter-spacing:15.796465pt;}
.ls18{letter-spacing:15.801694pt;}
.lsa{letter-spacing:16.046428pt;}
.ls8{letter-spacing:17.906113pt;}
.ls1{letter-spacing:25.292137pt;}
.ls14{letter-spacing:128.462302pt;}
.ls12{letter-spacing:138.062302pt;}
.ws32{word-spacing:-13.283467pt;}
.wsd5{word-spacing:-12.000000pt;}
.ws57{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.wsb{word-spacing:-9.298400pt;}
.ws39{word-spacing:-2.762961pt;}
.ws94{word-spacing:-2.709827pt;}
.ws6f{word-spacing:-2.550426pt;}
.ws7e{word-spacing:-2.497292pt;}
.ws82{word-spacing:-2.444158pt;}
.wse5{word-spacing:-2.391024pt;}
.ws93{word-spacing:-2.284756pt;}
.ws3d{word-spacing:-2.125355pt;}
.ws22{word-spacing:-2.072221pt;}
.ws4e{word-spacing:-2.019087pt;}
.ws31{word-spacing:-1.965953pt;}
.wse1{word-spacing:-1.859685pt;}
.ws3e{word-spacing:-1.806551pt;}
.ws10b{word-spacing:-1.769370pt;}
.wse3{word-spacing:-1.594016pt;}
.ws79{word-spacing:-1.540882pt;}
.ws66{word-spacing:-1.487748pt;}
.wsf1{word-spacing:-1.482445pt;}
.ws67{word-spacing:-1.434614pt;}
.ws92{word-spacing:-1.381481pt;}
.ws33{word-spacing:-1.328347pt;}
.wsc8{word-spacing:-1.275213pt;}
.ws110{word-spacing:-1.243341pt;}
.wse6{word-spacing:-1.222079pt;}
.ws127{word-spacing:-1.195520pt;}
.ws24{word-spacing:-1.168945pt;}
.ws36{word-spacing:-1.009543pt;}
.ws35{word-spacing:-0.956410pt;}
.ws106{word-spacing:-0.908595pt;}
.ws49{word-spacing:-0.850142pt;}
.ws111{word-spacing:-0.812954pt;}
.ws72{word-spacing:-0.797008pt;}
.ws48{word-spacing:-0.743874pt;}
.ws7a{word-spacing:-0.690740pt;}
.ws4f{word-spacing:-0.584473pt;}
.wsef{word-spacing:-0.573850pt;}
.ws65{word-spacing:-0.531339pt;}
.ws123{word-spacing:-0.526029pt;}
.ws41{word-spacing:-0.478205pt;}
.ws7d{word-spacing:-0.425071pt;}
.ws121{word-spacing:-0.382566pt;}
.ws5b{word-spacing:-0.371937pt;}
.ws27{word-spacing:-0.318803pt;}
.ws126{word-spacing:-0.286925pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws11c{word-spacing:-0.239104pt;}
.ws38{word-spacing:-0.212535pt;}
.wsed{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.wsc7{word-spacing:-0.085014pt;}
.ws44{word-spacing:-0.053134pt;}
.wsb3{word-spacing:-0.047821pt;}
.ws104{word-spacing:-0.009677pt;}
.wsf2{word-spacing:-0.009190pt;}
.ws118{word-spacing:-0.009028pt;}
.ws120{word-spacing:-0.008269pt;}
.wsb4{word-spacing:-0.008124pt;}
.wsf8{word-spacing:-0.007031pt;}
.wsca{word-spacing:-0.006811pt;}
.ws114{word-spacing:-0.006494pt;}
.ws109{word-spacing:-0.006195pt;}
.ws11b{word-spacing:-0.006050pt;}
.ws117{word-spacing:-0.005530pt;}
.wsd4{word-spacing:-0.004843pt;}
.ws116{word-spacing:-0.004719pt;}
.ws115{word-spacing:-0.003849pt;}
.wsf5{word-spacing:-0.003456pt;}
.wsbf{word-spacing:-0.003445pt;}
.ws11f{word-spacing:-0.003174pt;}
.ws12e{word-spacing:-0.001954pt;}
.ws10d{word-spacing:-0.001894pt;}
.ws128{word-spacing:-0.001092pt;}
.ws3{word-spacing:-0.000692pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.003199pt;}
.ws10{word-spacing:0.047821pt;}
.ws1b{word-spacing:0.053134pt;}
.ws2{word-spacing:0.074387pt;}
.ws9d{word-spacing:0.095642pt;}
.ws1c{word-spacing:0.106268pt;}
.wsf{word-spacing:0.143462pt;}
.wsde{word-spacing:0.158400pt;}
.ws1e{word-spacing:0.159402pt;}
.wsdc{word-spacing:0.163200pt;}
.ws56{word-spacing:0.191283pt;}
.ws3f{word-spacing:0.212535pt;}
.ws9c{word-spacing:0.239104pt;}
.ws30{word-spacing:0.265669pt;}
.ws11{word-spacing:0.286925pt;}
.wsdd{word-spacing:0.307200pt;}
.ws26{word-spacing:0.318803pt;}
.wse{word-spacing:0.334746pt;}
.ws6e{word-spacing:0.371937pt;}
.ws3a{word-spacing:0.478205pt;}
.wsf6{word-spacing:0.478208pt;}
.ws11e{word-spacing:0.526029pt;}
.wse2{word-spacing:0.531339pt;}
.wsf4{word-spacing:0.573850pt;}
.ws90{word-spacing:0.584473pt;}
.wsd7{word-spacing:0.589943pt;}
.wsd9{word-spacing:0.595277pt;}
.wsd3{word-spacing:0.616439pt;}
.ws60{word-spacing:0.637606pt;}
.ws8a{word-spacing:0.690740pt;}
.wse0{word-spacing:0.743874pt;}
.ws13{word-spacing:0.765133pt;}
.wsdf{word-spacing:0.797008pt;}
.wsf7{word-spacing:0.812954pt;}
.ws23{word-spacing:0.850142pt;}
.wseb{word-spacing:0.903276pt;}
.ws125{word-spacing:0.908595pt;}
.ws5e{word-spacing:0.956410pt;}
.ws14{word-spacing:1.004237pt;}
.ws88{word-spacing:1.009543pt;}
.ws6b{word-spacing:1.062677pt;}
.ws119{word-spacing:1.099878pt;}
.ws40{word-spacing:1.115811pt;}
.ws21{word-spacing:1.168945pt;}
.ws47{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws46{word-spacing:1.275213pt;}
.ws2d{word-spacing:1.328347pt;}
.wse7{word-spacing:1.381481pt;}
.ws108{word-spacing:1.386803pt;}
.ws1d{word-spacing:1.434614pt;}
.ws124{word-spacing:1.482445pt;}
.ws6c{word-spacing:1.594016pt;}
.ws105{word-spacing:1.625907pt;}
.ws87{word-spacing:1.647150pt;}
.ws5f{word-spacing:1.700284pt;}
.ws9a{word-spacing:1.753418pt;}
.ws17{word-spacing:1.769370pt;}
.ws2e{word-spacing:1.806551pt;}
.ws11a{word-spacing:1.817190pt;}
.ws42{word-spacing:1.859685pt;}
.ws63{word-spacing:1.912819pt;}
.ws12b{word-spacing:1.960653pt;}
.ws1f{word-spacing:1.965953pt;}
.ws97{word-spacing:2.019087pt;}
.ws9e{word-spacing:2.072221pt;}
.ws16{word-spacing:2.104115pt;}
.wsfb{word-spacing:2.151936pt;}
.ws34{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsc6{word-spacing:2.252882pt;}
.ws6a{word-spacing:2.284756pt;}
.wsea{word-spacing:2.337890pt;}
.ws69{word-spacing:2.391024pt;}
.ws12a{word-spacing:2.486682pt;}
.ws52{word-spacing:2.497292pt;}
.ws10a{word-spacing:2.534502pt;}
.ws5d{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.ws107{word-spacing:2.582323pt;}
.ws68{word-spacing:2.603559pt;}
.wse4{word-spacing:2.656693pt;}
.ws70{word-spacing:2.709827pt;}
.ws5a{word-spacing:2.762961pt;}
.ws100{word-spacing:2.773606pt;}
.ws4a{word-spacing:2.816095pt;}
.ws11d{word-spacing:2.860510pt;}
.ws19{word-spacing:2.861926pt;}
.wsfc{word-spacing:2.862251pt;}
.wsfe{word-spacing:2.862379pt;}
.ws103{word-spacing:2.865084pt;}
.wsee{word-spacing:2.866509pt;}
.ws58{word-spacing:2.869229pt;}
.wsf0{word-spacing:2.869248pt;}
.ws129{word-spacing:2.870067pt;}
.ws12d{word-spacing:2.917069pt;}
.wsaf{word-spacing:2.922363pt;}
.wsff{word-spacing:2.964890pt;}
.ws8b{word-spacing:2.975497pt;}
.ws45{word-spacing:3.028630pt;}
.ws64{word-spacing:3.081764pt;}
.ws12f{word-spacing:3.108352pt;}
.ws9b{word-spacing:3.134898pt;}
.ws122{word-spacing:3.156173pt;}
.ws1a{word-spacing:3.188032pt;}
.wsfa{word-spacing:3.251814pt;}
.ws84{word-spacing:3.294300pt;}
.wsd{word-spacing:3.343696pt;}
.ws85{word-spacing:3.347434pt;}
.ws12{word-spacing:3.395277pt;}
.wsa0{word-spacing:3.506835pt;}
.wsfd{word-spacing:3.538739pt;}
.ws4b{word-spacing:3.559969pt;}
.ws78{word-spacing:3.666237pt;}
.ws71{word-spacing:3.772505pt;}
.ws96{word-spacing:3.825638pt;}
.wsec{word-spacing:3.873485pt;}
.ws8e{word-spacing:3.878772pt;}
.ws80{word-spacing:3.931906pt;}
.wsb0{word-spacing:3.985040pt;}
.ws53{word-spacing:4.091308pt;}
.ws4c{word-spacing:4.197575pt;}
.ws7b{word-spacing:4.250709pt;}
.ws4d{word-spacing:4.303843pt;}
.ws62{word-spacing:4.356977pt;}
.ws12c{word-spacing:4.399514pt;}
.ws99{word-spacing:4.410111pt;}
.ws2c{word-spacing:4.516379pt;}
.ws51{word-spacing:4.569513pt;}
.ws50{word-spacing:4.622646pt;}
.ws9f{word-spacing:4.675780pt;}
.ws81{word-spacing:4.728914pt;}
.wse9{word-spacing:4.782048pt;}
.ws102{word-spacing:4.782080pt;}
.ws10f{word-spacing:4.829901pt;}
.ws8{word-spacing:4.872362pt;}
.wse8{word-spacing:4.888316pt;}
.ws10c{word-spacing:4.925542pt;}
.ws98{word-spacing:4.994583pt;}
.ws8d{word-spacing:5.047717pt;}
.wsf3{word-spacing:5.069005pt;}
.ws8c{word-spacing:5.100851pt;}
.ws43{word-spacing:5.153985pt;}
.wsf9{word-spacing:5.164646pt;}
.wscb{word-spacing:5.207119pt;}
.ws3c{word-spacing:5.313387pt;}
.ws2b{word-spacing:5.419654pt;}
.ws74{word-spacing:5.579056pt;}
.wscc{word-spacing:5.632190pt;}
.ws113{word-spacing:5.642854pt;}
.ws95{word-spacing:5.685324pt;}
.ws37{word-spacing:5.791591pt;}
.ws10e{word-spacing:5.834138pt;}
.ws3b{word-spacing:5.844725pt;}
.ws101{word-spacing:6.025421pt;}
.ws83{word-spacing:6.163529pt;}
.ws5c{word-spacing:6.535466pt;}
.ws75{word-spacing:6.588599pt;}
.ws8f{word-spacing:6.907403pt;}
.ws7c{word-spacing:6.960537pt;}
.ws28{word-spacing:7.013670pt;}
.ws59{word-spacing:7.066804pt;}
.ws77{word-spacing:7.173072pt;}
.ws76{word-spacing:7.226206pt;}
.ws54{word-spacing:7.545009pt;}
.ws55{word-spacing:7.810678pt;}
.ws6d{word-spacing:8.395151pt;}
.ws6{word-spacing:8.740496pt;}
.ws7{word-spacing:10.525789pt;}
.ws89{word-spacing:11.317514pt;}
.ws4{word-spacing:13.761632pt;}
.ws9{word-spacing:14.282342pt;}
.ws86{word-spacing:16.303582pt;}
.ws91{word-spacing:16.694200pt;}
.ws61{word-spacing:16.790302pt;}
.ws73{word-spacing:18.093204pt;}
.ws5{word-spacing:19.857270pt;}
.ws112{word-spacing:20.184940pt;}
.ws7f{word-spacing:32.738956pt;}
.wsc3{word-spacing:90.583057pt;}
.wsa4{word-spacing:93.250560pt;}
.wsbd{word-spacing:93.346202pt;}
.wsd1{word-spacing:93.824410pt;}
.wsba{word-spacing:93.920051pt;}
.wsb6{word-spacing:94.541722pt;}
.wsc1{word-spacing:94.807347pt;}
.wscf{word-spacing:96.608375pt;}
.wsd0{word-spacing:97.745715pt;}
.wsce{word-spacing:104.407347pt;}
.wsc2{word-spacing:106.208375pt;}
.wsb2{word-spacing:109.577719pt;}
.wsc5{word-spacing:113.000550pt;}
.wsa6{word-spacing:115.821978pt;}
.wsc4{word-spacing:116.969677pt;}
.wsa5{word-spacing:119.095723pt;}
.wsda{word-spacing:133.450667pt;}
.wsc0{word-spacing:151.563733pt;}
.wsc9{word-spacing:159.721472pt;}
.wsad{word-spacing:170.768000pt;}
.wsd6{word-spacing:172.776550pt;}
.wsd2{word-spacing:190.087680pt;}
.wsaa{word-spacing:190.135501pt;}
.wsa8{word-spacing:190.714658pt;}
.wsa9{word-spacing:192.000512pt;}
.wsd8{word-spacing:196.495667pt;}
.wscd{word-spacing:199.569067pt;}
.wsac{word-spacing:209.914061pt;}
.wsae{word-spacing:209.932587pt;}
.wsdb{word-spacing:215.097958pt;}
.wsbe{word-spacing:229.205094pt;}
.wsb8{word-spacing:232.074342pt;}
.wsbc{word-spacing:233.700250pt;}
.wsbb{word-spacing:234.034995pt;}
.wsb9{word-spacing:234.608845pt;}
.wsb5{word-spacing:238.530150pt;}
.wsb7{word-spacing:242.547098pt;}
.wsab{word-spacing:249.523823pt;}
.wsa7{word-spacing:263.223808pt;}
.wsb1{word-spacing:296.827238pt;}
.wsa1{word-spacing:500.062106pt;}
.wsa3{word-spacing:512.017306pt;}
.wsa2{word-spacing:649.160439pt;}
._84{margin-left:-18.076262pt;}
._6{margin-left:-10.616218pt;}
._5{margin-left:-7.077478pt;}
._9{margin-left:-5.632240pt;}
._7{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._15{margin-left:-2.231712pt;}
._4{margin-left:-1.301776pt;}
._1e{width:0.903415pt;}
._83{width:2.199757pt;}
._1b{width:3.538739pt;}
._21{width:9.649021pt;}
._0{width:11.641597pt;}
._11{width:13.177232pt;}
._e{width:14.239926pt;}
._8{width:15.217629pt;}
._b{width:16.726666pt;}
._c{width:18.379107pt;}
._f{width:19.500129pt;}
._d{width:20.658586pt;}
._2{width:22.502128pt;}
._16{width:24.256122pt;}
._a{width:25.488486pt;}
._22{width:26.381051pt;}
._3{width:27.783619pt;}
._18{width:29.542430pt;}
._1f{width:31.067415pt;}
._20{width:32.199123pt;}
._14{width:33.155533pt;}
._17{width:35.015308pt;}
._10{width:38.043849pt;}
._25{width:79.286886pt;}
._26{width:80.769331pt;}
._4d{width:93.096483pt;}
._6c{width:102.193050pt;}
._5c{width:105.779610pt;}
._6d{width:112.420799pt;}
._5b{width:115.439411pt;}
._1d{width:122.790861pt;}
._4b{width:123.937580pt;}
._70{width:124.955750pt;}
._4c{width:130.837709pt;}
._59{width:133.659136pt;}
._6f{width:135.667610pt;}
._51{width:137.436979pt;}
._6e{width:139.110707pt;}
._6a{width:140.067123pt;}
._58{width:141.400204pt;}
._5a{width:144.562278pt;}
._52{width:149.392179pt;}
._6b{width:153.265664pt;}
._3f{width:154.317722pt;}
._68{width:158.430310pt;}
._4e{width:164.073165pt;}
._40{width:167.598438pt;}
._65{width:172.417374pt;}
._7e{width:176.745677pt;}
._66{width:178.275942pt;}
._50{width:183.297126pt;}
._80{width:185.471428pt;}
._48{width:186.931507pt;}
._63{width:192.598793pt;}
._78{width:193.530778pt;}
._54{width:195.252326pt;}
._3e{width:198.169395pt;}
._49{width:202.687940pt;}
._75{width:204.816486pt;}
._82{width:208.450867pt;}
._61{width:214.141542pt;}
._4a{width:216.363366pt;}
._46{width:221.887548pt;}
._72{width:223.275315pt;}
._71{width:227.808863pt;}
._69{width:229.327270pt;}
._44{width:234.034995pt;}
._62{width:236.234752pt;}
._45{width:241.255936pt;}
._47{width:242.881843pt;}
._55{width:244.029542pt;}
._57{width:245.538522pt;}
._56{width:246.564045pt;}
._73{width:249.327403pt;}
._4f{width:250.485350pt;}
._60{width:251.967795pt;}
._53{width:254.502298pt;}
._7b{width:260.288614pt;}
._74{width:263.623143pt;}
._64{width:265.166336pt;}
._5f{width:267.222630pt;}
._43{width:275.830374pt;}
._41{width:281.807974pt;}
._67{width:285.729280pt;}
._5e{width:293.093683pt;}
._3d{width:295.187184pt;}
._42{width:305.766195pt;}
._7c{width:315.731541pt;}
._35{width:323.125146pt;}
._29{width:326.090035pt;}
._76{width:386.822451pt;}
._32{width:396.386611pt;}
._34{width:404.611789pt;}
._79{width:408.772198pt;}
._38{width:412.194010pt;}
._5d{width:414.978288pt;}
._77{width:442.196139pt;}
._7a{width:462.761882pt;}
._39{width:466.962227pt;}
._33{width:495.471309pt;}
._7d{width:501.496730pt;}
._30{width:507.378688pt;}
._7f{width:515.701589pt;}
._37{width:517.707981pt;}
._2f{width:523.972506pt;}
._1a{width:526.076621pt;}
._2d{width:536.023347pt;}
._2e{width:537.601434pt;}
._81{width:545.115366pt;}
._36{width:547.882906pt;}
._24{width:549.460992pt;}
._3a{width:552.856269pt;}
._31{width:559.885926pt;}
._3c{width:578.201293pt;}
._19{width:589.295718pt;}
._3b{width:602.111693pt;}
._2c{width:624.013619pt;}
._1c{width:627.695821pt;}
._2b{width:647.254528pt;}
._12{width:783.363589pt;}
._23{width:823.463562pt;}
._28{width:872.394854pt;}
._2a{width:997.191182pt;}
._27{width:2233.602667pt;}
._13{width:2254.856000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:40.381867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y265{bottom:1.460381pt;}
.y270{bottom:5.644400pt;}
.y61{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y28f{bottom:92.108000pt;}
.y34{bottom:93.018667pt;}
.y60{bottom:94.869333pt;}
.y247{bottom:99.829333pt;}
.y17b{bottom:100.870667pt;}
.yf2{bottom:103.481333pt;}
.y323{bottom:103.518667pt;}
.y2aa{bottom:104.713333pt;}
.y2bd{bottom:105.909333pt;}
.y98{bottom:106.308000pt;}
.y28e{bottom:108.844000pt;}
.y33{bottom:108.920000pt;}
.y1d4{bottom:110.542667pt;}
.y5f{bottom:111.606667pt;}
.y2ed{bottom:112.325333pt;}
.y246{bottom:116.566667pt;}
.y17a{bottom:117.608000pt;}
.y322{bottom:118.861333pt;}
.yf1{bottom:120.218667pt;}
.y12a{bottom:120.654667pt;}
.y2a9{bottom:121.450667pt;}
.y2bc{bottom:122.646667pt;}
.y97{bottom:123.045333pt;}
.y156{bottom:123.444000pt;}
.y21{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.y1d3{bottom:125.154667pt;}
.y28d{bottom:125.581333pt;}
.y2ec{bottom:127.668000pt;}
.y5e{bottom:128.344000pt;}
.y326{bottom:130.152000pt;}
.y1d0{bottom:132.992000pt;}
.y245{bottom:133.304000pt;}
.y321{bottom:134.202667pt;}
.y179{bottom:134.345333pt;}
.yf0{bottom:136.956000pt;}
.y129{bottom:137.392000pt;}
.y2a8{bottom:138.188000pt;}
.y2bb{bottom:139.384000pt;}
.y1a0{bottom:139.456000pt;}
.y1d2{bottom:139.765333pt;}
.y96{bottom:139.782667pt;}
.y155{bottom:140.181333pt;}
.y31{bottom:140.720000pt;}
.y28c{bottom:142.318667pt;}
.y2eb{bottom:143.010667pt;}
.y25d{bottom:143.548000pt;}
.y5d{bottom:145.081333pt;}
.y325{bottom:145.494667pt;}
.y320{bottom:149.545333pt;}
.y244{bottom:150.041333pt;}
.y178{bottom:151.082667pt;}
.y26d{bottom:151.936000pt;}
.yef{bottom:153.693333pt;}
.y19f{bottom:154.068000pt;}
.y128{bottom:154.129333pt;}
.y1d1{bottom:154.377333pt;}
.y2a7{bottom:154.925333pt;}
.y2ba{bottom:156.121333pt;}
.y95{bottom:156.520000pt;}
.y30{bottom:156.621333pt;}
.y154{bottom:156.918667pt;}
.y2ea{bottom:158.353333pt;}
.yf8{bottom:158.910667pt;}
.y28b{bottom:159.056000pt;}
.y324{bottom:160.837333pt;}
.y5c{bottom:161.818667pt;}
.y25c{bottom:162.953333pt;}
.y31f{bottom:164.888000pt;}
.y243{bottom:166.778667pt;}
.yba{bottom:167.085333pt;}
.y177{bottom:167.818667pt;}
.y26c{bottom:168.673333pt;}
.y19e{bottom:168.680000pt;}
.yee{bottom:170.430667pt;}
.y127{bottom:170.866667pt;}
.y2a6{bottom:171.662667pt;}
.y2f{bottom:172.521333pt;}
.y2b9{bottom:172.858667pt;}
.y94{bottom:173.257333pt;}
.y153{bottom:173.656000pt;}
.y2e9{bottom:173.696000pt;}
.ybc{bottom:174.392000pt;}
.y18{bottom:175.052000pt;}
.y200{bottom:175.100000pt;}
.y1cf{bottom:175.392000pt;}
.yf7{bottom:175.648000pt;}
.y25b{bottom:177.565333pt;}
.y5b{bottom:178.556000pt;}
.y28a{bottom:179.778667pt;}
.y31e{bottom:180.230667pt;}
.y1ce{bottom:181.490667pt;}
.yb8{bottom:181.697333pt;}
.y19d{bottom:183.292000pt;}
.y242{bottom:183.516000pt;}
.y176{bottom:184.556000pt;}
.y26b{bottom:185.410667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yed{bottom:187.168000pt;}
.y126{bottom:187.602667pt;}
.y2a5{bottom:188.400000pt;}
.y2e{bottom:188.421333pt;}
.ybb{bottom:189.004000pt;}
.y2e8{bottom:189.038667pt;}
.y2b8{bottom:189.596000pt;}
.y93{bottom:189.994667pt;}
.y152{bottom:190.393333pt;}
.y197{bottom:190.598667pt;}
.y1ff{bottom:191.837333pt;}
.y25a{bottom:192.177333pt;}
.y5a{bottom:195.293333pt;}
.y31d{bottom:195.573333pt;}
.yb9{bottom:196.309333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y19c{bottom:197.904000pt;}
.y241{bottom:200.253333pt;}
.y175{bottom:201.293333pt;}
.y26a{bottom:202.148000pt;}
.yec{bottom:203.905333pt;}
.y2d{bottom:204.322667pt;}
.y125{bottom:204.340000pt;}
.y2e7{bottom:204.381333pt;}
.y2a4{bottom:205.137333pt;}
.y196{bottom:205.209333pt;}
.y2b7{bottom:206.333333pt;}
.y92{bottom:206.732000pt;}
.y259{bottom:206.789333pt;}
.y151{bottom:207.130667pt;}
.yf6{bottom:208.325333pt;}
.y1fe{bottom:208.574667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y31c{bottom:210.916000pt;}
.y1cd{bottom:211.017333pt;}
.y289{bottom:212.012000pt;}
.y59{bottom:212.030667pt;}
.y19b{bottom:212.516000pt;}
.y240{bottom:216.990667pt;}
.yb7{bottom:217.324000pt;}
.y174{bottom:218.030667pt;}
.y269{bottom:218.885333pt;}
.y2e6{bottom:219.722667pt;}
.yeb{bottom:220.641333pt;}
.y124{bottom:221.077333pt;}
.y258{bottom:221.401333pt;}
.y2a3{bottom:221.874667pt;}
.y2b6{bottom:223.070667pt;}
.y91{bottom:223.469333pt;}
.y150{bottom:223.868000pt;}
.yf5{bottom:225.062667pt;}
.y1fd{bottom:225.312000pt;}
.y31b{bottom:226.258667pt;}
.y19a{bottom:227.128000pt;}
.y58{bottom:228.768000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y288{bottom:231.418667pt;}
.yb6{bottom:231.936000pt;}
.y1cc{bottom:232.032000pt;}
.y23f{bottom:233.728000pt;}
.y173{bottom:234.768000pt;}
.y2e5{bottom:235.065333pt;}
.y268{bottom:235.622667pt;}
.y257{bottom:236.013333pt;}
.yea{bottom:237.378667pt;}
.y123{bottom:237.814667pt;}
.y2a2{bottom:238.612000pt;}
.yb3{bottom:239.241333pt;}
.y2b5{bottom:239.808000pt;}
.y90{bottom:240.206667pt;}
.y14f{bottom:240.605333pt;}
.y31a{bottom:241.601333pt;}
.y199{bottom:241.740000pt;}
.y1fc{bottom:242.049333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y57{bottom:245.505333pt;}
.y287{bottom:246.030667pt;}
.yb5{bottom:246.546667pt;}
.y2e4{bottom:250.408000pt;}
.y23e{bottom:250.465333pt;}
.y256{bottom:250.625333pt;}
.y172{bottom:251.505333pt;}
.y267{bottom:252.360000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ye9{bottom:254.116000pt;}
.y122{bottom:254.552000pt;}
.y2a1{bottom:255.349333pt;}
.y198{bottom:256.352000pt;}
.y2b4{bottom:256.545333pt;}
.y8f{bottom:256.944000pt;}
.y14e{bottom:257.341333pt;}
.yf4{bottom:257.740000pt;}
.y1fb{bottom:258.786667pt;}
.y286{bottom:260.642667pt;}
.yb4{bottom:261.158667pt;}
.y56{bottom:262.242667pt;}
.y1cb{bottom:262.794667pt;}
.y2c{bottom:264.148000pt;}
.y2e3{bottom:265.750667pt;}
.y23d{bottom:267.202667pt;}
.y171{bottom:268.242667pt;}
.y121{bottom:271.289333pt;}
.y255{bottom:271.638667pt;}
.y2a0{bottom:272.086667pt;}
.y319{bottom:272.285333pt;}
.y2b3{bottom:273.282667pt;}
.y8e{bottom:273.681333pt;}
.y14d{bottom:274.078667pt;}
.yf3{bottom:274.477333pt;}
.ye8{bottom:274.838667pt;}
.y285{bottom:275.253333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y55{bottom:278.980000pt;}
.y2b{bottom:280.048000pt;}
.y2e2{bottom:281.093333pt;}
.yb2{bottom:282.173333pt;}
.y266{bottom:282.196000pt;}
.y23c{bottom:283.940000pt;}
.y170{bottom:284.980000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y318{bottom:287.628000pt;}
.y120{bottom:288.026667pt;}
.y18c{bottom:288.266667pt;}
.y29f{bottom:288.824000pt;}
.y284{bottom:289.865333pt;}
.y2b2{bottom:290.020000pt;}
.y8d{bottom:290.417333pt;}
.y195{bottom:290.649333pt;}
.y14c{bottom:290.816000pt;}
.y54{bottom:295.717333pt;}
.y1ca{bottom:295.776000pt;}
.y2a{bottom:295.948000pt;}
.y2e1{bottom:296.436000pt;}
.yb1{bottom:296.785333pt;}
.y23b{bottom:300.677333pt;}
.y16f{bottom:301.717333pt;}
.y1fa{bottom:301.853333pt;}
.y254{bottom:302.402667pt;}
.y18b{bottom:302.878667pt;}
.y317{bottom:302.970667pt;}
.yad{bottom:304.090667pt;}
.y283{bottom:304.477333pt;}
.ye7{bottom:304.726667pt;}
.y11f{bottom:304.764000pt;}
.y264{bottom:304.789333pt;}
.y194{bottom:305.261333pt;}
.y29e{bottom:305.561333pt;}
.y2b1{bottom:306.757333pt;}
.y8c{bottom:307.154667pt;}
.y14b{bottom:307.553333pt;}
.yf{bottom:309.452000pt;}
.y180{bottom:310.617333pt;}
.yb0{bottom:311.397333pt;}
.y2e0{bottom:311.778667pt;}
.y29{bottom:311.849333pt;}
.y53{bottom:312.454667pt;}
.y1c9{bottom:312.513333pt;}
.y1f9{bottom:316.465333pt;}
.y23a{bottom:317.414667pt;}
.y18a{bottom:317.490667pt;}
.y316{bottom:318.313333pt;}
.y16e{bottom:318.454667pt;}
.yac{bottom:318.702667pt;}
.y282{bottom:319.089333pt;}
.y193{bottom:319.873333pt;}
.ye6{bottom:321.464000pt;}
.y11e{bottom:321.501333pt;}
.y29d{bottom:322.298667pt;}
.y2b0{bottom:323.494667pt;}
.y8b{bottom:323.892000pt;}
.y14a{bottom:324.290667pt;}
.y17f{bottom:325.229333pt;}
.yaf{bottom:326.009333pt;}
.y2df{bottom:327.121333pt;}
.y52{bottom:329.192000pt;}
.y1c8{bottom:329.250667pt;}
.y189{bottom:332.102667pt;}
.y315{bottom:333.656000pt;}
.y281{bottom:333.701333pt;}
.y239{bottom:334.152000pt;}
.y192{bottom:334.484000pt;}
.y16d{bottom:335.192000pt;}
.y253{bottom:335.384000pt;}
.y28{bottom:335.720000pt;}
.y1f8{bottom:337.480000pt;}
.ye5{bottom:338.201333pt;}
.y11d{bottom:338.238667pt;}
.y29c{bottom:339.036000pt;}
.y17e{bottom:339.841333pt;}
.y2af{bottom:340.232000pt;}
.yae{bottom:340.620000pt;}
.y8a{bottom:340.629333pt;}
.y149{bottom:341.028000pt;}
.y18d{bottom:341.790667pt;}
.y2de{bottom:342.462667pt;}
.ye{bottom:343.809333pt;}
.y51{bottom:345.929333pt;}
.y1c7{bottom:345.988000pt;}
.y188{bottom:346.714667pt;}
.y280{bottom:348.313333pt;}
.y314{bottom:348.998667pt;}
.y191{bottom:349.096000pt;}
.y238{bottom:350.889333pt;}
.y27{bottom:351.620000pt;}
.y16c{bottom:351.929333pt;}
.y252{bottom:352.121333pt;}
.ye4{bottom:354.938667pt;}
.y11c{bottom:354.976000pt;}
.y29b{bottom:355.773333pt;}
.y2ae{bottom:356.968000pt;}
.y89{bottom:357.366667pt;}
.y148{bottom:357.765333pt;}
.y2dd{bottom:357.805333pt;}
.y1f7{bottom:358.493333pt;}
.y187{bottom:361.326667pt;}
.yab{bottom:361.634667pt;}
.y50{bottom:362.666667pt;}
.yd{bottom:362.706666pt;}
.y1c6{bottom:362.725333pt;}
.y27f{bottom:362.925333pt;}
.y190{bottom:363.708000pt;}
.y313{bottom:364.341333pt;}
.y26{bottom:367.520000pt;}
.y237{bottom:367.626667pt;}
.y16b{bottom:368.666667pt;}
.y251{bottom:368.858667pt;}
.ye3{bottom:371.676000pt;}
.y11b{bottom:371.713333pt;}
.y29a{bottom:372.510667pt;}
.y2dc{bottom:373.148000pt;}
.y2ad{bottom:373.705333pt;}
.y88{bottom:374.104000pt;}
.y147{bottom:374.502667pt;}
.y18f{bottom:378.320000pt;}
.y4f{bottom:379.404000pt;}
.y1c5{bottom:379.462667pt;}
.y1f6{bottom:379.508000pt;}
.y312{bottom:379.684000pt;}
.y25{bottom:383.421333pt;}
.y27d{bottom:383.938667pt;}
.y16a{bottom:385.404000pt;}
.y250{bottom:385.596000pt;}
.ye2{bottom:388.413333pt;}
.y11a{bottom:388.450667pt;}
.y2db{bottom:388.490667pt;}
.y299{bottom:389.248000pt;}
.yaa{bottom:389.741333pt;}
.y2ac{bottom:390.442667pt;}
.y87{bottom:390.841333pt;}
.y146{bottom:391.240000pt;}
.y27c{bottom:391.245333pt;}
.y18e{bottom:392.932000pt;}
.y311{bottom:395.025333pt;}
.y4e{bottom:396.141333pt;}
.y1c4{bottom:396.200000pt;}
.y27e{bottom:398.550667pt;}
.y24{bottom:399.321333pt;}
.y1f5{bottom:400.521333pt;}
.y169{bottom:402.141333pt;}
.y236{bottom:403.236000pt;}
.y2da{bottom:403.833333pt;}
.ye1{bottom:405.150667pt;}
.y119{bottom:405.188000pt;}
.y298{bottom:405.985333pt;}
.y86{bottom:407.578667pt;}
.y145{bottom:407.977333pt;}
.y310{bottom:410.368000pt;}
.y2ab{bottom:411.165333pt;}
.y1c3{bottom:412.937333pt;}
.y1f4{bottom:415.133333pt;}
.y23{bottom:415.221333pt;}
.y4d{bottom:416.862667pt;}
.y168{bottom:418.878667pt;}
.y2d9{bottom:419.176000pt;}
.y24f{bottom:421.269333pt;}
.ye0{bottom:421.888000pt;}
.y235{bottom:422.318667pt;}
.ya9{bottom:422.722667pt;}
.y85{bottom:424.316000pt;}
.y144{bottom:424.714667pt;}
.y30f{bottom:425.710667pt;}
.y186{bottom:427.229333pt;}
.y27b{bottom:429.313333pt;}
.y1c2{bottom:429.674667pt;}
.y22{bottom:431.122667pt;}
.y24e{bottom:433.889333pt;}
.y2d8{bottom:434.518667pt;}
.y167{bottom:435.616000pt;}
.y1f3{bottom:436.148000pt;}
.y234{bottom:436.930667pt;}
.y118{bottom:437.865333pt;}
.ydf{bottom:438.625333pt;}
.ya8{bottom:439.460000pt;}
.y84{bottom:441.053333pt;}
.y143{bottom:441.452000pt;}
.y185{bottom:441.841333pt;}
.y22f{bottom:443.145333pt;}
.y24d{bottom:446.508000pt;}
.yc{bottom:446.990669pt;}
.y2d7{bottom:449.861333pt;}
.y1c1{bottom:450.396000pt;}
.y231{bottom:450.517333pt;}
.y233{bottom:451.542667pt;}
.y117{bottom:454.602667pt;}
.yde{bottom:455.362667pt;}
.ya7{bottom:456.197333pt;}
.y166{bottom:456.338667pt;}
.y30e{bottom:456.396000pt;}
.y182{bottom:456.453333pt;}
.y1f2{bottom:457.161333pt;}
.y22e{bottom:457.757333pt;}
.y83{bottom:457.790667pt;}
.y142{bottom:458.189333pt;}
.y27a{bottom:461.644000pt;}
.yb{bottom:462.990669pt;}
.y2d6{bottom:465.204000pt;}
.y24c{bottom:465.914667pt;}
.y232{bottom:466.154667pt;}
.y181{bottom:471.065333pt;}
.y30d{bottom:471.738667pt;}
.y1f1{bottom:471.773333pt;}
.ydd{bottom:472.100000pt;}
.ya6{bottom:472.934667pt;}
.y82{bottom:474.528000pt;}
.y141{bottom:474.926667pt;}
.y279{bottom:478.381333pt;}
.ya{bottom:478.990666pt;}
.y2d5{bottom:480.545333pt;}
.y230{bottom:480.766667pt;}
.y165{bottom:483.385333pt;}
.y4c{bottom:483.662667pt;}
.y184{bottom:485.677333pt;}
.y24b{bottom:486.929333pt;}
.y30c{bottom:487.081333pt;}
.y116{bottom:487.280000pt;}
.ydc{bottom:488.837333pt;}
.ya5{bottom:489.672000pt;}
.y81{bottom:491.265333pt;}
.y140{bottom:491.664000pt;}
.y1f0{bottom:492.786667pt;}
.y9{bottom:494.990666pt;}
.y278{bottom:495.118667pt;}
.y2d4{bottom:495.888000pt;}
.y1c0{bottom:497.316000pt;}
.y1ef{bottom:500.093333pt;}
.y183{bottom:500.289333pt;}
.y22d{bottom:501.780000pt;}
.y30b{bottom:502.424000pt;}
.y115{bottom:504.017333pt;}
.ydb{bottom:505.574667pt;}
.ya4{bottom:506.409333pt;}
.y80{bottom:508.002667pt;}
.y24a{bottom:508.116000pt;}
.y13f{bottom:508.401333pt;}
.y2d3{bottom:511.230667pt;}
.y277{bottom:511.856000pt;}
.y1bf{bottom:511.928000pt;}
.y22c{bottom:516.392000pt;}
.y4b{bottom:516.898667pt;}
.y30a{bottom:517.766667pt;}
.y114{bottom:520.754667pt;}
.yda{bottom:522.312000pt;}
.y22a{bottom:522.673333pt;}
.ya3{bottom:523.145333pt;}
.y228{bottom:524.048000pt;}
.y7f{bottom:524.740000pt;}
.y13e{bottom:525.138667pt;}
.y1bc{bottom:526.540000pt;}
.y2d2{bottom:526.573333pt;}
.y17d{bottom:527.944000pt;}
.y276{bottom:528.593333pt;}
.y22b{bottom:531.004000pt;}
.y309{bottom:533.108000pt;}
.y4a{bottom:534.193333pt;}
.y113{bottom:537.492000pt;}
.y1ee{bottom:538.161333pt;}
.yd9{bottom:539.049333pt;}
.y249{bottom:539.052000pt;}
.ya2{bottom:539.882667pt;}
.y1bb{bottom:541.152000pt;}
.y7e{bottom:541.477333pt;}
.y13d{bottom:541.876000pt;}
.y2d1{bottom:541.916000pt;}
.y275{bottom:545.330667pt;}
.y229{bottom:545.616000pt;}
.y308{bottom:548.450667pt;}
.y49{bottom:551.489333pt;}
.y112{bottom:554.229333pt;}
.y1be{bottom:555.764000pt;}
.yd8{bottom:555.786667pt;}
.ya1{bottom:556.620000pt;}
.y2d0{bottom:557.258667pt;}
.y7d{bottom:558.214667pt;}
.y13c{bottom:558.613333pt;}
.y17c{bottom:558.708000pt;}
.y274{bottom:562.068000pt;}
.y307{bottom:563.793333pt;}
.y227{bottom:566.630667pt;}
.y48{bottom:568.784000pt;}
.y248{bottom:569.430667pt;}
.y1bd{bottom:570.376000pt;}
.y111{bottom:570.966667pt;}
.y1ed{bottom:571.144000pt;}
.yd7{bottom:572.524000pt;}
.y2cf{bottom:572.601333pt;}
.ya0{bottom:573.357333pt;}
.y8{bottom:573.786667pt;}
.y7c{bottom:574.952000pt;}
.y13b{bottom:575.350667pt;}
.y273{bottom:578.805333pt;}
.y306{bottom:579.136000pt;}
.y226{bottom:581.242667pt;}
.y47{bottom:586.078667pt;}
.y110{bottom:587.704000pt;}
.y1ec{bottom:587.881333pt;}
.y2ce{bottom:587.944000pt;}
.yd6{bottom:589.260000pt;}
.y9f{bottom:590.094667pt;}
.y7b{bottom:591.689333pt;}
.y13a{bottom:592.088000pt;}
.y7{bottom:592.685334pt;}
.y305{bottom:594.478667pt;}
.y223{bottom:594.829333pt;}
.y225{bottom:595.853333pt;}
.y221{bottom:596.204000pt;}
.y272{bottom:599.526667pt;}
.y2cd{bottom:603.285333pt;}
.y46{bottom:603.374667pt;}
.y10f{bottom:604.441333pt;}
.y1eb{bottom:604.618667pt;}
.y1ba{bottom:604.673333pt;}
.yd5{bottom:605.997333pt;}
.y9e{bottom:606.832000pt;}
.y7a{bottom:608.426667pt;}
.y139{bottom:608.825333pt;}
.y304{bottom:609.821333pt;}
.y224{bottom:610.465333pt;}
.y2cc{bottom:618.628000pt;}
.y1b9{bottom:619.285333pt;}
.y45{bottom:620.669333pt;}
.y10e{bottom:621.178667pt;}
.y1ea{bottom:621.354667pt;}
.yd4{bottom:622.734667pt;}
.y9d{bottom:623.569333pt;}
.y222{bottom:625.077333pt;}
.y79{bottom:625.164000pt;}
.y138{bottom:625.562667pt;}
.y271{bottom:625.921333pt;}
.y1b8{bottom:633.897333pt;}
.y2cb{bottom:633.970667pt;}
.y10d{bottom:637.916000pt;}
.y44{bottom:637.965333pt;}
.y1e9{bottom:638.092000pt;}
.yd3{bottom:639.472000pt;}
.y9c{bottom:640.306667pt;}
.y303{bottom:640.506667pt;}
.y78{bottom:641.901333pt;}
.y137{bottom:642.300000pt;}
.y6{bottom:645.598667pt;}
.y26f{bottom:645.858667pt;}
.y220{bottom:646.092000pt;}
.y1b7{bottom:648.508000pt;}
.y2ca{bottom:653.298667pt;}
.y10c{bottom:654.653333pt;}
.y1e8{bottom:654.829333pt;}
.y43{bottom:655.260000pt;}
.y1b2{bottom:655.814667pt;}
.y302{bottom:655.848000pt;}
.yd2{bottom:656.209333pt;}
.y9b{bottom:657.044000pt;}
.y77{bottom:658.638667pt;}
.y136{bottom:659.037333pt;}
.y21f{bottom:660.704000pt;}
.y1b6{bottom:663.120000pt;}
.y21d{bottom:666.984000pt;}
.y21b{bottom:668.358667pt;}
.y3{bottom:668.977329pt;}
.y301{bottom:671.190667pt;}
.y10b{bottom:671.390667pt;}
.y42{bottom:672.554667pt;}
.yd1{bottom:672.946667pt;}
.y297{bottom:673.781333pt;}
.y21e{bottom:675.314667pt;}
.y76{bottom:675.376000pt;}
.y1e7{bottom:675.552000pt;}
.y135{bottom:675.774667pt;}
.y1b5{bottom:677.732000pt;}
.y9a{bottom:677.766667pt;}
.y2c9{bottom:683.186667pt;}
.y300{bottom:686.533333pt;}
.y10a{bottom:688.128000pt;}
.yd0{bottom:689.684000pt;}
.y41{bottom:689.850667pt;}
.y21c{bottom:689.926667pt;}
.y296{bottom:690.518667pt;}
.y75{bottom:692.113333pt;}
.y263{bottom:692.276000pt;}
.y1b4{bottom:692.344000pt;}
.y134{bottom:692.512000pt;}
.y1e6{bottom:693.485333pt;}
.y99{bottom:695.700000pt;}
.y164{bottom:700.082667pt;}
.y2ff{bottom:701.876000pt;}
.y109{bottom:704.865333pt;}
.y262{bottom:704.896000pt;}
.ycf{bottom:706.421333pt;}
.y2c8{bottom:706.778667pt;}
.y1b3{bottom:706.956000pt;}
.y40{bottom:707.145333pt;}
.y295{bottom:707.256000pt;}
.y74{bottom:708.850667pt;}
.y133{bottom:709.248000pt;}
.y21a{bottom:710.941333pt;}
.y163{bottom:716.820000pt;}
.y2fe{bottom:717.218667pt;}
.y261{bottom:717.514667pt;}
.y108{bottom:721.602667pt;}
.yce{bottom:723.158667pt;}
.y294{bottom:723.993333pt;}
.y3f{bottom:724.440000pt;}
.y219{bottom:725.553333pt;}
.y73{bottom:725.588000pt;}
.y132{bottom:725.985333pt;}
.y2c7{bottom:730.369333pt;}
.y2fd{bottom:732.561333pt;}
.y214{bottom:733.324000pt;}
.y162{bottom:733.557333pt;}
.y1e5{bottom:733.762667pt;}
.y260{bottom:736.921333pt;}
.y107{bottom:738.340000pt;}
.y216{bottom:739.140000pt;}
.ycd{bottom:739.896000pt;}
.y218{bottom:740.165333pt;}
.y293{bottom:740.730667pt;}
.y1b1{bottom:741.253333pt;}
.y3e{bottom:741.736000pt;}
.y72{bottom:742.324000pt;}
.y131{bottom:742.722667pt;}
.y2fc{bottom:747.904000pt;}
.y213{bottom:747.936000pt;}
.y1e4{bottom:748.374667pt;}
.y161{bottom:750.294667pt;}
.y2c6{bottom:753.961333pt;}
.y217{bottom:754.777333pt;}
.y106{bottom:755.077333pt;}
.y1b0{bottom:755.865333pt;}
.y1e1{bottom:756.030667pt;}
.ycc{bottom:756.633333pt;}
.y292{bottom:757.468000pt;}
.y25f{bottom:758.108000pt;}
.y3d{bottom:759.030667pt;}
.y71{bottom:759.061333pt;}
.y130{bottom:759.460000pt;}
.y1e3{bottom:762.986667pt;}
.y2fb{bottom:763.246667pt;}
.y160{bottom:767.032000pt;}
.y215{bottom:769.389333pt;}
.y2c5{bottom:769.582667pt;}
.y1af{bottom:770.477333pt;}
.y105{bottom:771.814667pt;}
.ycb{bottom:773.370667pt;}
.y70{bottom:775.798667pt;}
.y12f{bottom:776.197333pt;}
.y3c{bottom:776.326667pt;}
.y1e2{bottom:777.598667pt;}
.y1ab{bottom:777.782667pt;}
.y291{bottom:778.190667pt;}
.y2fa{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y15f{bottom:783.769333pt;}
.y1ae{bottom:785.089333pt;}
.y2c4{bottom:785.204000pt;}
.y104{bottom:788.552000pt;}
.y25e{bottom:789.044000pt;}
.yca{bottom:790.108000pt;}
.y212{bottom:790.402667pt;}
.y6f{bottom:792.536000pt;}
.y12e{bottom:792.934667pt;}
.y3b{bottom:793.621333pt;}
.y2f9{bottom:793.930667pt;}
.y290{bottom:796.122667pt;}
.y208{bottom:797.088000pt;}
.y1e0{bottom:798.612000pt;}
.y1ad{bottom:799.701333pt;}
.y15e{bottom:800.506667pt;}
.y211{bottom:805.014667pt;}
.y103{bottom:805.289333pt;}
.y1df{bottom:806.450667pt;}
.yc9{bottom:806.845333pt;}
.y2c3{bottom:808.796000pt;}
.y6e{bottom:809.273333pt;}
.y207{bottom:811.700000pt;}
.y12d{bottom:813.657333pt;}
.y1ac{bottom:814.313333pt;}
.y15d{bottom:817.244000pt;}
.y20f{bottom:818.601333pt;}
.y210{bottom:819.626667pt;}
.y20e{bottom:820.158667pt;}
.y102{bottom:822.025333pt;}
.yc8{bottom:823.582667pt;}
.y2f8{bottom:824.616000pt;}
.y6d{bottom:826.010667pt;}
.y206{bottom:826.312000pt;}
.y3a{bottom:827.920000pt;}
.y2c2{bottom:832.386667pt;}
.y15c{bottom:833.981333pt;}
.y1de{bottom:834.238667pt;}
.y101{bottom:838.762667pt;}
.y2f7{bottom:839.958667pt;}
.yc7{bottom:840.320000pt;}
.y205{bottom:840.924000pt;}
.y39{bottom:842.265333pt;}
.y6c{bottom:842.748000pt;}
.y12c{bottom:843.545333pt;}
.y2c1{bottom:848.009333pt;}
.y1a8{bottom:848.610667pt;}
.y1dd{bottom:848.850667pt;}
.y15b{bottom:850.718667pt;}
.y26e{bottom:850.781333pt;}
.y2f6{bottom:855.301333pt;}
.y100{bottom:855.500000pt;}
.y1da{bottom:856.688000pt;}
.y1{bottom:859.312000pt;}
.y6b{bottom:859.485333pt;}
.y12b{bottom:860.282667pt;}
.y1a7{bottom:863.222667pt;}
.y1dc{bottom:863.461333pt;}
.y2c0{bottom:863.630667pt;}
.y20d{bottom:869.864000pt;}
.y2f5{bottom:870.644000pt;}
.y15a{bottom:871.441333pt;}
.yff{bottom:872.237333pt;}
.y6a{bottom:876.222667pt;}
.y1a6{bottom:877.834667pt;}
.y1db{bottom:878.073333pt;}
.y2bf{bottom:879.252000pt;}
.yc5{bottom:880.730667pt;}
.y20c{bottom:884.476000pt;}
.y20a{bottom:884.941333pt;}
.y1aa{bottom:885.140000pt;}
.y38{bottom:885.836000pt;}
.y2f4{bottom:885.986667pt;}
.yc4{bottom:888.036000pt;}
.yfe{bottom:888.974667pt;}
.y159{bottom:889.373333pt;}
.y20b{bottom:890.757333pt;}
.y1a2{bottom:892.446667pt;}
.y69{bottom:892.960000pt;}
.y2be{bottom:894.873333pt;}
.yc6{bottom:895.342667pt;}
.y1d9{bottom:899.088000pt;}
.y209{bottom:899.553333pt;}
.y1a9{bottom:899.752000pt;}
.y2f3{bottom:901.329333pt;}
.yfd{bottom:905.712000pt;}
.y1a5{bottom:907.057333pt;}
.y68{bottom:909.697333pt;}
.y1d8{bottom:913.700000pt;}
.yc3{bottom:916.356000pt;}
.y2f2{bottom:916.670667pt;}
.y1d5{bottom:919.798667pt;}
.y37{bottom:921.320000pt;}
.y1a4{bottom:921.669333pt;}
.yfc{bottom:922.449333pt;}
.yc0{bottom:923.662667pt;}
.y67{bottom:926.434667pt;}
.y158{bottom:927.232000pt;}
.y1d7{bottom:928.312000pt;}
.yc2{bottom:930.968000pt;}
.y2f1{bottom:932.013333pt;}
.y203{bottom:934.713333pt;}
.y1a3{bottom:936.281333pt;}
.ybf{bottom:938.274667pt;}
.yfb{bottom:939.186667pt;}
.y202{bottom:942.020000pt;}
.y1d6{bottom:942.924000pt;}
.y66{bottom:943.172000pt;}
.y157{bottom:943.969333pt;}
.yc1{bottom:945.580000pt;}
.y36{bottom:946.425333pt;}
.y2f0{bottom:947.356000pt;}
.y201{bottom:949.325333pt;}
.yfa{bottom:955.924000pt;}
.y204{bottom:956.632000pt;}
.y65{bottom:959.909333pt;}
.y2ef{bottom:962.698667pt;}
.y1a1{bottom:963.937333pt;}
.ybe{bottom:966.594667pt;}
.y35{bottom:971.530667pt;}
.yf9{bottom:972.661333pt;}
.y64{bottom:976.646667pt;}
.y2ee{bottom:978.041333pt;}
.y63{bottom:993.384000pt;}
.ybd{bottom:994.700000pt;}
.y62{bottom:1046.810667pt;}
.h20{height:25.462789pt;}
.h7{height:28.560000pt;}
.h9{height:32.284045pt;}
.h10{height:34.574438pt;}
.h11{height:35.052646pt;}
.hd{height:36.896250pt;}
.hc{height:38.415786pt;}
.ha{height:38.947124pt;}
.h6{height:40.800000pt;}
.he{height:41.508454pt;}
.h3{height:42.840000pt;}
.h1f{height:42.867188pt;}
.h1a{height:43.557639pt;}
.hf{height:46.120196pt;}
.h1d{height:47.725469pt;}
.h2{height:48.960000pt;}
.h21{height:52.985788pt;}
.h19{height:54.336794pt;}
.h1b{height:54.342127pt;}
.h13{height:58.872196pt;}
.h16{height:63.795772pt;}
.h17{height:63.801105pt;}
.h15{height:68.601788pt;}
.hb{height:69.148877pt;}
.h5{height:69.360000pt;}
.h18{height:70.729788pt;}
.h12{height:70.735121pt;}
.h14{height:75.561788pt;}
.h4{height:105.826671pt;}
.h1e{height:182.040000pt;}
.h1c{height:363.237333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:507.264000pt;}
.w2{width:566.928019pt;}
.w4{width:644.112400pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x76{left:1.661333pt;}
.x5{left:47.621333pt;}
.x5b{left:55.592000pt;}
.x2b{left:57.046667pt;}
.x53{left:59.721333pt;}
.x4f{left:63.977333pt;}
.x2a{left:65.606667pt;}
.x55{left:66.570667pt;}
.x51{left:68.424000pt;}
.x75{left:71.218667pt;}
.x5c{left:72.790667pt;}
.x52{left:73.924000pt;}
.x81{left:75.914667pt;}
.x54{left:77.097333pt;}
.x50{left:78.353333pt;}
.x4e{left:79.626667pt;}
.x2c{left:81.614667pt;}
.x4c{left:82.716000pt;}
.x6c{left:84.456000pt;}
.x71{left:87.560000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x47{left:96.522667pt;}
.x67{left:103.006667pt;}
.x43{left:104.401333pt;}
.x3a{left:109.129333pt;}
.x65{left:110.473333pt;}
.x66{left:113.413333pt;}
.x3c{left:115.980000pt;}
.x37{left:117.832000pt;}
.x39{left:123.332000pt;}
.x3b{left:126.505333pt;}
.x80{left:128.321333pt;}
.x29{left:129.470667pt;}
.x61{left:143.854667pt;}
.x77{left:148.184000pt;}
.x6a{left:152.133333pt;}
.x63{left:158.464000pt;}
.x5d{left:159.504000pt;}
.x5e{left:161.656000pt;}
.x36{left:166.997333pt;}
.x72{left:171.334667pt;}
.x4{left:180.874667pt;}
.x2d{left:182.646667pt;}
.x2e{left:184.798667pt;}
.x82{left:203.132000pt;}
.x6b{left:213.986667pt;}
.x7d{left:216.294667pt;}
.x7{left:220.912000pt;}
.x6{left:221.858667pt;}
.x74{left:227.353333pt;}
.x7e{left:231.877333pt;}
.x3d{left:233.181333pt;}
.x22{left:235.838667pt;}
.x12{left:237.410667pt;}
.x48{left:239.170667pt;}
.xa{left:240.572000pt;}
.x1d{left:245.874667pt;}
.x8{left:250.204000pt;}
.x41{left:251.509333pt;}
.xb{left:252.552000pt;}
.x9{left:255.785333pt;}
.x68{left:256.717333pt;}
.x46{left:258.484000pt;}
.x1c{left:259.408000pt;}
.x56{left:266.954667pt;}
.x62{left:271.593333pt;}
.x64{left:272.597333pt;}
.x5f{left:273.572000pt;}
.x2f{left:275.284000pt;}
.x42{left:276.280000pt;}
.x40{left:279.262667pt;}
.x44{left:283.249333pt;}
.x45{left:287.816000pt;}
.x26{left:289.321333pt;}
.x3f{left:292.789333pt;}
.x49{left:296.609333pt;}
.x30{left:299.456000pt;}
.x4b{left:302.938667pt;}
.x4a{left:305.928000pt;}
.x3e{left:314.392000pt;}
.x6d{left:320.893333pt;}
.x7f{left:325.917333pt;}
.x6e{left:337.569333pt;}
.x57{left:342.046667pt;}
.x58{left:344.366667pt;}
.x15{left:346.852000pt;}
.x23{left:347.957333pt;}
.x18{left:349.745333pt;}
.x13{left:350.833333pt;}
.xc{left:352.560000pt;}
.xf{left:358.652000pt;}
.x27{left:366.497333pt;}
.x14{left:368.101333pt;}
.x1f{left:369.446667pt;}
.xd{left:370.534667pt;}
.x1e{left:373.272000pt;}
.xe{left:384.324000pt;}
.x19{left:402.914667pt;}
.x3{left:404.408000pt;}
.x59{left:414.769333pt;}
.x16{left:417.320000pt;}
.x5a{left:425.720000pt;}
.x10{left:436.657333pt;}
.x4d{left:509.662667pt;}
.x78{left:513.120000pt;}
.x6f{left:524.428000pt;}
.x70{left:537.798667pt;}
.x60{left:566.866667pt;}
.x79{left:597.508000pt;}
.x7a{left:600.604000pt;}
.x11{left:627.842667pt;}
.x35{left:629.344000pt;}
.x1a{left:631.566667pt;}
.x31{left:634.120000pt;}
.x32{left:641.144000pt;}
.x73{left:642.863099pt;}
.x28{left:645.305333pt;}
.x38{left:648.765333pt;}
.x21{left:649.790667pt;}
.x25{left:652.761333pt;}
.x24{left:653.808000pt;}
.x17{left:654.770667pt;}
.x34{left:655.705333pt;}
.x20{left:656.874667pt;}
.x1b{left:661.460000pt;}
.x33{left:666.762667pt;}
.x7c{left:690.742667pt;}
.x7b{left:692.954667pt;}
.x69{left:695.149333pt;}
}




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