
    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_8c172469bff3cfe478f8278c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_4b2261bbb22a16cc202ac1fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_37d9409b87c1e7d38761769a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_e47d79c4708b3889747db84e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_162fc3cb4dd0ab33cc5be183.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_ba3e4140bc0d2310e579386c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_8e03743ea7d87c3bc22fba08.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_3699e5727e6da85a53015e77.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_16049452314555be368cdb71.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_cbdb91b7d051e89246f27a2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142090;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_d49f9e384503f607a8f3fb48.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.831000;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_042aa7b8a1ab8092511b9708.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901855;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_b36123d22d8cc395da60206c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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;}
.m17{transform:matrix(0.175414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175414,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.195302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195302,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.196216,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.196216,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.196216,0.000000,0.000001,0.250000,0,0);}
.m27{transform:matrix(0.199439,0.000001,-0.066473,0.241001,0,0);-ms-transform:matrix(0.199439,0.000001,-0.066473,0.241001,0,0);-webkit-transform:matrix(0.199439,0.000001,-0.066473,0.241001,0,0);}
.m2a{transform:matrix(0.199439,0.000001,-0.066473,0.241001,0,0);-ms-transform:matrix(0.199439,0.000001,-0.066473,0.241001,0,0);-webkit-transform:matrix(0.199439,0.000001,-0.066473,0.241001,0,0);}
.m2c{transform:matrix(0.199439,0.000001,-0.066472,0.241001,0,0);-ms-transform:matrix(0.199439,0.000001,-0.066472,0.241001,0,0);-webkit-transform:matrix(0.199439,0.000001,-0.066472,0.241001,0,0);}
.m6{transform:matrix(0.200927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200927,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.204488,0.000000,-0.068156,0.240530,0,0);-ms-transform:matrix(0.204488,0.000000,-0.068156,0.240530,0,0);-webkit-transform:matrix(0.204488,0.000000,-0.068156,0.240530,0,0);}
.m1b{transform:matrix(0.205794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205794,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.205811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205811,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.209046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209046,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.210874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210874,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.212453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212453,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.213399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213399,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.213659,0.000000,-0.071212,0.239643,0,0);-ms-transform:matrix(0.213659,0.000000,-0.071212,0.239643,0,0);-webkit-transform:matrix(0.213659,0.000000,-0.071212,0.239643,0,0);}
.m42{transform:matrix(0.213864,0.000000,-0.071281,0.239623,0,0);-ms-transform:matrix(0.213864,0.000000,-0.071281,0.239623,0,0);-webkit-transform:matrix(0.213864,0.000000,-0.071281,0.239623,0,0);}
.m3c{transform:matrix(0.214693,0.000000,-0.071557,0.239540,0,0);-ms-transform:matrix(0.214693,0.000000,-0.071557,0.239540,0,0);-webkit-transform:matrix(0.214693,0.000000,-0.071557,0.239540,0,0);}
.m25{transform:matrix(0.216141,0.000000,-0.072040,0.239396,0,0);-ms-transform:matrix(0.216141,0.000000,-0.072040,0.239396,0,0);-webkit-transform:matrix(0.216141,0.000000,-0.072040,0.239396,0,0);}
.mb{transform:matrix(0.216154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216154,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.216186,0.000000,-0.072055,0.239391,0,0);-ms-transform:matrix(0.216186,0.000000,-0.072055,0.239391,0,0);-webkit-transform:matrix(0.216186,0.000000,-0.072055,0.239391,0,0);}
.m3e{transform:matrix(0.217673,0.000000,-0.072550,0.239241,0,0);-ms-transform:matrix(0.217673,0.000000,-0.072550,0.239241,0,0);-webkit-transform:matrix(0.217673,0.000000,-0.072550,0.239241,0,0);}
.m2e{transform:matrix(0.218015,0.000000,-0.072664,0.239207,0,0);-ms-transform:matrix(0.218015,0.000000,-0.072664,0.239207,0,0);-webkit-transform:matrix(0.218015,0.000000,-0.072664,0.239207,0,0);}
.me{transform:matrix(0.219066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219066,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.220397,0.000000,-0.073458,0.238964,0,0);-ms-transform:matrix(0.220397,0.000000,-0.073458,0.238964,0,0);-webkit-transform:matrix(0.220397,0.000000,-0.073458,0.238964,0,0);}
.ma{transform:matrix(0.220848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220848,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.223126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223126,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.224068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224068,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.224179,0.000000,-0.074719,0.238573,0,0);-ms-transform:matrix(0.224179,0.000000,-0.074719,0.238573,0,0);-webkit-transform:matrix(0.224179,0.000000,-0.074719,0.238573,0,0);}
.m1{transform:matrix(0.224358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224358,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224854,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.225766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225766,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.226017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226017,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.226396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226396,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.226498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226498,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.227462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227462,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.227852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227852,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.228326,0.000000,-0.076101,0.238136,0,0);-ms-transform:matrix(0.228326,0.000000,-0.076101,0.238136,0,0);-webkit-transform:matrix(0.228326,0.000000,-0.076101,0.238136,0,0);}
.m36{transform:matrix(0.229418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229418,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.231191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231191,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.234064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234064,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.234916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234916,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.239701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239701,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.242718,0.000000,-0.080898,0.236549,0,0);-ms-transform:matrix(0.242718,0.000000,-0.080898,0.236549,0,0);-webkit-transform:matrix(0.242718,0.000000,-0.080898,0.236549,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);}
.m13{transform:matrix(0.252502,0.000000,-0.084159,0.235409,0,0);-ms-transform:matrix(0.252502,0.000000,-0.084159,0.235409,0,0);-webkit-transform:matrix(0.252502,0.000000,-0.084159,0.235409,0,0);}
.m37{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254181,0.000000,-0.084718,0.235208,0,0);-ms-transform:matrix(0.254181,0.000000,-0.084718,0.235208,0,0);-webkit-transform:matrix(0.254181,0.000000,-0.084718,0.235208,0,0);}
.m31{transform:matrix(0.256519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256519,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.256946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256946,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.257971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257971,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.259771,0.000000,-0.086581,0.234529,0,0);-ms-transform:matrix(0.259771,0.000000,-0.086581,0.234529,0,0);-webkit-transform:matrix(0.259771,0.000000,-0.086581,0.234529,0,0);}
.m10{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.266096,0.000000,-0.088689,0.233740,0,0);-ms-transform:matrix(0.266096,0.000000,-0.088689,0.233740,0,0);-webkit-transform:matrix(0.266096,0.000000,-0.088689,0.233740,0,0);}
.m8{transform:matrix(0.268087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268087,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.268152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268152,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.269083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269083,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.275623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275623,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.276907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276907,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.343157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343157,0.000000,0.000000,0.250000,0,0);}
.v12{vertical-align:-77.123867px;}
.vf{vertical-align:-66.962789px;}
.vc{vertical-align:-61.168803px;}
.v10{vertical-align:-56.971096px;}
.v4{vertical-align:-46.517924px;}
.ve{vertical-align:-45.374325px;}
.v1{vertical-align:-27.360000px;}
.v6{vertical-align:-21.280013px;}
.v3{vertical-align:-18.838172px;}
.v5{vertical-align:-17.469432px;}
.va{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:4.907595px;}
.v7{vertical-align:19.566846px;}
.v8{vertical-align:21.329298px;}
.v2{vertical-align:36.483442px;}
.v11{vertical-align:53.654092px;}
.vd{vertical-align:54.829259px;}
.vb{vertical-align:56.624579px;}
.ls2e{letter-spacing:-4.181764px;}
.ls43{letter-spacing:-2.616564px;}
.ls42{letter-spacing:-2.540168px;}
.ls32{letter-spacing:-2.268207px;}
.ls1c{letter-spacing:-2.183779px;}
.ls1a{letter-spacing:-2.119315px;}
.ls18{letter-spacing:-2.029999px;}
.ls21{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.223800px;}
.ls20{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.196565px;}
.ls10{letter-spacing:-0.192547px;}
.ls1d{letter-spacing:-0.188851px;}
.ls17{letter-spacing:-0.175552px;}
.ls46{letter-spacing:-0.154462px;}
.lsf{letter-spacing:-0.075890px;}
.ls1e{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.048402px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.042486px;}
.lsa{letter-spacing:0.122121px;}
.ls28{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls40{letter-spacing:0.269067px;}
.ls19{letter-spacing:0.297691px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.490373px;}
.lse{letter-spacing:0.586876px;}
.ls8{letter-spacing:0.627082px;}
.ls41{letter-spacing:0.668688px;}
.ls3e{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.731383px;}
.ls2d{letter-spacing:1.087110px;}
.ls45{letter-spacing:1.129740px;}
.ls44{letter-spacing:1.133289px;}
.ls31{letter-spacing:1.262492px;}
.ls30{letter-spacing:1.293358px;}
.ls3f{letter-spacing:1.363867px;}
.ls2f{letter-spacing:1.436161px;}
.ls47{letter-spacing:1.450861px;}
.ls3d{letter-spacing:2.387427px;}
.ls14{letter-spacing:2.480060px;}
.ls11{letter-spacing:2.789431px;}
.ls16{letter-spacing:2.880000px;}
.ls24{letter-spacing:6.480000px;}
.ls25{letter-spacing:11.520000px;}
.ls22{letter-spacing:20.722157px;}
.ls7{letter-spacing:22.220014px;}
.ls26{letter-spacing:28.056000px;}
.ls27{letter-spacing:28.080000px;}
.ls2b{letter-spacing:29.520000px;}
.ls38{letter-spacing:30.253781px;}
.ls3a{letter-spacing:31.024107px;}
.ls37{letter-spacing:31.411817px;}
.ls39{letter-spacing:31.558243px;}
.ls3b{letter-spacing:31.641642px;}
.ls12{letter-spacing:32.590709px;}
.ls2{letter-spacing:36.000000px;}
.ls29{letter-spacing:43.920000px;}
.ls2a{letter-spacing:44.640000px;}
.ls48{letter-spacing:54.144000px;}
.ls23{letter-spacing:72.749412px;}
.ls6{letter-spacing:86.994103px;}
.ls1{letter-spacing:103.860000px;}
.ls13{letter-spacing:140.658718px;}
.ls2c{letter-spacing:149.596840px;}
.ls3c{letter-spacing:170.489591px;}
.ls4{letter-spacing:191.411528px;}
.ls5{letter-spacing:237.642654px;}
.ls36{letter-spacing:244.801402px;}
.ls33{letter-spacing:250.552867px;}
.ls34{letter-spacing:318.260219px;}
.ls35{letter-spacing:445.644398px;}
.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;}
}
.ws24{word-spacing:-87.283159px;}
.ws2{word-spacing:-72.000000px;}
.ws2b{word-spacing:-48.829305px;}
.ws1b{word-spacing:-46.624331px;}
.ws27{word-spacing:-45.659796px;}
.ws28{word-spacing:-45.478325px;}
.ws33{word-spacing:-45.401623px;}
.ws3c{word-spacing:-44.892736px;}
.ws45{word-spacing:-44.877306px;}
.ws40{word-spacing:-44.808077px;}
.ws9{word-spacing:-44.661503px;}
.ws2f{word-spacing:-43.703874px;}
.ws43{word-spacing:-43.369944px;}
.ws1a{word-spacing:-43.014490px;}
.ws36{word-spacing:-42.179085px;}
.ws1f{word-spacing:-41.326398px;}
.ws12{word-spacing:-38.416242px;}
.ws1{word-spacing:-23.940000px;}
.ws2a{word-spacing:-21.443022px;}
.ws13{word-spacing:-21.182421px;}
.wsb{word-spacing:-21.180604px;}
.ws5{word-spacing:-20.975270px;}
.ws22{word-spacing:-20.881013px;}
.ws35{word-spacing:-20.821300px;}
.ws2c{word-spacing:-20.789339px;}
.ws32{word-spacing:-20.674692px;}
.ws7{word-spacing:-20.337661px;}
.ws2d{word-spacing:-19.901582px;}
.ws18{word-spacing:-19.587655px;}
.ws3e{word-spacing:-19.526319px;}
.wsd{word-spacing:-19.149616px;}
.wse{word-spacing:-19.073726px;}
.ws1d{word-spacing:-18.818943px;}
.ws20{word-spacing:-18.789491px;}
.ws4{word-spacing:-18.360000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.493735px;}
.ws14{word-spacing:-16.782174px;}
.ws11{word-spacing:-15.463736px;}
.ws31{word-spacing:-12.053732px;}
.ws2e{word-spacing:-11.602995px;}
.ws3d{word-spacing:-11.384209px;}
.wsa{word-spacing:-1.740367px;}
.ws38{word-spacing:-0.076982px;}
.ws3a{word-spacing:-0.076829px;}
.ws42{word-spacing:-0.075646px;}
.ws37{word-spacing:-0.044804px;}
.ws41{word-spacing:-0.044202px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:2.042774px;}
.ws15{word-spacing:2.456831px;}
.ws39{word-spacing:2.463339px;}
.ws3b{word-spacing:2.539582px;}
.ws30{word-spacing:5.834816px;}
.ws44{word-spacing:21.450859px;}
.ws29{word-spacing:41.347775px;}
.ws23{word-spacing:128.298157px;}
.ws1c{word-spacing:211.195376px;}
.wsc{word-spacing:216.687735px;}
.ws16{word-spacing:218.451959px;}
.ws21{word-spacing:220.036605px;}
.ws1e{word-spacing:224.230579px;}
.ws34{word-spacing:257.735236px;}
.ws10{word-spacing:304.831763px;}
.ws25{word-spacing:313.572536px;}
.ws19{word-spacing:368.419066px;}
.ws3f{word-spacing:371.290468px;}
.ws17{word-spacing:389.711897px;}
.ws26{word-spacing:395.113395px;}
.ws8{word-spacing:783.663899px;}
._4d{margin-left:-499.689620px;}
._5d{margin-left:-446.493747px;}
._58{margin-left:-409.580052px;}
._3c{margin-left:-307.760417px;}
._3d{margin-left:-297.560894px;}
._2f{margin-left:-294.124886px;}
._2d{margin-left:-282.649089px;}
._23{margin-left:-280.953695px;}
._2c{margin-left:-278.342225px;}
._4c{margin-left:-270.088482px;}
._20{margin-left:-265.100657px;}
._5b{margin-left:-257.406087px;}
._60{margin-left:-254.410615px;}
._29{margin-left:-251.663399px;}
._59{margin-left:-249.446048px;}
._57{margin-left:-246.899966px;}
._5e{margin-left:-237.198585px;}
._61{margin-left:-235.101872px;}
._5f{margin-left:-232.427531px;}
._5c{margin-left:-231.196898px;}
._2a{margin-left:-225.684066px;}
._21{margin-left:-211.866955px;}
._28{margin-left:-207.067873px;}
._26{margin-left:-201.147668px;}
._25{margin-left:-199.542979px;}
._31{margin-left:-194.593128px;}
._2e{margin-left:-189.969314px;}
._27{margin-left:-182.825757px;}
._46{margin-left:-169.853548px;}
._4e{margin-left:-166.742342px;}
._36{margin-left:-164.906381px;}
._47{margin-left:-161.715743px;}
._4b{margin-left:-160.237254px;}
._22{margin-left:-157.541936px;}
._43{margin-left:-152.538227px;}
._2b{margin-left:-148.822777px;}
._30{margin-left:-141.420744px;}
._44{margin-left:-133.816954px;}
._45{margin-left:-132.678857px;}
._4f{margin-left:-130.629533px;}
._35{margin-left:-125.022836px;}
._5a{margin-left:-120.970486px;}
._50{margin-left:-117.907612px;}
._24{margin-left:-109.976813px;}
._49{margin-left:-107.619180px;}
._4a{margin-left:-97.226149px;}
._55{margin-left:-94.992090px;}
._53{margin-left:-93.572397px;}
._54{margin-left:-92.229100px;}
._56{margin-left:-90.994031px;}
._52{margin-left:-89.765328px;}
._48{margin-left:-61.284017px;}
._51{margin-left:-39.954166px;}
._63{margin-left:-10.044000px;}
._62{margin-left:-8.160000px;}
._66{margin-left:-6.822000px;}
._65{margin-left:-5.700000px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._9{width:2.292000px;}
._1e{width:3.468000px;}
._16{width:4.626000px;}
._15{width:5.670000px;}
._11{width:6.840000px;}
._10{width:7.920000px;}
._1c{width:9.504000px;}
._13{width:11.520000px;}
._17{width:12.540000px;}
._41{width:13.680000px;}
._3e{width:14.832000px;}
._f{width:16.884000px;}
._12{width:19.386000px;}
._19{width:20.808000px;}
._1f{width:23.112000px;}
._64{width:25.056000px;}
._34{width:27.054000px;}
._1b{width:28.080000px;}
._42{width:29.232000px;}
._1a{width:30.816000px;}
._1d{width:31.860000px;}
._32{width:33.552000px;}
._33{width:35.028000px;}
._6{width:36.216000px;}
._14{width:38.160000px;}
._40{width:43.140000px;}
._3f{width:44.280000px;}
._a{width:45.432000px;}
._8{width:48.024000px;}
._7{width:49.320000px;}
._c{width:52.128000px;}
._b{width:53.208000px;}
._18{width:58.824000px;}
._d{width:64.584000px;}
._e{width:65.736000px;}
._37{width:69.420000px;}
._39{width:74.136000px;}
._3a{width:91.362000px;}
._5{width:103.296000px;}
._38{width:253.482000px;}
._3b{width:404.916000px;}
._4{width:1241.976000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs12{font-size:40.796700px;}
.fs21{font-size:42.321500px;}
.fs1c{font-size:43.887183px;}
.fs4d{font-size:44.202277px;}
.fs10{font-size:44.746096px;}
.fs46{font-size:44.804358px;}
.fs48{font-size:44.958424px;}
.fs4a{font-size:45.536837px;}
.fs17{font-size:45.679877px;}
.fs3c{font-size:46.411979px;}
.fs8{font-size:47.222540px;}
.fsb{font-size:47.372362px;}
.fs3f{font-size:48.214929px;}
.fs5{font-size:48.240000px;}
.fs43{font-size:48.498901px;}
.fs14{font-size:49.411840px;}
.fs1a{font-size:49.526281px;}
.fs2f{font-size:50.006733px;}
.fs32{font-size:52.239578px;}
.fs27{font-size:52.319085px;}
.fs38{font-size:52.478194px;}
.fs7{font-size:52.882460px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs11{font-size:69.974940px;}
.fs2{font-size:72.000000px;}
.fs22{font-size:72.532177px;}
.fs20{font-size:75.157964px;}
.fs1d{font-size:75.275771px;}
.fs4e{font-size:75.645768px;}
.fsf{font-size:76.598463px;}
.fs45{font-size:76.828935px;}
.fs47{font-size:76.981727px;}
.fs23{font-size:77.093650px;}
.fs4b{font-size:78.105275px;}
.fsc{font-size:78.251266px;}
.fs18{font-size:78.350620px;}
.fs13{font-size:78.407820px;}
.fs4f{font-size:78.998076px;}
.fs3b{font-size:79.606329px;}
.fs1f{font-size:79.816411px;}
.fs9{font-size:80.975547px;}
.fsa{font-size:81.350643px;}
.fs4c{font-size:81.617627px;}
.fs50{font-size:81.743727px;}
.fs49{font-size:81.771832px;}
.fs25{font-size:82.103344px;}
.fs2b{font-size:82.149777px;}
.fs3a{font-size:82.646511px;}
.fs37{font-size:82.646529px;}
.fs34{font-size:82.646547px;}
.fs40{font-size:82.698767px;}
.fs2e{font-size:82.838478px;}
.fs36{font-size:83.157357px;}
.fs2c{font-size:83.169027px;}
.fs3d{font-size:83.198191px;}
.fs44{font-size:83.285202px;}
.fs3{font-size:84.240000px;}
.fsd{font-size:84.722416px;}
.fs15{font-size:84.729682px;}
.fs19{font-size:84.925921px;}
.fs30{font-size:85.772088px;}
.fs1e{font-size:86.361822px;}
.fs2a{font-size:87.283159px;}
.fs41{font-size:87.401183px;}
.fs2d{font-size:87.771624px;}
.fs35{font-size:88.942269px;}
.fs31{font-size:89.571473px;}
.fs33{font-size:89.626691px;}
.fs28{font-size:89.714923px;}
.fs42{font-size:89.733186px;}
.fs39{font-size:89.987757px;}
.fs6{font-size:90.526672px;}
.fs29{font-size:93.041066px;}
.fs3e{font-size:94.439024px;}
.fs4{font-size:95.760000px;}
.fs26{font-size:97.343127px;}
.fs1b{font-size:99.377305px;}
.fse{font-size:101.171686px;}
.fs24{font-size:103.436648px;}
.fs16{font-size:103.590314px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.347072px;}
.y98{bottom:3.584710px;}
.y5d{bottom:3.708966px;}
.y7b{bottom:3.989862px;}
.y6d{bottom:4.075204px;}
.y87{bottom:4.075268px;}
.y88{bottom:4.075272px;}
.ybb{bottom:4.100862px;}
.y15b{bottom:4.101216px;}
.y52{bottom:4.143988px;}
.y150{bottom:4.152836px;}
.yaa{bottom:4.152867px;}
.yf6{bottom:4.179969px;}
.y102{bottom:4.383305px;}
.y16c{bottom:4.454489px;}
.y125{bottom:4.527169px;}
.y6{bottom:4.536000px;}
.ye1{bottom:4.546194px;}
.y116{bottom:4.546216px;}
.y4b{bottom:4.625656px;}
.y3a{bottom:4.667665px;}
.ydb{bottom:4.833208px;}
.yd6{bottom:4.852487px;}
.y2e{bottom:4.897523px;}
.yfe{bottom:4.897582px;}
.y140{bottom:5.055537px;}
.y141{bottom:5.055540px;}
.y149{bottom:5.055541px;}
.y145{bottom:5.094023px;}
.y13d{bottom:5.094051px;}
.y14b{bottom:5.094055px;}
.y14c{bottom:5.094057px;}
.y48{bottom:5.258946px;}
.ycb{bottom:5.258958px;}
.ycc{bottom:5.258970px;}
.y62{bottom:5.259005px;}
.yea{bottom:5.343694px;}
.y34{bottom:5.368958px;}
.y67{bottom:5.368973px;}
.yaf{bottom:5.410532px;}
.y64{bottom:5.617881px;}
.y77{bottom:5.630944px;}
.ye7{bottom:5.829323px;}
.yf1{bottom:5.966488px;}
.y92{bottom:7.148225px;}
.y93{bottom:7.148239px;}
.y7{bottom:7.416000px;}
.y5b{bottom:8.076439px;}
.y59{bottom:8.076455px;}
.y5f{bottom:8.076462px;}
.yc1{bottom:8.258274px;}
.yc2{bottom:8.258278px;}
.y7f{bottom:8.688219px;}
.y7d{bottom:8.688267px;}
.y164{bottom:8.821429px;}
.y15e{bottom:8.976178px;}
.y160{bottom:8.976187px;}
.y163{bottom:8.976196px;}
.y71{bottom:9.004375px;}
.y6f{bottom:9.004415px;}
.yec{bottom:9.040130px;}
.yed{bottom:9.040143px;}
.y183{bottom:9.043108px;}
.ya4{bottom:9.043112px;}
.ya6{bottom:9.043119px;}
.y152{bottom:9.043125px;}
.y155{bottom:9.043143px;}
.yab{bottom:9.043145px;}
.yf3{bottom:9.148609px;}
.ya3{bottom:9.159678px;}
.y171{bottom:9.213597px;}
.y104{bottom:9.544977px;}
.y108{bottom:9.545003px;}
.y106{bottom:9.545009px;}
.y10a{bottom:9.545039px;}
.ybc{bottom:9.688733px;}
.y148{bottom:9.879289px;}
.y13f{bottom:9.879295px;}
.y142{bottom:9.879318px;}
.y114{bottom:9.899714px;}
.y144{bottom:9.917955px;}
.y14a{bottom:9.917964px;}
.y13c{bottom:9.917965px;}
.y13e{bottom:9.917993px;}
.y35{bottom:10.453247px;}
.y68{bottom:10.453273px;}
.y65{bottom:10.937895px;}
.y76{bottom:10.963226px;}
.ye8{bottom:11.434505px;}
.y97{bottom:13.204850px;}
.y11f{bottom:13.874614px;}
.yf0{bottom:16.046261px;}
.y15c{bottom:17.603561px;}
.y9c{bottom:17.740843px;}
.y7c{bottom:18.643666px;}
.y54{bottom:19.085329px;}
.y6e{bottom:19.405209px;}
.yf8{bottom:19.716144px;}
.y41{bottom:20.553803px;}
.y4a{bottom:21.109503px;}
.ye2{bottom:21.243259px;}
.y117{bottom:21.243316px;}
.y58{bottom:21.733869px;}
.y5e{bottom:21.733884px;}
.y95{bottom:21.817506px;}
.y31{bottom:22.555722px;}
.yfd{bottom:22.555730px;}
.y30{bottom:22.555731px;}
.y81{bottom:23.380300px;}
.y7a{bottom:23.492588px;}
.y172{bottom:24.061685px;}
.y15f{bottom:24.220819px;}
.y162{bottom:24.220826px;}
.y167{bottom:24.220837px;}
.y73{bottom:24.296911px;}
.y184{bottom:24.335315px;}
.y151{bottom:24.335322px;}
.y154{bottom:24.335332px;}
.y158{bottom:24.335336px;}
.ya8{bottom:24.335370px;}
.ya9{bottom:24.335377px;}
.ya5{bottom:24.335385px;}
.y6c{bottom:24.412180px;}
.yfa{bottom:24.686245px;}
.yf5{bottom:24.686260px;}
.yc4{bottom:25.292663px;}
.yc5{bottom:25.292669px;}
.yc7{bottom:25.292673px;}
.y105{bottom:25.685849px;}
.y10e{bottom:25.685874px;}
.yc6{bottom:26.548019px;}
.y9{bottom:26.640000px;}
.ye3{bottom:26.640375px;}
.y113{bottom:26.640381px;}
.y115{bottom:26.640427px;}
.y119{bottom:26.640437px;}
.y99{bottom:29.153208px;}
.y43{bottom:30.011727px;}
.y53{bottom:31.593024px;}
.y51{bottom:31.707486px;}
.y5c{bottom:32.721634px;}
.y3c{bottom:32.755724px;}
.y5a{bottom:33.137669px;}
.y3f{bottom:33.287637px;}
.y94{bottom:33.619040px;}
.y3b{bottom:33.655755px;}
.y103{bottom:34.001687px;}
.y126{bottom:34.037772px;}
.y4c{bottom:34.397472px;}
.y80{bottom:35.163457px;}
.y7e{bottom:35.163507px;}
.y175{bottom:36.054843px;}
.y161{bottom:36.523491px;}
.y166{bottom:36.523493px;}
.y165{bottom:36.523522px;}
.y72{bottom:36.599805px;}
.y70{bottom:36.599846px;}
.y153{bottom:36.638220px;}
.y157{bottom:36.638223px;}
.ya7{bottom:36.638238px;}
.yac{bottom:36.638242px;}
.y156{bottom:36.638254px;}
.yfc{bottom:36.798485px;}
.yff{bottom:36.798543px;}
.yf4{bottom:37.225337px;}
.yf9{bottom:37.225353px;}
.y2f{bottom:37.337733px;}
.y107{bottom:38.671499px;}
.y10c{bottom:38.671505px;}
.y10b{bottom:38.671569px;}
.yc3{bottom:38.999964px;}
.y109{bottom:39.163185px;}
.y10d{bottom:39.163190px;}
.ye4{bottom:40.108632px;}
.y118{bottom:40.108657px;}
.y11a{bottom:40.108670px;}
.y9d{bottom:41.114695px;}
.y9e{bottom:41.114709px;}
.y9b{bottom:41.114721px;}
.y120{bottom:43.385234px;}
.y45{bottom:43.524012px;}
.y15d{bottom:45.306139px;}
.yf7{bottom:46.176744px;}
.y42{bottom:47.208567px;}
.y8{bottom:47.700000px;}
.y3e{bottom:48.640511px;}
.y177{bottom:48.922601px;}
.y137{bottom:50.426549px;}
.y129{bottom:50.426558px;}
.y9a{bottom:52.527026px;}
.y40{bottom:56.666491px;}
.y17a{bottom:58.213451px;}
.y44{bottom:60.269992px;}
.y12b{bottom:60.277022px;}
.y12f{bottom:60.277068px;}
.y3d{bottom:61.742463px;}
.y17e{bottom:63.619636px;}
.y12d{bottom:63.840062px;}
.y170{bottom:63.847315px;}
.y178{bottom:65.827332px;}
.y131{bottom:66.187695px;}
.y134{bottom:66.187713px;}
.y5{bottom:68.040000px;}
.y173{bottom:68.606579px;}
.y127{bottom:68.661576px;}
.y17c{bottom:75.763533px;}
.y12a{bottom:82.410458px;}
.y12e{bottom:82.410504px;}
.y133{bottom:83.122740px;}
.y174{bottom:83.454354px;}
.y179{bottom:84.025905px;}
.y17d{bottom:84.672826px;}
.y136{bottom:84.924126px;}
.y124{bottom:84.924132px;}
.y176{bottom:95.447512px;}
.y132{bottom:96.494753px;}
.y135{bottom:96.494772px;}
.y17f{bottom:96.818293px;}
.y128{bottom:98.002253px;}
.y17b{bottom:102.186794px;}
.y12c{bottom:102.403678px;}
.y130{bottom:102.403724px;}
.y23{bottom:105.156000px;}
.y16d{bottom:106.107573px;}
.y55{bottom:106.416000px;}
.y121{bottom:106.805119px;}
.y16f{bottom:109.648366px;}
.y123{bottom:110.620524px;}
.y189{bottom:113.076000px;}
.ye6{bottom:115.440000px;}
.y16e{bottom:122.250760px;}
.y122{bottom:124.410909px;}
.ye5{bottom:124.416000px;}
.y22{bottom:125.136000px;}
.y50{bottom:126.240000px;}
.y188{bottom:137.016000px;}
.y4f{bottom:144.216000px;}
.y90{bottom:149.436000px;}
.ye0{bottom:152.340000px;}
.y187{bottom:160.770000px;}
.y4e{bottom:164.730000px;}
.y8f{bottom:173.190000px;}
.ydf{bottom:174.810000px;}
.y4d{bottom:182.730000px;}
.y186{bottom:184.530000px;}
.y8e{bottom:196.950000px;}
.y49{bottom:202.589980px;}
.y185{bottom:208.290000px;}
.y47{bottom:216.089980px;}
.yde{bottom:220.170000px;}
.y46{bottom:220.530000px;}
.y8d{bottom:220.890000px;}
.y182{bottom:228.164980px;}
.ydd{bottom:243.930000px;}
.y8c{bottom:244.650000px;}
.y181{bottom:250.590000px;}
.y39{bottom:260.340000px;}
.y8b{bottom:264.450000px;}
.ydc{bottom:267.690000px;}
.y38{bottom:278.310000px;}
.y16b{bottom:286.815000px;}
.yda{bottom:287.564980px;}
.yd9{bottom:291.990000px;}
.yd5{bottom:312.015000px;}
.yd7{bottom:313.440000px;}
.yd4{bottom:316.470000px;}
.y180{bottom:333.210000px;}
.yd3{bottom:340.455000px;}
.y37{bottom:350.895000px;}
.yd2{bottom:364.215000px;}
.y33{bottom:370.740000px;}
.y36{bottom:379.695000px;}
.yd1{bottom:387.975000px;}
.y32{bottom:408.495000px;}
.yd0{bottom:411.915000px;}
.y16a{bottom:428.115000px;}
.y2d{bottom:428.339959px;}
.ycf{bottom:435.675000px;}
.y2c{bottom:446.295000px;}
.y169{bottom:452.055000px;}
.yce{bottom:459.435000px;}
.y15a{bottom:471.839959px;}
.ycd{bottom:483.195000px;}
.y168{bottom:489.855000px;}
.y2b{bottom:493.815000px;}
.yca{bottom:503.189959px;}
.yc9{bottom:507.675000px;}
.y2a{bottom:517.755000px;}
.y14f{bottom:533.264959px;}
.yc8{bottom:533.415000px;}
.y29{bottom:541.515000px;}
.y159{bottom:551.235000px;}
.yc0{bottom:553.214959px;}
.y21{bottom:565.275000px;}
.ybf{bottom:574.275000px;}
.y20{bottom:589.035000px;}
.y14e{bottom:595.875000px;}
.y1f{bottom:613.005000px;}
.y147{bottom:615.689959px;}
.ybe{bottom:620.385000px;}
.y14d{bottom:624.705000px;}
.y1e{bottom:636.765000px;}
.ybd{bottom:644.145000px;}
.y13b{bottom:648.089959px;}
.y143{bottom:648.090000px;}
.y146{bottom:648.105000px;}
.y1d{bottom:660.525000px;}
.y13a{bottom:661.965000px;}
.yba{bottom:663.764959px;}
.yb9{bottom:671.325000px;}
.y1c{bottom:684.285000px;}
.y139{bottom:684.465000px;}
.yf2{bottom:700.545000px;}
.y11e{bottom:704.264919px;}
.y1b{bottom:708.225000px;}
.yb8{bottom:721.725000px;}
.y8a{bottom:724.965000px;}
.y1a{bottom:731.985000px;}
.y138{bottom:743.325000px;}
.y89{bottom:748.725000px;}
.y19{bottom:755.745000px;}
.yb7{bottom:767.085000px;}
.y86{bottom:769.439919px;}
.y85{bottom:772.485000px;}
.y18{bottom:779.505000px;}
.yb6{bottom:791.025000px;}
.y84{bottom:800.565000px;}
.y17{bottom:803.265000px;}
.yb5{bottom:814.785000px;}
.y83{bottom:824.325000px;}
.y16{bottom:827.205000px;}
.yef{bottom:834.690000px;}
.yee{bottom:835.815000px;}
.yb4{bottom:839.085000px;}
.y82{bottom:848.265000px;}
.y11d{bottom:848.625000px;}
.y15{bottom:850.965000px;}
.y79{bottom:868.064919px;}
.yb3{bottom:872.070000px;}
.y11c{bottom:872.430000px;}
.y14{bottom:874.770000px;}
.y78{bottom:890.610000px;}
.yb2{bottom:895.830000px;}
.y11b{bottom:896.370000px;}
.y13{bottom:898.530000px;}
.y112{bottom:915.914919px;}
.yeb{bottom:916.905000px;}
.y12{bottom:922.470000px;}
.yb1{bottom:923.190000px;}
.y75{bottom:924.389919px;}
.y74{bottom:933.450000px;}
.y111{bottom:938.490000px;}
.y11{bottom:946.230000px;}
.yb0{bottom:951.990000px;}
.y6b{bottom:959.489919px;}
.y10{bottom:969.990000px;}
.yae{bottom:971.715000px;}
.ye9{bottom:973.065000px;}
.yad{bottom:976.290000px;}
.y6a{bottom:982.050000px;}
.y110{bottom:983.850000px;}
.y28{bottom:993.750000px;}
.ya2{bottom:999.614919px;}
.yf{bottom:1000.590000px;}
.y101{bottom:1009.364919px;}
.y10f{bottom:1009.410000px;}
.ye{bottom:1017.690000px;}
.ya1{bottom:1022.190000px;}
.y69{bottom:1022.370000px;}
.yd{bottom:1041.450000px;}
.y63{bottom:1042.139919px;}
.y66{bottom:1051.170000px;}
.ya0{bottom:1062.330000px;}
.y27{bottom:1065.210000px;}
.yc{bottom:1067.550000px;}
.y100{bottom:1075.110000px;}
.y61{bottom:1077.389919px;}
.y60{bottom:1081.950000px;}
.y96{bottom:1082.039919px;}
.y26{bottom:1088.970000px;}
.yfb{bottom:1094.864919px;}
.yb{bottom:1099.410000px;}
.y91{bottom:1101.539919px;}
.y57{bottom:1103.864919px;}
.y9f{bottom:1112.190000px;}
.y25{bottom:1112.910000px;}
.y56{bottom:1126.410000px;}
.ya{bottom:1131.090000px;}
.y24{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.h5d{height:18.000422px;}
.h5f{height:18.674876px;}
.h5b{height:18.749374px;}
.h4e{height:21.074551px;}
.h18{height:23.250026px;}
.h58{height:23.250047px;}
.h27{height:23.250088px;}
.h6a{height:23.602500px;}
.h6f{height:23.624762px;}
.h3f{height:23.925422px;}
.h5{height:24.156000px;}
.h6c{height:28.125000px;}
.h25{height:28.605498px;}
.h94{height:29.175323px;}
.h8c{height:29.175364px;}
.h47{height:29.674645px;}
.h71{height:30.374969px;}
.hf{height:30.749974px;}
.h2c{height:30.750056px;}
.h3a{height:30.772459px;}
.ha0{height:30.863895px;}
.h8e{height:31.699959px;}
.h92{height:31.808963px;}
.h9a{height:31.929149px;}
.h30{height:32.029445px;}
.h50{height:32.174899px;}
.h29{height:32.175666px;}
.h35{height:32.250186px;}
.h77{height:32.542775px;}
.h2d{height:33.111117px;}
.h16{height:33.216168px;}
.h10{height:33.410869px;}
.h14{height:33.516872px;}
.h7e{height:33.806952px;}
.ha{height:33.824531px;}
.h67{height:33.900356px;}
.h87{height:34.006065px;}
.h2a{height:34.646192px;}
.h62{height:35.063315px;}
.h68{height:36.628923px;}
.h51{height:36.684671px;}
.h72{height:39.935905px;}
.h2{height:46.696289px;}
.h24{height:49.064460px;}
.h22{height:49.499189px;}
.h1d{height:49.500808px;}
.h7{height:50.484375px;}
.h42{height:51.600934px;}
.h3{height:51.677227px;}
.ha7{height:52.417969px;}
.h3c{height:52.781254px;}
.ha1{height:52.819067px;}
.h38{height:53.248908px;}
.ha2{height:53.520859px;}
.h95{height:53.645204px;}
.h20{height:53.708688px;}
.h90{height:53.751890px;}
.h4{height:54.000000px;}
.h8f{height:54.357972px;}
.h93{height:54.466075px;}
.h1a{height:54.750832px;}
.h9b{height:54.765222px;}
.h5a{height:54.867587px;}
.h32{height:54.937251px;}
.ha5{height:55.423944px;}
.h97{height:55.423964px;}
.h2e{height:55.424005px;}
.h17{height:57.040783px;}
.h23{height:57.674658px;}
.h7f{height:57.986049px;}
.h6e{height:58.307600px;}
.h88{height:58.397241px;}
.h99{height:58.499213px;}
.h7d{height:58.499812px;}
.hc{height:58.501781px;}
.h7a{height:58.501822px;}
.h6{height:59.066719px;}
.hb{height:59.343750px;}
.h36{height:59.547667px;}
.h75{height:59.589000px;}
.h49{height:59.782380px;}
.h53{height:59.925632px;}
.h63{height:60.140976px;}
.h61{height:60.673747px;}
.h83{height:60.673828px;}
.h44{height:61.946603px;}
.h3d{height:62.043702px;}
.h9{height:62.261719px;}
.h73{height:63.096885px;}
.h1f{height:63.133889px;}
.h7b{height:63.474756px;}
.h9c{height:64.375832px;}
.h33{height:64.578050px;}
.h28{height:64.625196px;}
.h26{height:64.815655px;}
.h76{height:65.613029px;}
.h13{height:67.050725px;}
.h4a{height:67.184346px;}
.h80{height:68.161874px;}
.h89{height:68.645225px;}
.h45{height:69.616532px;}
.h3e{height:69.725653px;}
.h1c{height:69.829804px;}
.h46{height:69.901308px;}
.ha4{height:70.068371px;}
.h64{height:70.694964px;}
.h21{height:70.950822px;}
.h8d{height:71.164302px;}
.h40{height:71.181033px;}
.h4b{height:71.409499px;}
.h3b{height:71.727840px;}
.h55{height:71.940417px;}
.h5e{height:72.343019px;}
.h9e{height:72.346536px;}
.h19{height:72.481763px;}
.h34{height:72.573792px;}
.ha3{height:73.173511px;}
.h79{height:73.736917px;}
.h69{height:73.871999px;}
.h43{height:73.931510px;}
.h52{height:73.944722px;}
.h31{height:74.504097px;}
.hd{height:74.613780px;}
.h11{height:75.005182px;}
.h15{height:75.352622px;}
.h9d{height:75.599921px;}
.ha6{height:75.716724px;}
.h98{height:75.742756px;}
.h4d{height:76.049826px;}
.h59{height:76.092835px;}
.h74{height:76.552945px;}
.h70{height:76.552962px;}
.h6b{height:76.552979px;}
.h82{height:76.601348px;}
.h60{height:76.730758px;}
.h5c{height:77.036936px;}
.h78{height:77.063949px;}
.h8b{height:77.144545px;}
.h1b{height:78.475792px;}
.h2b{height:78.482523px;}
.h66{height:79.448072px;}
.h57{height:80.847731px;}
.h81{height:80.957053px;}
.h6d{height:82.384513px;}
.h8{height:82.808086px;}
.h65{height:82.967326px;}
.h85{height:83.117116px;}
.h12{height:83.402308px;}
.he{height:83.852098px;}
.h41{height:84.901919px;}
.h54{height:86.181104px;}
.h7c{height:87.475991px;}
.h4f{height:90.165973px;}
.h96{height:90.460027px;}
.h91{height:90.600917px;}
.h39{height:92.050170px;}
.h1e{height:93.712251px;}
.h4c{height:95.810215px;}
.h2f{height:95.952552px;}
.h37{height:99.993591px;}
.h84{height:101.036536px;}
.h56{height:116.029756px;}
.h48{height:116.406960px;}
.h8a{height:130.798636px;}
.h9f{height:134.319287px;}
.h86{height:137.321433px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:12.749397px;}
.w21{width:14.624808px;}
.w18{width:19.425127px;}
.wd{width:19.425137px;}
.w13{width:19.499678px;}
.w19{width:20.999971px;}
.w23{width:21.375000px;}
.w20{width:23.249559px;}
.w14{width:23.999430px;}
.w1b{width:27.000286px;}
.wf{width:41.250269px;}
.w11{width:51.675459px;}
.w1e{width:58.498642px;}
.w1c{width:58.498682px;}
.w29{width:60.826035px;}
.w22{width:61.875000px;}
.we{width:63.000051px;}
.wa{width:64.425659px;}
.w31{width:66.750981px;}
.w6{width:74.324997px;}
.w7{width:79.572937px;}
.w2a{width:81.001121px;}
.w25{width:84.747049px;}
.w2b{width:85.500906px;}
.w2d{width:87.147823px;}
.w15{width:87.827100px;}
.w2c{width:88.573092px;}
.w24{width:100.122342px;}
.w16{width:103.495662px;}
.w9{width:108.000746px;}
.w1f{width:114.901183px;}
.w2e{width:125.322871px;}
.w4{width:133.596000px;}
.wb{width:143.996068px;}
.w28{width:144.677691px;}
.w27{width:146.103765px;}
.w26{width:162.001358px;}
.w12{width:163.418516px;}
.wc{width:163.495069px;}
.w17{width:165.001068px;}
.w2f{width:170.327922px;}
.w1a{width:192.596248px;}
.w30{width:200.928860px;}
.w10{width:216.005400px;}
.w8{width:222.149583px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x60{left:1.054931px;}
.x16{left:3.056639px;}
.x23{left:4.848539px;}
.x6d{left:10.852823px;}
.x30{left:11.877267px;}
.x7a{left:13.667487px;}
.x93{left:15.935240px;}
.x61{left:17.061159px;}
.x17{left:18.461112px;}
.x38{left:20.131465px;}
.x92{left:21.545548px;}
.x9d{left:23.384543px;}
.x9b{left:26.334545px;}
.x26{left:28.171576px;}
.x3a{left:31.106247px;}
.xa9{left:32.269738px;}
.x41{left:33.603864px;}
.x5c{left:35.050673px;}
.x15{left:36.117291px;}
.x8e{left:37.656092px;}
.x4b{left:39.222166px;}
.x72{left:40.273279px;}
.x14{left:43.274913px;}
.x33{left:44.652075px;}
.x1b{left:47.121701px;}
.x87{left:48.255956px;}
.xa8{left:49.337488px;}
.x2b{left:51.217044px;}
.x5a{left:52.257841px;}
.x7{left:53.280000px;}
.x6a{left:55.123157px;}
.xa6{left:56.892505px;}
.x4e{left:59.845575px;}
.x32{left:62.242522px;}
.x1a{left:64.379696px;}
.x94{left:65.839765px;}
.x59{left:67.752382px;}
.x8f{left:68.815210px;}
.x2f{left:72.324590px;}
.x5f{left:74.352776px;}
.x37{left:75.893000px;}
.x27{left:77.207883px;}
.x89{left:78.524188px;}
.x62{left:80.063887px;}
.x81{left:81.087103px;}
.x4f{left:82.413967px;}
.x80{left:83.990880px;}
.x52{left:85.139987px;}
.x78{left:86.510483px;}
.x46{left:88.816338px;}
.x31{left:90.812904px;}
.x8b{left:94.220332px;}
.x4{left:95.795987px;}
.x85{left:97.687256px;}
.x9a{left:99.543533px;}
.x9e{left:100.559107px;}
.x20{left:101.632657px;}
.x44{left:102.985516px;}
.x50{left:107.588817px;}
.x63{left:108.873618px;}
.x8d{left:111.208832px;}
.x99{left:113.872888px;}
.xe{left:115.595987px;}
.x39{left:116.971402px;}
.x5e{left:118.655987px;}
.x69{left:120.181068px;}
.x1{left:121.715987px;}
.x9{left:122.795987px;}
.x22{left:127.674867px;}
.x8c{left:130.076524px;}
.x12{left:131.255987px;}
.x21{left:133.992938px;}
.x35{left:136.115987px;}
.x4c{left:138.275987px;}
.x66{left:140.795987px;}
.x86{left:142.295727px;}
.x5{left:143.634000px;}
.xa4{left:144.960880px;}
.x36{left:146.891069px;}
.x10{left:148.895987px;}
.x2{left:150.149987px;}
.x9f{left:153.298012px;}
.x49{left:155.140937px;}
.x9c{left:158.524598px;}
.x25{left:160.654825px;}
.xa2{left:163.791764px;}
.xa3{left:167.620326px;}
.x68{left:169.764056px;}
.x24{left:172.151878px;}
.x67{left:173.639980px;}
.xa{left:175.349987px;}
.x79{left:177.914980px;}
.xa5{left:179.219460px;}
.x65{left:182.639980px;}
.x3c{left:184.214980px;}
.x1f{left:186.777564px;}
.xa1{left:188.549813px;}
.x1e{left:193.095635px;}
.x47{left:195.251940px;}
.x48{left:198.252015px;}
.x45{left:201.957990px;}
.x3d{left:203.609987px;}
.x7d{left:222.045000px;}
.xaa{left:252.569987px;}
.x29{left:258.329987px;}
.xf{left:295.994987px;}
.x96{left:310.739980px;}
.x2d{left:320.474987px;}
.x4d{left:327.315000px;}
.x43{left:337.065000px;}
.xa0{left:340.814980px;}
.x2a{left:344.639959px;}
.x58{left:345.690000px;}
.x1d{left:356.489959px;}
.x84{left:360.239959px;}
.x82{left:365.864959px;}
.xb{left:369.254987px;}
.x77{left:371.039959px;}
.xd{left:378.974987px;}
.x2e{left:382.064959px;}
.x6{left:383.295000px;}
.x91{left:388.514959px;}
.x3e{left:389.939959px;}
.x13{left:392.339959px;}
.x97{left:399.314959px;}
.x3{left:402.554987px;}
.x19{left:406.889959px;}
.x2c{left:409.034987px;}
.x5b{left:433.514959px;}
.x76{left:441.254987px;}
.xc{left:446.834987px;}
.x53{left:449.339959px;}
.x83{left:450.614987px;}
.x3f{left:452.954987px;}
.x40{left:457.439959px;}
.x7c{left:458.490000px;}
.x18{left:466.664987px;}
.x54{left:468.824987px;}
.x55{left:482.639959px;}
.x98{left:484.815000px;}
.x1c{left:486.464987px;}
.x51{left:490.784987px;}
.x42{left:498.704987px;}
.x71{left:504.839959px;}
.x56{left:506.624987px;}
.x64{left:508.784987px;}
.x75{left:512.204987px;}
.x6b{left:513.644987px;}
.x8a{left:515.084987px;}
.x8{left:517.605000px;}
.x88{left:522.284987px;}
.x34{left:526.064987px;}
.x3b{left:533.624987px;}
.x7e{left:535.800000px;}
.x5d{left:537.044987px;}
.xa7{left:541.724987px;}
.x6c{left:545.639959px;}
.x4a{left:553.064987px;}
.x95{left:555.044987px;}
.x73{left:563.324987px;}
.x6e{left:572.684987px;}
.x7b{left:575.340000px;}
.x6f{left:577.139959px;}
.x28{left:578.624987px;}
.x7f{left:591.210000px;}
.x70{left:604.184987px;}
.x90{left:693.509987px;}
.x57{left:732.209987px;}
.x11{left:775.409987px;}
.x74{left:784.739919px;}
@media print{
.v12{vertical-align:-68.554548pt;}
.vf{vertical-align:-59.522479pt;}
.vc{vertical-align:-54.372269pt;}
.v10{vertical-align:-50.640974pt;}
.v4{vertical-align:-41.349266pt;}
.ve{vertical-align:-40.332733pt;}
.v1{vertical-align:-24.320000pt;}
.v6{vertical-align:-18.915567pt;}
.v3{vertical-align:-16.745042pt;}
.v5{vertical-align:-15.528384pt;}
.va{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:4.362307pt;}
.v7{vertical-align:17.392752pt;}
.v8{vertical-align:18.959376pt;}
.v2{vertical-align:32.429726pt;}
.v11{vertical-align:47.692526pt;}
.vd{vertical-align:48.737119pt;}
.vb{vertical-align:50.332959pt;}
.ls2e{letter-spacing:-3.717123pt;}
.ls43{letter-spacing:-2.325835pt;}
.ls42{letter-spacing:-2.257927pt;}
.ls32{letter-spacing:-2.016184pt;}
.ls1c{letter-spacing:-1.941137pt;}
.ls1a{letter-spacing:-1.883835pt;}
.ls18{letter-spacing:-1.804444pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.198933pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.174724pt;}
.ls10{letter-spacing:-0.171153pt;}
.ls1d{letter-spacing:-0.167867pt;}
.ls17{letter-spacing:-0.156046pt;}
.ls46{letter-spacing:-0.137299pt;}
.lsf{letter-spacing:-0.067458pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.043024pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.037765pt;}
.lsa{letter-spacing:0.108552pt;}
.ls28{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls40{letter-spacing:0.239171pt;}
.ls19{letter-spacing:0.264614pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.435887pt;}
.lse{letter-spacing:0.521668pt;}
.ls8{letter-spacing:0.557407pt;}
.ls41{letter-spacing:0.594389pt;}
.ls3e{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.650119pt;}
.ls2d{letter-spacing:0.966320pt;}
.ls45{letter-spacing:1.004214pt;}
.ls44{letter-spacing:1.007368pt;}
.ls31{letter-spacing:1.122215pt;}
.ls30{letter-spacing:1.149652pt;}
.ls3f{letter-spacing:1.212326pt;}
.ls2f{letter-spacing:1.276588pt;}
.ls47{letter-spacing:1.289654pt;}
.ls3d{letter-spacing:2.122157pt;}
.ls14{letter-spacing:2.204497pt;}
.ls11{letter-spacing:2.479494pt;}
.ls16{letter-spacing:2.560000pt;}
.ls24{letter-spacing:5.760000pt;}
.ls25{letter-spacing:10.240000pt;}
.ls22{letter-spacing:18.419695pt;}
.ls7{letter-spacing:19.751124pt;}
.ls26{letter-spacing:24.938667pt;}
.ls27{letter-spacing:24.960000pt;}
.ls2b{letter-spacing:26.240000pt;}
.ls38{letter-spacing:26.892249pt;}
.ls3a{letter-spacing:27.576984pt;}
.ls37{letter-spacing:27.921615pt;}
.ls39{letter-spacing:28.051771pt;}
.ls3b{letter-spacing:28.125904pt;}
.ls12{letter-spacing:28.969519pt;}
.ls2{letter-spacing:32.000000pt;}
.ls29{letter-spacing:39.040000pt;}
.ls2a{letter-spacing:39.680000pt;}
.ls48{letter-spacing:48.128000pt;}
.ls23{letter-spacing:64.666144pt;}
.ls6{letter-spacing:77.328092pt;}
.ls1{letter-spacing:92.320000pt;}
.ls13{letter-spacing:125.029971pt;}
.ls2c{letter-spacing:132.974969pt;}
.ls3c{letter-spacing:151.546303pt;}
.ls4{letter-spacing:170.143580pt;}
.ls5{letter-spacing:211.237915pt;}
.ls36{letter-spacing:217.601246pt;}
.ls33{letter-spacing:222.713659pt;}
.ls34{letter-spacing:282.897972pt;}
.ls35{letter-spacing:396.128354pt;}
.ws24{word-spacing:-77.585031pt;}
.ws2{word-spacing:-64.000000pt;}
.ws2b{word-spacing:-43.403827pt;}
.ws1b{word-spacing:-41.443849pt;}
.ws27{word-spacing:-40.586485pt;}
.ws28{word-spacing:-40.425177pt;}
.ws33{word-spacing:-40.356998pt;}
.ws3c{word-spacing:-39.904654pt;}
.ws45{word-spacing:-39.890939pt;}
.ws40{word-spacing:-39.829402pt;}
.ws9{word-spacing:-39.699114pt;}
.ws2f{word-spacing:-38.847888pt;}
.ws43{word-spacing:-38.551061pt;}
.ws1a{word-spacing:-38.235102pt;}
.ws36{word-spacing:-37.492520pt;}
.ws1f{word-spacing:-36.734576pt;}
.ws12{word-spacing:-34.147771pt;}
.ws1{word-spacing:-21.280000pt;}
.ws2a{word-spacing:-19.060464pt;}
.ws13{word-spacing:-18.828818pt;}
.wsb{word-spacing:-18.827203pt;}
.ws5{word-spacing:-18.644685pt;}
.ws22{word-spacing:-18.560901pt;}
.ws35{word-spacing:-18.507823pt;}
.ws2c{word-spacing:-18.479413pt;}
.ws32{word-spacing:-18.377504pt;}
.ws7{word-spacing:-18.077921pt;}
.ws2d{word-spacing:-17.690295pt;}
.ws18{word-spacing:-17.411249pt;}
.ws3e{word-spacing:-17.356728pt;}
.wsd{word-spacing:-17.021881pt;}
.wse{word-spacing:-16.954423pt;}
.ws1d{word-spacing:-16.727949pt;}
.ws20{word-spacing:-16.701770pt;}
.ws4{word-spacing:-16.320000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.549987pt;}
.ws14{word-spacing:-14.917488pt;}
.ws11{word-spacing:-13.745543pt;}
.ws31{word-spacing:-10.714429pt;}
.ws2e{word-spacing:-10.313773pt;}
.ws3d{word-spacing:-10.119297pt;}
.wsa{word-spacing:-1.546993pt;}
.ws38{word-spacing:-0.068428pt;}
.ws3a{word-spacing:-0.068292pt;}
.ws42{word-spacing:-0.067241pt;}
.ws37{word-spacing:-0.039826pt;}
.ws41{word-spacing:-0.039291pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:1.815799pt;}
.ws15{word-spacing:2.183850pt;}
.ws39{word-spacing:2.189635pt;}
.ws3b{word-spacing:2.257406pt;}
.ws30{word-spacing:5.186503pt;}
.ws44{word-spacing:19.067430pt;}
.ws29{word-spacing:36.753578pt;}
.ws23{word-spacing:114.042806pt;}
.ws1c{word-spacing:187.729223pt;}
.wsc{word-spacing:192.611320pt;}
.ws16{word-spacing:194.179519pt;}
.ws21{word-spacing:195.588094pt;}
.ws1e{word-spacing:199.316070pt;}
.ws34{word-spacing:229.097987pt;}
.ws10{word-spacing:270.961567pt;}
.ws25{word-spacing:278.731143pt;}
.ws19{word-spacing:327.483614pt;}
.ws3f{word-spacing:330.035972pt;}
.ws17{word-spacing:346.410575pt;}
.ws26{word-spacing:351.211907pt;}
.ws8{word-spacing:696.590132pt;}
._4d{margin-left:-444.168551pt;}
._5d{margin-left:-396.883331pt;}
._58{margin-left:-364.071157pt;}
._3c{margin-left:-273.564815pt;}
._3d{margin-left:-264.498573pt;}
._2f{margin-left:-261.444343pt;}
._2d{margin-left:-251.243635pt;}
._23{margin-left:-249.736618pt;}
._2c{margin-left:-247.415311pt;}
._4c{margin-left:-240.078651pt;}
._20{margin-left:-235.645028pt;}
._5b{margin-left:-228.805411pt;}
._60{margin-left:-226.142769pt;}
._29{margin-left:-223.700799pt;}
._59{margin-left:-221.729820pt;}
._57{margin-left:-219.466636pt;}
._5e{margin-left:-210.843186pt;}
._61{margin-left:-208.979442pt;}
._5f{margin-left:-206.602250pt;}
._5c{margin-left:-205.508354pt;}
._2a{margin-left:-200.608059pt;}
._21{margin-left:-188.326183pt;}
._28{margin-left:-184.060332pt;}
._26{margin-left:-178.797928pt;}
._25{margin-left:-177.371537pt;}
._31{margin-left:-172.971669pt;}
._2e{margin-left:-168.861613pt;}
._27{margin-left:-162.511784pt;}
._46{margin-left:-150.980931pt;}
._4e{margin-left:-148.215415pt;}
._36{margin-left:-146.583450pt;}
._47{margin-left:-143.747327pt;}
._4b{margin-left:-142.433115pt;}
._22{margin-left:-140.037277pt;}
._43{margin-left:-135.589535pt;}
._2b{margin-left:-132.286912pt;}
._30{margin-left:-125.707328pt;}
._44{margin-left:-118.948404pt;}
._45{margin-left:-117.936762pt;}
._4f{margin-left:-116.115141pt;}
._35{margin-left:-111.131410pt;}
._5a{margin-left:-107.529321pt;}
._50{margin-left:-104.806766pt;}
._24{margin-left:-97.757167pt;}
._49{margin-left:-95.661494pt;}
._4a{margin-left:-86.423243pt;}
._55{margin-left:-84.437413pt;}
._53{margin-left:-83.175464pt;}
._54{margin-left:-81.981422pt;}
._56{margin-left:-80.883583pt;}
._52{margin-left:-79.791403pt;}
._48{margin-left:-54.474682pt;}
._51{margin-left:-35.514814pt;}
._63{margin-left:-8.928000pt;}
._62{margin-left:-7.253333pt;}
._66{margin-left:-6.064000pt;}
._65{margin-left:-5.066667pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._9{width:2.037333pt;}
._1e{width:3.082667pt;}
._16{width:4.112000pt;}
._15{width:5.040000pt;}
._11{width:6.080000pt;}
._10{width:7.040000pt;}
._1c{width:8.448000pt;}
._13{width:10.240000pt;}
._17{width:11.146667pt;}
._41{width:12.160000pt;}
._3e{width:13.184000pt;}
._f{width:15.008000pt;}
._12{width:17.232000pt;}
._19{width:18.496000pt;}
._1f{width:20.544000pt;}
._64{width:22.272000pt;}
._34{width:24.048000pt;}
._1b{width:24.960000pt;}
._42{width:25.984000pt;}
._1a{width:27.392000pt;}
._1d{width:28.320000pt;}
._32{width:29.824000pt;}
._33{width:31.136000pt;}
._6{width:32.192000pt;}
._14{width:33.920000pt;}
._40{width:38.346667pt;}
._3f{width:39.360000pt;}
._a{width:40.384000pt;}
._8{width:42.688000pt;}
._7{width:43.840000pt;}
._c{width:46.336000pt;}
._b{width:47.296000pt;}
._18{width:52.288000pt;}
._d{width:57.408000pt;}
._e{width:58.432000pt;}
._37{width:61.706667pt;}
._39{width:65.898667pt;}
._3a{width:81.210667pt;}
._5{width:91.818667pt;}
._38{width:225.317333pt;}
._3b{width:359.925333pt;}
._4{width:1103.978667pt;}
.fs12{font-size:36.263733pt;}
.fs21{font-size:37.619111pt;}
.fs1c{font-size:39.010830pt;}
.fs4d{font-size:39.290913pt;}
.fs10{font-size:39.774308pt;}
.fs46{font-size:39.826096pt;}
.fs48{font-size:39.963043pt;}
.fs4a{font-size:40.477188pt;}
.fs17{font-size:40.604336pt;}
.fs3c{font-size:41.255093pt;}
.fs8{font-size:41.975591pt;}
.fsb{font-size:42.108767pt;}
.fs3f{font-size:42.857714pt;}
.fs5{font-size:42.880000pt;}
.fs43{font-size:43.110134pt;}
.fs14{font-size:43.921635pt;}
.fs1a{font-size:44.023361pt;}
.fs2f{font-size:44.450429pt;}
.fs32{font-size:46.435180pt;}
.fs27{font-size:46.505853pt;}
.fs38{font-size:46.647283pt;}
.fs7{font-size:47.006631pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs11{font-size:62.199947pt;}
.fs2{font-size:64.000000pt;}
.fs22{font-size:64.473046pt;}
.fs20{font-size:66.807079pt;}
.fs1d{font-size:66.911797pt;}
.fs4e{font-size:67.240683pt;}
.fsf{font-size:68.087523pt;}
.fs45{font-size:68.292387pt;}
.fs47{font-size:68.428202pt;}
.fs23{font-size:68.527689pt;}
.fs4b{font-size:69.426911pt;}
.fsc{font-size:69.556681pt;}
.fs18{font-size:69.644995pt;}
.fs13{font-size:69.695840pt;}
.fs4f{font-size:70.220512pt;}
.fs3b{font-size:70.761181pt;}
.fs1f{font-size:70.947921pt;}
.fs9{font-size:71.978264pt;}
.fsa{font-size:72.311682pt;}
.fs4c{font-size:72.549002pt;}
.fs50{font-size:72.661091pt;}
.fs49{font-size:72.686073pt;}
.fs25{font-size:72.980751pt;}
.fs2b{font-size:73.022024pt;}
.fs3a{font-size:73.463565pt;}
.fs37{font-size:73.463582pt;}
.fs34{font-size:73.463598pt;}
.fs40{font-size:73.510015pt;}
.fs2e{font-size:73.634203pt;}
.fs36{font-size:73.917651pt;}
.fs2c{font-size:73.928024pt;}
.fs3d{font-size:73.953947pt;}
.fs44{font-size:74.031290pt;}
.fs3{font-size:74.880000pt;}
.fsd{font-size:75.308814pt;}
.fs15{font-size:75.315273pt;}
.fs19{font-size:75.489708pt;}
.fs30{font-size:76.241856pt;}
.fs1e{font-size:76.766064pt;}
.fs2a{font-size:77.585031pt;}
.fs41{font-size:77.689941pt;}
.fs2d{font-size:78.019222pt;}
.fs35{font-size:79.059794pt;}
.fs31{font-size:79.619087pt;}
.fs33{font-size:79.668169pt;}
.fs28{font-size:79.746598pt;}
.fs42{font-size:79.762832pt;}
.fs39{font-size:79.989118pt;}
.fs6{font-size:80.468153pt;}
.fs29{font-size:82.703169pt;}
.fs3e{font-size:83.945799pt;}
.fs4{font-size:85.120000pt;}
.fs26{font-size:86.527224pt;}
.fs1b{font-size:88.335382pt;}
.fse{font-size:89.930388pt;}
.fs24{font-size:91.943687pt;}
.fs16{font-size:92.080279pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:2.975175pt;}
.y98{bottom:3.186409pt;}
.y5d{bottom:3.296859pt;}
.y7b{bottom:3.546544pt;}
.y6d{bottom:3.622404pt;}
.y87{bottom:3.622460pt;}
.y88{bottom:3.622464pt;}
.ybb{bottom:3.645210pt;}
.y15b{bottom:3.645525pt;}
.y52{bottom:3.683544pt;}
.y150{bottom:3.691410pt;}
.yaa{bottom:3.691437pt;}
.yf6{bottom:3.715528pt;}
.y102{bottom:3.896271pt;}
.y16c{bottom:3.959546pt;}
.y125{bottom:4.024150pt;}
.y6{bottom:4.032000pt;}
.ye1{bottom:4.041061pt;}
.y116{bottom:4.041081pt;}
.y4b{bottom:4.111694pt;}
.y3a{bottom:4.149036pt;}
.ydb{bottom:4.296185pt;}
.yd6{bottom:4.313322pt;}
.y2e{bottom:4.353353pt;}
.yfe{bottom:4.353407pt;}
.y140{bottom:4.493810pt;}
.y141{bottom:4.493813pt;}
.y149{bottom:4.493814pt;}
.y145{bottom:4.528021pt;}
.y13d{bottom:4.528046pt;}
.y14b{bottom:4.528049pt;}
.y14c{bottom:4.528051pt;}
.y48{bottom:4.674619pt;}
.ycb{bottom:4.674629pt;}
.ycc{bottom:4.674640pt;}
.y62{bottom:4.674671pt;}
.yea{bottom:4.749950pt;}
.y34{bottom:4.772407pt;}
.y67{bottom:4.772420pt;}
.yaf{bottom:4.809362pt;}
.y64{bottom:4.993672pt;}
.y77{bottom:5.005284pt;}
.ye7{bottom:5.181620pt;}
.yf1{bottom:5.303545pt;}
.y92{bottom:6.353977pt;}
.y93{bottom:6.353990pt;}
.y7{bottom:6.592000pt;}
.y5b{bottom:7.179057pt;}
.y59{bottom:7.179071pt;}
.y5f{bottom:7.179077pt;}
.yc1{bottom:7.340688pt;}
.yc2{bottom:7.340692pt;}
.y7f{bottom:7.722861pt;}
.y7d{bottom:7.722904pt;}
.y164{bottom:7.841270pt;}
.y15e{bottom:7.978825pt;}
.y160{bottom:7.978833pt;}
.y163{bottom:7.978841pt;}
.y71{bottom:8.003888pt;}
.y6f{bottom:8.003924pt;}
.yec{bottom:8.035671pt;}
.yed{bottom:8.035683pt;}
.y183{bottom:8.038318pt;}
.ya4{bottom:8.038322pt;}
.ya6{bottom:8.038328pt;}
.y152{bottom:8.038333pt;}
.y155{bottom:8.038349pt;}
.yab{bottom:8.038351pt;}
.yf3{bottom:8.132097pt;}
.ya3{bottom:8.141936pt;}
.y171{bottom:8.189864pt;}
.y104{bottom:8.484424pt;}
.y108{bottom:8.484447pt;}
.y106{bottom:8.484452pt;}
.y10a{bottom:8.484479pt;}
.ybc{bottom:8.612207pt;}
.y148{bottom:8.781590pt;}
.y13f{bottom:8.781596pt;}
.y142{bottom:8.781616pt;}
.y114{bottom:8.799746pt;}
.y144{bottom:8.815960pt;}
.y14a{bottom:8.815968pt;}
.y13c{bottom:8.815969pt;}
.y13e{bottom:8.815994pt;}
.y35{bottom:9.291775pt;}
.y68{bottom:9.291798pt;}
.y65{bottom:9.722573pt;}
.y76{bottom:9.745089pt;}
.ye8{bottom:10.164004pt;}
.y97{bottom:11.737644pt;}
.y11f{bottom:12.332990pt;}
.yf0{bottom:14.263343pt;}
.y15c{bottom:15.647610pt;}
.y9c{bottom:15.769638pt;}
.y7c{bottom:16.572147pt;}
.y54{bottom:16.964737pt;}
.y6e{bottom:17.249075pt;}
.yf8{bottom:17.525461pt;}
.y41{bottom:18.270047pt;}
.y4a{bottom:18.764003pt;}
.ye2{bottom:18.882897pt;}
.y117{bottom:18.882948pt;}
.y58{bottom:19.318995pt;}
.y5e{bottom:19.319008pt;}
.y95{bottom:19.393339pt;}
.y31{bottom:20.049531pt;}
.yfd{bottom:20.049537pt;}
.y30{bottom:20.049538pt;}
.y81{bottom:20.782489pt;}
.y7a{bottom:20.882301pt;}
.y172{bottom:21.388165pt;}
.y15f{bottom:21.529616pt;}
.y162{bottom:21.529623pt;}
.y167{bottom:21.529633pt;}
.y73{bottom:21.597254pt;}
.y184{bottom:21.631391pt;}
.y151{bottom:21.631397pt;}
.y154{bottom:21.631406pt;}
.y158{bottom:21.631410pt;}
.ya8{bottom:21.631440pt;}
.ya9{bottom:21.631446pt;}
.ya5{bottom:21.631453pt;}
.y6c{bottom:21.699716pt;}
.yfa{bottom:21.943329pt;}
.yf5{bottom:21.943342pt;}
.yc4{bottom:22.482367pt;}
.yc5{bottom:22.482372pt;}
.yc7{bottom:22.482376pt;}
.y105{bottom:22.831866pt;}
.y10e{bottom:22.831888pt;}
.yc6{bottom:23.598239pt;}
.y9{bottom:23.680000pt;}
.ye3{bottom:23.680333pt;}
.y113{bottom:23.680339pt;}
.y115{bottom:23.680380pt;}
.y119{bottom:23.680389pt;}
.y99{bottom:25.913962pt;}
.y43{bottom:26.677091pt;}
.y53{bottom:28.082688pt;}
.y51{bottom:28.184432pt;}
.y5c{bottom:29.085897pt;}
.y3c{bottom:29.116199pt;}
.y5a{bottom:29.455706pt;}
.y3f{bottom:29.589011pt;}
.y94{bottom:29.883591pt;}
.y3b{bottom:29.916227pt;}
.y103{bottom:30.223722pt;}
.y126{bottom:30.255797pt;}
.y4c{bottom:30.575531pt;}
.y80{bottom:31.256406pt;}
.y7e{bottom:31.256451pt;}
.y175{bottom:32.048750pt;}
.y161{bottom:32.465325pt;}
.y166{bottom:32.465327pt;}
.y165{bottom:32.465353pt;}
.y72{bottom:32.533160pt;}
.y70{bottom:32.533196pt;}
.y153{bottom:32.567307pt;}
.y157{bottom:32.567309pt;}
.ya7{bottom:32.567323pt;}
.yac{bottom:32.567327pt;}
.y156{bottom:32.567337pt;}
.yfc{bottom:32.709765pt;}
.yff{bottom:32.709816pt;}
.yf4{bottom:33.089188pt;}
.yf9{bottom:33.089203pt;}
.y2f{bottom:33.189096pt;}
.y107{bottom:34.374666pt;}
.y10c{bottom:34.374671pt;}
.y10b{bottom:34.374728pt;}
.yc3{bottom:34.666634pt;}
.y109{bottom:34.811720pt;}
.y10d{bottom:34.811725pt;}
.ye4{bottom:35.652118pt;}
.y118{bottom:35.652139pt;}
.y11a{bottom:35.652151pt;}
.y9d{bottom:36.546396pt;}
.y9e{bottom:36.546408pt;}
.y9b{bottom:36.546419pt;}
.y120{bottom:38.564652pt;}
.y45{bottom:38.688011pt;}
.y15d{bottom:40.272123pt;}
.yf7{bottom:41.045995pt;}
.y42{bottom:41.963171pt;}
.y8{bottom:42.400000pt;}
.y3e{bottom:43.236010pt;}
.y177{bottom:43.486756pt;}
.y137{bottom:44.823599pt;}
.y129{bottom:44.823607pt;}
.y9a{bottom:46.690690pt;}
.y40{bottom:50.370214pt;}
.y17a{bottom:51.745290pt;}
.y44{bottom:53.573326pt;}
.y12b{bottom:53.579575pt;}
.y12f{bottom:53.579616pt;}
.y3d{bottom:54.882189pt;}
.y17e{bottom:56.550788pt;}
.y12d{bottom:56.746722pt;}
.y170{bottom:56.753169pt;}
.y178{bottom:58.513184pt;}
.y131{bottom:58.833506pt;}
.y134{bottom:58.833523pt;}
.y5{bottom:60.480000pt;}
.y173{bottom:60.983626pt;}
.y127{bottom:61.032512pt;}
.y17c{bottom:67.345363pt;}
.y12a{bottom:73.253741pt;}
.y12e{bottom:73.253782pt;}
.y133{bottom:73.886880pt;}
.y174{bottom:74.181648pt;}
.y179{bottom:74.689693pt;}
.y17d{bottom:75.264734pt;}
.y136{bottom:75.488112pt;}
.y124{bottom:75.488117pt;}
.y176{bottom:84.842233pt;}
.y132{bottom:85.773114pt;}
.y135{bottom:85.773131pt;}
.y17f{bottom:86.060705pt;}
.y128{bottom:87.113114pt;}
.y17b{bottom:90.832705pt;}
.y12c{bottom:91.025492pt;}
.y130{bottom:91.025533pt;}
.y23{bottom:93.472000pt;}
.y16d{bottom:94.317843pt;}
.y55{bottom:94.592000pt;}
.y121{bottom:94.937884pt;}
.y16f{bottom:97.465214pt;}
.y123{bottom:98.329355pt;}
.y189{bottom:100.512000pt;}
.ye6{bottom:102.613333pt;}
.y16e{bottom:108.667342pt;}
.y122{bottom:110.587474pt;}
.ye5{bottom:110.592000pt;}
.y22{bottom:111.232000pt;}
.y50{bottom:112.213333pt;}
.y188{bottom:121.792000pt;}
.y4f{bottom:128.192000pt;}
.y90{bottom:132.832000pt;}
.ye0{bottom:135.413333pt;}
.y187{bottom:142.906667pt;}
.y4e{bottom:146.426667pt;}
.y8f{bottom:153.946667pt;}
.ydf{bottom:155.386667pt;}
.y4d{bottom:162.426667pt;}
.y186{bottom:164.026667pt;}
.y8e{bottom:175.066667pt;}
.y49{bottom:180.079982pt;}
.y185{bottom:185.146667pt;}
.y47{bottom:192.079982pt;}
.yde{bottom:195.706667pt;}
.y46{bottom:196.026667pt;}
.y8d{bottom:196.346667pt;}
.y182{bottom:202.813315pt;}
.ydd{bottom:216.826667pt;}
.y8c{bottom:217.466667pt;}
.y181{bottom:222.746667pt;}
.y39{bottom:231.413333pt;}
.y8b{bottom:235.066667pt;}
.ydc{bottom:237.946667pt;}
.y38{bottom:247.386667pt;}
.y16b{bottom:254.946667pt;}
.yda{bottom:255.613315pt;}
.yd9{bottom:259.546667pt;}
.yd5{bottom:277.346667pt;}
.yd7{bottom:278.613333pt;}
.yd4{bottom:281.306667pt;}
.y180{bottom:296.186667pt;}
.yd3{bottom:302.626667pt;}
.y37{bottom:311.906667pt;}
.yd2{bottom:323.746667pt;}
.y33{bottom:329.546667pt;}
.y36{bottom:337.506667pt;}
.yd1{bottom:344.866667pt;}
.y32{bottom:363.106667pt;}
.yd0{bottom:366.146667pt;}
.y16a{bottom:380.546667pt;}
.y2d{bottom:380.746630pt;}
.ycf{bottom:387.266667pt;}
.y2c{bottom:396.706667pt;}
.y169{bottom:401.826667pt;}
.yce{bottom:408.386667pt;}
.y15a{bottom:419.413297pt;}
.ycd{bottom:429.506667pt;}
.y168{bottom:435.426667pt;}
.y2b{bottom:438.946667pt;}
.yca{bottom:447.279964pt;}
.yc9{bottom:451.266667pt;}
.y2a{bottom:460.226667pt;}
.y14f{bottom:474.013297pt;}
.yc8{bottom:474.146667pt;}
.y29{bottom:481.346667pt;}
.y159{bottom:489.986667pt;}
.yc0{bottom:491.746630pt;}
.y21{bottom:502.466667pt;}
.ybf{bottom:510.466667pt;}
.y20{bottom:523.586667pt;}
.y14e{bottom:529.666667pt;}
.y1f{bottom:544.893333pt;}
.y147{bottom:547.279964pt;}
.ybe{bottom:551.453333pt;}
.y14d{bottom:555.293333pt;}
.y1e{bottom:566.013333pt;}
.ybd{bottom:572.573333pt;}
.y13b{bottom:576.079964pt;}
.y143{bottom:576.080000pt;}
.y146{bottom:576.093333pt;}
.y1d{bottom:587.133333pt;}
.y13a{bottom:588.413333pt;}
.yba{bottom:590.013297pt;}
.yb9{bottom:596.733333pt;}
.y1c{bottom:608.253333pt;}
.y139{bottom:608.413333pt;}
.yf2{bottom:622.706667pt;}
.y11e{bottom:626.013261pt;}
.y1b{bottom:629.533333pt;}
.yb8{bottom:641.533333pt;}
.y8a{bottom:644.413333pt;}
.y1a{bottom:650.653333pt;}
.y138{bottom:660.733333pt;}
.y89{bottom:665.533333pt;}
.y19{bottom:671.773333pt;}
.yb7{bottom:681.853333pt;}
.y86{bottom:683.946594pt;}
.y85{bottom:686.653333pt;}
.y18{bottom:692.893333pt;}
.yb6{bottom:703.133333pt;}
.y84{bottom:711.613333pt;}
.y17{bottom:714.013333pt;}
.yb5{bottom:724.253333pt;}
.y83{bottom:732.733333pt;}
.y16{bottom:735.293333pt;}
.yef{bottom:741.946667pt;}
.yee{bottom:742.946667pt;}
.yb4{bottom:745.853333pt;}
.y82{bottom:754.013333pt;}
.y11d{bottom:754.333333pt;}
.y15{bottom:756.413333pt;}
.y79{bottom:771.613261pt;}
.yb3{bottom:775.173333pt;}
.y11c{bottom:775.493333pt;}
.y14{bottom:777.573333pt;}
.y78{bottom:791.653333pt;}
.yb2{bottom:796.293333pt;}
.y11b{bottom:796.773333pt;}
.y13{bottom:798.693333pt;}
.y112{bottom:814.146594pt;}
.yeb{bottom:815.026667pt;}
.y12{bottom:819.973333pt;}
.yb1{bottom:820.613333pt;}
.y75{bottom:821.679928pt;}
.y74{bottom:829.733333pt;}
.y111{bottom:834.213333pt;}
.y11{bottom:841.093333pt;}
.yb0{bottom:846.213333pt;}
.y6b{bottom:852.879928pt;}
.y10{bottom:862.213333pt;}
.yae{bottom:863.746667pt;}
.ye9{bottom:864.946667pt;}
.yad{bottom:867.813333pt;}
.y6a{bottom:872.933333pt;}
.y110{bottom:874.533333pt;}
.y28{bottom:883.333333pt;}
.ya2{bottom:888.546594pt;}
.yf{bottom:889.413333pt;}
.y101{bottom:897.213261pt;}
.y10f{bottom:897.253333pt;}
.ye{bottom:904.613333pt;}
.ya1{bottom:908.613333pt;}
.y69{bottom:908.773333pt;}
.yd{bottom:925.733333pt;}
.y63{bottom:926.346594pt;}
.y66{bottom:934.373333pt;}
.ya0{bottom:944.293333pt;}
.y27{bottom:946.853333pt;}
.yc{bottom:948.933333pt;}
.y100{bottom:955.653333pt;}
.y61{bottom:957.679928pt;}
.y60{bottom:961.733333pt;}
.y96{bottom:961.813261pt;}
.y26{bottom:967.973333pt;}
.yfb{bottom:973.213261pt;}
.yb{bottom:977.253333pt;}
.y91{bottom:979.146594pt;}
.y57{bottom:981.213261pt;}
.y9f{bottom:988.613333pt;}
.y25{bottom:989.253333pt;}
.y56{bottom:1001.253333pt;}
.ya{bottom:1005.413333pt;}
.y24{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.h5d{height:16.000375pt;}
.h5f{height:16.599890pt;}
.h5b{height:16.666110pt;}
.h4e{height:18.732934pt;}
.h18{height:20.666690pt;}
.h58{height:20.666708pt;}
.h27{height:20.666744pt;}
.h6a{height:20.980000pt;}
.h6f{height:20.999789pt;}
.h3f{height:21.267041pt;}
.h5{height:21.472000pt;}
.h6c{height:25.000000pt;}
.h25{height:25.427110pt;}
.h94{height:25.933621pt;}
.h8c{height:25.933657pt;}
.h47{height:26.377462pt;}
.h71{height:26.999973pt;}
.hf{height:27.333310pt;}
.h2c{height:27.333383pt;}
.h3a{height:27.353297pt;}
.ha0{height:27.434573pt;}
.h8e{height:28.177741pt;}
.h92{height:28.274634pt;}
.h9a{height:28.381466pt;}
.h30{height:28.470618pt;}
.h50{height:28.599910pt;}
.h29{height:28.600592pt;}
.h35{height:28.666832pt;}
.h77{height:28.926911pt;}
.h2d{height:29.432104pt;}
.h16{height:29.525483pt;}
.h10{height:29.698550pt;}
.h14{height:29.792775pt;}
.h7e{height:30.050624pt;}
.ha{height:30.066250pt;}
.h67{height:30.133650pt;}
.h87{height:30.227614pt;}
.h2a{height:30.796615pt;}
.h62{height:31.167391pt;}
.h68{height:32.559043pt;}
.h51{height:32.608596pt;}
.h72{height:35.498582pt;}
.h2{height:41.507812pt;}
.h24{height:43.612853pt;}
.h22{height:43.999279pt;}
.h1d{height:44.000718pt;}
.h7{height:44.875000pt;}
.h42{height:45.867497pt;}
.h3{height:45.935313pt;}
.ha7{height:46.593750pt;}
.h3c{height:46.916670pt;}
.ha1{height:46.950282pt;}
.h38{height:47.332363pt;}
.ha2{height:47.574097pt;}
.h95{height:47.684625pt;}
.h20{height:47.741056pt;}
.h90{height:47.779457pt;}
.h4{height:48.000000pt;}
.h8f{height:48.318197pt;}
.h93{height:48.414289pt;}
.h1a{height:48.667406pt;}
.h9b{height:48.680197pt;}
.h5a{height:48.771188pt;}
.h32{height:48.833112pt;}
.ha5{height:49.265728pt;}
.h97{height:49.265746pt;}
.h2e{height:49.265782pt;}
.h17{height:50.702918pt;}
.h23{height:51.266362pt;}
.h7f{height:51.543155pt;}
.h6e{height:51.828978pt;}
.h88{height:51.908659pt;}
.h99{height:51.999300pt;}
.h7d{height:51.999833pt;}
.hc{height:52.001583pt;}
.h7a{height:52.001619pt;}
.h6{height:52.503750pt;}
.hb{height:52.750000pt;}
.h36{height:52.931260pt;}
.h75{height:52.968000pt;}
.h49{height:53.139894pt;}
.h53{height:53.267229pt;}
.h63{height:53.458645pt;}
.h61{height:53.932219pt;}
.h83{height:53.932292pt;}
.h44{height:55.063647pt;}
.h3d{height:55.149957pt;}
.h9{height:55.343750pt;}
.h73{height:56.086120pt;}
.h1f{height:56.119013pt;}
.h7b{height:56.422005pt;}
.h9c{height:57.222962pt;}
.h33{height:57.402711pt;}
.h28{height:57.444618pt;}
.h26{height:57.613915pt;}
.h76{height:58.322692pt;}
.h13{height:59.600644pt;}
.h4a{height:59.719418pt;}
.h80{height:60.588333pt;}
.h89{height:61.017978pt;}
.h45{height:61.881362pt;}
.h3e{height:61.978358pt;}
.h1c{height:62.070937pt;}
.h46{height:62.134496pt;}
.ha4{height:62.282996pt;}
.h64{height:62.839968pt;}
.h21{height:63.067398pt;}
.h8d{height:63.257157pt;}
.h40{height:63.272029pt;}
.h4b{height:63.475110pt;}
.h3b{height:63.758080pt;}
.h55{height:63.947037pt;}
.h5e{height:64.304905pt;}
.h9e{height:64.308032pt;}
.h19{height:64.428234pt;}
.h34{height:64.510037pt;}
.ha3{height:65.043121pt;}
.h79{height:65.543926pt;}
.h69{height:65.663999pt;}
.h43{height:65.716898pt;}
.h52{height:65.728642pt;}
.h31{height:66.225864pt;}
.hd{height:66.323360pt;}
.h11{height:66.671273pt;}
.h15{height:66.980108pt;}
.h9d{height:67.199930pt;}
.ha6{height:67.303754pt;}
.h98{height:67.326894pt;}
.h4d{height:67.599846pt;}
.h59{height:67.638076pt;}
.h74{height:68.047062pt;}
.h70{height:68.047077pt;}
.h6b{height:68.047092pt;}
.h82{height:68.090087pt;}
.h60{height:68.205119pt;}
.h5c{height:68.477276pt;}
.h78{height:68.501288pt;}
.h8b{height:68.572929pt;}
.h1b{height:69.756260pt;}
.h2b{height:69.762243pt;}
.h66{height:70.620509pt;}
.h57{height:71.864650pt;}
.h81{height:71.961825pt;}
.h6d{height:73.230679pt;}
.h8{height:73.607188pt;}
.h65{height:73.748734pt;}
.h85{height:73.881881pt;}
.h12{height:74.135385pt;}
.he{height:74.535198pt;}
.h41{height:75.468373pt;}
.h54{height:76.605426pt;}
.h7c{height:77.756436pt;}
.h4f{height:80.147532pt;}
.h96{height:80.408913pt;}
.h91{height:80.534149pt;}
.h39{height:81.822373pt;}
.h1e{height:83.299778pt;}
.h4c{height:85.164636pt;}
.h2f{height:85.291157pt;}
.h37{height:88.883192pt;}
.h84{height:89.810254pt;}
.h56{height:103.137561pt;}
.h48{height:103.472853pt;}
.h8a{height:116.265454pt;}
.h9f{height:119.394922pt;}
.h86{height:122.063496pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:11.332798pt;}
.w21{width:12.999829pt;}
.w18{width:17.266780pt;}
.wd{width:17.266789pt;}
.w13{width:17.333048pt;}
.w19{width:18.666641pt;}
.w23{width:19.000000pt;}
.w20{width:20.666275pt;}
.w14{width:21.332826pt;}
.w1b{width:24.000254pt;}
.wf{width:36.666905pt;}
.w11{width:45.933741pt;}
.w1e{width:51.998793pt;}
.w1c{width:51.998829pt;}
.w29{width:54.067587pt;}
.w22{width:55.000000pt;}
.we{width:56.000045pt;}
.wa{width:57.267253pt;}
.w31{width:59.334206pt;}
.w6{width:66.066664pt;}
.w7{width:70.731499pt;}
.w2a{width:72.000996pt;}
.w25{width:75.330710pt;}
.w2b{width:76.000806pt;}
.w2d{width:77.464732pt;}
.w15{width:78.068534pt;}
.w2c{width:78.731637pt;}
.w24{width:88.997637pt;}
.w16{width:91.996144pt;}
.w9{width:96.000663pt;}
.w1f{width:102.134385pt;}
.w2e{width:111.398107pt;}
.w4{width:118.752000pt;}
.wb{width:127.996505pt;}
.w28{width:128.602392pt;}
.w27{width:129.870014pt;}
.w26{width:144.001207pt;}
.w12{width:145.260903pt;}
.wc{width:145.328950pt;}
.w17{width:146.667616pt;}
.w2f{width:151.402598pt;}
.w1a{width:171.196665pt;}
.w30{width:178.603431pt;}
.w10{width:192.004800pt;}
.w8{width:197.466296pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x60{left:0.937717pt;}
.x16{left:2.717013pt;}
.x23{left:4.309813pt;}
.x6d{left:9.646954pt;}
.x30{left:10.557570pt;}
.x7a{left:12.148878pt;}
.x93{left:14.164658pt;}
.x61{left:15.165475pt;}
.x17{left:16.409877pt;}
.x38{left:17.894635pt;}
.x92{left:19.151598pt;}
.x9d{left:20.786260pt;}
.x9b{left:23.408485pt;}
.x26{left:25.041400pt;}
.x3a{left:27.649997pt;}
.xa9{left:28.684212pt;}
.x41{left:29.870101pt;}
.x5c{left:31.156154pt;}
.x15{left:32.104258pt;}
.x8e{left:33.472082pt;}
.x4b{left:34.864147pt;}
.x72{left:35.798470pt;}
.x14{left:38.466589pt;}
.x33{left:39.690734pt;}
.x1b{left:41.885957pt;}
.x87{left:42.894183pt;}
.xa8{left:43.855544pt;}
.x2b{left:45.526261pt;}
.x5a{left:46.451414pt;}
.x7{left:47.360000pt;}
.x6a{left:48.998361pt;}
.xa6{left:50.571116pt;}
.x4e{left:53.196067pt;}
.x32{left:55.326687pt;}
.x1a{left:57.226396pt;}
.x94{left:58.524236pt;}
.x59{left:60.224339pt;}
.x8f{left:61.169076pt;}
.x2f{left:64.288524pt;}
.x5f{left:66.091356pt;}
.x37{left:67.460445pt;}
.x27{left:68.629229pt;}
.x89{left:69.799278pt;}
.x62{left:71.167900pt;}
.x81{left:72.077425pt;}
.x4f{left:73.256859pt;}
.x80{left:74.658560pt;}
.x52{left:75.679988pt;}
.x78{left:76.898207pt;}
.x46{left:78.947856pt;}
.x31{left:80.722581pt;}
.x8b{left:83.751407pt;}
.x4{left:85.151988pt;}
.x85{left:86.833116pt;}
.x9a{left:88.483140pt;}
.x9e{left:89.385873pt;}
.x20{left:90.340139pt;}
.x44{left:91.542681pt;}
.x50{left:95.634504pt;}
.x63{left:96.776549pt;}
.x8d{left:98.852295pt;}
.x99{left:101.220345pt;}
.xe{left:102.751988pt;}
.x39{left:103.974580pt;}
.x5e{left:105.471988pt;}
.x69{left:106.827616pt;}
.x1{left:108.191988pt;}
.x9{left:109.151988pt;}
.x22{left:113.488771pt;}
.x8c{left:115.623577pt;}
.x12{left:116.671988pt;}
.x21{left:119.104834pt;}
.x35{left:120.991988pt;}
.x4c{left:122.911988pt;}
.x66{left:125.151988pt;}
.x86{left:126.485091pt;}
.x5{left:127.674667pt;}
.xa4{left:128.854116pt;}
.x36{left:130.569839pt;}
.x10{left:132.351988pt;}
.x2{left:133.466655pt;}
.x9f{left:136.264900pt;}
.x49{left:137.903055pt;}
.x9c{left:140.910754pt;}
.x25{left:142.804289pt;}
.xa2{left:145.592679pt;}
.xa3{left:148.995846pt;}
.x68{left:150.901383pt;}
.x24{left:153.023891pt;}
.x67{left:154.346649pt;}
.xa{left:155.866655pt;}
.x79{left:158.146649pt;}
.xa5{left:159.306187pt;}
.x65{left:162.346649pt;}
.x3c{left:163.746649pt;}
.x1f{left:166.024501pt;}
.xa1{left:167.599833pt;}
.x1e{left:171.640564pt;}
.x47{left:173.557280pt;}
.x48{left:176.224013pt;}
.x45{left:179.518213pt;}
.x3d{left:180.986655pt;}
.x7d{left:197.373333pt;}
.xaa{left:224.506655pt;}
.x29{left:229.626655pt;}
.xf{left:263.106655pt;}
.x96{left:276.213315pt;}
.x2d{left:284.866655pt;}
.x4d{left:290.946667pt;}
.x43{left:299.613333pt;}
.xa0{left:302.946649pt;}
.x2a{left:306.346630pt;}
.x58{left:307.280000pt;}
.x1d{left:316.879964pt;}
.x84{left:320.213297pt;}
.x82{left:325.213297pt;}
.xb{left:328.226655pt;}
.x77{left:329.813297pt;}
.xd{left:336.866655pt;}
.x2e{left:339.613297pt;}
.x6{left:340.706667pt;}
.x91{left:345.346630pt;}
.x3e{left:346.613297pt;}
.x13{left:348.746630pt;}
.x97{left:354.946630pt;}
.x3{left:357.826655pt;}
.x19{left:361.679964pt;}
.x2c{left:363.586655pt;}
.x5b{left:385.346630pt;}
.x76{left:392.226655pt;}
.xc{left:397.186655pt;}
.x53{left:399.413297pt;}
.x83{left:400.546655pt;}
.x3f{left:402.626655pt;}
.x40{left:406.613297pt;}
.x7c{left:407.546667pt;}
.x18{left:414.813322pt;}
.x54{left:416.733322pt;}
.x55{left:429.013297pt;}
.x98{left:430.946667pt;}
.x1c{left:432.413322pt;}
.x51{left:436.253322pt;}
.x42{left:443.293322pt;}
.x71{left:448.746630pt;}
.x56{left:450.333322pt;}
.x64{left:452.253322pt;}
.x75{left:455.293322pt;}
.x6b{left:456.573322pt;}
.x8a{left:457.853322pt;}
.x8{left:460.093333pt;}
.x88{left:464.253322pt;}
.x34{left:467.613322pt;}
.x3b{left:474.333322pt;}
.x7e{left:476.266667pt;}
.x5d{left:477.373322pt;}
.xa7{left:481.533322pt;}
.x6c{left:485.013297pt;}
.x4a{left:491.613322pt;}
.x95{left:493.373322pt;}
.x73{left:500.733322pt;}
.x6e{left:509.053322pt;}
.x7b{left:511.413333pt;}
.x6f{left:513.013297pt;}
.x28{left:514.333322pt;}
.x7f{left:525.520000pt;}
.x70{left:537.053322pt;}
.x90{left:616.453322pt;}
.x57{left:650.853322pt;}
.x11{left:689.253322pt;}
.x74{left:697.546594pt;}
}




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