
    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_33bcd1967fd3eb8a1917f171.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c8e4bb7bfc8459f0d5ac7f4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ca44462299ad2c5b51e9d501.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_65f6e82ab5a80229f98fc475.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c56df4dcb1c31c518dc70fdc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2fdc523ebbabfde3f55c1a7a.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_e24f5129938e7485d87fc4f2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5b3c191c301b0c64b5871ce3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a3df016a19fcfaea54dee3d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_1d66aa071bcc39e5dc7f5fa5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056152;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_b9bbcfe36a6223262fb78ad3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_05561342ea7459b1dcc90ef1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.116699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_40ee9c8375933787657f34b3.woff2')format("woff");}.ffd{font-family:ffd;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;}
.mb{transform:matrix(0.232662,0.000000,-0.077546,0.237669,0,0);-ms-transform:matrix(0.232662,0.000000,-0.077546,0.237669,0,0);-webkit-transform:matrix(0.232662,0.000000,-0.077546,0.237669,0,0);}
.m9{transform:matrix(0.233393,0.000000,-0.077790,0.237589,0,0);-ms-transform:matrix(0.233393,0.000000,-0.077790,0.237589,0,0);-webkit-transform:matrix(0.233393,0.000000,-0.077790,0.237589,0,0);}
.m16{transform:matrix(0.235158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235158,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.240178,0.000000,-0.080051,0.236837,0,0);-ms-transform:matrix(0.240178,0.000000,-0.080051,0.236837,0,0);-webkit-transform:matrix(0.240178,0.000000,-0.080051,0.236837,0,0);}
.m21{transform:matrix(0.240492,0.000000,-0.080156,0.236802,0,0);-ms-transform:matrix(0.240492,0.000000,-0.080156,0.236802,0,0);-webkit-transform:matrix(0.240492,0.000000,-0.080156,0.236802,0,0);}
.m1f{transform:matrix(0.241609,0.000000,-0.080528,0.236675,0,0);-ms-transform:matrix(0.241609,0.000000,-0.080528,0.236675,0,0);-webkit-transform:matrix(0.241609,0.000000,-0.080528,0.236675,0,0);}
.m6{transform:matrix(0.242659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242659,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.243799,0.000000,-0.081258,0.236426,0,0);-ms-transform:matrix(0.243799,0.000000,-0.081258,0.236426,0,0);-webkit-transform:matrix(0.243799,0.000000,-0.081258,0.236426,0,0);}
.me{transform:matrix(0.244613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244613,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246340,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);}
.mf{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253526,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253536,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253761,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253896,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254609,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.255118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255118,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.259419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259419,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.260122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260122,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263463,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.264381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264381,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.266421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266421,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-76.868259px;}
.v1{vertical-align:-69.120000px;}
.v9{vertical-align:-54.569634px;}
.v7{vertical-align:-33.346248px;}
.v6{vertical-align:-18.539874px;}
.v3{vertical-align:-17.531586px;}
.va{vertical-align:-12.397529px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.303051px;}
.v2{vertical-align:20.880000px;}
.v8{vertical-align:32.162362px;}
.v4{vertical-align:33.256320px;}
.vc{vertical-align:51.015690px;}
.ls39{letter-spacing:-2.964216px;}
.ls2b{letter-spacing:-2.393722px;}
.ls58{letter-spacing:-2.065599px;}
.ls2f{letter-spacing:-2.017952px;}
.lsa{letter-spacing:-1.830000px;}
.ls7{letter-spacing:-1.710000px;}
.ls3d{letter-spacing:-1.673092px;}
.ls2a{letter-spacing:-1.587523px;}
.lsc{letter-spacing:-1.506000px;}
.ls27{letter-spacing:-1.437110px;}
.lsb{letter-spacing:-1.392000px;}
.ls9{letter-spacing:-1.350000px;}
.lsf{letter-spacing:-1.230000px;}
.ls3a{letter-spacing:-1.088055px;}
.ls40{letter-spacing:-1.080000px;}
.lse{letter-spacing:-1.008000px;}
.ls38{letter-spacing:-0.958665px;}
.ls6{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.678000px;}
.lsd{letter-spacing:-0.672000px;}
.ls10{letter-spacing:-0.642000px;}
.ls3f{letter-spacing:-0.402825px;}
.ls34{letter-spacing:-0.309482px;}
.ls30{letter-spacing:-0.259800px;}
.ls2{letter-spacing:-0.058320px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206640px;}
.ls55{letter-spacing:0.208199px;}
.ls36{letter-spacing:0.259800px;}
.ls37{letter-spacing:0.284659px;}
.ls51{letter-spacing:0.355823px;}
.ls3{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.379800px;}
.ls50{letter-spacing:0.404051px;}
.ls32{letter-spacing:0.426400px;}
.ls23{letter-spacing:0.491095px;}
.ls25{letter-spacing:0.496275px;}
.ls42{letter-spacing:0.497565px;}
.ls52{letter-spacing:0.566096px;}
.ls3b{letter-spacing:0.634476px;}
.ls31{letter-spacing:0.641070px;}
.ls53{letter-spacing:0.745453px;}
.ls2d{letter-spacing:0.782224px;}
.ls35{letter-spacing:0.879970px;}
.ls59{letter-spacing:1.014488px;}
.ls2e{letter-spacing:1.291975px;}
.ls4a{letter-spacing:1.376913px;}
.ls57{letter-spacing:1.444725px;}
.ls26{letter-spacing:1.473646px;}
.ls29{letter-spacing:1.477618px;}
.ls54{letter-spacing:1.516116px;}
.ls56{letter-spacing:1.588738px;}
.ls16{letter-spacing:1.620000px;}
.ls3e{letter-spacing:1.643533px;}
.ls33{letter-spacing:1.674071px;}
.ls1c{letter-spacing:1.789800px;}
.ls3c{letter-spacing:1.834991px;}
.ls28{letter-spacing:1.953875px;}
.ls41{letter-spacing:2.076614px;}
.ls2c{letter-spacing:2.143157px;}
.ls48{letter-spacing:2.166732px;}
.ls24{letter-spacing:3.820504px;}
.ls49{letter-spacing:18.017017px;}
.ls4b{letter-spacing:24.175265px;}
.ls4d{letter-spacing:28.341433px;}
.ls14{letter-spacing:44.897088px;}
.ls19{letter-spacing:46.161792px;}
.ls4e{letter-spacing:64.236000px;}
.ls1e{letter-spacing:75.549929px;}
.ls4c{letter-spacing:82.829529px;}
.ls4f{letter-spacing:87.786720px;}
.ls1a{letter-spacing:132.338108px;}
.ls1d{letter-spacing:148.187915px;}
.ls1f{letter-spacing:170.233333px;}
.ls1b{letter-spacing:238.694408px;}
.ls12{letter-spacing:263.468220px;}
.ls18{letter-spacing:462.656995px;}
.ls17{letter-spacing:533.368274px;}
.ls22{letter-spacing:579.041035px;}
.ls21{letter-spacing:650.450565px;}
.ls47{letter-spacing:657.733141px;}
.ls46{letter-spacing:754.938057px;}
.ls45{letter-spacing:769.994390px;}
.ls4{letter-spacing:849.216000px;}
.ls0{letter-spacing:952.920000px;}
.ls43{letter-spacing:989.440441px;}
.ls44{letter-spacing:1194.800343px;}
.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;}
}
.ws0{word-spacing:-59.760000px;}
.ws22{word-spacing:-40.367428px;}
.ws13{word-spacing:-40.262826px;}
.ws1e{word-spacing:-40.124838px;}
.ws18{word-spacing:-40.016984px;}
.ws79{word-spacing:-39.785525px;}
.ws72{word-spacing:-39.671706px;}
.wsf{word-spacing:-39.636765px;}
.ws44{word-spacing:-39.488827px;}
.ws38{word-spacing:-39.297100px;}
.ws69{word-spacing:-39.146548px;}
.wse{word-spacing:-38.171345px;}
.ws57{word-spacing:-26.859741px;}
.ws6b{word-spacing:-26.071156px;}
.ws3a{word-spacing:-19.049055px;}
.ws2{word-spacing:-15.300000px;}
.ws3c{word-spacing:-15.199800px;}
.ws63{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws2e{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.166000px;}
.ws1{word-spacing:-13.447440px;}
.wsb{word-spacing:-12.439800px;}
.ws9{word-spacing:-12.060000px;}
.wsa{word-spacing:-10.668000px;}
.ws8{word-spacing:-10.350000px;}
.ws3{word-spacing:-9.720000px;}
.ws65{word-spacing:-2.238037px;}
.ws1a{word-spacing:-1.526343px;}
.ws15{word-spacing:-1.522241px;}
.ws74{word-spacing:-1.517194px;}
.ws75{word-spacing:-1.449382px;}
.ws3b{word-spacing:-0.949499px;}
.ws29{word-spacing:-0.855753px;}
.ws61{word-spacing:-0.814981px;}
.ws30{word-spacing:-0.714599px;}
.ws5f{word-spacing:-0.635624px;}
.ws53{word-spacing:-0.571094px;}
.ws52{word-spacing:-0.477580px;}
.ws55{word-spacing:-0.475325px;}
.ws5b{word-spacing:-0.429353px;}
.ws6d{word-spacing:-0.280461px;}
.ws1f{word-spacing:-0.073529px;}
.ws10{word-spacing:-0.073338px;}
.ws36{word-spacing:-0.073234px;}
.ws19{word-spacing:-0.073087px;}
.ws14{word-spacing:-0.072891px;}
.ws73{word-spacing:-0.072469px;}
.ws6c{word-spacing:-0.072262px;}
.ws2b{word-spacing:-0.071799px;}
.ws4c{word-spacing:-0.071624px;}
.ws37{word-spacing:-0.071579px;}
.ws50{word-spacing:-0.071481px;}
.ws64{word-spacing:-0.071305px;}
.ws60{word-spacing:-0.069529px;}
.ws47{word-spacing:-0.049067px;}
.ws32{word-spacing:-0.048925px;}
.ws35{word-spacing:-0.048725px;}
.ws17{word-spacing:-0.048594px;}
.ws77{word-spacing:-0.048362px;}
.ws41{word-spacing:-0.048000px;}
.ws67{word-spacing:-0.047488px;}
.ws5{word-spacing:0.000000px;}
.ws4f{word-spacing:0.331344px;}
.ws4a{word-spacing:1.601469px;}
.ws51{word-spacing:16.082915px;}
.ws34{word-spacing:49.449555px;}
.ws23{word-spacing:68.943596px;}
.ws26{word-spacing:83.139869px;}
.ws45{word-spacing:90.951613px;}
.ws7a{word-spacing:92.673257px;}
.ws4d{word-spacing:93.497402px;}
.ws27{word-spacing:102.170181px;}
.wsd{word-spacing:114.688320px;}
.ws2c{word-spacing:119.675926px;}
.ws11{word-spacing:124.260670px;}
.ws24{word-spacing:139.020367px;}
.ws33{word-spacing:139.903806px;}
.ws39{word-spacing:142.276678px;}
.ws20{word-spacing:150.023606px;}
.wsc{word-spacing:179.756882px;}
.ws2a{word-spacing:179.843713px;}
.ws4e{word-spacing:196.413169px;}
.ws49{word-spacing:215.295253px;}
.ws5c{word-spacing:225.247880px;}
.ws12{word-spacing:237.831943px;}
.ws28{word-spacing:255.258021px;}
.ws46{word-spacing:260.212814px;}
.ws21{word-spacing:277.521421px;}
.ws5e{word-spacing:278.235173px;}
.ws25{word-spacing:279.430015px;}
.ws4b{word-spacing:285.199224px;}
.ws5a{word-spacing:293.167997px;}
.ws58{word-spacing:309.045924px;}
.ws40{word-spacing:325.677609px;}
.ws43{word-spacing:363.203390px;}
.ws42{word-spacing:373.775693px;}
.ws3d{word-spacing:373.849224px;}
.ws31{word-spacing:395.519854px;}
.ws48{word-spacing:428.287125px;}
.ws3f{word-spacing:434.258187px;}
.ws2f{word-spacing:437.649979px;}
.ws2d{word-spacing:486.357669px;}
.ws3e{word-spacing:514.485517px;}
.ws16{word-spacing:542.056758px;}
.ws62{word-spacing:543.491476px;}
.ws56{word-spacing:554.871764px;}
.ws1c{word-spacing:572.301713px;}
.ws71{word-spacing:660.860225px;}
.ws5d{word-spacing:755.735172px;}
.ws59{word-spacing:765.733518px;}
.ws54{word-spacing:772.284587px;}
.ws1d{word-spacing:786.388453px;}
.ws6f{word-spacing:915.279357px;}
.ws68{word-spacing:944.731934px;}
.ws6e{word-spacing:975.163257px;}
.ws1b{word-spacing:1048.748333px;}
.ws76{word-spacing:1055.367841px;}
.ws70{word-spacing:1055.373073px;}
.ws78{word-spacing:1143.123372px;}
.ws66{word-spacing:1208.660872px;}
.ws6a{word-spacing:1257.701484px;}
._7a{margin-left:-1518.914818px;}
._99{margin-left:-1280.770435px;}
._9a{margin-left:-831.436322px;}
._81{margin-left:-811.174557px;}
._83{margin-left:-801.235024px;}
._8a{margin-left:-699.924073px;}
._97{margin-left:-592.231838px;}
._4c{margin-left:-541.256578px;}
._57{margin-left:-482.929057px;}
._6d{margin-left:-478.982125px;}
._4f{margin-left:-442.277413px;}
._49{margin-left:-433.517732px;}
._21{margin-left:-430.708675px;}
._94{margin-left:-427.483673px;}
._8f{margin-left:-425.335808px;}
._62{margin-left:-418.080689px;}
._38{margin-left:-404.616592px;}
._27{margin-left:-401.598973px;}
._9e{margin-left:-394.780890px;}
._46{margin-left:-375.237209px;}
._2c{margin-left:-372.332759px;}
._9f{margin-left:-357.968206px;}
._43{margin-left:-354.284371px;}
._90{margin-left:-352.312003px;}
._32{margin-left:-348.012134px;}
._79{margin-left:-346.034523px;}
._63{margin-left:-341.581328px;}
._69{margin-left:-338.466563px;}
._35{margin-left:-331.112635px;}
._78{margin-left:-328.112733px;}
._5f{margin-left:-323.179084px;}
._65{margin-left:-319.391839px;}
._8c{margin-left:-308.554108px;}
._2f{margin-left:-306.844193px;}
._3a{margin-left:-304.715966px;}
._6a{margin-left:-296.781941px;}
._84{margin-left:-292.431037px;}
._6b{margin-left:-288.643428px;}
._60{margin-left:-286.944262px;}
._39{margin-left:-279.296666px;}
._8b{margin-left:-276.407352px;}
._45{margin-left:-273.187738px;}
._3f{margin-left:-271.540375px;}
._2d{margin-left:-270.149143px;}
._56{margin-left:-268.945510px;}
._68{margin-left:-263.571105px;}
._31{margin-left:-260.668733px;}
._1c{margin-left:-259.183476px;}
._8e{margin-left:-253.269894px;}
._37{margin-left:-250.769111px;}
._9c{margin-left:-244.952399px;}
._5e{margin-left:-240.188702px;}
._42{margin-left:-238.227813px;}
._2b{margin-left:-236.256784px;}
._66{margin-left:-235.015333px;}
._93{margin-left:-229.784782px;}
._61{margin-left:-227.334688px;}
._41{margin-left:-225.883710px;}
._96{margin-left:-219.570000px;}
._3e{margin-left:-217.456491px;}
._6e{margin-left:-215.604059px;}
._74{margin-left:-212.320687px;}
._34{margin-left:-209.821692px;}
._85{margin-left:-207.740889px;}
._3d{margin-left:-206.445769px;}
._30{margin-left:-205.071455px;}
._92{margin-left:-203.860854px;}
._7d{margin-left:-202.547813px;}
._3b{margin-left:-199.873795px;}
._67{margin-left:-197.880567px;}
._19{margin-left:-195.869810px;}
._77{margin-left:-192.668128px;}
._16{margin-left:-190.683759px;}
._36{margin-left:-188.883880px;}
._5a{margin-left:-186.852693px;}
._4a{margin-left:-183.476771px;}
._1b{margin-left:-181.813938px;}
._40{margin-left:-179.453124px;}
._28{margin-left:-177.505372px;}
._20{margin-left:-175.615804px;}
._50{margin-left:-172.556749px;}
._80{margin-left:-171.274955px;}
._25{margin-left:-170.093480px;}
._7c{margin-left:-167.743920px;}
._1f{margin-left:-166.574952px;}
._5c{margin-left:-164.403110px;}
._26{margin-left:-161.687607px;}
._52{margin-left:-158.598270px;}
._2a{margin-left:-156.180068px;}
._1d{margin-left:-154.007410px;}
._1a{margin-left:-152.949232px;}
._33{margin-left:-150.096312px;}
._2e{margin-left:-148.987457px;}
._22{margin-left:-146.715092px;}
._5b{margin-left:-144.518304px;}
._53{margin-left:-142.652872px;}
._9b{margin-left:-141.354444px;}
._18{margin-left:-140.337940px;}
._89{margin-left:-139.047648px;}
._47{margin-left:-136.248050px;}
._4b{margin-left:-130.722195px;}
._29{margin-left:-128.773537px;}
._91{margin-left:-126.955162px;}
._73{margin-left:-124.236555px;}
._72{margin-left:-121.453534px;}
._64{margin-left:-119.168999px;}
._98{margin-left:-117.999243px;}
._51{margin-left:-113.494905px;}
._23{margin-left:-111.169006px;}
._5d{margin-left:-109.000592px;}
._3c{margin-left:-107.830198px;}
._24{margin-left:-106.541027px;}
._58{margin-left:-104.846569px;}
._17{margin-left:-102.709150px;}
._1e{margin-left:-101.151755px;}
._9d{margin-left:-94.414574px;}
._76{margin-left:-92.949914px;}
._7e{margin-left:-90.829629px;}
._87{margin-left:-89.801733px;}
._6f{margin-left:-88.543703px;}
._8d{margin-left:-86.896110px;}
._7f{margin-left:-85.477315px;}
._88{margin-left:-81.817103px;}
._71{margin-left:-80.539465px;}
._95{margin-left:-74.904399px;}
._6c{margin-left:-73.678778px;}
._59{margin-left:-57.360948px;}
._54{margin-left:-54.543918px;}
._55{margin-left:-52.800089px;}
._70{margin-left:-50.385067px;}
._82{margin-left:-47.737679px;}
._86{margin-left:-44.965120px;}
._7b{margin-left:-10.081403px;}
._13{margin-left:-4.183200px;}
._9{margin-left:-3.047760px;}
._8{margin-left:-1.195200px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._4{width:3.758400px;}
._6{width:5.280240px;}
._3{width:6.812640px;}
._7{width:8.426160px;}
._5{width:9.732480px;}
._b{width:10.756800px;}
._a{width:11.772720px;}
._12{width:12.848400px;}
._11{width:13.924080px;}
._f{width:16.374240px;}
._14{width:17.390160px;}
._10{width:18.406080px;}
._e{width:20.378160px;}
._d{width:22.410000px;}
._4d{width:24.919920px;}
._a0{width:27.318923px;}
._44{width:29.043360px;}
._c{width:30.537360px;}
._a2{width:34.362000px;}
._a1{width:35.736480px;}
._15{width:38.963520px;}
._4e{width:54.740160px;}
._48{width:197.267760px;}
._75{width:849.216000px;}
._2{width:1308.763920px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:33.120000px;}
.fs1d{font-size:34.697733px;}
.fs17{font-size:35.456818px;}
.fs1{font-size:38.880000px;}
.fs5{font-size:46.354256px;}
.fs15{font-size:46.493404px;}
.fs27{font-size:47.488444px;}
.fs1b{font-size:47.625047px;}
.fs23{font-size:47.749941px;}
.fs13{font-size:47.867087px;}
.fs1f{font-size:47.999581px;}
.fs29{font-size:48.127858px;}
.fs2{font-size:48.240000px;}
.fs2b{font-size:48.362470px;}
.fsa{font-size:48.594397px;}
.fsd{font-size:48.725369px;}
.fs25{font-size:48.798071px;}
.fs10{font-size:48.924848px;}
.fs8{font-size:48.940032px;}
.fs11{font-size:49.067177px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:69.528862px;}
.fs14{font-size:69.737576px;}
.fs16{font-size:70.911326px;}
.fs26{font-size:71.305189px;}
.fs24{font-size:71.480593px;}
.fs1a{font-size:71.579417px;}
.fs22{font-size:71.623729px;}
.fs12{font-size:71.799445px;}
.fs1e{font-size:71.928647px;}
.fs6{font-size:72.198114px;}
.fs28{font-size:72.261760px;}
.fs2a{font-size:72.469081px;}
.fs9{font-size:72.890681px;}
.fsc{font-size:73.087137px;}
.fs19{font-size:73.233678px;}
.fs7{font-size:73.338481px;}
.fsf{font-size:73.529013px;}
.fs18{font-size:74.982662px;}
.fs1c{font-size:75.557614px;}
.fs20{font-size:75.978167px;}
.fsb{font-size:76.698149px;}
.fse{font-size:76.879097px;}
.fs21{font-size:77.627179px;}
.y0{bottom:0.000000px;}
.y68{bottom:1.440000px;}
.y71{bottom:1.620000px;}
.y6a{bottom:1.800000px;}
.yb3{bottom:2.838577px;}
.y117{bottom:2.874453px;}
.yaa{bottom:2.876307px;}
.yab{bottom:2.876366px;}
.y11a{bottom:2.876372px;}
.ye2{bottom:2.876374px;}
.yc0{bottom:2.884955px;}
.y8e{bottom:3.392587px;}
.yf2{bottom:3.698337px;}
.yd8{bottom:3.867388px;}
.y12c{bottom:4.157764px;}
.yc9{bottom:4.584652px;}
.yca{bottom:4.584667px;}
.ycb{bottom:4.584685px;}
.yb7{bottom:4.743047px;}
.yd0{bottom:5.035686px;}
.y99{bottom:5.059417px;}
.ya0{bottom:5.073101px;}
.ybc{bottom:5.913125px;}
.ye7{bottom:5.964455px;}
.ya7{bottom:5.964526px;}
.y101{bottom:7.060280px;}
.y8a{bottom:7.259199px;}
.y137{bottom:7.259200px;}
.y132{bottom:7.259203px;}
.ye1{bottom:7.259205px;}
.ybf{bottom:7.280997px;}
.yc1{bottom:7.281023px;}
.y90{bottom:7.454110px;}
.y91{bottom:7.454151px;}
.yb2{bottom:7.473478px;}
.yc6{bottom:7.509349px;}
.y116{bottom:7.509351px;}
.y11f{bottom:7.511786px;}
.yd6{bottom:8.414961px;}
.yda{bottom:8.414966px;}
.ydd{bottom:8.414975px;}
.y12a{bottom:8.716558px;}
.yfd{bottom:9.246060px;}
.yb6{bottom:9.268742px;}
.yd1{bottom:9.623806px;}
.y98{bottom:9.635180px;}
.y9f{bottom:9.661151px;}
.yaf{bottom:9.661158px;}
.ya1{bottom:9.661178px;}
.y125{bottom:10.231444px;}
.y10b{bottom:10.571961px;}
.ybb{bottom:10.571982px;}
.ybd{bottom:10.572032px;}
.ye6{bottom:10.599423px;}
.ya6{bottom:10.599427px;}
.yeb{bottom:10.599430px;}
.yf9{bottom:10.599445px;}
.y87{bottom:14.580000px;}
.y80{bottom:16.020000px;}
.y86{bottom:16.920000px;}
.yf0{bottom:17.708584px;}
.yf4{bottom:17.708655px;}
.y12e{bottom:18.272489px;}
.y7f{bottom:18.360000px;}
.y82{bottom:20.340000px;}
.y11e{bottom:21.368875px;}
.yd4{bottom:22.380296px;}
.ydc{bottom:22.380360px;}
.y129{bottom:22.830536px;}
.y12d{bottom:29.615371px;}
.yf3{bottom:31.329454px;}
.yf1{bottom:31.329514px;}
.yd9{bottom:31.510935px;}
.y120{bottom:32.526352px;}
.y12b{bottom:34.173419px;}
.yd7{bottom:36.022732px;}
.ydb{bottom:36.022735px;}
.yd5{bottom:36.022758px;}
.y121{bottom:40.585939px;}
.y40{bottom:88.380000px;}
.y66{bottom:88.740000px;}
.y3f{bottom:105.660000px;}
.y65{bottom:106.020000px;}
.y3e{bottom:122.940000px;}
.y64{bottom:123.120000px;}
.y3d{bottom:140.076000px;}
.y63{bottom:140.436000px;}
.y187{bottom:144.936000px;}
.y3c{bottom:157.350000px;}
.y62{bottom:157.710000px;}
.y186{bottom:162.210000px;}
.y112{bottom:167.430000px;}
.y3b{bottom:174.630000px;}
.y61{bottom:174.990000px;}
.y185{bottom:179.490000px;}
.y15b{bottom:181.650000px;}
.y111{bottom:184.710000px;}
.y3a{bottom:191.910000px;}
.y60{bottom:192.270000px;}
.y184{bottom:196.770000px;}
.y15a{bottom:198.930000px;}
.y110{bottom:201.990000px;}
.y39{bottom:209.190000px;}
.y5f{bottom:209.550000px;}
.y183{bottom:214.050000px;}
.y159{bottom:216.210000px;}
.y10f{bottom:219.270000px;}
.y38{bottom:226.470000px;}
.y5e{bottom:226.650000px;}
.y182{bottom:231.330000px;}
.y158{bottom:233.490000px;}
.y10e{bottom:236.550000px;}
.y37{bottom:243.570000px;}
.y5d{bottom:243.930000px;}
.y181{bottom:248.430000px;}
.y157{bottom:250.770000px;}
.y10d{bottom:253.650000px;}
.y36{bottom:260.850000px;}
.y5c{bottom:261.210000px;}
.y180{bottom:265.710000px;}
.y10c{bottom:267.690000px;}
.y156{bottom:268.050000px;}
.y35{bottom:278.130000px;}
.y5b{bottom:278.490000px;}
.y17f{bottom:282.990000px;}
.y155{bottom:285.150000px;}
.y34{bottom:295.410000px;}
.y5a{bottom:295.770000px;}
.y17e{bottom:300.270000px;}
.y154{bottom:302.430000px;}
.y33{bottom:312.690000px;}
.y59{bottom:313.050000px;}
.y17d{bottom:317.550000px;}
.y153{bottom:319.710000px;}
.y32{bottom:329.970000px;}
.y58{bottom:330.150000px;}
.y17c{bottom:334.650000px;}
.y31{bottom:347.070000px;}
.y57{bottom:347.430000px;}
.y17b{bottom:351.930000px;}
.y152{bottom:354.270000px;}
.y30{bottom:364.350000px;}
.y56{bottom:364.710000px;}
.y17a{bottom:369.210000px;}
.y151{bottom:371.550000px;}
.y2f{bottom:381.630000px;}
.y55{bottom:381.990000px;}
.y179{bottom:386.490000px;}
.y150{bottom:388.695000px;}
.y2e{bottom:398.955000px;}
.y54{bottom:399.315000px;}
.y178{bottom:403.815000px;}
.y14f{bottom:405.975000px;}
.y2d{bottom:416.235000px;}
.y53{bottom:416.415000px;}
.y177{bottom:421.095000px;}
.y14e{bottom:423.255000px;}
.y2c{bottom:433.335000px;}
.y52{bottom:433.695000px;}
.y176{bottom:438.195000px;}
.y14d{bottom:440.535000px;}
.y2b{bottom:450.615000px;}
.y51{bottom:450.975000px;}
.y175{bottom:455.475000px;}
.y14c{bottom:457.815000px;}
.y2a{bottom:467.895000px;}
.y50{bottom:468.255000px;}
.y174{bottom:472.755000px;}
.y14b{bottom:474.915000px;}
.y29{bottom:485.175000px;}
.y4f{bottom:485.535000px;}
.y173{bottom:490.035000px;}
.y14a{bottom:492.195000px;}
.y28{bottom:502.455000px;}
.y4e{bottom:502.815000px;}
.y172{bottom:507.315000px;}
.y149{bottom:509.475000px;}
.y27{bottom:519.735000px;}
.y4d{bottom:519.915000px;}
.y171{bottom:524.595000px;}
.y148{bottom:526.755000px;}
.y26{bottom:536.835000px;}
.y4c{bottom:537.195000px;}
.y170{bottom:541.695000px;}
.y147{bottom:544.035000px;}
.y25{bottom:554.115000px;}
.y4b{bottom:554.475000px;}
.y16f{bottom:558.975000px;}
.y146{bottom:561.315000px;}
.y10a{bottom:568.739959px;}
.y24{bottom:571.395000px;}
.y4a{bottom:571.755000px;}
.ycd{bottom:575.895000px;}
.y16e{bottom:576.255000px;}
.y145{bottom:578.415000px;}
.y109{bottom:579.135000px;}
.y23{bottom:588.675000px;}
.y49{bottom:589.035000px;}
.ycc{bottom:593.175000px;}
.y16d{bottom:593.535000px;}
.y144{bottom:595.695000px;}
.y108{bottom:601.095000px;}
.y22{bottom:605.955000px;}
.y48{bottom:606.315000px;}
.yc8{bottom:607.064959px;}
.y16c{bottom:610.815000px;}
.yc7{bottom:611.535000px;}
.y143{bottom:612.975000px;}
.y107{bottom:618.195000px;}
.y21{bottom:623.235000px;}
.y47{bottom:623.415000px;}
.y16b{bottom:628.095000px;}
.yc5{bottom:629.564959px;}
.y142{bottom:630.255000px;}
.y106{bottom:635.475000px;}
.yc4{bottom:637.095000px;}
.y20{bottom:640.365000px;}
.y46{bottom:640.725000px;}
.y16a{bottom:645.225000px;}
.y141{bottom:647.565000px;}
.y105{bottom:652.785000px;}
.y1f{bottom:657.645000px;}
.y45{bottom:658.005000px;}
.yc3{bottom:662.145000px;}
.y169{bottom:662.505000px;}
.y140{bottom:664.845000px;}
.y104{bottom:670.065000px;}
.y1e{bottom:674.925000px;}
.y44{bottom:675.285000px;}
.ybe{bottom:676.139959px;}
.y168{bottom:679.785000px;}
.y13f{bottom:681.945000px;}
.yc2{bottom:683.745000px;}
.y103{bottom:687.345000px;}
.y1d{bottom:692.205000px;}
.y43{bottom:692.565000px;}
.y167{bottom:697.065000px;}
.y13e{bottom:699.225000px;}
.yba{bottom:701.039919px;}
.y102{bottom:704.445000px;}
.y42{bottom:706.605000px;}
.y1c{bottom:709.485000px;}
.yb9{bottom:711.465000px;}
.y166{bottom:714.345000px;}
.y13d{bottom:716.505000px;}
.y100{bottom:718.439919px;}
.yff{bottom:726.045000px;}
.y1b{bottom:726.585000px;}
.yb5{bottom:730.139919px;}
.y7d{bottom:731.445000px;}
.y13c{bottom:733.785000px;}
.yb8{bottom:739.185000px;}
.yfc{bottom:742.064919px;}
.y1a{bottom:743.865000px;}
.y165{bottom:748.725000px;}
.yfe{bottom:751.065000px;}
.yfb{bottom:751.785000px;}
.y19{bottom:761.145000px;}
.yb4{bottom:763.845000px;}
.y164{bottom:766.005000px;}
.y13b{bottom:768.165000px;}
.yf8{bottom:772.664919px;}
.yb1{bottom:777.689919px;}
.y18{bottom:778.425000px;}
.y7c{bottom:780.585000px;}
.yfa{bottom:783.105000px;}
.y163{bottom:783.285000px;}
.yb0{bottom:785.265000px;}
.y13a{bottom:785.445000px;}
.y17{bottom:795.705000px;}
.y162{bottom:800.565000px;}
.y139{bottom:802.725000px;}
.yf7{bottom:805.065000px;}
.yae{bottom:807.014919px;}
.y16{bottom:812.985000px;}
.yad{bottom:816.045000px;}
.y161{bottom:817.845000px;}
.y138{bottom:820.005000px;}
.yf6{bottom:822.345000px;}
.y15{bottom:830.085000px;}
.y136{bottom:834.014919px;}
.y160{bottom:834.945000px;}
.ya9{bottom:835.139919px;}
.yef{bottom:836.189919px;}
.y7e{bottom:838.365000px;}
.y135{bottom:841.605000px;}
.yac{bottom:842.685000px;}
.y14{bottom:847.365000px;}
.y15f{bottom:852.225000px;}
.yf5{bottom:854.205000px;}
.ya5{bottom:859.964919px;}
.y134{bottom:861.945000px;}
.y7b{bottom:862.305000px;}
.y13{bottom:864.645000px;}
.y15e{bottom:869.505000px;}
.ya8{bottom:870.405000px;}
.y133{bottom:879.225000px;}
.y7a{bottom:879.585000px;}
.y79{bottom:880.845000px;}
.y12{bottom:881.925000px;}
.y15d{bottom:886.785000px;}
.yee{bottom:888.945000px;}
.ya4{bottom:892.410000px;}
.y131{bottom:893.264919px;}
.y11{bottom:899.250000px;}
.y130{bottom:900.870000px;}
.y15c{bottom:904.110000px;}
.yed{bottom:906.270000px;}
.ya3{bottom:909.690000px;}
.y67{bottom:915.810000px;}
.y10{bottom:916.530000px;}
.y128{bottom:918.090000px;}
.y78{bottom:919.230000px;}
.y77{bottom:919.410000px;}
.yec{bottom:923.550000px;}
.y9e{bottom:923.639919px;}
.y69{bottom:924.450000px;}
.ya2{bottom:932.730000px;}
.y85{bottom:933.450000px;}
.yf{bottom:933.630000px;}
.y76{bottom:936.150000px;}
.yea{bottom:937.514919px;}
.y75{bottom:937.590000px;}
.y12f{bottom:940.650000px;}
.ye9{bottom:948.030000px;}
.ye{bottom:950.910000px;}
.y9d{bottom:955.050000px;}
.y81{bottom:966.390000px;}
.ye5{bottom:966.840000px;}
.yd{bottom:968.190000px;}
.y9c{bottom:972.330000px;}
.y127{bottom:973.050000px;}
.ye8{bottom:977.370000px;}
.yc{bottom:985.470000px;}
.y124{bottom:987.014919px;}
.y9b{bottom:989.610000px;}
.y74{bottom:993.030000px;}
.y126{bottom:997.530000px;}
.ye4{bottom:999.330000px;}
.yb{bottom:1002.750000px;}
.y97{bottom:1003.590000px;}
.y9a{bottom:1012.650000px;}
.ye3{bottom:1016.610000px;}
.ya{bottom:1020.030000px;}
.y123{bottom:1021.830000px;}
.ye0{bottom:1030.439919px;}
.y73{bottom:1033.350000px;}
.y96{bottom:1034.970000px;}
.y11d{bottom:1035.840000px;}
.y9{bottom:1037.130000px;}
.ydf{bottom:1038.030000px;}
.y72{bottom:1051.890000px;}
.y95{bottom:1052.250000px;}
.y8{bottom:1054.410000px;}
.yd3{bottom:1055.264919px;}
.y122{bottom:1056.930000px;}
.y70{bottom:1064.310000px;}
.y6f{bottom:1065.570000px;}
.y94{bottom:1069.350000px;}
.y7{bottom:1071.690000px;}
.yde{bottom:1077.810000px;}
.y83{bottom:1080.690000px;}
.y93{bottom:1086.630000px;}
.y6{bottom:1088.970000px;}
.y11c{bottom:1091.850000px;}
.y84{bottom:1098.150000px;}
.y92{bottom:1103.910000px;}
.y119{bottom:1105.814919px;}
.y5{bottom:1106.250000px;}
.y6e{bottom:1108.590000px;}
.yd2{bottom:1112.550000px;}
.y11b{bottom:1113.450000px;}
.y8f{bottom:1117.739919px;}
.y8d{bottom:1122.239919px;}
.y6d{bottom:1122.990000px;}
.y41{bottom:1123.350000px;}
.y8c{bottom:1125.330000px;}
.ycf{bottom:1126.514919px;}
.y115{bottom:1130.489919px;}
.yce{bottom:1135.590000px;}
.y118{bottom:1138.110000px;}
.y4{bottom:1140.630000px;}
.y8b{bottom:1150.380000px;}
.y6b{bottom:1152.540000px;}
.y6c{bottom:1154.160000px;}
.y3{bottom:1157.940000px;}
.y113{bottom:1159.814919px;}
.y89{bottom:1164.314919px;}
.y114{bottom:1167.480000px;}
.y88{bottom:1171.980000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.hb{height:12.600000px;}
.h8{height:12.780000px;}
.hd{height:12.816000px;}
.hc{height:12.960000px;}
.ha{height:15.840000px;}
.h15{height:20.100727px;}
.h35{height:22.500417px;}
.h4c{height:23.625070px;}
.h13{height:24.825612px;}
.h2f{height:24.900094px;}
.h1a{height:28.049516px;}
.h12{height:28.080000px;}
.h1f{height:28.125196px;}
.h4e{height:29.100494px;}
.h17{height:29.100535px;}
.h43{height:29.176056px;}
.h33{height:29.176097px;}
.h23{height:29.176137px;}
.he{height:29.520000px;}
.h4a{height:30.374395px;}
.h2a{height:30.448914px;}
.h10{height:31.500000px;}
.h56{height:31.500967px;}
.h11{height:31.680000px;}
.h27{height:32.185426px;}
.h31{height:32.282041px;}
.hf{height:32.505469px;}
.h55{height:32.972933px;}
.h52{height:46.607311px;}
.h3e{height:46.718125px;}
.h9{height:47.344922px;}
.h5c{height:47.441505px;}
.h39{height:47.797493px;}
.h2d{height:48.008068px;}
.h30{height:48.421305px;}
.h44{height:49.500868px;}
.h53{height:49.509755px;}
.h3f{height:49.700161px;}
.h5f{height:49.868086px;}
.h48{height:49.942645px;}
.h5e{height:50.317887px;}
.h1e{height:50.610620px;}
.h19{height:50.921543px;}
.h58{height:51.825034px;}
.h60{height:52.027383px;}
.h38{height:52.063157px;}
.h40{height:52.462367px;}
.h46{height:52.754372px;}
.h50{height:52.874534px;}
.h1d{height:53.254281px;}
.h22{height:53.379920px;}
.h49{height:53.899340px;}
.h3b{height:53.998229px;}
.h32{height:58.602719px;}
.h4{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:59.019609px;}
.h7{height:59.038594px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h61{height:61.423863px;}
.h54{height:65.205314px;}
.h41{height:65.555742px;}
.h36{height:66.961290px;}
.h14{height:68.238776px;}
.h37{height:69.595589px;}
.h51{height:69.982143px;}
.h4d{height:70.154293px;}
.h3d{height:70.216332px;}
.h3c{height:70.251283px;}
.h47{height:70.558912px;}
.h45{height:70.594034px;}
.h16{height:70.823247px;}
.h5b{height:71.089054px;}
.h59{height:71.124439px;}
.h1b{height:71.538218px;}
.h20{height:71.731028px;}
.h3a{height:71.839091px;}
.h2e{height:71.941899px;}
.h4f{height:71.977708px;}
.h24{height:72.164705px;}
.h26{height:75.958916px;}
.h4b{height:79.369245px;}
.h2b{height:79.563964px;}
.h57{height:79.890018px;}
.h5a{height:80.293810px;}
.h18{height:81.288285px;}
.h34{height:81.363311px;}
.h28{height:81.499471px;}
.h5d{height:84.640683px;}
.h42{height:85.770362px;}
.h2c{height:88.535232px;}
.h1c{height:89.805677px;}
.h21{height:90.047723px;}
.h25{height:90.668677px;}
.h29{height:90.704579px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:8.280000px;}
.w14{width:9.180000px;}
.w6{width:9.540000px;}
.w4{width:10.440000px;}
.wf{width:15.840000px;}
.wb{width:16.740000px;}
.wd{width:17.100000px;}
.w11{width:18.036000px;}
.w10{width:18.540000px;}
.w8{width:18.720000px;}
.w9{width:19.260000px;}
.wc{width:19.800000px;}
.w15{width:20.520000px;}
.w16{width:20.700000px;}
.w12{width:25.200000px;}
.w7{width:25.920000px;}
.we{width:26.820000px;}
.w3{width:27.036000px;}
.w1b{width:31.500679px;}
.w5{width:35.460000px;}
.w24{width:41.548549px;}
.w13{width:44.820000px;}
.w25{width:44.999989px;}
.w19{width:45.900000px;}
.w18{width:45.936000px;}
.w17{width:46.620000px;}
.w28{width:47.325256px;}
.w27{width:74.097612px;}
.w31{width:93.375706px;}
.w2a{width:103.503581px;}
.w3a{width:103.503601px;}
.w22{width:111.444558px;}
.w20{width:118.055094px;}
.w21{width:121.499146px;}
.w1c{width:121.499156px;}
.w39{width:122.623203px;}
.w29{width:129.222602px;}
.w30{width:130.497198px;}
.w2f{width:145.055194px;}
.w1a{width:154.202765px;}
.w2c{width:163.275611px;}
.w1f{width:164.168422px;}
.w2e{width:166.498507px;}
.w26{width:181.121520px;}
.w23{width:183.290914px;}
.w2d{width:209.404028px;}
.w35{width:226.199870px;}
.w2b{width:238.491363px;}
.w34{width:245.172802px;}
.w1d{width:247.500575px;}
.w33{width:247.500595px;}
.w1e{width:303.897332px;}
.w38{width:336.451039px;}
.w37{width:357.825441px;}
.w32{width:402.592521px;}
.w36{width:453.443133px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5d{left:1.331536px;}
.x57{left:3.249815px;}
.x31{left:7.020000px;}
.x1b{left:8.100000px;}
.x54{left:12.316136px;}
.x25{left:14.580000px;}
.x22{left:16.200000px;}
.x27{left:17.460000px;}
.x66{left:18.793682px;}
.x4d{left:19.885432px;}
.x2d{left:23.040000px;}
.x20{left:24.480000px;}
.x39{left:30.060000px;}
.x1d{left:32.400000px;}
.x37{left:33.660000px;}
.x62{left:34.964510px;}
.x67{left:39.852041px;}
.x2f{left:43.560000px;}
.x90{left:46.733734px;}
.x43{left:51.540215px;}
.x65{left:54.585901px;}
.x5c{left:61.466001px;}
.x64{left:72.409193px;}
.x92{left:75.954488px;}
.x63{left:77.727624px;}
.x91{left:79.689178px;}
.x7c{left:84.005809px;}
.x93{left:85.563316px;}
.x94{left:88.536357px;}
.x6b{left:90.560229px;}
.x99{left:96.401300px;}
.x52{left:99.310992px;}
.x4f{left:104.163914px;}
.x1{left:106.415987px;}
.x17{left:107.855987px;}
.x74{left:109.065110px;}
.x9a{left:110.735987px;}
.x42{left:112.615382px;}
.x44{left:113.878678px;}
.x7b{left:116.853489px;}
.x61{left:120.093982px;}
.x49{left:124.631233px;}
.x46{left:129.249137px;}
.x2{left:132.335987px;}
.x13{left:136.115987px;}
.x56{left:137.789990px;}
.x3d{left:145.939192px;}
.x5{left:147.635987px;}
.x70{left:149.918043px;}
.x58{left:151.409987px;}
.x9d{left:153.569987px;}
.xb{left:154.829987px;}
.x77{left:158.449822px;}
.x5b{left:165.539990px;}
.x9e{left:167.069987px;}
.x8{left:168.329987px;}
.x53{left:170.759859px;}
.x97{left:176.114980px;}
.x40{left:178.589987px;}
.x45{left:183.599067px;}
.x9b{left:185.069987px;}
.x75{left:187.313783px;}
.x4a{left:194.080668px;}
.x73{left:200.089577px;}
.x3b{left:203.969987px;}
.x59{left:205.440000px;}
.x3c{left:207.839980px;}
.x84{left:213.239980px;}
.x10{left:215.849987px;}
.x4e{left:226.889980px;}
.x6e{left:229.228535px;}
.x1f{left:232.770000px;}
.x85{left:233.802069px;}
.x19{left:236.910000px;}
.x4c{left:239.114980px;}
.x24{left:241.590000px;}
.x1a{left:245.190000px;}
.x8b{left:257.966404px;}
.x81{left:260.040000px;}
.x8a{left:264.552143px;}
.x2c{left:268.995000px;}
.x95{left:277.574725px;}
.x8c{left:282.540000px;}
.x9c{left:285.914987px;}
.x55{left:289.694987px;}
.x8e{left:293.114980px;}
.x48{left:294.318817px;}
.x98{left:298.694987px;}
.x51{left:306.239980px;}
.x1c{left:308.235000px;}
.x21{left:310.755000px;}
.x41{left:314.339980px;}
.x30{left:316.335000px;}
.x7f{left:326.054987px;}
.x8f{left:328.295005px;}
.x18{left:334.694987px;}
.x50{left:344.954987px;}
.x88{left:348.239959px;}
.x8d{left:350.783513px;}
.x3{left:358.094987px;}
.x3e{left:362.054987px;}
.x3a{left:370.875000px;}
.x5a{left:386.534987px;}
.x82{left:390.007311px;}
.x47{left:403.274987px;}
.x4b{left:418.394987px;}
.x7e{left:424.154987px;}
.x38{left:426.135000px;}
.x3f{left:435.854987px;}
.x2b{left:439.455000px;}
.x28{left:441.285000px;}
.x7d{left:446.504987px;}
.x14{left:457.304987px;}
.x4{left:461.444987px;}
.x86{left:464.489959px;}
.x15{left:487.004987px;}
.x6{left:490.784987px;}
.x36{left:507.525000px;}
.xe{left:514.184987px;}
.x34{left:518.145000px;}
.x6d{left:519.764959px;}
.x72{left:524.039959px;}
.x6a{left:527.865000px;}
.x11{left:537.944987px;}
.x32{left:540.825000px;}
.x9{left:554.504987px;}
.x2e{left:556.665000px;}
.x29{left:564.225000px;}
.x80{left:566.924987px;}
.x26{left:569.265000px;}
.x89{left:574.484987px;}
.x35{left:577.005000px;}
.x1e{left:590.325000px;}
.x9f{left:599.324987px;}
.x33{left:602.745000px;}
.x60{left:625.214959px;}
.x96{left:629.609987px;}
.x6c{left:631.409987px;}
.x2a{left:636.630000px;}
.x23{left:639.870000px;}
.x79{left:652.289987px;}
.x7a{left:656.189959px;}
.x83{left:662.729987px;}
.x16{left:675.509987px;}
.x5e{left:687.165000px;}
.x71{left:691.349987px;}
.x7{left:699.989987px;}
.xa{left:703.409987px;}
.xd{left:705.929987px;}
.xc{left:708.449987px;}
.x87{left:709.709987px;}
.xf{left:712.589987px;}
.x78{left:731.129987px;}
.x76{left:733.469987px;}
.x5f{left:734.549987px;}
.x68{left:754.529987px;}
.x6f{left:758.309987px;}
.x69{left:769.649987px;}
.x12{left:786.749987px;}
@media print{
.vb{vertical-align:-68.327341pt;}
.v1{vertical-align:-61.440000pt;}
.v9{vertical-align:-48.506341pt;}
.v7{vertical-align:-29.641110pt;}
.v6{vertical-align:-16.479888pt;}
.v3{vertical-align:-15.583632pt;}
.va{vertical-align:-11.020025pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.269379pt;}
.v2{vertical-align:18.560000pt;}
.v8{vertical-align:28.588766pt;}
.v4{vertical-align:29.561174pt;}
.vc{vertical-align:45.347280pt;}
.ls39{letter-spacing:-2.634858pt;}
.ls2b{letter-spacing:-2.127753pt;}
.ls58{letter-spacing:-1.836088pt;}
.ls2f{letter-spacing:-1.793735pt;}
.lsa{letter-spacing:-1.626667pt;}
.ls7{letter-spacing:-1.520000pt;}
.ls3d{letter-spacing:-1.487193pt;}
.ls2a{letter-spacing:-1.411132pt;}
.lsc{letter-spacing:-1.338667pt;}
.ls27{letter-spacing:-1.277431pt;}
.lsb{letter-spacing:-1.237333pt;}
.ls9{letter-spacing:-1.200000pt;}
.lsf{letter-spacing:-1.093333pt;}
.ls3a{letter-spacing:-0.967160pt;}
.ls40{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls38{letter-spacing:-0.852147pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.602667pt;}
.lsd{letter-spacing:-0.597333pt;}
.ls10{letter-spacing:-0.570667pt;}
.ls3f{letter-spacing:-0.358067pt;}
.ls34{letter-spacing:-0.275095pt;}
.ls30{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183680pt;}
.ls55{letter-spacing:0.185066pt;}
.ls36{letter-spacing:0.230933pt;}
.ls37{letter-spacing:0.253030pt;}
.ls51{letter-spacing:0.316288pt;}
.ls3{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.337600pt;}
.ls50{letter-spacing:0.359156pt;}
.ls32{letter-spacing:0.379022pt;}
.ls23{letter-spacing:0.436529pt;}
.ls25{letter-spacing:0.441134pt;}
.ls42{letter-spacing:0.442280pt;}
.ls52{letter-spacing:0.503196pt;}
.ls3b{letter-spacing:0.563979pt;}
.ls31{letter-spacing:0.569840pt;}
.ls53{letter-spacing:0.662624pt;}
.ls2d{letter-spacing:0.695310pt;}
.ls35{letter-spacing:0.782196pt;}
.ls59{letter-spacing:0.901767pt;}
.ls2e{letter-spacing:1.148422pt;}
.ls4a{letter-spacing:1.223922pt;}
.ls57{letter-spacing:1.284200pt;}
.ls26{letter-spacing:1.309908pt;}
.ls29{letter-spacing:1.313438pt;}
.ls54{letter-spacing:1.347658pt;}
.ls56{letter-spacing:1.412211pt;}
.ls16{letter-spacing:1.440000pt;}
.ls3e{letter-spacing:1.460918pt;}
.ls33{letter-spacing:1.488063pt;}
.ls1c{letter-spacing:1.590934pt;}
.ls3c{letter-spacing:1.631103pt;}
.ls28{letter-spacing:1.736778pt;}
.ls41{letter-spacing:1.845879pt;}
.ls2c{letter-spacing:1.905028pt;}
.ls48{letter-spacing:1.925984pt;}
.ls24{letter-spacing:3.396003pt;}
.ls49{letter-spacing:16.015127pt;}
.ls4b{letter-spacing:21.489124pt;}
.ls4d{letter-spacing:25.192385pt;}
.ls14{letter-spacing:39.908523pt;}
.ls19{letter-spacing:41.032704pt;}
.ls4e{letter-spacing:57.098667pt;}
.ls1e{letter-spacing:67.155493pt;}
.ls4c{letter-spacing:73.626248pt;}
.ls4f{letter-spacing:78.032640pt;}
.ls1a{letter-spacing:117.633874pt;}
.ls1d{letter-spacing:131.722591pt;}
.ls1f{letter-spacing:151.318518pt;}
.ls1b{letter-spacing:212.172807pt;}
.ls12{letter-spacing:234.193973pt;}
.ls18{letter-spacing:411.250662pt;}
.ls17{letter-spacing:474.105133pt;}
.ls22{letter-spacing:514.703142pt;}
.ls21{letter-spacing:578.178280pt;}
.ls47{letter-spacing:584.651681pt;}
.ls46{letter-spacing:671.056051pt;}
.ls45{letter-spacing:684.439458pt;}
.ls4{letter-spacing:754.858667pt;}
.ls0{letter-spacing:847.040000pt;}
.ls43{letter-spacing:879.502614pt;}
.ls44{letter-spacing:1062.044749pt;}
.ws0{word-spacing:-53.120000pt;}
.ws22{word-spacing:-35.882158pt;}
.ws13{word-spacing:-35.789179pt;}
.ws1e{word-spacing:-35.666523pt;}
.ws18{word-spacing:-35.570653pt;}
.ws79{word-spacing:-35.364911pt;}
.ws72{word-spacing:-35.263739pt;}
.wsf{word-spacing:-35.232680pt;}
.ws44{word-spacing:-35.101180pt;}
.ws38{word-spacing:-34.930755pt;}
.ws69{word-spacing:-34.796932pt;}
.wse{word-spacing:-33.930085pt;}
.ws57{word-spacing:-23.875326pt;}
.ws6b{word-spacing:-23.174361pt;}
.ws3a{word-spacing:-16.932493pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3c{word-spacing:-13.510933pt;}
.ws63{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws2e{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.592000pt;}
.ws1{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.057600pt;}
.ws9{word-spacing:-10.720000pt;}
.wsa{word-spacing:-9.482667pt;}
.ws8{word-spacing:-9.200000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws65{word-spacing:-1.989367pt;}
.ws1a{word-spacing:-1.356750pt;}
.ws15{word-spacing:-1.353103pt;}
.ws74{word-spacing:-1.348617pt;}
.ws75{word-spacing:-1.288339pt;}
.ws3b{word-spacing:-0.843999pt;}
.ws29{word-spacing:-0.760669pt;}
.ws61{word-spacing:-0.724428pt;}
.ws30{word-spacing:-0.635199pt;}
.ws5f{word-spacing:-0.564999pt;}
.ws53{word-spacing:-0.507639pt;}
.ws52{word-spacing:-0.424515pt;}
.ws55{word-spacing:-0.422511pt;}
.ws5b{word-spacing:-0.381647pt;}
.ws6d{word-spacing:-0.249299pt;}
.ws1f{word-spacing:-0.065359pt;}
.ws10{word-spacing:-0.065190pt;}
.ws36{word-spacing:-0.065097pt;}
.ws19{word-spacing:-0.064966pt;}
.ws14{word-spacing:-0.064792pt;}
.ws73{word-spacing:-0.064417pt;}
.ws6c{word-spacing:-0.064233pt;}
.ws2b{word-spacing:-0.063822pt;}
.ws4c{word-spacing:-0.063666pt;}
.ws37{word-spacing:-0.063626pt;}
.ws50{word-spacing:-0.063538pt;}
.ws64{word-spacing:-0.063382pt;}
.ws60{word-spacing:-0.061803pt;}
.ws47{word-spacing:-0.043615pt;}
.ws32{word-spacing:-0.043489pt;}
.ws35{word-spacing:-0.043311pt;}
.ws17{word-spacing:-0.043195pt;}
.ws77{word-spacing:-0.042989pt;}
.ws41{word-spacing:-0.042666pt;}
.ws67{word-spacing:-0.042212pt;}
.ws5{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.294528pt;}
.ws4a{word-spacing:1.423528pt;}
.ws51{word-spacing:14.295925pt;}
.ws34{word-spacing:43.955160pt;}
.ws23{word-spacing:61.283196pt;}
.ws26{word-spacing:73.902105pt;}
.ws45{word-spacing:80.845878pt;}
.ws7a{word-spacing:82.376229pt;}
.ws4d{word-spacing:83.108802pt;}
.ws27{word-spacing:90.817939pt;}
.wsd{word-spacing:101.945173pt;}
.ws2c{word-spacing:106.378601pt;}
.ws11{word-spacing:110.453929pt;}
.ws24{word-spacing:123.573660pt;}
.ws33{word-spacing:124.358939pt;}
.ws39{word-spacing:126.468158pt;}
.ws20{word-spacing:133.354317pt;}
.wsc{word-spacing:159.783895pt;}
.ws2a{word-spacing:159.861078pt;}
.ws4e{word-spacing:174.589483pt;}
.ws49{word-spacing:191.373558pt;}
.ws5c{word-spacing:200.220338pt;}
.ws12{word-spacing:211.406171pt;}
.ws28{word-spacing:226.896019pt;}
.ws46{word-spacing:231.300279pt;}
.ws21{word-spacing:246.685707pt;}
.ws5e{word-spacing:247.320154pt;}
.ws25{word-spacing:248.382236pt;}
.ws4b{word-spacing:253.510421pt;}
.ws5a{word-spacing:260.593775pt;}
.ws58{word-spacing:274.707488pt;}
.ws40{word-spacing:289.491208pt;}
.ws43{word-spacing:322.847458pt;}
.ws42{word-spacing:332.245060pt;}
.ws3d{word-spacing:332.310421pt;}
.ws31{word-spacing:351.573204pt;}
.ws48{word-spacing:380.699667pt;}
.ws3f{word-spacing:386.007277pt;}
.ws2f{word-spacing:389.022204pt;}
.ws2d{word-spacing:432.317928pt;}
.ws3e{word-spacing:457.320459pt;}
.ws16{word-spacing:481.828230pt;}
.ws62{word-spacing:483.103534pt;}
.ws56{word-spacing:493.219346pt;}
.ws1c{word-spacing:508.712634pt;}
.ws71{word-spacing:587.431311pt;}
.ws5d{word-spacing:671.764597pt;}
.ws59{word-spacing:680.652016pt;}
.ws54{word-spacing:686.475189pt;}
.ws1d{word-spacing:699.011958pt;}
.ws6f{word-spacing:813.581651pt;}
.ws68{word-spacing:839.761719pt;}
.ws6e{word-spacing:866.811784pt;}
.ws1b{word-spacing:932.220741pt;}
.ws76{word-spacing:938.104747pt;}
.ws70{word-spacing:938.109398pt;}
.ws78{word-spacing:1016.109664pt;}
.ws66{word-spacing:1074.365220pt;}
.ws6a{word-spacing:1117.956875pt;}
._7a{margin-left:-1350.146505pt;}
._99{margin-left:-1138.462609pt;}
._9a{margin-left:-739.054508pt;}
._81{margin-left:-721.044050pt;}
._83{margin-left:-712.208911pt;}
._8a{margin-left:-622.154731pt;}
._97{margin-left:-526.428301pt;}
._4c{margin-left:-481.116959pt;}
._57{margin-left:-429.270273pt;}
._6d{margin-left:-425.761889pt;}
._4f{margin-left:-393.135479pt;}
._49{margin-left:-385.349095pt;}
._21{margin-left:-382.852156pt;}
._94{margin-left:-379.985487pt;}
._8f{margin-left:-378.076273pt;}
._62{margin-left:-371.627279pt;}
._38{margin-left:-359.659193pt;}
._27{margin-left:-356.976865pt;}
._9e{margin-left:-350.916346pt;}
._46{margin-left:-333.544186pt;}
._2c{margin-left:-330.962453pt;}
._9f{margin-left:-318.193961pt;}
._43{margin-left:-314.919441pt;}
._90{margin-left:-313.166225pt;}
._32{margin-left:-309.344119pt;}
._79{margin-left:-307.586242pt;}
._63{margin-left:-303.627847pt;}
._69{margin-left:-300.859167pt;}
._35{margin-left:-294.322342pt;}
._78{margin-left:-291.655763pt;}
._5f{margin-left:-287.270297pt;}
._65{margin-left:-283.903857pt;}
._8c{margin-left:-274.270318pt;}
._2f{margin-left:-272.750394pt;}
._3a{margin-left:-270.858637pt;}
._6a{margin-left:-263.806169pt;}
._84{margin-left:-259.938699pt;}
._6b{margin-left:-256.571936pt;}
._60{margin-left:-255.061566pt;}
._39{margin-left:-248.263703pt;}
._8b{margin-left:-245.695424pt;}
._45{margin-left:-242.833545pt;}
._3f{margin-left:-241.369222pt;}
._2d{margin-left:-240.132572pt;}
._56{margin-left:-239.062676pt;}
._68{margin-left:-234.285427pt;}
._31{margin-left:-231.705541pt;}
._1c{margin-left:-230.385312pt;}
._8e{margin-left:-225.128795pt;}
._37{margin-left:-222.905877pt;}
._9c{margin-left:-217.735466pt;}
._5e{margin-left:-213.501069pt;}
._42{margin-left:-211.758056pt;}
._2b{margin-left:-210.006030pt;}
._66{margin-left:-208.902518pt;}
._93{margin-left:-204.253140pt;}
._61{margin-left:-202.075279pt;}
._41{margin-left:-200.785520pt;}
._96{margin-left:-195.173333pt;}
._3e{margin-left:-193.294658pt;}
._6e{margin-left:-191.648052pt;}
._74{margin-left:-188.729499pt;}
._34{margin-left:-186.508170pt;}
._85{margin-left:-184.658568pt;}
._3d{margin-left:-183.507350pt;}
._30{margin-left:-182.285738pt;}
._92{margin-left:-181.209648pt;}
._7d{margin-left:-180.042500pt;}
._3b{margin-left:-177.665596pt;}
._67{margin-left:-175.893837pt;}
._19{margin-left:-174.106498pt;}
._77{margin-left:-171.260558pt;}
._16{margin-left:-169.496674pt;}
._36{margin-left:-167.896782pt;}
._5a{margin-left:-166.091283pt;}
._4a{margin-left:-163.090463pt;}
._1b{margin-left:-161.612390pt;}
._40{margin-left:-159.513888pt;}
._28{margin-left:-157.782553pt;}
._20{margin-left:-156.102936pt;}
._50{margin-left:-153.383777pt;}
._80{margin-left:-152.244405pt;}
._25{margin-left:-151.194205pt;}
._7c{margin-left:-149.105706pt;}
._1f{margin-left:-148.066624pt;}
._5c{margin-left:-146.136098pt;}
._26{margin-left:-143.722318pt;}
._52{margin-left:-140.976240pt;}
._2a{margin-left:-138.826727pt;}
._1d{margin-left:-136.895476pt;}
._1a{margin-left:-135.954873pt;}
._33{margin-left:-133.418944pt;}
._2e{margin-left:-132.433295pt;}
._22{margin-left:-130.413415pt;}
._5b{margin-left:-128.460714pt;}
._53{margin-left:-126.802553pt;}
._9b{margin-left:-125.648394pt;}
._18{margin-left:-124.744836pt;}
._89{margin-left:-123.597909pt;}
._47{margin-left:-121.109377pt;}
._4b{margin-left:-116.197507pt;}
._29{margin-left:-114.465366pt;}
._91{margin-left:-112.849033pt;}
._73{margin-left:-110.432493pt;}
._72{margin-left:-107.958697pt;}
._64{margin-left:-105.927999pt;}
._98{margin-left:-104.888216pt;}
._51{margin-left:-100.884360pt;}
._23{margin-left:-98.816895pt;}
._5d{margin-left:-96.889415pt;}
._3c{margin-left:-95.849065pt;}
._24{margin-left:-94.703135pt;}
._58{margin-left:-93.196951pt;}
._17{margin-left:-91.297022pt;}
._1e{margin-left:-89.912671pt;}
._9d{margin-left:-83.924065pt;}
._76{margin-left:-82.622146pt;}
._7e{margin-left:-80.737448pt;}
._87{margin-left:-79.823763pt;}
._6f{margin-left:-78.705514pt;}
._8d{margin-left:-77.240987pt;}
._7f{margin-left:-75.979835pt;}
._88{margin-left:-72.726314pt;}
._71{margin-left:-71.590635pt;}
._95{margin-left:-66.581688pt;}
._6c{margin-left:-65.492247pt;}
._59{margin-left:-50.987509pt;}
._54{margin-left:-48.483483pt;}
._55{margin-left:-46.933413pt;}
._70{margin-left:-44.786727pt;}
._82{margin-left:-42.433493pt;}
._86{margin-left:-39.968995pt;}
._7b{margin-left:-8.961247pt;}
._13{margin-left:-3.718400pt;}
._9{margin-left:-2.709120pt;}
._8{margin-left:-1.062400pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._4{width:3.340800pt;}
._6{width:4.693547pt;}
._3{width:6.055680pt;}
._7{width:7.489920pt;}
._5{width:8.651093pt;}
._b{width:9.561600pt;}
._a{width:10.464640pt;}
._12{width:11.420800pt;}
._11{width:12.376960pt;}
._f{width:14.554880pt;}
._14{width:15.457920pt;}
._10{width:16.360960pt;}
._e{width:18.113920pt;}
._d{width:19.920000pt;}
._4d{width:22.151040pt;}
._a0{width:24.283487pt;}
._44{width:25.816320pt;}
._c{width:27.144320pt;}
._a2{width:30.544000pt;}
._a1{width:31.765760pt;}
._15{width:34.634240pt;}
._4e{width:48.657920pt;}
._48{width:175.349120pt;}
._75{width:754.858667pt;}
._2{width:1163.345707pt;}
.fs3{font-size:29.440000pt;}
.fs1d{font-size:30.842429pt;}
.fs17{font-size:31.517171pt;}
.fs1{font-size:34.560000pt;}
.fs5{font-size:41.203783pt;}
.fs15{font-size:41.327470pt;}
.fs27{font-size:42.211950pt;}
.fs1b{font-size:42.333375pt;}
.fs23{font-size:42.444392pt;}
.fs13{font-size:42.548522pt;}
.fs1f{font-size:42.666294pt;}
.fs29{font-size:42.780318pt;}
.fs2{font-size:42.880000pt;}
.fs2b{font-size:42.988862pt;}
.fsa{font-size:43.195019pt;}
.fsd{font-size:43.311439pt;}
.fs25{font-size:43.376063pt;}
.fs10{font-size:43.488754pt;}
.fs8{font-size:43.502251pt;}
.fs11{font-size:43.615269pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:61.803433pt;}
.fs14{font-size:61.988956pt;}
.fs16{font-size:63.032290pt;}
.fs26{font-size:63.382390pt;}
.fs24{font-size:63.538305pt;}
.fs1a{font-size:63.626148pt;}
.fs22{font-size:63.665537pt;}
.fs12{font-size:63.821729pt;}
.fs1e{font-size:63.936575pt;}
.fs6{font-size:64.176101pt;}
.fs28{font-size:64.232676pt;}
.fs2a{font-size:64.416960pt;}
.fs9{font-size:64.791717pt;}
.fsc{font-size:64.966344pt;}
.fs19{font-size:65.096602pt;}
.fs7{font-size:65.189761pt;}
.fsf{font-size:65.359123pt;}
.fs18{font-size:66.651255pt;}
.fs1c{font-size:67.162323pt;}
.fs20{font-size:67.536148pt;}
.fsb{font-size:68.176132pt;}
.fse{font-size:68.336975pt;}
.fs21{font-size:69.001937pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:1.280000pt;}
.y71{bottom:1.440000pt;}
.y6a{bottom:1.600000pt;}
.yb3{bottom:2.523180pt;}
.y117{bottom:2.555069pt;}
.yaa{bottom:2.556718pt;}
.yab{bottom:2.556769pt;}
.y11a{bottom:2.556775pt;}
.ye2{bottom:2.556777pt;}
.yc0{bottom:2.564404pt;}
.y8e{bottom:3.015633pt;}
.yf2{bottom:3.287411pt;}
.yd8{bottom:3.437678pt;}
.y12c{bottom:3.695790pt;}
.yc9{bottom:4.075246pt;}
.yca{bottom:4.075260pt;}
.ycb{bottom:4.075275pt;}
.yb7{bottom:4.216042pt;}
.yd0{bottom:4.476166pt;}
.y99{bottom:4.497260pt;}
.ya0{bottom:4.509423pt;}
.ybc{bottom:5.256111pt;}
.ye7{bottom:5.301737pt;}
.ya7{bottom:5.301801pt;}
.y101{bottom:6.275804pt;}
.y8a{bottom:6.452621pt;}
.y137{bottom:6.452622pt;}
.y132{bottom:6.452625pt;}
.ye1{bottom:6.452626pt;}
.ybf{bottom:6.471997pt;}
.yc1{bottom:6.472021pt;}
.y90{bottom:6.625875pt;}
.y91{bottom:6.625912pt;}
.yb2{bottom:6.643092pt;}
.yc6{bottom:6.674977pt;}
.y116{bottom:6.674978pt;}
.y11f{bottom:6.677143pt;}
.yd6{bottom:7.479966pt;}
.yda{bottom:7.479970pt;}
.ydd{bottom:7.479978pt;}
.y12a{bottom:7.748051pt;}
.yfd{bottom:8.218720pt;}
.yb6{bottom:8.238882pt;}
.yd1{bottom:8.554494pt;}
.y98{bottom:8.564604pt;}
.y9f{bottom:8.587690pt;}
.yaf{bottom:8.587696pt;}
.ya1{bottom:8.587714pt;}
.y125{bottom:9.094617pt;}
.y10b{bottom:9.397299pt;}
.ybb{bottom:9.397317pt;}
.ybd{bottom:9.397362pt;}
.ye6{bottom:9.421709pt;}
.ya6{bottom:9.421713pt;}
.yeb{bottom:9.421715pt;}
.yf9{bottom:9.421729pt;}
.y87{bottom:12.960000pt;}
.y80{bottom:14.240000pt;}
.y86{bottom:15.040000pt;}
.yf0{bottom:15.740963pt;}
.yf4{bottom:15.741026pt;}
.y12e{bottom:16.242212pt;}
.y7f{bottom:16.320000pt;}
.y82{bottom:18.080000pt;}
.y11e{bottom:18.994555pt;}
.yd4{bottom:19.893597pt;}
.ydc{bottom:19.893653pt;}
.y129{bottom:20.293810pt;}
.y12d{bottom:26.324774pt;}
.yf3{bottom:27.848404pt;}
.yf1{bottom:27.848457pt;}
.yd9{bottom:28.009720pt;}
.y120{bottom:28.912313pt;}
.y12b{bottom:30.376373pt;}
.yd7{bottom:32.020206pt;}
.ydb{bottom:32.020209pt;}
.yd5{bottom:32.020230pt;}
.y121{bottom:36.076390pt;}
.y40{bottom:78.560000pt;}
.y66{bottom:78.880000pt;}
.y3f{bottom:93.920000pt;}
.y65{bottom:94.240000pt;}
.y3e{bottom:109.280000pt;}
.y64{bottom:109.440000pt;}
.y3d{bottom:124.512000pt;}
.y63{bottom:124.832000pt;}
.y187{bottom:128.832000pt;}
.y3c{bottom:139.866667pt;}
.y62{bottom:140.186667pt;}
.y186{bottom:144.186667pt;}
.y112{bottom:148.826667pt;}
.y3b{bottom:155.226667pt;}
.y61{bottom:155.546667pt;}
.y185{bottom:159.546667pt;}
.y15b{bottom:161.466667pt;}
.y111{bottom:164.186667pt;}
.y3a{bottom:170.586667pt;}
.y60{bottom:170.906667pt;}
.y184{bottom:174.906667pt;}
.y15a{bottom:176.826667pt;}
.y110{bottom:179.546667pt;}
.y39{bottom:185.946667pt;}
.y5f{bottom:186.266667pt;}
.y183{bottom:190.266667pt;}
.y159{bottom:192.186667pt;}
.y10f{bottom:194.906667pt;}
.y38{bottom:201.306667pt;}
.y5e{bottom:201.466667pt;}
.y182{bottom:205.626667pt;}
.y158{bottom:207.546667pt;}
.y10e{bottom:210.266667pt;}
.y37{bottom:216.506667pt;}
.y5d{bottom:216.826667pt;}
.y181{bottom:220.826667pt;}
.y157{bottom:222.906667pt;}
.y10d{bottom:225.466667pt;}
.y36{bottom:231.866667pt;}
.y5c{bottom:232.186667pt;}
.y180{bottom:236.186667pt;}
.y10c{bottom:237.946667pt;}
.y156{bottom:238.266667pt;}
.y35{bottom:247.226667pt;}
.y5b{bottom:247.546667pt;}
.y17f{bottom:251.546667pt;}
.y155{bottom:253.466667pt;}
.y34{bottom:262.586667pt;}
.y5a{bottom:262.906667pt;}
.y17e{bottom:266.906667pt;}
.y154{bottom:268.826667pt;}
.y33{bottom:277.946667pt;}
.y59{bottom:278.266667pt;}
.y17d{bottom:282.266667pt;}
.y153{bottom:284.186667pt;}
.y32{bottom:293.306667pt;}
.y58{bottom:293.466667pt;}
.y17c{bottom:297.466667pt;}
.y31{bottom:308.506667pt;}
.y57{bottom:308.826667pt;}
.y17b{bottom:312.826667pt;}
.y152{bottom:314.906667pt;}
.y30{bottom:323.866667pt;}
.y56{bottom:324.186667pt;}
.y17a{bottom:328.186667pt;}
.y151{bottom:330.266667pt;}
.y2f{bottom:339.226667pt;}
.y55{bottom:339.546667pt;}
.y179{bottom:343.546667pt;}
.y150{bottom:345.506667pt;}
.y2e{bottom:354.626667pt;}
.y54{bottom:354.946667pt;}
.y178{bottom:358.946667pt;}
.y14f{bottom:360.866667pt;}
.y2d{bottom:369.986667pt;}
.y53{bottom:370.146667pt;}
.y177{bottom:374.306667pt;}
.y14e{bottom:376.226667pt;}
.y2c{bottom:385.186667pt;}
.y52{bottom:385.506667pt;}
.y176{bottom:389.506667pt;}
.y14d{bottom:391.586667pt;}
.y2b{bottom:400.546667pt;}
.y51{bottom:400.866667pt;}
.y175{bottom:404.866667pt;}
.y14c{bottom:406.946667pt;}
.y2a{bottom:415.906667pt;}
.y50{bottom:416.226667pt;}
.y174{bottom:420.226667pt;}
.y14b{bottom:422.146667pt;}
.y29{bottom:431.266667pt;}
.y4f{bottom:431.586667pt;}
.y173{bottom:435.586667pt;}
.y14a{bottom:437.506667pt;}
.y28{bottom:446.626667pt;}
.y4e{bottom:446.946667pt;}
.y172{bottom:450.946667pt;}
.y149{bottom:452.866667pt;}
.y27{bottom:461.986667pt;}
.y4d{bottom:462.146667pt;}
.y171{bottom:466.306667pt;}
.y148{bottom:468.226667pt;}
.y26{bottom:477.186667pt;}
.y4c{bottom:477.506667pt;}
.y170{bottom:481.506667pt;}
.y147{bottom:483.586667pt;}
.y25{bottom:492.546667pt;}
.y4b{bottom:492.866667pt;}
.y16f{bottom:496.866667pt;}
.y146{bottom:498.946667pt;}
.y10a{bottom:505.546630pt;}
.y24{bottom:507.906667pt;}
.y4a{bottom:508.226667pt;}
.ycd{bottom:511.906667pt;}
.y16e{bottom:512.226667pt;}
.y145{bottom:514.146667pt;}
.y109{bottom:514.786667pt;}
.y23{bottom:523.266667pt;}
.y49{bottom:523.586667pt;}
.ycc{bottom:527.266667pt;}
.y16d{bottom:527.586667pt;}
.y144{bottom:529.506667pt;}
.y108{bottom:534.306667pt;}
.y22{bottom:538.626667pt;}
.y48{bottom:538.946667pt;}
.yc8{bottom:539.613297pt;}
.y16c{bottom:542.946667pt;}
.yc7{bottom:543.586667pt;}
.y143{bottom:544.866667pt;}
.y107{bottom:549.506667pt;}
.y21{bottom:553.986667pt;}
.y47{bottom:554.146667pt;}
.y16b{bottom:558.306667pt;}
.yc5{bottom:559.613297pt;}
.y142{bottom:560.226667pt;}
.y106{bottom:564.866667pt;}
.yc4{bottom:566.306667pt;}
.y20{bottom:569.213333pt;}
.y46{bottom:569.533333pt;}
.y16a{bottom:573.533333pt;}
.y141{bottom:575.613333pt;}
.y105{bottom:580.253333pt;}
.y1f{bottom:584.573333pt;}
.y45{bottom:584.893333pt;}
.yc3{bottom:588.573333pt;}
.y169{bottom:588.893333pt;}
.y140{bottom:590.973333pt;}
.y104{bottom:595.613333pt;}
.y1e{bottom:599.933333pt;}
.y44{bottom:600.253333pt;}
.ybe{bottom:601.013297pt;}
.y168{bottom:604.253333pt;}
.y13f{bottom:606.173333pt;}
.yc2{bottom:607.773333pt;}
.y103{bottom:610.973333pt;}
.y1d{bottom:615.293333pt;}
.y43{bottom:615.613333pt;}
.y167{bottom:619.613333pt;}
.y13e{bottom:621.533333pt;}
.yba{bottom:623.146594pt;}
.y102{bottom:626.173333pt;}
.y42{bottom:628.093333pt;}
.y1c{bottom:630.653333pt;}
.yb9{bottom:632.413333pt;}
.y166{bottom:634.973333pt;}
.y13d{bottom:636.893333pt;}
.y100{bottom:638.613261pt;}
.yff{bottom:645.373333pt;}
.y1b{bottom:645.853333pt;}
.yb5{bottom:649.013261pt;}
.y7d{bottom:650.173333pt;}
.y13c{bottom:652.253333pt;}
.yb8{bottom:657.053333pt;}
.yfc{bottom:659.613261pt;}
.y1a{bottom:661.213333pt;}
.y165{bottom:665.533333pt;}
.yfe{bottom:667.613333pt;}
.yfb{bottom:668.253333pt;}
.y19{bottom:676.573333pt;}
.yb4{bottom:678.973333pt;}
.y164{bottom:680.893333pt;}
.y13b{bottom:682.813333pt;}
.yf8{bottom:686.813261pt;}
.yb1{bottom:691.279928pt;}
.y18{bottom:691.933333pt;}
.y7c{bottom:693.853333pt;}
.yfa{bottom:696.093333pt;}
.y163{bottom:696.253333pt;}
.yb0{bottom:698.013333pt;}
.y13a{bottom:698.173333pt;}
.y17{bottom:707.293333pt;}
.y162{bottom:711.613333pt;}
.y139{bottom:713.533333pt;}
.yf7{bottom:715.613333pt;}
.yae{bottom:717.346594pt;}
.y16{bottom:722.653333pt;}
.yad{bottom:725.373333pt;}
.y161{bottom:726.973333pt;}
.y138{bottom:728.893333pt;}
.yf6{bottom:730.973333pt;}
.y15{bottom:737.853333pt;}
.y136{bottom:741.346594pt;}
.y160{bottom:742.173333pt;}
.ya9{bottom:742.346594pt;}
.yef{bottom:743.279928pt;}
.y7e{bottom:745.213333pt;}
.y135{bottom:748.093333pt;}
.yac{bottom:749.053333pt;}
.y14{bottom:753.213333pt;}
.y15f{bottom:757.533333pt;}
.yf5{bottom:759.293333pt;}
.ya5{bottom:764.413261pt;}
.y134{bottom:766.173333pt;}
.y7b{bottom:766.493333pt;}
.y13{bottom:768.573333pt;}
.y15e{bottom:772.893333pt;}
.ya8{bottom:773.693333pt;}
.y133{bottom:781.533333pt;}
.y7a{bottom:781.853333pt;}
.y79{bottom:782.973333pt;}
.y12{bottom:783.933333pt;}
.y15d{bottom:788.253333pt;}
.yee{bottom:790.173333pt;}
.ya4{bottom:793.253333pt;}
.y131{bottom:794.013261pt;}
.y11{bottom:799.333333pt;}
.y130{bottom:800.773333pt;}
.y15c{bottom:803.653333pt;}
.yed{bottom:805.573333pt;}
.ya3{bottom:808.613333pt;}
.y67{bottom:814.053333pt;}
.y10{bottom:814.693333pt;}
.y128{bottom:816.080000pt;}
.y78{bottom:817.093333pt;}
.y77{bottom:817.253333pt;}
.yec{bottom:820.933333pt;}
.y9e{bottom:821.013261pt;}
.y69{bottom:821.733333pt;}
.ya2{bottom:829.093333pt;}
.y85{bottom:829.733333pt;}
.yf{bottom:829.893333pt;}
.y76{bottom:832.133333pt;}
.yea{bottom:833.346594pt;}
.y75{bottom:833.413333pt;}
.y12f{bottom:836.133333pt;}
.ye9{bottom:842.693333pt;}
.ye{bottom:845.253333pt;}
.y9d{bottom:848.933333pt;}
.y81{bottom:859.013333pt;}
.ye5{bottom:859.413333pt;}
.yd{bottom:860.613333pt;}
.y9c{bottom:864.293333pt;}
.y127{bottom:864.933333pt;}
.ye8{bottom:868.773333pt;}
.yc{bottom:875.973333pt;}
.y124{bottom:877.346594pt;}
.y9b{bottom:879.653333pt;}
.y74{bottom:882.693333pt;}
.y126{bottom:886.693333pt;}
.ye4{bottom:888.293333pt;}
.yb{bottom:891.333333pt;}
.y97{bottom:892.080000pt;}
.y9a{bottom:900.133333pt;}
.ye3{bottom:903.653333pt;}
.ya{bottom:906.693333pt;}
.y123{bottom:908.293333pt;}
.ye0{bottom:915.946594pt;}
.y73{bottom:918.533333pt;}
.y96{bottom:919.973333pt;}
.y11d{bottom:920.746667pt;}
.y9{bottom:921.893333pt;}
.ydf{bottom:922.693333pt;}
.y72{bottom:935.013333pt;}
.y95{bottom:935.333333pt;}
.y8{bottom:937.253333pt;}
.yd3{bottom:938.013261pt;}
.y122{bottom:939.493333pt;}
.y70{bottom:946.053333pt;}
.y6f{bottom:947.173333pt;}
.y94{bottom:950.533333pt;}
.y7{bottom:952.613333pt;}
.yde{bottom:958.053333pt;}
.y83{bottom:960.613333pt;}
.y93{bottom:965.893333pt;}
.y6{bottom:967.973333pt;}
.y11c{bottom:970.533333pt;}
.y84{bottom:976.133333pt;}
.y92{bottom:981.253333pt;}
.y119{bottom:982.946594pt;}
.y5{bottom:983.333333pt;}
.y6e{bottom:985.413333pt;}
.yd2{bottom:988.933333pt;}
.y11b{bottom:989.733333pt;}
.y8f{bottom:993.546594pt;}
.y8d{bottom:997.546594pt;}
.y6d{bottom:998.213333pt;}
.y41{bottom:998.533333pt;}
.y8c{bottom:1000.293333pt;}
.ycf{bottom:1001.346594pt;}
.y115{bottom:1004.879928pt;}
.yce{bottom:1009.413333pt;}
.y118{bottom:1011.653333pt;}
.y4{bottom:1013.893333pt;}
.y8b{bottom:1022.560000pt;}
.y6b{bottom:1024.480000pt;}
.y6c{bottom:1025.920000pt;}
.y3{bottom:1029.280000pt;}
.y113{bottom:1030.946594pt;}
.y89{bottom:1034.946594pt;}
.y114{bottom:1037.760000pt;}
.y88{bottom:1041.760000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.hb{height:11.200000pt;}
.h8{height:11.360000pt;}
.hd{height:11.392000pt;}
.hc{height:11.520000pt;}
.ha{height:14.080000pt;}
.h15{height:17.867313pt;}
.h35{height:20.000371pt;}
.h4c{height:21.000063pt;}
.h13{height:22.067211pt;}
.h2f{height:22.133417pt;}
.h1a{height:24.932903pt;}
.h12{height:24.960000pt;}
.h1f{height:25.000174pt;}
.h4e{height:25.867106pt;}
.h17{height:25.867142pt;}
.h43{height:25.934272pt;}
.h33{height:25.934308pt;}
.h23{height:25.934344pt;}
.he{height:26.240000pt;}
.h4a{height:26.999462pt;}
.h2a{height:27.065701pt;}
.h10{height:28.000000pt;}
.h56{height:28.000859pt;}
.h11{height:28.160000pt;}
.h27{height:28.609267pt;}
.h31{height:28.695147pt;}
.hf{height:28.893750pt;}
.h55{height:29.309274pt;}
.h52{height:41.428720pt;}
.h3e{height:41.527222pt;}
.h9{height:42.084375pt;}
.h5c{height:42.170227pt;}
.h39{height:42.486660pt;}
.h2d{height:42.673839pt;}
.h30{height:43.041160pt;}
.h44{height:44.000771pt;}
.h53{height:44.008671pt;}
.h3f{height:44.177921pt;}
.h5f{height:44.327188pt;}
.h48{height:44.393462pt;}
.h5e{height:44.727011pt;}
.h1e{height:44.987217pt;}
.h19{height:45.263594pt;}
.h58{height:46.066697pt;}
.h60{height:46.246563pt;}
.h38{height:46.278362pt;}
.h40{height:46.633215pt;}
.h46{height:46.892775pt;}
.h50{height:46.999586pt;}
.h1d{height:47.337139pt;}
.h22{height:47.448818pt;}
.h49{height:47.910525pt;}
.h3b{height:47.998426pt;}
.h32{height:52.091305pt;}
.h4{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:52.461875pt;}
.h7{height:52.478750pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h61{height:54.598989pt;}
.h54{height:57.960279pt;}
.h41{height:58.271771pt;}
.h36{height:59.521146pt;}
.h14{height:60.656689pt;}
.h37{height:61.862746pt;}
.h51{height:62.206349pt;}
.h4d{height:62.359372pt;}
.h3d{height:62.414518pt;}
.h3c{height:62.445585pt;}
.h47{height:62.719033pt;}
.h45{height:62.750252pt;}
.h16{height:62.953998pt;}
.h5b{height:63.190270pt;}
.h59{height:63.221724pt;}
.h1b{height:63.589527pt;}
.h20{height:63.760914pt;}
.h3a{height:63.856970pt;}
.h2e{height:63.948354pt;}
.h4f{height:63.980185pt;}
.h24{height:64.146405pt;}
.h26{height:67.519036pt;}
.h4b{height:70.550440pt;}
.h2b{height:70.723524pt;}
.h57{height:71.013350pt;}
.h5a{height:71.372275pt;}
.h18{height:72.256254pt;}
.h34{height:72.322943pt;}
.h28{height:72.443974pt;}
.h5d{height:75.236162pt;}
.h42{height:76.240322pt;}
.h2c{height:78.697984pt;}
.h1c{height:79.827269pt;}
.h21{height:80.042420pt;}
.h25{height:80.594379pt;}
.h29{height:80.626293pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:7.360000pt;}
.w14{width:8.160000pt;}
.w6{width:8.480000pt;}
.w4{width:9.280000pt;}
.wf{width:14.080000pt;}
.wb{width:14.880000pt;}
.wd{width:15.200000pt;}
.w11{width:16.032000pt;}
.w10{width:16.480000pt;}
.w8{width:16.640000pt;}
.w9{width:17.120000pt;}
.wc{width:17.600000pt;}
.w15{width:18.240000pt;}
.w16{width:18.400000pt;}
.w12{width:22.400000pt;}
.w7{width:23.040000pt;}
.we{width:23.840000pt;}
.w3{width:24.032000pt;}
.w1b{width:28.000604pt;}
.w5{width:31.520000pt;}
.w24{width:36.932043pt;}
.w13{width:39.840000pt;}
.w25{width:39.999990pt;}
.w19{width:40.800000pt;}
.w18{width:40.832000pt;}
.w17{width:41.440000pt;}
.w28{width:42.066894pt;}
.w27{width:65.864544pt;}
.w31{width:83.000627pt;}
.w2a{width:92.003183pt;}
.w3a{width:92.003201pt;}
.w22{width:99.061830pt;}
.w20{width:104.937862pt;}
.w21{width:107.999241pt;}
.w1c{width:107.999250pt;}
.w39{width:108.998403pt;}
.w29{width:114.864535pt;}
.w30{width:115.997509pt;}
.w2f{width:128.937950pt;}
.w1a{width:137.069124pt;}
.w2c{width:145.133876pt;}
.w1f{width:145.927486pt;}
.w2e{width:147.998673pt;}
.w26{width:160.996906pt;}
.w23{width:162.925257pt;}
.w2d{width:186.136914pt;}
.w35{width:201.066551pt;}
.w2b{width:211.992322pt;}
.w34{width:217.931380pt;}
.w1d{width:220.000511pt;}
.w33{width:220.000529pt;}
.w1e{width:270.130961pt;}
.w38{width:299.067590pt;}
.w37{width:318.067059pt;}
.w32{width:357.860019pt;}
.w36{width:403.060563pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:1.183587pt;}
.x57{left:2.888725pt;}
.x31{left:6.240000pt;}
.x1b{left:7.200000pt;}
.x54{left:10.947676pt;}
.x25{left:12.960000pt;}
.x22{left:14.400000pt;}
.x27{left:15.520000pt;}
.x66{left:16.705495pt;}
.x4d{left:17.675940pt;}
.x2d{left:20.480000pt;}
.x20{left:21.760000pt;}
.x39{left:26.720000pt;}
.x1d{left:28.800000pt;}
.x37{left:29.920000pt;}
.x62{left:31.079564pt;}
.x67{left:35.424037pt;}
.x2f{left:38.720000pt;}
.x90{left:41.541097pt;}
.x43{left:45.813524pt;}
.x65{left:48.520801pt;}
.x5c{left:54.636445pt;}
.x64{left:64.363727pt;}
.x92{left:67.515100pt;}
.x63{left:69.091222pt;}
.x91{left:70.834824pt;}
.x7c{left:74.671831pt;}
.x93{left:76.056281pt;}
.x94{left:78.698984pt;}
.x6b{left:80.497982pt;}
.x99{left:85.690045pt;}
.x52{left:88.276437pt;}
.x4f{left:92.590146pt;}
.x1{left:94.591988pt;}
.x17{left:95.871988pt;}
.x74{left:96.946764pt;}
.x9a{left:98.431988pt;}
.x42{left:100.102561pt;}
.x44{left:101.225492pt;}
.x7b{left:103.869768pt;}
.x61{left:106.750206pt;}
.x49{left:110.783318pt;}
.x46{left:114.888122pt;}
.x2{left:117.631988pt;}
.x13{left:120.991988pt;}
.x56{left:122.479991pt;}
.x3d{left:129.723726pt;}
.x5{left:131.231988pt;}
.x70{left:133.260482pt;}
.x58{left:134.586655pt;}
.x9d{left:136.506655pt;}
.xb{left:137.626655pt;}
.x77{left:140.844286pt;}
.x5b{left:147.146658pt;}
.x9e{left:148.506655pt;}
.x8{left:149.626655pt;}
.x53{left:151.786541pt;}
.x97{left:156.546649pt;}
.x40{left:158.746655pt;}
.x45{left:163.199171pt;}
.x9b{left:164.506655pt;}
.x75{left:166.501141pt;}
.x4a{left:172.516149pt;}
.x73{left:177.857402pt;}
.x3b{left:181.306655pt;}
.x59{left:182.613333pt;}
.x3c{left:184.746649pt;}
.x84{left:189.546649pt;}
.x10{left:191.866655pt;}
.x4e{left:201.679982pt;}
.x6e{left:203.758698pt;}
.x1f{left:206.906667pt;}
.x85{left:207.824061pt;}
.x19{left:210.586667pt;}
.x4c{left:212.546649pt;}
.x24{left:214.746667pt;}
.x1a{left:217.946667pt;}
.x8b{left:229.303470pt;}
.x81{left:231.146667pt;}
.x8a{left:235.157460pt;}
.x2c{left:239.106667pt;}
.x95{left:246.733089pt;}
.x8c{left:251.146667pt;}
.x9c{left:254.146655pt;}
.x55{left:257.506655pt;}
.x8e{left:260.546649pt;}
.x48{left:261.616726pt;}
.x98{left:265.506655pt;}
.x51{left:272.213315pt;}
.x1c{left:273.986667pt;}
.x21{left:276.226667pt;}
.x41{left:279.413315pt;}
.x30{left:281.186667pt;}
.x7f{left:289.826655pt;}
.x8f{left:291.817782pt;}
.x18{left:297.506655pt;}
.x50{left:306.626655pt;}
.x88{left:309.546630pt;}
.x8d{left:311.807567pt;}
.x3{left:318.306655pt;}
.x3e{left:321.826655pt;}
.x3a{left:329.666667pt;}
.x5a{left:343.586655pt;}
.x82{left:346.673165pt;}
.x47{left:358.466655pt;}
.x4b{left:371.906655pt;}
.x7e{left:377.026655pt;}
.x38{left:378.786667pt;}
.x3f{left:387.426655pt;}
.x2b{left:390.626667pt;}
.x28{left:392.253333pt;}
.x7d{left:396.893322pt;}
.x14{left:406.493322pt;}
.x4{left:410.173322pt;}
.x86{left:412.879964pt;}
.x15{left:432.893322pt;}
.x6{left:436.253322pt;}
.x36{left:451.133333pt;}
.xe{left:457.053322pt;}
.x34{left:460.573333pt;}
.x6d{left:462.013297pt;}
.x72{left:465.813297pt;}
.x6a{left:469.213333pt;}
.x11{left:478.173322pt;}
.x32{left:480.733333pt;}
.x9{left:492.893322pt;}
.x2e{left:494.813333pt;}
.x29{left:501.533333pt;}
.x80{left:503.933322pt;}
.x26{left:506.013333pt;}
.x89{left:510.653322pt;}
.x35{left:512.893333pt;}
.x1e{left:524.733333pt;}
.x9f{left:532.733322pt;}
.x33{left:535.773333pt;}
.x60{left:555.746630pt;}
.x96{left:559.653322pt;}
.x6c{left:561.253322pt;}
.x2a{left:565.893333pt;}
.x23{left:568.773333pt;}
.x79{left:579.813322pt;}
.x7a{left:583.279964pt;}
.x83{left:589.093322pt;}
.x16{left:600.453322pt;}
.x5e{left:610.813333pt;}
.x71{left:614.533322pt;}
.x7{left:622.213322pt;}
.xa{left:625.253322pt;}
.xd{left:627.493322pt;}
.xc{left:629.733322pt;}
.x87{left:630.853322pt;}
.xf{left:633.413322pt;}
.x78{left:649.893322pt;}
.x76{left:651.973322pt;}
.x5f{left:652.933322pt;}
.x68{left:670.693322pt;}
.x6f{left:674.053322pt;}
.x69{left:684.133322pt;}
.x12{left:699.333322pt;}
}




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