
    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_9f5f564a262b85f0dba44887.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_932b2c1ee586039032cd1675.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_039556abb4499e2a658d4cc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_141e58eff69e13ddee5d7e17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d1b903fac282387ca09b6dfc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab34299ecd78860fc88b54e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.667480;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e76494c003e3b056765c8480.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a3225de1cf017f74ddfe90b7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_00b24db638e31314be3b2a3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:3.667480;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;}
.m14{transform:matrix(0.191216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191216,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.221155,0.000000,-0.073711,0.238886,0,0);-ms-transform:matrix(0.221155,0.000000,-0.073711,0.238886,0,0);-webkit-transform:matrix(0.221155,0.000000,-0.073711,0.238886,0,0);}
.m23{transform:matrix(0.229300,0.000000,-0.076426,0.238032,0,0);-ms-transform:matrix(0.229300,0.000000,-0.076426,0.238032,0,0);-webkit-transform:matrix(0.229300,0.000000,-0.076426,0.238032,0,0);}
.m2a{transform:matrix(0.229300,0.000001,-0.076426,0.238032,0,0);-ms-transform:matrix(0.229300,0.000001,-0.076426,0.238032,0,0);-webkit-transform:matrix(0.229300,0.000001,-0.076426,0.238032,0,0);}
.m25{transform:matrix(0.230165,0.000000,-0.076714,0.237939,0,0);-ms-transform:matrix(0.230165,0.000000,-0.076714,0.237939,0,0);-webkit-transform:matrix(0.230165,0.000000,-0.076714,0.237939,0,0);}
.m29{transform:matrix(0.230166,0.000001,-0.076714,0.237939,0,0);-ms-transform:matrix(0.230166,0.000001,-0.076714,0.237939,0,0);-webkit-transform:matrix(0.230166,0.000001,-0.076714,0.237939,0,0);}
.m5{transform:matrix(0.236609,0.000000,-0.078862,0.237236,0,0);-ms-transform:matrix(0.236609,0.000000,-0.078862,0.237236,0,0);-webkit-transform:matrix(0.236609,0.000000,-0.078862,0.237236,0,0);}
.ma{transform:matrix(0.236728,0.000000,-0.078901,0.237223,0,0);-ms-transform:matrix(0.236728,0.000000,-0.078901,0.237223,0,0);-webkit-transform:matrix(0.236728,0.000000,-0.078901,0.237223,0,0);}
.m1d{transform:matrix(0.237138,0.000000,-0.079038,0.237177,0,0);-ms-transform:matrix(0.237138,0.000000,-0.079038,0.237177,0,0);-webkit-transform:matrix(0.237138,0.000000,-0.079038,0.237177,0,0);}
.md{transform:matrix(0.237939,0.000000,-0.079305,0.237088,0,0);-ms-transform:matrix(0.237939,0.000000,-0.079305,0.237088,0,0);-webkit-transform:matrix(0.237939,0.000000,-0.079305,0.237088,0,0);}
.m27{transform:matrix(0.238002,0.000000,-0.079326,0.237081,0,0);-ms-transform:matrix(0.238002,0.000000,-0.079326,0.237081,0,0);-webkit-transform:matrix(0.238002,0.000000,-0.079326,0.237081,0,0);}
.m21{transform:matrix(0.238167,0.000000,-0.079381,0.237063,0,0);-ms-transform:matrix(0.238167,0.000000,-0.079381,0.237063,0,0);-webkit-transform:matrix(0.238167,0.000000,-0.079381,0.237063,0,0);}
.m13{transform:matrix(0.238249,0.000000,-0.079408,0.237053,0,0);-ms-transform:matrix(0.238249,0.000000,-0.079408,0.237053,0,0);-webkit-transform:matrix(0.238249,0.000000,-0.079408,0.237053,0,0);}
.mf{transform:matrix(0.238300,0.000000,-0.079425,0.237048,0,0);-ms-transform:matrix(0.238300,0.000000,-0.079425,0.237048,0,0);-webkit-transform:matrix(0.238300,0.000000,-0.079425,0.237048,0,0);}
.m7{transform:matrix(0.238964,0.000000,-0.079647,0.236973,0,0);-ms-transform:matrix(0.238964,0.000000,-0.079647,0.236973,0,0);-webkit-transform:matrix(0.238964,0.000000,-0.079647,0.236973,0,0);}
.m1f{transform:matrix(0.239085,0.000000,-0.079687,0.236960,0,0);-ms-transform:matrix(0.239085,0.000000,-0.079687,0.236960,0,0);-webkit-transform:matrix(0.239085,0.000000,-0.079687,0.236960,0,0);}
.m22{transform:matrix(0.240829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240829,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.240914,0.000000,-0.080296,0.236754,0,0);-ms-transform:matrix(0.240914,0.000000,-0.080296,0.236754,0,0);-webkit-transform:matrix(0.240914,0.000000,-0.080296,0.236754,0,0);}
.m1b{transform:matrix(0.241153,0.000000,-0.080376,0.236727,0,0);-ms-transform:matrix(0.241153,0.000000,-0.080376,0.236727,0,0);-webkit-transform:matrix(0.241153,0.000000,-0.080376,0.236727,0,0);}
.m3{transform:matrix(0.241746,0.000000,-0.080574,0.236660,0,0);-ms-transform:matrix(0.241746,0.000000,-0.080574,0.236660,0,0);-webkit-transform:matrix(0.241746,0.000000,-0.080574,0.236660,0,0);}
.m24{transform:matrix(0.241832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241832,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.241832,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.241832,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241832,0.000001,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245195,0.000000,-0.081723,0.236265,0,0);-ms-transform:matrix(0.245195,0.000000,-0.081723,0.236265,0,0);-webkit-transform:matrix(0.245195,0.000000,-0.081723,0.236265,0,0);}
.m11{transform:matrix(0.245405,0.000000,-0.081794,0.236241,0,0);-ms-transform:matrix(0.245405,0.000000,-0.081794,0.236241,0,0);-webkit-transform:matrix(0.245405,0.000000,-0.081794,0.236241,0,0);}
.m4{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,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);}
.mc{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252242,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254674,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.259449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259449,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.263533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263533,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);}
.v1c{vertical-align:-90.180000px;}
.v3f{vertical-align:-69.120000px;}
.v1d{vertical-align:-59.940000px;}
.v24{vertical-align:-56.581281px;}
.v28{vertical-align:-46.444657px;}
.v34{vertical-align:-35.400000px;}
.v33{vertical-align:-30.240000px;}
.v22{vertical-align:-28.794225px;}
.v2c{vertical-align:-27.360000px;}
.v1e{vertical-align:-25.920000px;}
.v10{vertical-align:-23.760000px;}
.v5{vertical-align:-22.320000px;}
.v3{vertical-align:-20.880000px;}
.v13{vertical-align:-19.440000px;}
.v16{vertical-align:-18.000000px;}
.v30{vertical-align:-15.840000px;}
.vf{vertical-align:-14.400000px;}
.v4{vertical-align:-12.240000px;}
.vb{vertical-align:-10.080000px;}
.ve{vertical-align:-8.640000px;}
.v23{vertical-align:-5.570473px;}
.vc{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.v17{vertical-align:7.200000px;}
.v2f{vertical-align:10.080000px;}
.v1f{vertical-align:11.520000px;}
.v7{vertical-align:12.960000px;}
.v1a{vertical-align:14.400000px;}
.v36{vertical-align:15.840000px;}
.v12{vertical-align:17.280000px;}
.v2{vertical-align:20.880000px;}
.v9{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v21{vertical-align:25.200000px;}
.v2e{vertical-align:27.360000px;}
.v15{vertical-align:28.800000px;}
.v8{vertical-align:30.240000px;}
.v3d{vertical-align:31.680000px;}
.v25{vertical-align:33.120000px;}
.v6{vertical-align:35.280000px;}
.v1b{vertical-align:37.440000px;}
.v11{vertical-align:38.880000px;}
.v31{vertical-align:40.320000px;}
.v18{vertical-align:41.427682px;}
.v39{vertical-align:42.480000px;}
.vd{vertical-align:47.520000px;}
.v29{vertical-align:48.960000px;}
.v19{vertical-align:51.120000px;}
.v32{vertical-align:52.560000px;}
.v35{vertical-align:56.880000px;}
.v2d{vertical-align:61.200000px;}
.v37{vertical-align:64.080000px;}
.v20{vertical-align:65.520000px;}
.v27{vertical-align:70.560000px;}
.v3e{vertical-align:72.000000px;}
.v26{vertical-align:74.160000px;}
.v3b{vertical-align:75.600000px;}
.v3a{vertical-align:77.040000px;}
.v38{vertical-align:78.480000px;}
.v14{vertical-align:83.520000px;}
.v2b{vertical-align:86.400000px;}
.v2a{vertical-align:97.920000px;}
.v3c{vertical-align:120.240000px;}
.lsbd{letter-spacing:-1.093548px;}
.ls49{letter-spacing:-1.090555px;}
.ls80{letter-spacing:-0.540000px;}
.ls48{letter-spacing:-0.460200px;}
.ls95{letter-spacing:-0.404675px;}
.lsc{letter-spacing:-0.360000px;}
.lsd4{letter-spacing:-0.223800px;}
.lscf{letter-spacing:-0.214906px;}
.ls100{letter-spacing:-0.208800px;}
.lsd{letter-spacing:-0.208200px;}
.ls44{letter-spacing:-0.206400px;}
.ls84{letter-spacing:-0.201600px;}
.ls91{letter-spacing:-0.180000px;}
.lsd3{letter-spacing:-0.172200px;}
.lsd5{letter-spacing:-0.165600px;}
.ls7c{letter-spacing:-0.164400px;}
.lsbb{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.129600px;}
.lsff{letter-spacing:-0.121200px;}
.ls81{letter-spacing:-0.116400px;}
.ls4c{letter-spacing:-0.106800px;}
.lsbc{letter-spacing:-0.100800px;}
.ls7b{letter-spacing:-0.076200px;}
.ls89{letter-spacing:-0.053280px;}
.ls113{letter-spacing:-0.008640px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.ls7e{letter-spacing:0.053280px;}
.lse1{letter-spacing:0.063360px;}
.lsb1{letter-spacing:0.072000px;}
.lsbe{letter-spacing:0.080769px;}
.ls4a{letter-spacing:0.080970px;}
.lsca{letter-spacing:0.097920px;}
.ls82{letter-spacing:0.106800px;}
.ls4b{letter-spacing:0.109200px;}
.ls12{letter-spacing:0.109440px;}
.ls2f{letter-spacing:0.119520px;}
.ls10a{letter-spacing:0.132600px;}
.ls83{letter-spacing:0.135600px;}
.ls75{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.154800px;}
.ls9c{letter-spacing:0.156000px;}
.ls52{letter-spacing:0.165600px;}
.ls5d{letter-spacing:0.172800px;}
.lse7{letter-spacing:0.174240px;}
.ls46{letter-spacing:0.175800px;}
.ls2{letter-spacing:0.180000px;}
.ls66{letter-spacing:0.205920px;}
.ls92{letter-spacing:0.229200px;}
.ls2e{letter-spacing:0.237600px;}
.lsc1{letter-spacing:0.257760px;}
.ls4e{letter-spacing:0.258000px;}
.ls4d{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.lscb{letter-spacing:0.264000px;}
.ls2b{letter-spacing:0.288000px;}
.ls106{letter-spacing:0.298800px;}
.ls107{letter-spacing:0.300960px;}
.lsf{letter-spacing:0.321000px;}
.ls47{letter-spacing:0.323400px;}
.lsc2{letter-spacing:0.324000px;}
.ls77{letter-spacing:0.326160px;}
.ls45{letter-spacing:0.331800px;}
.ls0{letter-spacing:0.360000px;}
.lsf2{letter-spacing:0.365760px;}
.lse{letter-spacing:0.371400px;}
.ls63{letter-spacing:0.372960px;}
.ls8{letter-spacing:0.383040px;}
.ls9f{letter-spacing:0.390960px;}
.ls97{letter-spacing:0.396000px;}
.ls25{letter-spacing:0.399600px;}
.lsf6{letter-spacing:0.483840px;}
.ls19{letter-spacing:0.494400px;}
.ls9b{letter-spacing:0.509760px;}
.ls1{letter-spacing:0.511800px;}
.ls1c{letter-spacing:0.518400px;}
.lsa2{letter-spacing:0.527760px;}
.ls5{letter-spacing:0.532800px;}
.lse6{letter-spacing:0.543600px;}
.lsee{letter-spacing:0.555840px;}
.lscd{letter-spacing:0.635760px;}
.ls10b{letter-spacing:0.652800px;}
.lsfa{letter-spacing:0.665760px;}
.ls14{letter-spacing:0.668160px;}
.lsb6{letter-spacing:0.669600px;}
.lsa1{letter-spacing:0.684000px;}
.ls43{letter-spacing:0.709200px;}
.ls72{letter-spacing:0.719280px;}
.ls73{letter-spacing:0.828000px;}
.ls22{letter-spacing:0.900000px;}
.lsd6{letter-spacing:1.040400px;}
.ls41{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.098720px;}
.ls6a{letter-spacing:1.108800px;}
.lsc3{letter-spacing:1.119600px;}
.ls35{letter-spacing:1.162800px;}
.lsaa{letter-spacing:1.303200px;}
.lse2{letter-spacing:1.363680px;}
.lse8{letter-spacing:1.368000px;}
.ls21{letter-spacing:1.620000px;}
.lsdc{letter-spacing:1.677600px;}
.lsdf{letter-spacing:1.800000px;}
.ls69{letter-spacing:1.828800px;}
.ls3c{letter-spacing:1.882800px;}
.ls70{letter-spacing:1.902240px;}
.lsd8{letter-spacing:1.908000px;}
.ls9d{letter-spacing:1.949760px;}
.ls65{letter-spacing:2.023200px;}
.lse3{letter-spacing:2.028000px;}
.lsd7{letter-spacing:2.052000px;}
.lsf4{letter-spacing:2.088000px;}
.ls61{letter-spacing:2.113200px;}
.lsb4{letter-spacing:2.155680px;}
.ls36{letter-spacing:2.207520px;}
.lsb7{letter-spacing:2.332800px;}
.ls31{letter-spacing:2.340000px;}
.ls24{letter-spacing:2.366640px;}
.lsa6{letter-spacing:2.460960px;}
.lsa8{letter-spacing:2.485440px;}
.ls64{letter-spacing:2.520000px;}
.ls6f{letter-spacing:2.622240px;}
.ls1f{letter-spacing:2.640960px;}
.ls98{letter-spacing:2.669760px;}
.ls15{letter-spacing:2.829600px;}
.ls6d{letter-spacing:2.833200px;}
.lsc0{letter-spacing:2.875680px;}
.lsce{letter-spacing:3.028320px;}
.lsa9{letter-spacing:3.060000px;}
.ls13{letter-spacing:3.180960px;}
.ls57{letter-spacing:3.240000px;}
.ls5c{letter-spacing:3.342240px;}
.ls9a{letter-spacing:3.479040px;}
.lsef{letter-spacing:3.545280px;}
.ls71{letter-spacing:3.549600px;}
.ls39{letter-spacing:3.663360px;}
.ls53{letter-spacing:3.780000px;}
.ls108{letter-spacing:3.855360px;}
.ls105{letter-spacing:3.879360px;}
.ls51{letter-spacing:4.062240px;}
.ls6b{letter-spacing:4.203360px;}
.lsed{letter-spacing:4.265280px;}
.ls74{letter-spacing:4.318560px;}
.ls6c{letter-spacing:4.347360px;}
.ls78{letter-spacing:4.462560px;}
.ls54{letter-spacing:4.599360px;}
.ls68{letter-spacing:4.782240px;}
.lsfd{letter-spacing:4.894560px;}
.lsf0{letter-spacing:7.200000px;}
.ls10e{letter-spacing:7.866720px;}
.ls3b{letter-spacing:8.157600px;}
.lsa5{letter-spacing:9.573600px;}
.ls102{letter-spacing:9.660960px;}
.lsb5{letter-spacing:10.069200px;}
.ls5a{letter-spacing:10.293600px;}
.ls58{letter-spacing:10.317600px;}
.ls1b{letter-spacing:10.380960px;}
.ls3a{letter-spacing:10.479600px;}
.lscc{letter-spacing:10.497600px;}
.lsdb{letter-spacing:11.443680px;}
.ls10f{letter-spacing:11.466720px;}
.ls42{letter-spacing:11.489760px;}
.lsb2{letter-spacing:11.757600px;}
.lsae{letter-spacing:11.937600px;}
.lsb0{letter-spacing:12.117600px;}
.ls1a{letter-spacing:12.959280px;}
.ls6{letter-spacing:13.319280px;}
.lse4{letter-spacing:13.491360px;}
.ls103{letter-spacing:13.655280px;}
.ls18{letter-spacing:13.679280px;}
.ls101{letter-spacing:13.823280px;}
.lsda{letter-spacing:14.039280px;}
.lsdd{letter-spacing:14.679360px;}
.ls112{letter-spacing:15.066720px;}
.ls111{letter-spacing:15.268320px;}
.lsa4{letter-spacing:16.140960px;}
.ls6e{letter-spacing:16.200000px;}
.ls93{letter-spacing:16.426792px;}
.ls114{letter-spacing:16.506720px;}
.ls17{letter-spacing:16.509600px;}
.ls27{letter-spacing:16.559280px;}
.ls3e{letter-spacing:16.703280px;}
.lsd9{letter-spacing:16.740000px;}
.ls1e{letter-spacing:16.881120px;}
.lse5{letter-spacing:16.959600px;}
.ls38{letter-spacing:17.163360px;}
.lsf9{letter-spacing:17.192160px;}
.ls94{letter-spacing:17.266118px;}
.ls40{letter-spacing:17.279280px;}
.lsec{letter-spacing:17.559360px;}
.lsbf{letter-spacing:17.742240px;}
.lsb9{letter-spacing:17.749588px;}
.lsf5{letter-spacing:17.912160px;}
.lsb3{letter-spacing:18.180000px;}
.ls8a{letter-spacing:18.528653px;}
.ls9{letter-spacing:18.900000px;}
.ls109{letter-spacing:19.020000px;}
.ls62{letter-spacing:19.182240px;}
.ls5e{letter-spacing:19.389600px;}
.ls8b{letter-spacing:19.419454px;}
.ls60{letter-spacing:19.533600px;}
.ls110{letter-spacing:19.596000px;}
.lsb8{letter-spacing:19.693440px;}
.ls26{letter-spacing:19.740960px;}
.ls30{letter-spacing:20.043360px;}
.ls1d{letter-spacing:20.109600px;}
.ls23{letter-spacing:20.340000px;}
.ls86{letter-spacing:20.466951px;}
.ls99{letter-spacing:20.622240px;}
.ls3d{letter-spacing:20.763360px;}
.ls104{letter-spacing:20.883360px;}
.ls28{letter-spacing:20.907360px;}
.ls5f{letter-spacing:21.060000px;}
.ls56{letter-spacing:21.159360px;}
.ls3{letter-spacing:21.546720px;}
.ls7{letter-spacing:21.589200px;}
.ls85{letter-spacing:22.779601px;}
.lsde{letter-spacing:23.039280px;}
.lsf1{letter-spacing:23.760000px;}
.lsac{letter-spacing:24.839280px;}
.ls10d{letter-spacing:25.146720px;}
.lsa0{letter-spacing:25.500960px;}
.lsf7{letter-spacing:27.036000px;}
.lsc4{letter-spacing:27.359280px;}
.ls67{letter-spacing:32.040000px;}
.lsa3{letter-spacing:32.580000px;}
.ls5b{letter-spacing:33.635613px;}
.ls59{letter-spacing:33.692405px;}
.ls50{letter-spacing:34.134451px;}
.lse0{letter-spacing:35.279280px;}
.ls8f{letter-spacing:37.790457px;}
.lsc6{letter-spacing:42.479280px;}
.lsc7{letter-spacing:43.199280px;}
.lsa{letter-spacing:46.026720px;}
.lseb{letter-spacing:48.738240px;}
.lsc8{letter-spacing:52.349760px;}
.ls9e{letter-spacing:53.460000px;}
.lsc5{letter-spacing:56.159280px;}
.lsd1{letter-spacing:64.667109px;}
.lsfb{letter-spacing:68.052000px;}
.lsc9{letter-spacing:68.909760px;}
.lsea{letter-spacing:78.129265px;}
.ls87{letter-spacing:91.118404px;}
.lse9{letter-spacing:92.120386px;}
.ls8c{letter-spacing:94.543640px;}
.ls8d{letter-spacing:107.846263px;}
.ls79{letter-spacing:111.342705px;}
.lsfc{letter-spacing:118.008000px;}
.ls10c{letter-spacing:130.368000px;}
.lsba{letter-spacing:135.405649px;}
.lsf3{letter-spacing:137.424000px;}
.ls8e{letter-spacing:139.915086px;}
.ls88{letter-spacing:140.146581px;}
.lsa7{letter-spacing:146.252160px;}
.ls7a{letter-spacing:151.472003px;}
.ls7f{letter-spacing:153.253877px;}
.ls7d{letter-spacing:153.512639px;}
.lsd0{letter-spacing:156.133367px;}
.lsf8{letter-spacing:159.228000px;}
.lsab{letter-spacing:167.400000px;}
.ls3f{letter-spacing:169.536000px;}
.ls34{letter-spacing:171.363360px;}
.ls2d{letter-spacing:172.083360px;}
.ls33{letter-spacing:172.143360px;}
.ls2a{letter-spacing:172.863360px;}
.ls90{letter-spacing:173.875119px;}
.ls96{letter-spacing:175.838620px;}
.lsd2{letter-spacing:188.191168px;}
.ls4f{letter-spacing:200.043360px;}
.ls55{letter-spacing:201.060000px;}
.ls37{letter-spacing:203.787360px;}
.lsfe{letter-spacing:205.848000px;}
.ls2c{letter-spacing:210.123360px;}
.lsaf{letter-spacing:221.675760px;}
.ls32{letter-spacing:283.539360px;}
.ls29{letter-spacing:284.259360px;}
.lsad{letter-spacing:456.757920px;}
.ls76{letter-spacing:591.909600px;}
.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;}
}
.ws41{word-spacing:-30.426480px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.199800px;}
.ws56{word-spacing:-15.046800px;}
.ws21{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws28{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.479800px;}
.ws7{word-spacing:-13.518600px;}
.ws11{word-spacing:-13.479000px;}
.ws13{word-spacing:-13.470600px;}
.ws8{word-spacing:-13.468200px;}
.ws1a{word-spacing:-13.405200px;}
.ws12{word-spacing:-13.323000px;}
.wsa{word-spacing:-13.302000px;}
.ws58{word-spacing:-13.279800px;}
.ws9{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.ws3c{word-spacing:-13.046400px;}
.ws4f{word-spacing:-13.026000px;}
.wsb{word-spacing:-13.017600px;}
.ws22{word-spacing:-12.982800px;}
.ws46{word-spacing:-12.975000px;}
.ws47{word-spacing:-12.923400px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws5d{word-spacing:-9.711360px;}
.ws20{word-spacing:-9.445200px;}
.ws17{word-spacing:-9.296400px;}
.wsc{word-spacing:-9.187200px;}
.ws18{word-spacing:-9.080400px;}
.ws23{word-spacing:-9.070800px;}
.ws4a{word-spacing:-9.021600px;}
.ws32{word-spacing:-9.007200px;}
.ws24{word-spacing:-8.985600px;}
.ws50{word-spacing:-8.978400px;}
.ws57{word-spacing:-8.100000px;}
.ws1b{word-spacing:-7.920000px;}
.ws39{word-spacing:-7.776000px;}
.ws44{word-spacing:-7.560000px;}
.wsf{word-spacing:0.000000px;}
.ws40{word-spacing:5.040254px;}
.ws2f{word-spacing:7.956103px;}
.ws37{word-spacing:8.418688px;}
.ws2c{word-spacing:8.895452px;}
.ws31{word-spacing:8.955823px;}
.ws27{word-spacing:10.110680px;}
.ws45{word-spacing:12.420000px;}
.ws3f{word-spacing:12.537914px;}
.ws55{word-spacing:12.780000px;}
.ws59{word-spacing:13.140000px;}
.ws52{word-spacing:18.175613px;}
.ws3d{word-spacing:18.234226px;}
.ws15{word-spacing:18.279519px;}
.ws3e{word-spacing:18.505479px;}
.ws16{word-spacing:18.551446px;}
.ws53{word-spacing:26.567040px;}
.ws54{word-spacing:26.591040px;}
.ws33{word-spacing:38.619686px;}
.ws25{word-spacing:45.088495px;}
.ws29{word-spacing:46.313233px;}
.ws4c{word-spacing:46.764000px;}
.ws5b{word-spacing:50.129760px;}
.wsd{word-spacing:50.153760px;}
.ws5a{word-spacing:50.297760px;}
.wse{word-spacing:50.873760px;}
.ws5c{word-spacing:51.053760px;}
.ws3b{word-spacing:53.460000px;}
.ws3a{word-spacing:56.340000px;}
.ws2b{word-spacing:61.643416px;}
.ws4d{word-spacing:64.044000px;}
.ws26{word-spacing:68.973482px;}
.ws30{word-spacing:71.577779px;}
.ws38{word-spacing:73.455639px;}
.ws34{word-spacing:78.384000px;}
.ws35{word-spacing:78.408000px;}
.ws36{word-spacing:79.322590px;}
.ws2a{word-spacing:81.407312px;}
.ws4b{word-spacing:82.611360px;}
.ws49{word-spacing:86.362560px;}
.ws48{word-spacing:87.082560px;}
.ws2d{word-spacing:102.880347px;}
.ws1f{word-spacing:103.090800px;}
.ws1e{word-spacing:104.554800px;}
.ws51{word-spacing:118.008000px;}
.ws2e{word-spacing:125.482380px;}
.ws1c{word-spacing:138.370800px;}
.ws43{word-spacing:163.841920px;}
.ws42{word-spacing:175.436913px;}
.ws1d{word-spacing:196.174800px;}
.ws4e{word-spacing:250.140000px;}
._4b{margin-left:-206.490000px;}
._45{margin-left:-203.456160px;}
._51{margin-left:-192.325200px;}
._2b{margin-left:-190.825680px;}
._4e{margin-left:-176.529120px;}
._4d{margin-left:-169.144080px;}
._3b{margin-left:-146.984400px;}
._3e{margin-left:-136.821600px;}
._49{margin-left:-133.190400px;}
._4c{margin-left:-124.745040px;}
._3f{margin-left:-120.273600px;}
._3a{margin-left:-108.024000px;}
._43{margin-left:-98.285040px;}
._39{margin-left:-71.304000px;}
._4f{margin-left:-54.350880px;}
._44{margin-left:-45.948240px;}
._42{margin-left:-38.674080px;}
._22{margin-left:-30.299603px;}
._2d{margin-left:-26.136000px;}
._29{margin-left:-24.780480px;}
._2c{margin-left:-22.410720px;}
._27{margin-left:-21.204720px;}
._24{margin-left:-18.714240px;}
._26{margin-left:-17.685840px;}
._28{margin-left:-16.188480px;}
._2a{margin-left:-12.841200px;}
._36{margin-left:-7.776000px;}
._d{margin-left:-6.359520px;}
._25{margin-left:-4.999440px;}
._12{margin-left:-3.947040px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._13{width:2.730000px;}
._10{width:3.843600px;}
._11{width:5.497920px;}
._e{width:6.798960px;}
._f{width:7.891680px;}
._3{width:9.540000px;}
._1b{width:10.666320px;}
._1{width:12.420000px;}
._14{width:13.784400px;}
._23{width:15.058560px;}
._15{width:16.559280px;}
._16{width:17.798160px;}
._1e{width:18.824400px;}
._18{width:20.019600px;}
._1c{width:21.453840px;}
._5c{width:22.528080px;}
._5e{width:24.074640px;}
._1a{width:25.158960px;}
._17{width:26.593200px;}
._20{width:28.266480px;}
._1f{width:29.461680px;}
._1d{width:31.134960px;}
._19{width:32.808240px;}
._57{width:34.117920px;}
._56{width:35.138880px;}
._61{width:38.389680px;}
._5f{width:40.234080px;}
._59{width:41.951520px;}
._62{width:43.030080px;}
._5d{width:48.345840px;}
._37{width:53.094395px;}
._5a{width:54.328320px;}
._40{width:55.847968px;}
._60{width:61.254000px;}
._53{width:63.946800px;}
._21{width:66.214080px;}
._54{width:68.783760px;}
._4a{width:75.657600px;}
._50{width:79.686480px;}
._48{width:82.905600px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._46{width:110.257200px;}
._47{width:111.369360px;}
._64{width:112.647600px;}
._2f{width:115.344285px;}
._32{width:119.165489px;}
._2e{width:125.952494px;}
._30{width:127.348475px;}
._31{width:129.949198px;}
._33{width:132.627102px;}
._34{width:148.166794px;}
._35{width:151.749123px;}
._63{width:156.378720px;}
._2{width:165.060000px;}
._41{width:167.587680px;}
._5{width:183.960000px;}
._3d{width:201.060000px;}
._3c{width:202.173600px;}
._55{width:211.789440px;}
._a{width:229.860000px;}
._38{width:238.677185px;}
._7{width:296.820000px;}
._52{width:418.434960px;}
._5b{width:1412.220000px;}
._58{width:1421.580000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs20{font-size:1.812424px;}
.fs1b{font-size:1.852044px;}
.fs16{font-size:1.855171px;}
.fs10{font-size:1.861366px;}
.fs24{font-size:1.861655px;}
.fs0{font-size:2.880000px;}
.fs1c{font-size:30.060565px;}
.fs39{font-size:30.063094px;}
.fs12{font-size:30.068766px;}
.fs17{font-size:30.111321px;}
.fs32{font-size:30.139216px;}
.fsb{font-size:30.214081px;}
.fs2c{font-size:30.504074px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs42{font-size:40.570565px;}
.fs21{font-size:41.268080px;}
.fs3a{font-size:41.372374px;}
.fs1d{font-size:41.457714px;}
.fs13{font-size:41.523280px;}
.fs18{font-size:41.527714px;}
.fs36{font-size:41.579122px;}
.fs29{font-size:41.654988px;}
.fsc{font-size:41.758459px;}
.fs5{font-size:41.760000px;}
.fs25{font-size:41.959679px;}
.fs2d{font-size:42.069375px;}
.fs9{font-size:42.329869px;}
.fs30{font-size:42.446054px;}
.fs3c{font-size:43.626823px;}
.fs1f{font-size:43.722946px;}
.fs14{font-size:43.759790px;}
.fs15{font-size:43.759795px;}
.fs1a{font-size:43.789325px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs41{font-size:70.078954px;}
.fs22{font-size:71.524479px;}
.fs3b{font-size:71.577947px;}
.fs1e{font-size:71.658299px;}
.fs19{font-size:71.779291px;}
.fs11{font-size:71.876464px;}
.fs2a{font-size:71.937466px;}
.fs2{font-size:72.000000px;}
.fs2e{font-size:72.715535px;}
.fs26{font-size:72.748718px;}
.fs3d{font-size:75.478348px;}
.fs40{font-size:75.512804px;}
.fs37{font-size:75.512894px;}
.fs3f{font-size:75.542271px;}
.fs38{font-size:75.542361px;}
.fs2f{font-size:75.682362px;}
.fs23{font-size:75.690150px;}
.fs33{font-size:75.826730px;}
.fs35{font-size:75.863362px;}
.fs34{font-size:75.896221px;}
.fs2b{font-size:75.962199px;}
.fsd{font-size:75.996287px;}
.fse{font-size:76.080410px;}
.fs27{font-size:76.721875px;}
.fsa{font-size:77.395340px;}
.fs31{font-size:77.585766px;}
.fsf{font-size:77.943117px;}
.fs28{font-size:94.258008px;}
.fs6{font-size:95.760000px;}
.fs3e{font-size:107.369889px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.520000px;}
.y106{bottom:3.714164px;}
.y76{bottom:4.139176px;}
.y157{bottom:4.150513px;}
.y166{bottom:4.681386px;}
.y161{bottom:4.681393px;}
.y17a{bottom:4.681417px;}
.y15b{bottom:4.716299px;}
.y15e{bottom:4.716301px;}
.y15f{bottom:4.716303px;}
.y7a{bottom:4.728006px;}
.y9b{bottom:4.785888px;}
.y7e{bottom:4.865426px;}
.ye9{bottom:5.000818px;}
.y16c{bottom:5.070549px;}
.y16e{bottom:5.070551px;}
.ye2{bottom:5.143786px;}
.yc2{bottom:5.223795px;}
.yb5{bottom:5.232615px;}
.y2{bottom:5.400000px;}
.y1bd{bottom:5.588099px;}
.y46{bottom:5.760000px;}
.yee{bottom:5.921966px;}
.yf0{bottom:5.921967px;}
.y10{bottom:7.020000px;}
.y15c{bottom:7.446828px;}
.y7b{bottom:7.465311px;}
.ybd{bottom:7.640302px;}
.yb0{bottom:7.653203px;}
.y171{bottom:7.748717px;}
.yc1{bottom:8.244415px;}
.yb4{bottom:8.258335px;}
.y108{bottom:8.365974px;}
.y19{bottom:8.820000px;}
.y77{bottom:8.874798px;}
.y158{bottom:8.899116px;}
.yd5{bottom:9.180823px;}
.y11f{bottom:9.180859px;}
.yed{bottom:9.255289px;}
.y167{bottom:9.290778px;}
.y162{bottom:9.290798px;}
.y17b{bottom:9.290859px;}
.y42{bottom:10.080000px;}
.y1bc{bottom:10.119761px;}
.y1be{bottom:10.119780px;}
.yd7{bottom:10.258926px;}
.y121{bottom:10.258942px;}
.yd8{bottom:10.258948px;}
.yd6{bottom:10.258954px;}
.y122{bottom:10.258982px;}
.y120{bottom:10.258994px;}
.yf1{bottom:10.567341px;}
.yef{bottom:10.567353px;}
.yf3{bottom:10.567357px;}
.yf2{bottom:10.567366px;}
.y34{bottom:10.620000px;}
.y15d{bottom:12.056709px;}
.y7c{bottom:12.086637px;}
.y9a{bottom:14.071605px;}
.y8{bottom:14.580000px;}
.y9d{bottom:15.142817px;}
.y98{bottom:15.142826px;}
.yd{bottom:15.300000px;}
.yd4{bottom:16.379382px;}
.y11e{bottom:16.379421px;}
.y100{bottom:16.515221px;}
.ybc{bottom:16.914673px;}
.yaf{bottom:16.943233px;}
.yc0{bottom:17.981107px;}
.yb3{bottom:18.011467px;}
.ye8{bottom:20.109836px;}
.y176{bottom:20.603151px;}
.y97{bottom:21.285391px;}
.y170{bottom:22.424189px;}
.y112{bottom:22.537379px;}
.ye1{bottom:22.896583px;}
.ye5{bottom:23.968495px;}
.ye7{bottom:23.968511px;}
.ye4{bottom:23.968516px;}
.yba{bottom:24.128370px;}
.yad{bottom:24.169110px;}
.ybf{bottom:24.590707px;}
.yb2{bottom:24.632228px;}
.y45{bottom:25.560000px;}
.y99{bottom:26.286440px;}
.y174{bottom:27.030990px;}
.y175{bottom:27.031006px;}
.y172{bottom:27.031026px;}
.y110{bottom:28.848805px;}
.y9c{bottom:28.964375px;}
.ybb{bottom:29.104376px;}
.yae{bottom:29.153517px;}
.y105{bottom:29.461812px;}
.ydf{bottom:30.218966px;}
.y33{bottom:30.420000px;}
.ye0{bottom:30.934542px;}
.ybe{bottom:31.804347px;}
.yb1{bottom:31.858047px;}
.y107{bottom:34.148544px;}
.y40{bottom:35.460000px;}
.ye3{bottom:35.612732px;}
.ye6{bottom:36.720299px;}
.y10f{bottom:36.745955px;}
.y11{bottom:36.900000px;}
.y7{bottom:38.880000px;}
.y41{bottom:41.040000px;}
.yc{bottom:44.100000px;}
.y16d{bottom:46.099489px;}
.y10e{bottom:46.410185px;}
.y173{bottom:48.098611px;}
.y16f{bottom:48.812532px;}
.y32{bottom:50.265000px;}
.yf{bottom:52.380000px;}
.y104{bottom:55.100198px;}
.y3f{bottom:55.845000px;}
.y10d{bottom:56.074414px;}
.y6{bottom:63.180000px;}
.y10c{bottom:65.774615px;}
.y102{bottom:67.288398px;}
.y31{bottom:70.245000px;}
.yff{bottom:70.678672px;}
.yb{bottom:73.080000px;}
.y10b{bottom:75.437346px;}
.y3d{bottom:77.805000px;}
.y111{bottom:78.755678px;}
.yfe{bottom:80.774555px;}
.y2a3{bottom:82.080000px;}
.y3e{bottom:83.385000px;}
.y103{bottom:83.515851px;}
.y5{bottom:84.450000px;}
.y10a{bottom:85.101576px;}
.y1e9{bottom:86.580000px;}
.y30{bottom:90.045000px;}
.ya{bottom:92.370000px;}
.y16a{bottom:92.880000px;}
.y109{bottom:94.008914px;}
.y101{bottom:97.037979px;}
.y3c{bottom:98.145000px;}
.y51{bottom:98.280000px;}
.y1ac{bottom:99.180000px;}
.y2a2{bottom:101.880000px;}
.y21b{bottom:104.580000px;}
.y1e8{bottom:106.380000px;}
.y4{bottom:106.950000px;}
.y2f{bottom:109.845000px;}
.y9{bottom:110.190000px;}
.y278{bottom:112.140000px;}
.yfd{bottom:112.440000px;}
.y169{bottom:112.680000px;}
.y3b{bottom:115.065000px;}
.y93{bottom:115.560000px;}
.y279{bottom:117.720000px;}
.y50{bottom:118.080000px;}
.y1ab{bottom:121.500000px;}
.y2a1{bottom:121.860000px;}
.y3a{bottom:122.625000px;}
.y1e7{bottom:126.000000px;}
.y3{bottom:126.750000px;}
.y2e{bottom:129.645000px;}
.y20b{bottom:131.940000px;}
.y277{bottom:132.480000px;}
.y168{bottom:132.840000px;}
.y1e6{bottom:133.560000px;}
.y21a{bottom:134.100000px;}
.y113{bottom:134.820000px;}
.y92{bottom:135.720000px;}
.y4f{bottom:137.880000px;}
.y2a0{bottom:141.660000px;}
.y1aa{bottom:142.200000px;}
.y38{bottom:148.005000px;}
.y2d{bottom:149.445000px;}
.y165{bottom:149.640000px;}
.y90{bottom:152.850000px;}
.y39{bottom:153.585000px;}
.y218{bottom:156.090000px;}
.y4e{bottom:157.710000px;}
.y164{bottom:158.610000px;}
.y20a{bottom:158.970000px;}
.y8e{bottom:160.410000px;}
.y1e5{bottom:161.310000px;}
.y29f{bottom:161.490000px;}
.y219{bottom:161.670000px;}
.y1a9{bottom:166.890000px;}
.y91{bottom:168.150000px;}
.y37{bottom:168.345000px;}
.y2c{bottom:169.425000px;}
.y24f{bottom:173.730000px;}
.y276{bottom:174.450000px;}
.y8f{bottom:175.350000px;}
.y209{bottom:176.070000px;}
.y217{bottom:176.610000px;}
.y4d{bottom:177.690000px;}
.y1e4{bottom:181.290000px;}
.y208{bottom:183.630000px;}
.y163{bottom:184.890000px;}
.y36{bottom:188.685000px;}
.y2b{bottom:189.225000px;}
.y1a8{bottom:191.550000px;}
.y244{bottom:193.530000px;}
.y8d{bottom:193.890000px;}
.y216{bottom:196.770000px;}
.y4c{bottom:197.490000px;}
.y1e3{bottom:201.090000px;}
.y15a{bottom:201.539980px;}
.y160{bottom:204.539980px;}
.y156{bottom:204.540000px;}
.y207{bottom:208.650000px;}
.y35{bottom:208.845000px;}
.y2a{bottom:209.025000px;}
.y1a7{bottom:211.710000px;}
.y8c{bottom:212.970000px;}
.y243{bottom:213.330000px;}
.y275{bottom:215.490000px;}
.y215{bottom:216.750000px;}
.y4b{bottom:217.290000px;}
.y8a{bottom:220.530000px;}
.y29e{bottom:221.070000px;}
.y1e2{bottom:222.870000px;}
.y274{bottom:223.050000px;}
.yfc{bottom:225.930000px;}
.y8b{bottom:226.470000px;}
.y159{bottom:228.810000px;}
.y29{bottom:228.825000px;}
.y242{bottom:233.310000px;}
.yfb{bottom:233.490000px;}
.y24d{bottom:235.110000px;}
.y214{bottom:236.550000px;}
.y4a{bottom:237.090000px;}
.y155{bottom:237.630000px;}
.y1a5{bottom:239.070000px;}
.y1a6{bottom:239.610000px;}
.y24e{bottom:240.690000px;}
.y29d{bottom:240.870000px;}
.y89{bottom:245.370000px;}
.y1a4{bottom:246.630000px;}
.y273{bottom:246.810000px;}
.y28{bottom:248.625000px;}
.y1e0{bottom:251.490000px;}
.y213{bottom:253.290000px;}
.y241{bottom:253.470000px;}
.y24c{bottom:255.450000px;}
.y154{bottom:256.710000px;}
.y49{bottom:256.890000px;}
.y206{bottom:258.330000px;}
.y1e1{bottom:259.050000px;}
.yfa{bottom:259.590000px;}
.y29c{bottom:260.670000px;}
.y212{bottom:260.850000px;}
.y88{bottom:265.350000px;}
.y272{bottom:266.790000px;}
.y27{bottom:268.605000px;}
.yf7{bottom:269.670000px;}
.yf9{bottom:272.730000px;}
.y240{bottom:273.270000px;}
.y205{bottom:275.790000px;}
.y153{bottom:276.690000px;}
.y48{bottom:276.870000px;}
.yf6{bottom:277.230000px;}
.y1df{bottom:279.030000px;}
.y29b{bottom:280.470000px;}
.y211{bottom:281.550000px;}
.y1a3{bottom:282.810000px;}
.yf8{bottom:282.990000px;}
.y204{bottom:283.350000px;}
.y271{bottom:286.590000px;}
.y26{bottom:288.405000px;}
.y210{bottom:289.110000px;}
.y86{bottom:290.370000px;}
.y24b{bottom:295.950000px;}
.y87{bottom:296.310000px;}
.y47{bottom:296.670000px;}
.y152{bottom:297.030000px;}
.y1dd{bottom:297.750000px;}
.y29a{bottom:300.270000px;}
.y23f{bottom:301.890000px;}
.y1dc{bottom:305.310000px;}
.y270{bottom:306.570000px;}
.y1a2{bottom:306.930000px;}
.y25{bottom:308.235000px;}
.y44{bottom:311.430000px;}
.yf5{bottom:311.610000px;}
.y1de{bottom:312.870000px;}
.y24a{bottom:313.230000px;}
.y20f{bottom:313.770000px;}
.y23e{bottom:316.650000px;}
.y151{bottom:317.010000px;}
.y84{bottom:320.070000px;}
.y299{bottom:320.250000px;}
.y249{bottom:320.790000px;}
.y203{bottom:321.690000px;}
.y85{bottom:326.010000px;}
.y26f{bottom:326.910000px;}
.y1a1{bottom:327.270000px;}
.y24{bottom:328.035000px;}
.yf4{bottom:331.410000px;}
.y1db{bottom:333.210000px;}
.y20e{bottom:333.750000px;}
.y23d{bottom:336.990000px;}
.y150{bottom:339.150000px;}
.y298{bottom:340.050000px;}
.y202{bottom:342.390000px;}
.y83{bottom:344.730000px;}
.y26e{bottom:347.070000px;}
.y248{bottom:347.610000px;}
.y23{bottom:347.835000px;}
.yec{bottom:348.239959px;}
.y1a0{bottom:349.590000px;}
.y1a{bottom:351.930000px;}
.y1da{bottom:355.170000px;}
.yeb{bottom:358.590000px;}
.y23b{bottom:358.770000px;}
.y14f{bottom:359.130000px;}
.y297{bottom:359.850000px;}
.y20d{bottom:360.930000px;}
.y26d{bottom:363.990000px;}
.y23c{bottom:364.350000px;}
.y82{bottom:364.890000px;}
.y201{bottom:367.050000px;}
.y247{bottom:367.590000px;}
.y22{bottom:367.815000px;}
.y19f{bottom:370.110000px;}
.y26c{bottom:371.550000px;}
.y1d9{bottom:376.590000px;}
.y19e{bottom:377.670000px;}
.y14e{bottom:379.110000px;}
.y296{bottom:379.650000px;}
.yde{bottom:380.789959px;}
.y200{bottom:384.330000px;}
.y81{bottom:385.050000px;}
.y246{bottom:386.490000px;}
.y21{bottom:387.615000px;}
.y1ff{bottom:391.890000px;}
.y20c{bottom:392.430000px;}
.y245{bottom:394.050000px;}
.y26b{bottom:394.950000px;}
.y14d{bottom:396.390000px;}
.y1d8{bottom:397.650000px;}
.y23a{bottom:398.910000px;}
.y295{bottom:399.450000px;}
.y14c{bottom:403.995000px;}
.yea{bottom:404.715000px;}
.y80{bottom:405.435000px;}
.y19d{bottom:405.975000px;}
.y20{bottom:407.415000px;}
.y79{bottom:413.190000px;}
.y19c{bottom:413.535000px;}
.y26a{bottom:414.975000px;}
.y239{bottom:415.515000px;}
.y75{bottom:416.264959px;}
.y1fe{bottom:416.775000px;}
.y7f{bottom:418.395000px;}
.y294{bottom:419.295000px;}
.y1d7{bottom:419.475000px;}
.y7d{bottom:420.764959px;}
.y78{bottom:425.235000px;}
.y1f{bottom:427.215000px;}
.y14b{bottom:428.835000px;}
.y269{bottom:435.315000px;}
.y1fd{bottom:436.755000px;}
.y293{bottom:439.275000px;}
.y19b{bottom:442.515000px;}
.y1d6{bottom:442.695000px;}
.ydd{bottom:443.775000px;}
.y1e{bottom:447.015000px;}
.y14a{bottom:447.735000px;}
.y1fc{bottom:453.495000px;}
.y148{bottom:453.855000px;}
.y268{bottom:455.295000px;}
.y74{bottom:457.095000px;}
.y149{bottom:458.355000px;}
.y147{bottom:458.895000px;}
.y292{bottom:459.075000px;}
.y19a{bottom:464.115000px;}
.y73{bottom:464.655000px;}
.ydc{bottom:465.915000px;}
.y146{bottom:466.455000px;}
.y1d{bottom:466.995000px;}
.y199{bottom:471.675000px;}
.y267{bottom:475.095000px;}
.y291{bottom:478.875000px;}
.y1c{bottom:486.795000px;}
.ydb{bottom:487.695000px;}
.y72{bottom:488.235000px;}
.y1d5{bottom:489.135000px;}
.y266{bottom:494.895000px;}
.y290{bottom:498.675000px;}
.y198{bottom:498.855000px;}
.y145{bottom:501.015000px;}
.y1b{bottom:506.595000px;}
.y71{bottom:508.035000px;}
.yda{bottom:509.475000px;}
.y1d4{bottom:512.535000px;}
.y265{bottom:514.695000px;}
.y28f{bottom:518.475000px;}
.y197{bottom:520.995000px;}
.y143{bottom:525.135000px;}
.y196{bottom:526.395000px;}
.yd3{bottom:526.439959px;}
.y70{bottom:527.835000px;}
.y144{bottom:528.555000px;}
.y1d3{bottom:532.515000px;}
.y264{bottom:534.675000px;}
.yd9{bottom:536.835000px;}
.y28e{bottom:538.455000px;}
.y194{bottom:539.895000px;}
.y64{bottom:547.995000px;}
.y142{bottom:548.895000px;}
.y6e{bottom:549.615000px;}
.y195{bottom:550.875000px;}
.y1d2{bottom:552.495000px;}
.y263{bottom:554.475000px;}
.y140{bottom:555.015000px;}
.y6f{bottom:555.195000px;}
.y141{bottom:557.355000px;}
.y28d{bottom:558.255000px;}
.y13f{bottom:560.955000px;}
.yd2{bottom:564.915000px;}
.y63{bottom:567.795000px;}
.y13e{bottom:568.515000px;}
.y6d{bottom:569.955000px;}
.y1d1{bottom:572.835000px;}
.y262{bottom:574.275000px;}
.y28c{bottom:578.055000px;}
.yd1{bottom:582.195000px;}
.y193{bottom:582.735000px;}
.y62{bottom:587.595000px;}
.y192{bottom:588.135000px;}
.yd0{bottom:589.755000px;}
.y6c{bottom:589.935000px;}
.y1d0{bottom:590.115000px;}
.y261{bottom:594.075000px;}
.y1cf{bottom:597.675000px;}
.y28b{bottom:597.855000px;}
.y190{bottom:601.635000px;}
.y13d{bottom:605.775000px;}
.y61{bottom:607.395000px;}
.y6b{bottom:609.735000px;}
.y191{bottom:612.615000px;}
.y13b{bottom:613.335000px;}
.y260{bottom:613.875000px;}
.yce{bottom:614.595000px;}
.y13c{bottom:616.755000px;}
.y28a{bottom:617.655000px;}
.ycf{bottom:618.015000px;}
.y1ce{bottom:625.035000px;}
.y60{bottom:627.375000px;}
.y6a{bottom:629.895000px;}
.y25f{bottom:633.855000px;}
.ycc{bottom:636.375000px;}
.y289{bottom:637.635000px;}
.ycd{bottom:639.795000px;}
.y139{bottom:641.955000px;}
.y18f{bottom:642.495000px;}
.y5f{bottom:647.175000px;}
.y137{bottom:649.545000px;}
.y69{bottom:649.905000px;}
.y1cd{bottom:650.085000px;}
.y13a{bottom:652.965000px;}
.y25e{bottom:653.685000px;}
.y288{bottom:657.465000px;}
.ycb{bottom:658.185000px;}
.y238{bottom:662.325000px;}
.y18e{bottom:663.765000px;}
.y138{bottom:664.845000px;}
.y5e{bottom:668.805000px;}
.y68{bottom:669.705000px;}
.y18d{bottom:671.325000px;}
.y1cc{bottom:672.405000px;}
.y25d{bottom:673.485000px;}
.yc9{bottom:675.645000px;}
.y286{bottom:679.245000px;}
.y1cb{bottom:679.965000px;}
.y237{bottom:682.485000px;}
.yc7{bottom:683.205000px;}
.y1f9{bottom:684.285000px;}
.y287{bottom:684.825000px;}
.y135{bottom:686.445000px;}
.yc8{bottom:686.625000px;}
.y5d{bottom:688.785000px;}
.y67{bottom:689.505000px;}
.y136{bottom:690.945000px;}
.y1fb{bottom:692.925000px;}
.y25c{bottom:693.285000px;}
.y134{bottom:694.005000px;}
.yca{bottom:694.365000px;}
.y229{bottom:698.505000px;}
.y285{bottom:699.405000px;}
.y1fa{bottom:700.485000px;}
.y1ca{bottom:702.465000px;}
.y236{bottom:702.825000px;}
.y1f8{bottom:704.085000px;}
.y18c{bottom:704.985000px;}
.y5c{bottom:708.765000px;}
.y66{bottom:709.485000px;}
.y1c9{bottom:710.025000px;}
.y18b{bottom:712.545000px;}
.y25b{bottom:713.085000px;}
.yc6{bottom:713.805000px;}
.y228{bottom:718.665000px;}
.y284{bottom:719.385000px;}
.y1f7{bottom:724.065000px;}
.y234{bottom:724.785000px;}
.y5b{bottom:729.105000px;}
.y65{bottom:729.285000px;}
.y133{bottom:729.645000px;}
.y235{bottom:730.365000px;}
.y25a{bottom:733.065000px;}
.yc5{bottom:733.785000px;}
.y283{bottom:736.305000px;}
.y1c7{bottom:737.025000px;}
.y226{bottom:740.625000px;}
.y18a{bottom:741.705000px;}
.y1c8{bottom:742.605000px;}
.y282{bottom:743.865000px;}
.y1f6{bottom:744.225000px;}
.y227{bottom:746.205000px;}
.y232{bottom:746.745000px;}
.y5a{bottom:749.085000px;}
.y131{bottom:749.625000px;}
.y233{bottom:752.325000px;}
.y259{bottom:752.865000px;}
.yc4{bottom:753.945000px;}
.y130{bottom:757.185000px;}
.y1c6{bottom:758.445000px;}
.y225{bottom:760.965000px;}
.y189{bottom:761.685000px;}
.y132{bottom:762.765000px;}
.y1f5{bottom:764.025000px;}
.y231{bottom:766.905000px;}
.y281{bottom:767.445000px;}
.y59{bottom:768.885000px;}
.y258{bottom:769.425000px;}
.yc3{bottom:773.925000px;}
.y257{bottom:776.985000px;}
.y1c5{bottom:778.245000px;}
.y187{bottom:779.145000px;}
.y188{bottom:779.325000px;}
.y1f4{bottom:780.585000px;}
.y224{bottom:780.945000px;}
.y12f{bottom:785.265000px;}
.y230{bottom:786.885000px;}
.y58{bottom:788.685000px;}
.y27f{bottom:789.405000px;}
.yb9{bottom:790.664919px;}
.y280{bottom:794.985000px;}
.y1c4{bottom:798.045000px;}
.y256{bottom:800.385000px;}
.y223{bottom:800.925000px;}
.yb8{bottom:801.105000px;}
.y22f{bottom:806.865000px;}
.y12d{bottom:807.585000px;}
.y57{bottom:808.665000px;}
.y27d{bottom:811.365000px;}
.y12e{bottom:812.085000px;}
.y12c{bottom:815.145000px;}
.y186{bottom:816.585000px;}
.y27e{bottom:816.945000px;}
.y1c3{bottom:817.845000px;}
.y255{bottom:820.185000px;}
.y222{bottom:820.725000px;}
.y22e{bottom:823.785000px;}
.y56{bottom:825.225000px;}
.y22d{bottom:831.345000px;}
.y27c{bottom:831.705000px;}
.y1c2{bottom:837.645000px;}
.y12b{bottom:839.985000px;}
.y254{bottom:840.165000px;}
.y221{bottom:840.525000px;}
.yb7{bottom:841.245000px;}
.y27b{bottom:848.805000px;}
.y22c{bottom:854.925000px;}
.y27a{bottom:856.365000px;}
.y1c1{bottom:857.445000px;}
.y253{bottom:859.965000px;}
.y220{bottom:860.325000px;}
.yb6{bottom:861.045000px;}
.y12a{bottom:862.305000px;}
.y185{bottom:865.905000px;}
.y18{bottom:873.285000px;}
.y22b{bottom:876.885000px;}
.y1c0{bottom:877.425000px;}
.yac{bottom:877.739919px;}
.y252{bottom:879.765000px;}
.y21f{bottom:880.125000px;}
.y128{bottom:886.245000px;}
.yab{bottom:888.225000px;}
.y184{bottom:890.565000px;}
.y129{bottom:892.365000px;}
.ya9{bottom:895.785000px;}
.y1bf{bottom:897.225000px;}
.y22a{bottom:898.890000px;}
.y251{bottom:899.610000px;}
.y21e{bottom:900.150000px;}
.y17{bottom:902.850000px;}
.y126{bottom:909.510000px;}
.yaa{bottom:910.770000px;}
.y127{bottom:914.010000px;}
.y183{bottom:915.630000px;}
.y250{bottom:916.350000px;}
.y125{bottom:917.070000px;}
.y21d{bottom:919.950000px;}
.y16{bottom:927.870000px;}
.ya8{bottom:930.750000px;}
.y1bb{bottom:933.539919px;}
.y21c{bottom:936.510000px;}
.y182{bottom:940.290000px;}
.y15{bottom:942.990000px;}
.y1ba{bottom:944.070000px;}
.y124{bottom:944.250000px;}
.ya7{bottom:947.850000px;}
.y2ab{bottom:949.470000px;}
.ya6{bottom:955.410000px;}
.y11d{bottom:960.764919px;}
.y14{bottom:964.230000px;}
.y181{bottom:964.950000px;}
.y1b9{bottom:969.270000px;}
.y2aa{bottom:969.450000px;}
.y123{bottom:971.250000px;}
.y1b8{bottom:977.370000px;}
.ya5{bottom:981.510000px;}
.y13{bottom:987.810000px;}
.y2a9{bottom:989.250000px;}
.y180{bottom:989.430000px;}
.y11c{bottom:999.330000px;}
.y1f3{bottom:1000.230000px;}
.ya4{bottom:1001.490000px;}
.y1b7{bottom:1006.170000px;}
.y2a8{bottom:1009.050000px;}
.y17f{bottom:1014.270000px;}
.y12{bottom:1019.490000px;}
.y1f2{bottom:1020.030000px;}
.ya3{bottom:1021.290000px;}
.y1b6{bottom:1027.410000px;}
.y11b{bottom:1028.130000px;}
.y2a7{bottom:1028.850000px;}
.ya1{bottom:1037.939919px;}
.y1f1{bottom:1039.830000px;}
.y17e{bottom:1041.270000px;}
.y1b5{bottom:1044.690000px;}
.ye{bottom:1046.490000px;}
.y2a6{bottom:1048.650000px;}
.y1b4{bottom:1052.250000px;}
.ya2{bottom:1052.970000px;}
.y17d{bottom:1058.114919px;}
.y11a{bottom:1058.550000px;}
.y1f0{bottom:1059.630000px;}
.y17c{bottom:1067.190000px;}
.y1{bottom:1068.630000px;}
.y1b3{bottom:1074.210000px;}
.y118{bottom:1078.890000px;}
.y1ef{bottom:1079.610000px;}
.y1b2{bottom:1081.770000px;}
.ya0{bottom:1084.110000px;}
.y117{bottom:1086.450000px;}
.y2a5{bottom:1088.430000px;}
.y179{bottom:1090.139919px;}
.y119{bottom:1093.290000px;}
.y178{bottom:1099.230000px;}
.y1ee{bottom:1099.410000px;}
.y9f{bottom:1104.270000px;}
.y1b1{bottom:1106.790000px;}
.y2a4{bottom:1108.230000px;}
.y1ed{bottom:1119.570000px;}
.y16b{bottom:1122.014919px;}
.y116{bottom:1123.710000px;}
.y1b0{bottom:1124.070000px;}
.y9e{bottom:1124.430000px;}
.y55{bottom:1128.030000px;}
.y1af{bottom:1131.630000px;}
.y1ec{bottom:1139.730000px;}
.y96{bottom:1141.439919px;}
.y115{bottom:1145.310000px;}
.y54{bottom:1147.860000px;}
.y177{bottom:1149.120000px;}
.y1ae{bottom:1155.420000px;}
.y94{bottom:1156.500000px;}
.y1eb{bottom:1156.680000px;}
.y95{bottom:1162.440000px;}
.y1ad{bottom:1162.980000px;}
.y1ea{bottom:1164.240000px;}
.y114{bottom:1167.660000px;}
.y53{bottom:1167.840000px;}
.y52{bottom:1194.300000px;}
.h43{height:1.374362px;}
.h3c{height:1.404407px;}
.h35{height:1.406778px;}
.h2b{height:1.411475px;}
.h49{height:1.411694px;}
.h3{height:2.195156px;}
.h20{height:17.250027px;}
.h59{height:21.299231px;}
.ha{height:22.320000px;}
.hf{height:22.860000px;}
.h3d{height:22.912374px;}
.h7e{height:22.914302px;}
.h2d{height:22.918625px;}
.h36{height:22.951060px;}
.h73{height:22.972323px;}
.h1c{height:23.029385px;}
.h5b{height:23.250420px;}
.he{height:27.147656px;}
.h18{height:27.150199px;}
.h7a{height:27.224390px;}
.h77{height:27.224410px;}
.h85{height:27.224471px;}
.h6f{height:27.224678px;}
.h91{height:27.598874px;}
.h50{height:29.085270px;}
.h5a{height:29.374612px;}
.h72{height:29.999512px;}
.h4e{height:29.999532px;}
.h1b{height:30.074010px;}
.h93{height:30.923170px;}
.h44{height:31.454821px;}
.h7f{height:31.534314px;}
.h3e{height:31.599361px;}
.h2e{height:31.649336px;}
.h37{height:31.652715px;}
.h78{height:31.691899px;}
.h52{height:31.749725px;}
.h1d{height:31.828591px;}
.h4a{height:31.981962px;}
.h5c{height:32.065573px;}
.h19{height:32.264124px;}
.h70{height:32.352681px;}
.h42{height:32.550587px;}
.h63{height:32.550628px;}
.h8{height:37.705078px;}
.h5e{height:38.967580px;}
.h16{height:39.600000px;}
.h7d{height:39.600586px;}
.h81{height:40.410197px;}
.h40{height:40.499233px;}
.h2a{height:40.499990px;}
.h30{height:40.533361px;}
.h32{height:40.533365px;}
.h39{height:40.560717px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h11{height:43.506914px;}
.h3b{height:44.775441px;}
.h34{height:44.851042px;}
.h17{height:46.251562px;}
.hb{height:46.736719px;}
.h9f{height:48.027656px;}
.h92{height:48.932082px;}
.h2c{height:50.187179px;}
.h51{height:50.229774px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h45{height:54.516460px;}
.h80{height:54.557214px;}
.h53{height:54.831243px;}
.h5d{height:55.424292px;}
.h4b{height:55.449585px;}
.h9{height:55.987031px;}
.h48{height:57.223589px;}
.h7c{height:59.776008px;}
.h94{height:64.912000px;}
.h47{height:66.250945px;}
.h83{height:66.300471px;}
.h41{height:66.374899px;}
.h3a{height:66.486970px;}
.h31{height:66.576978px;}
.h55{height:66.633483px;}
.h5f{height:67.354184px;}
.h4d{height:67.384921px;}
.hd{height:67.565039px;}
.h82{height:69.913294px;}
.h87{height:69.945209px;}
.h79{height:69.945293px;}
.h86{height:69.972504px;}
.h7b{height:69.972588px;}
.h64{height:70.102266px;}
.h46{height:70.109479px;}
.h74{height:70.235989px;}
.h76{height:70.269921px;}
.h75{height:70.300357px;}
.h54{height:70.361470px;}
.h1e{height:70.393045px;}
.h1f{height:70.470966px;}
.h4c{height:71.065135px;}
.h1a{height:71.688945px;}
.h71{height:71.865331px;}
.h21{height:72.196335px;}
.h27{height:76.289062px;}
.h6c{height:83.489062px;}
.h4f{height:87.308321px;}
.h13{height:88.495312px;}
.h67{height:89.215313px;}
.h6a{height:92.129062px;}
.h3f{height:95.981645px;}
.h38{height:96.143706px;}
.h2f{height:96.212428px;}
.h9c{height:96.399844px;}
.h84{height:99.453456px;}
.h8c{height:101.489062px;}
.h24{height:102.879844px;}
.h15{height:104.319844px;}
.h25{height:105.039844px;}
.h58{height:107.099389px;}
.h8b{height:109.375313px;}
.h61{height:110.095312px;}
.h29{height:110.815313px;}
.h66{height:118.735312px;}
.h9d{height:123.775313px;}
.h12{height:126.639844px;}
.h95{height:127.375312px;}
.h99{height:128.095312px;}
.h9e{height:128.275313px;}
.h23{height:128.799844px;}
.h26{height:128.815312px;}
.h33{height:128.995312px;}
.h9b{height:130.255313px;}
.h98{height:137.439844px;}
.h65{height:138.879844px;}
.h68{height:139.615313px;}
.h2{height:140.796000px;}
.h8e{height:141.055312px;}
.h22{height:153.999844px;}
.h90{height:154.719844px;}
.h14{height:156.879844px;}
.h69{height:156.999844px;}
.h6e{height:157.059844px;}
.h96{height:159.039844px;}
.h97{height:159.159844px;}
.h9a{height:160.495313px;}
.h8a{height:166.289062px;}
.h89{height:171.295313px;}
.h62{height:174.929062px;}
.h28{height:184.289062px;}
.h56{height:192.895312px;}
.h88{height:196.479844px;}
.h8f{height:196.529062px;}
.h57{height:197.199844px;}
.h6d{height:201.519844px;}
.h8d{height:202.239844px;}
.h6b{height:205.119844px;}
.h60{height:205.169063px;}
.h10{height:520.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:14.774038px;}
.w19{width:18.149930px;}
.w1d{width:18.149950px;}
.w1c{width:18.225532px;}
.w1a{width:18.225542px;}
.wb{width:27.149893px;}
.w17{width:39.374062px;}
.wd{width:39.449661px;}
.wc{width:44.775250px;}
.w10{width:52.725316px;}
.wf{width:52.725331px;}
.w6{width:52.776000px;}
.w11{width:58.648424px;}
.w18{width:59.773602px;}
.w15{width:107.095172px;}
.w1b{width:107.999836px;}
.w12{width:111.444089px;}
.w16{width:120.452726px;}
.w14{width:134.102971px;}
.w13{width:152.856657px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w1e{width:311.036092px;}
.w3{width:464.865000px;}
.w9{width:585.510000px;}
.w7{width:731.670000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:1.321693px;}
.x3d{left:3.007635px;}
.x76{left:6.000058px;}
.x89{left:7.019854px;}
.x9{left:8.100000px;}
.x3e{left:10.454986px;}
.x1b{left:11.635883px;}
.x33{left:13.216824px;}
.x3c{left:16.076026px;}
.x56{left:17.123797px;}
.x21{left:18.359290px;}
.x77{left:20.119882px;}
.x49{left:21.579222px;}
.x71{left:23.745382px;}
.x1e{left:24.945877px;}
.x39{left:28.536521px;}
.x5b{left:29.713140px;}
.x34{left:33.042761px;}
.xf{left:34.965000px;}
.x3b{left:37.129104px;}
.x4{left:38.340000px;}
.x32{left:39.400671px;}
.x3a{left:42.141808px;}
.x4e{left:45.641366px;}
.x78{left:46.670257px;}
.x1{left:48.240000px;}
.x5a{left:51.806169px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.x57{left:60.404172px;}
.xa{left:62.100000px;}
.x58{left:67.551874px;}
.x59{left:71.505603px;}
.x2a{left:73.259987px;}
.x55{left:76.476346px;}
.x6{left:80.865000px;}
.x1c{left:85.355987px;}
.x4f{left:86.436913px;}
.x54{left:91.835987px;}
.x88{left:94.439990px;}
.x75{left:96.014990px;}
.x60{left:104.435987px;}
.xc{left:107.496000px;}
.x4b{left:108.557471px;}
.x52{left:109.835987px;}
.x81{left:111.455987px;}
.x43{left:112.715987px;}
.x5e{left:115.595987px;}
.x2c{left:116.675987px;}
.x27{left:119.195987px;}
.x25{left:120.995987px;}
.x2d{left:123.155987px;}
.x1d{left:125.939990px;}
.x15{left:128.735987px;}
.x4a{left:131.226334px;}
.x40{left:132.335987px;}
.x7{left:133.605000px;}
.x5d{left:136.115987px;}
.x79{left:139.740000px;}
.x8c{left:141.875987px;}
.x8b{left:150.509987px;}
.x6c{left:154.469987px;}
.x48{left:156.089987px;}
.x7a{left:157.889987px;}
.x2{left:159.510000px;}
.x5c{left:161.129987px;}
.x17{left:165.629987px;}
.x80{left:168.689987px;}
.x63{left:170.849987px;}
.x41{left:173.264980px;}
.x1f{left:174.809987px;}
.x45{left:176.249987px;}
.x1a{left:177.329987px;}
.x7d{left:179.849987px;}
.x7f{left:181.829987px;}
.x44{left:183.449987px;}
.x61{left:185.969987px;}
.x9b{left:188.489987px;}
.x36{left:192.089987px;}
.x37{left:199.649987px;}
.x6d{left:201.089987px;}
.x7e{left:202.529987px;}
.x46{left:205.769987px;}
.x4c{left:206.849987px;}
.x64{left:211.529987px;}
.x67{left:213.689987px;}
.x20{left:215.339980px;}
.x6f{left:216.569987px;}
.x7b{left:218.369987px;}
.x3{left:221.070000px;}
.x90{left:223.769987px;}
.x62{left:228.089987px;}
.x42{left:231.869987px;}
.x70{left:235.139980px;}
.x38{left:236.639980px;}
.x87{left:238.889987px;}
.x2f{left:239.969987px;}
.x28{left:245.729987px;}
.x6e{left:246.809987px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x83{left:256.169987px;}
.x53{left:257.789987px;}
.x22{left:258.869987px;}
.x6b{left:264.269987px;}
.x51{left:266.114987px;}
.x30{left:267.764980px;}
.x11{left:272.955000px;}
.x2b{left:284.834987px;}
.x2e{left:287.714987px;}
.x3f{left:295.274987px;}
.x65{left:299.774987px;}
.x72{left:302.474987px;}
.x23{left:310.739980px;}
.x35{left:320.474987px;}
.x24{left:325.694987px;}
.x13{left:328.575000px;}
.x26{left:332.714987px;}
.x10{left:348.195000px;}
.x73{left:350.190000px;}
.x9a{left:353.774987px;}
.x82{left:356.114987px;}
.x7c{left:365.294987px;}
.x12{left:369.795000px;}
.x74{left:372.494987px;}
.x68{left:381.674987px;}
.x86{left:400.034987px;}
.x8a{left:405.434987px;}
.x8d{left:408.314987px;}
.x8f{left:412.994987px;}
.x66{left:416.234987px;}
.x96{left:439.094987px;}
.x29{left:440.714987px;}
.x18{left:446.504987px;}
.x4d{left:468.089959px;}
.x14{left:473.144987px;}
.x19{left:492.944987px;}
.x9c{left:500.144987px;}
.x98{left:506.804987px;}
.x5f{left:523.904987px;}
.x9d{left:527.144987px;}
.x94{left:534.164987px;}
.x93{left:573.584987px;}
.x8e{left:579.344987px;}
.x84{left:586.904987px;}
.x50{left:602.204987px;}
.x9f{left:606.344987px;}
.xa0{left:607.964987px;}
.xa1{left:643.289987px;}
.x85{left:652.109987px;}
.x16{left:655.889987px;}
.x99{left:661.469987px;}
.x9e{left:671.189987px;}
.x8{left:685.950000px;}
.x47{left:696.029987px;}
.x69{left:705.209987px;}
.x95{left:751.649987px;}
.x91{left:756.509987px;}
.x6a{left:769.829987px;}
.x97{left:790.169987px;}
.x92{left:794.849987px;}
@media print{
.v1c{vertical-align:-80.160000pt;}
.v3f{vertical-align:-61.440000pt;}
.v1d{vertical-align:-53.280000pt;}
.v24{vertical-align:-50.294472pt;}
.v28{vertical-align:-41.284140pt;}
.v34{vertical-align:-31.466667pt;}
.v33{vertical-align:-26.880000pt;}
.v22{vertical-align:-25.594867pt;}
.v2c{vertical-align:-24.320000pt;}
.v1e{vertical-align:-23.040000pt;}
.v10{vertical-align:-21.120000pt;}
.v5{vertical-align:-19.840000pt;}
.v3{vertical-align:-18.560000pt;}
.v13{vertical-align:-17.280000pt;}
.v16{vertical-align:-16.000000pt;}
.v30{vertical-align:-14.080000pt;}
.vf{vertical-align:-12.800000pt;}
.v4{vertical-align:-10.880000pt;}
.vb{vertical-align:-8.960000pt;}
.ve{vertical-align:-7.680000pt;}
.v23{vertical-align:-4.951532pt;}
.vc{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.v17{vertical-align:6.400000pt;}
.v2f{vertical-align:8.960000pt;}
.v1f{vertical-align:10.240000pt;}
.v7{vertical-align:11.520000pt;}
.v1a{vertical-align:12.800000pt;}
.v36{vertical-align:14.080000pt;}
.v12{vertical-align:15.360000pt;}
.v2{vertical-align:18.560000pt;}
.v9{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v21{vertical-align:22.400000pt;}
.v2e{vertical-align:24.320000pt;}
.v15{vertical-align:25.600000pt;}
.v8{vertical-align:26.880000pt;}
.v3d{vertical-align:28.160000pt;}
.v25{vertical-align:29.440000pt;}
.v6{vertical-align:31.360000pt;}
.v1b{vertical-align:33.280000pt;}
.v11{vertical-align:34.560000pt;}
.v31{vertical-align:35.840000pt;}
.v18{vertical-align:36.824606pt;}
.v39{vertical-align:37.760000pt;}
.vd{vertical-align:42.240000pt;}
.v29{vertical-align:43.520000pt;}
.v19{vertical-align:45.440000pt;}
.v32{vertical-align:46.720000pt;}
.v35{vertical-align:50.560000pt;}
.v2d{vertical-align:54.400000pt;}
.v37{vertical-align:56.960000pt;}
.v20{vertical-align:58.240000pt;}
.v27{vertical-align:62.720000pt;}
.v3e{vertical-align:64.000000pt;}
.v26{vertical-align:65.920000pt;}
.v3b{vertical-align:67.200000pt;}
.v3a{vertical-align:68.480000pt;}
.v38{vertical-align:69.760000pt;}
.v14{vertical-align:74.240000pt;}
.v2b{vertical-align:76.800000pt;}
.v2a{vertical-align:87.040000pt;}
.v3c{vertical-align:106.880000pt;}
.lsbd{letter-spacing:-0.972043pt;}
.ls49{letter-spacing:-0.969382pt;}
.ls80{letter-spacing:-0.480000pt;}
.ls48{letter-spacing:-0.409067pt;}
.ls95{letter-spacing:-0.359711pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd4{letter-spacing:-0.198933pt;}
.lscf{letter-spacing:-0.191028pt;}
.ls100{letter-spacing:-0.185600pt;}
.lsd{letter-spacing:-0.185067pt;}
.ls44{letter-spacing:-0.183467pt;}
.ls84{letter-spacing:-0.179200pt;}
.ls91{letter-spacing:-0.160000pt;}
.lsd3{letter-spacing:-0.153067pt;}
.lsd5{letter-spacing:-0.147200pt;}
.ls7c{letter-spacing:-0.146133pt;}
.lsbb{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.115200pt;}
.lsff{letter-spacing:-0.107733pt;}
.ls81{letter-spacing:-0.103467pt;}
.ls4c{letter-spacing:-0.094933pt;}
.lsbc{letter-spacing:-0.089600pt;}
.ls7b{letter-spacing:-0.067733pt;}
.ls89{letter-spacing:-0.047360pt;}
.ls113{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.ls7e{letter-spacing:0.047360pt;}
.lse1{letter-spacing:0.056320pt;}
.lsb1{letter-spacing:0.064000pt;}
.lsbe{letter-spacing:0.071795pt;}
.ls4a{letter-spacing:0.071973pt;}
.lsca{letter-spacing:0.087040pt;}
.ls82{letter-spacing:0.094933pt;}
.ls4b{letter-spacing:0.097067pt;}
.ls12{letter-spacing:0.097280pt;}
.ls2f{letter-spacing:0.106240pt;}
.ls10a{letter-spacing:0.117867pt;}
.ls83{letter-spacing:0.120533pt;}
.ls75{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.137600pt;}
.ls9c{letter-spacing:0.138667pt;}
.ls52{letter-spacing:0.147200pt;}
.ls5d{letter-spacing:0.153600pt;}
.lse7{letter-spacing:0.154880pt;}
.ls46{letter-spacing:0.156267pt;}
.ls2{letter-spacing:0.160000pt;}
.ls66{letter-spacing:0.183040pt;}
.ls92{letter-spacing:0.203733pt;}
.ls2e{letter-spacing:0.211200pt;}
.lsc1{letter-spacing:0.229120pt;}
.ls4e{letter-spacing:0.229333pt;}
.ls4d{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.lscb{letter-spacing:0.234667pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls106{letter-spacing:0.265600pt;}
.ls107{letter-spacing:0.267520pt;}
.lsf{letter-spacing:0.285333pt;}
.ls47{letter-spacing:0.287467pt;}
.lsc2{letter-spacing:0.288000pt;}
.ls77{letter-spacing:0.289920pt;}
.ls45{letter-spacing:0.294933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf2{letter-spacing:0.325120pt;}
.lse{letter-spacing:0.330133pt;}
.ls63{letter-spacing:0.331520pt;}
.ls8{letter-spacing:0.340480pt;}
.ls9f{letter-spacing:0.347520pt;}
.ls97{letter-spacing:0.352000pt;}
.ls25{letter-spacing:0.355200pt;}
.lsf6{letter-spacing:0.430080pt;}
.ls19{letter-spacing:0.439467pt;}
.ls9b{letter-spacing:0.453120pt;}
.ls1{letter-spacing:0.454933pt;}
.ls1c{letter-spacing:0.460800pt;}
.lsa2{letter-spacing:0.469120pt;}
.ls5{letter-spacing:0.473600pt;}
.lse6{letter-spacing:0.483200pt;}
.lsee{letter-spacing:0.494080pt;}
.lscd{letter-spacing:0.565120pt;}
.ls10b{letter-spacing:0.580267pt;}
.lsfa{letter-spacing:0.591787pt;}
.ls14{letter-spacing:0.593920pt;}
.lsb6{letter-spacing:0.595200pt;}
.lsa1{letter-spacing:0.608000pt;}
.ls43{letter-spacing:0.630400pt;}
.ls72{letter-spacing:0.639360pt;}
.ls73{letter-spacing:0.736000pt;}
.ls22{letter-spacing:0.800000pt;}
.lsd6{letter-spacing:0.924800pt;}
.ls41{letter-spacing:0.960000pt;}
.ls16{letter-spacing:0.976640pt;}
.ls6a{letter-spacing:0.985600pt;}
.lsc3{letter-spacing:0.995200pt;}
.ls35{letter-spacing:1.033600pt;}
.lsaa{letter-spacing:1.158400pt;}
.lse2{letter-spacing:1.212160pt;}
.lse8{letter-spacing:1.216000pt;}
.ls21{letter-spacing:1.440000pt;}
.lsdc{letter-spacing:1.491200pt;}
.lsdf{letter-spacing:1.600000pt;}
.ls69{letter-spacing:1.625600pt;}
.ls3c{letter-spacing:1.673600pt;}
.ls70{letter-spacing:1.690880pt;}
.lsd8{letter-spacing:1.696000pt;}
.ls9d{letter-spacing:1.733120pt;}
.ls65{letter-spacing:1.798400pt;}
.lse3{letter-spacing:1.802667pt;}
.lsd7{letter-spacing:1.824000pt;}
.lsf4{letter-spacing:1.856000pt;}
.ls61{letter-spacing:1.878400pt;}
.lsb4{letter-spacing:1.916160pt;}
.ls36{letter-spacing:1.962240pt;}
.lsb7{letter-spacing:2.073600pt;}
.ls31{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.103680pt;}
.lsa6{letter-spacing:2.187520pt;}
.lsa8{letter-spacing:2.209280pt;}
.ls64{letter-spacing:2.240000pt;}
.ls6f{letter-spacing:2.330880pt;}
.ls1f{letter-spacing:2.347520pt;}
.ls98{letter-spacing:2.373120pt;}
.ls15{letter-spacing:2.515200pt;}
.ls6d{letter-spacing:2.518400pt;}
.lsc0{letter-spacing:2.556160pt;}
.lsce{letter-spacing:2.691840pt;}
.lsa9{letter-spacing:2.720000pt;}
.ls13{letter-spacing:2.827520pt;}
.ls57{letter-spacing:2.880000pt;}
.ls5c{letter-spacing:2.970880pt;}
.ls9a{letter-spacing:3.092480pt;}
.lsef{letter-spacing:3.151360pt;}
.ls71{letter-spacing:3.155200pt;}
.ls39{letter-spacing:3.256320pt;}
.ls53{letter-spacing:3.360000pt;}
.ls108{letter-spacing:3.426987pt;}
.ls105{letter-spacing:3.448320pt;}
.ls51{letter-spacing:3.610880pt;}
.ls6b{letter-spacing:3.736320pt;}
.lsed{letter-spacing:3.791360pt;}
.ls74{letter-spacing:3.838720pt;}
.ls6c{letter-spacing:3.864320pt;}
.ls78{letter-spacing:3.966720pt;}
.ls54{letter-spacing:4.088320pt;}
.ls68{letter-spacing:4.250880pt;}
.lsfd{letter-spacing:4.350720pt;}
.lsf0{letter-spacing:6.400000pt;}
.ls10e{letter-spacing:6.992640pt;}
.ls3b{letter-spacing:7.251200pt;}
.lsa5{letter-spacing:8.509867pt;}
.ls102{letter-spacing:8.587520pt;}
.lsb5{letter-spacing:8.950400pt;}
.ls5a{letter-spacing:9.149867pt;}
.ls58{letter-spacing:9.171200pt;}
.ls1b{letter-spacing:9.227520pt;}
.ls3a{letter-spacing:9.315200pt;}
.lscc{letter-spacing:9.331200pt;}
.lsdb{letter-spacing:10.172160pt;}
.ls10f{letter-spacing:10.192640pt;}
.ls42{letter-spacing:10.213120pt;}
.lsb2{letter-spacing:10.451200pt;}
.lsae{letter-spacing:10.611200pt;}
.lsb0{letter-spacing:10.771200pt;}
.ls1a{letter-spacing:11.519360pt;}
.ls6{letter-spacing:11.839360pt;}
.lse4{letter-spacing:11.992320pt;}
.ls103{letter-spacing:12.138027pt;}
.ls18{letter-spacing:12.159360pt;}
.ls101{letter-spacing:12.287360pt;}
.lsda{letter-spacing:12.479360pt;}
.lsdd{letter-spacing:13.048320pt;}
.ls112{letter-spacing:13.392640pt;}
.ls111{letter-spacing:13.571840pt;}
.lsa4{letter-spacing:14.347520pt;}
.ls6e{letter-spacing:14.400000pt;}
.ls93{letter-spacing:14.601593pt;}
.ls114{letter-spacing:14.672640pt;}
.ls17{letter-spacing:14.675200pt;}
.ls27{letter-spacing:14.719360pt;}
.ls3e{letter-spacing:14.847360pt;}
.lsd9{letter-spacing:14.880000pt;}
.ls1e{letter-spacing:15.005440pt;}
.lse5{letter-spacing:15.075200pt;}
.ls38{letter-spacing:15.256320pt;}
.lsf9{letter-spacing:15.281920pt;}
.ls94{letter-spacing:15.347660pt;}
.ls40{letter-spacing:15.359360pt;}
.lsec{letter-spacing:15.608320pt;}
.lsbf{letter-spacing:15.770880pt;}
.lsb9{letter-spacing:15.777411pt;}
.lsf5{letter-spacing:15.921920pt;}
.lsb3{letter-spacing:16.160000pt;}
.ls8a{letter-spacing:16.469914pt;}
.ls9{letter-spacing:16.800000pt;}
.ls109{letter-spacing:16.906667pt;}
.ls62{letter-spacing:17.050880pt;}
.ls5e{letter-spacing:17.235200pt;}
.ls8b{letter-spacing:17.261737pt;}
.ls60{letter-spacing:17.363200pt;}
.ls110{letter-spacing:17.418667pt;}
.lsb8{letter-spacing:17.505280pt;}
.ls26{letter-spacing:17.547520pt;}
.ls30{letter-spacing:17.816320pt;}
.ls1d{letter-spacing:17.875200pt;}
.ls23{letter-spacing:18.080000pt;}
.ls86{letter-spacing:18.192846pt;}
.ls99{letter-spacing:18.330880pt;}
.ls3d{letter-spacing:18.456320pt;}
.ls104{letter-spacing:18.562987pt;}
.ls28{letter-spacing:18.584320pt;}
.ls5f{letter-spacing:18.720000pt;}
.ls56{letter-spacing:18.808320pt;}
.ls3{letter-spacing:19.152640pt;}
.ls7{letter-spacing:19.190400pt;}
.ls85{letter-spacing:20.248534pt;}
.lsde{letter-spacing:20.479360pt;}
.lsf1{letter-spacing:21.120000pt;}
.lsac{letter-spacing:22.079360pt;}
.ls10d{letter-spacing:22.352640pt;}
.lsa0{letter-spacing:22.667520pt;}
.lsf7{letter-spacing:24.032000pt;}
.lsc4{letter-spacing:24.319360pt;}
.ls67{letter-spacing:28.480000pt;}
.lsa3{letter-spacing:28.960000pt;}
.ls5b{letter-spacing:29.898322pt;}
.ls59{letter-spacing:29.948804pt;}
.ls50{letter-spacing:30.341735pt;}
.lse0{letter-spacing:31.359360pt;}
.ls8f{letter-spacing:33.591518pt;}
.lsc6{letter-spacing:37.759360pt;}
.lsc7{letter-spacing:38.399360pt;}
.lsa{letter-spacing:40.912640pt;}
.lseb{letter-spacing:43.322880pt;}
.lsc8{letter-spacing:46.533120pt;}
.ls9e{letter-spacing:47.520000pt;}
.lsc5{letter-spacing:49.919360pt;}
.lsd1{letter-spacing:57.481875pt;}
.lsfb{letter-spacing:60.490667pt;}
.lsc9{letter-spacing:61.253120pt;}
.lsea{letter-spacing:69.448235pt;}
.ls87{letter-spacing:80.994137pt;}
.lse9{letter-spacing:81.884787pt;}
.ls8c{letter-spacing:84.038791pt;}
.ls8d{letter-spacing:95.863345pt;}
.ls79{letter-spacing:98.971293pt;}
.lsfc{letter-spacing:104.896000pt;}
.ls10c{letter-spacing:115.882667pt;}
.lsba{letter-spacing:120.360577pt;}
.lsf3{letter-spacing:122.154667pt;}
.ls8e{letter-spacing:124.368965pt;}
.ls88{letter-spacing:124.574739pt;}
.lsa7{letter-spacing:130.001920pt;}
.ls7a{letter-spacing:134.641780pt;}
.ls7f{letter-spacing:136.225668pt;}
.ls7d{letter-spacing:136.455679pt;}
.lsd0{letter-spacing:138.785215pt;}
.lsf8{letter-spacing:141.536000pt;}
.lsab{letter-spacing:148.800000pt;}
.ls3f{letter-spacing:150.698667pt;}
.ls34{letter-spacing:152.322987pt;}
.ls2d{letter-spacing:152.962987pt;}
.ls33{letter-spacing:153.016320pt;}
.ls2a{letter-spacing:153.656320pt;}
.ls90{letter-spacing:154.555662pt;}
.ls96{letter-spacing:156.300996pt;}
.lsd2{letter-spacing:167.281038pt;}
.ls4f{letter-spacing:177.816320pt;}
.ls55{letter-spacing:178.720000pt;}
.ls37{letter-spacing:181.144320pt;}
.lsfe{letter-spacing:182.976000pt;}
.ls2c{letter-spacing:186.776320pt;}
.lsaf{letter-spacing:197.045120pt;}
.ls32{letter-spacing:252.034987pt;}
.ls29{letter-spacing:252.674987pt;}
.lsad{letter-spacing:406.007040pt;}
.ls76{letter-spacing:526.141867pt;}
.ws41{word-spacing:-27.045760pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.510933pt;}
.ws56{word-spacing:-13.374933pt;}
.ws21{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws28{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.016533pt;}
.ws11{word-spacing:-11.981333pt;}
.ws13{word-spacing:-11.973867pt;}
.ws8{word-spacing:-11.971733pt;}
.ws1a{word-spacing:-11.915733pt;}
.ws12{word-spacing:-11.842667pt;}
.wsa{word-spacing:-11.824000pt;}
.ws58{word-spacing:-11.804267pt;}
.ws9{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.ws3c{word-spacing:-11.596800pt;}
.ws4f{word-spacing:-11.578667pt;}
.wsb{word-spacing:-11.571200pt;}
.ws22{word-spacing:-11.540267pt;}
.ws46{word-spacing:-11.533333pt;}
.ws47{word-spacing:-11.487467pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws5d{word-spacing:-8.632320pt;}
.ws20{word-spacing:-8.395733pt;}
.ws17{word-spacing:-8.263467pt;}
.wsc{word-spacing:-8.166400pt;}
.ws18{word-spacing:-8.071467pt;}
.ws23{word-spacing:-8.062933pt;}
.ws4a{word-spacing:-8.019200pt;}
.ws32{word-spacing:-8.006400pt;}
.ws24{word-spacing:-7.987200pt;}
.ws50{word-spacing:-7.980800pt;}
.ws57{word-spacing:-7.200000pt;}
.ws1b{word-spacing:-7.040000pt;}
.ws39{word-spacing:-6.912000pt;}
.ws44{word-spacing:-6.720000pt;}
.wsf{word-spacing:0.000000pt;}
.ws40{word-spacing:4.480225pt;}
.ws2f{word-spacing:7.072091pt;}
.ws37{word-spacing:7.483279pt;}
.ws2c{word-spacing:7.907068pt;}
.ws31{word-spacing:7.960731pt;}
.ws27{word-spacing:8.987271pt;}
.ws45{word-spacing:11.040000pt;}
.ws3f{word-spacing:11.144812pt;}
.ws55{word-spacing:11.360000pt;}
.ws59{word-spacing:11.680000pt;}
.ws52{word-spacing:16.156101pt;}
.ws3d{word-spacing:16.208201pt;}
.ws15{word-spacing:16.248462pt;}
.ws3e{word-spacing:16.449314pt;}
.ws16{word-spacing:16.490174pt;}
.ws53{word-spacing:23.615147pt;}
.ws54{word-spacing:23.636480pt;}
.ws33{word-spacing:34.328610pt;}
.ws25{word-spacing:40.078662pt;}
.ws29{word-spacing:41.167319pt;}
.ws4c{word-spacing:41.568000pt;}
.ws5b{word-spacing:44.559787pt;}
.wsd{word-spacing:44.581120pt;}
.ws5a{word-spacing:44.709120pt;}
.wse{word-spacing:45.221120pt;}
.ws5c{word-spacing:45.381120pt;}
.ws3b{word-spacing:47.520000pt;}
.ws3a{word-spacing:50.080000pt;}
.ws2b{word-spacing:54.794147pt;}
.ws4d{word-spacing:56.928000pt;}
.ws26{word-spacing:61.309762pt;}
.ws30{word-spacing:63.624693pt;}
.ws38{word-spacing:65.293902pt;}
.ws34{word-spacing:69.674667pt;}
.ws35{word-spacing:69.696000pt;}
.ws36{word-spacing:70.508969pt;}
.ws2a{word-spacing:72.362055pt;}
.ws4b{word-spacing:73.432320pt;}
.ws49{word-spacing:76.766720pt;}
.ws48{word-spacing:77.406720pt;}
.ws2d{word-spacing:91.449197pt;}
.ws1f{word-spacing:91.636267pt;}
.ws1e{word-spacing:92.937600pt;}
.ws51{word-spacing:104.896000pt;}
.ws2e{word-spacing:111.539894pt;}
.ws1c{word-spacing:122.996267pt;}
.ws43{word-spacing:145.637263pt;}
.ws42{word-spacing:155.943922pt;}
.ws1d{word-spacing:174.377600pt;}
.ws4e{word-spacing:222.346667pt;}
._4b{margin-left:-183.546667pt;}
._45{margin-left:-180.849920pt;}
._51{margin-left:-170.955733pt;}
._2b{margin-left:-169.622827pt;}
._4e{margin-left:-156.914773pt;}
._4d{margin-left:-150.350293pt;}
._3b{margin-left:-130.652800pt;}
._3e{margin-left:-121.619200pt;}
._49{margin-left:-118.391467pt;}
._4c{margin-left:-110.884480pt;}
._3f{margin-left:-106.909867pt;}
._3a{margin-left:-96.021333pt;}
._43{margin-left:-87.364480pt;}
._39{margin-left:-63.381333pt;}
._4f{margin-left:-48.311893pt;}
._44{margin-left:-40.842880pt;}
._42{margin-left:-34.376960pt;}
._22{margin-left:-26.932980pt;}
._2d{margin-left:-23.232000pt;}
._29{margin-left:-22.027093pt;}
._2c{margin-left:-19.920640pt;}
._27{margin-left:-18.848640pt;}
._24{margin-left:-16.634880pt;}
._26{margin-left:-15.720747pt;}
._28{margin-left:-14.389760pt;}
._2a{margin-left:-11.414400pt;}
._36{margin-left:-6.912000pt;}
._d{margin-left:-5.652907pt;}
._25{margin-left:-4.443947pt;}
._12{margin-left:-3.508480pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._13{width:2.426667pt;}
._10{width:3.416533pt;}
._11{width:4.887040pt;}
._e{width:6.043520pt;}
._f{width:7.014827pt;}
._3{width:8.480000pt;}
._1b{width:9.481173pt;}
._1{width:11.040000pt;}
._14{width:12.252800pt;}
._23{width:13.385387pt;}
._15{width:14.719360pt;}
._16{width:15.820587pt;}
._1e{width:16.732800pt;}
._18{width:17.795200pt;}
._1c{width:19.070080pt;}
._5c{width:20.024960pt;}
._5e{width:21.399680pt;}
._1a{width:22.363520pt;}
._17{width:23.638400pt;}
._20{width:25.125760pt;}
._1f{width:26.188160pt;}
._1d{width:27.675520pt;}
._19{width:29.162880pt;}
._57{width:30.327040pt;}
._56{width:31.234560pt;}
._61{width:34.124160pt;}
._5f{width:35.763627pt;}
._59{width:37.290240pt;}
._62{width:38.248960pt;}
._5d{width:42.974080pt;}
._37{width:47.195018pt;}
._5a{width:48.291840pt;}
._40{width:49.642638pt;}
._60{width:54.448000pt;}
._53{width:56.841600pt;}
._21{width:58.856960pt;}
._54{width:61.141120pt;}
._4a{width:67.251200pt;}
._50{width:70.832427pt;}
._48{width:73.693867pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._46{width:98.006400pt;}
._47{width:98.994987pt;}
._64{width:100.131200pt;}
._2f{width:102.528253pt;}
._32{width:105.924879pt;}
._2e{width:111.957773pt;}
._30{width:113.198645pt;}
._31{width:115.510398pt;}
._33{width:117.890757pt;}
._34{width:131.703817pt;}
._35{width:134.888109pt;}
._63{width:139.003307pt;}
._2{width:146.720000pt;}
._41{width:148.966827pt;}
._5{width:163.520000pt;}
._3d{width:178.720000pt;}
._3c{width:179.709867pt;}
._55{width:188.257280pt;}
._a{width:204.320000pt;}
._38{width:212.157498pt;}
._7{width:263.840000pt;}
._52{width:371.942187pt;}
._5b{width:1255.306667pt;}
._58{width:1263.626667pt;}
.fs20{font-size:1.611043pt;}
.fs1b{font-size:1.646261pt;}
.fs16{font-size:1.649041pt;}
.fs10{font-size:1.654547pt;}
.fs24{font-size:1.654804pt;}
.fs0{font-size:2.560000pt;}
.fs1c{font-size:26.720502pt;}
.fs39{font-size:26.722750pt;}
.fs12{font-size:26.727792pt;}
.fs17{font-size:26.765618pt;}
.fs32{font-size:26.790414pt;}
.fsb{font-size:26.856961pt;}
.fs2c{font-size:27.114732pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs42{font-size:36.062725pt;}
.fs21{font-size:36.682738pt;}
.fs3a{font-size:36.775443pt;}
.fs1d{font-size:36.851301pt;}
.fs13{font-size:36.909582pt;}
.fs18{font-size:36.913523pt;}
.fs36{font-size:36.959220pt;}
.fs29{font-size:37.026656pt;}
.fsc{font-size:37.118630pt;}
.fs5{font-size:37.120000pt;}
.fs25{font-size:37.297493pt;}
.fs2d{font-size:37.395000pt;}
.fs9{font-size:37.626551pt;}
.fs30{font-size:37.729826pt;}
.fs3c{font-size:38.779398pt;}
.fs1f{font-size:38.864841pt;}
.fs14{font-size:38.897592pt;}
.fs15{font-size:38.897596pt;}
.fs1a{font-size:38.923844pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs41{font-size:62.292404pt;}
.fs22{font-size:63.577314pt;}
.fs3b{font-size:63.624842pt;}
.fs1e{font-size:63.696266pt;}
.fs19{font-size:63.803814pt;}
.fs11{font-size:63.890190pt;}
.fs2a{font-size:63.944415pt;}
.fs2{font-size:64.000000pt;}
.fs2e{font-size:64.636031pt;}
.fs26{font-size:64.665527pt;}
.fs3d{font-size:67.091865pt;}
.fs40{font-size:67.122492pt;}
.fs37{font-size:67.122573pt;}
.fs3f{font-size:67.148685pt;}
.fs38{font-size:67.148766pt;}
.fs2f{font-size:67.273210pt;}
.fs23{font-size:67.280133pt;}
.fs33{font-size:67.401537pt;}
.fs35{font-size:67.434100pt;}
.fs34{font-size:67.463308pt;}
.fs2b{font-size:67.521954pt;}
.fsd{font-size:67.552255pt;}
.fse{font-size:67.627031pt;}
.fs27{font-size:68.197222pt;}
.fsa{font-size:68.795857pt;}
.fs31{font-size:68.965125pt;}
.fsf{font-size:69.282771pt;}
.fs28{font-size:83.784896pt;}
.fs6{font-size:85.120000pt;}
.fs3e{font-size:95.439901pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.240000pt;}
.y106{bottom:3.301479pt;}
.y76{bottom:3.679267pt;}
.y157{bottom:3.689345pt;}
.y166{bottom:4.161232pt;}
.y161{bottom:4.161239pt;}
.y17a{bottom:4.161259pt;}
.y15b{bottom:4.192266pt;}
.y15e{bottom:4.192268pt;}
.y15f{bottom:4.192269pt;}
.y7a{bottom:4.202672pt;}
.y9b{bottom:4.254122pt;}
.y7e{bottom:4.324823pt;}
.ye9{bottom:4.445172pt;}
.y16c{bottom:4.507155pt;}
.y16e{bottom:4.507157pt;}
.ye2{bottom:4.572255pt;}
.yc2{bottom:4.643374pt;}
.yb5{bottom:4.651214pt;}
.y2{bottom:4.800000pt;}
.y1bd{bottom:4.967199pt;}
.y46{bottom:5.120000pt;}
.yee{bottom:5.263970pt;}
.yf0{bottom:5.263971pt;}
.y10{bottom:6.240000pt;}
.y15c{bottom:6.619403pt;}
.y7b{bottom:6.635832pt;}
.ybd{bottom:6.791380pt;}
.yb0{bottom:6.802847pt;}
.y171{bottom:6.887748pt;}
.yc1{bottom:7.328369pt;}
.yb4{bottom:7.340742pt;}
.y108{bottom:7.436421pt;}
.y19{bottom:7.840000pt;}
.y77{bottom:7.888709pt;}
.y158{bottom:7.910325pt;}
.yd5{bottom:8.160731pt;}
.y11f{bottom:8.160764pt;}
.yed{bottom:8.226923pt;}
.y167{bottom:8.258469pt;}
.y162{bottom:8.258487pt;}
.y17b{bottom:8.258542pt;}
.y42{bottom:8.960000pt;}
.y1bc{bottom:8.995344pt;}
.y1be{bottom:8.995360pt;}
.yd7{bottom:9.119045pt;}
.y121{bottom:9.119060pt;}
.yd8{bottom:9.119065pt;}
.yd6{bottom:9.119071pt;}
.y122{bottom:9.119095pt;}
.y120{bottom:9.119106pt;}
.yf1{bottom:9.393192pt;}
.yef{bottom:9.393203pt;}
.yf3{bottom:9.393206pt;}
.yf2{bottom:9.393214pt;}
.y34{bottom:9.440000pt;}
.y15d{bottom:10.717075pt;}
.y7c{bottom:10.743678pt;}
.y9a{bottom:12.508094pt;}
.y8{bottom:12.960000pt;}
.y9d{bottom:13.460281pt;}
.y98{bottom:13.460290pt;}
.yd{bottom:13.600000pt;}
.yd4{bottom:14.559451pt;}
.y11e{bottom:14.559486pt;}
.y100{bottom:14.680197pt;}
.ybc{bottom:15.035265pt;}
.yaf{bottom:15.060651pt;}
.yc0{bottom:15.983206pt;}
.yb3{bottom:16.010193pt;}
.ye8{bottom:17.875410pt;}
.y176{bottom:18.313912pt;}
.y97{bottom:18.920348pt;}
.y170{bottom:19.932612pt;}
.y112{bottom:20.033226pt;}
.ye1{bottom:20.352518pt;}
.ye5{bottom:21.305329pt;}
.ye7{bottom:21.305343pt;}
.ye4{bottom:21.305347pt;}
.yba{bottom:21.447440pt;}
.yad{bottom:21.483653pt;}
.ybf{bottom:21.858407pt;}
.yb2{bottom:21.895313pt;}
.y45{bottom:22.720000pt;}
.y99{bottom:23.365724pt;}
.y174{bottom:24.027547pt;}
.y175{bottom:24.027561pt;}
.y172{bottom:24.027579pt;}
.y110{bottom:25.643382pt;}
.y9c{bottom:25.746111pt;}
.ybb{bottom:25.870556pt;}
.yae{bottom:25.914237pt;}
.y105{bottom:26.188277pt;}
.ydf{bottom:26.861304pt;}
.y33{bottom:27.040000pt;}
.ye0{bottom:27.497371pt;}
.ybe{bottom:28.270530pt;}
.yb1{bottom:28.318264pt;}
.y107{bottom:30.354261pt;}
.y40{bottom:31.520000pt;}
.ye3{bottom:31.655762pt;}
.ye6{bottom:32.640265pt;}
.y10f{bottom:32.663071pt;}
.y11{bottom:32.800000pt;}
.y7{bottom:34.560000pt;}
.y41{bottom:36.480000pt;}
.yc{bottom:39.200000pt;}
.y16d{bottom:40.977323pt;}
.y10e{bottom:41.253498pt;}
.y173{bottom:42.754321pt;}
.y16f{bottom:43.388918pt;}
.y32{bottom:44.680000pt;}
.yf{bottom:46.560000pt;}
.y104{bottom:48.977954pt;}
.y3f{bottom:49.640000pt;}
.y10d{bottom:49.843924pt;}
.y6{bottom:56.160000pt;}
.y10c{bottom:58.466325pt;}
.y102{bottom:59.811909pt;}
.y31{bottom:62.440000pt;}
.yff{bottom:62.825486pt;}
.yb{bottom:64.960000pt;}
.y10b{bottom:67.055419pt;}
.y3d{bottom:69.160000pt;}
.y111{bottom:70.005047pt;}
.yfe{bottom:71.799604pt;}
.y2a3{bottom:72.960000pt;}
.y3e{bottom:74.120000pt;}
.y103{bottom:74.236312pt;}
.y5{bottom:75.066667pt;}
.y10a{bottom:75.645845pt;}
.y1e9{bottom:76.960000pt;}
.y30{bottom:80.040000pt;}
.ya{bottom:82.106667pt;}
.y16a{bottom:82.560000pt;}
.y109{bottom:83.563479pt;}
.y101{bottom:86.255981pt;}
.y3c{bottom:87.240000pt;}
.y51{bottom:87.360000pt;}
.y1ac{bottom:88.160000pt;}
.y2a2{bottom:90.560000pt;}
.y21b{bottom:92.960000pt;}
.y1e8{bottom:94.560000pt;}
.y4{bottom:95.066667pt;}
.y2f{bottom:97.640000pt;}
.y9{bottom:97.946667pt;}
.y278{bottom:99.680000pt;}
.yfd{bottom:99.946667pt;}
.y169{bottom:100.160000pt;}
.y3b{bottom:102.280000pt;}
.y93{bottom:102.720000pt;}
.y279{bottom:104.640000pt;}
.y50{bottom:104.960000pt;}
.y1ab{bottom:108.000000pt;}
.y2a1{bottom:108.320000pt;}
.y3a{bottom:109.000000pt;}
.y1e7{bottom:112.000000pt;}
.y3{bottom:112.666667pt;}
.y2e{bottom:115.240000pt;}
.y20b{bottom:117.280000pt;}
.y277{bottom:117.760000pt;}
.y168{bottom:118.080000pt;}
.y1e6{bottom:118.720000pt;}
.y21a{bottom:119.200000pt;}
.y113{bottom:119.840000pt;}
.y92{bottom:120.640000pt;}
.y4f{bottom:122.560000pt;}
.y2a0{bottom:125.920000pt;}
.y1aa{bottom:126.400000pt;}
.y38{bottom:131.560000pt;}
.y2d{bottom:132.840000pt;}
.y165{bottom:133.013333pt;}
.y90{bottom:135.866667pt;}
.y39{bottom:136.520000pt;}
.y218{bottom:138.746667pt;}
.y4e{bottom:140.186667pt;}
.y164{bottom:140.986667pt;}
.y20a{bottom:141.306667pt;}
.y8e{bottom:142.586667pt;}
.y1e5{bottom:143.386667pt;}
.y29f{bottom:143.546667pt;}
.y219{bottom:143.706667pt;}
.y1a9{bottom:148.346667pt;}
.y91{bottom:149.466667pt;}
.y37{bottom:149.640000pt;}
.y2c{bottom:150.600000pt;}
.y24f{bottom:154.426667pt;}
.y276{bottom:155.066667pt;}
.y8f{bottom:155.866667pt;}
.y209{bottom:156.506667pt;}
.y217{bottom:156.986667pt;}
.y4d{bottom:157.946667pt;}
.y1e4{bottom:161.146667pt;}
.y208{bottom:163.226667pt;}
.y163{bottom:164.346667pt;}
.y36{bottom:167.720000pt;}
.y2b{bottom:168.200000pt;}
.y1a8{bottom:170.266667pt;}
.y244{bottom:172.026667pt;}
.y8d{bottom:172.346667pt;}
.y216{bottom:174.906667pt;}
.y4c{bottom:175.546667pt;}
.y1e3{bottom:178.746667pt;}
.y15a{bottom:179.146649pt;}
.y160{bottom:181.813315pt;}
.y156{bottom:181.813333pt;}
.y207{bottom:185.466667pt;}
.y35{bottom:185.640000pt;}
.y2a{bottom:185.800000pt;}
.y1a7{bottom:188.186667pt;}
.y8c{bottom:189.306667pt;}
.y243{bottom:189.626667pt;}
.y275{bottom:191.546667pt;}
.y215{bottom:192.666667pt;}
.y4b{bottom:193.146667pt;}
.y8a{bottom:196.026667pt;}
.y29e{bottom:196.506667pt;}
.y1e2{bottom:198.106667pt;}
.y274{bottom:198.266667pt;}
.yfc{bottom:200.826667pt;}
.y8b{bottom:201.306667pt;}
.y159{bottom:203.386667pt;}
.y29{bottom:203.400000pt;}
.y242{bottom:207.386667pt;}
.yfb{bottom:207.546667pt;}
.y24d{bottom:208.986667pt;}
.y214{bottom:210.266667pt;}
.y4a{bottom:210.746667pt;}
.y155{bottom:211.226667pt;}
.y1a5{bottom:212.506667pt;}
.y1a6{bottom:212.986667pt;}
.y24e{bottom:213.946667pt;}
.y29d{bottom:214.106667pt;}
.y89{bottom:218.106667pt;}
.y1a4{bottom:219.226667pt;}
.y273{bottom:219.386667pt;}
.y28{bottom:221.000000pt;}
.y1e0{bottom:223.546667pt;}
.y213{bottom:225.146667pt;}
.y241{bottom:225.306667pt;}
.y24c{bottom:227.066667pt;}
.y154{bottom:228.186667pt;}
.y49{bottom:228.346667pt;}
.y206{bottom:229.626667pt;}
.y1e1{bottom:230.266667pt;}
.yfa{bottom:230.746667pt;}
.y29c{bottom:231.706667pt;}
.y212{bottom:231.866667pt;}
.y88{bottom:235.866667pt;}
.y272{bottom:237.146667pt;}
.y27{bottom:238.760000pt;}
.yf7{bottom:239.706667pt;}
.yf9{bottom:242.426667pt;}
.y240{bottom:242.906667pt;}
.y205{bottom:245.146667pt;}
.y153{bottom:245.946667pt;}
.y48{bottom:246.106667pt;}
.yf6{bottom:246.426667pt;}
.y1df{bottom:248.026667pt;}
.y29b{bottom:249.306667pt;}
.y211{bottom:250.266667pt;}
.y1a3{bottom:251.386667pt;}
.yf8{bottom:251.546667pt;}
.y204{bottom:251.866667pt;}
.y271{bottom:254.746667pt;}
.y26{bottom:256.360000pt;}
.y210{bottom:256.986667pt;}
.y86{bottom:258.106667pt;}
.y24b{bottom:263.066667pt;}
.y87{bottom:263.386667pt;}
.y47{bottom:263.706667pt;}
.y152{bottom:264.026667pt;}
.y1dd{bottom:264.666667pt;}
.y29a{bottom:266.906667pt;}
.y23f{bottom:268.346667pt;}
.y1dc{bottom:271.386667pt;}
.y270{bottom:272.506667pt;}
.y1a2{bottom:272.826667pt;}
.y25{bottom:273.986667pt;}
.y44{bottom:276.826667pt;}
.yf5{bottom:276.986667pt;}
.y1de{bottom:278.106667pt;}
.y24a{bottom:278.426667pt;}
.y20f{bottom:278.906667pt;}
.y23e{bottom:281.466667pt;}
.y151{bottom:281.786667pt;}
.y84{bottom:284.506667pt;}
.y299{bottom:284.666667pt;}
.y249{bottom:285.146667pt;}
.y203{bottom:285.946667pt;}
.y85{bottom:289.786667pt;}
.y26f{bottom:290.586667pt;}
.y1a1{bottom:290.906667pt;}
.y24{bottom:291.586667pt;}
.yf4{bottom:294.586667pt;}
.y1db{bottom:296.186667pt;}
.y20e{bottom:296.666667pt;}
.y23d{bottom:299.546667pt;}
.y150{bottom:301.466667pt;}
.y298{bottom:302.266667pt;}
.y202{bottom:304.346667pt;}
.y83{bottom:306.426667pt;}
.y26e{bottom:308.506667pt;}
.y248{bottom:308.986667pt;}
.y23{bottom:309.186667pt;}
.yec{bottom:309.546630pt;}
.y1a0{bottom:310.746667pt;}
.y1a{bottom:312.826667pt;}
.y1da{bottom:315.706667pt;}
.yeb{bottom:318.746667pt;}
.y23b{bottom:318.906667pt;}
.y14f{bottom:319.226667pt;}
.y297{bottom:319.866667pt;}
.y20d{bottom:320.826667pt;}
.y26d{bottom:323.546667pt;}
.y23c{bottom:323.866667pt;}
.y82{bottom:324.346667pt;}
.y201{bottom:326.266667pt;}
.y247{bottom:326.746667pt;}
.y22{bottom:326.946667pt;}
.y19f{bottom:328.986667pt;}
.y26c{bottom:330.266667pt;}
.y1d9{bottom:334.746667pt;}
.y19e{bottom:335.706667pt;}
.y14e{bottom:336.986667pt;}
.y296{bottom:337.466667pt;}
.yde{bottom:338.479964pt;}
.y200{bottom:341.626667pt;}
.y81{bottom:342.266667pt;}
.y246{bottom:343.546667pt;}
.y21{bottom:344.546667pt;}
.y1ff{bottom:348.346667pt;}
.y20c{bottom:348.826667pt;}
.y245{bottom:350.266667pt;}
.y26b{bottom:351.066667pt;}
.y14d{bottom:352.346667pt;}
.y1d8{bottom:353.466667pt;}
.y23a{bottom:354.586667pt;}
.y295{bottom:355.066667pt;}
.y14c{bottom:359.106667pt;}
.yea{bottom:359.746667pt;}
.y80{bottom:360.386667pt;}
.y19d{bottom:360.866667pt;}
.y20{bottom:362.146667pt;}
.y79{bottom:367.280000pt;}
.y19c{bottom:367.586667pt;}
.y26a{bottom:368.866667pt;}
.y239{bottom:369.346667pt;}
.y75{bottom:370.013297pt;}
.y1fe{bottom:370.466667pt;}
.y7f{bottom:371.906667pt;}
.y294{bottom:372.706667pt;}
.y1d7{bottom:372.866667pt;}
.y7d{bottom:374.013297pt;}
.y78{bottom:377.986667pt;}
.y1f{bottom:379.746667pt;}
.y14b{bottom:381.186667pt;}
.y269{bottom:386.946667pt;}
.y1fd{bottom:388.226667pt;}
.y293{bottom:390.466667pt;}
.y19b{bottom:393.346667pt;}
.y1d6{bottom:393.506667pt;}
.ydd{bottom:394.466667pt;}
.y1e{bottom:397.346667pt;}
.y14a{bottom:397.986667pt;}
.y1fc{bottom:403.106667pt;}
.y148{bottom:403.426667pt;}
.y268{bottom:404.706667pt;}
.y74{bottom:406.306667pt;}
.y149{bottom:407.426667pt;}
.y147{bottom:407.906667pt;}
.y292{bottom:408.066667pt;}
.y19a{bottom:412.546667pt;}
.y73{bottom:413.026667pt;}
.ydc{bottom:414.146667pt;}
.y146{bottom:414.626667pt;}
.y1d{bottom:415.106667pt;}
.y199{bottom:419.266667pt;}
.y267{bottom:422.306667pt;}
.y291{bottom:425.666667pt;}
.y1c{bottom:432.706667pt;}
.ydb{bottom:433.506667pt;}
.y72{bottom:433.986667pt;}
.y1d5{bottom:434.786667pt;}
.y266{bottom:439.906667pt;}
.y290{bottom:443.266667pt;}
.y198{bottom:443.426667pt;}
.y145{bottom:445.346667pt;}
.y1b{bottom:450.306667pt;}
.y71{bottom:451.586667pt;}
.yda{bottom:452.866667pt;}
.y1d4{bottom:455.586667pt;}
.y265{bottom:457.506667pt;}
.y28f{bottom:460.866667pt;}
.y197{bottom:463.106667pt;}
.y143{bottom:466.786667pt;}
.y196{bottom:467.906667pt;}
.yd3{bottom:467.946630pt;}
.y70{bottom:469.186667pt;}
.y144{bottom:469.826667pt;}
.y1d3{bottom:473.346667pt;}
.y264{bottom:475.266667pt;}
.yd9{bottom:477.186667pt;}
.y28e{bottom:478.626667pt;}
.y194{bottom:479.906667pt;}
.y64{bottom:487.106667pt;}
.y142{bottom:487.906667pt;}
.y6e{bottom:488.546667pt;}
.y195{bottom:489.666667pt;}
.y1d2{bottom:491.106667pt;}
.y263{bottom:492.866667pt;}
.y140{bottom:493.346667pt;}
.y6f{bottom:493.506667pt;}
.y141{bottom:495.426667pt;}
.y28d{bottom:496.226667pt;}
.y13f{bottom:498.626667pt;}
.yd2{bottom:502.146667pt;}
.y63{bottom:504.706667pt;}
.y13e{bottom:505.346667pt;}
.y6d{bottom:506.626667pt;}
.y1d1{bottom:509.186667pt;}
.y262{bottom:510.466667pt;}
.y28c{bottom:513.826667pt;}
.yd1{bottom:517.506667pt;}
.y193{bottom:517.986667pt;}
.y62{bottom:522.306667pt;}
.y192{bottom:522.786667pt;}
.yd0{bottom:524.226667pt;}
.y6c{bottom:524.386667pt;}
.y1d0{bottom:524.546667pt;}
.y261{bottom:528.066667pt;}
.y1cf{bottom:531.266667pt;}
.y28b{bottom:531.426667pt;}
.y190{bottom:534.786667pt;}
.y13d{bottom:538.466667pt;}
.y61{bottom:539.906667pt;}
.y6b{bottom:541.986667pt;}
.y191{bottom:544.546667pt;}
.y13b{bottom:545.186667pt;}
.y260{bottom:545.666667pt;}
.yce{bottom:546.306667pt;}
.y13c{bottom:548.226667pt;}
.y28a{bottom:549.026667pt;}
.ycf{bottom:549.346667pt;}
.y1ce{bottom:555.586667pt;}
.y60{bottom:557.666667pt;}
.y6a{bottom:559.906667pt;}
.y25f{bottom:563.426667pt;}
.ycc{bottom:565.666667pt;}
.y289{bottom:566.786667pt;}
.ycd{bottom:568.706667pt;}
.y139{bottom:570.626667pt;}
.y18f{bottom:571.106667pt;}
.y5f{bottom:575.266667pt;}
.y137{bottom:577.373333pt;}
.y69{bottom:577.693333pt;}
.y1cd{bottom:577.853333pt;}
.y13a{bottom:580.413333pt;}
.y25e{bottom:581.053333pt;}
.y288{bottom:584.413333pt;}
.ycb{bottom:585.053333pt;}
.y238{bottom:588.733333pt;}
.y18e{bottom:590.013333pt;}
.y138{bottom:590.973333pt;}
.y5e{bottom:594.493333pt;}
.y68{bottom:595.293333pt;}
.y18d{bottom:596.733333pt;}
.y1cc{bottom:597.693333pt;}
.y25d{bottom:598.653333pt;}
.yc9{bottom:600.573333pt;}
.y286{bottom:603.773333pt;}
.y1cb{bottom:604.413333pt;}
.y237{bottom:606.653333pt;}
.yc7{bottom:607.293333pt;}
.y1f9{bottom:608.253333pt;}
.y287{bottom:608.733333pt;}
.y135{bottom:610.173333pt;}
.yc8{bottom:610.333333pt;}
.y5d{bottom:612.253333pt;}
.y67{bottom:612.893333pt;}
.y136{bottom:614.173333pt;}
.y1fb{bottom:615.933333pt;}
.y25c{bottom:616.253333pt;}
.y134{bottom:616.893333pt;}
.yca{bottom:617.213333pt;}
.y229{bottom:620.893333pt;}
.y285{bottom:621.693333pt;}
.y1fa{bottom:622.653333pt;}
.y1ca{bottom:624.413333pt;}
.y236{bottom:624.733333pt;}
.y1f8{bottom:625.853333pt;}
.y18c{bottom:626.653333pt;}
.y5c{bottom:630.013333pt;}
.y66{bottom:630.653333pt;}
.y1c9{bottom:631.133333pt;}
.y18b{bottom:633.373333pt;}
.y25b{bottom:633.853333pt;}
.yc6{bottom:634.493333pt;}
.y228{bottom:638.813333pt;}
.y284{bottom:639.453333pt;}
.y1f7{bottom:643.613333pt;}
.y234{bottom:644.253333pt;}
.y5b{bottom:648.093333pt;}
.y65{bottom:648.253333pt;}
.y133{bottom:648.573333pt;}
.y235{bottom:649.213333pt;}
.y25a{bottom:651.613333pt;}
.yc5{bottom:652.253333pt;}
.y283{bottom:654.493333pt;}
.y1c7{bottom:655.133333pt;}
.y226{bottom:658.333333pt;}
.y18a{bottom:659.293333pt;}
.y1c8{bottom:660.093333pt;}
.y282{bottom:661.213333pt;}
.y1f6{bottom:661.533333pt;}
.y227{bottom:663.293333pt;}
.y232{bottom:663.773333pt;}
.y5a{bottom:665.853333pt;}
.y131{bottom:666.333333pt;}
.y233{bottom:668.733333pt;}
.y259{bottom:669.213333pt;}
.yc4{bottom:670.173333pt;}
.y130{bottom:673.053333pt;}
.y1c6{bottom:674.173333pt;}
.y225{bottom:676.413333pt;}
.y189{bottom:677.053333pt;}
.y132{bottom:678.013333pt;}
.y1f5{bottom:679.133333pt;}
.y231{bottom:681.693333pt;}
.y281{bottom:682.173333pt;}
.y59{bottom:683.453333pt;}
.y258{bottom:683.933333pt;}
.yc3{bottom:687.933333pt;}
.y257{bottom:690.653333pt;}
.y1c5{bottom:691.773333pt;}
.y187{bottom:692.573333pt;}
.y188{bottom:692.733333pt;}
.y1f4{bottom:693.853333pt;}
.y224{bottom:694.173333pt;}
.y12f{bottom:698.013333pt;}
.y230{bottom:699.453333pt;}
.y58{bottom:701.053333pt;}
.y27f{bottom:701.693333pt;}
.yb9{bottom:702.813261pt;}
.y280{bottom:706.653333pt;}
.y1c4{bottom:709.373333pt;}
.y256{bottom:711.453333pt;}
.y223{bottom:711.933333pt;}
.yb8{bottom:712.093333pt;}
.y22f{bottom:717.213333pt;}
.y12d{bottom:717.853333pt;}
.y57{bottom:718.813333pt;}
.y27d{bottom:721.213333pt;}
.y12e{bottom:721.853333pt;}
.y12c{bottom:724.573333pt;}
.y186{bottom:725.853333pt;}
.y27e{bottom:726.173333pt;}
.y1c3{bottom:726.973333pt;}
.y255{bottom:729.053333pt;}
.y222{bottom:729.533333pt;}
.y22e{bottom:732.253333pt;}
.y56{bottom:733.533333pt;}
.y22d{bottom:738.973333pt;}
.y27c{bottom:739.293333pt;}
.y1c2{bottom:744.573333pt;}
.y12b{bottom:746.653333pt;}
.y254{bottom:746.813333pt;}
.y221{bottom:747.133333pt;}
.yb7{bottom:747.773333pt;}
.y27b{bottom:754.493333pt;}
.y22c{bottom:759.933333pt;}
.y27a{bottom:761.213333pt;}
.y1c1{bottom:762.173333pt;}
.y253{bottom:764.413333pt;}
.y220{bottom:764.733333pt;}
.yb6{bottom:765.373333pt;}
.y12a{bottom:766.493333pt;}
.y185{bottom:769.693333pt;}
.y18{bottom:776.253333pt;}
.y22b{bottom:779.453333pt;}
.y1c0{bottom:779.933333pt;}
.yac{bottom:780.213261pt;}
.y252{bottom:782.013333pt;}
.y21f{bottom:782.333333pt;}
.y128{bottom:787.773333pt;}
.yab{bottom:789.533333pt;}
.y184{bottom:791.613333pt;}
.y129{bottom:793.213333pt;}
.ya9{bottom:796.253333pt;}
.y1bf{bottom:797.533333pt;}
.y22a{bottom:799.013333pt;}
.y251{bottom:799.653333pt;}
.y21e{bottom:800.133333pt;}
.y17{bottom:802.533333pt;}
.y126{bottom:808.453333pt;}
.yaa{bottom:809.573333pt;}
.y127{bottom:812.453333pt;}
.y183{bottom:813.893333pt;}
.y250{bottom:814.533333pt;}
.y125{bottom:815.173333pt;}
.y21d{bottom:817.733333pt;}
.y16{bottom:824.773333pt;}
.ya8{bottom:827.333333pt;}
.y1bb{bottom:829.813261pt;}
.y21c{bottom:832.453333pt;}
.y182{bottom:835.813333pt;}
.y15{bottom:838.213333pt;}
.y1ba{bottom:839.173333pt;}
.y124{bottom:839.333333pt;}
.ya7{bottom:842.533333pt;}
.y2ab{bottom:843.973333pt;}
.ya6{bottom:849.253333pt;}
.y11d{bottom:854.013261pt;}
.y14{bottom:857.093333pt;}
.y181{bottom:857.733333pt;}
.y1b9{bottom:861.573333pt;}
.y2aa{bottom:861.733333pt;}
.y123{bottom:863.333333pt;}
.y1b8{bottom:868.773333pt;}
.ya5{bottom:872.453333pt;}
.y13{bottom:878.053333pt;}
.y2a9{bottom:879.333333pt;}
.y180{bottom:879.493333pt;}
.y11c{bottom:888.293333pt;}
.y1f3{bottom:889.093333pt;}
.ya4{bottom:890.213333pt;}
.y1b7{bottom:894.373333pt;}
.y2a8{bottom:896.933333pt;}
.y17f{bottom:901.573333pt;}
.y12{bottom:906.213333pt;}
.y1f2{bottom:906.693333pt;}
.ya3{bottom:907.813333pt;}
.y1b6{bottom:913.253333pt;}
.y11b{bottom:913.893333pt;}
.y2a7{bottom:914.533333pt;}
.ya1{bottom:922.613261pt;}
.y1f1{bottom:924.293333pt;}
.y17e{bottom:925.573333pt;}
.y1b5{bottom:928.613333pt;}
.ye{bottom:930.213333pt;}
.y2a6{bottom:932.133333pt;}
.y1b4{bottom:935.333333pt;}
.ya2{bottom:935.973333pt;}
.y17d{bottom:940.546594pt;}
.y11a{bottom:940.933333pt;}
.y1f0{bottom:941.893333pt;}
.y17c{bottom:948.613333pt;}
.y1{bottom:949.893333pt;}
.y1b3{bottom:954.853333pt;}
.y118{bottom:959.013333pt;}
.y1ef{bottom:959.653333pt;}
.y1b2{bottom:961.573333pt;}
.ya0{bottom:963.653333pt;}
.y117{bottom:965.733333pt;}
.y2a5{bottom:967.493333pt;}
.y179{bottom:969.013261pt;}
.y119{bottom:971.813333pt;}
.y178{bottom:977.093333pt;}
.y1ee{bottom:977.253333pt;}
.y9f{bottom:981.573333pt;}
.y1b1{bottom:983.813333pt;}
.y2a4{bottom:985.093333pt;}
.y1ed{bottom:995.173333pt;}
.y16b{bottom:997.346594pt;}
.y116{bottom:998.853333pt;}
.y1b0{bottom:999.173333pt;}
.y9e{bottom:999.493333pt;}
.y55{bottom:1002.693333pt;}
.y1af{bottom:1005.893333pt;}
.y1ec{bottom:1013.093333pt;}
.y96{bottom:1014.613261pt;}
.y115{bottom:1018.053333pt;}
.y54{bottom:1020.320000pt;}
.y177{bottom:1021.440000pt;}
.y1ae{bottom:1027.040000pt;}
.y94{bottom:1028.000000pt;}
.y1eb{bottom:1028.160000pt;}
.y95{bottom:1033.280000pt;}
.y1ad{bottom:1033.760000pt;}
.y1ea{bottom:1034.880000pt;}
.y114{bottom:1037.920000pt;}
.y53{bottom:1038.080000pt;}
.y52{bottom:1061.600000pt;}
.h43{height:1.221655pt;}
.h3c{height:1.248361pt;}
.h35{height:1.250469pt;}
.h2b{height:1.254645pt;}
.h49{height:1.254839pt;}
.h3{height:1.951250pt;}
.h20{height:15.333357pt;}
.h59{height:18.932650pt;}
.ha{height:19.840000pt;}
.hf{height:20.320000pt;}
.h3d{height:20.366555pt;}
.h7e{height:20.368268pt;}
.h2d{height:20.372111pt;}
.h36{height:20.400943pt;}
.h73{height:20.419842pt;}
.h1c{height:20.470565pt;}
.h5b{height:20.667040pt;}
.he{height:24.131250pt;}
.h18{height:24.133510pt;}
.h7a{height:24.199457pt;}
.h77{height:24.199475pt;}
.h85{height:24.199530pt;}
.h6f{height:24.199714pt;}
.h91{height:24.532333pt;}
.h50{height:25.853574pt;}
.h5a{height:26.110767pt;}
.h72{height:26.666233pt;}
.h4e{height:26.666251pt;}
.h1b{height:26.732453pt;}
.h93{height:27.487262pt;}
.h44{height:27.959841pt;}
.h7f{height:28.030502pt;}
.h3e{height:28.088321pt;}
.h2e{height:28.132743pt;}
.h37{height:28.135747pt;}
.h78{height:28.170577pt;}
.h52{height:28.221978pt;}
.h1d{height:28.292081pt;}
.h4a{height:28.428411pt;}
.h5c{height:28.502732pt;}
.h19{height:28.679221pt;}
.h70{height:28.757938pt;}
.h42{height:28.933856pt;}
.h63{height:28.933892pt;}
.h8{height:33.515625pt;}
.h5e{height:34.637849pt;}
.h16{height:35.200000pt;}
.h7d{height:35.200520pt;}
.h81{height:35.920175pt;}
.h40{height:35.999318pt;}
.h2a{height:35.999991pt;}
.h30{height:36.029654pt;}
.h32{height:36.029658pt;}
.h39{height:36.053971pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h11{height:38.672812pt;}
.h3b{height:39.800392pt;}
.h34{height:39.867593pt;}
.h17{height:41.112500pt;}
.hb{height:41.543750pt;}
.h9f{height:42.691250pt;}
.h92{height:43.495184pt;}
.h2c{height:44.610826pt;}
.h51{height:44.648688pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h45{height:48.459076pt;}
.h80{height:48.495302pt;}
.h53{height:48.738882pt;}
.h5d{height:49.266037pt;}
.h4b{height:49.288520pt;}
.h9{height:49.766250pt;}
.h48{height:50.865412pt;}
.h7c{height:53.134229pt;}
.h94{height:57.699556pt;}
.h47{height:58.889729pt;}
.h83{height:58.933752pt;}
.h41{height:58.999910pt;}
.h3a{height:59.099529pt;}
.h31{height:59.179536pt;}
.h55{height:59.229763pt;}
.h5f{height:59.870386pt;}
.h4d{height:59.897708pt;}
.hd{height:60.057813pt;}
.h82{height:62.145150pt;}
.h87{height:62.173519pt;}
.h79{height:62.173594pt;}
.h86{height:62.197781pt;}
.h7b{height:62.197856pt;}
.h64{height:62.313125pt;}
.h46{height:62.319537pt;}
.h74{height:62.431990pt;}
.h76{height:62.462152pt;}
.h75{height:62.489207pt;}
.h54{height:62.543529pt;}
.h1e{height:62.571595pt;}
.h1f{height:62.640859pt;}
.h4c{height:63.169009pt;}
.h1a{height:63.723507pt;}
.h71{height:63.880294pt;}
.h21{height:64.174520pt;}
.h27{height:67.812500pt;}
.h6c{height:74.212500pt;}
.h4f{height:77.607396pt;}
.h13{height:78.662500pt;}
.h67{height:79.302500pt;}
.h6a{height:81.892500pt;}
.h3f{height:85.317018pt;}
.h38{height:85.461072pt;}
.h2f{height:85.522158pt;}
.h9c{height:85.688750pt;}
.h84{height:88.403072pt;}
.h8c{height:90.212500pt;}
.h24{height:91.448750pt;}
.h15{height:92.728750pt;}
.h25{height:93.368750pt;}
.h58{height:95.199457pt;}
.h8b{height:97.222500pt;}
.h61{height:97.862500pt;}
.h29{height:98.502500pt;}
.h66{height:105.542500pt;}
.h9d{height:110.022500pt;}
.h12{height:112.568750pt;}
.h95{height:113.222500pt;}
.h99{height:113.862500pt;}
.h9e{height:114.022500pt;}
.h23{height:114.488750pt;}
.h26{height:114.502500pt;}
.h33{height:114.662500pt;}
.h9b{height:115.782500pt;}
.h98{height:122.168750pt;}
.h65{height:123.448750pt;}
.h68{height:124.102500pt;}
.h2{height:125.152000pt;}
.h8e{height:125.382500pt;}
.h22{height:136.888750pt;}
.h90{height:137.528750pt;}
.h14{height:139.448750pt;}
.h69{height:139.555417pt;}
.h6e{height:139.608750pt;}
.h96{height:141.368750pt;}
.h97{height:141.475417pt;}
.h9a{height:142.662500pt;}
.h8a{height:147.812500pt;}
.h89{height:152.262500pt;}
.h62{height:155.492500pt;}
.h28{height:163.812500pt;}
.h56{height:171.462500pt;}
.h88{height:174.648750pt;}
.h8f{height:174.692500pt;}
.h57{height:175.288750pt;}
.h6d{height:179.128750pt;}
.h8d{height:179.768750pt;}
.h6b{height:182.328750pt;}
.h60{height:182.372500pt;}
.h10{height:462.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:13.132478pt;}
.w19{width:16.133271pt;}
.w1d{width:16.133289pt;}
.w1c{width:16.200473pt;}
.w1a{width:16.200482pt;}
.wb{width:24.133238pt;}
.w17{width:34.999166pt;}
.wd{width:35.066365pt;}
.wc{width:39.800222pt;}
.w10{width:46.866947pt;}
.wf{width:46.866961pt;}
.w6{width:46.912000pt;}
.w11{width:52.131933pt;}
.w18{width:53.132091pt;}
.w15{width:95.195709pt;}
.w1b{width:95.999854pt;}
.w12{width:99.061412pt;}
.w16{width:107.069090pt;}
.w14{width:119.202641pt;}
.w13{width:135.872584pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w1e{width:276.476526pt;}
.w3{width:413.213333pt;}
.w9{width:520.453333pt;}
.w7{width:650.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:1.174838pt;}
.x3d{left:2.673453pt;}
.x76{left:5.333385pt;}
.x89{left:6.239871pt;}
.x9{left:7.200000pt;}
.x3e{left:9.293321pt;}
.x1b{left:10.343007pt;}
.x33{left:11.748288pt;}
.x3c{left:14.289801pt;}
.x56{left:15.221153pt;}
.x21{left:16.319369pt;}
.x77{left:17.884340pt;}
.x49{left:19.181531pt;}
.x71{left:21.107007pt;}
.x1e{left:22.174113pt;}
.x39{left:25.365796pt;}
.x5b{left:26.411680pt;}
.x34{left:29.371343pt;}
.xf{left:31.080000pt;}
.x3b{left:33.003648pt;}
.x4{left:34.080000pt;}
.x32{left:35.022818pt;}
.x3a{left:37.459385pt;}
.x4e{left:40.570103pt;}
.x78{left:41.484673pt;}
.x1{left:42.880000pt;}
.x5a{left:46.049928pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.x57{left:53.692597pt;}
.xa{left:55.200000pt;}
.x58{left:60.046111pt;}
.x59{left:63.560536pt;}
.x2a{left:65.119988pt;}
.x55{left:67.978975pt;}
.x6{left:71.880000pt;}
.x1c{left:75.871988pt;}
.x4f{left:76.832811pt;}
.x54{left:81.631988pt;}
.x88{left:83.946658pt;}
.x75{left:85.346658pt;}
.x60{left:92.831988pt;}
.xc{left:95.552000pt;}
.x4b{left:96.495530pt;}
.x52{left:97.631988pt;}
.x81{left:99.071988pt;}
.x43{left:100.191988pt;}
.x5e{left:102.751988pt;}
.x2c{left:103.711988pt;}
.x27{left:105.951988pt;}
.x25{left:107.551988pt;}
.x2d{left:109.471988pt;}
.x1d{left:111.946658pt;}
.x15{left:114.431988pt;}
.x4a{left:116.645630pt;}
.x40{left:117.631988pt;}
.x7{left:118.760000pt;}
.x5d{left:120.991988pt;}
.x79{left:124.213333pt;}
.x8c{left:126.111988pt;}
.x8b{left:133.786655pt;}
.x6c{left:137.306655pt;}
.x48{left:138.746655pt;}
.x7a{left:140.346655pt;}
.x2{left:141.786667pt;}
.x5c{left:143.226655pt;}
.x17{left:147.226655pt;}
.x80{left:149.946655pt;}
.x63{left:151.866655pt;}
.x41{left:154.013315pt;}
.x1f{left:155.386655pt;}
.x45{left:156.666655pt;}
.x1a{left:157.626655pt;}
.x7d{left:159.866655pt;}
.x7f{left:161.626655pt;}
.x44{left:163.066655pt;}
.x61{left:165.306655pt;}
.x9b{left:167.546655pt;}
.x36{left:170.746655pt;}
.x37{left:177.466655pt;}
.x6d{left:178.746655pt;}
.x7e{left:180.026655pt;}
.x46{left:182.906655pt;}
.x4c{left:183.866655pt;}
.x64{left:188.026655pt;}
.x67{left:189.946655pt;}
.x20{left:191.413315pt;}
.x6f{left:192.506655pt;}
.x7b{left:194.106655pt;}
.x3{left:196.506667pt;}
.x90{left:198.906655pt;}
.x62{left:202.746655pt;}
.x42{left:206.106655pt;}
.x70{left:209.013315pt;}
.x38{left:210.346649pt;}
.x87{left:212.346655pt;}
.x2f{left:213.306655pt;}
.x28{left:218.426655pt;}
.x6e{left:219.386655pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x83{left:227.706655pt;}
.x53{left:229.146655pt;}
.x22{left:230.106655pt;}
.x6b{left:234.906655pt;}
.x51{left:236.546655pt;}
.x30{left:238.013315pt;}
.x11{left:242.626667pt;}
.x2b{left:253.186655pt;}
.x2e{left:255.746655pt;}
.x3f{left:262.466655pt;}
.x65{left:266.466655pt;}
.x72{left:268.866655pt;}
.x23{left:276.213315pt;}
.x35{left:284.866655pt;}
.x24{left:289.506655pt;}
.x13{left:292.066667pt;}
.x26{left:295.746655pt;}
.x10{left:309.506667pt;}
.x73{left:311.280000pt;}
.x9a{left:314.466655pt;}
.x82{left:316.546655pt;}
.x7c{left:324.706655pt;}
.x12{left:328.706667pt;}
.x74{left:331.106655pt;}
.x68{left:339.266655pt;}
.x86{left:355.586655pt;}
.x8a{left:360.386655pt;}
.x8d{left:362.946655pt;}
.x8f{left:367.106655pt;}
.x66{left:369.986655pt;}
.x96{left:390.306655pt;}
.x29{left:391.746655pt;}
.x18{left:396.893322pt;}
.x4d{left:416.079964pt;}
.x14{left:420.573322pt;}
.x19{left:438.173322pt;}
.x9c{left:444.573322pt;}
.x98{left:450.493322pt;}
.x5f{left:465.693322pt;}
.x9d{left:468.573322pt;}
.x94{left:474.813322pt;}
.x93{left:509.853322pt;}
.x8e{left:514.973322pt;}
.x84{left:521.693322pt;}
.x50{left:535.293322pt;}
.x9f{left:538.973322pt;}
.xa0{left:540.413322pt;}
.xa1{left:571.813322pt;}
.x85{left:579.653322pt;}
.x16{left:583.013322pt;}
.x99{left:587.973322pt;}
.x9e{left:596.613322pt;}
.x8{left:609.733333pt;}
.x47{left:618.693322pt;}
.x69{left:626.853322pt;}
.x95{left:668.133322pt;}
.x91{left:672.453322pt;}
.x6a{left:684.293322pt;}
.x97{left:702.373322pt;}
.x92{left:706.533322pt;}
}




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