
    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_5c51d2c0fb2c27c0a881eb75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_2707c4af82334a5d0aa18b28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_00c8628234490ee321073548.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_960d2af82d2a3d7013b7bf19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_1f474f5e42a7af75deebe570.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_23758db6e1f2f8b61f460de9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136230;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_feaa5f6d6f7e71c8ad37bf81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_c0c4fafafa76047d618ed60c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_fd2446e1ae89d695bbfad028.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_e27d2eec68158e553c866f6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_c0fcee4b57b097c1d362f09b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;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_2de74a42abd57392842642ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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_fa37397481c93cc20cd6e95b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_394bde7e8a075254771c71d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_f50b5eb637492729abd8ccb2.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ddc725a4bb817ffe8256caa3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_62394e25d4de0b1b3fe7a576.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ce1a77ca4afb8f02d9902579.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_74f963fd149bd003442c2881.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;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;}
.m10{transform:matrix(0.000000,-0.248499,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248499,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248499,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.248864,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248864,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248864,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.249686,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249686,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249686,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.250479,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250479,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250479,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.261572,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.261572,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.261572,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.264208,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.264208,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.264208,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.253064,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253064,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253064,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.253827,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253827,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253827,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.256700,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.256700,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.256700,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.259423,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259423,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259423,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.260520,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.260520,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.260520,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.264639,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.264639,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.264639,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.265871,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.265871,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.265871,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.266994,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.266994,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.266994,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.268665,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.268665,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.268665,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.232631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232631,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.234088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234088,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235076,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.236171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236171,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.236556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236556,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.238940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238940,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240919,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246231,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246973,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,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);}
.m17{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,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);}
.v6{vertical-align:-23.089658px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v5{vertical-align:-16.560000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.ls49{letter-spacing:-3.107227px;}
.ls3d{letter-spacing:-3.020315px;}
.ls3a{letter-spacing:-2.971317px;}
.ls46{letter-spacing:-2.963948px;}
.ls2b{letter-spacing:-2.767043px;}
.ls28{letter-spacing:-2.749735px;}
.ls22{letter-spacing:-2.683504px;}
.ls25{letter-spacing:-2.651536px;}
.ls44{letter-spacing:-2.609005px;}
.ls4d{letter-spacing:-2.600891px;}
.ls2c{letter-spacing:-2.594103px;}
.ls45{letter-spacing:-2.585814px;}
.ls4f{letter-spacing:-2.581850px;}
.ls29{letter-spacing:-2.577876px;}
.ls2d{letter-spacing:-2.571044px;}
.ls41{letter-spacing:-2.556020px;}
.ls2a{letter-spacing:-2.554962px;}
.ls4a{letter-spacing:-2.542277px;}
.ls42{letter-spacing:-2.533300px;}
.ls4b{letter-spacing:-2.519679px;}
.ls23{letter-spacing:-2.515785px;}
.ls24{letter-spacing:-2.493422px;}
.ls26{letter-spacing:-2.485815px;}
.ls3e{letter-spacing:-2.480185px;}
.ls27{letter-spacing:-2.463719px;}
.ls3f{letter-spacing:-2.458139px;}
.ls3b{letter-spacing:-2.439950px;}
.ls47{letter-spacing:-2.425048px;}
.ls3c{letter-spacing:-2.418262px;}
.ls48{letter-spacing:-2.403492px;}
.ls43{letter-spacing:-2.295924px;}
.ls40{letter-spacing:-2.249297px;}
.ls4c{letter-spacing:-2.196308px;}
.ls4e{letter-spacing:-2.180229px;}
.ls39{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.ls59{letter-spacing:-0.531600px;}
.ls7{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.252000px;}
.ls14{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.106800px;}
.ls57{letter-spacing:-0.054720px;}
.ls8{letter-spacing:-0.053280px;}
.ls54{letter-spacing:-0.041530px;}
.ls56{letter-spacing:-0.041125px;}
.ls21{letter-spacing:-0.027012px;}
.ls20{letter-spacing:-0.026428px;}
.ls53{letter-spacing:-0.024888px;}
.ls55{letter-spacing:-0.024645px;}
.ls15{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.054720px;}
.ls52{letter-spacing:0.103551px;}
.ls50{letter-spacing:0.104573px;}
.lsd{letter-spacing:0.106800px;}
.lse{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.234000px;}
.ls10{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.900000px;}
.ls1b{letter-spacing:1.710128px;}
.ls1a{letter-spacing:1.730746px;}
.ls2e{letter-spacing:4.500000px;}
.ls2f{letter-spacing:5.220000px;}
.ls30{letter-spacing:5.940000px;}
.ls32{letter-spacing:7.840885px;}
.ls3{letter-spacing:9.648000px;}
.ls1{letter-spacing:12.528000px;}
.ls1d{letter-spacing:13.044204px;}
.ls1c{letter-spacing:13.055662px;}
.ls1e{letter-spacing:13.137841px;}
.ls31{letter-spacing:13.631699px;}
.ls33{letter-spacing:13.867512px;}
.ls1f{letter-spacing:14.014071px;}
.ls34{letter-spacing:14.672195px;}
.ls2{letter-spacing:19.008000px;}
.ls58{letter-spacing:49.707360px;}
.ls35{letter-spacing:89.033015px;}
.ls36{letter-spacing:91.759882px;}
.ls18{letter-spacing:130.164793px;}
.ls19{letter-spacing:133.039775px;}
.ls38{letter-spacing:140.078790px;}
.ls37{letter-spacing:141.990409px;}
.ls51{letter-spacing:389.922818px;}
.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;}
}
.wsb{word-spacing:-59.866800px;}
.ws64{word-spacing:-51.120000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.660000px;}
.wsc{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.274720px;}
.wse{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.626000px;}
.ws61{word-spacing:-13.518000px;}
.wsd{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.482000px;}
.ws15{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.248000px;}
.ws65{word-spacing:-13.140000px;}
.ws63{word-spacing:-12.780000px;}
.ws12{word-spacing:-12.672000px;}
.ws1{word-spacing:-12.420000px;}
.ws66{word-spacing:-12.248400px;}
.ws3{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.898000px;}
.ws2{word-spacing:-11.700000px;}
.ws5d{word-spacing:-11.464027px;}
.ws21{word-spacing:-10.237177px;}
.ws27{word-spacing:-10.115225px;}
.ws4{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.000000px;}
.ws2b{word-spacing:-4.322163px;}
.ws1e{word-spacing:-4.218058px;}
.ws37{word-spacing:-3.491584px;}
.ws46{word-spacing:-0.009755px;}
.ws55{word-spacing:-0.009724px;}
.ws2f{word-spacing:-0.009699px;}
.ws59{word-spacing:-0.009653px;}
.ws28{word-spacing:-0.009638px;}
.ws41{word-spacing:-0.009557px;}
.ws50{word-spacing:-0.009505px;}
.ws1b{word-spacing:-0.009406px;}
.ws22{word-spacing:-0.009294px;}
.ws3b{word-spacing:-0.009273px;}
.ws34{word-spacing:-0.009123px;}
.ws4a{word-spacing:-0.009067px;}
.ws62{word-spacing:-0.002160px;}
.ws7{word-spacing:0.000000px;}
.ws36{word-spacing:2.246960px;}
.ws3d{word-spacing:2.272990px;}
.ws3e{word-spacing:2.382279px;}
.ws24{word-spacing:5.759024px;}
.ws1d{word-spacing:5.806093px;}
.ws23{word-spacing:5.996703px;}
.ws1c{word-spacing:6.057819px;}
.ws2a{word-spacing:6.184416px;}
.ws31{word-spacing:6.246403px;}
.ws25{word-spacing:6.836356px;}
.ws29{word-spacing:7.089537px;}
.ws30{word-spacing:7.134163px;}
.ws35{word-spacing:8.145291px;}
.ws3c{word-spacing:8.279608px;}
.ws4b{word-spacing:10.997658px;}
.ws51{word-spacing:11.529294px;}
.ws43{word-spacing:56.691047px;}
.ws48{word-spacing:69.485111px;}
.ws42{word-spacing:84.580186px;}
.ws47{word-spacing:86.356675px;}
.ws18{word-spacing:98.158628px;}
.ws19{word-spacing:100.326682px;}
.ws56{word-spacing:121.098558px;}
.ws5a{word-spacing:128.875060px;}
.ws4d{word-spacing:133.699974px;}
.ws39{word-spacing:134.521564px;}
.ws3f{word-spacing:136.706786px;}
.ws26{word-spacing:137.050233px;}
.ws20{word-spacing:138.702541px;}
.ws52{word-spacing:140.163144px;}
.ws45{word-spacing:140.886752px;}
.ws2d{word-spacing:142.091458px;}
.ws5b{word-spacing:142.310496px;}
.ws32{word-spacing:142.985861px;}
.ws58{word-spacing:143.360050px;}
.ws49{word-spacing:143.807252px;}
.ws4c{word-spacing:145.249793px;}
.ws38{word-spacing:146.142356px;}
.ws1f{word-spacing:150.684511px;}
.ws44{word-spacing:153.060352px;}
.ws2c{word-spacing:154.369153px;}
.ws57{word-spacing:155.747361px;}
.ws5e{word-spacing:353.104846px;}
.ws60{word-spacing:388.272632px;}
.ws4f{word-spacing:531.924617px;}
.ws4e{word-spacing:534.444849px;}
.ws3a{word-spacing:536.069859px;}
.ws40{word-spacing:544.931819px;}
.ws54{word-spacing:557.638301px;}
.ws53{word-spacing:560.280364px;}
.ws2e{word-spacing:575.087815px;}
.ws33{word-spacing:578.707740px;}
.ws5f{word-spacing:769.363294px;}
.ws5c{word-spacing:776.951601px;}
._66{margin-left:-889.063554px;}
._63{margin-left:-788.682450px;}
._e{margin-left:-3.561600px;}
._d{margin-left:-2.509920px;}
._0{margin-left:-1.152000px;}
._1{width:1.128000px;}
._2{width:2.460000px;}
._7{width:4.068000px;}
._c{width:5.412000px;}
._5{width:6.528000px;}
._6{width:8.100000px;}
._f{width:9.172560px;}
._b{width:10.224000px;}
._67{width:11.242560px;}
._9{width:12.288000px;}
._8{width:13.368000px;}
._2c{width:14.610000px;}
._a{width:15.648000px;}
._15{width:17.118000px;}
._46{width:18.232845px;}
._4{width:19.284000px;}
._3{width:20.424000px;}
._68{width:21.521520px;}
._17{width:22.788000px;}
._2b{width:24.570000px;}
._10{width:26.106000px;}
._2e{width:27.762000px;}
._14{width:29.592000px;}
._1d{width:33.534000px;}
._2d{width:40.524000px;}
._23{width:42.150000px;}
._1c{width:44.172000px;}
._1e{width:48.924000px;}
._5c{width:51.245181px;}
._24{width:52.254000px;}
._3c{width:53.924195px;}
._1b{width:55.350000px;}
._1a{width:56.700000px;}
._62{width:58.600124px;}
._26{width:62.046000px;}
._4f{width:65.140693px;}
._54{width:66.744162px;}
._43{width:67.796430px;}
._31{width:69.157342px;}
._34{width:71.216302px;}
._20{width:72.678000px;}
._3e{width:74.243147px;}
._16{width:77.598000px;}
._11{width:79.056000px;}
._4a{width:82.220474px;}
._49{width:83.428542px;}
._27{width:85.212000px;}
._22{width:87.606000px;}
._21{width:90.558000px;}
._25{width:92.016000px;}
._61{width:94.754834px;}
._4e{width:95.896785px;}
._52{width:96.902487px;}
._53{width:101.324451px;}
._41{width:102.686455px;}
._33{width:103.925789px;}
._2f{width:105.587180px;}
._37{width:107.561462px;}
._13{width:109.350000px;}
._36{width:110.633410px;}
._19{width:112.158000px;}
._4c{width:113.990582px;}
._39{width:115.365310px;}
._1f{width:116.550000px;}
._29{width:117.559749px;}
._2a{width:120.156320px;}
._18{width:123.174000px;}
._5e{width:125.717516px;}
._12{width:127.278000px;}
._5d{width:133.612240px;}
._42{width:135.474784px;}
._35{width:137.698753px;}
._30{width:139.151959px;}
._4b{width:142.131910px;}
._38{width:143.191512px;}
._50{width:144.689048px;}
._59{width:145.971743px;}
._32{width:153.460861px;}
._56{width:156.950778px;}
._3d{width:159.838451px;}
._45{width:235.556170px;}
._48{width:239.106471px;}
._60{width:248.808785px;}
._5b{width:250.637348px;}
._3b{width:254.290356px;}
._40{width:255.822996px;}
._58{width:266.839996px;}
._28{width:279.240000px;}
._64{width:340.201067px;}
._69{width:361.316160px;}
._4d{width:383.582838px;}
._51{width:391.508747px;}
._65{width:425.431906px;}
._55{width:459.554900px;}
._57{width:481.323699px;}
._44{width:510.920203px;}
._47{width:520.623585px;}
._5f{width:541.426801px;}
._5a{width:544.213866px;}
._3a{width:547.881484px;}
._3f{width:551.330156px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(0,204,0);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(22,25,25);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3f{font-size:9.066877px;}
.fs28{font-size:9.122594px;}
.fs2e{font-size:9.273027px;}
.fs15{font-size:9.294076px;}
.fse{font-size:9.406127px;}
.fs45{font-size:9.505178px;}
.fs34{font-size:9.556561px;}
.fs1b{font-size:9.638278px;}
.fs51{font-size:9.653135px;}
.fs22{font-size:9.698946px;}
.fs4b{font-size:9.724328px;}
.fs3a{font-size:9.754663px;}
.fs3e{font-size:13.214895px;}
.fs27{font-size:13.296101px;}
.fs2d{font-size:13.515357px;}
.fs14{font-size:13.546035px;}
.fsd{font-size:13.709349px;}
.fs44{font-size:13.853714px;}
.fs33{font-size:13.928604px;}
.fs1a{font-size:14.047706px;}
.fs50{font-size:14.069361px;}
.fs21{font-size:14.136130px;}
.fs4a{font-size:14.173124px;}
.fs39{font-size:14.217336px;}
.fs7{font-size:23.187128px;}
.fs2a{font-size:23.247844px;}
.fs30{font-size:23.631206px;}
.fsa{font-size:23.699268px;}
.fs17{font-size:24.530022px;}
.fs10{font-size:24.825762px;}
.fs1d{font-size:25.438481px;}
.fs24{font-size:25.598605px;}
.fs8{font-size:26.685190px;}
.fs9{font-size:27.012239px;}
.fsb{font-size:27.593664px;}
.fsc{font-size:27.608865px;}
.fs41{font-size:30.524349px;}
.fs53{font-size:30.742374px;}
.fs4d{font-size:30.969103px;}
.fs47{font-size:31.999922px;}
.fs36{font-size:32.172906px;}
.fs3c{font-size:32.839832px;}
.fs20{font-size:35.104944px;}
.fs26{font-size:35.325914px;}
.fs43{font-size:35.496237px;}
.fs2c{font-size:35.714362px;}
.fs6{font-size:36.000000px;}
.fs32{font-size:36.303300px;}
.fs19{font-size:36.385703px;}
.fs12{font-size:36.824377px;}
.fs49{font-size:37.212155px;}
.fs38{font-size:37.413315px;}
.fs1f{font-size:37.733232px;}
.fs55{font-size:37.791398px;}
.fs25{font-size:37.970746px;}
.fs4f{font-size:38.070114px;}
.fs3d{font-size:38.188871px;}
.fs3{font-size:38.880000px;}
.fs4e{font-size:39.538468px;}
.fs18{font-size:39.550533px;}
.fs11{font-size:39.607239px;}
.fs40{font-size:39.617741px;}
.fs42{font-size:39.667565px;}
.fs54{font-size:39.846128px;}
.fs1e{font-size:39.849747px;}
.fs48{font-size:39.855780px;}
.fs29{font-size:39.861193px;}
.fs31{font-size:39.907660px;}
.fs37{font-size:39.910073px;}
.fs2b{font-size:40.101907px;}
.fs2f{font-size:40.518513px;}
.fs16{font-size:40.610484px;}
.fs5e{font-size:40.834751px;}
.fsf{font-size:41.100092px;}
.fs58{font-size:41.237509px;}
.fs46{font-size:41.532896px;}
.fs35{font-size:41.757413px;}
.fs13{font-size:41.760000px;}
.fs1c{font-size:42.114475px;}
.fs52{font-size:42.179396px;}
.fs23{font-size:42.379567px;}
.fs4c{font-size:42.490473px;}
.fs3b{font-size:42.623019px;}
.fs5c{font-size:44.388043px;}
.fs56{font-size:44.825847px;}
.fs61{font-size:45.186144px;}
.fs5b{font-size:45.927977px;}
.fs2{font-size:48.240000px;}
.fs63{font-size:51.120000px;}
.fs5d{font-size:51.710606px;}
.fs57{font-size:52.220633px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs62{font-size:63.360000px;}
.fs5f{font-size:66.456291px;}
.fs60{font-size:66.583544px;}
.fs5a{font-size:67.240264px;}
.fs59{font-size:67.547322px;}
.fs0{font-size:72.000000px;}
.y14f{bottom:-14.760000px;}
.y152{bottom:-14.580000px;}
.y146{bottom:-8.895000px;}
.y14c{bottom:-3.315000px;}
.y149{bottom:-3.135000px;}
.y0{bottom:0.000000px;}
.y25f{bottom:1.649787px;}
.y1f8{bottom:1.659925px;}
.y212{bottom:1.687298px;}
.y179{bottom:1.691128px;}
.y15b{bottom:1.711516px;}
.y279{bottom:1.729539px;}
.y22c{bottom:1.738889px;}
.y19d{bottom:1.753758px;}
.y2ab{bottom:1.756461px;}
.y1b6{bottom:1.764797px;}
.y293{bottom:1.769415px;}
.y247{bottom:1.774935px;}
.y304{bottom:2.329906px;}
.y2e6{bottom:2.352886px;}
.y8c{bottom:2.880000px;}
.ya4{bottom:3.060000px;}
.y193{bottom:3.525000px;}
.y197{bottom:3.600000px;}
.y108{bottom:5.507233px;}
.y118{bottom:5.628872px;}
.y99{bottom:6.300000px;}
.y260{bottom:7.018359px;}
.y1f9{bottom:7.061487px;}
.y213{bottom:7.177932px;}
.y17a{bottom:7.194225px;}
.ye9{bottom:7.200000px;}
.y15c{bottom:7.280960px;}
.y27a{bottom:7.357632px;}
.ye4{bottom:7.380000px;}
.y22d{bottom:7.397405px;}
.ye2{bottom:7.410000px;}
.y19e{bottom:7.460660px;}
.y2ac{bottom:7.472161px;}
.y1b7{bottom:7.507621px;}
.y294{bottom:7.527269px;}
.y248{bottom:7.550749px;}
.y316{bottom:7.560000px;}
.y310{bottom:8.280000px;}
.y30e{bottom:8.310000px;}
.y325{bottom:9.000000px;}
.y1cb{bottom:9.210000px;}
.y14e{bottom:9.360000px;}
.y1cc{bottom:9.390000px;}
.y151{bottom:9.540000px;}
.y1c9{bottom:9.570000px;}
.y329{bottom:9.930000px;}
.yb3{bottom:10.620000px;}
.y2c3{bottom:10.650000px;}
.y259{bottom:10.695000px;}
.y2c1{bottom:10.725000px;}
.y195{bottom:10.770000px;}
.y8f{bottom:10.800000px;}
.y173{bottom:10.830000px;}
.y20c{bottom:10.875000px;}
.y320{bottom:11.880000px;}
.y2fc{bottom:13.481651px;}
.y2df{bottom:13.614622px;}
.y145{bottom:15.225000px;}
.y148{bottom:15.405000px;}
.y100{bottom:15.795970px;}
.y110{bottom:16.144860px;}
.yb4{bottom:16.920000px;}
.y1fa{bottom:17.656834px;}
.y214{bottom:17.947999px;}
.y261{bottom:17.968259px;}
.y17b{bottom:17.988738px;}
.y15d{bottom:18.205615px;}
.yb1{bottom:18.360000px;}
.ya3{bottom:18.540000px;}
.y90{bottom:18.570000px;}
.y19f{bottom:18.654944px;}
.y1b8{bottom:18.772368px;}
.y27b{bottom:18.836860px;}
.y22e{bottom:18.938687px;}
.y2ad{bottom:19.130074px;}
.y295{bottom:19.271160px;}
.y249{bottom:19.331275px;}
.yf8{bottom:21.420000px;}
.ye1{bottom:21.630000px;}
.y98{bottom:21.780000px;}
.y101{bottom:21.969468px;}
.y111{bottom:22.454713px;}
.y32b{bottom:22.500000px;}
.y342{bottom:22.530000px;}
.y336{bottom:22.545000px;}
.ye7{bottom:22.680000px;}
.ye6{bottom:22.860000px;}
.y315{bottom:23.040000px;}
.y1fb{bottom:24.102369px;}
.y323{bottom:24.300000px;}
.y324{bottom:24.480000px;}
.y215{bottom:24.499822px;}
.y17c{bottom:24.555433px;}
.y15e{bottom:24.851479px;}
.y262{bottom:24.986348px;}
.y1a0{bottom:25.464833px;}
.y1b9{bottom:25.625123px;}
.yaa{bottom:26.100000px;}
.y27c{bottom:26.194209px;}
.y9e{bottom:26.280000px;}
.y8e{bottom:26.310000px;}
.y22f{bottom:26.335809px;}
.y2ae{bottom:26.382490px;}
.y296{bottom:26.577064px;}
.y201{bottom:26.592473px;}
.y24a{bottom:26.881735px;}
.y21c{bottom:27.030989px;}
.y269{bottom:27.047369px;}
.y283{bottom:27.275242px;}
.y319{bottom:27.360000px;}
.y2b7{bottom:27.480350px;}
.y184{bottom:28.573063px;}
.y238{bottom:28.945505px;}
.y29c{bottom:29.453650px;}
.y94{bottom:29.520000px;}
.y1a6{bottom:29.857534px;}
.y107{bottom:30.403837px;}
.y117{bottom:31.075375px;}
.y2f7{bottom:33.125350px;}
.y2da{bottom:33.452069px;}
.y24f{bottom:33.766318px;}
.yb0{bottom:33.840000px;}
.y1bd{bottom:34.014451px;}
.ya0{bottom:34.020000px;}
.y91{bottom:34.050000px;}
.y164{bottom:36.417379px;}
.y95{bottom:37.260000px;}
.y31d{bottom:38.340000px;}
.y119{bottom:39.902771px;}
.y10e{bottom:40.288272px;}
.y11e{bottom:41.178129px;}
.ya9{bottom:41.580000px;}
.y9d{bottom:41.760000px;}
.yb9{bottom:41.790000px;}
.y102{bottom:41.853090px;}
.y2b6{bottom:42.431270px;}
.y109{bottom:42.461631px;}
.y112{bottom:43.399491px;}
.y237{bottom:43.529018px;}
.y21b{bottom:44.563420px;}
.y183{bottom:44.664572px;}
.y93{bottom:45.000000px;}
.y282{bottom:45.241230px;}
.y268{bottom:45.636710px;}
.y2eb{bottom:46.773424px;}
.y200{bottom:46.952772px;}
.y2cf{bottom:47.234754px;}
.yac{bottom:49.320000px;}
.yd5{bottom:49.494000px;}
.y9f{bottom:49.500000px;}
.ybb{bottom:49.530000px;}
.y97{bottom:52.740000px;}
.y29b{bottom:53.153550px;}
.y1a5{bottom:53.341985px;}
.y31c{bottom:53.820000px;}
.y2{bottom:56.916000px;}
.yd6{bottom:57.234000px;}
.ya8{bottom:57.240000px;}
.yb8{bottom:57.270000px;}
.y11a{bottom:57.352607px;}
.y2b5{bottom:57.383050px;}
.y9c{bottom:57.420000px;}
.y163{bottom:57.840682px;}
.y236{bottom:58.112532px;}
.y182{bottom:60.750557px;}
.y103{bottom:61.736134px;}
.y21a{bottom:62.090063px;}
.y24e{bottom:62.424785px;}
.y10a{bottom:62.953214px;}
.y281{bottom:63.429810px;}
.y267{bottom:64.015880px;}
.y113{bottom:64.343678px;}
.y2e0{bottom:64.717074px;}
.yd4{bottom:64.974000px;}
.yd1{bottom:64.980000px;}
.yba{bottom:65.010000px;}
.yab{bottom:65.025000px;}
.ya2{bottom:65.160000px;}
.y2d0{bottom:66.173623px;}
.y1ff{bottom:67.315511px;}
.y96{bottom:68.400000px;}
.y2fd{bottom:71.354305px;}
.y1bc{bottom:72.009408px;}
.y2b4{bottom:72.326223px;}
.y235{bottom:72.696045px;}
.yb7{bottom:72.750000px;}
.ya7{bottom:72.765000px;}
.y9b{bottom:72.900000px;}
.y2ec{bottom:73.073997px;}
.y11b{bottom:74.800666px;}
.y190{bottom:74.927988px;}
.y170{bottom:75.831337px;}
.y1a4{bottom:76.605885px;}
.y29a{bottom:76.847670px;}
.y181{bottom:77.049217px;}
.y1{bottom:77.616000px;}
.y162{bottom:79.261189px;}
.y2f6{bottom:79.454982px;}
.y219{bottom:79.826144px;}
.y2d9{bottom:80.238655px;}
.ybe{bottom:80.490000px;}
.yaf{bottom:80.505000px;}
.ya1{bottom:80.640000px;}
.y280{bottom:81.392408px;}
.y104{bottom:81.646996px;}
.y303{bottom:81.840362px;}
.y266{bottom:82.597137px;}
.y2e5{bottom:82.647562px;}
.y10b{bottom:83.416400px;}
.y18f{bottom:83.609007px;}
.y16f{bottom:84.617015px;}
.y114{bottom:85.258838px;}
.y234{bottom:87.273878px;}
.y2b3{bottom:87.278003px;}
.y1fe{bottom:87.881578px;}
.ya6{bottom:88.245000px;}
.yc4{bottom:88.560000px;}
.y24d{bottom:91.086151px;}
.y11c{bottom:92.249909px;}
.y18e{bottom:92.290025px;}
.y180{bottom:93.135202px;}
.y16e{bottom:93.402694px;}
.yae{bottom:95.985000px;}
.yd0{bottom:96.120000px;}
.ybd{bottom:96.150000px;}
.yc8{bottom:96.300000px;}
.y218{bottom:97.361055px;}
.y27f{bottom:99.580988px;}
.y1a3{bottom:100.093200px;}
.y271{bottom:100.359267px;}
.y161{bottom:100.684492px;}
.y299{bottom:100.764311px;}
.y18d{bottom:100.962758px;}
.y265{bottom:101.183783px;}
.y130{bottom:101.376000px;}
.y105{bottom:101.530619px;}
.y2fe{bottom:101.814686px;}
.y233{bottom:101.857392px;}
.y16d{bottom:102.179987px;}
.y2b2{bottom:102.229783px;}
.y2e1{bottom:103.042979px;}
.y1f2{bottom:103.176000px;}
.y2ed{bottom:103.201535px;}
.y1df{bottom:103.356000px;}
.yd3{bottom:103.716000px;}
.y10c{bottom:103.907983px;}
.yc3{bottom:104.085000px;}
.y2d1{bottom:104.219422px;}
.y28b{bottom:105.210719px;}
.y115{bottom:106.203025px;}
.y209{bottom:107.620774px;}
.y1fd{bottom:108.244317px;}
.y17f{bottom:109.221187px;}
.y224{bottom:109.395465px;}
.y18c{bottom:109.643776px;}
.y11d{bottom:109.697968px;}
.y1bb{bottom:109.779544px;}
.yd2{bottom:110.205000px;}
.y270{bottom:110.681888px;}
.y16c{bottom:110.965665px;}
.yad{bottom:111.465000px;}
.ybc{bottom:111.630000px;}
.ycf{bottom:111.645000px;}
.yc5{bottom:111.825000px;}
.y8a{bottom:113.076000px;}
.y217{bottom:114.887698px;}
.y143{bottom:115.596000px;}
.y28a{bottom:116.032344px;}
.y208{bottom:116.141622px;}
.y30c{bottom:116.316000px;}
.y232{bottom:116.443745px;}
.y23f{bottom:116.659587px;}
.y1ae{bottom:117.001203px;}
.y2b1{bottom:117.181563px;}
.y1c5{bottom:117.737674px;}
.y63{bottom:117.756000px;}
.y27e{bottom:117.763917px;}
.y2be{bottom:117.838501px;}
.y223{bottom:118.056824px;}
.y34e{bottom:118.116000px;}
.y18b{bottom:118.324794px;}
.y2a3{bottom:118.707572px;}
.y256{bottom:119.077872px;}
.y264{bottom:119.557564px;}
.yc2{bottom:119.565000px;}
.y16b{bottom:119.751344px;}
.y24c{bottom:119.964934px;}
.y26f{bottom:121.007204px;}
.y106{bottom:121.413662px;}
.y160{bottom:121.889761px;}
.y1f1{bottom:123.156000px;}
.y1a2{bottom:123.365693px;}
.y10d{bottom:124.398408px;}
.y298{bottom:124.467101px;}
.y207{bottom:124.657048px;}
.y1ad{bottom:125.118649px;}
.y17e{bottom:125.519848px;}
.y1c4{bottom:125.906215px;}
.y222{bottom:126.712671px;}
.y289{bottom:126.856794px;}
.y18a{bottom:127.000289px;}
.yce{bottom:127.125000px;}
.y116{bottom:127.146026px;}
.yc7{bottom:127.305000px;}
.y23e{bottom:127.542551px;}
.y32{bottom:127.656000px;}
.y1de{bottom:127.836000px;}
.y16a{bottom:128.531432px;}
.y1fc{bottom:128.813096px;}
.y2bd{bottom:128.831444px;}
.y2a2{bottom:129.781589px;}
.y255{bottom:130.186434px;}
.yfc{bottom:130.536000px;}
.y231{bottom:131.021578px;}
.y26e{bottom:131.332520px;}
.y12f{bottom:131.976000px;}
.y2b0{bottom:132.124737px;}
.y2ff{bottom:132.277286px;}
.y216{bottom:132.411586px;}
.y206{bottom:133.175184px;}
.y1ac{bottom:133.244687px;}
.y2ee{bottom:133.386765px;}
.y1c3{bottom:134.083404px;}
.yc1{bottom:135.045000px;}
.y221{bottom:135.371273px;}
.y189{bottom:135.678545px;}
.y27d{bottom:135.726516px;}
.y142{bottom:135.756000px;}
.y169{bottom:137.314315px;}
.y288{bottom:137.681245px;}
.y263{bottom:138.144210px;}
.y23d{bottom:138.425516px;}
.y2bc{bottom:139.824388px;}
.y2a1{bottom:140.855607px;}
.y254{bottom:141.294996px;}
.y1ab{bottom:141.362132px;}
.y2e2{bottom:141.424905px;}
.y17d{bottom:141.605833px;}
.y26d{bottom:142.070094px;}
.y1c2{bottom:142.251945px;}
.y2d2{bottom:142.321243px;}
.yc6{bottom:142.785000px;}
.y306{bottom:142.819557px;}
.y25e{bottom:142.894610px;}
.y205{bottom:142.943118px;}
.y2e8{bottom:143.051758px;}
.y1f0{bottom:143.136000px;}
.y15f{bottom:143.313064px;}
.y1f7{bottom:143.772701px;}
.y31{bottom:144.216000px;}
.y272{bottom:144.543643px;}
.y220{bottom:145.300282px;}
.y26c{bottom:145.368159px;}
.y20a{bottom:145.431867px;}
.y230{bottom:145.605092px;}
.y188{bottom:145.630091px;}
.y211{bottom:146.143545px;}
.y204{bottom:146.261450px;}
.y178{bottom:146.475268px;}
.y25d{bottom:146.613017px;}
.y1a1{bottom:146.850144px;}
.y2af{bottom:147.076517px;}
.y168{bottom:147.385839px;}
.y1f6{bottom:147.513957px;}
.y1ba{bottom:147.774501px;}
.y225{bottom:147.830071px;}
.y30b{bottom:147.996000px;}
.y297{bottom:148.161222px;}
.y191{bottom:148.165623px;}
.y15a{bottom:148.241206px;}
.y24b{bottom:148.623400px;}
.y21f{bottom:148.673334px;}
.y26b{bottom:148.674308px;}
.y89{bottom:148.716000px;}
.y287{bottom:148.937882px;}
.y187{bottom:149.010800px;}
.y203{bottom:149.587915px;}
.y34d{bottom:149.616000px;}
.y23c{bottom:149.743004px;}
.y278{bottom:149.802256px;}
.y210{bottom:149.946496px;}
.y171{bottom:149.951940px;}
.y177{bottom:150.286851px;}
.y25c{bottom:150.323341px;}
.y3b9{bottom:150.510000px;}
.y22b{bottom:150.612051px;}
.y167{bottom:150.807306px;}
.y1aa{bottom:151.023439px;}
.y1f5{bottom:151.247081px;}
.y2bb{bottom:151.256245px;}
.y28c{bottom:151.531004px;}
.y19c{bottom:151.899917px;}
.y1c1{bottom:151.974065px;}
.y26a{bottom:151.980457px;}
.y21e{bottom:152.054654px;}
.y159{bottom:152.098742px;}
.y2aa{bottom:152.134074px;}
.y240{bottom:152.350144px;}
.y2a0{bottom:152.371776px;}
.y286{bottom:152.395378px;}
.y186{bottom:152.399794px;}
.y1dd{bottom:152.490000px;}
.y253{bottom:152.847089px;}
.y1b5{bottom:152.856060px;}
.y202{bottom:152.914380px;}
.y23b{bottom:153.219191px;}
.y292{bottom:153.256079px;}
.y62{bottom:153.390000px;}
.y1af{bottom:153.652873px;}
.y277{bottom:153.700414px;}
.y246{bottom:153.734151px;}
.y20f{bottom:153.741180px;}
.y2bf{bottom:153.889732px;}
.y25b{bottom:154.041748px;}
.y176{bottom:154.090148px;}
.y166{bottom:154.237159px;}
.y1a9{bottom:154.529351px;}
.y22a{bottom:154.531281px;}
.y1c6{bottom:154.620050px;}
.y2ba{bottom:154.767561px;}
.y1f4{bottom:154.988338px;}
.y2a4{bottom:155.024685px;}
.y305{bottom:155.358151px;}
.y21d{bottom:155.435973px;}
.y1c0{bottom:155.502045px;}
.y257{bottom:155.508274px;}
.y2e7{bottom:155.714021px;}
.y141{bottom:155.730000px;}
.y185{bottom:155.788789px;}
.y19b{bottom:155.852660px;}
.y285{bottom:155.861349px;}
.y29f{bottom:155.908988px;}
.y158{bottom:155.947893px;}
.y2a9{bottom:156.092911px;}
.y252{bottom:156.395335px;}
.y23a{bottom:156.703898px;}
.y1b4{bottom:156.833684px;}
.y291{bottom:157.244112px;}
.y20e{bottom:157.544131px;}
.y276{bottom:157.590098px;}
.y165{bottom:157.667012px;}
.y245{bottom:157.734624px;}
.y175{bottom:157.901731px;}
.y1a8{bottom:158.043855px;}
.ycd{bottom:158.265000px;}
.y2b9{bottom:158.287483px;}
.y229{bottom:158.441992px;}
.y1bf{bottom:159.038671px;}
.y284{bottom:159.327320px;}
.y29e{bottom:159.454870px;}
.y19a{bottom:159.796811px;}
.y157{bottom:159.805429px;}
.y251{bottom:159.952278px;}
.y2a8{bottom:160.043141px;}
.y239{bottom:160.188605px;}
.y1b3{bottom:160.802661px;}
.y290{bottom:161.223476px;}
.y275{bottom:161.488256px;}
.y1a7{bottom:161.558359px;}
.y244{bottom:161.726402px;}
.y2b8{bottom:161.807406px;}
.y228{bottom:162.361222px;}
.y12e{bottom:162.390000px;}
.y1be{bottom:162.575298px;}
.y300{bottom:162.682933px;}
.yfb{bottom:162.750000px;}
.y29d{bottom:163.000752px;}
.y1ef{bottom:163.110000px;}
.y250{bottom:163.509221px;}
.y2ef{bottom:163.515042px;}
.y199{bottom:163.749554px;}
.y2a7{bottom:164.001978px;}
.y1b2{bottom:164.780285px;}
.y28f{bottom:165.211510px;}
.y243{bottom:165.726875px;}
.y30{bottom:166.710000px;}
.y140{bottom:171.210000px;}
.ycc{bottom:173.745000px;}
.y1dc{bottom:176.970000px;}
.y61{bottom:177.870000px;}
.y30a{bottom:179.670000px;}
.y2e3{bottom:179.809072px;}
.y2fb{bottom:179.883559px;}
.y2d3{bottom:180.369283px;}
.yc0{bottom:181.290000px;}
.y1ee{bottom:183.270000px;}
.y88{bottom:184.350000px;}
.y2de{bottom:184.626887px;}
.y13f{bottom:186.690000px;}
.y2f{bottom:188.490000px;}
.y37e{bottom:189.030000px;}
.ycb{bottom:189.225000px;}
.y2fa{bottom:192.422153px;}
.y12d{bottom:192.990000px;}
.y301{bottom:193.143314px;}
.y2f0{bottom:193.698054px;}
.yfa{bottom:195.150000px;}
.y2dd{bottom:197.289150px;}
.y60{bottom:200.370000px;}
.y1db{bottom:201.450000px;}
.y13e{bottom:202.350000px;}
.y1ed{bottom:203.250000px;}
.yca{bottom:204.705000px;}
.y2f9{bottom:204.962966px;}
.y2e{bottom:205.050000px;}
.y3b8{bottom:205.230000px;}
.y37d{bottom:205.410000px;}
.y2dc{bottom:209.953655px;}
.y2f5{bottom:210.676784px;}
.y309{bottom:210.810000px;}
.y2d8{bottom:212.754710px;}
.y34c{bottom:212.790000px;}
.y5f{bottom:216.930000px;}
.y12c{bottom:217.650000px;}
.y2e4{bottom:218.134977px;}
.y2d4{bottom:218.471103px;}
.y1ec{bottom:218.730000px;}
.y1b1{bottom:219.540000px;}
.y3b7{bottom:219.990000px;}
.y87{bottom:220.170000px;}
.yc9{bottom:220.365000px;}
.y2f4{bottom:223.217597px;}
.y302{bottom:223.550440px;}
.y2f1{bottom:223.827810px;}
.y2d7{bottom:225.419214px;}
.y308{bottom:226.290000px;}
.y2d{bottom:227.550000px;}
.y1da{bottom:232.590000px;}
.y12b{bottom:233.130000px;}
.y1eb{bottom:234.210000px;}
.y3b6{bottom:234.570000px;}
.y2f3{bottom:235.756930px;}
.y2d6{bottom:238.082225px;}
.y5e{bottom:239.430000px;}
.y1c7{bottom:240.300000px;}
.y2f8{bottom:241.916019px;}
.y2c{bottom:243.930000px;}
.y2db{bottom:244.302061px;}
.y34b{bottom:244.470000px;}
.y242{bottom:246.075000px;}
.y307{bottom:246.270000px;}
.y2a6{bottom:247.005000px;}
.y37c{bottom:247.170000px;}
.y12a{bottom:248.610000px;}
.y3b5{bottom:249.330000px;}
.y2f2{bottom:254.011561px;}
.y5d{bottom:255.810000px;}
.y2d5{bottom:256.516903px;}
.yf9{bottom:259.770000px;}
.y2e9{bottom:263.370000px;}
.y37b{bottom:263.550000px;}
.y3b4{bottom:263.910000px;}
.y2ea{bottom:264.038436px;}
.y2ce{bottom:264.044141px;}
.y129{bottom:264.270000px;}
.y258{bottom:265.500000px;}
.y2b{bottom:266.430000px;}
.y2c0{bottom:269.640000px;}
.y34a{bottom:276.150000px;}
.y5c{bottom:278.310000px;}
.y3b3{bottom:278.670000px;}
.y37a{bottom:279.975000px;}
.y2a{bottom:288.255000px;}
.y86{bottom:291.495000px;}
.yf7{bottom:292.935000px;}
.y3b2{bottom:293.295000px;}
.y379{bottom:296.355000px;}
.y5b{bottom:300.135000px;}
.y349{bottom:307.695000px;}
.y3b1{bottom:308.055000px;}
.y29{bottom:310.035000px;}
.y1d0{bottom:311.655000px;}
.y5a{bottom:316.695000px;}
.y378{bottom:317.235000px;}
.y3b0{bottom:322.635000px;}
.y85{bottom:327.315000px;}
.y28{bottom:331.635000px;}
.y2c6{bottom:335.595000px;}
.y3af{bottom:337.395000px;}
.ydf{bottom:337.575000px;}
.y2ca{bottom:337.935000px;}
.y377{bottom:338.115000px;}
.y59{bottom:339.195000px;}
.y3ae{bottom:351.975000px;}
.y27{bottom:353.415000px;}
.y376{bottom:354.675000px;}
.y58{bottom:355.575000px;}
.y84{bottom:362.955000px;}
.y3ad{bottom:366.555000px;}
.y150{bottom:369.435000px;}
.y153{bottom:370.695000px;}
.y375{bottom:371.055000px;}
.y14d{bottom:371.775000px;}
.yde{bottom:374.295000px;}
.y26{bottom:375.195000px;}
.y57{bottom:378.075000px;}
.y3ac{bottom:381.315000px;}
.y348{bottom:383.835000px;}
.y374{bottom:387.435000px;}
.y25{bottom:391.755000px;}
.y56{bottom:394.635000px;}
.y128{bottom:394.995000px;}
.y13d{bottom:395.355000px;}
.y3ab{bottom:395.895000px;}
.yf6{bottom:397.335000px;}
.y83{bottom:398.595000px;}
.y373{bottom:403.815000px;}
.y347{bottom:407.235000px;}
.y127{bottom:410.475000px;}
.y3aa{bottom:410.655000px;}
.y13c{bottom:410.835000px;}
.y24{bottom:414.255000px;}
.ybf{bottom:414.435000px;}
.y55{bottom:417.135000px;}
.y1d9{bottom:419.835000px;}
.y1ea{bottom:423.435000px;}
.y372{bottom:424.695000px;}
.y3a9{bottom:425.235000px;}
.y126{bottom:425.955000px;}
.y13b{bottom:426.315000px;}
.yf5{bottom:429.555000px;}
.y346{bottom:430.455000px;}
.y82{bottom:434.415000px;}
.y23{bottom:436.035000px;}
.y54{bottom:438.915000px;}
.y1d8{bottom:439.815000px;}
.y3a8{bottom:439.995000px;}
.y125{bottom:441.435000px;}
.y13a{bottom:441.795000px;}
.y1e9{bottom:443.415000px;}
.y371{bottom:445.575000px;}
.y345{bottom:453.675000px;}
.y3a7{bottom:454.575000px;}
.y1d7{bottom:455.295000px;}
.y139{bottom:457.455000px;}
.y22{bottom:457.635000px;}
.y81{bottom:458.895000px;}
.y53{bottom:460.695000px;}
.yf4{bottom:461.955000px;}
.y3a6{bottom:469.335000px;}
.y1d6{bottom:470.775000px;}
.y1e8{bottom:474.375000px;}
.y344{bottom:476.895000px;}
.y52{bottom:477.075000px;}
.y370{bottom:478.335000px;}
.y21{bottom:479.415000px;}
.y198{bottom:479.700000px;}
.y227{bottom:483.525000px;}
.y3a5{bottom:483.915000px;}
.y28e{bottom:487.155000px;}
.y80{bottom:491.835000px;}
.yf3{bottom:494.175000px;}
.y3a4{bottom:498.675000px;}
.y36f{bottom:499.215000px;}
.y51{bottom:499.575000px;}
.y1b0{bottom:500.040000px;}
.y343{bottom:500.115000px;}
.y20{bottom:501.195000px;}
.y241{bottom:502.380000px;}
.yb6{bottom:507.675000px;}
.y2a5{bottom:507.960000px;}
.y3a3{bottom:513.255000px;}
.y7f{bottom:516.315000px;}
.y1f{bottom:517.755000px;}
.y36e{bottom:520.095000px;}
.y50{bottom:521.355000px;}
.y341{bottom:523.335000px;}
.yf2{bottom:526.575000px;}
.y3a2{bottom:527.835000px;}
.y1c8{bottom:535.575000px;}
.y1ca{bottom:536.115000px;}
.y36d{bottom:536.475000px;}
.y7e{bottom:538.095000px;}
.y1e{bottom:540.285000px;}
.y3a1{bottom:542.625000px;}
.y4f{bottom:543.165000px;}
.y340{bottom:546.765000px;}
.y2cd{bottom:547.485000px;}
.y36c{bottom:552.885000px;}
.y3a0{bottom:557.205000px;}
.yf1{bottom:558.825000px;}
.y4e{bottom:559.725000px;}
.y1d{bottom:562.065000px;}
.y2cc{bottom:567.465000px;}
.y36b{bottom:569.265000px;}
.y33f{bottom:569.985000px;}
.y2c5{bottom:571.965000px;}
.y1cf{bottom:572.145000px;}
.y2c9{bottom:578.085000px;}
.y1c{bottom:578.445000px;}
.y124{bottom:580.245000px;}
.y322{bottom:580.785000px;}
.y7d{bottom:581.505000px;}
.y4d{bottom:582.225000px;}
.y36a{bottom:585.645000px;}
.y39f{bottom:586.545000px;}
.yf0{bottom:591.225000px;}
.y33e{bottom:593.205000px;}
.y123{bottom:595.725000px;}
.y1b{bottom:601.125000px;}
.y39e{bottom:601.305000px;}
.y369{bottom:602.025000px;}
.y7c{bottom:603.285000px;}
.y4c{bottom:603.825000px;}
.y122{bottom:611.385000px;}
.y39d{bottom:615.885000px;}
.y33d{bottom:616.425000px;}
.y368{bottom:618.405000px;}
.y321{bottom:619.305000px;}
.y1a{bottom:622.725000px;}
.yef{bottom:624.345000px;}
.y7b{bottom:625.065000px;}
.y4b{bottom:625.605000px;}
.y39c{bottom:630.645000px;}
.yb5{bottom:631.905000px;}
.y367{bottom:634.785000px;}
.y33c{bottom:639.645000px;}
.y19{bottom:644.505000px;}
.y39b{bottom:645.225000px;}
.y7a{bottom:646.845000px;}
.y4a{bottom:647.385000px;}
.y366{bottom:651.165000px;}
.y39a{bottom:659.985000px;}
.y31f{bottom:660.885000px;}
.y18{bottom:661.065000px;}
.y33b{bottom:662.865000px;}
.y14b{bottom:664.020000px;}
.y138{bottom:664.305000px;}
.y1d5{bottom:664.665000px;}
.y14a{bottom:666.000000px;}
.y147{bottom:666.180000px;}
.y1e7{bottom:666.465000px;}
.ydd{bottom:666.645000px;}
.y365{bottom:667.545000px;}
.y79{bottom:668.445000px;}
.y144{bottom:669.060000px;}
.y49{bottom:669.165000px;}
.y399{bottom:674.565000px;}
.y137{bottom:679.785000px;}
.y1d4{bottom:680.145000px;}
.y1e6{bottom:682.125000px;}
.y17{bottom:683.565000px;}
.y364{bottom:683.925000px;}
.y33a{bottom:686.265000px;}
.y398{bottom:689.145000px;}
.y78{bottom:690.225000px;}
.y48{bottom:690.945000px;}
.yb2{bottom:694.005000px;}
.y136{bottom:695.265000px;}
.y1d3{bottom:695.625000px;}
.y1e5{bottom:697.605000px;}
.y363{bottom:700.305000px;}
.y31e{bottom:702.465000px;}
.y397{bottom:703.905000px;}
.ydc{bottom:706.065000px;}
.y339{bottom:709.485000px;}
.y16{bottom:709.845000px;}
.y135{bottom:710.745000px;}
.y1d2{bottom:711.105000px;}
.y77{bottom:712.005000px;}
.y47{bottom:712.545000px;}
.y1e4{bottom:713.085000px;}
.y362{bottom:716.685000px;}
.y396{bottom:718.485000px;}
.y121{bottom:720.285000px;}
.yee{bottom:724.965000px;}
.y174{bottom:726.525000px;}
.y15{bottom:730.545000px;}
.y274{bottom:730.950000px;}
.y338{bottom:732.705000px;}
.y20d{bottom:733.050000px;}
.y361{bottom:733.065000px;}
.y395{bottom:733.245000px;}
.y76{bottom:733.785000px;}
.y46{bottom:734.325000px;}
.y120{bottom:735.765000px;}
.y31b{bottom:739.545000px;}
.ya5{bottom:740.625000px;}
.y194{bottom:747.360000px;}
.y394{bottom:747.825000px;}
.y226{bottom:748.260000px;}
.y360{bottom:749.445000px;}
.y28d{bottom:750.240000px;}
.y14{bottom:751.245000px;}
.y75{bottom:755.565000px;}
.y337{bottom:755.925000px;}
.y45{bottom:756.105000px;}
.yed{bottom:757.185000px;}
.y393{bottom:762.585000px;}
.y11f{bottom:768.525000px;}
.yff{bottom:768.991568px;}
.y10f{bottom:769.002204px;}
.y35f{bottom:770.325000px;}
.y13{bottom:771.945000px;}
.y392{bottom:777.165000px;}
.y74{bottom:777.345000px;}
.y44{bottom:777.885000px;}
.y335{bottom:779.145000px;}
.yec{bottom:789.585000px;}
.y35e{bottom:791.205000px;}
.y391{bottom:791.925000px;}
.y12{bottom:792.645000px;}
.y192{bottom:797.040000px;}
.y73{bottom:798.990000px;}
.y43{bottom:799.710000px;}
.y334{bottom:802.410000px;}
.y390{bottom:806.550000px;}
.y31a{bottom:807.630000px;}
.y2c8{bottom:809.430000px;}
.y11{bottom:813.390000px;}
.y2c4{bottom:818.250000px;}
.y72{bottom:820.770000px;}
.y38f{bottom:821.130000px;}
.y42{bottom:821.490000px;}
.yeb{bottom:821.850000px;}
.y35d{bottom:824.010000px;}
.y333{bottom:825.810000px;}
.y10{bottom:834.090000px;}
.y38e{bottom:835.890000px;}
.y35c{bottom:840.390000px;}
.y71{bottom:842.550000px;}
.y41{bottom:843.090000px;}
.y318{bottom:844.710000px;}
.y1ce{bottom:845.070000px;}
.y332{bottom:849.030000px;}
.y38d{bottom:850.470000px;}
.yea{bottom:854.250000px;}
.yf{bottom:854.790000px;}
.y40{bottom:855.150000px;}
.y35b{bottom:856.770000px;}
.y70{bottom:864.330000px;}
.y9a{bottom:864.690000px;}
.y38c{bottom:865.230000px;}
.y331{bottom:872.250000px;}
.y154{bottom:872.970000px;}
.y35a{bottom:873.330000px;}
.ye{bottom:875.490000px;}
.y155{bottom:875.670000px;}
.y3f{bottom:877.650000px;}
.y38b{bottom:879.810000px;}
.y6f{bottom:886.110000px;}
.y317{bottom:886.290000px;}
.ye8{bottom:887.370000px;}
.y359{bottom:889.710000px;}
.y38a{bottom:894.570000px;}
.y330{bottom:895.470000px;}
.yd{bottom:896.190000px;}
.y3e{bottom:899.430000px;}
.y358{bottom:906.090000px;}
.y6e{bottom:907.890000px;}
.yfe{bottom:908.790000px;}
.y389{bottom:909.150000px;}
.y134{bottom:910.410000px;}
.y1d1{bottom:910.590000px;}
.y1e3{bottom:910.950000px;}
.y3d{bottom:915.990000px;}
.yc{bottom:917.790000px;}
.y32f{bottom:918.690000px;}
.y357{bottom:922.470000px;}
.y314{bottom:923.190000px;}
.y388{bottom:923.910000px;}
.y133{bottom:926.070000px;}
.y1e2{bottom:926.430000px;}
.yfd{bottom:928.770000px;}
.y6d{bottom:929.490000px;}
.ydb{bottom:934.890000px;}
.y3c{bottom:938.490000px;}
.yb{bottom:938.850000px;}
.y132{bottom:941.550000px;}
.y1e1{bottom:941.910000px;}
.y6c{bottom:951.270000px;}
.y356{bottom:955.230000px;}
.y131{bottom:957.030000px;}
.y1e0{bottom:957.390000px;}
.y92{bottom:957.930000px;}
.y387{bottom:958.290000px;}
.ya{bottom:959.550000px;}
.y3b{bottom:960.090000px;}
.y313{bottom:960.270000px;}
.y32e{bottom:965.310000px;}
.yda{bottom:967.290000px;}
.y156{bottom:969.900000px;}
.y355{bottom:971.610000px;}
.y6b{bottom:973.050000px;}
.ye5{bottom:974.490000px;}
.y25a{bottom:974.565000px;}
.y1f3{bottom:974.850000px;}
.y9{bottom:980.250000px;}
.y3a{bottom:981.870000px;}
.y312{bottom:982.770000px;}
.y273{bottom:986.220000px;}
.y20b{bottom:986.400000px;}
.y172{bottom:987.480000px;}
.y32d{bottom:988.530000px;}
.y386{bottom:989.610000px;}
.y354{bottom:992.490000px;}
.y6a{bottom:994.830000px;}
.yd9{bottom:1000.590000px;}
.y8{bottom:1000.950000px;}
.y39{bottom:1003.650000px;}
.y311{bottom:1005.270000px;}
.y385{bottom:1005.990000px;}
.y32c{bottom:1011.750000px;}
.y353{bottom:1013.370000px;}
.y69{bottom:1016.610000px;}
.ye3{bottom:1022.190000px;}
.y384{bottom:1022.370000px;}
.y38{bottom:1025.430000px;}
.y30f{bottom:1027.770000px;}
.y352{bottom:1029.750000px;}
.yd8{bottom:1030.470000px;}
.y32a{bottom:1034.970000px;}
.y7{bottom:1035.150000px;}
.y68{bottom:1038.210000px;}
.y383{bottom:1038.750000px;}
.y8d{bottom:1042.170000px;}
.y196{bottom:1046.130000px;}
.y37{bottom:1047.210000px;}
.y2c7{bottom:1049.010000px;}
.y30d{bottom:1050.990000px;}
.y382{bottom:1055.130000px;}
.ye0{bottom:1055.310000px;}
.y6{bottom:1055.850000px;}
.y2c2{bottom:1057.110000px;}
.y328{bottom:1058.190000px;}
.y67{bottom:1060.020000px;}
.yd7{bottom:1061.280000px;}
.y351{bottom:1062.540000px;}
.y36{bottom:1063.800000px;}
.y381{bottom:1071.540000px;}
.y5{bottom:1076.580000px;}
.y350{bottom:1078.920000px;}
.y66{bottom:1081.800000px;}
.y35{bottom:1086.300000px;}
.y380{bottom:1087.920000px;}
.y1cd{bottom:1089.180000px;}
.y8b{bottom:1089.540000px;}
.y2cb{bottom:1091.700000px;}
.y327{bottom:1093.500000px;}
.y4{bottom:1097.280000px;}
.y34f{bottom:1099.800000px;}
.y34{bottom:1102.680000px;}
.y65{bottom:1103.580000px;}
.y37f{bottom:1104.300000px;}
.y326{bottom:1119.240000px;}
.y64{bottom:1120.680000px;}
.y3{bottom:1121.400000px;}
.y33{bottom:1125.180000px;}
.h81{height:9.456470px;}
.h5e{height:9.514580px;}
.h67{height:9.671478px;}
.h3d{height:9.693430px;}
.h32{height:9.810297px;}
.h8a{height:9.913604px;}
.h70{height:9.967194px;}
.h48{height:10.052422px;}
.h9b{height:10.067919px;}
.h52{height:10.115698px;}
.h92{height:10.142170px;}
.h79{height:10.173808px;}
.h80{height:13.782723px;}
.h5d{height:13.867418px;}
.h66{height:14.096095px;}
.h3c{height:14.128091px;}
.h31{height:14.298422px;}
.h89{height:14.448991px;}
.h6f{height:14.527099px;}
.h47{height:14.651319px;}
.h9a{height:14.673904px;}
.h51{height:14.743542px;}
.h91{height:14.782125px;}
.h78{height:14.828237px;}
.h12{height:15.480000px;}
.h44{height:16.380000px;}
.h45{height:16.416000px;}
.h22{height:21.420000px;}
.h23{height:21.456000px;}
.h20{height:21.600000px;}
.h1f{height:21.636000px;}
.h2e{height:21.960000px;}
.h5a{height:21.996000px;}
.h2f{height:22.140000px;}
.h59{height:22.176000px;}
.hb2{height:22.500000px;}
.hb1{height:22.536000px;}
.h25{height:24.183450px;}
.h60{height:24.246775px;}
.h69{height:24.646610px;}
.h29{height:24.717596px;}
.h3f{height:25.584047px;}
.h4e{height:25.660206px;}
.h57{height:25.821725px;}
.h34{height:25.892494px;}
.h63{height:26.105664px;}
.h4a{height:26.531541px;}
.h6c{height:26.536152px;}
.h42{height:26.596385px;}
.h54{height:26.698545px;}
.h37{height:26.917037px;}
.h75{height:27.347526px;}
.ha0{height:27.623888px;}
.h97{height:27.827617px;}
.h26{height:27.831819px;}
.h2c{height:27.900000px;}
.h7d{height:27.914424px;}
.h2d{height:28.080000px;}
.h27{height:28.172921px;}
.h2a{height:28.779329px;}
.h2b{height:28.795183px;}
.h86{height:29.790684px;}
.h64{height:29.973748px;}
.h6d{height:30.468022px;}
.h43{height:30.537180px;}
.h38{height:30.905343px;}
.h8f{height:31.230791px;}
.h76{height:31.399617px;}
.h4f{height:31.668111px;}
.ha1{height:31.716929px;}
.h83{height:31.835943px;}
.h58{height:31.867448px;}
.h98{height:31.950844px;}
.h7e{height:32.050513px;}
.h9d{height:32.063336px;}
.h94{height:32.299806px;}
.h5b{height:32.400000px;}
.ha2{height:32.436000px;}
.ha3{height:32.580000px;}
.h8c{height:33.374919px;}
.h72{height:33.555336px;}
.h7b{height:34.250918px;}
.h9{height:34.855313px;}
.h4d{height:36.613359px;}
.h56{height:36.843824px;}
.h21{height:36.900000px;}
.h85{height:37.021466px;}
.hb3{height:37.080000px;}
.h62{height:37.248964px;}
.hd{height:37.591172px;}
.he{height:37.651172px;}
.h17{height:37.705078px;}
.hb{height:37.771172px;}
.h6b{height:37.863207px;}
.h41{height:37.949151px;}
.h36{height:38.406674px;}
.hb6{height:38.520000px;}
.hc{height:38.734102px;}
.h8e{height:38.811115px;}
.h74{height:39.020918px;}
.h4c{height:39.354582px;}
.h9f{height:39.415248px;}
.h55{height:39.602301px;}
.h96{height:39.705939px;}
.h7c{height:39.829799px;}
.h95{height:41.237387px;}
.h40{height:41.249970px;}
.h35{height:41.309113px;}
.h82{height:41.320066px;}
.h84{height:41.372030px;}
.h9e{height:41.558266px;}
.h4b{height:41.562041px;}
.h8d{height:41.568333px;}
.h5f{height:41.573978px;}
.hb4{height:41.580000px;}
.h6a{height:41.622442px;}
.h73{height:41.624959px;}
.h61{height:41.825036px;}
.h68{height:42.259543px;}
.h3e{height:42.355465px;}
.had{height:42.589369px;}
.h33{height:42.866112px;}
.ha7{height:43.009433px;}
.h8b{height:43.317512px;}
.h71{height:43.551676px;}
.h3a{height:43.554375px;}
.h49{height:43.924082px;}
.h9c{height:43.991792px;}
.h53{height:44.200564px;}
.h93{height:44.316236px;}
.h7a{height:44.454477px;}
.h1d{height:45.509766px;}
.hbd{height:45.828281px;}
.hab{height:46.295342px;}
.h19{height:46.620000px;}
.h13{height:46.656000px;}
.ha5{height:46.751958px;}
.hbc{height:50.146523px;}
.hba{height:50.171484px;}
.h1{height:50.273438px;}
.h3{height:50.800781px;}
.hbb{height:51.519375px;}
.h2{height:52.998047px;}
.h14{height:53.332031px;}
.h11{height:53.573906px;}
.hac{height:53.932546px;}
.hb7{height:54.421875px;}
.ha6{height:54.464488px;}
.hb9{height:55.824609px;}
.h10{height:57.324375px;}
.hf{height:58.621992px;}
.ha{height:58.651172px;}
.hb8{height:59.212969px;}
.h1a{height:62.100000px;}
.hb0{height:63.855000px;}
.hb5{height:68.076000px;}
.hae{height:69.311834px;}
.haf{height:69.444556px;}
.ha9{height:70.129494px;}
.ha8{height:70.449746px;}
.h5{height:70.606406px;}
.h8{height:70.664062px;}
.h7{height:70.786406px;}
.h6{height:71.613281px;}
.h4{height:72.562500px;}
.h1e{height:77.580000px;}
.h15{height:84.240000px;}
.h16{height:93.240000px;}
.h18{height:124.056000px;}
.h1b{height:124.236000px;}
.h24{height:130.014664px;}
.h28{height:132.336354px;}
.h87{height:145.980000px;}
.h39{height:146.160000px;}
.h7f{height:158.175000px;}
.h5c{height:159.147097px;}
.h65{height:161.771469px;}
.h3b{height:162.138665px;}
.h30{height:164.093444px;}
.h88{height:165.821425px;}
.h6e{height:166.717816px;}
.h46{height:168.143401px;}
.h99{height:168.402598px;}
.h50{height:169.200000px;}
.h90{height:169.644585px;}
.h77{height:170.173779px;}
.h1c{height:233.130000px;}
.haa{height:273.153776px;}
.ha4{height:275.847919px;}
.h0{height:1188.000000px;}
.w23{width:22.320000px;}
.w20{width:25.920000px;}
.w1f{width:25.956000px;}
.w21{width:26.100000px;}
.w27{width:26.136000px;}
.w1d{width:28.620000px;}
.w1e{width:28.800000px;}
.we{width:38.520000px;}
.wf{width:38.880000px;}
.wc{width:42.480000px;}
.w10{width:50.940000px;}
.wd{width:52.416000px;}
.w25{width:53.136000px;}
.wb{width:53.280000px;}
.w32{width:53.460000px;}
.w33{width:53.640000px;}
.w7{width:58.500000px;}
.w2a{width:60.120000px;}
.w29{width:60.300000px;}
.w28{width:60.336000px;}
.w3d{width:73.836000px;}
.w5{width:79.020000px;}
.w39{width:83.916000px;}
.w3b{width:84.276000px;}
.w3a{width:84.420000px;}
.w16{width:84.960000px;}
.wa{width:84.996000px;}
.w13{width:85.140000px;}
.w15{width:85.176000px;}
.w2{width:88.056000px;}
.w9{width:89.460000px;}
.w37{width:95.796000px;}
.w3{width:96.300000px;}
.w6{width:96.336000px;}
.w17{width:105.516000px;}
.w11{width:106.416000px;}
.w4{width:113.436000px;}
.w3c{width:116.280000px;}
.w8{width:133.956000px;}
.w1a{width:147.996000px;}
.w14{width:148.140000px;}
.w12{width:148.716000px;}
.w19{width:148.860000px;}
.w18{width:148.896000px;}
.w1b{width:172.265594px;}
.w1c{width:177.821591px;}
.w36{width:210.090000px;}
.w30{width:353.925000px;}
.w24{width:354.030000px;}
.w22{width:354.540000px;}
.w2e{width:355.080000px;}
.w35{width:356.181947px;}
.w31{width:356.680729px;}
.w26{width:356.713129px;}
.w2f{width:356.760000px;}
.w2c{width:357.225000px;}
.w2d{width:357.253129px;}
.w2b{width:358.965000px;}
.w34{width:362.029485px;}
.w38{width:449.175000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x4d{left:-160.495453px;}
.x37{left:-158.515697px;}
.x0{left:0.000000px;}
.x33{left:1.442063px;}
.x7{left:8.100000px;}
.xf{left:10.800000px;}
.x1f{left:13.209320px;}
.x2a{left:15.330000px;}
.x1e{left:16.388664px;}
.x1d{left:19.565718px;}
.x60{left:22.964739px;}
.x44{left:24.056962px;}
.x74{left:26.280000px;}
.x38{left:28.236240px;}
.x45{left:29.661273px;}
.x39{left:33.806984px;}
.x5e{left:36.135791px;}
.x36{left:37.925779px;}
.x1c{left:39.236084px;}
.x46{left:40.445466px;}
.x72{left:42.120000px;}
.x3b{left:44.318128px;}
.x51{left:46.318181px;}
.x57{left:48.317143px;}
.x69{left:49.949263px;}
.x50{left:51.301783px;}
.x3e{left:53.107227px;}
.x73{left:58.140000px;}
.x64{left:61.576715px;}
.x20{left:63.372875px;}
.x23{left:65.151965px;}
.x56{left:68.019068px;}
.x47{left:73.207297px;}
.x28{left:77.220000px;}
.x2d{left:78.840000px;}
.x3c{left:79.978435px;}
.x2{left:82.079986px;}
.x6c{left:83.175932px;}
.x62{left:84.541454px;}
.x55{left:87.455116px;}
.x5{left:88.559986px;}
.x4f{left:90.292500px;}
.x3a{left:91.933447px;}
.x4e{left:93.081635px;}
.x48{left:99.551191px;}
.x30{left:103.896000px;}
.x76{left:109.115986px;}
.x59{left:112.356000px;}
.x58{left:113.976000px;}
.x5a{left:116.136000px;}
.x6b{left:142.207013px;}
.x61{left:144.541665px;}
.x63{left:147.636896px;}
.x21{left:155.023060px;}
.x24{left:159.922299px;}
.x54{left:163.382033px;}
.x43{left:164.668310px;}
.x35{left:165.732343px;}
.x10{left:167.070000px;}
.x8{left:170.130000px;}
.x25{left:175.553262px;}
.x6d{left:181.744888px;}
.x29{left:184.860000px;}
.x2e{left:187.050000px;}
.x16{left:188.490000px;}
.x66{left:193.510097px;}
.x49{left:207.930000px;}
.x11{left:220.350000px;}
.x6a{left:252.737659px;}
.x22{left:254.415000px;}
.x5f{left:256.886923px;}
.x2b{left:259.200000px;}
.x12{left:262.830000px;}
.x9{left:266.430000px;}
.x31{left:273.990000px;}
.x6f{left:292.170000px;}
.x2f{left:310.935000px;}
.x13{left:315.255000px;}
.x2c{left:324.000000px;}
.x17{left:337.215000px;}
.x34{left:343.826459px;}
.x42{left:345.931647px;}
.x4c{left:348.120624px;}
.x65{left:351.784833px;}
.x14{left:353.775000px;}
.x3{left:370.334986px;}
.xa{left:379.875000px;}
.x70{left:387.975000px;}
.x15{left:392.655000px;}
.x1b{left:421.635000px;}
.x6{left:423.074986px;}
.x26{left:432.254986px;}
.x67{left:444.494986px;}
.x71{left:454.575000px;}
.x4{left:455.654986px;}
.xb{left:458.895000px;}
.x68{left:471.540042px;}
.x27{left:472.934986px;}
.x40{left:477.720000px;}
.x32{left:478.860000px;}
.x3d{left:480.345000px;}
.x53{left:481.500000px;}
.x52{left:483.345000px;}
.x5c{left:498.705000px;}
.x5d{left:505.005000px;}
.x18{left:507.345000px;}
.x5b{left:508.785000px;}
.xc{left:555.225000px;}
.xd{left:613.725000px;}
.x19{left:655.485000px;}
.x41{left:694.905000px;}
.x3f{left:696.060000px;}
.x1a{left:740.670000px;}
.xe{left:747.690000px;}
.x4b{left:768.750000px;}
.x4a{left:773.070000px;}
.x75{left:801.149986px;}
.x1{left:810.149986px;}
.x6e{left:828.149986px;}
@media print{
.v6{vertical-align:-20.524141pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-14.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls49{letter-spacing:-2.761980pt;}
.ls3d{letter-spacing:-2.684724pt;}
.ls3a{letter-spacing:-2.641171pt;}
.ls46{letter-spacing:-2.634620pt;}
.ls2b{letter-spacing:-2.459594pt;}
.ls28{letter-spacing:-2.444208pt;}
.ls22{letter-spacing:-2.385336pt;}
.ls25{letter-spacing:-2.356921pt;}
.ls44{letter-spacing:-2.319115pt;}
.ls4d{letter-spacing:-2.311903pt;}
.ls2c{letter-spacing:-2.305869pt;}
.ls45{letter-spacing:-2.298501pt;}
.ls4f{letter-spacing:-2.294978pt;}
.ls29{letter-spacing:-2.291445pt;}
.ls2d{letter-spacing:-2.285372pt;}
.ls41{letter-spacing:-2.272018pt;}
.ls2a{letter-spacing:-2.271077pt;}
.ls4a{letter-spacing:-2.259802pt;}
.ls42{letter-spacing:-2.251822pt;}
.ls4b{letter-spacing:-2.239715pt;}
.ls23{letter-spacing:-2.236253pt;}
.ls24{letter-spacing:-2.216375pt;}
.ls26{letter-spacing:-2.209613pt;}
.ls3e{letter-spacing:-2.204609pt;}
.ls27{letter-spacing:-2.189972pt;}
.ls3f{letter-spacing:-2.185013pt;}
.ls3b{letter-spacing:-2.168844pt;}
.ls47{letter-spacing:-2.155598pt;}
.ls3c{letter-spacing:-2.149566pt;}
.ls48{letter-spacing:-2.136437pt;}
.ls43{letter-spacing:-2.040821pt;}
.ls40{letter-spacing:-1.999376pt;}
.ls4c{letter-spacing:-1.952274pt;}
.ls4e{letter-spacing:-1.937981pt;}
.ls39{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls59{letter-spacing:-0.472533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.224000pt;}
.ls14{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls57{letter-spacing:-0.048640pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls54{letter-spacing:-0.036916pt;}
.ls56{letter-spacing:-0.036555pt;}
.ls21{letter-spacing:-0.024010pt;}
.ls20{letter-spacing:-0.023492pt;}
.ls53{letter-spacing:-0.022123pt;}
.ls55{letter-spacing:-0.021907pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.048640pt;}
.ls52{letter-spacing:0.092046pt;}
.ls50{letter-spacing:0.092954pt;}
.lsd{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.208000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:1.520114pt;}
.ls1a{letter-spacing:1.538441pt;}
.ls2e{letter-spacing:4.000000pt;}
.ls2f{letter-spacing:4.640000pt;}
.ls30{letter-spacing:5.280000pt;}
.ls32{letter-spacing:6.969675pt;}
.ls3{letter-spacing:8.576000pt;}
.ls1{letter-spacing:11.136000pt;}
.ls1d{letter-spacing:11.594848pt;}
.ls1c{letter-spacing:11.605032pt;}
.ls1e{letter-spacing:11.678081pt;}
.ls31{letter-spacing:12.117066pt;}
.ls33{letter-spacing:12.326678pt;}
.ls1f{letter-spacing:12.456952pt;}
.ls34{letter-spacing:13.041951pt;}
.ls2{letter-spacing:16.896000pt;}
.ls58{letter-spacing:44.184320pt;}
.ls35{letter-spacing:79.140458pt;}
.ls36{letter-spacing:81.564339pt;}
.ls18{letter-spacing:115.702038pt;}
.ls19{letter-spacing:118.257578pt;}
.ls38{letter-spacing:124.514480pt;}
.ls37{letter-spacing:126.213697pt;}
.ls51{letter-spacing:346.598061pt;}
.wsb{word-spacing:-53.214933pt;}
.ws64{word-spacing:-45.440000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.920000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.688640pt;}
.wse{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.112000pt;}
.ws61{word-spacing:-12.016000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.984000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.776000pt;}
.ws65{word-spacing:-11.680000pt;}
.ws63{word-spacing:-11.360000pt;}
.ws12{word-spacing:-11.264000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws66{word-spacing:-10.887467pt;}
.ws3{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.576000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws5d{word-spacing:-10.190247pt;}
.ws21{word-spacing:-9.099713pt;}
.ws27{word-spacing:-8.991311pt;}
.ws4{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws2b{word-spacing:-3.841923pt;}
.ws1e{word-spacing:-3.749385pt;}
.ws37{word-spacing:-3.103630pt;}
.ws46{word-spacing:-0.008671pt;}
.ws55{word-spacing:-0.008644pt;}
.ws2f{word-spacing:-0.008621pt;}
.ws59{word-spacing:-0.008581pt;}
.ws28{word-spacing:-0.008567pt;}
.ws41{word-spacing:-0.008495pt;}
.ws50{word-spacing:-0.008449pt;}
.ws1b{word-spacing:-0.008361pt;}
.ws22{word-spacing:-0.008261pt;}
.ws3b{word-spacing:-0.008243pt;}
.ws34{word-spacing:-0.008109pt;}
.ws4a{word-spacing:-0.008059pt;}
.ws62{word-spacing:-0.001920pt;}
.ws7{word-spacing:0.000000pt;}
.ws36{word-spacing:1.997298pt;}
.ws3d{word-spacing:2.020435pt;}
.ws3e{word-spacing:2.117581pt;}
.ws24{word-spacing:5.119132pt;}
.ws1d{word-spacing:5.160972pt;}
.ws23{word-spacing:5.330402pt;}
.ws1c{word-spacing:5.384728pt;}
.ws2a{word-spacing:5.497259pt;}
.ws31{word-spacing:5.552358pt;}
.ws25{word-spacing:6.076761pt;}
.ws29{word-spacing:6.301811pt;}
.ws30{word-spacing:6.341478pt;}
.ws35{word-spacing:7.240258pt;}
.ws3c{word-spacing:7.359652pt;}
.ws4b{word-spacing:9.775696pt;}
.ws51{word-spacing:10.248261pt;}
.ws43{word-spacing:50.392042pt;}
.ws48{word-spacing:61.764543pt;}
.ws42{word-spacing:75.182387pt;}
.ws47{word-spacing:76.761489pt;}
.ws18{word-spacing:87.252114pt;}
.ws19{word-spacing:89.179273pt;}
.ws56{word-spacing:107.643162pt;}
.ws5a{word-spacing:114.555609pt;}
.ws4d{word-spacing:118.844422pt;}
.ws39{word-spacing:119.574723pt;}
.ws3f{word-spacing:121.517143pt;}
.ws26{word-spacing:121.822430pt;}
.ws20{word-spacing:123.291147pt;}
.ws52{word-spacing:124.589461pt;}
.ws45{word-spacing:125.232668pt;}
.ws2d{word-spacing:126.303518pt;}
.ws5b{word-spacing:126.498218pt;}
.ws32{word-spacing:127.098543pt;}
.ws58{word-spacing:127.431156pt;}
.ws49{word-spacing:127.828668pt;}
.ws4c{word-spacing:129.110927pt;}
.ws38{word-spacing:129.904317pt;}
.ws1f{word-spacing:133.941788pt;}
.ws44{word-spacing:136.053646pt;}
.ws2c{word-spacing:137.217025pt;}
.ws57{word-spacing:138.442098pt;}
.ws5e{word-spacing:313.870974pt;}
.ws60{word-spacing:345.131228pt;}
.ws4f{word-spacing:472.821881pt;}
.ws4e{word-spacing:475.062088pt;}
.ws3a{word-spacing:476.506541pt;}
.ws40{word-spacing:484.383839pt;}
.ws54{word-spacing:495.678490pt;}
.ws53{word-spacing:498.026991pt;}
.ws2e{word-spacing:511.189169pt;}
.ws33{word-spacing:514.406880pt;}
.ws5f{word-spacing:683.878484pt;}
.ws5c{word-spacing:690.623646pt;}
._66{margin-left:-790.278714pt;}
._63{margin-left:-701.051067pt;}
._e{margin-left:-3.165867pt;}
._d{margin-left:-2.231040pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.002667pt;}
._2{width:2.186667pt;}
._7{width:3.616000pt;}
._c{width:4.810667pt;}
._5{width:5.802667pt;}
._6{width:7.200000pt;}
._f{width:8.153387pt;}
._b{width:9.088000pt;}
._67{width:9.993387pt;}
._9{width:10.922667pt;}
._8{width:11.882667pt;}
._2c{width:12.986667pt;}
._a{width:13.909333pt;}
._15{width:15.216000pt;}
._46{width:16.206973pt;}
._4{width:17.141333pt;}
._3{width:18.154667pt;}
._68{width:19.130240pt;}
._17{width:20.256000pt;}
._2b{width:21.840000pt;}
._10{width:23.205333pt;}
._2e{width:24.677333pt;}
._14{width:26.304000pt;}
._1d{width:29.808000pt;}
._2d{width:36.021333pt;}
._23{width:37.466667pt;}
._1c{width:39.264000pt;}
._1e{width:43.488000pt;}
._5c{width:45.551272pt;}
._24{width:46.448000pt;}
._3c{width:47.932617pt;}
._1b{width:49.200000pt;}
._1a{width:50.400000pt;}
._62{width:52.088999pt;}
._26{width:55.152000pt;}
._4f{width:57.902838pt;}
._54{width:59.328144pt;}
._43{width:60.263493pt;}
._31{width:61.473193pt;}
._34{width:63.303380pt;}
._20{width:64.602667pt;}
._3e{width:65.993908pt;}
._16{width:68.976000pt;}
._11{width:70.272000pt;}
._4a{width:73.084866pt;}
._49{width:74.158704pt;}
._27{width:75.744000pt;}
._22{width:77.872000pt;}
._21{width:80.496000pt;}
._25{width:81.792000pt;}
._61{width:84.226519pt;}
._4e{width:85.241587pt;}
._52{width:86.135544pt;}
._53{width:90.066179pt;}
._41{width:91.276848pt;}
._33{width:92.378479pt;}
._2f{width:93.855271pt;}
._37{width:95.610188pt;}
._13{width:97.200000pt;}
._36{width:98.340809pt;}
._19{width:99.696000pt;}
._4c{width:101.324962pt;}
._39{width:102.546942pt;}
._1f{width:103.600000pt;}
._29{width:104.497555pt;}
._2a{width:106.805618pt;}
._18{width:109.488000pt;}
._5e{width:111.748903pt;}
._12{width:113.136000pt;}
._5d{width:118.766435pt;}
._42{width:120.422031pt;}
._35{width:122.398891pt;}
._30{width:123.690631pt;}
._4b{width:126.339475pt;}
._38{width:127.281344pt;}
._50{width:128.612487pt;}
._59{width:129.752660pt;}
._32{width:136.409654pt;}
._56{width:139.511803pt;}
._3d{width:142.078623pt;}
._45{width:209.383262pt;}
._48{width:212.539085pt;}
._60{width:221.163364pt;}
._5b{width:222.788754pt;}
._3b{width:226.035872pt;}
._40{width:227.398219pt;}
._58{width:237.191108pt;}
._28{width:248.213333pt;}
._64{width:302.400949pt;}
._69{width:321.169920pt;}
._4d{width:340.962523pt;}
._51{width:348.007775pt;}
._65{width:378.161694pt;}
._55{width:408.493244pt;}
._57{width:427.843288pt;}
._44{width:454.151292pt;}
._47{width:462.776520pt;}
._5f{width:481.268267pt;}
._5a{width:483.745659pt;}
._3a{width:487.005763pt;}
._3f{width:490.071250pt;}
.fs3f{font-size:8.059447pt;}
.fs28{font-size:8.108972pt;}
.fs2e{font-size:8.242691pt;}
.fs15{font-size:8.261401pt;}
.fse{font-size:8.361002pt;}
.fs45{font-size:8.449047pt;}
.fs34{font-size:8.494721pt;}
.fs1b{font-size:8.567358pt;}
.fs51{font-size:8.580565pt;}
.fs22{font-size:8.621286pt;}
.fs4b{font-size:8.643847pt;}
.fs3a{font-size:8.670811pt;}
.fs3e{font-size:11.746574pt;}
.fs27{font-size:11.818757pt;}
.fs2d{font-size:12.013651pt;}
.fs14{font-size:12.040920pt;}
.fsd{font-size:12.186088pt;}
.fs44{font-size:12.314413pt;}
.fs33{font-size:12.380982pt;}
.fs1a{font-size:12.486850pt;}
.fs50{font-size:12.506099pt;}
.fs21{font-size:12.565449pt;}
.fs4a{font-size:12.598332pt;}
.fs39{font-size:12.637632pt;}
.fs7{font-size:20.610780pt;}
.fs2a{font-size:20.664750pt;}
.fs30{font-size:21.005517pt;}
.fsa{font-size:21.066016pt;}
.fs17{font-size:21.804464pt;}
.fs10{font-size:22.067344pt;}
.fs1d{font-size:22.611983pt;}
.fs24{font-size:22.754316pt;}
.fs8{font-size:23.720169pt;}
.fs9{font-size:24.010879pt;}
.fsb{font-size:24.527701pt;}
.fsc{font-size:24.541213pt;}
.fs41{font-size:27.132755pt;}
.fs53{font-size:27.326555pt;}
.fs4d{font-size:27.528091pt;}
.fs47{font-size:28.444375pt;}
.fs36{font-size:28.598139pt;}
.fs3c{font-size:29.190961pt;}
.fs20{font-size:31.204395pt;}
.fs26{font-size:31.400812pt;}
.fs43{font-size:31.552211pt;}
.fs2c{font-size:31.746100pt;}
.fs6{font-size:32.000000pt;}
.fs32{font-size:32.269600pt;}
.fs19{font-size:32.342847pt;}
.fs12{font-size:32.732779pt;}
.fs49{font-size:33.077471pt;}
.fs38{font-size:33.256280pt;}
.fs1f{font-size:33.540650pt;}
.fs55{font-size:33.592354pt;}
.fs25{font-size:33.751774pt;}
.fs4f{font-size:33.840101pt;}
.fs3d{font-size:33.945663pt;}
.fs3{font-size:34.560000pt;}
.fs4e{font-size:35.145305pt;}
.fs18{font-size:35.156030pt;}
.fs11{font-size:35.206435pt;}
.fs40{font-size:35.215770pt;}
.fs42{font-size:35.260057pt;}
.fs54{font-size:35.418780pt;}
.fs1e{font-size:35.421998pt;}
.fs48{font-size:35.427360pt;}
.fs29{font-size:35.432171pt;}
.fs31{font-size:35.473475pt;}
.fs37{font-size:35.475620pt;}
.fs2b{font-size:35.646140pt;}
.fs2f{font-size:36.016456pt;}
.fs16{font-size:36.098208pt;}
.fs5e{font-size:36.297557pt;}
.fsf{font-size:36.533415pt;}
.fs58{font-size:36.655563pt;}
.fs46{font-size:36.918130pt;}
.fs35{font-size:37.117700pt;}
.fs13{font-size:37.120000pt;}
.fs1c{font-size:37.435089pt;}
.fs52{font-size:37.492796pt;}
.fs23{font-size:37.670727pt;}
.fs4c{font-size:37.769310pt;}
.fs3b{font-size:37.887128pt;}
.fs5c{font-size:39.456038pt;}
.fs56{font-size:39.845197pt;}
.fs61{font-size:40.165461pt;}
.fs5b{font-size:40.824868pt;}
.fs2{font-size:42.880000pt;}
.fs63{font-size:45.440000pt;}
.fs5d{font-size:45.964983pt;}
.fs57{font-size:46.418340pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs62{font-size:56.320000pt;}
.fs5f{font-size:59.072258pt;}
.fs60{font-size:59.185373pt;}
.fs5a{font-size:59.769124pt;}
.fs59{font-size:60.042064pt;}
.fs0{font-size:64.000000pt;}
.y14f{bottom:-13.120000pt;}
.y152{bottom:-12.960000pt;}
.y146{bottom:-7.906667pt;}
.y14c{bottom:-2.946667pt;}
.y149{bottom:-2.786667pt;}
.y0{bottom:0.000000pt;}
.y25f{bottom:1.466477pt;}
.y1f8{bottom:1.475489pt;}
.y212{bottom:1.499820pt;}
.y179{bottom:1.503225pt;}
.y15b{bottom:1.521348pt;}
.y279{bottom:1.537368pt;}
.y22c{bottom:1.545679pt;}
.y19d{bottom:1.558896pt;}
.y2ab{bottom:1.561299pt;}
.y1b6{bottom:1.568708pt;}
.y293{bottom:1.572814pt;}
.y247{bottom:1.577720pt;}
.y304{bottom:2.071028pt;}
.y2e6{bottom:2.091455pt;}
.y8c{bottom:2.560000pt;}
.ya4{bottom:2.720000pt;}
.y193{bottom:3.133333pt;}
.y197{bottom:3.200000pt;}
.y108{bottom:4.895318pt;}
.y118{bottom:5.003442pt;}
.y99{bottom:5.600000pt;}
.y260{bottom:6.238541pt;}
.y1f9{bottom:6.276877pt;}
.y213{bottom:6.380384pt;}
.y17a{bottom:6.394867pt;}
.ye9{bottom:6.400000pt;}
.y15c{bottom:6.471964pt;}
.y27a{bottom:6.540117pt;}
.ye4{bottom:6.560000pt;}
.y22d{bottom:6.575472pt;}
.ye2{bottom:6.586667pt;}
.y19e{bottom:6.631698pt;}
.y2ac{bottom:6.641921pt;}
.y1b7{bottom:6.673441pt;}
.y294{bottom:6.690905pt;}
.y248{bottom:6.711777pt;}
.y316{bottom:6.720000pt;}
.y310{bottom:7.360000pt;}
.y30e{bottom:7.386667pt;}
.y325{bottom:8.000000pt;}
.y1cb{bottom:8.186667pt;}
.y14e{bottom:8.320000pt;}
.y1cc{bottom:8.346667pt;}
.y151{bottom:8.480000pt;}
.y1c9{bottom:8.506667pt;}
.y329{bottom:8.826667pt;}
.yb3{bottom:9.440000pt;}
.y2c3{bottom:9.466667pt;}
.y259{bottom:9.506667pt;}
.y2c1{bottom:9.533333pt;}
.y195{bottom:9.573333pt;}
.y8f{bottom:9.600000pt;}
.y173{bottom:9.626667pt;}
.y20c{bottom:9.666667pt;}
.y320{bottom:10.560000pt;}
.y2fc{bottom:11.983690pt;}
.y2df{bottom:12.101886pt;}
.y145{bottom:13.533333pt;}
.y148{bottom:13.693333pt;}
.y100{bottom:14.040862pt;}
.y110{bottom:14.350986pt;}
.yb4{bottom:15.040000pt;}
.y1fa{bottom:15.694964pt;}
.y214{bottom:15.953777pt;}
.y261{bottom:15.971786pt;}
.y17b{bottom:15.989990pt;}
.y15d{bottom:16.182768pt;}
.yb1{bottom:16.320000pt;}
.ya3{bottom:16.480000pt;}
.y90{bottom:16.506667pt;}
.y19f{bottom:16.582172pt;}
.y1b8{bottom:16.686550pt;}
.y27b{bottom:16.743875pt;}
.y22e{bottom:16.834389pt;}
.y2ad{bottom:17.004510pt;}
.y295{bottom:17.129920pt;}
.y249{bottom:17.183356pt;}
.yf8{bottom:19.040000pt;}
.ye1{bottom:19.226667pt;}
.y98{bottom:19.360000pt;}
.y101{bottom:19.528416pt;}
.y111{bottom:19.959745pt;}
.y32b{bottom:20.000000pt;}
.y342{bottom:20.026667pt;}
.y336{bottom:20.040000pt;}
.ye7{bottom:20.160000pt;}
.ye6{bottom:20.320000pt;}
.y315{bottom:20.480000pt;}
.y1fb{bottom:21.424328pt;}
.y323{bottom:21.600000pt;}
.y324{bottom:21.760000pt;}
.y215{bottom:21.777620pt;}
.y17c{bottom:21.827052pt;}
.y15e{bottom:22.090203pt;}
.y262{bottom:22.210087pt;}
.y1a0{bottom:22.635407pt;}
.y1b9{bottom:22.777887pt;}
.yaa{bottom:23.200000pt;}
.y27c{bottom:23.283741pt;}
.y9e{bottom:23.360000pt;}
.y8e{bottom:23.386667pt;}
.y22f{bottom:23.409608pt;}
.y2ae{bottom:23.451103pt;}
.y296{bottom:23.624057pt;}
.y201{bottom:23.637754pt;}
.y24a{bottom:23.894875pt;}
.y21c{bottom:24.027546pt;}
.y269{bottom:24.042106pt;}
.y283{bottom:24.244659pt;}
.y319{bottom:24.320000pt;}
.y2b7{bottom:24.426978pt;}
.y184{bottom:25.398278pt;}
.y238{bottom:25.729338pt;}
.y29c{bottom:26.181022pt;}
.y94{bottom:26.240000pt;}
.y1a6{bottom:26.540030pt;}
.y107{bottom:27.025633pt;}
.y117{bottom:27.622555pt;}
.y2f7{bottom:29.444756pt;}
.y2da{bottom:29.735172pt;}
.y24f{bottom:30.014505pt;}
.yb0{bottom:30.080000pt;}
.y1bd{bottom:30.235068pt;}
.ya0{bottom:30.240000pt;}
.y91{bottom:30.266667pt;}
.y164{bottom:32.371003pt;}
.y95{bottom:33.120000pt;}
.y31d{bottom:34.080000pt;}
.y119{bottom:35.469130pt;}
.y10e{bottom:35.811798pt;}
.y11e{bottom:36.602782pt;}
.ya9{bottom:36.960000pt;}
.y9d{bottom:37.120000pt;}
.yb9{bottom:37.146667pt;}
.y102{bottom:37.202747pt;}
.y2b6{bottom:37.716684pt;}
.y109{bottom:37.743672pt;}
.y112{bottom:38.577326pt;}
.y237{bottom:38.692461pt;}
.y21b{bottom:39.611929pt;}
.y183{bottom:39.701841pt;}
.y93{bottom:40.000000pt;}
.y282{bottom:40.214427pt;}
.y268{bottom:40.565965pt;}
.y2eb{bottom:41.576376pt;}
.y200{bottom:41.735797pt;}
.y2cf{bottom:41.986448pt;}
.yac{bottom:43.840000pt;}
.yd5{bottom:43.994667pt;}
.y9f{bottom:44.000000pt;}
.ybb{bottom:44.026667pt;}
.y97{bottom:46.880000pt;}
.y29b{bottom:47.247600pt;}
.y1a5{bottom:47.415098pt;}
.y31c{bottom:47.840000pt;}
.y2{bottom:50.592000pt;}
.yd6{bottom:50.874667pt;}
.ya8{bottom:50.880000pt;}
.yb8{bottom:50.906667pt;}
.y11a{bottom:50.980095pt;}
.y2b5{bottom:51.007155pt;}
.y9c{bottom:51.040000pt;}
.y163{bottom:51.413939pt;}
.y236{bottom:51.655584pt;}
.y182{bottom:54.000495pt;}
.y103{bottom:54.876563pt;}
.y21a{bottom:55.191167pt;}
.y24e{bottom:55.488698pt;}
.y10a{bottom:55.958413pt;}
.y281{bottom:56.382053pt;}
.y267{bottom:56.903004pt;}
.y113{bottom:57.194380pt;}
.y2e0{bottom:57.526288pt;}
.yd4{bottom:57.754667pt;}
.yd1{bottom:57.760000pt;}
.yba{bottom:57.786667pt;}
.yab{bottom:57.800000pt;}
.ya2{bottom:57.920000pt;}
.y2d0{bottom:58.820998pt;}
.y1ff{bottom:59.836009pt;}
.y96{bottom:60.800000pt;}
.y2fd{bottom:63.426049pt;}
.y1bc{bottom:64.008363pt;}
.y2b4{bottom:64.289976pt;}
.y235{bottom:64.618707pt;}
.yb7{bottom:64.666667pt;}
.ya7{bottom:64.680000pt;}
.y9b{bottom:64.800000pt;}
.y2ec{bottom:64.954664pt;}
.y11b{bottom:66.489481pt;}
.y190{bottom:66.602656pt;}
.y170{bottom:67.405632pt;}
.y1a4{bottom:68.094120pt;}
.y29a{bottom:68.309040pt;}
.y181{bottom:68.488193pt;}
.y1{bottom:68.992000pt;}
.y162{bottom:70.454391pt;}
.y2f6{bottom:70.626651pt;}
.y219{bottom:70.956573pt;}
.y2d9{bottom:71.323248pt;}
.ybe{bottom:71.546667pt;}
.yaf{bottom:71.560000pt;}
.ya1{bottom:71.680000pt;}
.y280{bottom:72.348808pt;}
.y104{bottom:72.575107pt;}
.y303{bottom:72.746989pt;}
.y266{bottom:73.419677pt;}
.y2e5{bottom:73.464500pt;}
.y10b{bottom:74.147911pt;}
.y18f{bottom:74.319117pt;}
.y16f{bottom:75.215125pt;}
.y114{bottom:75.785634pt;}
.y234{bottom:77.576781pt;}
.y2b3{bottom:77.580448pt;}
.y1fe{bottom:78.116959pt;}
.ya6{bottom:78.440000pt;}
.yc4{bottom:78.720000pt;}
.y24d{bottom:80.965467pt;}
.y11c{bottom:81.999919pt;}
.y18e{bottom:82.035578pt;}
.y180{bottom:82.786846pt;}
.y16e{bottom:83.024617pt;}
.yae{bottom:85.320000pt;}
.yd0{bottom:85.440000pt;}
.ybd{bottom:85.466667pt;}
.yc8{bottom:85.600000pt;}
.y218{bottom:86.543160pt;}
.y27f{bottom:88.516433pt;}
.y1a3{bottom:88.971734pt;}
.y271{bottom:89.208237pt;}
.y161{bottom:89.497327pt;}
.y299{bottom:89.568277pt;}
.y18d{bottom:89.744673pt;}
.y265{bottom:89.941141pt;}
.y130{bottom:90.112000pt;}
.y105{bottom:90.249439pt;}
.y2fe{bottom:90.501943pt;}
.y233{bottom:90.539904pt;}
.y16d{bottom:90.826655pt;}
.y2b2{bottom:90.870919pt;}
.y2e1{bottom:91.593759pt;}
.y1f2{bottom:91.712000pt;}
.y2ed{bottom:91.734698pt;}
.y1df{bottom:91.872000pt;}
.yd3{bottom:92.192000pt;}
.y10c{bottom:92.362652pt;}
.yc3{bottom:92.520000pt;}
.y2d1{bottom:92.639486pt;}
.y28b{bottom:93.520639pt;}
.y115{bottom:94.402689pt;}
.y209{bottom:95.662910pt;}
.y1fd{bottom:96.217171pt;}
.y17f{bottom:97.085500pt;}
.y224{bottom:97.240414pt;}
.y18c{bottom:97.461134pt;}
.y11d{bottom:97.509305pt;}
.y1bb{bottom:97.581817pt;}
.yd2{bottom:97.960000pt;}
.y270{bottom:98.383901pt;}
.y16c{bottom:98.636147pt;}
.yad{bottom:99.080000pt;}
.ybc{bottom:99.226667pt;}
.ycf{bottom:99.240000pt;}
.yc5{bottom:99.400000pt;}
.y8a{bottom:100.512000pt;}
.y217{bottom:102.122398pt;}
.y143{bottom:102.752000pt;}
.y28a{bottom:103.139861pt;}
.y208{bottom:103.236997pt;}
.y30c{bottom:103.392000pt;}
.y232{bottom:103.505551pt;}
.y23f{bottom:103.697410pt;}
.y1ae{bottom:104.001069pt;}
.y2b1{bottom:104.161390pt;}
.y1c5{bottom:104.655710pt;}
.y63{bottom:104.672000pt;}
.y27e{bottom:104.679037pt;}
.y2be{bottom:104.745334pt;}
.y223{bottom:104.939399pt;}
.y34e{bottom:104.992000pt;}
.y18b{bottom:105.177595pt;}
.y2a3{bottom:105.517842pt;}
.y256{bottom:105.846997pt;}
.y264{bottom:106.273390pt;}
.yc2{bottom:106.280000pt;}
.y16b{bottom:106.445639pt;}
.y24c{bottom:106.635496pt;}
.y26f{bottom:107.561959pt;}
.y106{bottom:107.923255pt;}
.y160{bottom:108.346454pt;}
.y1f1{bottom:109.472000pt;}
.y1a2{bottom:109.658394pt;}
.y10d{bottom:110.576363pt;}
.y298{bottom:110.637424pt;}
.y207{bottom:110.806264pt;}
.y1ad{bottom:111.216576pt;}
.y17e{bottom:111.573198pt;}
.y1c4{bottom:111.916636pt;}
.y222{bottom:112.633485pt;}
.y289{bottom:112.761595pt;}
.y18a{bottom:112.889146pt;}
.yce{bottom:113.000000pt;}
.y116{bottom:113.018690pt;}
.yc7{bottom:113.160000pt;}
.y23e{bottom:113.371157pt;}
.y32{bottom:113.472000pt;}
.y1de{bottom:113.632000pt;}
.y16a{bottom:114.250162pt;}
.y1fc{bottom:114.500530pt;}
.y2bd{bottom:114.516839pt;}
.y2a2{bottom:115.361413pt;}
.y255{bottom:115.721275pt;}
.yfc{bottom:116.032000pt;}
.y231{bottom:116.463625pt;}
.y26e{bottom:116.740018pt;}
.y12f{bottom:117.312000pt;}
.y2b0{bottom:117.444211pt;}
.y2ff{bottom:117.579810pt;}
.y216{bottom:117.699187pt;}
.y206{bottom:118.377942pt;}
.y1ac{bottom:118.439722pt;}
.y2ee{bottom:118.566014pt;}
.y1c3{bottom:119.185248pt;}
.yc1{bottom:120.040000pt;}
.y221{bottom:120.330021pt;}
.y189{bottom:120.603151pt;}
.y27d{bottom:120.645792pt;}
.y142{bottom:120.672000pt;}
.y169{bottom:122.057169pt;}
.y288{bottom:122.383328pt;}
.y263{bottom:122.794854pt;}
.y23d{bottom:123.044903pt;}
.y2bc{bottom:124.288344pt;}
.y2a1{bottom:125.204984pt;}
.y254{bottom:125.595552pt;}
.y1ab{bottom:125.655229pt;}
.y2e2{bottom:125.711027pt;}
.y17d{bottom:125.871851pt;}
.y26d{bottom:126.284528pt;}
.y1c2{bottom:126.446173pt;}
.y2d2{bottom:126.507771pt;}
.yc6{bottom:126.920000pt;}
.y306{bottom:126.950718pt;}
.y25e{bottom:127.017431pt;}
.y205{bottom:127.060549pt;}
.y2e8{bottom:127.157118pt;}
.y1f0{bottom:127.232000pt;}
.y15f{bottom:127.389390pt;}
.y1f7{bottom:127.797956pt;}
.y31{bottom:128.192000pt;}
.y272{bottom:128.483238pt;}
.y220{bottom:129.155806pt;}
.y26c{bottom:129.216141pt;}
.y20a{bottom:129.272770pt;}
.y230{bottom:129.426748pt;}
.y188{bottom:129.448970pt;}
.y211{bottom:129.905374pt;}
.y204{bottom:130.010177pt;}
.y178{bottom:130.200238pt;}
.y25d{bottom:130.322682pt;}
.y1a1{bottom:130.533461pt;}
.y2af{bottom:130.734682pt;}
.y168{bottom:131.009635pt;}
.y1f6{bottom:131.123518pt;}
.y1ba{bottom:131.355112pt;}
.y225{bottom:131.404508pt;}
.y30b{bottom:131.552000pt;}
.y297{bottom:131.698864pt;}
.y191{bottom:131.702776pt;}
.y15a{bottom:131.769961pt;}
.y24b{bottom:132.109689pt;}
.y21f{bottom:132.154075pt;}
.y26b{bottom:132.154940pt;}
.y89{bottom:132.192000pt;}
.y287{bottom:132.389228pt;}
.y187{bottom:132.454044pt;}
.y203{bottom:132.967035pt;}
.y34d{bottom:132.992000pt;}
.y23c{bottom:133.104892pt;}
.y278{bottom:133.157561pt;}
.y210{bottom:133.285774pt;}
.y171{bottom:133.290613pt;}
.y177{bottom:133.588312pt;}
.y25c{bottom:133.620747pt;}
.y3b9{bottom:133.786667pt;}
.y22b{bottom:133.877378pt;}
.y167{bottom:134.050939pt;}
.y1aa{bottom:134.243057pt;}
.y1f5{bottom:134.441850pt;}
.y2bb{bottom:134.449996pt;}
.y28c{bottom:134.694226pt;}
.y19c{bottom:135.022148pt;}
.y1c1{bottom:135.088058pt;}
.y26a{bottom:135.093739pt;}
.y21e{bottom:135.159692pt;}
.y159{bottom:135.198882pt;}
.y2aa{bottom:135.230288pt;}
.y240{bottom:135.422350pt;}
.y2a0{bottom:135.441579pt;}
.y286{bottom:135.462559pt;}
.y186{bottom:135.466484pt;}
.y1dd{bottom:135.546667pt;}
.y253{bottom:135.864079pt;}
.y1b5{bottom:135.872053pt;}
.y202{bottom:135.923893pt;}
.y23b{bottom:136.194836pt;}
.y292{bottom:136.227626pt;}
.y62{bottom:136.346667pt;}
.y1af{bottom:136.580331pt;}
.y277{bottom:136.622590pt;}
.y246{bottom:136.652578pt;}
.y20f{bottom:136.658826pt;}
.y2bf{bottom:136.790873pt;}
.y25b{bottom:136.925998pt;}
.y176{bottom:136.969021pt;}
.y166{bottom:137.099697pt;}
.y1a9{bottom:137.359423pt;}
.y22a{bottom:137.361139pt;}
.y1c6{bottom:137.440044pt;}
.y2ba{bottom:137.571166pt;}
.y1f4{bottom:137.767411pt;}
.y2a4{bottom:137.799720pt;}
.y305{bottom:138.096135pt;}
.y21d{bottom:138.165309pt;}
.y1c0{bottom:138.224040pt;}
.y257{bottom:138.229577pt;}
.y2e7{bottom:138.412463pt;}
.y141{bottom:138.426667pt;}
.y185{bottom:138.478923pt;}
.y19b{bottom:138.535698pt;}
.y285{bottom:138.543422pt;}
.y29f{bottom:138.585767pt;}
.y158{bottom:138.620349pt;}
.y2a9{bottom:138.749254pt;}
.y252{bottom:139.018076pt;}
.y23a{bottom:139.292354pt;}
.y1b4{bottom:139.407719pt;}
.y291{bottom:139.772544pt;}
.y20e{bottom:140.039227pt;}
.y276{bottom:140.080087pt;}
.y165{bottom:140.148455pt;}
.y245{bottom:140.208555pt;}
.y175{bottom:140.357094pt;}
.y1a8{bottom:140.483427pt;}
.ycd{bottom:140.680000pt;}
.y2b9{bottom:140.699985pt;}
.y229{bottom:140.837326pt;}
.y1bf{bottom:141.367708pt;}
.y284{bottom:141.624285pt;}
.y29e{bottom:141.737662pt;}
.y19a{bottom:142.041609pt;}
.y157{bottom:142.049270pt;}
.y251{bottom:142.179803pt;}
.y2a8{bottom:142.260570pt;}
.y239{bottom:142.389871pt;}
.y1b3{bottom:142.935699pt;}
.y290{bottom:143.309757pt;}
.y275{bottom:143.545116pt;}
.y1a7{bottom:143.607431pt;}
.y244{bottom:143.756801pt;}
.y2b8{bottom:143.828805pt;}
.y228{bottom:144.321086pt;}
.y12e{bottom:144.346667pt;}
.y1be{bottom:144.511376pt;}
.y300{bottom:144.607052pt;}
.yfb{bottom:144.666667pt;}
.y29d{bottom:144.889557pt;}
.y1ef{bottom:144.986667pt;}
.y250{bottom:145.341530pt;}
.y2ef{bottom:145.346704pt;}
.y199{bottom:145.555159pt;}
.y2a7{bottom:145.779536pt;}
.y1b2{bottom:146.471365pt;}
.y28f{bottom:146.854675pt;}
.y243{bottom:147.312778pt;}
.y30{bottom:148.186667pt;}
.y140{bottom:152.186667pt;}
.ycc{bottom:154.440000pt;}
.y1dc{bottom:157.306667pt;}
.y61{bottom:158.106667pt;}
.y30a{bottom:159.706667pt;}
.y2e3{bottom:159.830286pt;}
.y2fb{bottom:159.896497pt;}
.y2d3{bottom:160.328251pt;}
.yc0{bottom:161.146667pt;}
.y1ee{bottom:162.906667pt;}
.y88{bottom:163.866667pt;}
.y2de{bottom:164.112788pt;}
.y13f{bottom:165.946667pt;}
.y2f{bottom:167.546667pt;}
.y37e{bottom:168.026667pt;}
.ycb{bottom:168.200000pt;}
.y2fa{bottom:171.041914pt;}
.y12d{bottom:171.546667pt;}
.y301{bottom:171.682946pt;}
.y2f0{bottom:172.176048pt;}
.yfa{bottom:173.466667pt;}
.y2dd{bottom:175.368134pt;}
.y60{bottom:178.106667pt;}
.y1db{bottom:179.066667pt;}
.y13e{bottom:179.866667pt;}
.y1ed{bottom:180.666667pt;}
.yca{bottom:181.960000pt;}
.y2f9{bottom:182.189303pt;}
.y2e{bottom:182.266667pt;}
.y3b8{bottom:182.426667pt;}
.y37d{bottom:182.586667pt;}
.y2dc{bottom:186.625471pt;}
.y2f5{bottom:187.268252pt;}
.y309{bottom:187.386667pt;}
.y2d8{bottom:189.115298pt;}
.y34c{bottom:189.146667pt;}
.y5f{bottom:192.826667pt;}
.y12c{bottom:193.466667pt;}
.y2e4{bottom:193.897757pt;}
.y2d4{bottom:194.196536pt;}
.y1ec{bottom:194.426667pt;}
.y1b1{bottom:195.146667pt;}
.y3b7{bottom:195.546667pt;}
.y87{bottom:195.706667pt;}
.yc9{bottom:195.880000pt;}
.y2f4{bottom:198.415642pt;}
.y302{bottom:198.711503pt;}
.y2f1{bottom:198.958054pt;}
.y2d7{bottom:200.372635pt;}
.y308{bottom:201.146667pt;}
.y2d{bottom:202.266667pt;}
.y1da{bottom:206.746667pt;}
.y12b{bottom:207.226667pt;}
.y1eb{bottom:208.186667pt;}
.y3b6{bottom:208.506667pt;}
.y2f3{bottom:209.561716pt;}
.y2d6{bottom:211.628644pt;}
.y5e{bottom:212.826667pt;}
.y1c7{bottom:213.600000pt;}
.y2f8{bottom:215.036462pt;}
.y2c{bottom:216.826667pt;}
.y2db{bottom:217.157388pt;}
.y34b{bottom:217.306667pt;}
.y242{bottom:218.733333pt;}
.y307{bottom:218.906667pt;}
.y2a6{bottom:219.560000pt;}
.y37c{bottom:219.706667pt;}
.y12a{bottom:220.986667pt;}
.y3b5{bottom:221.626667pt;}
.y2f2{bottom:225.788055pt;}
.y5d{bottom:227.386667pt;}
.y2d5{bottom:228.015025pt;}
.yf9{bottom:230.906667pt;}
.y2e9{bottom:234.106667pt;}
.y37b{bottom:234.266667pt;}
.y3b4{bottom:234.586667pt;}
.y2ea{bottom:234.700832pt;}
.y2ce{bottom:234.705903pt;}
.y129{bottom:234.906667pt;}
.y258{bottom:236.000000pt;}
.y2b{bottom:236.826667pt;}
.y2c0{bottom:239.680000pt;}
.y34a{bottom:245.466667pt;}
.y5c{bottom:247.386667pt;}
.y3b3{bottom:247.706667pt;}
.y37a{bottom:248.866667pt;}
.y2a{bottom:256.226667pt;}
.y86{bottom:259.106667pt;}
.yf7{bottom:260.386667pt;}
.y3b2{bottom:260.706667pt;}
.y379{bottom:263.426667pt;}
.y5b{bottom:266.786667pt;}
.y349{bottom:273.506667pt;}
.y3b1{bottom:273.826667pt;}
.y29{bottom:275.586667pt;}
.y1d0{bottom:277.026667pt;}
.y5a{bottom:281.506667pt;}
.y378{bottom:281.986667pt;}
.y3b0{bottom:286.786667pt;}
.y85{bottom:290.946667pt;}
.y28{bottom:294.786667pt;}
.y2c6{bottom:298.306667pt;}
.y3af{bottom:299.906667pt;}
.ydf{bottom:300.066667pt;}
.y2ca{bottom:300.386667pt;}
.y377{bottom:300.546667pt;}
.y59{bottom:301.506667pt;}
.y3ae{bottom:312.866667pt;}
.y27{bottom:314.146667pt;}
.y376{bottom:315.266667pt;}
.y58{bottom:316.066667pt;}
.y84{bottom:322.626667pt;}
.y3ad{bottom:325.826667pt;}
.y150{bottom:328.386667pt;}
.y153{bottom:329.506667pt;}
.y375{bottom:329.826667pt;}
.y14d{bottom:330.466667pt;}
.yde{bottom:332.706667pt;}
.y26{bottom:333.506667pt;}
.y57{bottom:336.066667pt;}
.y3ac{bottom:338.946667pt;}
.y348{bottom:341.186667pt;}
.y374{bottom:344.386667pt;}
.y25{bottom:348.226667pt;}
.y56{bottom:350.786667pt;}
.y128{bottom:351.106667pt;}
.y13d{bottom:351.426667pt;}
.y3ab{bottom:351.906667pt;}
.yf6{bottom:353.186667pt;}
.y83{bottom:354.306667pt;}
.y373{bottom:358.946667pt;}
.y347{bottom:361.986667pt;}
.y127{bottom:364.866667pt;}
.y3aa{bottom:365.026667pt;}
.y13c{bottom:365.186667pt;}
.y24{bottom:368.226667pt;}
.ybf{bottom:368.386667pt;}
.y55{bottom:370.786667pt;}
.y1d9{bottom:373.186667pt;}
.y1ea{bottom:376.386667pt;}
.y372{bottom:377.506667pt;}
.y3a9{bottom:377.986667pt;}
.y126{bottom:378.626667pt;}
.y13b{bottom:378.946667pt;}
.yf5{bottom:381.826667pt;}
.y346{bottom:382.626667pt;}
.y82{bottom:386.146667pt;}
.y23{bottom:387.586667pt;}
.y54{bottom:390.146667pt;}
.y1d8{bottom:390.946667pt;}
.y3a8{bottom:391.106667pt;}
.y125{bottom:392.386667pt;}
.y13a{bottom:392.706667pt;}
.y1e9{bottom:394.146667pt;}
.y371{bottom:396.066667pt;}
.y345{bottom:403.266667pt;}
.y3a7{bottom:404.066667pt;}
.y1d7{bottom:404.706667pt;}
.y139{bottom:406.626667pt;}
.y22{bottom:406.786667pt;}
.y81{bottom:407.906667pt;}
.y53{bottom:409.506667pt;}
.yf4{bottom:410.626667pt;}
.y3a6{bottom:417.186667pt;}
.y1d6{bottom:418.466667pt;}
.y1e8{bottom:421.666667pt;}
.y344{bottom:423.906667pt;}
.y52{bottom:424.066667pt;}
.y370{bottom:425.186667pt;}
.y21{bottom:426.146667pt;}
.y198{bottom:426.400000pt;}
.y227{bottom:429.800000pt;}
.y3a5{bottom:430.146667pt;}
.y28e{bottom:433.026667pt;}
.y80{bottom:437.186667pt;}
.yf3{bottom:439.266667pt;}
.y3a4{bottom:443.266667pt;}
.y36f{bottom:443.746667pt;}
.y51{bottom:444.066667pt;}
.y1b0{bottom:444.480000pt;}
.y343{bottom:444.546667pt;}
.y20{bottom:445.506667pt;}
.y241{bottom:446.560000pt;}
.yb6{bottom:451.266667pt;}
.y2a5{bottom:451.520000pt;}
.y3a3{bottom:456.226667pt;}
.y7f{bottom:458.946667pt;}
.y1f{bottom:460.226667pt;}
.y36e{bottom:462.306667pt;}
.y50{bottom:463.426667pt;}
.y341{bottom:465.186667pt;}
.yf2{bottom:468.066667pt;}
.y3a2{bottom:469.186667pt;}
.y1c8{bottom:476.066667pt;}
.y1ca{bottom:476.546667pt;}
.y36d{bottom:476.866667pt;}
.y7e{bottom:478.306667pt;}
.y1e{bottom:480.253333pt;}
.y3a1{bottom:482.333333pt;}
.y4f{bottom:482.813333pt;}
.y340{bottom:486.013333pt;}
.y2cd{bottom:486.653333pt;}
.y36c{bottom:491.453333pt;}
.y3a0{bottom:495.293333pt;}
.yf1{bottom:496.733333pt;}
.y4e{bottom:497.533333pt;}
.y1d{bottom:499.613333pt;}
.y2cc{bottom:504.413333pt;}
.y36b{bottom:506.013333pt;}
.y33f{bottom:506.653333pt;}
.y2c5{bottom:508.413333pt;}
.y1cf{bottom:508.573333pt;}
.y2c9{bottom:513.853333pt;}
.y1c{bottom:514.173333pt;}
.y124{bottom:515.773333pt;}
.y322{bottom:516.253333pt;}
.y7d{bottom:516.893333pt;}
.y4d{bottom:517.533333pt;}
.y36a{bottom:520.573333pt;}
.y39f{bottom:521.373333pt;}
.yf0{bottom:525.533333pt;}
.y33e{bottom:527.293333pt;}
.y123{bottom:529.533333pt;}
.y1b{bottom:534.333333pt;}
.y39e{bottom:534.493333pt;}
.y369{bottom:535.133333pt;}
.y7c{bottom:536.253333pt;}
.y4c{bottom:536.733333pt;}
.y122{bottom:543.453333pt;}
.y39d{bottom:547.453333pt;}
.y33d{bottom:547.933333pt;}
.y368{bottom:549.693333pt;}
.y321{bottom:550.493333pt;}
.y1a{bottom:553.533333pt;}
.yef{bottom:554.973333pt;}
.y7b{bottom:555.613333pt;}
.y4b{bottom:556.093333pt;}
.y39c{bottom:560.573333pt;}
.yb5{bottom:561.693333pt;}
.y367{bottom:564.253333pt;}
.y33c{bottom:568.573333pt;}
.y19{bottom:572.893333pt;}
.y39b{bottom:573.533333pt;}
.y7a{bottom:574.973333pt;}
.y4a{bottom:575.453333pt;}
.y366{bottom:578.813333pt;}
.y39a{bottom:586.653333pt;}
.y31f{bottom:587.453333pt;}
.y18{bottom:587.613333pt;}
.y33b{bottom:589.213333pt;}
.y14b{bottom:590.240000pt;}
.y138{bottom:590.493333pt;}
.y1d5{bottom:590.813333pt;}
.y14a{bottom:592.000000pt;}
.y147{bottom:592.160000pt;}
.y1e7{bottom:592.413333pt;}
.ydd{bottom:592.573333pt;}
.y365{bottom:593.373333pt;}
.y79{bottom:594.173333pt;}
.y144{bottom:594.720000pt;}
.y49{bottom:594.813333pt;}
.y399{bottom:599.613333pt;}
.y137{bottom:604.253333pt;}
.y1d4{bottom:604.573333pt;}
.y1e6{bottom:606.333333pt;}
.y17{bottom:607.613333pt;}
.y364{bottom:607.933333pt;}
.y33a{bottom:610.013333pt;}
.y398{bottom:612.573333pt;}
.y78{bottom:613.533333pt;}
.y48{bottom:614.173333pt;}
.yb2{bottom:616.893333pt;}
.y136{bottom:618.013333pt;}
.y1d3{bottom:618.333333pt;}
.y1e5{bottom:620.093333pt;}
.y363{bottom:622.493333pt;}
.y31e{bottom:624.413333pt;}
.y397{bottom:625.693333pt;}
.ydc{bottom:627.613333pt;}
.y339{bottom:630.653333pt;}
.y16{bottom:630.973333pt;}
.y135{bottom:631.773333pt;}
.y1d2{bottom:632.093333pt;}
.y77{bottom:632.893333pt;}
.y47{bottom:633.373333pt;}
.y1e4{bottom:633.853333pt;}
.y362{bottom:637.053333pt;}
.y396{bottom:638.653333pt;}
.y121{bottom:640.253333pt;}
.yee{bottom:644.413333pt;}
.y174{bottom:645.800000pt;}
.y15{bottom:649.373333pt;}
.y274{bottom:649.733333pt;}
.y338{bottom:651.293333pt;}
.y20d{bottom:651.600000pt;}
.y361{bottom:651.613333pt;}
.y395{bottom:651.773333pt;}
.y76{bottom:652.253333pt;}
.y46{bottom:652.733333pt;}
.y120{bottom:654.013333pt;}
.y31b{bottom:657.373333pt;}
.ya5{bottom:658.333333pt;}
.y194{bottom:664.320000pt;}
.y394{bottom:664.733333pt;}
.y226{bottom:665.120000pt;}
.y360{bottom:666.173333pt;}
.y28d{bottom:666.880000pt;}
.y14{bottom:667.773333pt;}
.y75{bottom:671.613333pt;}
.y337{bottom:671.933333pt;}
.y45{bottom:672.093333pt;}
.yed{bottom:673.053333pt;}
.y393{bottom:677.853333pt;}
.y11f{bottom:683.133333pt;}
.yff{bottom:683.548060pt;}
.y10f{bottom:683.557515pt;}
.y35f{bottom:684.733333pt;}
.y13{bottom:686.173333pt;}
.y392{bottom:690.813333pt;}
.y74{bottom:690.973333pt;}
.y44{bottom:691.453333pt;}
.y335{bottom:692.573333pt;}
.yec{bottom:701.853333pt;}
.y35e{bottom:703.293333pt;}
.y391{bottom:703.933333pt;}
.y12{bottom:704.573333pt;}
.y192{bottom:708.480000pt;}
.y73{bottom:710.213333pt;}
.y43{bottom:710.853333pt;}
.y334{bottom:713.253333pt;}
.y390{bottom:716.933333pt;}
.y31a{bottom:717.893333pt;}
.y2c8{bottom:719.493333pt;}
.y11{bottom:723.013333pt;}
.y2c4{bottom:727.333333pt;}
.y72{bottom:729.573333pt;}
.y38f{bottom:729.893333pt;}
.y42{bottom:730.213333pt;}
.yeb{bottom:730.533333pt;}
.y35d{bottom:732.453333pt;}
.y333{bottom:734.053333pt;}
.y10{bottom:741.413333pt;}
.y38e{bottom:743.013333pt;}
.y35c{bottom:747.013333pt;}
.y71{bottom:748.933333pt;}
.y41{bottom:749.413333pt;}
.y318{bottom:750.853333pt;}
.y1ce{bottom:751.173333pt;}
.y332{bottom:754.693333pt;}
.y38d{bottom:755.973333pt;}
.yea{bottom:759.333333pt;}
.yf{bottom:759.813333pt;}
.y40{bottom:760.133333pt;}
.y35b{bottom:761.573333pt;}
.y70{bottom:768.293333pt;}
.y9a{bottom:768.613333pt;}
.y38c{bottom:769.093333pt;}
.y331{bottom:775.333333pt;}
.y154{bottom:775.973333pt;}
.y35a{bottom:776.293333pt;}
.ye{bottom:778.213333pt;}
.y155{bottom:778.373333pt;}
.y3f{bottom:780.133333pt;}
.y38b{bottom:782.053333pt;}
.y6f{bottom:787.653333pt;}
.y317{bottom:787.813333pt;}
.ye8{bottom:788.773333pt;}
.y359{bottom:790.853333pt;}
.y38a{bottom:795.173333pt;}
.y330{bottom:795.973333pt;}
.yd{bottom:796.613333pt;}
.y3e{bottom:799.493333pt;}
.y358{bottom:805.413333pt;}
.y6e{bottom:807.013333pt;}
.yfe{bottom:807.813333pt;}
.y389{bottom:808.133333pt;}
.y134{bottom:809.253333pt;}
.y1d1{bottom:809.413333pt;}
.y1e3{bottom:809.733333pt;}
.y3d{bottom:814.213333pt;}
.yc{bottom:815.813333pt;}
.y32f{bottom:816.613333pt;}
.y357{bottom:819.973333pt;}
.y314{bottom:820.613333pt;}
.y388{bottom:821.253333pt;}
.y133{bottom:823.173333pt;}
.y1e2{bottom:823.493333pt;}
.yfd{bottom:825.573333pt;}
.y6d{bottom:826.213333pt;}
.ydb{bottom:831.013333pt;}
.y3c{bottom:834.213333pt;}
.yb{bottom:834.533333pt;}
.y132{bottom:836.933333pt;}
.y1e1{bottom:837.253333pt;}
.y6c{bottom:845.573333pt;}
.y356{bottom:849.093333pt;}
.y131{bottom:850.693333pt;}
.y1e0{bottom:851.013333pt;}
.y92{bottom:851.493333pt;}
.y387{bottom:851.813333pt;}
.ya{bottom:852.933333pt;}
.y3b{bottom:853.413333pt;}
.y313{bottom:853.573333pt;}
.y32e{bottom:858.053333pt;}
.yda{bottom:859.813333pt;}
.y156{bottom:862.133333pt;}
.y355{bottom:863.653333pt;}
.y6b{bottom:864.933333pt;}
.ye5{bottom:866.213333pt;}
.y25a{bottom:866.280000pt;}
.y1f3{bottom:866.533333pt;}
.y9{bottom:871.333333pt;}
.y3a{bottom:872.773333pt;}
.y312{bottom:873.573333pt;}
.y273{bottom:876.640000pt;}
.y20b{bottom:876.800000pt;}
.y172{bottom:877.760000pt;}
.y32d{bottom:878.693333pt;}
.y386{bottom:879.653333pt;}
.y354{bottom:882.213333pt;}
.y6a{bottom:884.293333pt;}
.yd9{bottom:889.413333pt;}
.y8{bottom:889.733333pt;}
.y39{bottom:892.133333pt;}
.y311{bottom:893.573333pt;}
.y385{bottom:894.213333pt;}
.y32c{bottom:899.333333pt;}
.y353{bottom:900.773333pt;}
.y69{bottom:903.653333pt;}
.ye3{bottom:908.613333pt;}
.y384{bottom:908.773333pt;}
.y38{bottom:911.493333pt;}
.y30f{bottom:913.573333pt;}
.y352{bottom:915.333333pt;}
.yd8{bottom:915.973333pt;}
.y32a{bottom:919.973333pt;}
.y7{bottom:920.133333pt;}
.y68{bottom:922.853333pt;}
.y383{bottom:923.333333pt;}
.y8d{bottom:926.373333pt;}
.y196{bottom:929.893333pt;}
.y37{bottom:930.853333pt;}
.y2c7{bottom:932.453333pt;}
.y30d{bottom:934.213333pt;}
.y382{bottom:937.893333pt;}
.ye0{bottom:938.053333pt;}
.y6{bottom:938.533333pt;}
.y2c2{bottom:939.653333pt;}
.y328{bottom:940.613333pt;}
.y67{bottom:942.240000pt;}
.yd7{bottom:943.360000pt;}
.y351{bottom:944.480000pt;}
.y36{bottom:945.600000pt;}
.y381{bottom:952.480000pt;}
.y5{bottom:956.960000pt;}
.y350{bottom:959.040000pt;}
.y66{bottom:961.600000pt;}
.y35{bottom:965.600000pt;}
.y380{bottom:967.040000pt;}
.y1cd{bottom:968.160000pt;}
.y8b{bottom:968.480000pt;}
.y2cb{bottom:970.400000pt;}
.y327{bottom:972.000000pt;}
.y4{bottom:975.360000pt;}
.y34f{bottom:977.600000pt;}
.y34{bottom:980.160000pt;}
.y65{bottom:980.960000pt;}
.y37f{bottom:981.600000pt;}
.y326{bottom:994.880000pt;}
.y64{bottom:996.160000pt;}
.y3{bottom:996.800000pt;}
.y33{bottom:1000.160000pt;}
.h81{height:8.405751pt;}
.h5e{height:8.457405pt;}
.h67{height:8.596869pt;}
.h3d{height:8.616383pt;}
.h32{height:8.720264pt;}
.h8a{height:8.812092pt;}
.h70{height:8.859728pt;}
.h48{height:8.935487pt;}
.h9b{height:8.949261pt;}
.h52{height:8.991732pt;}
.h92{height:9.015263pt;}
.h79{height:9.043385pt;}
.h80{height:12.251309pt;}
.h5d{height:12.326594pt;}
.h66{height:12.529862pt;}
.h3c{height:12.558303pt;}
.h31{height:12.709709pt;}
.h89{height:12.843548pt;}
.h6f{height:12.912977pt;}
.h47{height:13.023394pt;}
.h9a{height:13.043470pt;}
.h51{height:13.105371pt;}
.h91{height:13.139667pt;}
.h78{height:13.180655pt;}
.h12{height:13.760000pt;}
.h44{height:14.560000pt;}
.h45{height:14.592000pt;}
.h22{height:19.040000pt;}
.h23{height:19.072000pt;}
.h20{height:19.200000pt;}
.h1f{height:19.232000pt;}
.h2e{height:19.520000pt;}
.h5a{height:19.552000pt;}
.h2f{height:19.680000pt;}
.h59{height:19.712000pt;}
.hb2{height:20.000000pt;}
.hb1{height:20.032000pt;}
.h25{height:21.496400pt;}
.h60{height:21.552689pt;}
.h69{height:21.908097pt;}
.h29{height:21.971196pt;}
.h3f{height:22.741375pt;}
.h4e{height:22.809072pt;}
.h57{height:22.952645pt;}
.h34{height:23.015550pt;}
.h63{height:23.205035pt;}
.h4a{height:23.583592pt;}
.h6c{height:23.587691pt;}
.h42{height:23.641231pt;}
.h54{height:23.732040pt;}
.h37{height:23.926255pt;}
.h75{height:24.308912pt;}
.ha0{height:24.554567pt;}
.h97{height:24.735660pt;}
.h26{height:24.739395pt;}
.h2c{height:24.800000pt;}
.h7d{height:24.812821pt;}
.h2d{height:24.960000pt;}
.h27{height:25.042597pt;}
.h2a{height:25.581626pt;}
.h2b{height:25.595719pt;}
.h86{height:26.480608pt;}
.h64{height:26.643332pt;}
.h6d{height:27.082687pt;}
.h43{height:27.144160pt;}
.h38{height:27.471416pt;}
.h8f{height:27.760703pt;}
.h76{height:27.910771pt;}
.h4f{height:28.149432pt;}
.ha1{height:28.192825pt;}
.h83{height:28.298616pt;}
.h58{height:28.326621pt;}
.h98{height:28.400750pt;}
.h7e{height:28.489345pt;}
.h9d{height:28.500743pt;}
.h94{height:28.710939pt;}
.h5b{height:28.800000pt;}
.ha2{height:28.832000pt;}
.ha3{height:28.960000pt;}
.h8c{height:29.666595pt;}
.h72{height:29.826965pt;}
.h7b{height:30.445261pt;}
.h9{height:30.982500pt;}
.h4d{height:32.545208pt;}
.h56{height:32.750066pt;}
.h21{height:32.800000pt;}
.h85{height:32.907970pt;}
.hb3{height:32.960000pt;}
.h62{height:33.110190pt;}
.hd{height:33.414375pt;}
.he{height:33.467708pt;}
.h17{height:33.515625pt;}
.hb{height:33.574375pt;}
.h6b{height:33.656184pt;}
.h41{height:33.732579pt;}
.h36{height:34.139266pt;}
.hb6{height:34.240000pt;}
.hc{height:34.430312pt;}
.h8e{height:34.498769pt;}
.h74{height:34.685261pt;}
.h4c{height:34.981850pt;}
.h9f{height:35.035776pt;}
.h55{height:35.202046pt;}
.h96{height:35.294168pt;}
.h7c{height:35.404266pt;}
.h95{height:36.655455pt;}
.h40{height:36.666640pt;}
.h35{height:36.719211pt;}
.h82{height:36.728947pt;}
.h84{height:36.775138pt;}
.h9e{height:36.940681pt;}
.h4b{height:36.944037pt;}
.h8d{height:36.949629pt;}
.h5f{height:36.954647pt;}
.hb4{height:36.960000pt;}
.h6a{height:36.997726pt;}
.h73{height:36.999963pt;}
.h61{height:37.177810pt;}
.h68{height:37.564038pt;}
.h3e{height:37.649302pt;}
.had{height:37.857217pt;}
.h33{height:38.103211pt;}
.ha7{height:38.230607pt;}
.h8b{height:38.504455pt;}
.h71{height:38.712601pt;}
.h3a{height:38.715000pt;}
.h49{height:39.043628pt;}
.h9c{height:39.103815pt;}
.h53{height:39.289391pt;}
.h93{height:39.392210pt;}
.h7a{height:39.515091pt;}
.h1d{height:40.453125pt;}
.hbd{height:40.736250pt;}
.hab{height:41.151415pt;}
.h19{height:41.440000pt;}
.h13{height:41.472000pt;}
.ha5{height:41.557296pt;}
.hbc{height:44.574687pt;}
.hba{height:44.596875pt;}
.h1{height:44.687500pt;}
.h3{height:45.156250pt;}
.hbb{height:45.795000pt;}
.h2{height:47.109375pt;}
.h14{height:47.406250pt;}
.h11{height:47.621250pt;}
.hac{height:47.940041pt;}
.hb7{height:48.375000pt;}
.ha6{height:48.412878pt;}
.hb9{height:49.621875pt;}
.h10{height:50.955000pt;}
.hf{height:52.108438pt;}
.ha{height:52.134375pt;}
.hb8{height:52.633750pt;}
.h1a{height:55.200000pt;}
.hb0{height:56.760000pt;}
.hb5{height:60.512000pt;}
.hae{height:61.610520pt;}
.haf{height:61.728494pt;}
.ha9{height:62.337328pt;}
.ha8{height:62.621997pt;}
.h5{height:62.761250pt;}
.h8{height:62.812500pt;}
.h7{height:62.921250pt;}
.h6{height:63.656250pt;}
.h4{height:64.500000pt;}
.h1e{height:68.960000pt;}
.h15{height:74.880000pt;}
.h16{height:82.880000pt;}
.h18{height:110.272000pt;}
.h1b{height:110.432000pt;}
.h24{height:115.568590pt;}
.h28{height:117.632315pt;}
.h87{height:129.760000pt;}
.h39{height:129.920000pt;}
.h7f{height:140.600000pt;}
.h5c{height:141.464086pt;}
.h65{height:143.796861pt;}
.h3b{height:144.123258pt;}
.h30{height:145.860839pt;}
.h88{height:147.396823pt;}
.h6e{height:148.193614pt;}
.h46{height:149.460801pt;}
.h99{height:149.691198pt;}
.h50{height:150.400000pt;}
.h90{height:150.795186pt;}
.h77{height:151.265581pt;}
.h1c{height:207.226667pt;}
.haa{height:242.803356pt;}
.ha4{height:245.198150pt;}
.h0{height:1056.000000pt;}
.w23{width:19.840000pt;}
.w20{width:23.040000pt;}
.w1f{width:23.072000pt;}
.w21{width:23.200000pt;}
.w27{width:23.232000pt;}
.w1d{width:25.440000pt;}
.w1e{width:25.600000pt;}
.we{width:34.240000pt;}
.wf{width:34.560000pt;}
.wc{width:37.760000pt;}
.w10{width:45.280000pt;}
.wd{width:46.592000pt;}
.w25{width:47.232000pt;}
.wb{width:47.360000pt;}
.w32{width:47.520000pt;}
.w33{width:47.680000pt;}
.w7{width:52.000000pt;}
.w2a{width:53.440000pt;}
.w29{width:53.600000pt;}
.w28{width:53.632000pt;}
.w3d{width:65.632000pt;}
.w5{width:70.240000pt;}
.w39{width:74.592000pt;}
.w3b{width:74.912000pt;}
.w3a{width:75.040000pt;}
.w16{width:75.520000pt;}
.wa{width:75.552000pt;}
.w13{width:75.680000pt;}
.w15{width:75.712000pt;}
.w2{width:78.272000pt;}
.w9{width:79.520000pt;}
.w37{width:85.152000pt;}
.w3{width:85.600000pt;}
.w6{width:85.632000pt;}
.w17{width:93.792000pt;}
.w11{width:94.592000pt;}
.w4{width:100.832000pt;}
.w3c{width:103.360000pt;}
.w8{width:119.072000pt;}
.w1a{width:131.552000pt;}
.w14{width:131.680000pt;}
.w12{width:132.192000pt;}
.w19{width:132.320000pt;}
.w18{width:132.352000pt;}
.w1b{width:153.124973pt;}
.w1c{width:158.063636pt;}
.w36{width:186.746667pt;}
.w30{width:314.600000pt;}
.w24{width:314.693333pt;}
.w22{width:315.146667pt;}
.w2e{width:315.626667pt;}
.w35{width:316.606175pt;}
.w31{width:317.049537pt;}
.w26{width:317.078337pt;}
.w2f{width:317.120000pt;}
.w2c{width:317.533333pt;}
.w2d{width:317.558337pt;}
.w2b{width:319.080000pt;}
.w34{width:321.803986pt;}
.w38{width:399.266667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x4d{left:-142.662625pt;}
.x37{left:-140.902841pt;}
.x0{left:0.000000pt;}
.x33{left:1.281834pt;}
.x7{left:7.200000pt;}
.xf{left:9.600000pt;}
.x1f{left:11.741618pt;}
.x2a{left:13.626667pt;}
.x1e{left:14.567702pt;}
.x1d{left:17.391749pt;}
.x60{left:20.413101pt;}
.x44{left:21.383966pt;}
.x74{left:23.360000pt;}
.x38{left:25.098880pt;}
.x45{left:26.365576pt;}
.x39{left:30.050653pt;}
.x5e{left:32.120703pt;}
.x36{left:33.711804pt;}
.x1c{left:34.876519pt;}
.x46{left:35.951525pt;}
.x72{left:37.440000pt;}
.x3b{left:39.393892pt;}
.x51{left:41.171716pt;}
.x57{left:42.948571pt;}
.x69{left:44.399345pt;}
.x50{left:45.601585pt;}
.x3e{left:47.206424pt;}
.x73{left:51.680000pt;}
.x64{left:54.734858pt;}
.x20{left:56.331444pt;}
.x23{left:57.912858pt;}
.x56{left:60.461394pt;}
.x47{left:65.073153pt;}
.x28{left:68.640000pt;}
.x2d{left:70.080000pt;}
.x3c{left:71.091943pt;}
.x2{left:72.959988pt;}
.x6c{left:73.934161pt;}
.x62{left:75.147959pt;}
.x55{left:77.737881pt;}
.x5{left:78.719988pt;}
.x4f{left:80.260000pt;}
.x3a{left:81.718620pt;}
.x4e{left:82.739231pt;}
.x48{left:88.489947pt;}
.x30{left:92.352000pt;}
.x76{left:96.991988pt;}
.x59{left:99.872000pt;}
.x58{left:101.312000pt;}
.x5a{left:103.232000pt;}
.x6b{left:126.406233pt;}
.x61{left:128.481480pt;}
.x63{left:131.232796pt;}
.x21{left:137.798275pt;}
.x24{left:142.153155pt;}
.x54{left:145.228474pt;}
.x43{left:146.371831pt;}
.x35{left:147.317638pt;}
.x10{left:148.506667pt;}
.x8{left:151.226667pt;}
.x25{left:156.047344pt;}
.x6d{left:161.551012pt;}
.x29{left:164.320000pt;}
.x2e{left:166.266667pt;}
.x16{left:167.546667pt;}
.x66{left:172.008975pt;}
.x49{left:184.826667pt;}
.x11{left:195.866667pt;}
.x6a{left:224.655697pt;}
.x22{left:226.146667pt;}
.x5f{left:228.343932pt;}
.x2b{left:230.400000pt;}
.x12{left:233.626667pt;}
.x9{left:236.826667pt;}
.x31{left:243.546667pt;}
.x6f{left:259.706667pt;}
.x2f{left:276.386667pt;}
.x13{left:280.226667pt;}
.x2c{left:288.000000pt;}
.x17{left:299.746667pt;}
.x34{left:305.623519pt;}
.x42{left:307.494797pt;}
.x4c{left:309.440554pt;}
.x65{left:312.697629pt;}
.x14{left:314.466667pt;}
.x3{left:329.186655pt;}
.xa{left:337.666667pt;}
.x70{left:344.866667pt;}
.x15{left:349.026667pt;}
.x1b{left:374.786667pt;}
.x6{left:376.066655pt;}
.x26{left:384.226655pt;}
.x67{left:395.106655pt;}
.x71{left:404.066667pt;}
.x4{left:405.026655pt;}
.xb{left:407.906667pt;}
.x68{left:419.146704pt;}
.x27{left:420.386655pt;}
.x40{left:424.640000pt;}
.x32{left:425.653333pt;}
.x3d{left:426.973333pt;}
.x53{left:428.000000pt;}
.x52{left:429.640000pt;}
.x5c{left:443.293333pt;}
.x5d{left:448.893333pt;}
.x18{left:450.973333pt;}
.x5b{left:452.253333pt;}
.xc{left:493.533333pt;}
.xd{left:545.533333pt;}
.x19{left:582.653333pt;}
.x41{left:617.693333pt;}
.x3f{left:618.720000pt;}
.x1a{left:658.373333pt;}
.xe{left:664.613333pt;}
.x4b{left:683.333333pt;}
.x4a{left:687.173333pt;}
.x75{left:712.133321pt;}
.x1{left:720.133321pt;}
.x6e{left:736.133321pt;}
}




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