
    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_5b8fbb23d46b101b7c2a584b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_91d9febd5e0b2480f851b4c4.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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_f092514cd97392352af15a6d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56f9341c850fc944c967a76e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7d7fd3ed61ff9b406582fe2d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_567e83be08b67a0fc80b2a0c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18882532b527e1533fae9826.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_055f61db5277baaf4f417e8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_59526f2c07c3c13811104c29.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_93c09c3cfcdcf9bfc63e4343.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m50{transform:matrix(0.157322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157322,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.158482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158482,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.174803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174803,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.189327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189327,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.231401,0.000000,-0.077126,0.237806,0,0);-ms-transform:matrix(0.231401,0.000000,-0.077126,0.237806,0,0);-webkit-transform:matrix(0.231401,0.000000,-0.077126,0.237806,0,0);}
.m21{transform:matrix(0.232540,0.000000,-0.077505,0.237682,0,0);-ms-transform:matrix(0.232540,0.000000,-0.077505,0.237682,0,0);-webkit-transform:matrix(0.232540,0.000000,-0.077505,0.237682,0,0);}
.m64{transform:matrix(0.234410,0.000000,-0.078129,0.237478,0,0);-ms-transform:matrix(0.234410,0.000000,-0.078129,0.237478,0,0);-webkit-transform:matrix(0.234410,0.000000,-0.078129,0.237478,0,0);}
.m2a{transform:matrix(0.234464,0.000000,-0.078147,0.237472,0,0);-ms-transform:matrix(0.234464,0.000000,-0.078147,0.237472,0,0);-webkit-transform:matrix(0.234464,0.000000,-0.078147,0.237472,0,0);}
.m3f{transform:matrix(0.234817,0.000000,-0.078264,0.237434,0,0);-ms-transform:matrix(0.234817,0.000000,-0.078264,0.237434,0,0);-webkit-transform:matrix(0.234817,0.000000,-0.078264,0.237434,0,0);}
.m54{transform:matrix(0.234986,0.000000,-0.078321,0.237415,0,0);-ms-transform:matrix(0.234986,0.000000,-0.078321,0.237415,0,0);-webkit-transform:matrix(0.234986,0.000000,-0.078321,0.237415,0,0);}
.m1c{transform:matrix(0.235578,0.000000,-0.078518,0.237350,0,0);-ms-transform:matrix(0.235578,0.000000,-0.078518,0.237350,0,0);-webkit-transform:matrix(0.235578,0.000000,-0.078518,0.237350,0,0);}
.m5a{transform:matrix(0.235866,0.000000,-0.078614,0.237318,0,0);-ms-transform:matrix(0.235866,0.000000,-0.078614,0.237318,0,0);-webkit-transform:matrix(0.235866,0.000000,-0.078614,0.237318,0,0);}
.m6e{transform:matrix(0.236422,0.000000,-0.078799,0.237257,0,0);-ms-transform:matrix(0.236422,0.000000,-0.078799,0.237257,0,0);-webkit-transform:matrix(0.236422,0.000000,-0.078799,0.237257,0,0);}
.m62{transform:matrix(0.236451,0.000000,-0.078809,0.237253,0,0);-ms-transform:matrix(0.236451,0.000000,-0.078809,0.237253,0,0);-webkit-transform:matrix(0.236451,0.000000,-0.078809,0.237253,0,0);}
.m6c{transform:matrix(0.236789,0.000000,-0.078922,0.237216,0,0);-ms-transform:matrix(0.236789,0.000000,-0.078922,0.237216,0,0);-webkit-transform:matrix(0.236789,0.000000,-0.078922,0.237216,0,0);}
.m4a{transform:matrix(0.237192,0.000000,-0.079056,0.237171,0,0);-ms-transform:matrix(0.237192,0.000000,-0.079056,0.237171,0,0);-webkit-transform:matrix(0.237192,0.000000,-0.079056,0.237171,0,0);}
.m48{transform:matrix(0.237265,0.000000,-0.079080,0.237163,0,0);-ms-transform:matrix(0.237265,0.000000,-0.079080,0.237163,0,0);-webkit-transform:matrix(0.237265,0.000000,-0.079080,0.237163,0,0);}
.m52{transform:matrix(0.237335,0.000000,-0.079104,0.237155,0,0);-ms-transform:matrix(0.237335,0.000000,-0.079104,0.237155,0,0);-webkit-transform:matrix(0.237335,0.000000,-0.079104,0.237155,0,0);}
.m41{transform:matrix(0.237428,0.000000,-0.079135,0.237145,0,0);-ms-transform:matrix(0.237428,0.000000,-0.079135,0.237145,0,0);-webkit-transform:matrix(0.237428,0.000000,-0.079135,0.237145,0,0);}
.m58{transform:matrix(0.237433,0.000000,-0.079136,0.237144,0,0);-ms-transform:matrix(0.237433,0.000000,-0.079136,0.237144,0,0);-webkit-transform:matrix(0.237433,0.000000,-0.079136,0.237144,0,0);}
.m3d{transform:matrix(0.237669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237669,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.238615,0.000000,-0.079530,0.237013,0,0);-ms-transform:matrix(0.238615,0.000000,-0.079530,0.237013,0,0);-webkit-transform:matrix(0.238615,0.000000,-0.079530,0.237013,0,0);}
.m28{transform:matrix(0.239475,0.000000,-0.079817,0.236916,0,0);-ms-transform:matrix(0.239475,0.000000,-0.079817,0.236916,0,0);-webkit-transform:matrix(0.239475,0.000000,-0.079817,0.236916,0,0);}
.m46{transform:matrix(0.239566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239566,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.239595,0.000000,-0.079857,0.236903,0,0);-ms-transform:matrix(0.239595,0.000000,-0.079857,0.236903,0,0);-webkit-transform:matrix(0.239595,0.000000,-0.079857,0.236903,0,0);}
.m26{transform:matrix(0.239877,0.000000,-0.079951,0.236871,0,0);-ms-transform:matrix(0.239877,0.000000,-0.079951,0.236871,0,0);-webkit-transform:matrix(0.239877,0.000000,-0.079951,0.236871,0,0);}
.m32{transform:matrix(0.240234,0.000000,-0.080070,0.236831,0,0);-ms-transform:matrix(0.240234,0.000000,-0.080070,0.236831,0,0);-webkit-transform:matrix(0.240234,0.000000,-0.080070,0.236831,0,0);}
.m4f{transform:matrix(0.240690,0.000000,-0.080222,0.236779,0,0);-ms-transform:matrix(0.240690,0.000000,-0.080222,0.236779,0,0);-webkit-transform:matrix(0.240690,0.000000,-0.080222,0.236779,0,0);}
.m43{transform:matrix(0.240720,0.000000,-0.080232,0.236776,0,0);-ms-transform:matrix(0.240720,0.000000,-0.080232,0.236776,0,0);-webkit-transform:matrix(0.240720,0.000000,-0.080232,0.236776,0,0);}
.m2e{transform:matrix(0.241335,0.000000,-0.080437,0.236706,0,0);-ms-transform:matrix(0.241335,0.000000,-0.080437,0.236706,0,0);-webkit-transform:matrix(0.241335,0.000000,-0.080437,0.236706,0,0);}
.m5e{transform:matrix(0.241413,0.000000,-0.080463,0.236698,0,0);-ms-transform:matrix(0.241413,0.000000,-0.080463,0.236698,0,0);-webkit-transform:matrix(0.241413,0.000000,-0.080463,0.236698,0,0);}
.m3c{transform:matrix(0.242525,0.000000,-0.080834,0.236571,0,0);-ms-transform:matrix(0.242525,0.000000,-0.080834,0.236571,0,0);-webkit-transform:matrix(0.242525,0.000000,-0.080834,0.236571,0,0);}
.m15{transform:matrix(0.242528,0.000000,-0.080835,0.236571,0,0);-ms-transform:matrix(0.242528,0.000000,-0.080835,0.236571,0,0);-webkit-transform:matrix(0.242528,0.000000,-0.080835,0.236571,0,0);}
.m44{transform:matrix(0.242538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242538,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.242680,0.000000,-0.080885,0.236554,0,0);-ms-transform:matrix(0.242680,0.000000,-0.080885,0.236554,0,0);-webkit-transform:matrix(0.242680,0.000000,-0.080885,0.236554,0,0);}
.m24{transform:matrix(0.242867,0.000000,-0.080947,0.236532,0,0);-ms-transform:matrix(0.242867,0.000000,-0.080947,0.236532,0,0);-webkit-transform:matrix(0.242867,0.000000,-0.080947,0.236532,0,0);}
.ma{transform:matrix(0.242904,0.000000,-0.080960,0.236528,0,0);-ms-transform:matrix(0.242904,0.000000,-0.080960,0.236528,0,0);-webkit-transform:matrix(0.242904,0.000000,-0.080960,0.236528,0,0);}
.m18{transform:matrix(0.242910,0.000000,-0.080962,0.236527,0,0);-ms-transform:matrix(0.242910,0.000000,-0.080962,0.236527,0,0);-webkit-transform:matrix(0.242910,0.000000,-0.080962,0.236527,0,0);}
.m6{transform:matrix(0.243175,0.000000,-0.081050,0.236497,0,0);-ms-transform:matrix(0.243175,0.000000,-0.081050,0.236497,0,0);-webkit-transform:matrix(0.243175,0.000000,-0.081050,0.236497,0,0);}
.m5f{transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.243931,0.000000,-0.081302,0.236411,0,0);-ms-transform:matrix(0.243931,0.000000,-0.081302,0.236411,0,0);-webkit-transform:matrix(0.243931,0.000000,-0.081302,0.236411,0,0);}
.m38{transform:matrix(0.243962,0.000000,-0.081312,0.236407,0,0);-ms-transform:matrix(0.243962,0.000000,-0.081312,0.236407,0,0);-webkit-transform:matrix(0.243962,0.000000,-0.081312,0.236407,0,0);}
.m11{transform:matrix(0.244049,0.000000,-0.081341,0.236397,0,0);-ms-transform:matrix(0.244049,0.000000,-0.081341,0.236397,0,0);-webkit-transform:matrix(0.244049,0.000000,-0.081341,0.236397,0,0);}
.m6a{transform:matrix(0.244137,0.000000,-0.081370,0.236387,0,0);-ms-transform:matrix(0.244137,0.000000,-0.081370,0.236387,0,0);-webkit-transform:matrix(0.244137,0.000000,-0.081370,0.236387,0,0);}
.m8{transform:matrix(0.244209,0.000000,-0.081395,0.236379,0,0);-ms-transform:matrix(0.244209,0.000000,-0.081395,0.236379,0,0);-webkit-transform:matrix(0.244209,0.000000,-0.081395,0.236379,0,0);}
.m20{transform:matrix(0.244591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244591,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244839,0.000000,-0.081605,0.236306,0,0);-ms-transform:matrix(0.244839,0.000000,-0.081605,0.236306,0,0);-webkit-transform:matrix(0.244839,0.000000,-0.081605,0.236306,0,0);}
.m5b{transform:matrix(0.245014,0.000000,-0.081663,0.236286,0,0);-ms-transform:matrix(0.245014,0.000000,-0.081663,0.236286,0,0);-webkit-transform:matrix(0.245014,0.000000,-0.081663,0.236286,0,0);}
.m4{transform:matrix(0.245252,0.000000,-0.081743,0.236259,0,0);-ms-transform:matrix(0.245252,0.000000,-0.081743,0.236259,0,0);-webkit-transform:matrix(0.245252,0.000000,-0.081743,0.236259,0,0);}
.m1a{transform:matrix(0.245283,0.000000,-0.081753,0.236255,0,0);-ms-transform:matrix(0.245283,0.000000,-0.081753,0.236255,0,0);-webkit-transform:matrix(0.245283,0.000000,-0.081753,0.236255,0,0);}
.m68{transform:matrix(0.245745,0.000000,-0.081907,0.236202,0,0);-ms-transform:matrix(0.245745,0.000000,-0.081907,0.236202,0,0);-webkit-transform:matrix(0.245745,0.000000,-0.081907,0.236202,0,0);}
.m66{transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246548,0.000000,-0.082174,0.236109,0,0);-ms-transform:matrix(0.246548,0.000000,-0.082174,0.236109,0,0);-webkit-transform:matrix(0.246548,0.000000,-0.082174,0.236109,0,0);}
.m63{transform:matrix(0.246769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246769,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248604,0.000000,-0.082860,0.235869,0,0);-ms-transform:matrix(0.248604,0.000000,-0.082860,0.235869,0,0);-webkit-transform:matrix(0.248604,0.000000,-0.082860,0.235869,0,0);}
.m6d{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,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);}
.m49{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250855,0.000001,-0.083609,0.235604,0,0);-ms-transform:matrix(0.250855,0.000001,-0.083609,0.235604,0,0);-webkit-transform:matrix(0.250855,0.000001,-0.083609,0.235604,0,0);}
.m22{transform:matrix(0.251600,0.000000,-0.083858,0.235516,0,0);-ms-transform:matrix(0.251600,0.000000,-0.083858,0.235516,0,0);-webkit-transform:matrix(0.251600,0.000000,-0.083858,0.235516,0,0);}
.m12{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253042,0.000000,-0.084339,0.235344,0,0);-ms-transform:matrix(0.253042,0.000000,-0.084339,0.235344,0,0);-webkit-transform:matrix(0.253042,0.000000,-0.084339,0.235344,0,0);}
.m25{transform:matrix(0.253173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253173,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253545,0.000000,-0.084507,0.235284,0,0);-ms-transform:matrix(0.253545,0.000000,-0.084507,0.235284,0,0);-webkit-transform:matrix(0.253545,0.000000,-0.084507,0.235284,0,0);}
.m31{transform:matrix(0.253592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253592,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253768,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254275,0.000000,-0.084749,0.235197,0,0);-ms-transform:matrix(0.254275,0.000000,-0.084749,0.235197,0,0);-webkit-transform:matrix(0.254275,0.000000,-0.084749,0.235197,0,0);}
.m2d{transform:matrix(0.254889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254889,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.255240,0.000000,-0.085071,0.235081,0,0);-ms-transform:matrix(0.255240,0.000000,-0.085071,0.235081,0,0);-webkit-transform:matrix(0.255240,0.000000,-0.085071,0.235081,0,0);}
.m3b{transform:matrix(0.256292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256292,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.256746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256746,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257059,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.257118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257118,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.257341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257341,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.257989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257989,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258093,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.258196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258196,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258281,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259027,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259517,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.259553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259553,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.259777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259777,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.261054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261054,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.263498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263498,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.266202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266202,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.271439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271439,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-64.880833px;}
.vd{vertical-align:-61.449755px;}
.vb{vertical-align:-59.135953px;}
.v9{vertical-align:-56.178908px;}
.va{vertical-align:-45.142564px;}
.ve{vertical-align:-31.321302px;}
.v3{vertical-align:-22.667112px;}
.v4{vertical-align:-18.317524px;}
.v8{vertical-align:-12.292355px;}
.v7{vertical-align:-5.430750px;}
.v6{vertical-align:-1.572759px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.673273px;}
.v2{vertical-align:22.667112px;}
.v1{vertical-align:27.360000px;}
.ls47{letter-spacing:-1.995775px;}
.ls56{letter-spacing:-1.462191px;}
.lse{letter-spacing:-1.329162px;}
.ls4e{letter-spacing:-1.244212px;}
.ls5f{letter-spacing:-1.242729px;}
.ls52{letter-spacing:-1.124235px;}
.ls55{letter-spacing:-0.854910px;}
.ls46{letter-spacing:-0.637871px;}
.ls5c{letter-spacing:-0.568402px;}
.ls53{letter-spacing:-0.376680px;}
.ls25{letter-spacing:-0.341746px;}
.ls54{letter-spacing:-0.308032px;}
.ls50{letter-spacing:-0.186938px;}
.ls3{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.015840px;}
.ls51{letter-spacing:0.070908px;}
.ls4a{letter-spacing:0.141586px;}
.ls3c{letter-spacing:0.234720px;}
.ls0{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.414720px;}
.ls6d{letter-spacing:0.504000px;}
.ls78{letter-spacing:0.624000px;}
.ls1{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.924000px;}
.ls2d{letter-spacing:1.584000px;}
.ls2{letter-spacing:2.160000px;}
.ls6c{letter-spacing:3.600000px;}
.ls3d{letter-spacing:5.040000px;}
.ls73{letter-spacing:13.988892px;}
.ls23{letter-spacing:14.969268px;}
.ls1f{letter-spacing:16.299726px;}
.ls17{letter-spacing:16.369682px;}
.ls79{letter-spacing:17.424000px;}
.ls1a{letter-spacing:17.838756px;}
.ls6a{letter-spacing:19.321366px;}
.ls3f{letter-spacing:30.657485px;}
.ls63{letter-spacing:46.998464px;}
.ls6b{letter-spacing:53.424000px;}
.ls38{letter-spacing:54.540925px;}
.ls5e{letter-spacing:56.873947px;}
.ls61{letter-spacing:57.125606px;}
.ls69{letter-spacing:68.529340px;}
.ls39{letter-spacing:68.540419px;}
.ls65{letter-spacing:68.911123px;}
.ls2b{letter-spacing:72.995532px;}
.ls2c{letter-spacing:76.582774px;}
.ls42{letter-spacing:77.204670px;}
.ls29{letter-spacing:78.316371px;}
.ls26{letter-spacing:82.756680px;}
.ls6f{letter-spacing:92.817305px;}
.ls66{letter-spacing:93.742401px;}
.ls28{letter-spacing:94.010797px;}
.ls5b{letter-spacing:105.602566px;}
.ls1d{letter-spacing:106.263019px;}
.ls27{letter-spacing:109.738390px;}
.ls4d{letter-spacing:110.819106px;}
.ls11{letter-spacing:115.658147px;}
.ls58{letter-spacing:116.298437px;}
.ls64{letter-spacing:119.289740px;}
.ls3b{letter-spacing:123.930383px;}
.ls3a{letter-spacing:129.683924px;}
.ls57{letter-spacing:129.794037px;}
.ls16{letter-spacing:129.908114px;}
.lsa{letter-spacing:131.357663px;}
.ls1b{letter-spacing:133.032788px;}
.ls14{letter-spacing:133.196042px;}
.ls13{letter-spacing:133.558662px;}
.ls19{letter-spacing:137.603264px;}
.ls36{letter-spacing:139.772489px;}
.ls12{letter-spacing:140.692184px;}
.lsb{letter-spacing:142.325351px;}
.ls9{letter-spacing:142.645573px;}
.ls4c{letter-spacing:142.814800px;}
.ls15{letter-spacing:144.242151px;}
.ls8{letter-spacing:146.067928px;}
.ls71{letter-spacing:148.470308px;}
.ls33{letter-spacing:149.998299px;}
.ls2e{letter-spacing:150.969856px;}
.ls48{letter-spacing:151.392031px;}
.ls3e{letter-spacing:152.344788px;}
.ls62{letter-spacing:154.945254px;}
.ls40{letter-spacing:157.006967px;}
.ls10{letter-spacing:168.313906px;}
.ls67{letter-spacing:172.787140px;}
.ls2f{letter-spacing:178.422356px;}
.ls45{letter-spacing:182.934726px;}
.lsf{letter-spacing:184.037679px;}
.ls34{letter-spacing:190.694995px;}
.ls44{letter-spacing:191.610237px;}
.ls43{letter-spacing:195.980755px;}
.lsc{letter-spacing:199.234416px;}
.ls49{letter-spacing:199.548891px;}
.ls22{letter-spacing:207.713560px;}
.ls24{letter-spacing:213.401882px;}
.ls2a{letter-spacing:225.330282px;}
.ls72{letter-spacing:226.454209px;}
.ls18{letter-spacing:236.520913px;}
.ls30{letter-spacing:244.022264px;}
.ls60{letter-spacing:245.200008px;}
.ls5d{letter-spacing:246.215700px;}
.ls75{letter-spacing:247.469638px;}
.ls32{letter-spacing:251.446644px;}
.ls76{letter-spacing:261.510828px;}
.ls31{letter-spacing:273.849951px;}
.ls20{letter-spacing:277.654985px;}
.ls4b{letter-spacing:291.012214px;}
.ls59{letter-spacing:297.495052px;}
.ls68{letter-spacing:308.277034px;}
.ls6e{letter-spacing:309.376855px;}
.ls6{letter-spacing:312.423069px;}
.ls4f{letter-spacing:316.095710px;}
.ls1c{letter-spacing:326.788831px;}
.ls70{letter-spacing:356.542238px;}
.ls77{letter-spacing:378.853132px;}
.ls1e{letter-spacing:395.250860px;}
.ls35{letter-spacing:413.483494px;}
.ls74{letter-spacing:416.406272px;}
.ls7{letter-spacing:461.009410px;}
.lsd{letter-spacing:572.309254px;}
.ls5{letter-spacing:734.502764px;}
.ls37{letter-spacing:832.006787px;}
.ls21{letter-spacing:1094.505621px;}
.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;}
}
.ws1a{word-spacing:-417.161049px;}
.ws6{word-spacing:-334.291285px;}
.ws22{word-spacing:-225.959601px;}
.wsb{word-spacing:-221.102631px;}
.ws42{word-spacing:-173.660820px;}
.ws3e{word-spacing:-129.621134px;}
.ws19{word-spacing:-128.131234px;}
.ws2c{word-spacing:-120.197239px;}
.ws2{word-spacing:-72.000000px;}
.ws14{word-spacing:-38.237897px;}
.ws1b{word-spacing:-38.209915px;}
.ws50{word-spacing:-19.028103px;}
.ws0{word-spacing:-18.000000px;}
.ws45{word-spacing:-13.077143px;}
.ws12{word-spacing:-12.672639px;}
.ws11{word-spacing:-12.671288px;}
.ws16{word-spacing:-12.642477px;}
.wsc{word-spacing:-12.304292px;}
.ws1{word-spacing:-11.880000px;}
.ws2d{word-spacing:-10.438666px;}
.ws27{word-spacing:-10.342225px;}
.ws1c{word-spacing:-8.667679px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:8.421306px;}
.ws3b{word-spacing:11.896418px;}
.ws51{word-spacing:13.315568px;}
.ws53{word-spacing:13.345472px;}
.ws41{word-spacing:20.329714px;}
.ws31{word-spacing:20.984200px;}
.ws2a{word-spacing:22.315917px;}
.ws34{word-spacing:22.508635px;}
.ws38{word-spacing:31.508683px;}
.ws4d{word-spacing:43.360072px;}
.ws24{word-spacing:48.123138px;}
.ws20{word-spacing:51.509056px;}
.ws15{word-spacing:53.653632px;}
.ws4c{word-spacing:53.889772px;}
.wse{word-spacing:54.731160px;}
.ws17{word-spacing:56.996987px;}
.ws2f{word-spacing:59.726452px;}
.ws4f{word-spacing:63.716371px;}
.ws3a{word-spacing:64.818466px;}
.ws33{word-spacing:67.746579px;}
.ws52{word-spacing:70.574167px;}
.ws5{word-spacing:74.176988px;}
.ws4{word-spacing:76.179783px;}
.ws29{word-spacing:80.452721px;}
.ws4a{word-spacing:81.647658px;}
.ws21{word-spacing:81.678550px;}
.ws36{word-spacing:82.396342px;}
.ws1f{word-spacing:82.668593px;}
.ws2b{word-spacing:87.228662px;}
.ws48{word-spacing:89.605780px;}
.ws28{word-spacing:90.436046px;}
.ws44{word-spacing:99.069417px;}
.ws37{word-spacing:103.811758px;}
.ws26{word-spacing:107.021339px;}
.ws1e{word-spacing:111.553804px;}
.wsd{word-spacing:113.714722px;}
.ws46{word-spacing:114.094752px;}
.ws23{word-spacing:116.658607px;}
.ws39{word-spacing:122.781178px;}
.wsf{word-spacing:122.962177px;}
.ws3d{word-spacing:123.234785px;}
.ws43{word-spacing:123.522134px;}
.wsa{word-spacing:123.671769px;}
.ws25{word-spacing:125.099548px;}
.ws18{word-spacing:134.417022px;}
.ws3c{word-spacing:135.085436px;}
.ws10{word-spacing:139.988229px;}
.ws9{word-spacing:147.815843px;}
.ws13{word-spacing:149.673252px;}
.ws8{word-spacing:162.344540px;}
.ws3f{word-spacing:203.236624px;}
.ws1d{word-spacing:208.805838px;}
.ws32{word-spacing:216.498197px;}
.ws2e{word-spacing:229.710578px;}
.ws49{word-spacing:235.325724px;}
.ws40{word-spacing:240.469536px;}
.ws4b{word-spacing:249.688262px;}
.ws47{word-spacing:249.810042px;}
.ws35{word-spacing:319.313947px;}
.ws4e{word-spacing:409.583861px;}
.ws30{word-spacing:488.710025px;}
._3a{margin-left:-1135.573594px;}
._28{margin-left:-833.418033px;}
._18{margin-left:-743.789112px;}
._49{margin-left:-687.195453px;}
._1f{margin-left:-664.120166px;}
._31{margin-left:-567.476336px;}
._17{margin-left:-516.576784px;}
._1e{margin-left:-476.558257px;}
._2b{margin-left:-409.648568px;}
._32{margin-left:-345.393175px;}
._2f{margin-left:-233.301458px;}
._62{margin-left:-229.730359px;}
._5d{margin-left:-217.593399px;}
._44{margin-left:-194.454825px;}
._5a{margin-left:-173.165163px;}
._65{margin-left:-120.200364px;}
._4b{margin-left:-109.800280px;}
._69{margin-left:-83.715759px;}
._52{margin-left:-12.240000px;}
._50{margin-left:-6.480000px;}
._5f{margin-left:-5.045760px;}
._3{margin-left:-3.744000px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._d{width:2.211840px;}
._4{width:3.245760px;}
._b{width:4.351680px;}
._13{width:5.757120px;}
._12{width:6.932160px;}
._11{width:8.078400px;}
._a{width:9.322560px;}
._9{width:10.834560px;}
._8{width:11.914560px;}
._10{width:13.783680px;}
._14{width:15.494400px;}
._c{width:16.992000px;}
._f{width:19.534080px;}
._6{width:21.485280px;}
._5{width:22.510560px;}
._7{width:23.693280px;}
._e{width:25.073280px;}
._2e{width:26.637120px;}
._76{width:27.809280px;}
._75{width:28.998720px;}
._61{width:30.240000px;}
._73{width:32.725440px;}
._74{width:33.912000px;}
._5e{width:37.440000px;}
._54{width:39.600000px;}
._1c{width:51.120000px;}
._30{width:55.440000px;}
._6d{width:56.880000px;}
._71{width:64.800000px;}
._70{width:65.880000px;}
._19{width:68.943661px;}
._72{width:74.540160px;}
._4e{width:76.620519px;}
._60{width:85.180775px;}
._53{width:86.818752px;}
._15{width:91.081217px;}
._5b{width:92.280000px;}
._4f{width:94.595114px;}
._21{width:98.804393px;}
._6a{width:99.904004px;}
._56{width:102.870096px;}
._26{width:107.280000px;}
._3e{width:108.430928px;}
._55{width:113.658253px;}
._22{width:116.752008px;}
._47{width:118.852844px;}
._6c{width:120.294206px;}
._2d{width:122.294506px;}
._35{width:124.902122px;}
._37{width:126.999715px;}
._4c{width:133.948009px;}
._40{width:135.691226px;}
._6f{width:136.831282px;}
._46{width:138.461702px;}
._2c{width:144.124757px;}
._25{width:146.458915px;}
._24{width:149.040000px;}
._68{width:159.844922px;}
._66{width:161.280000px;}
._41{width:165.254683px;}
._2a{width:166.320000px;}
._20{width:168.004474px;}
._64{width:169.920000px;}
._57{width:171.424795px;}
._6e{width:174.214682px;}
._43{width:179.280000px;}
._5c{width:187.200000px;}
._23{width:189.378748px;}
._4d{width:190.516376px;}
._59{width:192.360000px;}
._63{width:193.404886px;}
._1a{width:194.580000px;}
._1b{width:195.745920px;}
._29{width:199.613073px;}
._3d{width:203.417120px;}
._42{width:205.351425px;}
._1d{width:208.214602px;}
._38{width:211.761537px;}
._67{width:216.700546px;}
._36{width:218.149661px;}
._45{width:222.255124px;}
._3c{width:224.409754px;}
._51{width:225.633264px;}
._3b{width:232.990127px;}
._6b{width:245.194945px;}
._16{width:247.285783px;}
._3f{width:262.047755px;}
._58{width:297.649120px;}
._34{width:359.117438px;}
._33{width:367.603155px;}
._27{width:474.890172px;}
._4a{width:503.085433px;}
._48{width:667.575187px;}
._39{width:1342.367358px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(6,3,2);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:34.670716px;}
.fs16{font-size:36.784913px;}
.fs76{font-size:40.593117px;}
.fs4d{font-size:40.971641px;}
.fs53{font-size:41.037943px;}
.fs1f{font-size:41.368898px;}
.fs50{font-size:41.486091px;}
.fs57{font-size:41.514562px;}
.fs46{font-size:41.548832px;}
.fs30{font-size:41.752722px;}
.fs23{font-size:41.754664px;}
.fs28{font-size:41.835396px;}
.fs5a{font-size:42.145886px;}
.fs5f{font-size:42.148455px;}
.fs1d{font-size:42.221718px;}
.fs42{font-size:42.406764px;}
.fs3d{font-size:42.571840px;}
.fs79{font-size:42.678323px;}
.fs4b{font-size:43.378085px;}
.fs6f{font-size:43.402015px;}
.fs4e{font-size:43.494998px;}
.fs72{font-size:44.050430px;}
.fs61{font-size:44.156913px;}
.fs4{font-size:47.520000px;}
.fs19{font-size:47.672566px;}
.fs35{font-size:47.716300px;}
.fs39{font-size:49.227017px;}
.fsb{font-size:50.569909px;}
.fs5{font-size:50.685151px;}
.fs74{font-size:52.308573px;}
.fs6c{font-size:53.421325px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs77{font-size:70.168974px;}
.fs32{font-size:70.699405px;}
.fs4c{font-size:70.886690px;}
.fs2d{font-size:70.982388px;}
.fs54{font-size:71.001402px;}
.fs20{font-size:71.640892px;}
.fs51{font-size:71.783635px;}
.fs47{font-size:71.892196px;}
.fs56{font-size:71.938781px;}
.fs0{font-size:72.000000px;}
.fs26{font-size:72.060552px;}
.fs2f{font-size:72.222906px;}
.fs29{font-size:72.494741px;}
.fs5e{font-size:72.866360px;}
.fs1c{font-size:72.984162px;}
.fs5b{font-size:73.003422px;}
.fs41{font-size:73.258459px;}
.fs3c{font-size:73.557632px;}
.fs7a{font-size:73.741618px;}
.fs55{font-size:74.841939px;}
.fs66{font-size:74.862266px;}
.fs4a{font-size:75.005956px;}
.fs6e{font-size:75.112841px;}
.fs33{font-size:75.186328px;}
.fs4f{font-size:75.208113px;}
.fs22{font-size:75.319301px;}
.fs25{font-size:75.347585px;}
.fs52{font-size:75.669055px;}
.fs48{font-size:75.789293px;}
.fs49{font-size:75.907413px;}
.fs58{font-size:75.915979px;}
.fs21{font-size:75.932868px;}
.fs24{font-size:75.940419px;}
.fs71{font-size:76.112410px;}
.fs27{font-size:76.163538px;}
.fs2b{font-size:76.186083px;}
.fs31{font-size:76.278994px;}
.fs62{font-size:76.296396px;}
.fs2a{font-size:76.512910px;}
.fs60{font-size:76.812936px;}
.fs2c{font-size:76.834416px;}
.fs45{font-size:76.846932px;}
.fs1e{font-size:76.874023px;}
.fs5c{font-size:77.079605px;}
.fs43{font-size:77.416912px;}
.fs3e{font-size:77.787039px;}
.fs7b{font-size:77.988214px;}
.fs67{font-size:78.920577px;}
.fs70{font-size:78.964449px;}
.fs73{font-size:80.201600px;}
.fs7c{font-size:80.214268px;}
.fs63{font-size:80.340742px;}
.fs65{font-size:80.340747px;}
.fs68{font-size:80.373575px;}
.fs7d{font-size:80.394408px;}
.fs1a{font-size:82.503586px;}
.fs34{font-size:82.596350px;}
.fs44{font-size:84.339237px;}
.fs38{font-size:85.056762px;}
.fs36{font-size:87.189195px;}
.fs14{font-size:87.273976px;}
.fs1b{font-size:87.303485px;}
.fsa{font-size:87.441488px;}
.fs6{font-size:87.472863px;}
.fs8{font-size:87.640757px;}
.fs3a{font-size:90.060946px;}
.fs3f{font-size:90.232815px;}
.fsf{font-size:90.791538px;}
.fs6a{font-size:90.935458px;}
.fs15{font-size:92.228134px;}
.fs6d{font-size:92.343723px;}
.fsc{font-size:92.434007px;}
.fs13{font-size:92.443106px;}
.fs10{font-size:92.501012px;}
.fs12{font-size:92.506263px;}
.fsd{font-size:92.513477px;}
.fs7{font-size:92.541827px;}
.fs11{font-size:92.622536px;}
.fse{font-size:92.632545px;}
.fs17{font-size:92.632756px;}
.fs9{font-size:92.738128px;}
.fs75{font-size:95.216914px;}
.fs69{font-size:95.747028px;}
.fs78{font-size:95.781326px;}
.fs64{font-size:96.185411px;}
.fs3b{font-size:96.448629px;}
.fs3{font-size:96.480000px;}
.fs6b{font-size:96.598222px;}
.fs2e{font-size:103.814243px;}
.fs40{font-size:105.242172px;}
.fs5d{font-size:114.299595px;}
.fs59{font-size:115.294938px;}
.fs37{font-size:115.562633px;}
.y0{bottom:0.000000px;}
.ydf{bottom:4.002478px;}
.yd1{bottom:4.020171px;}
.ya6{bottom:4.020209px;}
.ya0{bottom:4.020249px;}
.y1f8{bottom:4.215722px;}
.y1cf{bottom:4.215756px;}
.y1b7{bottom:4.225876px;}
.y1aa{bottom:4.225893px;}
.y1a1{bottom:4.225910px;}
.y1fe{bottom:4.225913px;}
.yf9{bottom:4.226534px;}
.y14a{bottom:4.244273px;}
.y167{bottom:4.251107px;}
.yc9{bottom:4.319958px;}
.ya3{bottom:4.319961px;}
.yaa{bottom:4.354837px;}
.y10f{bottom:4.474501px;}
.y13f{bottom:4.487971px;}
.y14e{bottom:4.500061px;}
.y1dd{bottom:4.558911px;}
.y1e8{bottom:4.558979px;}
.y60{bottom:4.839405px;}
.y103{bottom:5.096476px;}
.y1a7{bottom:5.125012px;}
.y1ee{bottom:5.125324px;}
.y1bd{bottom:5.125362px;}
.y1bf{bottom:5.148143px;}
.y1be{bottom:5.148167px;}
.yc5{bottom:5.182727px;}
.y4f{bottom:5.231972px;}
.y67{bottom:5.243895px;}
.y5a{bottom:5.243913px;}
.y48{bottom:5.243928px;}
.y70{bottom:5.243956px;}
.y75{bottom:5.274218px;}
.y73{bottom:5.274270px;}
.y55{bottom:5.286218px;}
.y6c{bottom:5.286266px;}
.y3e{bottom:5.286278px;}
.y7e{bottom:5.286284px;}
.y6e{bottom:5.286292px;}
.y1d6{bottom:5.411911px;}
.y97{bottom:5.467822px;}
.yc4{bottom:5.468747px;}
.yc0{bottom:5.468749px;}
.yf2{bottom:5.606262px;}
.y1f3{bottom:5.620272px;}
.y1c7{bottom:6.088401px;}
.y1e1{bottom:6.088404px;}
.y1b2{bottom:6.261423px;}
.ycd{bottom:6.262094px;}
.y116{bottom:6.262127px;}
.y117{bottom:6.262129px;}
.y92{bottom:6.262162px;}
.yec{bottom:6.482712px;}
.y18d{bottom:6.522943px;}
.y8d{bottom:6.527256px;}
.y8a{bottom:6.687394px;}
.y173{bottom:6.774518px;}
.y1c2{bottom:7.501611px;}
.y183{bottom:8.411578px;}
.ye2{bottom:8.825503px;}
.yd7{bottom:8.867960px;}
.yf0{bottom:8.984066px;}
.yca{bottom:8.988427px;}
.ya4{bottom:8.988446px;}
.ya9{bottom:9.023132px;}
.yac{bottom:9.023164px;}
.yab{bottom:9.023170px;}
.y1dc{bottom:9.082993px;}
.y1e9{bottom:9.083072px;}
.y84{bottom:9.092395px;}
.y85{bottom:9.092405px;}
.y83{bottom:9.092423px;}
.y1ce{bottom:9.115912px;}
.y1f7{bottom:9.115921px;}
.y1fa{bottom:9.115936px;}
.y1fb{bottom:9.115939px;}
.y1f9{bottom:9.115946px;}
.y1d1{bottom:9.115956px;}
.y1d2{bottom:9.115964px;}
.y1d0{bottom:9.115986px;}
.y88{bottom:9.130044px;}
.y1b6{bottom:9.137942px;}
.y1ac{bottom:9.137953px;}
.y1ad{bottom:9.137956px;}
.y1ab{bottom:9.137962px;}
.y1a3{bottom:9.137966px;}
.y1a4{bottom:9.137971px;}
.y1ff{bottom:9.137973px;}
.y200{bottom:9.137976px;}
.y1a2{bottom:9.137982px;}
.y13e{bottom:9.337914px;}
.y140{bottom:9.337953px;}
.y14f{bottom:9.363122px;}
.y9a{bottom:10.047195px;}
.y99{bottom:10.047206px;}
.y98{bottom:10.047212px;}
.yfe{bottom:10.157841px;}
.yea{bottom:10.227373px;}
.yf1{bottom:10.342017px;}
.yf3{bottom:10.342054px;}
.yf5{bottom:10.342062px;}
.yf4{bottom:10.342071px;}
.y1f2{bottom:10.367858px;}
.yd5{bottom:10.627413px;}
.y6{bottom:10.800000px;}
.y17d{bottom:10.835248px;}
.y4e{bottom:10.886040px;}
.y1c6{bottom:10.900714px;}
.y1c9{bottom:10.900757px;}
.y1e0{bottom:10.900760px;}
.y1ca{bottom:10.900766px;}
.y1c8{bottom:10.900789px;}
.y66{bottom:10.910848px;}
.y59{bottom:10.910852px;}
.y5c{bottom:10.910861px;}
.y5b{bottom:10.910867px;}
.y47{bottom:10.910869px;}
.y4a{bottom:10.910877px;}
.y49{bottom:10.910888px;}
.y71{bottom:10.910927px;}
.y77{bottom:10.928130px;}
.y74{bottom:10.928156px;}
.y76{bottom:10.928173px;}
.y56{bottom:10.952996px;}
.y7d{bottom:10.953003px;}
.y6d{bottom:10.953010px;}
.y41{bottom:10.953014px;}
.y3f{bottom:10.953052px;}
.y40{bottom:10.953064px;}
.y7f{bottom:10.953073px;}
.y6f{bottom:10.953077px;}
.yce{bottom:10.967683px;}
.y119{bottom:10.967709px;}
.y118{bottom:10.967723px;}
.y94{bottom:10.967746px;}
.y93{bottom:10.967760px;}
.y91{bottom:10.967763px;}
.y7{bottom:11.160000px;}
.y18f{bottom:11.192369px;}
.y1d7{bottom:11.260396px;}
.y175{bottom:11.385619px;}
.yfc{bottom:11.950327px;}
.yeb{bottom:11.958778px;}
.yee{bottom:11.958799px;}
.yed{bottom:11.958811px;}
.y8b{bottom:11.973287px;}
.y160{bottom:12.186453px;}
.y8c{bottom:12.894208px;}
.y180{bottom:13.116384px;}
.y1c3{bottom:13.138642px;}
.y127{bottom:13.337088px;}
.y132{bottom:13.337144px;}
.yd6{bottom:13.477840px;}
.yd8{bottom:13.477890px;}
.yda{bottom:13.477907px;}
.yd9{bottom:13.477916px;}
.y164{bottom:13.497242px;}
.ye1{bottom:14.120628px;}
.ye3{bottom:14.120659px;}
.ye5{bottom:14.120684px;}
.ye4{bottom:14.120702px;}
.y100{bottom:14.868335px;}
.yfd{bottom:14.868338px;}
.y102{bottom:14.868344px;}
.yff{bottom:14.868350px;}
.ybe{bottom:14.904274px;}
.y82{bottom:15.731898px;}
.y1db{bottom:16.913319px;}
.y1e7{bottom:16.913378px;}
.y1f6{bottom:17.618510px;}
.y158{bottom:17.944502px;}
.y156{bottom:17.944519px;}
.y155{bottom:17.944527px;}
.y126{bottom:17.971587px;}
.y12b{bottom:17.971601px;}
.y129{bottom:17.971605px;}
.y136{bottom:17.971652px;}
.y134{bottom:17.971666px;}
.y146{bottom:18.037628px;}
.y14b{bottom:18.037675px;}
.y149{bottom:18.037687px;}
.y168{bottom:18.066823px;}
.y166{bottom:18.066833px;}
.y162{bottom:18.066837px;}
.y96{bottom:18.078463px;}
.y1f1{bottom:18.605755px;}
.y101{bottom:18.804529px;}
.yc3{bottom:19.587079px;}
.yc1{bottom:19.587081px;}
.y18c{bottom:20.709320px;}
.y172{bottom:20.784874px;}
.y89{bottom:21.223725px;}
.y17e{bottom:21.278416px;}
.y182{bottom:23.773869px;}
.y131{bottom:24.692689px;}
.y147{bottom:24.828811px;}
.y163{bottom:24.868957px;}
.y177{bottom:25.395091px;}
.y176{bottom:25.395096px;}
.y192{bottom:25.414553px;}
.y190{bottom:25.414568px;}
.y184{bottom:28.478823px;}
.y157{bottom:29.213079px;}
.y154{bottom:29.213087px;}
.y128{bottom:29.257236px;}
.y12a{bottom:29.257239px;}
.y135{bottom:29.257251px;}
.y130{bottom:29.257256px;}
.y133{bottom:29.292396px;}
.y148{bottom:29.390884px;}
.y165{bottom:29.438405px;}
.y161{bottom:29.438409px;}
.ybf{bottom:30.954099px;}
.yc2{bottom:31.775958px;}
.y181{bottom:35.464027px;}
.y174{bottom:36.887627px;}
.y171{bottom:36.887629px;}
.y153{bottom:37.231380px;}
.y125{bottom:37.287683px;}
.y12f{bottom:37.287686px;}
.y18a{bottom:38.460067px;}
.ybd{bottom:39.067702px;}
.y17f{bottom:40.133605px;}
.y191{bottom:40.598933px;}
.y18e{bottom:40.598954px;}
.y18b{bottom:40.598960px;}
.ybc{bottom:46.788113px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y34{bottom:107.676000px;}
.yd3{bottom:111.276000px;}
.y1ba{bottom:116.676000px;}
.y188{bottom:119.556000px;}
.y64{bottom:130.716000px;}
.yd0{bottom:130.875000px;}
.y33{bottom:131.436000px;}
.yd2{bottom:135.396000px;}
.y209{bottom:136.836000px;}
.y1b9{bottom:140.796000px;}
.y187{bottom:143.676000px;}
.y62{bottom:150.300000px;}
.y32{bottom:155.190000px;}
.ycc{bottom:155.325000px;}
.y12d{bottom:155.550000px;}
.y63{bottom:159.150000px;}
.y1b5{bottom:160.350000px;}
.y208{bottom:160.590000px;}
.ycf{bottom:165.630000px;}
.y186{bottom:167.430000px;}
.y1b8{bottom:169.230000px;}
.y124{bottom:175.124980px;}
.y31{bottom:179.310000px;}
.y207{bottom:184.350000px;}
.y17c{bottom:187.050000px;}
.yc8{bottom:187.349980px;}
.y61{bottom:190.470000px;}
.y12c{bottom:192.990000px;}
.ycb{bottom:196.275000px;}
.y1b4{bottom:199.155000px;}
.y30{bottom:203.115000px;}
.y206{bottom:208.155000px;}
.y5f{bottom:209.700000px;}
.y5e{bottom:214.275000px;}
.y185{bottom:215.355000px;}
.y1b1{bottom:218.700000px;}
.yc7{bottom:222.195000px;}
.y1b3{bottom:224.715000px;}
.y2f{bottom:226.875000px;}
.y123{bottom:231.915000px;}
.y58{bottom:234.524980px;}
.ybb{bottom:241.724980px;}
.y5d{bottom:243.435000px;}
.y2e{bottom:250.635000px;}
.y1b0{bottom:254.235000px;}
.y122{bottom:255.675000px;}
.y17b{bottom:256.035000px;}
.yc6{bottom:261.075000px;}
.y2d{bottom:274.395000px;}
.y1af{bottom:277.995000px;}
.y121{bottom:279.435000px;}
.y17a{bottom:279.795000px;}
.y54{bottom:293.925000px;}
.y1a9{bottom:297.524980px;}
.y2c{bottom:298.155000px;}
.y57{bottom:302.835000px;}
.y120{bottom:303.195000px;}
.y179{bottom:303.915000px;}
.y1ae{bottom:306.435000px;}
.yba{bottom:307.515000px;}
.y2b{bottom:321.945000px;}
.y170{bottom:323.474980px;}
.y11f{bottom:326.985000px;}
.y205{bottom:327.345000px;}
.yb9{bottom:331.305000px;}
.y53{bottom:333.825000px;}
.y1a8{bottom:336.345000px;}
.y2a{bottom:345.705000px;}
.y178{bottom:348.945000px;}
.y11e{bottom:351.105000px;}
.yb8{bottom:355.065000px;}
.y1a6{bottom:355.875000px;}
.y52{bottom:357.585000px;}
.y1a5{bottom:360.465000px;}
.y29{bottom:369.825000px;}
.y11d{bottom:374.865000px;}
.yb7{bottom:378.825000px;}
.y1a0{bottom:380.324959px;}
.y51{bottom:381.345000px;}
.y16f{bottom:389.265000px;}
.y28{bottom:393.585000px;}
.y11c{bottom:398.625000px;}
.y4d{bottom:401.250000px;}
.yb6{bottom:402.585000px;}
.y50{bottom:410.145000px;}
.y16e{bottom:413.025000px;}
.y27{bottom:417.345000px;}
.y19f{bottom:419.145000px;}
.y11b{bottom:422.385000px;}
.yb5{bottom:426.345000px;}
.y16d{bottom:436.785000px;}
.y26{bottom:441.105000px;}
.y19e{bottom:442.905000px;}
.y11a{bottom:446.190000px;}
.yb4{bottom:450.510000px;}
.y16c{bottom:460.590000px;}
.y25{bottom:464.910000px;}
.y115{bottom:465.674959px;}
.y19d{bottom:466.710000px;}
.y204{bottom:470.310000px;}
.yb3{bottom:474.270000px;}
.y114{bottom:476.070000px;}
.y16b{bottom:484.350000px;}
.y24{bottom:488.670000px;}
.y19c{bottom:490.470000px;}
.y203{bottom:494.070000px;}
.yb2{bottom:498.030000px;}
.y113{bottom:502.350000px;}
.y16a{bottom:508.110000px;}
.y23{bottom:512.070000px;}
.y4c{bottom:512.430000px;}
.y19b{bottom:514.590000px;}
.y202{bottom:517.830000px;}
.yb1{bottom:521.790000px;}
.y112{bottom:526.110000px;}
.y169{bottom:531.870000px;}
.y22{bottom:536.190000px;}
.y1fd{bottom:537.299959px;}
.y19a{bottom:538.350000px;}
.yb0{bottom:545.550000px;}
.y201{bottom:546.270000px;}
.y111{bottom:549.870000px;}
.y15f{bottom:551.324959px;}
.y21{bottom:559.950000px;}
.y199{bottom:562.110000px;}
.yaf{bottom:569.310000px;}
.y1f5{bottom:571.874959px;}
.y110{bottom:573.660000px;}
.y46{bottom:579.749959px;}
.y1fc{bottom:580.860000px;}
.y20{bottom:584.100000px;}
.y198{bottom:585.900000px;}
.y4b{bottom:588.780000px;}
.y10e{bottom:593.099959px;}
.yae{bottom:593.100000px;}
.y10d{bottom:597.780000px;}
.y15e{bottom:604.980000px;}
.y1f{bottom:607.860000px;}
.y197{bottom:609.660000px;}
.y1f4{bottom:610.740000px;}
.ya8{bottom:612.524959px;}
.y45{bottom:619.740000px;}
.yad{bottom:621.540000px;}
.y10c{bottom:621.900000px;}
.y15d{bottom:628.740000px;}
.y1f0{bottom:630.150000px;}
.y1e{bottom:631.620000px;}
.y196{bottom:633.420000px;}
.y1ef{bottom:640.620000px;}
.y44{bottom:643.500000px;}
.y10b{bottom:645.660000px;}
.ya7{bottom:647.100000px;}
.y15c{bottom:652.860000px;}
.y1d{bottom:655.380000px;}
.y195{bottom:657.180000px;}
.y1ed{bottom:663.674959px;}
.ya2{bottom:666.524959px;}
.y43{bottom:667.260000px;}
.y1ec{bottom:668.340000px;}
.y10a{bottom:669.780000px;}
.ya5{bottom:670.874959px;}
.ya1{bottom:675.540000px;}
.y15b{bottom:676.620000px;}
.y1c{bottom:679.140000px;}
.y194{bottom:680.940000px;}
.y3d{bottom:686.699919px;}
.y1eb{bottom:692.460000px;}
.y109{bottom:693.540000px;}
.y42{bottom:695.700000px;}
.y9f{bottom:696.449919px;}
.y189{bottom:700.349919px;}
.y15a{bottom:700.410000px;}
.y9e{bottom:701.130000px;}
.y1b{bottom:702.930000px;}
.y1e6{bottom:711.899919px;}
.y108{bottom:717.330000px;}
.y152{bottom:719.849919px;}
.y1ea{bottom:720.930000px;}
.y9d{bottom:725.610000px;}
.y193{bottom:725.970000px;}
.y1a{bottom:726.690000px;}
.y159{bottom:737.850000px;}
.y107{bottom:741.090000px;}
.y1e5{bottom:747.570000px;}
.y9c{bottom:749.370000px;}
.y19{bottom:750.450000px;}
.y106{bottom:764.850000px;}
.y95{bottom:768.749919px;}
.y1e4{bottom:771.330000px;}
.y18{bottom:774.570000px;}
.y151{bottom:776.730000px;}
.y9b{bottom:779.250000px;}
.y105{bottom:788.610000px;}
.y1e3{bottom:795.090000px;}
.y14d{bottom:796.124919px;}
.y17{bottom:798.330000px;}
.y150{bottom:805.170000px;}
.y90{bottom:805.499919px;}
.yfb{bottom:808.049919px;}
.y1df{bottom:814.499919px;}
.y8f{bottom:815.970000px;}
.y16{bottom:822.090000px;}
.y104{bottom:823.170000px;}
.y1e2{bottom:825.015000px;}
.y14c{bottom:831.855000px;}
.y87{bottom:837.900000px;}
.y15{bottom:845.535000px;}
.y3c{bottom:845.895000px;}
.y8e{bottom:848.415000px;}
.y145{bottom:851.249919px;}
.yfa{bottom:854.895000px;}
.y14{bottom:869.295000px;}
.y3b{bottom:869.655000px;}
.y1da{bottom:873.900000px;}
.yf8{bottom:875.699919px;}
.y81{bottom:877.124919px;}
.yf7{bottom:878.655000px;}
.y1de{bottom:882.975000px;}
.y86{bottom:884.775000px;}
.y13{bottom:893.415000px;}
.yef{bottom:903.074919px;}
.y144{bottom:904.935000px;}
.y1d9{bottom:909.615000px;}
.yf6{bottom:913.575000px;}
.y12{bottom:917.175000px;}
.y143{bottom:928.695000px;}
.y1d8{bottom:933.735000px;}
.y7c{bottom:936.524919px;}
.ye9{bottom:936.899919px;}
.y11{bottom:940.935000px;}
.y80{bottom:945.615000px;}
.ye8{bottom:947.415000px;}
.y142{bottom:952.485000px;}
.y1d5{bottom:953.099919px;}
.y1d4{bottom:962.205000px;}
.y10{bottom:965.085000px;}
.y13d{bottom:971.849919px;}
.y7b{bottom:976.605000px;}
.ye7{bottom:979.125000px;}
.y141{bottom:980.925000px;}
.yf{bottom:988.845000px;}
.y1cd{bottom:989.849919px;}
.ye0{bottom:998.474919px;}
.y1d3{bottom:998.925000px;}
.y7a{bottom:1000.365000px;}
.y13c{bottom:1007.565000px;}
.ye6{bottom:1010.445000px;}
.ye{bottom:1012.605000px;}
.y79{bottom:1024.485000px;}
.y1cc{bottom:1028.805000px;}
.y13b{bottom:1031.325000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.yde{bottom:1039.500000px;}
.y72{bottom:1043.849919px;}
.ydd{bottom:1044.285000px;}
.y1c5{bottom:1048.124919px;}
.y78{bottom:1052.925000px;}
.y13a{bottom:1055.085000px;}
.y1cb{bottom:1058.685000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.ydc{bottom:1068.765000px;}
.y139{bottom:1078.890000px;}
.y6b{bottom:1079.474919px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.yd4{bottom:1087.724919px;}
.y1c4{bottom:1088.250000px;}
.y6a{bottom:1088.610000px;}
.ydb{bottom:1101.570000px;}
.y138{bottom:1102.650000px;}
.y37{bottom:1107.690000px;}
.y1c1{bottom:1107.899919px;}
.ya{bottom:1117.410000px;}
.y1c0{bottom:1118.490000px;}
.y69{bottom:1119.570000px;}
.y12e{bottom:1121.924919px;}
.y36{bottom:1131.450000px;}
.y65{bottom:1138.875000px;}
.y137{bottom:1140.090000px;}
.y1bc{bottom:1145.324919px;}
.y68{bottom:1148.010000px;}
.y9{bottom:1149.090000px;}
.y1bb{bottom:1150.170000px;}
.y35{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h56{height:15.825763px;}
.h44{height:15.825804px;}
.h3f{height:15.825845px;}
.h7f{height:17.999888px;}
.h21{height:19.050750px;}
.hc1{height:20.175067px;}
.h5f{height:20.175222px;}
.he9{height:20.176188px;}
.hcc{height:20.176229px;}
.h76{height:24.824960px;}
.hce{height:25.949990px;}
.h50{height:26.999675px;}
.h41{height:26.999696px;}
.h5{height:27.000000px;}
.hc5{height:28.049402px;}
.h8e{height:28.049483px;}
.he3{height:28.049744px;}
.he8{height:28.049825px;}
.h97{height:28.125082px;}
.h53{height:29.175103px;}
.h81{height:29.175144px;}
.h35{height:29.175184px;}
.h6f{height:30.225241px;}
.heb{height:30.300760px;}
.hf1{height:31.274970px;}
.hda{height:31.275011px;}
.hc9{height:31.350530px;}
.hc3{height:31.350550px;}
.hbc{height:31.350571px;}
.h16{height:32.699822px;}
.h27{height:32.699904px;}
.h1b{height:32.774341px;}
.h1e{height:32.774362px;}
.h11{height:32.774382px;}
.hc{height:32.774423px;}
.hd4{height:32.775634px;}
.he0{height:33.824169px;}
.h3a{height:33.899909px;}
.h30{height:34.027412px;}
.hd1{height:34.949941px;}
.h69{height:34.950285px;}
.h58{height:35.999478px;}
.h2f{height:36.000511px;}
.h2d{height:36.102381px;}
.h63{height:38.174751px;}
.h78{height:39.225335px;}
.he6{height:39.820103px;}
.he4{height:39.839924px;}
.h94{height:40.191419px;}
.ha3{height:40.256459px;}
.ha1{height:40.276497px;}
.h3b{height:40.601311px;}
.h9b{height:40.716330px;}
.ha9{height:40.724001px;}
.h88{height:40.757619px;}
.h86{height:40.777906px;}
.h5b{height:40.957626px;}
.h42{height:40.959531px;}
.h51{height:40.979919px;}
.h4b{height:41.059153px;}
.hb1{height:41.343304px;}
.hb8{height:41.345823px;}
.haf{height:41.363883px;}
.h37{height:41.417691px;}
.h7b{height:41.599213px;}
.h72{height:41.761145px;}
.hee{height:41.865601px;}
.hec{height:41.886440px;}
.h90{height:42.552038px;}
.hd6{height:42.575511px;}
.h98{height:42.666724px;}
.hdc{height:43.211579px;}
.hf2{height:43.233088px;}
.hbd{height:43.316034px;}
.h92{height:46.049225px;}
.ha0{height:46.123702px;}
.h31{height:46.788016px;}
.h65{height:46.807640px;}
.h6c{height:48.289589px;}
.h9a{height:49.275734px;}
.h85{height:49.350194px;}
.h8c{height:49.350255px;}
.hd2{height:49.482545px;}
.h18{height:49.606907px;}
.h28{height:49.631600px;}
.h13{height:49.719956px;}
.hd{height:49.744704px;}
.h7{height:50.229844px;}
.ha{height:50.484375px;}
.he1{height:51.312462px;}
.h4{height:55.147500px;}
.ha7{height:58.275362px;}
.h4a{height:58.725727px;}
.h29{height:61.194057px;}
.had{height:61.874852px;}
.h62{height:65.486704px;}
.h96{height:65.660181px;}
.ha6{height:65.766435px;}
.hb5{height:66.297974px;}
.h3e{height:66.358775px;}
.h9f{height:66.490994px;}
.h8b{height:66.591550px;}
.hac{height:66.634701px;}
.h49{height:66.747494px;}
.h3{height:66.757500px;}
.h5e{height:66.897877px;}
.h4f{height:67.149670px;}
.hbb{height:67.493889px;}
.h39{height:67.603006px;}
.hb4{height:67.620846px;}
.h7e{height:67.857079px;}
.h75{height:68.134194px;}
.hf0{height:68.304614px;}
.he7{height:68.832748px;}
.he5{height:68.867010px;}
.ha5{height:69.323807px;}
.hc8{height:69.342636px;}
.h60{height:69.387599px;}
.h95{height:69.536797px;}
.h93{height:69.571410px;}
.hd9{height:69.574736px;}
.h57{height:69.630673px;}
.h61{height:69.642805px;}
.ha4{height:69.649324px;}
.ha2{height:69.683993px;}
.h40{height:69.765974px;}
.h45{height:69.792172px;}
.h9e{height:70.089940px;}
.h8a{height:70.201313px;}
.h8d{height:70.310723px;}
.h3c{height:70.311617px;}
.hab{height:70.318658px;}
.h3d{height:70.334302px;}
.h43{height:70.341297px;}
.h9d{height:70.416662px;}
.h9c{height:70.451712px;}
.hdf{height:70.500607px;}
.h89{height:70.523155px;}
.h48{height:70.547964px;}
.h87{height:70.558258px;}
.h52{height:70.568847px;}
.haa{height:70.568853px;}
.ha8{height:70.603980px;}
.hb{height:70.628906px;}
.h5d{height:70.654908px;}
.h6{height:70.664062px;}
.hc0{height:70.671027px;}
.h46{height:70.723491px;}
.h5c{height:70.847568px;}
.h4e{height:70.871577px;}
.h5a{height:70.882833px;}
.h4d{height:71.114226px;}
.hba{height:71.149482px;}
.h55{height:71.169378px;}
.h84{height:71.180972px;}
.h38{height:71.206065px;}
.hb3{height:71.396490px;}
.hb9{height:71.478768px;}
.hb7{height:71.514348px;}
.h54{height:71.594327px;}
.hb2{height:71.613221px;}
.h36{height:71.629964px;}
.hb0{height:71.648867px;}
.h7d{height:71.708927px;}
.h7c{height:71.863401px;}
.h7a{height:71.899171px;}
.h74{height:72.051764px;}
.h73{height:72.156877px;}
.h71{height:72.192793px;}
.hef{height:72.238106px;}
.hed{height:72.373366px;}
.h2{height:72.562500px;}
.hc7{height:73.101726px;}
.hd8{height:73.142363px;}
.hc6{height:73.473220px;}
.h91{height:73.577620px;}
.h8f{height:73.614244px;}
.hd7{height:73.682469px;}
.hd5{height:73.719146px;}
.h99{height:73.775927px;}
.hf5{height:74.004654px;}
.hde{height:74.288299px;}
.hf3{height:74.300032px;}
.hbf{height:74.417181px;}
.hc4{height:74.417186px;}
.hcb{height:74.447594px;}
.hf4{height:74.466890px;}
.hdd{height:74.663004px;}
.hdb{height:74.700168px;}
.hbe{height:74.843486px;}
.hca{height:74.880741px;}
.h9{height:75.251250px;}
.h34{height:76.420558px;}
.h68{height:76.506483px;}
.h6e{height:78.785487px;}
.h67{height:80.760695px;}
.h2b{height:80.839225px;}
.h33{height:80.866558px;}
.h32{height:80.972758px;}
.h1a{height:80.994386px;}
.h10{height:81.023448px;}
.h66{height:81.023471px;}
.h64{height:81.063801px;}
.h15{height:81.178963px;}
.h80{height:82.733167px;}
.h6d{height:83.420710px;}
.h6b{height:83.478560px;}
.h22{height:84.097436px;}
.h2a{height:85.428110px;}
.hd3{height:85.535177px;}
.h19{height:85.618804px;}
.h26{height:85.627232px;}
.h23{height:85.680869px;}
.h25{height:85.685733px;}
.h1d{height:85.692415px;}
.hf{height:85.718674px;}
.h24{height:85.793433px;}
.h20{height:85.802704px;}
.h2e{height:85.802900px;}
.h2c{height:85.807120px;}
.h17{height:85.819039px;}
.he{height:85.849831px;}
.h14{height:85.900503px;}
.h12{height:86.014610px;}
.he2{height:88.196527px;}
.h77{height:88.514514px;}
.hcd{height:88.687555px;}
.hea{height:88.719324px;}
.hc2{height:89.093616px;}
.hcf{height:89.248179px;}
.h70{height:89.337426px;}
.h47{height:89.361578px;}
.hd0{height:89.475989px;}
.h4c{height:89.880832px;}
.h83{height:90.416684px;}
.h82{height:90.452321px;}
.h59{height:96.159970px;}
.h8{height:97.233750px;}
.h79{height:97.482618px;}
.hb6{height:105.872232px;}
.hae{height:106.794189px;}
.h6a{height:107.042145px;}
.h1c{height:108.474232px;}
.h1f{height:108.639629px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:14.775177px;}
.w1a{width:14.776227px;}
.w15{width:18.000354px;}
.wa{width:18.001257px;}
.w2f{width:19.125675px;}
.w22{width:20.175126px;}
.w32{width:22.274953px;}
.w3b{width:22.349462px;}
.w20{width:24.898699px;}
.w34{width:30.225121px;}
.w18{width:31.724250px;}
.w33{width:34.951124px;}
.w37{width:42.825868px;}
.w1c{width:45.000128px;}
.w28{width:56.176010px;}
.wd{width:68.775531px;}
.w26{width:74.172657px;}
.w19{width:78.825875px;}
.w29{width:87.822849px;}
.wf{width:87.824889px;}
.w7{width:88.952521px;}
.w2e{width:92.174092px;}
.w2b{width:94.721045px;}
.w24{width:96.825891px;}
.w6{width:96.826460px;}
.w2a{width:97.953387px;}
.w3a{width:102.225858px;}
.w16{width:103.346252px;}
.w27{width:103.722080px;}
.w4{width:104.076000px;}
.w1d{width:104.773769px;}
.w35{width:108.000193px;}
.w23{width:110.095045px;}
.w38{width:110.170655px;}
.w30{width:115.948910px;}
.w12{width:121.651725px;}
.w10{width:122.775140px;}
.w1e{width:122.777914px;}
.w36{width:123.822573px;}
.w31{width:127.127155px;}
.w9{width:128.169276px;}
.w1b{width:128.174658px;}
.we{width:130.345378px;}
.w25{width:140.778862px;}
.w3d{width:140.778872px;}
.w2d{width:142.949056px;}
.wc{width:145.119675px;}
.w1f{width:145.120193px;}
.w2c{width:151.945391px;}
.w39{width:155.167847px;}
.w17{width:155.170283px;}
.w5{width:155.174821px;}
.w3e{width:181.124549px;}
.w13{width:207.004626px;}
.wb{width:219.593682px;}
.w8{width:223.938689px;}
.w3c{width:252.005261px;}
.w21{width:266.403857px;}
.w3{width:298.905000px;}
.w11{width:375.824900px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:1.583717px;}
.x38{left:2.915955px;}
.x35{left:5.055958px;}
.x29{left:7.695981px;}
.x4a{left:10.656868px;}
.x2c{left:12.260269px;}
.x1e{left:13.260352px;}
.x44{left:14.943300px;}
.x19{left:16.716886px;}
.x3e{left:17.748487px;}
.x59{left:19.083939px;}
.x41{left:20.088838px;}
.x27{left:21.863735px;}
.x1f{left:23.999135px;}
.x15{left:25.861564px;}
.x1b{left:27.495349px;}
.x39{left:29.856364px;}
.x3d{left:31.246824px;}
.x28{left:33.714105px;}
.x67{left:35.566211px;}
.x43{left:37.105024px;}
.x13{left:40.133262px;}
.x1d{left:41.302334px;}
.x8{left:43.230000px;}
.x18{left:44.827672px;}
.x14{left:47.597093px;}
.x5e{left:50.012920px;}
.x66{left:51.093274px;}
.x73{left:52.899662px;}
.x6e{left:54.091783px;}
.x5b{left:55.996092px;}
.x45{left:58.328324px;}
.x2e{left:60.112669px;}
.x6f{left:61.451031px;}
.x37{left:63.064218px;}
.x65{left:65.174918px;}
.x21{left:67.468898px;}
.x32{left:69.051836px;}
.x52{left:71.022663px;}
.x60{left:72.524431px;}
.x57{left:77.264456px;}
.x71{left:79.077320px;}
.x34{left:80.633703px;}
.x77{left:82.888973px;}
.x3c{left:85.699220px;}
.x51{left:87.562085px;}
.x53{left:89.993076px;}
.x6d{left:91.253976px;}
.x7a{left:92.728489px;}
.x2a{left:94.405977px;}
.x5{left:95.796000px;}
.x4e{left:96.857891px;}
.x23{left:99.315833px;}
.x7d{left:101.662854px;}
.x76{left:107.903552px;}
.x78{left:111.390158px;}
.x89{left:116.122735px;}
.x11{left:117.755987px;}
.x16{left:120.178717px;}
.x61{left:123.188845px;}
.x7b{left:124.786707px;}
.xf{left:128.555987px;}
.x50{left:131.634277px;}
.x79{left:134.044873px;}
.xb{left:140.471987px;}
.xd{left:149.111987px;}
.x56{left:163.874987px;}
.xa{left:167.834987px;}
.x54{left:180.794987px;}
.x25{left:184.830000px;}
.x84{left:190.154987px;}
.x3{left:196.274987px;}
.x8b{left:197.804980px;}
.x26{left:202.754987px;}
.x72{left:205.274987px;}
.x3a{left:218.594987px;}
.x70{left:223.274987px;}
.x55{left:227.954987px;}
.x36{left:236.984987px;}
.x20{left:238.064987px;}
.x7f{left:241.304987px;}
.x75{left:243.824987px;}
.x1c{left:245.984987px;}
.x74{left:247.064987px;}
.x8d{left:251.384987px;}
.x4f{left:252.464987px;}
.x5c{left:253.904987px;}
.xe{left:255.344987px;}
.x88{left:257.144987px;}
.x8c{left:259.304987px;}
.x82{left:265.064987px;}
.x8a{left:272.984987px;}
.x83{left:276.224987px;}
.x24{left:277.304987px;}
.x33{left:279.464987px;}
.x6{left:290.634000px;}
.x7e{left:292.064987px;}
.x62{left:294.224987px;}
.x7c{left:301.064987px;}
.x17{left:304.304987px;}
.x40{left:320.579980px;}
.x12{left:322.664987px;}
.x91{left:330.269987px;}
.x85{left:331.379980px;}
.x2{left:333.509987px;}
.xc{left:337.109987px;}
.x69{left:338.954980px;}
.x4{left:342.869987px;}
.x3b{left:349.588162px;}
.x46{left:356.189987px;}
.x6a{left:359.069987px;}
.x6b{left:366.330000px;}
.x2b{left:368.789987px;}
.x49{left:371.354959px;}
.x22{left:373.109987px;}
.x4b{left:389.309987px;}
.x7{left:394.710000px;}
.x10{left:402.989987px;}
.x68{left:415.589987px;}
.x5d{left:433.604959px;}
.x42{left:442.259987px;}
.x2d{left:447.629959px;}
.x6c{left:476.459987px;}
.x9{left:498.780000px;}
.x86{left:502.379959px;}
.x3f{left:525.089987px;}
.x87{left:532.649987px;}
.x5f{left:556.409987px;}
.x4c{left:561.404959px;}
.x63{left:573.630000px;}
.x58{left:576.554959px;}
.x4d{left:579.449987px;}
.x2f{left:592.769987px;}
.x47{left:594.179959px;}
.x64{left:598.529987px;}
.x48{left:608.969987px;}
.x5a{left:621.614987px;}
.x90{left:625.214987px;}
.x30{left:627.629959px;}
.x8e{left:644.205000px;}
.x8f{left:666.614987px;}
.x31{left:696.494987px;}
.x80{left:773.804919px;}
.x81{left:793.004987px;}
.x1{left:797.684987px;}
@media print{
.vc{vertical-align:-57.671852pt;}
.vd{vertical-align:-54.622005pt;}
.vb{vertical-align:-52.565292pt;}
.v9{vertical-align:-49.936807pt;}
.va{vertical-align:-40.126723pt;}
.ve{vertical-align:-27.841158pt;}
.v3{vertical-align:-20.148544pt;}
.v4{vertical-align:-16.282244pt;}
.v8{vertical-align:-10.926538pt;}
.v7{vertical-align:-4.827333pt;}
.v6{vertical-align:-1.398008pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.598465pt;}
.v2{vertical-align:20.148544pt;}
.v1{vertical-align:24.320000pt;}
.ls47{letter-spacing:-1.774022pt;}
.ls56{letter-spacing:-1.299725pt;}
.lse{letter-spacing:-1.181477pt;}
.ls4e{letter-spacing:-1.105967pt;}
.ls5f{letter-spacing:-1.104648pt;}
.ls52{letter-spacing:-0.999320pt;}
.ls55{letter-spacing:-0.759920pt;}
.ls46{letter-spacing:-0.566997pt;}
.ls5c{letter-spacing:-0.505247pt;}
.ls53{letter-spacing:-0.334826pt;}
.ls25{letter-spacing:-0.303774pt;}
.ls54{letter-spacing:-0.273807pt;}
.ls50{letter-spacing:-0.166167pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.014080pt;}
.ls51{letter-spacing:0.063029pt;}
.ls4a{letter-spacing:0.125854pt;}
.ls3c{letter-spacing:0.208640pt;}
.ls0{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.368640pt;}
.ls6d{letter-spacing:0.448000pt;}
.ls78{letter-spacing:0.554667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.821333pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls6c{letter-spacing:3.200000pt;}
.ls3d{letter-spacing:4.480000pt;}
.ls73{letter-spacing:12.434571pt;}
.ls23{letter-spacing:13.306016pt;}
.ls1f{letter-spacing:14.488645pt;}
.ls17{letter-spacing:14.550828pt;}
.ls79{letter-spacing:15.488000pt;}
.ls1a{letter-spacing:15.856672pt;}
.ls6a{letter-spacing:17.174547pt;}
.ls3f{letter-spacing:27.251097pt;}
.ls63{letter-spacing:41.776412pt;}
.ls6b{letter-spacing:47.488000pt;}
.ls38{letter-spacing:48.480822pt;}
.ls5e{letter-spacing:50.554620pt;}
.ls61{letter-spacing:50.778316pt;}
.ls69{letter-spacing:60.914968pt;}
.ls39{letter-spacing:60.924817pt;}
.ls65{letter-spacing:61.254332pt;}
.ls2b{letter-spacing:64.884917pt;}
.ls2c{letter-spacing:68.073577pt;}
.ls42{letter-spacing:68.626373pt;}
.ls29{letter-spacing:69.614552pt;}
.ls26{letter-spacing:73.561493pt;}
.ls6f{letter-spacing:82.504271pt;}
.ls66{letter-spacing:83.326579pt;}
.ls28{letter-spacing:83.565153pt;}
.ls5b{letter-spacing:93.868947pt;}
.ls1d{letter-spacing:94.456017pt;}
.ls27{letter-spacing:97.545235pt;}
.ls4d{letter-spacing:98.505872pt;}
.ls11{letter-spacing:102.807242pt;}
.ls58{letter-spacing:103.376389pt;}
.ls64{letter-spacing:106.035325pt;}
.ls3b{letter-spacing:110.160340pt;}
.ls3a{letter-spacing:115.274599pt;}
.ls57{letter-spacing:115.372478pt;}
.ls16{letter-spacing:115.473880pt;}
.lsa{letter-spacing:116.762367pt;}
.ls1b{letter-spacing:118.251367pt;}
.ls14{letter-spacing:118.396482pt;}
.ls13{letter-spacing:118.718811pt;}
.ls19{letter-spacing:122.314012pt;}
.ls36{letter-spacing:124.242212pt;}
.ls12{letter-spacing:125.059719pt;}
.lsb{letter-spacing:126.511423pt;}
.ls9{letter-spacing:126.796065pt;}
.ls4c{letter-spacing:126.946489pt;}
.ls15{letter-spacing:128.215246pt;}
.ls8{letter-spacing:129.838159pt;}
.ls71{letter-spacing:131.973607pt;}
.ls33{letter-spacing:133.331821pt;}
.ls2e{letter-spacing:134.195428pt;}
.ls48{letter-spacing:134.570694pt;}
.ls3e{letter-spacing:135.417589pt;}
.ls62{letter-spacing:137.729114pt;}
.ls40{letter-spacing:139.561748pt;}
.ls10{letter-spacing:149.612361pt;}
.ls67{letter-spacing:153.588569pt;}
.ls2f{letter-spacing:158.597649pt;}
.ls45{letter-spacing:162.608645pt;}
.lsf{letter-spacing:163.589048pt;}
.ls34{letter-spacing:169.506663pt;}
.ls44{letter-spacing:170.320210pt;}
.ls43{letter-spacing:174.205116pt;}
.lsc{letter-spacing:177.097258pt;}
.ls49{letter-spacing:177.376792pt;}
.ls22{letter-spacing:184.634276pt;}
.ls24{letter-spacing:189.690562pt;}
.ls2a{letter-spacing:200.293584pt;}
.ls72{letter-spacing:201.292630pt;}
.ls18{letter-spacing:210.240811pt;}
.ls30{letter-spacing:216.908679pt;}
.ls60{letter-spacing:217.955563pt;}
.ls5d{letter-spacing:218.858400pt;}
.ls75{letter-spacing:219.973011pt;}
.ls32{letter-spacing:223.508128pt;}
.ls76{letter-spacing:232.454069pt;}
.ls31{letter-spacing:243.422179pt;}
.ls20{letter-spacing:246.804431pt;}
.ls4b{letter-spacing:258.677523pt;}
.ls59{letter-spacing:264.440046pt;}
.ls68{letter-spacing:274.024030pt;}
.ls6e{letter-spacing:275.001649pt;}
.ls6{letter-spacing:277.709395pt;}
.ls4f{letter-spacing:280.973964pt;}
.ls1c{letter-spacing:290.478961pt;}
.ls70{letter-spacing:316.926434pt;}
.ls77{letter-spacing:336.758339pt;}
.ls1e{letter-spacing:351.334098pt;}
.ls35{letter-spacing:367.540884pt;}
.ls74{letter-spacing:370.138909pt;}
.ls7{letter-spacing:409.786142pt;}
.lsd{letter-spacing:508.719337pt;}
.ls5{letter-spacing:652.891346pt;}
.ls37{letter-spacing:739.561589pt;}
.ls21{letter-spacing:972.893885pt;}
.ws1a{word-spacing:-370.809821pt;}
.ws6{word-spacing:-297.147809pt;}
.ws22{word-spacing:-200.852979pt;}
.wsb{word-spacing:-196.535672pt;}
.ws42{word-spacing:-154.365173pt;}
.ws3e{word-spacing:-115.218786pt;}
.ws19{word-spacing:-113.894431pt;}
.ws2c{word-spacing:-106.841990pt;}
.ws2{word-spacing:-64.000000pt;}
.ws14{word-spacing:-33.989242pt;}
.ws1b{word-spacing:-33.964369pt;}
.ws50{word-spacing:-16.913869pt;}
.ws0{word-spacing:-16.000000pt;}
.ws45{word-spacing:-11.624127pt;}
.ws12{word-spacing:-11.264568pt;}
.ws11{word-spacing:-11.263367pt;}
.ws16{word-spacing:-11.237757pt;}
.wsc{word-spacing:-10.937149pt;}
.ws1{word-spacing:-10.560000pt;}
.ws2d{word-spacing:-9.278814pt;}
.ws27{word-spacing:-9.193088pt;}
.ws1c{word-spacing:-7.704604pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:7.485606pt;}
.ws3b{word-spacing:10.574594pt;}
.ws51{word-spacing:11.836061pt;}
.ws53{word-spacing:11.862641pt;}
.ws41{word-spacing:18.070857pt;}
.ws31{word-spacing:18.652623pt;}
.ws2a{word-spacing:19.836370pt;}
.ws34{word-spacing:20.007676pt;}
.ws38{word-spacing:28.007718pt;}
.ws4d{word-spacing:38.542286pt;}
.ws24{word-spacing:42.776123pt;}
.ws20{word-spacing:45.785828pt;}
.ws15{word-spacing:47.692118pt;}
.ws4c{word-spacing:47.902019pt;}
.wse{word-spacing:48.649920pt;}
.ws17{word-spacing:50.663988pt;}
.ws2f{word-spacing:53.090180pt;}
.ws4f{word-spacing:56.636774pt;}
.ws3a{word-spacing:57.616414pt;}
.ws33{word-spacing:60.219182pt;}
.ws52{word-spacing:62.732593pt;}
.ws5{word-spacing:65.935100pt;}
.ws4{word-spacing:67.715362pt;}
.ws29{word-spacing:71.513530pt;}
.ws4a{word-spacing:72.575696pt;}
.ws21{word-spacing:72.603156pt;}
.ws36{word-spacing:73.241193pt;}
.ws1f{word-spacing:73.483194pt;}
.ws2b{word-spacing:77.536588pt;}
.ws48{word-spacing:79.649582pt;}
.ws28{word-spacing:80.387597pt;}
.ws44{word-spacing:88.061704pt;}
.ws37{word-spacing:92.277118pt;}
.ws26{word-spacing:95.130079pt;}
.ws1e{word-spacing:99.158937pt;}
.wsd{word-spacing:101.079753pt;}
.ws46{word-spacing:101.417557pt;}
.ws23{word-spacing:103.696540pt;}
.ws39{word-spacing:109.138825pt;}
.wsf{word-spacing:109.299713pt;}
.ws3d{word-spacing:109.542031pt;}
.ws43{word-spacing:109.797452pt;}
.wsa{word-spacing:109.930462pt;}
.ws25{word-spacing:111.199598pt;}
.ws18{word-spacing:119.481797pt;}
.ws3c{word-spacing:120.075943pt;}
.ws10{word-spacing:124.433981pt;}
.ws9{word-spacing:131.391860pt;}
.ws13{word-spacing:133.042891pt;}
.ws8{word-spacing:144.306258pt;}
.ws3f{word-spacing:180.654777pt;}
.ws1d{word-spacing:185.605190pt;}
.ws32{word-spacing:192.442842pt;}
.ws2e{word-spacing:204.187180pt;}
.ws49{word-spacing:209.178421pt;}
.ws40{word-spacing:213.750699pt;}
.ws4b{word-spacing:221.945122pt;}
.ws47{word-spacing:222.053370pt;}
.ws35{word-spacing:283.834620pt;}
.ws4e{word-spacing:364.074543pt;}
.ws30{word-spacing:434.408911pt;}
._3a{margin-left:-1009.398750pt;}
._28{margin-left:-740.816030pt;}
._18{margin-left:-661.145878pt;}
._49{margin-left:-610.840402pt;}
._1f{margin-left:-590.329037pt;}
._31{margin-left:-504.423410pt;}
._17{margin-left:-459.179364pt;}
._1e{margin-left:-423.607340pt;}
._2b{margin-left:-364.132061pt;}
._32{margin-left:-307.016155pt;}
._2f{margin-left:-207.379074pt;}
._62{margin-left:-204.204763pt;}
._5d{margin-left:-193.416354pt;}
._44{margin-left:-172.848733pt;}
._5a{margin-left:-153.924589pt;}
._65{margin-left:-106.844768pt;}
._4b{margin-left:-97.600249pt;}
._69{margin-left:-74.414008pt;}
._52{margin-left:-10.880000pt;}
._50{margin-left:-5.760000pt;}
._5f{margin-left:-4.485120pt;}
._3{margin-left:-3.328000pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._d{width:1.966080pt;}
._4{width:2.885120pt;}
._b{width:3.868160pt;}
._13{width:5.117440pt;}
._12{width:6.161920pt;}
._11{width:7.180800pt;}
._a{width:8.286720pt;}
._9{width:9.630720pt;}
._8{width:10.590720pt;}
._10{width:12.252160pt;}
._14{width:13.772800pt;}
._c{width:15.104000pt;}
._f{width:17.363627pt;}
._6{width:19.098027pt;}
._5{width:20.009387pt;}
._7{width:21.060693pt;}
._e{width:22.287360pt;}
._2e{width:23.677440pt;}
._76{width:24.719360pt;}
._75{width:25.776640pt;}
._61{width:26.880000pt;}
._73{width:29.089280pt;}
._74{width:30.144000pt;}
._5e{width:33.280000pt;}
._54{width:35.200000pt;}
._1c{width:45.440000pt;}
._30{width:49.280000pt;}
._6d{width:50.560000pt;}
._71{width:57.600000pt;}
._70{width:58.560000pt;}
._19{width:61.283254pt;}
._72{width:66.257920pt;}
._4e{width:68.107128pt;}
._60{width:75.716244pt;}
._53{width:77.172224pt;}
._15{width:80.961082pt;}
._5b{width:82.026667pt;}
._4f{width:84.084546pt;}
._21{width:87.826127pt;}
._6a{width:88.803559pt;}
._56{width:91.440085pt;}
._26{width:95.360000pt;}
._3e{width:96.383047pt;}
._55{width:101.029559pt;}
._22{width:103.779563pt;}
._47{width:105.646972pt;}
._6c{width:106.928183pt;}
._2d{width:108.706227pt;}
._35{width:111.024109pt;}
._37{width:112.888636pt;}
._4c{width:119.064897pt;}
._40{width:120.614423pt;}
._6f{width:121.627806pt;}
._46{width:123.077068pt;}
._2c{width:128.110895pt;}
._25{width:130.185702pt;}
._24{width:132.480000pt;}
._68{width:142.084376pt;}
._66{width:143.360000pt;}
._41{width:146.893051pt;}
._2a{width:147.840000pt;}
._20{width:149.337310pt;}
._64{width:151.040000pt;}
._57{width:152.377595pt;}
._6e{width:154.857495pt;}
._43{width:159.360000pt;}
._5c{width:166.400000pt;}
._23{width:168.336665pt;}
._4d{width:169.347890pt;}
._59{width:170.986667pt;}
._63{width:171.915454pt;}
._1a{width:172.960000pt;}
._1b{width:173.996373pt;}
._29{width:177.433843pt;}
._3d{width:180.815218pt;}
._42{width:182.534600pt;}
._1d{width:185.079646pt;}
._38{width:188.232478pt;}
._67{width:192.622707pt;}
._36{width:193.910810pt;}
._45{width:197.560110pt;}
._3c{width:199.475337pt;}
._51{width:200.562902pt;}
._3b{width:207.102335pt;}
._6b{width:217.951062pt;}
._16{width:219.809585pt;}
._3f{width:232.931338pt;}
._58{width:264.576996pt;}
._34{width:319.215501pt;}
._33{width:326.758360pt;}
._27{width:422.124598pt;}
._4a{width:447.187052pt;}
._48{width:593.400166pt;}
._39{width:1193.215430pt;}
.fs18{font-size:30.818414pt;}
.fs16{font-size:32.697701pt;}
.fs76{font-size:36.082771pt;}
.fs4d{font-size:36.419237pt;}
.fs53{font-size:36.478172pt;}
.fs1f{font-size:36.772354pt;}
.fs50{font-size:36.876526pt;}
.fs57{font-size:36.901833pt;}
.fs46{font-size:36.932295pt;}
.fs30{font-size:37.113530pt;}
.fs23{font-size:37.115257pt;}
.fs28{font-size:37.187019pt;}
.fs5a{font-size:37.463010pt;}
.fs5f{font-size:37.465293pt;}
.fs1d{font-size:37.530416pt;}
.fs42{font-size:37.694901pt;}
.fs3d{font-size:37.841635pt;}
.fs79{font-size:37.936287pt;}
.fs4b{font-size:38.558298pt;}
.fs6f{font-size:38.579569pt;}
.fs4e{font-size:38.662221pt;}
.fs72{font-size:39.155938pt;}
.fs61{font-size:39.250589pt;}
.fs4{font-size:42.240000pt;}
.fs19{font-size:42.375614pt;}
.fs35{font-size:42.414489pt;}
.fs39{font-size:43.757349pt;}
.fsb{font-size:44.951030pt;}
.fs5{font-size:45.053468pt;}
.fs74{font-size:46.496509pt;}
.fs6c{font-size:47.485622pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs77{font-size:62.372421pt;}
.fs32{font-size:62.843915pt;}
.fs4c{font-size:63.010391pt;}
.fs2d{font-size:63.095456pt;}
.fs54{font-size:63.112357pt;}
.fs20{font-size:63.680793pt;}
.fs51{font-size:63.807676pt;}
.fs47{font-size:63.904174pt;}
.fs56{font-size:63.945583pt;}
.fs0{font-size:64.000000pt;}
.fs26{font-size:64.053824pt;}
.fs2f{font-size:64.198139pt;}
.fs29{font-size:64.439770pt;}
.fs5e{font-size:64.770098pt;}
.fs1c{font-size:64.874811pt;}
.fs5b{font-size:64.891931pt;}
.fs41{font-size:65.118630pt;}
.fs3c{font-size:65.384562pt;}
.fs7a{font-size:65.548105pt;}
.fs55{font-size:66.526168pt;}
.fs66{font-size:66.544237pt;}
.fs4a{font-size:66.671961pt;}
.fs6e{font-size:66.766970pt;}
.fs33{font-size:66.832292pt;}
.fs4f{font-size:66.851656pt;}
.fs22{font-size:66.950490pt;}
.fs25{font-size:66.975631pt;}
.fs52{font-size:67.261383pt;}
.fs48{font-size:67.368260pt;}
.fs49{font-size:67.473256pt;}
.fs58{font-size:67.480870pt;}
.fs21{font-size:67.495883pt;}
.fs24{font-size:67.502595pt;}
.fs71{font-size:67.655476pt;}
.fs27{font-size:67.700922pt;}
.fs2b{font-size:67.720963pt;}
.fs31{font-size:67.803550pt;}
.fs62{font-size:67.819019pt;}
.fs2a{font-size:68.011476pt;}
.fs60{font-size:68.278165pt;}
.fs2c{font-size:68.297259pt;}
.fs45{font-size:68.308384pt;}
.fs1e{font-size:68.332465pt;}
.fs5c{font-size:68.515205pt;}
.fs43{font-size:68.815033pt;}
.fs3e{font-size:69.144035pt;}
.fs7b{font-size:69.322857pt;}
.fs67{font-size:70.151624pt;}
.fs70{font-size:70.190621pt;}
.fs73{font-size:71.290312pt;}
.fs7c{font-size:71.301571pt;}
.fs63{font-size:71.413993pt;}
.fs65{font-size:71.413997pt;}
.fs68{font-size:71.443178pt;}
.fs7d{font-size:71.461696pt;}
.fs1a{font-size:73.336521pt;}
.fs34{font-size:73.418978pt;}
.fs44{font-size:74.968210pt;}
.fs38{font-size:75.606011pt;}
.fs36{font-size:77.501507pt;}
.fs14{font-size:77.576867pt;}
.fs1b{font-size:77.603098pt;}
.fsa{font-size:77.725767pt;}
.fs6{font-size:77.753656pt;}
.fs8{font-size:77.902895pt;}
.fs3a{font-size:80.054174pt;}
.fs3f{font-size:80.206946pt;}
.fsf{font-size:80.703590pt;}
.fs6a{font-size:80.831518pt;}
.fs15{font-size:81.980563pt;}
.fs6d{font-size:82.083309pt;}
.fsc{font-size:82.163562pt;}
.fs13{font-size:82.171650pt;}
.fs10{font-size:82.223122pt;}
.fs12{font-size:82.227789pt;}
.fsd{font-size:82.234202pt;}
.fs7{font-size:82.259401pt;}
.fs11{font-size:82.331143pt;}
.fse{font-size:82.340040pt;}
.fs17{font-size:82.340228pt;}
.fs9{font-size:82.433892pt;}
.fs75{font-size:84.637257pt;}
.fs69{font-size:85.108469pt;}
.fs78{font-size:85.138957pt;}
.fs64{font-size:85.498143pt;}
.fs3b{font-size:85.732115pt;}
.fs3{font-size:85.760000pt;}
.fs6b{font-size:85.865086pt;}
.fs2e{font-size:92.279327pt;}
.fs40{font-size:93.548598pt;}
.fs5d{font-size:101.599640pt;}
.fs59{font-size:102.484390pt;}
.fs37{font-size:102.722340pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:3.557758pt;}
.yd1{bottom:3.573486pt;}
.ya6{bottom:3.573519pt;}
.ya0{bottom:3.573555pt;}
.y1f8{bottom:3.747308pt;}
.y1cf{bottom:3.747339pt;}
.y1b7{bottom:3.756335pt;}
.y1aa{bottom:3.756349pt;}
.y1a1{bottom:3.756364pt;}
.y1fe{bottom:3.756367pt;}
.yf9{bottom:3.756920pt;}
.y14a{bottom:3.772687pt;}
.y167{bottom:3.778762pt;}
.yc9{bottom:3.839963pt;}
.ya3{bottom:3.839966pt;}
.yaa{bottom:3.870966pt;}
.y10f{bottom:3.977334pt;}
.y13f{bottom:3.989307pt;}
.y14e{bottom:4.000054pt;}
.y1dd{bottom:4.052365pt;}
.y1e8{bottom:4.052426pt;}
.y60{bottom:4.301693pt;}
.y103{bottom:4.530200pt;}
.y1a7{bottom:4.555566pt;}
.y1ee{bottom:4.555844pt;}
.y1bd{bottom:4.555877pt;}
.y1bf{bottom:4.576127pt;}
.y1be{bottom:4.576148pt;}
.yc5{bottom:4.606869pt;}
.y4f{bottom:4.650641pt;}
.y67{bottom:4.661240pt;}
.y5a{bottom:4.661256pt;}
.y48{bottom:4.661270pt;}
.y70{bottom:4.661294pt;}
.y75{bottom:4.688193pt;}
.y73{bottom:4.688240pt;}
.y55{bottom:4.698860pt;}
.y6c{bottom:4.698903pt;}
.y3e{bottom:4.698914pt;}
.y7e{bottom:4.698919pt;}
.y6e{bottom:4.698927pt;}
.y1d6{bottom:4.810588pt;}
.y97{bottom:4.860286pt;}
.yc4{bottom:4.861108pt;}
.yc0{bottom:4.861110pt;}
.yf2{bottom:4.983344pt;}
.y1f3{bottom:4.995797pt;}
.y1c7{bottom:5.411912pt;}
.y1e1{bottom:5.411915pt;}
.y1b2{bottom:5.565709pt;}
.ycd{bottom:5.566306pt;}
.y116{bottom:5.566335pt;}
.y117{bottom:5.566337pt;}
.y92{bottom:5.566366pt;}
.yec{bottom:5.762411pt;}
.y18d{bottom:5.798172pt;}
.y8d{bottom:5.802005pt;}
.y8a{bottom:5.944350pt;}
.y173{bottom:6.021794pt;}
.y1c2{bottom:6.668098pt;}
.y183{bottom:7.476958pt;}
.ye2{bottom:7.844891pt;}
.yd7{bottom:7.882631pt;}
.yf0{bottom:7.985836pt;}
.yca{bottom:7.989713pt;}
.ya4{bottom:7.989730pt;}
.ya9{bottom:8.020561pt;}
.yac{bottom:8.020590pt;}
.yab{bottom:8.020595pt;}
.y1dc{bottom:8.073772pt;}
.y1e9{bottom:8.073842pt;}
.y84{bottom:8.082129pt;}
.y85{bottom:8.082138pt;}
.y83{bottom:8.082154pt;}
.y1ce{bottom:8.103032pt;}
.y1f7{bottom:8.103041pt;}
.y1fa{bottom:8.103054pt;}
.y1fb{bottom:8.103057pt;}
.y1f9{bottom:8.103063pt;}
.y1d1{bottom:8.103072pt;}
.y1d2{bottom:8.103079pt;}
.y1d0{bottom:8.103098pt;}
.y88{bottom:8.115594pt;}
.y1b6{bottom:8.122615pt;}
.y1ac{bottom:8.122625pt;}
.y1ad{bottom:8.122628pt;}
.y1ab{bottom:8.122633pt;}
.y1a3{bottom:8.122636pt;}
.y1a4{bottom:8.122641pt;}
.y1ff{bottom:8.122643pt;}
.y200{bottom:8.122645pt;}
.y1a2{bottom:8.122650pt;}
.y13e{bottom:8.300368pt;}
.y140{bottom:8.300403pt;}
.y14f{bottom:8.322775pt;}
.y9a{bottom:8.930840pt;}
.y99{bottom:8.930850pt;}
.y98{bottom:8.930855pt;}
.yfe{bottom:9.029192pt;}
.yea{bottom:9.090998pt;}
.yf1{bottom:9.192904pt;}
.yf3{bottom:9.192937pt;}
.yf5{bottom:9.192944pt;}
.yf4{bottom:9.192952pt;}
.y1f2{bottom:9.215874pt;}
.yd5{bottom:9.446589pt;}
.y6{bottom:9.600000pt;}
.y17d{bottom:9.631331pt;}
.y4e{bottom:9.676480pt;}
.y1c6{bottom:9.689524pt;}
.y1c9{bottom:9.689562pt;}
.y1e0{bottom:9.689564pt;}
.y1ca{bottom:9.689570pt;}
.y1c8{bottom:9.689590pt;}
.y66{bottom:9.698531pt;}
.y59{bottom:9.698535pt;}
.y5c{bottom:9.698543pt;}
.y5b{bottom:9.698549pt;}
.y47{bottom:9.698551pt;}
.y4a{bottom:9.698557pt;}
.y49{bottom:9.698567pt;}
.y71{bottom:9.698602pt;}
.y77{bottom:9.713894pt;}
.y74{bottom:9.713917pt;}
.y76{bottom:9.713931pt;}
.y56{bottom:9.735996pt;}
.y7d{bottom:9.736002pt;}
.y6d{bottom:9.736009pt;}
.y41{bottom:9.736013pt;}
.y3f{bottom:9.736047pt;}
.y40{bottom:9.736057pt;}
.y7f{bottom:9.736065pt;}
.y6f{bottom:9.736068pt;}
.yce{bottom:9.749052pt;}
.y119{bottom:9.749075pt;}
.y118{bottom:9.749087pt;}
.y94{bottom:9.749107pt;}
.y93{bottom:9.749120pt;}
.y91{bottom:9.749123pt;}
.y7{bottom:9.920000pt;}
.y18f{bottom:9.948772pt;}
.y1d7{bottom:10.009241pt;}
.y175{bottom:10.120550pt;}
.yfc{bottom:10.622513pt;}
.yeb{bottom:10.630025pt;}
.yee{bottom:10.630044pt;}
.yed{bottom:10.630054pt;}
.y8b{bottom:10.642922pt;}
.y160{bottom:10.832403pt;}
.y8c{bottom:11.461518pt;}
.y180{bottom:11.659008pt;}
.y1c3{bottom:11.678793pt;}
.y127{bottom:11.855189pt;}
.y132{bottom:11.855239pt;}
.yd6{bottom:11.980302pt;}
.yd8{bottom:11.980347pt;}
.yda{bottom:11.980362pt;}
.yd9{bottom:11.980370pt;}
.y164{bottom:11.997549pt;}
.ye1{bottom:12.551669pt;}
.ye3{bottom:12.551697pt;}
.ye5{bottom:12.551719pt;}
.ye4{bottom:12.551735pt;}
.y100{bottom:13.216298pt;}
.yfd{bottom:13.216300pt;}
.y102{bottom:13.216306pt;}
.yff{bottom:13.216311pt;}
.ybe{bottom:13.248244pt;}
.y82{bottom:13.983910pt;}
.y1db{bottom:15.034061pt;}
.y1e7{bottom:15.034114pt;}
.y1f6{bottom:15.660898pt;}
.y158{bottom:15.950668pt;}
.y156{bottom:15.950683pt;}
.y155{bottom:15.950691pt;}
.y126{bottom:15.974744pt;}
.y12b{bottom:15.974756pt;}
.y129{bottom:15.974760pt;}
.y136{bottom:15.974801pt;}
.y134{bottom:15.974814pt;}
.y146{bottom:16.033447pt;}
.y14b{bottom:16.033489pt;}
.y149{bottom:16.033500pt;}
.y168{bottom:16.059398pt;}
.y166{bottom:16.059407pt;}
.y162{bottom:16.059411pt;}
.y96{bottom:16.069745pt;}
.y1f1{bottom:16.538449pt;}
.y101{bottom:16.715137pt;}
.yc3{bottom:17.410737pt;}
.yc1{bottom:17.410739pt;}
.y18c{bottom:18.408284pt;}
.y172{bottom:18.475444pt;}
.y89{bottom:18.865533pt;}
.y17e{bottom:18.914148pt;}
.y182{bottom:21.132328pt;}
.y131{bottom:21.949057pt;}
.y147{bottom:22.070054pt;}
.y163{bottom:22.105740pt;}
.y177{bottom:22.573414pt;}
.y176{bottom:22.573419pt;}
.y192{bottom:22.590714pt;}
.y190{bottom:22.590727pt;}
.y184{bottom:25.314509pt;}
.y157{bottom:25.967181pt;}
.y154{bottom:25.967188pt;}
.y128{bottom:26.006432pt;}
.y12a{bottom:26.006434pt;}
.y135{bottom:26.006445pt;}
.y130{bottom:26.006449pt;}
.y133{bottom:26.037685pt;}
.y148{bottom:26.125230pt;}
.y165{bottom:26.167471pt;}
.y161{bottom:26.167475pt;}
.ybf{bottom:27.514754pt;}
.yc2{bottom:28.245296pt;}
.y181{bottom:31.523580pt;}
.y174{bottom:32.789002pt;}
.y171{bottom:32.789004pt;}
.y153{bottom:33.094560pt;}
.y125{bottom:33.144607pt;}
.y12f{bottom:33.144610pt;}
.y18a{bottom:34.186726pt;}
.ybd{bottom:34.726846pt;}
.y17f{bottom:35.674316pt;}
.y191{bottom:36.087940pt;}
.y18e{bottom:36.087959pt;}
.y18b{bottom:36.087964pt;}
.ybc{bottom:41.589433pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y34{bottom:95.712000pt;}
.yd3{bottom:98.912000pt;}
.y1ba{bottom:103.712000pt;}
.y188{bottom:106.272000pt;}
.y64{bottom:116.192000pt;}
.yd0{bottom:116.333333pt;}
.y33{bottom:116.832000pt;}
.yd2{bottom:120.352000pt;}
.y209{bottom:121.632000pt;}
.y1b9{bottom:125.152000pt;}
.y187{bottom:127.712000pt;}
.y62{bottom:133.600000pt;}
.y32{bottom:137.946667pt;}
.ycc{bottom:138.066667pt;}
.y12d{bottom:138.266667pt;}
.y63{bottom:141.466667pt;}
.y1b5{bottom:142.533333pt;}
.y208{bottom:142.746667pt;}
.ycf{bottom:147.226667pt;}
.y186{bottom:148.826667pt;}
.y1b8{bottom:150.426667pt;}
.y124{bottom:155.666649pt;}
.y31{bottom:159.386667pt;}
.y207{bottom:163.866667pt;}
.y17c{bottom:166.266667pt;}
.yc8{bottom:166.533315pt;}
.y61{bottom:169.306667pt;}
.y12c{bottom:171.546667pt;}
.ycb{bottom:174.466667pt;}
.y1b4{bottom:177.026667pt;}
.y30{bottom:180.546667pt;}
.y206{bottom:185.026667pt;}
.y5f{bottom:186.400000pt;}
.y5e{bottom:190.466667pt;}
.y185{bottom:191.426667pt;}
.y1b1{bottom:194.400000pt;}
.yc7{bottom:197.506667pt;}
.y1b3{bottom:199.746667pt;}
.y2f{bottom:201.666667pt;}
.y123{bottom:206.146667pt;}
.y58{bottom:208.466649pt;}
.ybb{bottom:214.866649pt;}
.y5d{bottom:216.386667pt;}
.y2e{bottom:222.786667pt;}
.y1b0{bottom:225.986667pt;}
.y122{bottom:227.266667pt;}
.y17b{bottom:227.586667pt;}
.yc6{bottom:232.066667pt;}
.y2d{bottom:243.906667pt;}
.y1af{bottom:247.106667pt;}
.y121{bottom:248.386667pt;}
.y17a{bottom:248.706667pt;}
.y54{bottom:261.266667pt;}
.y1a9{bottom:264.466649pt;}
.y2c{bottom:265.026667pt;}
.y57{bottom:269.186667pt;}
.y120{bottom:269.506667pt;}
.y179{bottom:270.146667pt;}
.y1ae{bottom:272.386667pt;}
.yba{bottom:273.346667pt;}
.y2b{bottom:286.173333pt;}
.y170{bottom:287.533315pt;}
.y11f{bottom:290.653333pt;}
.y205{bottom:290.973333pt;}
.yb9{bottom:294.493333pt;}
.y53{bottom:296.733333pt;}
.y1a8{bottom:298.973333pt;}
.y2a{bottom:307.293333pt;}
.y178{bottom:310.173333pt;}
.y11e{bottom:312.093333pt;}
.yb8{bottom:315.613333pt;}
.y1a6{bottom:316.333333pt;}
.y52{bottom:317.853333pt;}
.y1a5{bottom:320.413333pt;}
.y29{bottom:328.733333pt;}
.y11d{bottom:333.213333pt;}
.yb7{bottom:336.733333pt;}
.y1a0{bottom:338.066630pt;}
.y51{bottom:338.973333pt;}
.y16f{bottom:346.013333pt;}
.y28{bottom:349.853333pt;}
.y11c{bottom:354.333333pt;}
.y4d{bottom:356.666667pt;}
.yb6{bottom:357.853333pt;}
.y50{bottom:364.573333pt;}
.y16e{bottom:367.133333pt;}
.y27{bottom:370.973333pt;}
.y19f{bottom:372.573333pt;}
.y11b{bottom:375.453333pt;}
.yb5{bottom:378.973333pt;}
.y16d{bottom:388.253333pt;}
.y26{bottom:392.093333pt;}
.y19e{bottom:393.693333pt;}
.y11a{bottom:396.613333pt;}
.yb4{bottom:400.453333pt;}
.y16c{bottom:409.413333pt;}
.y25{bottom:413.253333pt;}
.y115{bottom:413.933297pt;}
.y19d{bottom:414.853333pt;}
.y204{bottom:418.053333pt;}
.yb3{bottom:421.573333pt;}
.y114{bottom:423.173333pt;}
.y16b{bottom:430.533333pt;}
.y24{bottom:434.373333pt;}
.y19c{bottom:435.973333pt;}
.y203{bottom:439.173333pt;}
.yb2{bottom:442.693333pt;}
.y113{bottom:446.533333pt;}
.y16a{bottom:451.653333pt;}
.y23{bottom:455.173333pt;}
.y4c{bottom:455.493333pt;}
.y19b{bottom:457.413333pt;}
.y202{bottom:460.293333pt;}
.yb1{bottom:463.813333pt;}
.y112{bottom:467.653333pt;}
.y169{bottom:472.773333pt;}
.y22{bottom:476.613333pt;}
.y1fd{bottom:477.599964pt;}
.y19a{bottom:478.533333pt;}
.yb0{bottom:484.933333pt;}
.y201{bottom:485.573333pt;}
.y111{bottom:488.773333pt;}
.y15f{bottom:490.066630pt;}
.y21{bottom:497.733333pt;}
.y199{bottom:499.653333pt;}
.yaf{bottom:506.053333pt;}
.y1f5{bottom:508.333297pt;}
.y110{bottom:509.920000pt;}
.y46{bottom:515.333297pt;}
.y1fc{bottom:516.320000pt;}
.y20{bottom:519.200000pt;}
.y198{bottom:520.800000pt;}
.y4b{bottom:523.360000pt;}
.y10e{bottom:527.199964pt;}
.yae{bottom:527.200000pt;}
.y10d{bottom:531.360000pt;}
.y15e{bottom:537.760000pt;}
.y1f{bottom:540.320000pt;}
.y197{bottom:541.920000pt;}
.y1f4{bottom:542.880000pt;}
.ya8{bottom:544.466630pt;}
.y45{bottom:550.880000pt;}
.yad{bottom:552.480000pt;}
.y10c{bottom:552.800000pt;}
.y15d{bottom:558.880000pt;}
.y1f0{bottom:560.133333pt;}
.y1e{bottom:561.440000pt;}
.y196{bottom:563.040000pt;}
.y1ef{bottom:569.440000pt;}
.y44{bottom:572.000000pt;}
.y10b{bottom:573.920000pt;}
.ya7{bottom:575.200000pt;}
.y15c{bottom:580.320000pt;}
.y1d{bottom:582.560000pt;}
.y195{bottom:584.160000pt;}
.y1ed{bottom:589.933297pt;}
.ya2{bottom:592.466630pt;}
.y43{bottom:593.120000pt;}
.y1ec{bottom:594.080000pt;}
.y10a{bottom:595.360000pt;}
.ya5{bottom:596.333297pt;}
.ya1{bottom:600.480000pt;}
.y15b{bottom:601.440000pt;}
.y1c{bottom:603.680000pt;}
.y194{bottom:605.280000pt;}
.y3d{bottom:610.399928pt;}
.y1eb{bottom:615.520000pt;}
.y109{bottom:616.480000pt;}
.y42{bottom:618.400000pt;}
.y9f{bottom:619.066594pt;}
.y189{bottom:622.533261pt;}
.y15a{bottom:622.586667pt;}
.y9e{bottom:623.226667pt;}
.y1b{bottom:624.826667pt;}
.y1e6{bottom:632.799928pt;}
.y108{bottom:637.626667pt;}
.y152{bottom:639.866594pt;}
.y1ea{bottom:640.826667pt;}
.y9d{bottom:644.986667pt;}
.y193{bottom:645.306667pt;}
.y1a{bottom:645.946667pt;}
.y159{bottom:655.866667pt;}
.y107{bottom:658.746667pt;}
.y1e5{bottom:664.506667pt;}
.y9c{bottom:666.106667pt;}
.y19{bottom:667.066667pt;}
.y106{bottom:679.866667pt;}
.y95{bottom:683.333261pt;}
.y1e4{bottom:685.626667pt;}
.y18{bottom:688.506667pt;}
.y151{bottom:690.426667pt;}
.y9b{bottom:692.666667pt;}
.y105{bottom:700.986667pt;}
.y1e3{bottom:706.746667pt;}
.y14d{bottom:707.666594pt;}
.y17{bottom:709.626667pt;}
.y150{bottom:715.706667pt;}
.y90{bottom:715.999928pt;}
.yfb{bottom:718.266594pt;}
.y1df{bottom:723.999928pt;}
.y8f{bottom:725.306667pt;}
.y16{bottom:730.746667pt;}
.y104{bottom:731.706667pt;}
.y1e2{bottom:733.346667pt;}
.y14c{bottom:739.426667pt;}
.y87{bottom:744.800000pt;}
.y15{bottom:751.586667pt;}
.y3c{bottom:751.906667pt;}
.y8e{bottom:754.146667pt;}
.y145{bottom:756.666594pt;}
.yfa{bottom:759.906667pt;}
.y14{bottom:772.706667pt;}
.y3b{bottom:773.026667pt;}
.y1da{bottom:776.800000pt;}
.yf8{bottom:778.399928pt;}
.y81{bottom:779.666594pt;}
.yf7{bottom:781.026667pt;}
.y1de{bottom:784.866667pt;}
.y86{bottom:786.466667pt;}
.y13{bottom:794.146667pt;}
.yef{bottom:802.733261pt;}
.y144{bottom:804.386667pt;}
.y1d9{bottom:808.546667pt;}
.yf6{bottom:812.066667pt;}
.y12{bottom:815.266667pt;}
.y143{bottom:825.506667pt;}
.y1d8{bottom:829.986667pt;}
.y7c{bottom:832.466594pt;}
.ye9{bottom:832.799928pt;}
.y11{bottom:836.386667pt;}
.y80{bottom:840.546667pt;}
.ye8{bottom:842.146667pt;}
.y142{bottom:846.653333pt;}
.y1d5{bottom:847.199928pt;}
.y1d4{bottom:855.293333pt;}
.y10{bottom:857.853333pt;}
.y13d{bottom:863.866594pt;}
.y7b{bottom:868.093333pt;}
.ye7{bottom:870.333333pt;}
.y141{bottom:871.933333pt;}
.yf{bottom:878.973333pt;}
.y1cd{bottom:879.866594pt;}
.ye0{bottom:887.533261pt;}
.y1d3{bottom:887.933333pt;}
.y7a{bottom:889.213333pt;}
.y13c{bottom:895.613333pt;}
.ye6{bottom:898.173333pt;}
.ye{bottom:900.093333pt;}
.y79{bottom:910.653333pt;}
.y1cc{bottom:914.493333pt;}
.y13b{bottom:916.733333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.yde{bottom:924.000000pt;}
.y72{bottom:927.866594pt;}
.ydd{bottom:928.253333pt;}
.y1c5{bottom:931.666594pt;}
.y78{bottom:935.933333pt;}
.y13a{bottom:937.853333pt;}
.y1cb{bottom:941.053333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.ydc{bottom:950.013333pt;}
.y139{bottom:959.013333pt;}
.y6b{bottom:959.533261pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.yd4{bottom:966.866594pt;}
.y1c4{bottom:967.333333pt;}
.y6a{bottom:967.653333pt;}
.ydb{bottom:979.173333pt;}
.y138{bottom:980.133333pt;}
.y37{bottom:984.613333pt;}
.y1c1{bottom:984.799928pt;}
.ya{bottom:993.253333pt;}
.y1c0{bottom:994.213333pt;}
.y69{bottom:995.173333pt;}
.y12e{bottom:997.266594pt;}
.y36{bottom:1005.733333pt;}
.y65{bottom:1012.333333pt;}
.y137{bottom:1013.413333pt;}
.y1bc{bottom:1018.066594pt;}
.y68{bottom:1020.453333pt;}
.y9{bottom:1021.413333pt;}
.y1bb{bottom:1022.373333pt;}
.y35{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h56{height:14.067345pt;}
.h44{height:14.067381pt;}
.h3f{height:14.067418pt;}
.h7f{height:15.999901pt;}
.h21{height:16.934000pt;}
.hc1{height:17.933393pt;}
.h5f{height:17.933531pt;}
.he9{height:17.934389pt;}
.hcc{height:17.934425pt;}
.h76{height:22.066632pt;}
.hce{height:23.066658pt;}
.h50{height:23.999711pt;}
.h41{height:23.999730pt;}
.h5{height:24.000000pt;}
.hc5{height:24.932801pt;}
.h8e{height:24.932874pt;}
.he3{height:24.933105pt;}
.he8{height:24.933178pt;}
.h97{height:25.000073pt;}
.h53{height:25.933425pt;}
.h81{height:25.933461pt;}
.h35{height:25.933497pt;}
.h6f{height:26.866881pt;}
.heb{height:26.934009pt;}
.hf1{height:27.799973pt;}
.hda{height:27.800009pt;}
.hc9{height:27.867138pt;}
.hc3{height:27.867156pt;}
.hbc{height:27.867174pt;}
.h16{height:29.066509pt;}
.h27{height:29.066581pt;}
.h1b{height:29.132748pt;}
.h1e{height:29.132766pt;}
.h11{height:29.132784pt;}
.hc{height:29.132820pt;}
.hd4{height:29.133897pt;}
.he0{height:30.065928pt;}
.h3a{height:30.133253pt;}
.h30{height:30.246588pt;}
.hd1{height:31.066614pt;}
.h69{height:31.066920pt;}
.h58{height:31.999536pt;}
.h2f{height:32.000454pt;}
.h2d{height:32.091005pt;}
.h63{height:33.933112pt;}
.h78{height:34.866964pt;}
.he6{height:35.395648pt;}
.he4{height:35.413266pt;}
.h94{height:35.725706pt;}
.ha3{height:35.783519pt;}
.ha1{height:35.801330pt;}
.h3b{height:36.090054pt;}
.h9b{height:36.192293pt;}
.ha9{height:36.199112pt;}
.h88{height:36.228994pt;}
.h86{height:36.247028pt;}
.h5b{height:36.406779pt;}
.h42{height:36.408472pt;}
.h51{height:36.426595pt;}
.h4b{height:36.497025pt;}
.hb1{height:36.749603pt;}
.hb8{height:36.751843pt;}
.haf{height:36.767896pt;}
.h37{height:36.815725pt;}
.h7b{height:36.977078pt;}
.h72{height:37.121018pt;}
.hee{height:37.213867pt;}
.hec{height:37.232391pt;}
.h90{height:37.824034pt;}
.hd6{height:37.844899pt;}
.h98{height:37.925977pt;}
.hdc{height:38.410292pt;}
.hf2{height:38.429412pt;}
.hbd{height:38.503141pt;}
.h92{height:40.932644pt;}
.ha0{height:40.998846pt;}
.h31{height:41.589348pt;}
.h65{height:41.606791pt;}
.h6c{height:42.924079pt;}
.h9a{height:43.800653pt;}
.h85{height:43.866839pt;}
.h8c{height:43.866894pt;}
.hd2{height:43.984485pt;}
.h18{height:44.095029pt;}
.h28{height:44.116978pt;}
.h13{height:44.195516pt;}
.hd{height:44.217515pt;}
.h7{height:44.648750pt;}
.ha{height:44.875000pt;}
.he1{height:45.611078pt;}
.h4{height:49.020000pt;}
.ha7{height:51.800322pt;}
.h4a{height:52.200646pt;}
.h29{height:54.394718pt;}
.had{height:54.999868pt;}
.h62{height:58.210404pt;}
.h96{height:58.364606pt;}
.ha6{height:58.459054pt;}
.hb5{height:58.931532pt;}
.h3e{height:58.985578pt;}
.h9f{height:59.103106pt;}
.h8b{height:59.192489pt;}
.hac{height:59.230846pt;}
.h49{height:59.331106pt;}
.h3{height:59.340000pt;}
.h5e{height:59.464780pt;}
.h4f{height:59.688595pt;}
.hbb{height:59.994568pt;}
.h39{height:60.091561pt;}
.hb4{height:60.107419pt;}
.h7e{height:60.317403pt;}
.h75{height:60.563728pt;}
.hf0{height:60.715213pt;}
.he7{height:61.184665pt;}
.he5{height:61.215120pt;}
.ha5{height:61.621162pt;}
.hc8{height:61.637899pt;}
.h60{height:61.677866pt;}
.h95{height:61.810487pt;}
.h93{height:61.841253pt;}
.hd9{height:61.844210pt;}
.h57{height:61.893931pt;}
.h61{height:61.904715pt;}
.ha4{height:61.910511pt;}
.ha2{height:61.941327pt;}
.h40{height:62.014199pt;}
.h45{height:62.037486pt;}
.h9e{height:62.302169pt;}
.h8a{height:62.401167pt;}
.h8d{height:62.498421pt;}
.h3c{height:62.499215pt;}
.hab{height:62.505474pt;}
.h3d{height:62.519380pt;}
.h43{height:62.525597pt;}
.h9d{height:62.592588pt;}
.h9c{height:62.623744pt;}
.hdf{height:62.667206pt;}
.h89{height:62.687249pt;}
.h48{height:62.709302pt;}
.h87{height:62.718452pt;}
.h52{height:62.727864pt;}
.haa{height:62.727870pt;}
.ha8{height:62.759093pt;}
.hb{height:62.781250pt;}
.h5d{height:62.804363pt;}
.h6{height:62.812500pt;}
.hc0{height:62.818691pt;}
.h46{height:62.865325pt;}
.h5c{height:62.975616pt;}
.h4e{height:62.996958pt;}
.h5a{height:63.006962pt;}
.h4d{height:63.212645pt;}
.hba{height:63.243984pt;}
.h55{height:63.261670pt;}
.h84{height:63.271975pt;}
.h38{height:63.294280pt;}
.hb3{height:63.463547pt;}
.hb9{height:63.536683pt;}
.hb7{height:63.568309pt;}
.h54{height:63.639402pt;}
.hb2{height:63.656196pt;}
.h36{height:63.671079pt;}
.hb0{height:63.687882pt;}
.h7d{height:63.741269pt;}
.h7c{height:63.878578pt;}
.h7a{height:63.910375pt;}
.h74{height:64.046013pt;}
.h73{height:64.139446pt;}
.h71{height:64.171372pt;}
.hef{height:64.211650pt;}
.hed{height:64.331881pt;}
.h2{height:64.500000pt;}
.hc7{height:64.979312pt;}
.hd8{height:65.015434pt;}
.hc6{height:65.309529pt;}
.h91{height:65.402329pt;}
.h8f{height:65.434883pt;}
.hd7{height:65.495528pt;}
.hd5{height:65.528129pt;}
.h99{height:65.578602pt;}
.hf5{height:65.781915pt;}
.hde{height:66.034043pt;}
.hf3{height:66.044473pt;}
.hbf{height:66.148606pt;}
.hc4{height:66.148610pt;}
.hcb{height:66.175639pt;}
.hf4{height:66.192791pt;}
.hdd{height:66.367115pt;}
.hdb{height:66.400150pt;}
.hbe{height:66.527544pt;}
.hca{height:66.560658pt;}
.h9{height:66.890000pt;}
.h34{height:67.929385pt;}
.h68{height:68.005762pt;}
.h6e{height:70.031544pt;}
.h67{height:71.787285pt;}
.h2b{height:71.857089pt;}
.h33{height:71.881385pt;}
.h32{height:71.975785pt;}
.h1a{height:71.995010pt;}
.h10{height:72.020842pt;}
.h66{height:72.020863pt;}
.h64{height:72.056712pt;}
.h15{height:72.159078pt;}
.h80{height:73.540593pt;}
.h6d{height:74.151742pt;}
.h6b{height:74.203165pt;}
.h22{height:74.753276pt;}
.h2a{height:75.936098pt;}
.hd3{height:76.031268pt;}
.h19{height:76.105604pt;}
.h26{height:76.113095pt;}
.h23{height:76.160772pt;}
.h25{height:76.165096pt;}
.h1d{height:76.171036pt;}
.hf{height:76.194377pt;}
.h24{height:76.260829pt;}
.h20{height:76.269070pt;}
.h2e{height:76.269244pt;}
.h2c{height:76.272995pt;}
.h17{height:76.283590pt;}
.he{height:76.310961pt;}
.h14{height:76.356002pt;}
.h12{height:76.457431pt;}
.he2{height:78.396912pt;}
.h77{height:78.679568pt;}
.hcd{height:78.833382pt;}
.hea{height:78.861621pt;}
.hc2{height:79.194325pt;}
.hcf{height:79.331715pt;}
.h70{height:79.411046pt;}
.h47{height:79.432514pt;}
.hd0{height:79.534213pt;}
.h4c{height:79.894073pt;}
.h83{height:80.370386pt;}
.h82{height:80.402063pt;}
.h59{height:85.475529pt;}
.h8{height:86.430000pt;}
.h79{height:86.651216pt;}
.hb6{height:94.108651pt;}
.hae{height:94.928168pt;}
.h6a{height:95.148574pt;}
.h1c{height:96.421540pt;}
.h1f{height:96.568559pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:13.133491pt;}
.w1a{width:13.134424pt;}
.w15{width:16.000315pt;}
.wa{width:16.001118pt;}
.w2f{width:17.000600pt;}
.w22{width:17.933446pt;}
.w32{width:19.799958pt;}
.w3b{width:19.866189pt;}
.w20{width:22.132177pt;}
.w34{width:26.866774pt;}
.w18{width:28.199334pt;}
.w33{width:31.067665pt;}
.w37{width:38.067438pt;}
.w1c{width:40.000114pt;}
.w28{width:49.934232pt;}
.wd{width:61.133805pt;}
.w26{width:65.931251pt;}
.w19{width:70.067445pt;}
.w29{width:78.064754pt;}
.wf{width:78.066568pt;}
.w7{width:79.068907pt;}
.w2e{width:81.932526pt;}
.w2b{width:84.196485pt;}
.w24{width:86.067459pt;}
.w6{width:86.067965pt;}
.w2a{width:87.069677pt;}
.w3a{width:90.867429pt;}
.w16{width:91.863335pt;}
.w27{width:92.197404pt;}
.w4{width:92.512000pt;}
.w1d{width:93.132239pt;}
.w35{width:96.000172pt;}
.w23{width:97.862262pt;}
.w38{width:97.929471pt;}
.w30{width:103.065698pt;}
.w12{width:108.134867pt;}
.w10{width:109.133458pt;}
.w1e{width:109.135923pt;}
.w36{width:110.064509pt;}
.w31{width:113.001916pt;}
.w9{width:113.928246pt;}
.w1b{width:113.933030pt;}
.we{width:115.862558pt;}
.w25{width:125.136766pt;}
.w3d{width:125.136775pt;}
.w2d{width:127.065828pt;}
.wc{width:128.995267pt;}
.w1f{width:128.995727pt;}
.w2c{width:135.062570pt;}
.w39{width:137.926975pt;}
.w17{width:137.929140pt;}
.w5{width:137.933174pt;}
.w3e{width:160.999600pt;}
.w13{width:184.004112pt;}
.wb{width:195.194384pt;}
.w8{width:199.056612pt;}
.w3c{width:224.004676pt;}
.w21{width:236.803428pt;}
.w3{width:265.693333pt;}
.w11{width:334.066577pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.407748pt;}
.x38{left:2.591960pt;}
.x35{left:4.494185pt;}
.x29{left:6.840872pt;}
.x4a{left:9.472772pt;}
.x2c{left:10.898017pt;}
.x1e{left:11.786980pt;}
.x44{left:13.282933pt;}
.x19{left:14.859454pt;}
.x3e{left:15.776433pt;}
.x59{left:16.963501pt;}
.x41{left:17.856745pt;}
.x27{left:19.434431pt;}
.x1f{left:21.332565pt;}
.x15{left:22.988057pt;}
.x1b{left:24.440310pt;}
.x39{left:26.538990pt;}
.x3d{left:27.774955pt;}
.x28{left:29.968093pt;}
.x67{left:31.614410pt;}
.x43{left:32.982244pt;}
.x13{left:35.674011pt;}
.x1d{left:36.713186pt;}
.x8{left:38.426667pt;}
.x18{left:39.846820pt;}
.x14{left:42.308527pt;}
.x5e{left:44.455929pt;}
.x66{left:45.416243pt;}
.x73{left:47.021922pt;}
.x6e{left:48.081585pt;}
.x5b{left:49.774304pt;}
.x45{left:51.847399pt;}
.x2e{left:53.433483pt;}
.x6f{left:54.623139pt;}
.x37{left:56.057082pt;}
.x65{left:57.933261pt;}
.x21{left:59.972354pt;}
.x32{left:61.379410pt;}
.x52{left:63.131256pt;}
.x60{left:64.466161pt;}
.x57{left:68.679516pt;}
.x71{left:70.290951pt;}
.x34{left:71.674403pt;}
.x77{left:73.679088pt;}
.x3c{left:76.177085pt;}
.x51{left:77.832964pt;}
.x53{left:79.993845pt;}
.x6d{left:81.114645pt;}
.x7a{left:82.425324pt;}
.x2a{left:83.916424pt;}
.x5{left:85.152000pt;}
.x4e{left:86.095903pt;}
.x23{left:88.280740pt;}
.x7d{left:90.366982pt;}
.x76{left:95.914269pt;}
.x78{left:99.013474pt;}
.x89{left:103.220208pt;}
.x11{left:104.671988pt;}
.x16{left:106.825527pt;}
.x61{left:109.501196pt;}
.x7b{left:110.921517pt;}
.xf{left:114.271988pt;}
.x50{left:117.008246pt;}
.x79{left:119.150998pt;}
.xb{left:124.863988pt;}
.xd{left:132.543988pt;}
.x56{left:145.666655pt;}
.xa{left:149.186655pt;}
.x54{left:160.706655pt;}
.x25{left:164.293333pt;}
.x84{left:169.026655pt;}
.x3{left:174.466655pt;}
.x8b{left:175.826649pt;}
.x26{left:180.226655pt;}
.x72{left:182.466655pt;}
.x3a{left:194.306655pt;}
.x70{left:198.466655pt;}
.x55{left:202.626655pt;}
.x36{left:210.653322pt;}
.x20{left:211.613322pt;}
.x7f{left:214.493322pt;}
.x75{left:216.733322pt;}
.x1c{left:218.653322pt;}
.x74{left:219.613322pt;}
.x8d{left:223.453322pt;}
.x4f{left:224.413322pt;}
.x5c{left:225.693322pt;}
.xe{left:226.973322pt;}
.x88{left:228.573322pt;}
.x8c{left:230.493322pt;}
.x82{left:235.613322pt;}
.x8a{left:242.653322pt;}
.x83{left:245.533322pt;}
.x24{left:246.493322pt;}
.x33{left:248.413322pt;}
.x6{left:258.341333pt;}
.x7e{left:259.613322pt;}
.x62{left:261.533322pt;}
.x7c{left:267.613322pt;}
.x17{left:270.493322pt;}
.x40{left:284.959982pt;}
.x12{left:286.813322pt;}
.x91{left:293.573322pt;}
.x85{left:294.559982pt;}
.x2{left:296.453322pt;}
.xc{left:299.653322pt;}
.x69{left:301.293315pt;}
.x4{left:304.773322pt;}
.x3b{left:310.745033pt;}
.x46{left:316.613322pt;}
.x6a{left:319.173322pt;}
.x6b{left:325.626667pt;}
.x2b{left:327.813322pt;}
.x49{left:330.093297pt;}
.x22{left:331.653322pt;}
.x4b{left:346.053322pt;}
.x7{left:350.853333pt;}
.x10{left:358.213322pt;}
.x68{left:369.413322pt;}
.x5d{left:385.426630pt;}
.x42{left:393.119988pt;}
.x2d{left:397.893297pt;}
.x6c{left:423.519988pt;}
.x9{left:443.360000pt;}
.x86{left:446.559964pt;}
.x3f{left:466.746655pt;}
.x87{left:473.466655pt;}
.x5f{left:494.586655pt;}
.x4c{left:499.026630pt;}
.x63{left:509.893333pt;}
.x58{left:512.493297pt;}
.x4d{left:515.066655pt;}
.x2f{left:526.906655pt;}
.x47{left:528.159964pt;}
.x64{left:532.026655pt;}
.x48{left:541.306655pt;}
.x5a{left:552.546655pt;}
.x90{left:555.746655pt;}
.x30{left:557.893297pt;}
.x8e{left:572.626667pt;}
.x8f{left:592.546655pt;}
.x31{left:619.106655pt;}
.x80{left:687.826594pt;}
.x81{left:704.893322pt;}
.x1{left:709.053322pt;}
}




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